diff --git a/filters/anon.js b/filters/anon.js index 1286089..f01cb06 100644 --- a/filters/anon.js +++ b/filters/anon.js @@ -1,6 +1,4 @@ function effectsEngine(effectName){ - var functions = {}; - function loadScript(url){ var script = document.createElement('script'); script.type = 'text/javascript'; @@ -13,61 +11,82 @@ function effectsEngine(effectName){ } document.head.appendChild(script); } - var loadList = [ - "./thirdparty/jeeliz/jeelizFaceFilter.js", - "./thirdparty/jeeliz/three.min.js", - "./thirdparty/jeeliz/JeelizThreeHelper.js", - './thirdparty/jeeliz/Tween.min.js' - ]; - loadList.reverse(); - loadScript(loadList.pop()); + var loadList = []; + if (typeof JEELIZFACEFILTER == 'undefined' || JEELIZFACEFILTER==null){ + loadList.push("./thirdparty/jeeliz/jeelizFaceFilter.js"); + } + if (typeof THREE == 'undefined' || THREE == null){ + loadList.push("./thirdparty/jeeliz/three/v112/three.min.js"); + } else { + console.log("typeof THREE:"+typeof THREE); + } + if (typeof JeelizThreeHelper == 'undefined' || JeelizThreeHelper==null){ + loadList.push("./thirdparty/jeeliz/JeelizThreeHelper.js"); + } + if (typeof TWEEN == 'undefined' || TWEEN == null){ + loadList.push("./thirdparty/jeeliz/Tween.min.js"); + } + + if (loadList.length){ + loadList.reverse(); + loadScript(loadList.pop()); + } // some globals: let THREECAMERA = null; // should be prop of window let ANONYMOUSMESH = null; let ANONYMOUSOBJ3D = null; let isTransformed = false; + + var pathname = window.location.pathname.split("/"); + pathname.pop(); + pathname = window.location.protocol + "//" + window.location.host + pathname.join("/"); // callback: launched if a face is detected or lost. function detect_callback(isDetected) { - if (isDetected) { - console.log('INFO in detect_callback(): DETECTED'); - } else { - console.log('INFO in detect_callback(): LOST'); - } + // if (isDetected) { + // console.log('INFO in detect_callback(): DETECTED'); + // } else { + // console.log('INFO in detect_callback(): LOST'); + // } } // entry point: function main(){ if (session.canvasSource && document.getElementById("effectsCanvasTarget") && JEELIZFACEFILTER){ - //try {JEELIZFACEFILTER.destroy();}catch(e){} try { + warnlog("LOADING JEELIZ"); + THREECAMERA = null; // should be prop of window + ANONYMOUSMESH = null; + ANONYMOUSOBJ3D = null; + isTransformed = false; init_faceFilter("effectsCanvasTarget", session.canvasSource); } catch(e){ } } else { setTimeout(function(){main();},500); - errorlog("..."); + warnlog("...retrying to load"); } } function init_faceFilter(canvasId, videoElement){ JEELIZFACEFILTER.init({ canvasId: canvasId, - NNCPath: 'https://stevesserver.com/neuralNets/', + NNCPath: pathname+'/thirdparty/jeeliz/neuralNets/', videoSettings: { videoElement: videoElement }, callbackReady: function (errCode, spec) { if (errCode) { - console.error(errCode); - try{ - JEELIZFACEFILTER.toggle_pause(true,true); - } catch(e){} + errorlog(errCode); try{ JEELIZFACEFILTER.destroy(); } catch(e){} + THREECAMERA = null; // should be prop of window + ANONYMOUSMESH = null; + ANONYMOUSOBJ3D = null; + isTransformed = false; setTimeout(function(){main();},500); return; } @@ -100,16 +119,17 @@ function effectsEngine(effectName){ callbackTrack: function (detectState) { if (effectName !== session.effects){ try{ - JEELIZFACEFILTER.toggle_pause(true,true); // unload the filter when no longer active. - } catch(e){} - try{ - JEELIZFACEFILTER.destroy(); - } catch(e){} + JEELIZFACEFILTER.toggle_pause(true,false); // unload the filter when no longer active. Leaving the track active is required, else it breaks the app + } catch(e){errorlog(e);} + THREECAMERA = null; // should be prop of window + ANONYMOUSMESH = null; + ANONYMOUSOBJ3D = null; + isTransformed = false; return; } - warnlog("FOUND"); + const isDetected = JeelizThreeHelper.get_isDetected(); - //if (isDetected && detectState.expressions[0] >= 0.8 && !isTransformed) { + //if (isDetected && detectState.expressions[0] >= 0.8 && !isTransformed) { // If the person opens their mouth wide, then activate.. if (isDetected && !isTransformed){ isTransformed = true; new TWEEN.Tween( ANONYMOUSMESH.material ).to({ opacity: 1}, 700).start(); // animation diff --git a/filters/dog.js b/filters/dog.js new file mode 100644 index 0000000..6fc0a1a --- /dev/null +++ b/filters/dog.js @@ -0,0 +1,357 @@ +function effectsEngine(effectName){ + function loadScript(url){ + var script = document.createElement('script'); + script.type = 'text/javascript'; + script.src = url; + script.onload = function(){ + this.remove(); + if (loadList.length){ + loadScript(loadList.pop()); + } + } + document.head.appendChild(script); + } + var loadList = []; + if (typeof JEELIZFACEFILTER == 'undefined' || JEELIZFACEFILTER==null){ + loadList.push("./thirdparty/jeeliz/jeelizFaceFilter.js"); + } + if (typeof THREE == 'undefined' || THREE == null){ + loadList.push("./thirdparty/jeeliz/three/v112/three.min.js"); + } else { + console.log("typeof THREE:"+typeof THREE); + } + if (typeof JeelizThreeHelper == 'undefined' || JeelizThreeHelper==null){ + loadList.push("./thirdparty/jeeliz/JeelizThreeHelper.js"); + } + if (typeof TWEEN == 'undefined' || TWEEN == null){ + loadList.push("./thirdparty/jeeliz/Tween.min.js"); + } + + loadList.push("./filters/dog/libs/glfx.js"); + loadList.push("./thirdparty/jeeliz/three/customMaterials/FlexMaterial/ThreeFlexMaterial.js"); + + if (loadList.length){ + loadList.reverse(); + loadScript(loadList.pop()); + } + + + var pathname = window.location.pathname.split("/"); + pathname.pop(); + pathname = window.location.protocol + "//" + window.location.host + pathname.join("/"); + + // some globals: + let THREECAMERA = null; // should be prop of window + let isTransformed = false; + + let ISDETECTED = false; + let NOSEMESH = null, EARMESH = null; + let DOGOBJ3D = null, FRAMEOBJ3D = null; + + + let ISOVERTHRESHOLD = false, ISUNDERTRESHOLD = true; + + let ISLOADED = false; + + let MIXER = null; + let ACTION = null; + + let ISANIMATING = false; + let ISOPAQUE = false; + let ISANIMATIONOVER = false; + + let _flexParts = []; + let _videoGeometry = null; + + + // callback: launched if a face is detected or lost. + function detect_callback(isDetected) { + // if (isDetected) { + // console.log('INFO in detect_callback(): DETECTED'); + // } else { + // console.log('INFO in detect_callback(): LOST'); + // } + } + + function create_mat2d(threeTexture, isTransparent){ // MT216: we put the creation of the video material in a func because we will also use it for the frame + return new THREE.RawShaderMaterial({ + depthWrite: false, + depthTest: false, + transparent: isTransparent, + vertexShader: "attribute vec2 position;\n\ + varying vec2 vUV;\n\ + void main(void){\n\ + gl_Position = vec4(position, 0., 1.);\n\ + vUV = 0.5 + 0.5 * position;\n\ + }", + fragmentShader: "precision lowp float;\n\ + uniform sampler2D samplerVideo;\n\ + varying vec2 vUV;\n\ + void main(void){\n\ + gl_FragColor = texture2D(samplerVideo, vUV);\n\ + }", + uniforms:{ + samplerVideo: { value: threeTexture } + } + }); + } + + function applyFilter() { + let canvas; + try { + canvas = fx.canvas(); + } catch (e) { + alert('Ow no! WebGL isn\'t supported...') + return + } + + const tempImage = new Image(512, 512); + tempImage.src = './filters/dog/images/texture_pink.jpg'; + + tempImage.onload = () => { + const texture = canvas.texture(tempImage); + + // Create the effet + canvas.draw(texture).vignette(0.5, 0.6).update(); + + const canvasOpacity = document.createElement('canvas'); + canvasOpacity.width = 512; + canvasOpacity.height = 512; + const ctx = canvasOpacity.getContext('2d'); + + ctx.globalAlpha = 0.2 + ctx.drawImage(canvas, 0, 0, 512, 512); + + // Add the effect + const calqueMesh = new THREE.Mesh(_videoGeometry, create_mat2d(new THREE.TextureLoader().load(canvasOpacity.toDataURL('image/png')), true)) + calqueMesh.material.opacity = 0.2; + calqueMesh.material.transparent = true; + calqueMesh.renderOrder = 999; // render last + calqueMesh.frustumCulled = false; + FRAMEOBJ3D.add(calqueMesh); + } + } + + + // build the 3D. called once when Jeeliz Face Filter is OK + function init_threeScene(spec) { + // INIT THE THREE.JS context + const threeStuffs = JeelizThreeHelper.init(spec, detect_callback); + _videoGeometry = threeStuffs.videoMesh.geometry; + + // CREATE OUR DOG EARS: + + // let's begin by creating a loading manager that will allow us to + // have more control over the three parts of our dog model + const loadingManager = new THREE.LoadingManager(); + + const loaderEars = new THREE.BufferGeometryLoader(loadingManager); + + loaderEars.load( + './filters/dog/models/dog/dog_ears.json', + function (geometry) { + const mat = new THREE.FlexMaterial({ + map: new THREE.TextureLoader().load('./filters/dog/models/dog/texture_ears.jpg'), + flexMap: new THREE.TextureLoader().load('./filters/dog/models/dog/flex_ears_256.jpg'), + alphaMap: new THREE.TextureLoader().load('./filters/dog/models/dog/alpha_ears_256.jpg'), + transparent: true, + opacity: 1, + bumpMap: new THREE.TextureLoader().load('./filters/dog/models/dog/normal_ears.jpg'), + bumpScale: 0.0075, + shininess: 1.5, + specular: 0xffffff, + }); + + EARMESH = new THREE.Mesh(geometry, mat); + EARMESH.scale.multiplyScalar(0.025); + EARMESH.position.setY(-0.3); + EARMESH.frustumCulled = false; + EARMESH.renderOrder = 10000; + EARMESH.material.opacity.value = 1; + } + ); + // CREATE OUR DOG NOSE + const loaderNose = new THREE.BufferGeometryLoader(loadingManager); + + loaderNose.load( + './filters/dog/models/dog/dog_nose.json', + function (geometry) { + const mat = new THREE.MeshPhongMaterial({ + map: new THREE.TextureLoader().load('./filters/dog/models/dog/texture_nose.jpg'), + shininess: 1.5, + specular: 0xffffff, + bumpMap: new THREE.TextureLoader().load('./filters/dog/models/dog/normal_nose.jpg'), + bumpScale: 0.005 + }); + + NOSEMESH = new THREE.Mesh(geometry, mat); + NOSEMESH.scale.multiplyScalar(0.018); + NOSEMESH.position.setY(-0.05); + NOSEMESH.position.setZ(0.15); + NOSEMESH.frustumCulled = false; + NOSEMESH.renderOrder = 10000; + } + ); + + loadingManager.onLoad = () => { + DOGOBJ3D.add(EARMESH); + DOGOBJ3D.add(NOSEMESH); + threeStuffs.faceObject.add(DOGOBJ3D); + + ISLOADED = true; + } + + // CREATE AN AMBIENT LIGHT + const ambient = new THREE.AmbientLight(0xffffff, 0.8); + threeStuffs.scene.add(ambient); + + // CREAT A DIRECTIONALLIGHT + const dirLight = new THREE.DirectionalLight(0xffffff, 0.5); + dirLight.position.set(100, 1000, 1000); + threeStuffs.scene.add(dirLight); + + // CREATE THE CAMERA + THREECAMERA = JeelizThreeHelper.create_camera(); + + threeStuffs.scene.add(FRAMEOBJ3D); + + // Add filter + applyFilter(); + } // end init_threeScene() + + function animateTongue (mesh, isReverse) { + mesh.visible = true; + + if (isReverse) { + ACTION.timescale = -1; + ACTION.paused = false; + + setTimeout(() => { + ACTION.paused = true; + + ISOPAQUE = false; + ISANIMATING = false; + ISANIMATIONOVER = true; + + + new TWEEN.Tween(mesh.material.opacity) + .to({ value: 0 }, 150) + .start(); + }, 150); + } else { + ACTION.timescale = 1; + ACTION.reset(); + ACTION.paused = false; + + new TWEEN.Tween(mesh.material.opacity) + .to({ value: 1 }, 100) + .onComplete(() => { + ISOPAQUE = true; + setTimeout(() => { + ACTION.paused = true; + ISANIMATING = false; + ISANIMATIONOVER = true; + }, 150); + }) + .start(); + } + } + + + // entry point: + function main(){ + if (session.canvasSource && document.getElementById("effectsCanvasTarget") && JEELIZFACEFILTER){ + try { + warnlog("LOADING JEELIZ"); + THREECAMERA = null; // should be prop of window + isTransformed = false; + DOGOBJ3D = new THREE.Object3D(); + FRAMEOBJ3D = new THREE.Object3D(); + + init_faceFilter("effectsCanvasTarget", session.canvasSource); + } catch(e){ + } + } else { + setTimeout(function(){main();},500); + warnlog("...retrying to load"); + } + } + + + function init_faceFilter(canvasId, videoElement){ + JEELIZFACEFILTER.init({ + canvasId: canvasId, + NNCPath: pathname+'/thirdparty/jeeliz/neuralNets/', + videoSettings: { + videoElement: videoElement + }, + callbackReady: function (errCode, spec) { + if (errCode) { + errorlog(errCode); + try{ + JEELIZFACEFILTER.destroy(); + } catch(e){} + THREECAMERA = null; // should be prop of window + DOGOBJ3D=null; + FRAMEOBJ3D=null; + isTransformed = false; + setTimeout(function(){main();},500); + return; + } + init_threeScene(spec); + }, + callbackTrack: function (detectState) { + if (effectName !== session.effects){ + try{ + JEELIZFACEFILTER.toggle_pause(true,false); // unload the filter when no longer active. Leaving the track active is required, else it breaks the app + } catch(e){errorlog(e);} + THREECAMERA = null; // should be prop of window + isTransformed = false; + DOGOBJ3D=null; + FRAMEOBJ3D=null; + return; + } + + const ISDETECTED = JeelizThreeHelper.get_isDetected(); + //if (isDetected && detectState.expressions[0] >= 0.8 && !isTransformed) { // If the person opens their mouth wide, then activate.. + if (ISDETECTED){ + + const _quat = new THREE.Quaternion(); + const _eul = new THREE.Euler(); + _eul.setFromQuaternion(_quat); + + // flex ears material: + if (EARMESH && EARMESH.material.set_amortized){ + EARMESH.material.set_amortized( + EARMESH.getWorldPosition(new THREE.Vector3(0,0,0)), + EARMESH.getWorldScale(new THREE.Vector3(0,0,0)), + EARMESH.getWorldQuaternion(_eul), + false, + 0.1 + ); + } + + if (detectState.expressions[0] >= 0.85 && !ISOVERTHRESHOLD) { + ISOVERTHRESHOLD = true; + ISUNDERTRESHOLD = false; + ISANIMATIONOVER = false; + } + if (detectState.expressions[0] <= 0.1 && !ISUNDERTRESHOLD) { + ISOVERTHRESHOLD = false; + ISUNDERTRESHOLD = true; + ISANIMATIONOVER = false; + } + } + + TWEEN.update(); + + if (ISOPAQUE) { + MIXER.update(0.16); + } + + JeelizThreeHelper.render(detectState, THREECAMERA); + } + }); + } + return main; +} diff --git a/filters/dog/ThreeFlexMaterial.js b/filters/dog/ThreeFlexMaterial.js new file mode 100644 index 0000000..d89db3b --- /dev/null +++ b/filters/dog/ThreeFlexMaterial.js @@ -0,0 +1,132 @@ +"use strict"; + +THREE.FlexMaterial = function(spec){ + const _worldMatrixDelayed = new THREE['Matrix4'](); + + function mix(a,b,t){ + a.set( + b.x*t+a.x*(1-t), + b.y*t+a.y*(1-t), + b.z*t+a.z*(1-t) + ); + } + + // tweak shaders helpers: + function tweak_shaderAdd(code, chunk, glslCode){ + return code.replace(chunk, chunk+"\n"+glslCode); + } + function tweak_shaderDel(code, chunk){ + return code.replace(chunk, ''); + } + function tweak_shaderRepl(code, chunk, glslCode){ + return code.replace(chunk, glslCode); + } + + // get PHONG shader and tweak it : + const phongShader = THREE.ShaderLib.phong; + let vertexShaderSource = phongShader.vertexShader; + vertexShaderSource = tweak_shaderAdd(vertexShaderSource, '#include ', + 'uniform mat4 modelMatrixDelayed;\n' + +'uniform sampler2D flexMap;\n' + ); + vertexShaderSource = tweak_shaderDel(vertexShaderSource, '#include '); + vertexShaderSource = tweak_shaderRepl(vertexShaderSource, '#include ', + "vec4 worldPosition = modelMatrix * vec4( transformed, 1.0 );\n\ + vec4 worldPositionDelayed = modelMatrixDelayed * vec4( transformed, 1.0 );\n\ + worldPosition = mix(worldPosition, worldPositionDelayed, texture2D(flexMap, uv).r);\n\ + vec4 mvPosition = viewMatrix* worldPosition;\n\ + gl_Position = projectionMatrix * mvPosition;"); + + + const uniforms0 = { + 'modelMatrixDelayed': { + 'value': _worldMatrixDelayed + }, + 'flexMap': { + value: spec.flexMap + }, + 'opacity': { + value: (typeof(spec.opacity)!=='undefined')?spec.opacity:1 + } + }; + const uniforms = Object.assign({}, phongShader.uniforms, uniforms0); + + const isMorphs = (spec.morphTargets) ? true : false; + const mat = new THREE.ShaderMaterial({ + vertexShader: vertexShaderSource, + fragmentShader: phongShader.fragmentShader, + uniforms: uniforms, + transparent: (spec.transparent)?true:false, + lights: true, + morphTargets: isMorphs, + morphNormals: isMorphs + }); + mat.flexMap = spec.flexMap; + mat.opacity = mat.uniforms.opacity; // shortcut + + if (typeof(spec.map)!=='undefined') { + uniforms.map = {value: spec.map}; + mat.map = spec.map; + } + if (typeof(spec.alphaMap)!=='undefined') { + uniforms.alphaMap = {value: spec.alphaMap}; + mat.transparent = true; + mat.alphaMap = spec.alphaMap; + } + + if (typeof(spec.bumpMap)!=='undefined') { + uniforms.bumpMap = {value: spec.bumpMap}; + mat.bumpMap = spec.bumpMap; + } + + if (typeof(spec.bumpScale)!=='undefined') { + uniforms.bumpScale = {value: spec.bumpScale}; + mat.bumpScale = spec.bumpScale; + } + + if (typeof(spec.shininess)!=='undefined') { + uniforms.shininess = {value: spec.shininess}; + mat.shininess = spec.shininess; + } + + const _positionDelayed = new THREE.Vector3(); + const _scaleDelayed = new THREE.Vector3(); + const _eulerDelayed = new THREE['Euler'](); + let _initialized = false; + + mat.set_amortized = function(positionTarget, scaleTarget, eulerTarget, parentMatrix, amortization){ + if (!_initialized){ + if (positionTarget){ + _positionDelayed.copy(positionTarget); + } + if (scaleTarget){ + _scaleDelayed.copy(scaleTarget); + } + if (eulerTarget){ + _eulerDelayed.copy(eulerTarget); + } + _initialized = true; + } + + if (eulerTarget){ + mix( _eulerDelayed, eulerTarget, amortization ); + _worldMatrixDelayed['makeRotationFromEuler'](_eulerDelayed); + } + + if (positionTarget){ + mix( _positionDelayed, positionTarget, amortization ); + _worldMatrixDelayed['setPosition'](_positionDelayed); + } + + if (scaleTarget){ + mix(_scaleDelayed, scaleTarget, amortization ); + _worldMatrixDelayed['scale'](_scaleDelayed); + } + + if (parentMatrix){ + _worldMatrixDelayed.multiplyMatrices(parentMatrix, _worldMatrixDelayed); + } + } + + return mat; +}; diff --git a/filters/dog/images/texture_pink.jpg b/filters/dog/images/texture_pink.jpg new file mode 100644 index 0000000..c1d6cfc Binary files /dev/null and b/filters/dog/images/texture_pink.jpg differ diff --git a/filters/dog/images/texture_white.jpg b/filters/dog/images/texture_white.jpg new file mode 100644 index 0000000..e6a8837 Binary files /dev/null and b/filters/dog/images/texture_white.jpg differ diff --git a/filters/dog/index.html b/filters/dog/index.html new file mode 100644 index 0000000..fb10fac --- /dev/null +++ b/filters/dog/index.html @@ -0,0 +1,87 @@ + + + + + + + JEELIZ FACEFILTER: DOG + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + + diff --git a/filters/dog/libs/glfx.js b/filters/dog/libs/glfx.js new file mode 100644 index 0000000..c4c9fc5 --- /dev/null +++ b/filters/dog/libs/glfx.js @@ -0,0 +1,59 @@ +/* + * glfx.js + * http://evanw.github.com/glfx.js/ + * + * Copyright 2011 Evan Wallace + * Released under the MIT license + */ +var fx=function(){function q(a,d,c){return Math.max(a,Math.min(d,c))}function w(b){return{_:b,loadContentsOf:function(b){a=this._.gl;this._.loadContentsOf(b)},destroy:function(){a=this._.gl;this._.destroy()}}}function A(a){return w(r.fromElement(a))}function B(b,d){var c=a.UNSIGNED_BYTE;if(a.getExtension("OES_texture_float")&&a.getExtension("OES_texture_float_linear")){var e=new r(100,100,a.RGBA,a.FLOAT);try{e.drawTo(function(){c=a.FLOAT})}catch(g){}e.destroy()}this._.texture&&this._.texture.destroy(); +this._.spareTexture&&this._.spareTexture.destroy();this.width=b;this.height=d;this._.texture=new r(b,d,a.RGBA,c);this._.spareTexture=new r(b,d,a.RGBA,c);this._.extraTexture=this._.extraTexture||new r(0,0,a.RGBA,c);this._.flippedShader=this._.flippedShader||new h(null,"uniform sampler2D texture;varying vec2 texCoord;void main(){gl_FragColor=texture2D(texture,vec2(texCoord.x,1.0-texCoord.y));}");this._.isInitialized=!0}function C(a,d,c){this._.isInitialized&& +a._.width==this.width&&a._.height==this.height||B.call(this,d?d:a._.width,c?c:a._.height);a._.use();this._.texture.drawTo(function(){h.getDefaultShader().drawRect()});return this}function D(){this._.texture.use();this._.flippedShader.drawRect();return this}function f(a,d,c,e){(c||this._.texture).use();this._.spareTexture.drawTo(function(){a.uniforms(d).drawRect()});this._.spareTexture.swapWith(e||this._.texture)}function E(a){a.parentNode.insertBefore(this,a);a.parentNode.removeChild(a);return this} +function F(){var b=new r(this._.texture.width,this._.texture.height,a.RGBA,a.UNSIGNED_BYTE);this._.texture.use();b.drawTo(function(){h.getDefaultShader().drawRect()});return w(b)}function G(){var b=this._.texture.width,d=this._.texture.height,c=new Uint8Array(4*b*d);this._.texture.drawTo(function(){a.readPixels(0,0,b,d,a.RGBA,a.UNSIGNED_BYTE,c)});return c}function k(b){return function(){a=this._.gl;return b.apply(this,arguments)}}function x(a,d,c,e,g,l,n,p){var m=c-g,h=e-l,f=n-g,k=p-l;g=a-c+g-n;l= +d-e+l-p;var q=m*k-f*h,f=(g*k-f*l)/q,m=(m*l-g*h)/q;return[c-a+f*c,e-d+f*e,f,n-a+m*n,p-d+m*p,m,a,d,1]}function y(a){var d=a[0],c=a[1],e=a[2],g=a[3],l=a[4],n=a[5],p=a[6],m=a[7];a=a[8];var f=d*l*a-d*n*m-c*g*a+c*n*p+e*g*m-e*l*p;return[(l*a-n*m)/f,(e*m-c*a)/f,(c*n-e*l)/f,(n*p-g*a)/f,(d*a-e*p)/f,(e*g-d*n)/f,(g*m-l*p)/f,(c*p-d*m)/f,(d*l-c*g)/f]}function z(a){var d=a.length;this.xa=[];this.ya=[];this.u=[];this.y2=[];a.sort(function(a,b){return a[0]-b[0]});for(var c=0;c0.0){color.rgb=(color.rgb-0.5)/(1.0-contrast)+0.5;}else{color.rgb=(color.rgb-0.5)*(1.0+contrast)+0.5;}gl_FragColor=color;}"); +f.call(this,a.brightnessContrast,{brightness:q(-1,b,1),contrast:q(-1,d,1)});return this}function t(a){a=new z(a);for(var d=[],c=0;256>c;c++)d.push(q(0,Math.floor(256*a.interpolate(c/255)),255));return d}function I(b,d,c){b=t(b);1==arguments.length?d=c=b:(d=t(d),c=t(c));for(var e=[],g=0;256>g;g++)e.splice(e.length,0,b[g],d[g],c[g],255);this._.extraTexture.initFromBytes(256,1,e);this._.extraTexture.use(1);a.curves=a.curves||new h(null,"uniform sampler2D texture;uniform sampler2D map;varying vec2 texCoord;void main(){vec4 color=texture2D(texture,texCoord);color.r=texture2D(map,vec2(color.r)).r;color.g=texture2D(map,vec2(color.g)).g;color.b=texture2D(map,vec2(color.b)).b;gl_FragColor=color;}"); +a.curves.textures({map:1});f.call(this,a.curves,{});return this}function J(b){a.denoise=a.denoise||new h(null,"uniform sampler2D texture;uniform float exponent;uniform float strength;uniform vec2 texSize;varying vec2 texCoord;void main(){vec4 center=texture2D(texture,texCoord);vec4 color=vec4(0.0);float total=0.0;for(float x=-4.0;x<=4.0;x+=1.0){for(float y=-4.0;y<=4.0;y+=1.0){vec4 sample=texture2D(texture,texCoord+vec2(x,y)/texSize);float weight=1.0-abs(dot(sample.rgb-center.rgb,vec3(0.25)));weight=pow(weight,exponent);color+=sample*weight;total+=weight;}}gl_FragColor=color/total;}"); +for(var d=0;2>d;d++)f.call(this,a.denoise,{exponent:Math.max(0,b),texSize:[this.width,this.height]});return this}function K(b,d){a.hueSaturation=a.hueSaturation||new h(null,"uniform sampler2D texture;uniform float hue;uniform float saturation;varying vec2 texCoord;void main(){vec4 color=texture2D(texture,texCoord);float angle=hue*3.14159265;float s=sin(angle),c=cos(angle);vec3 weights=(vec3(2.0*c,-sqrt(3.0)*s-c,sqrt(3.0)*s-c)+1.0)/3.0;float len=length(color.rgb);color.rgb=vec3(dot(color.rgb,weights.xyz),dot(color.rgb,weights.zxy),dot(color.rgb,weights.yzx));float average=(color.r+color.g+color.b)/3.0;if(saturation>0.0){color.rgb+=(average-color.rgb)*(1.0-1.0/(1.001-saturation));}else{color.rgb+=(average-color.rgb)*(-saturation);}gl_FragColor=color;}"); +f.call(this,a.hueSaturation,{hue:q(-1,b,1),saturation:q(-1,d,1)});return this}function L(b){a.noise=a.noise||new h(null,"uniform sampler2D texture;uniform float amount;varying vec2 texCoord;float rand(vec2 co){return fract(sin(dot(co.xy,vec2(12.9898,78.233)))*43758.5453);}void main(){vec4 color=texture2D(texture,texCoord);float diff=(rand(texCoord)-0.5)*amount;color.r+=diff;color.g+=diff;color.b+=diff;gl_FragColor=color;}"); +f.call(this,a.noise,{amount:q(0,b,1)});return this}function M(b){a.sepia=a.sepia||new h(null,"uniform sampler2D texture;uniform float amount;varying vec2 texCoord;void main(){vec4 color=texture2D(texture,texCoord);float r=color.r;float g=color.g;float b=color.b;color.r=min(1.0,(r*(1.0-(0.607*amount)))+(g*(0.769*amount))+(b*(0.189*amount)));color.g=min(1.0,(r*0.349*amount)+(g*(1.0-(0.314*amount)))+(b*0.168*amount));color.b=min(1.0,(r*0.272*amount)+(g*0.534*amount)+(b*(1.0-(0.869*amount))));gl_FragColor=color;}"); +f.call(this,a.sepia,{amount:q(0,b,1)});return this}function N(b,d){a.unsharpMask=a.unsharpMask||new h(null,"uniform sampler2D blurredTexture;uniform sampler2D originalTexture;uniform float strength;uniform float threshold;varying vec2 texCoord;void main(){vec4 blurred=texture2D(blurredTexture,texCoord);vec4 original=texture2D(originalTexture,texCoord);gl_FragColor=mix(blurred,original,1.0+strength);}"); +this._.extraTexture.ensureFormat(this._.texture);this._.texture.use();this._.extraTexture.drawTo(function(){h.getDefaultShader().drawRect()});this._.extraTexture.use(1);this.triangleBlur(b);a.unsharpMask.textures({originalTexture:1});f.call(this,a.unsharpMask,{strength:d});this._.extraTexture.unuse(1);return this}function O(b){a.vibrance=a.vibrance||new h(null,"uniform sampler2D texture;uniform float amount;varying vec2 texCoord;void main(){vec4 color=texture2D(texture,texCoord);float average=(color.r+color.g+color.b)/3.0;float mx=max(color.r,max(color.g,color.b));float amt=(mx-average)*(-amount*3.0);color.rgb=mix(color.rgb,vec3(mx),amt);gl_FragColor=color;}"); +f.call(this,a.vibrance,{amount:q(-1,b,1)});return this}function P(b,d){a.vignette=a.vignette||new h(null,"uniform sampler2D texture;uniform float size;uniform float amount;varying vec2 texCoord;void main(){vec4 color=texture2D(texture,texCoord);float dist=distance(texCoord,vec2(0.5,0.5));color.rgb*=smoothstep(0.8,size*0.799,dist*(amount+size));gl_FragColor=color;}"); +f.call(this,a.vignette,{size:q(0,b,1),amount:q(0,d,1)});return this}function Q(b,d,c){a.lensBlurPrePass=a.lensBlurPrePass||new h(null,"uniform sampler2D texture;uniform float power;varying vec2 texCoord;void main(){vec4 color=texture2D(texture,texCoord);color=pow(color,vec4(power));gl_FragColor=vec4(color);}");var e="uniform sampler2D texture0;uniform sampler2D texture1;uniform vec2 delta0;uniform vec2 delta1;uniform float power;varying vec2 texCoord;"+ +s+"vec4 sample(vec2 delta){float offset=random(vec3(delta,151.7182),0.0);vec4 color=vec4(0.0);float total=0.0;for(float t=0.0;t<=30.0;t++){float percent=(t+offset)/30.0;color+=texture2D(texture0,texCoord+delta*percent);total+=1.0;}return color/total;}"; +a.lensBlur0=a.lensBlur0||new h(null,e+"void main(){gl_FragColor=sample(delta0);}");a.lensBlur1=a.lensBlur1||new h(null,e+"void main(){gl_FragColor=(sample(delta0)+sample(delta1))*0.5;}");a.lensBlur2=a.lensBlur2||(new h(null,e+"void main(){vec4 color=(sample(delta0)+2.0*texture2D(texture1,texCoord))/3.0;gl_FragColor=pow(color,vec4(power));}")).textures({texture1:1});for(var e= +[],g=0;3>g;g++){var l=c+2*g*Math.PI/3;e.push([b*Math.sin(l)/this.width,b*Math.cos(l)/this.height])}b=Math.pow(10,q(-1,d,1));f.call(this,a.lensBlurPrePass,{power:b});this._.extraTexture.ensureFormat(this._.texture);f.call(this,a.lensBlur0,{delta0:e[0]},this._.texture,this._.extraTexture);f.call(this,a.lensBlur1,{delta0:e[1],delta1:e[2]},this._.extraTexture,this._.extraTexture);f.call(this,a.lensBlur0,{delta0:e[1]});this._.extraTexture.use(1);f.call(this,a.lensBlur2,{power:1/b,delta0:e[2]});return this} +function R(b,d,c,e,g,l){a.tiltShift=a.tiltShift||new h(null,"uniform sampler2D texture;uniform float blurRadius;uniform float gradientRadius;uniform vec2 start;uniform vec2 end;uniform vec2 delta;uniform vec2 texSize;varying vec2 texCoord;"+s+"void main(){vec4 color=vec4(0.0);float total=0.0;float offset=random(vec3(12.9898,78.233,151.7182),0.0);vec2 normal=normalize(vec2(start.y-end.y,end.x-start.x));float radius=smoothstep(0.0,1.0,abs(dot(texCoord*texSize-start,normal))/gradientRadius)*blurRadius;for(float t=-30.0;t<=30.0;t++){float percent=(t+offset-0.5)/30.0;float weight=1.0-abs(percent);vec4 sample=texture2D(texture,texCoord+delta/texSize*percent*radius);sample.rgb*=sample.a;color+=sample*weight;total+=weight;}gl_FragColor=color/total;gl_FragColor.rgb/=gl_FragColor.a+0.00001;}"); +var n=c-b,p=e-d,m=Math.sqrt(n*n+p*p);f.call(this,a.tiltShift,{blurRadius:g,gradientRadius:l,start:[b,d],end:[c,e],delta:[n/m,p/m],texSize:[this.width,this.height]});f.call(this,a.tiltShift,{blurRadius:g,gradientRadius:l,start:[b,d],end:[c,e],delta:[-p/m,n/m],texSize:[this.width,this.height]});return this}function S(b){a.triangleBlur=a.triangleBlur||new h(null,"uniform sampler2D texture;uniform vec2 delta;varying vec2 texCoord;"+s+"void main(){vec4 color=vec4(0.0);float total=0.0;float offset=random(vec3(12.9898,78.233,151.7182),0.0);for(float t=-30.0;t<=30.0;t++){float percent=(t+offset-0.5)/30.0;float weight=1.0-abs(percent);vec4 sample=texture2D(texture,texCoord+delta*percent);sample.rgb*=sample.a;color+=sample*weight;total+=weight;}gl_FragColor=color/total;gl_FragColor.rgb/=gl_FragColor.a+0.00001;}"); +f.call(this,a.triangleBlur,{delta:[b/this.width,0]});f.call(this,a.triangleBlur,{delta:[0,b/this.height]});return this}function T(b,d,c){a.zoomBlur=a.zoomBlur||new h(null,"uniform sampler2D texture;uniform vec2 center;uniform float strength;uniform vec2 texSize;varying vec2 texCoord;"+s+"void main(){vec4 color=vec4(0.0);float total=0.0;vec2 toCenter=center-texCoord*texSize;float offset=random(vec3(12.9898,78.233,151.7182),0.0);for(float t=0.0;t<=40.0;t++){float percent=(t+offset)/40.0;float weight=4.0*(percent-percent*percent);vec4 sample=texture2D(texture,texCoord+toCenter*percent*strength/texSize);sample.rgb*=sample.a;color+=sample*weight;total+=weight;}gl_FragColor=color/total;gl_FragColor.rgb/=gl_FragColor.a+0.00001;}"); +f.call(this,a.zoomBlur,{center:[b,d],strength:c,texSize:[this.width,this.height]});return this}function U(b,d,c,e){a.colorHalftone=a.colorHalftone||new h(null,"uniform sampler2D texture;uniform vec2 center;uniform float angle;uniform float scale;uniform vec2 texSize;varying vec2 texCoord;float pattern(float angle){float s=sin(angle),c=cos(angle);vec2 tex=texCoord*texSize-center;vec2 point=vec2(c*tex.x-s*tex.y,s*tex.x+c*tex.y)*scale;return(sin(point.x)*sin(point.y))*4.0;}void main(){vec4 color=texture2D(texture,texCoord);vec3 cmy=1.0-color.rgb;float k=min(cmy.x,min(cmy.y,cmy.z));cmy=(cmy-k)/(1.0-k);cmy=clamp(cmy*10.0-3.0+vec3(pattern(angle+0.26179),pattern(angle+1.30899),pattern(angle)),0.0,1.0);k=clamp(k*10.0-5.0+pattern(angle+0.78539),0.0,1.0);gl_FragColor=vec4(1.0-cmy-k,color.a);}"); +f.call(this,a.colorHalftone,{center:[b,d],angle:c,scale:Math.PI/e,texSize:[this.width,this.height]});return this}function V(b,d,c,e){a.dotScreen=a.dotScreen||new h(null,"uniform sampler2D texture;uniform vec2 center;uniform float angle;uniform float scale;uniform vec2 texSize;varying vec2 texCoord;float pattern(){float s=sin(angle),c=cos(angle);vec2 tex=texCoord*texSize-center;vec2 point=vec2(c*tex.x-s*tex.y,s*tex.x+c*tex.y)*scale;return(sin(point.x)*sin(point.y))*4.0;}void main(){vec4 color=texture2D(texture,texCoord);float average=(color.r+color.g+color.b)/3.0;gl_FragColor=vec4(vec3(average*10.0-5.0+pattern()),color.a);}"); +f.call(this,a.dotScreen,{center:[b,d],angle:c,scale:Math.PI/e,texSize:[this.width,this.height]});return this}function W(b){a.edgeWork1=a.edgeWork1||new h(null,"uniform sampler2D texture;uniform vec2 delta;varying vec2 texCoord;"+s+"void main(){vec2 color=vec2(0.0);vec2 total=vec2(0.0);float offset=random(vec3(12.9898,78.233,151.7182),0.0);for(float t=-30.0;t<=30.0;t++){float percent=(t+offset-0.5)/30.0;float weight=1.0-abs(percent);vec3 sample=texture2D(texture,texCoord+delta*percent).rgb;float average=(sample.r+sample.g+sample.b)/3.0;color.x+=average*weight;total.x+=weight;if(abs(t)<15.0){weight=weight*2.0-1.0;color.y+=average*weight;total.y+=weight;}}gl_FragColor=vec4(color/total,0.0,1.0);}"); +a.edgeWork2=a.edgeWork2||new h(null,"uniform sampler2D texture;uniform vec2 delta;varying vec2 texCoord;"+s+"void main(){vec2 color=vec2(0.0);vec2 total=vec2(0.0);float offset=random(vec3(12.9898,78.233,151.7182),0.0);for(float t=-30.0;t<=30.0;t++){float percent=(t+offset-0.5)/30.0;float weight=1.0-abs(percent);vec2 sample=texture2D(texture,texCoord+delta*percent).xy;color.x+=sample.x*weight;total.x+=weight;if(abs(t)<15.0){weight=weight*2.0-1.0;color.y+=sample.y*weight;total.y+=weight;}}float c=clamp(10000.0*(color.y/total.y-color.x/total.x)+0.5,0.0,1.0);gl_FragColor=vec4(c,c,c,1.0);}"); +f.call(this,a.edgeWork1,{delta:[b/this.width,0]});f.call(this,a.edgeWork2,{delta:[0,b/this.height]});return this}function X(b,d,c){a.hexagonalPixelate=a.hexagonalPixelate||new h(null,"uniform sampler2D texture;uniform vec2 center;uniform float scale;uniform vec2 texSize;varying vec2 texCoord;void main(){vec2 tex=(texCoord*texSize-center)/scale;tex.y/=0.866025404;tex.x-=tex.y*0.5;vec2 a;if(tex.x+tex.y-floor(tex.x)-floor(tex.y)<1.0)a=vec2(floor(tex.x),floor(tex.y));else a=vec2(ceil(tex.x),ceil(tex.y));vec2 b=vec2(ceil(tex.x),floor(tex.y));vec2 c=vec2(floor(tex.x),ceil(tex.y));vec3 TEX=vec3(tex.x,tex.y,1.0-tex.x-tex.y);vec3 A=vec3(a.x,a.y,1.0-a.x-a.y);vec3 B=vec3(b.x,b.y,1.0-b.x-b.y);vec3 C=vec3(c.x,c.y,1.0-c.x-c.y);float alen=length(TEX-A);float blen=length(TEX-B);float clen=length(TEX-C);vec2 choice;if(alen0.0){coord*=mix(1.0,smoothstep(0.0,radius/distance,percent),strength*0.75);}else{coord*=mix(1.0,pow(percent,1.0+strength*0.75)*radius/distance,1.0-percent);}}coord+=center;"); +f.call(this,a.bulgePinch,{radius:c,strength:q(-1,e,1),center:[b,d],texSize:[this.width,this.height]});return this}function $(b,d,c){a.matrixWarp=a.matrixWarp||u("uniform mat3 matrix;uniform bool useTextureSpace;","if(useTextureSpace)coord=coord/texSize*2.0-1.0;vec3 warp=matrix*vec3(coord,1.0);coord=warp.xy/warp.z;if(useTextureSpace)coord=(coord*0.5+0.5)*texSize;");b=Array.prototype.concat.apply([],b);if(4==b.length)b= +[b[0],b[1],0,b[2],b[3],0,0,0,1];else if(9!=b.length)throw"can only warp with 2x2 or 3x3 matrix";f.call(this,a.matrixWarp,{matrix:d?y(b):b,texSize:[this.width,this.height],useTextureSpace:c|0});return this}function aa(a,d){var c=x.apply(null,d),e=x.apply(null,a),c=y(c);return this.matrixWarp([c[0]*e[0]+c[1]*e[3]+c[2]*e[6],c[0]*e[1]+c[1]*e[4]+c[2]*e[7],c[0]*e[2]+c[1]*e[5]+c[2]*e[8],c[3]*e[0]+c[4]*e[3]+c[5]*e[6],c[3]*e[1]+c[4]*e[4]+c[5]*e[7],c[3]*e[2]+c[4]*e[5]+c[5]*e[8],c[6]*e[0]+c[7]*e[3]+c[8]*e[6], +c[6]*e[1]+c[7]*e[4]+c[8]*e[7],c[6]*e[2]+c[7]*e[5]+c[8]*e[8]])}function ba(b,d,c,e){a.swirl=a.swirl||u("uniform float radius;uniform float angle;uniform vec2 center;","coord-=center;float distance=length(coord);if(distance>1;this.xa[e]>a?c=e:d=e}var e=this.xa[c]- +this.xa[d],g=(this.xa[c]-a)/e;a=(a-this.xa[d])/e;return g*this.ya[d]+a*this.ya[c]+((g*g*g-g)*this.y2[d]+(a*a*a-a)*this.y2[c])*e*e/6};var r=function(){function b(b,c,d,f){this.gl=a;this.id=a.createTexture();this.width=b;this.height=c;this.format=d;this.type=f;a.bindTexture(a.TEXTURE_2D,this.id);a.texParameteri(a.TEXTURE_2D,a.TEXTURE_MAG_FILTER,a.LINEAR);a.texParameteri(a.TEXTURE_2D,a.TEXTURE_MIN_FILTER,a.LINEAR);a.texParameteri(a.TEXTURE_2D,a.TEXTURE_WRAP_S,a.CLAMP_TO_EDGE);a.texParameteri(a.TEXTURE_2D, +a.TEXTURE_WRAP_T,a.CLAMP_TO_EDGE);b&&c&&a.texImage2D(a.TEXTURE_2D,0,this.format,b,c,0,this.format,this.type,null)}function d(a){null==c&&(c=document.createElement("canvas"));c.width=a.width;c.height=a.height;a=c.getContext("2d");a.clearRect(0,0,c.width,c.height);return a}b.fromElement=function(c){var d=new b(0,0,a.RGBA,a.UNSIGNED_BYTE);d.loadContentsOf(c);return d};b.prototype.loadContentsOf=function(b){this.width=b.width||b.videoWidth;this.height=b.height||b.videoHeight;a.bindTexture(a.TEXTURE_2D, +this.id);a.texImage2D(a.TEXTURE_2D,0,this.format,this.format,this.type,b)};b.prototype.initFromBytes=function(b,c,d){this.width=b;this.height=c;this.format=a.RGBA;this.type=a.UNSIGNED_BYTE;a.bindTexture(a.TEXTURE_2D,this.id);a.texImage2D(a.TEXTURE_2D,0,a.RGBA,b,c,0,a.RGBA,this.type,new Uint8Array(d))};b.prototype.destroy=function(){a.deleteTexture(this.id);this.id=null};b.prototype.use=function(b){a.activeTexture(a.TEXTURE0+(b||0));a.bindTexture(a.TEXTURE_2D,this.id)};b.prototype.unuse=function(b){a.activeTexture(a.TEXTURE0+ +(b||0));a.bindTexture(a.TEXTURE_2D,null)};b.prototype.ensureFormat=function(b,c,d,f){if(1==arguments.length){var h=arguments[0];b=h.width;c=h.height;d=h.format;f=h.type}if(b!=this.width||c!=this.height||d!=this.format||f!=this.type)this.width=b,this.height=c,this.format=d,this.type=f,a.bindTexture(a.TEXTURE_2D,this.id),a.texImage2D(a.TEXTURE_2D,0,this.format,b,c,0,this.format,this.type,null)};b.prototype.drawTo=function(b){a.framebuffer=a.framebuffer||a.createFramebuffer();a.bindFramebuffer(a.FRAMEBUFFER, +a.framebuffer);a.framebufferTexture2D(a.FRAMEBUFFER,a.COLOR_ATTACHMENT0,a.TEXTURE_2D,this.id,0);if(a.checkFramebufferStatus(a.FRAMEBUFFER)!==a.FRAMEBUFFER_COMPLETE)throw Error("incomplete framebuffer");a.viewport(0,0,this.width,this.height);b();a.bindFramebuffer(a.FRAMEBUFFER,null)};var c=null;b.prototype.fillUsingCanvas=function(b){b(d(this));this.format=a.RGBA;this.type=a.UNSIGNED_BYTE;a.bindTexture(a.TEXTURE_2D,this.id);a.texImage2D(a.TEXTURE_2D,0,a.RGBA,a.RGBA,a.UNSIGNED_BYTE,c);return this}; +b.prototype.toImage=function(b){this.use();h.getDefaultShader().drawRect();var f=4*this.width*this.height,k=new Uint8Array(f),n=d(this),p=n.createImageData(this.width,this.height);a.readPixels(0,0,this.width,this.height,a.RGBA,a.UNSIGNED_BYTE,k);for(var m=0;m { + const texture = canvas.texture(tempImage); + + // Create the effet + canvas.draw(texture).vignette(0.5, 0.6).update(); + + const canvasOpacity = document.createElement('canvas'); + canvasOpacity.width = 512; + canvasOpacity.height = 512; + const ctx = canvasOpacity.getContext('2d'); + + ctx.globalAlpha = 0.2 + ctx.drawImage(canvas, 0, 0, 512, 512); + + // Add the effect + const calqueMesh = new THREE.Mesh(_videoGeometry, create_mat2d(new THREE.TextureLoader().load(canvasOpacity.toDataURL('image/png')), true)) + calqueMesh.material.opacity = 0.2; + calqueMesh.material.transparent = true; + calqueMesh.renderOrder = 999; // render last + calqueMesh.frustumCulled = false; + FRAMEOBJ3D.add(calqueMesh); + } +} + +// build the 3D. called once when Jeeliz Face Filter is OK +function init_threeScene(spec) { + // INIT THE THREE.JS context + const threeStuffs = JeelizThreeHelper.init(spec, detect_callback); + _videoGeometry = threeStuffs.videoMesh.geometry; + + // CREATE OUR DOG EARS: + + // let's begin by creating a loading manager that will allow us to + // have more control over the three parts of our dog model + const loadingManager = new THREE.LoadingManager(); + + const loaderEars = new THREE.BufferGeometryLoader(loadingManager); + + loaderEars.load( + './models/dog/dog_ears.json', + function (geometry) { + const mat = new THREE.FlexMaterial({ + map: new THREE.TextureLoader().load('./models/dog/texture_ears.jpg'), + flexMap: new THREE.TextureLoader().load('./models/dog/flex_ears_256.jpg'), + alphaMap: new THREE.TextureLoader().load('./models/dog/alpha_ears_256.jpg'), + transparent: true, + opacity: 1, + bumpMap: new THREE.TextureLoader().load('./models/dog/normal_ears.jpg'), + bumpScale: 0.0075, + shininess: 1.5, + specular: 0xffffff, + }); + + EARMESH = new THREE.Mesh(geometry, mat); + EARMESH.scale.multiplyScalar(0.025); + EARMESH.position.setY(-0.3); + EARMESH.frustumCulled = false; + EARMESH.renderOrder = 10000; + EARMESH.material.opacity.value = 1; + } + ); + // CREATE OUR DOG NOSE + const loaderNose = new THREE.BufferGeometryLoader(loadingManager); + + loaderNose.load( + './models/dog/dog_nose.json', + function (geometry) { + const mat = new THREE.MeshPhongMaterial({ + map: new THREE.TextureLoader().load('./models/dog/texture_nose.jpg'), + shininess: 1.5, + specular: 0xffffff, + bumpMap: new THREE.TextureLoader().load('./models/dog/normal_nose.jpg'), + bumpScale: 0.005 + }); + + NOSEMESH = new THREE.Mesh(geometry, mat); + NOSEMESH.scale.multiplyScalar(0.018); + NOSEMESH.position.setY(-0.05); + NOSEMESH.position.setZ(0.15); + NOSEMESH.frustumCulled = false; + NOSEMESH.renderOrder = 10000; + } + ); + + // CREATE OUR DOG TONGUE + const loaderTongue = new THREE.JSONLoader(loadingManager); + + loaderTongue.load( + 'models/dog/dog_tongue.json', + function (geometry) { + geometry.computeMorphNormals(); + const mat = new THREE.FlexMaterial({ + map: new THREE.TextureLoader().load('./models/dog/dog_tongue.jpg'), + flexMap: new THREE.TextureLoader().load('./models/dog/flex_tongue_256.png'), + alphaMap: new THREE.TextureLoader().load('./models/dog/tongue_alpha_256.jpg'), + transparent: true, + morphTargets: true, + opacity: 1 + }); + + TONGUEMESH = new THREE.Mesh(geometry, mat); + TONGUEMESH.material.opacity.value = 0; + + TONGUEMESH.scale.multiplyScalar(2); + TONGUEMESH.position.setY(-0.28); + + TONGUEMESH.frustumCulled = false; + TONGUEMESH.visible = false; + + if (!MIXER) { + // the mixer is declared globally so we can use it in the THREE renderer + MIXER = new THREE.AnimationMixer(TONGUEMESH); + const clips = TONGUEMESH.geometry.animations; + + const clip = clips[0]; + + ACTION = MIXER.clipAction(clip); + ACTION.noLoop = true; + + ACTION.play(); + } + } + ); + + loadingManager.onLoad = () => { + DOGOBJ3D.add(EARMESH); + DOGOBJ3D.add(NOSEMESH); + DOGOBJ3D.add(TONGUEMESH); + + addDragEventListener(DOGOBJ3D); + + threeStuffs.faceObject.add(DOGOBJ3D); + + ISLOADED = true; + } + + // CREATE AN AMBIENT LIGHT + const ambient = new THREE.AmbientLight(0xffffff, 0.8); + threeStuffs.scene.add(ambient); + + // CREAT A DIRECTIONALLIGHT + const dirLight = new THREE.DirectionalLight(0xffffff, 0.5); + dirLight.position.set(100, 1000, 1000); + threeStuffs.scene.add(dirLight); + + // CREATE THE CAMERA + THREECAMERA = JeelizThreeHelper.create_camera(); + + threeStuffs.scene.add(FRAMEOBJ3D); + + // Add filter + applyFilter(); +} // end init_threeScene() + +function animateTongue (mesh, isReverse) { + mesh.visible = true; + + if (isReverse) { + ACTION.timescale = -1; + ACTION.paused = false; + + setTimeout(() => { + ACTION.paused = true; + + ISOPAQUE = false; + ISTONGUEOUT = false; + ISANIMATING = false; + ISANIMATIONOVER = true; + + + new TWEEN.Tween(mesh.material.opacity) + .to({ value: 0 }, 150) + .start(); + }, 150); + } else { + ACTION.timescale = 1; + ACTION.reset(); + ACTION.paused = false; + + new TWEEN.Tween(mesh.material.opacity) + .to({ value: 1 }, 100) + .onComplete(() => { + ISOPAQUE = true; + setTimeout(() => { + ACTION.paused = true; + ISANIMATING = false; + ISTONGUEOUT = true; + ISANIMATIONOVER = true; + }, 150); + }) + .start(); + } +} + +// Entry point: launched by body.onload() +function main(){ + DOGOBJ3D = new THREE.Object3D(); + FRAMEOBJ3D = new THREE.Object3D(); + + JeelizResizer.size_canvas({ + canvasId: 'jeeFaceFilterCanvas', + callback: function(isError, bestVideoSettings){ + init_faceFilter(bestVideoSettings); + } + }); +} + +function init_faceFilter(videoSettings){ + JEELIZFACEFILTER.init({ + canvasId: 'jeeFaceFilterCanvas', + NNCPath: '../../../neuralNets/', // root of NN_DEFAULT.json file + videoSettings: videoSettings, + callbackReady: function (errCode, spec) { + if (errCode) { + console.log('AN ERROR HAPPENS. SORRY BRO :( . ERR =', errCode); + return; + } + + console.log('INFO: JEELIZFACEFILTER IS READY'); + init_threeScene(spec); + }, // end callbackReady() + + // called at each render iteration (drawing loop) + callbackTrack: function (detectState) { + ISDETECTED = JeelizThreeHelper.get_isDetected(); + + if (ISDETECTED) { + const _quat = new THREE.Quaternion(); + const _eul = new THREE.Euler(); + _eul.setFromQuaternion(_quat); + + // flex ears material: + if (EARMESH && EARMESH.material.set_amortized){ + EARMESH.material.set_amortized( + EARMESH.getWorldPosition(new THREE.Vector3(0,0,0)), + EARMESH.getWorldScale(new THREE.Vector3(0,0,0)), + EARMESH.getWorldQuaternion(_eul), + false, + 0.1 + ); + } + + if (TONGUEMESH && TONGUEMESH.material.set_amortized){ + TONGUEMESH.material.set_amortized( + TONGUEMESH.getWorldPosition(new THREE.Vector3(0,0,0)), + TONGUEMESH.getWorldScale(new THREE.Vector3(0,0,0)), + TONGUEMESH.getWorldQuaternion(_eul), + false, + 0.3 + ); + } + + if (detectState.expressions[0] >= 0.85 && !ISOVERTHRESHOLD) { + ISOVERTHRESHOLD = true; + ISUNDERTRESHOLD = false; + ISANIMATIONOVER = false; + } + if (detectState.expressions[0] <= 0.1 && !ISUNDERTRESHOLD) { + ISOVERTHRESHOLD = false; + ISUNDERTRESHOLD = true; + ISANIMATIONOVER = false; + } + + if (ISLOADED && ISOVERTHRESHOLD && !ISANIMATING && !ISANIMATIONOVER) { + if (!ISTONGUEOUT) { + ISANIMATING = true; + animateTongue(TONGUEMESH); + } else { + ISANIMATING = true; + animateTongue(TONGUEMESH, true); + } + } + } + + TWEEN.update(); + + // Update the mixer on each frame: + if (ISOPAQUE) { + MIXER.update(0.16); + } + + JeelizThreeHelper.render(detectState, THREECAMERA); + } // end callbackTrack() + }); // end JEELIZFACEFILTER.init call +} + diff --git a/filters/dog/models/dog/alpha_ears.jpg b/filters/dog/models/dog/alpha_ears.jpg new file mode 100644 index 0000000..12080dc Binary files /dev/null and b/filters/dog/models/dog/alpha_ears.jpg differ diff --git a/filters/dog/models/dog/alpha_ears_1024.jpg b/filters/dog/models/dog/alpha_ears_1024.jpg new file mode 100644 index 0000000..12080dc Binary files /dev/null and b/filters/dog/models/dog/alpha_ears_1024.jpg differ diff --git a/filters/dog/models/dog/alpha_ears_256.jpg b/filters/dog/models/dog/alpha_ears_256.jpg new file mode 100644 index 0000000..f3657be Binary files /dev/null and b/filters/dog/models/dog/alpha_ears_256.jpg differ diff --git a/filters/dog/models/dog/displace_nez.jpg b/filters/dog/models/dog/displace_nez.jpg new file mode 100644 index 0000000..a353481 Binary files /dev/null and b/filters/dog/models/dog/displace_nez.jpg differ diff --git a/filters/dog/models/dog/displace_oreilles.jpg b/filters/dog/models/dog/displace_oreilles.jpg new file mode 100644 index 0000000..80055f5 Binary files /dev/null and b/filters/dog/models/dog/displace_oreilles.jpg differ diff --git a/filters/dog/models/dog/dog_ears.json b/filters/dog/models/dog/dog_ears.json new file mode 100644 index 0000000..7098a8c --- /dev/null +++ b/filters/dog/models/dog/dog_ears.json @@ -0,0 +1 @@ +{"data":{"attributes":{"normal":{"array":[0.5261,-0.1173,0.8422,0.5586,-0.3503,0.7518,0.6237,-0.1159,0.7729,0.5827,0.1156,0.8044,0.6778,0.0909,0.7295,0.4309,0.1542,0.8891,0.3628,-0.0901,0.9275,0.4655,-0.3878,0.7956,0.2479,-0.3784,0.8918,-0.4619,-0.751,-0.4719,-0.5826,-0.4378,-0.6847,-0.4679,-0.466,-0.7509,-0.5418,-0.1743,-0.8222,-0.4287,-0.1908,-0.8831,-0.4757,-0.4411,-0.7609,-0.4631,-0.7396,-0.4883,0.8904,-0.3279,-0.3156,0.9723,-0.0941,0.2139,0.8697,-0.4698,-0.151,0.9097,-0.2864,0.3006,0.8249,-0.5469,-0.1424,0.3735,-0.7323,-0.5693,0.4071,-0.7513,-0.5194,0.1928,-0.9147,-0.3551,0.1739,-0.9399,0.2938,-0.0618,-0.9195,-0.3881,-0.1617,-0.9167,0.3654,-0.4282,-0.8448,-0.3206,-0.4523,-0.2604,-0.853,-0.2184,-0.3447,-0.913,-0.0652,-0.4418,-0.8947,-0.8674,-0.0027,0.4975,-0.5478,-0.0897,0.8318,-0.4978,0.0567,0.8654,-0.8283,0.0247,0.5597,-0.4458,0.1823,0.8763,-0.9747,-0.1733,-0.141,-0.9715,-0.0693,-0.2266,-0.8896,-0.0859,0.4486,-0.9713,-0.0471,-0.2331,0.7442,-0.2048,0.6357,0.7908,-0.5525,0.2633,0.8638,-0.414,0.2871,0.7918,-0.0196,0.6104,0.6723,-0.4008,0.6224,-0.0671,0.8036,0.5913,-0.4339,0.392,0.8112,-0.0224,0.5221,0.8526,-0.038,0.2673,0.9629,0.1876,0.531,0.8263,0.149,0.8179,0.5556,-0.2954,-0.8192,-0.4916,-0.3309,-0.5881,-0.738,0.3406,-0.628,-0.6996,-0.32,-0.3365,-0.8856,-0.7079,-0.3396,-0.6192,-0.6943,-0.6395,-0.3302,-0.5555,-0.0692,-0.8286,-0.5853,-0.2448,-0.7729,-0.1682,-0.2463,-0.9545,-0.1352,-0.0493,-0.9896,-0.5629,0.0571,-0.8245,-0.1726,0.1891,-0.9666,-0.8736,-0.4425,0.2022,-0.5038,-0.5733,0.6462,-0.6139,-0.444,0.6526,-0.8951,-0.3226,0.3078,-0.7444,-0.3401,0.5746,-0.8882,-0.1994,-0.4139,-0.7846,-0.1931,-0.5892,-0.8225,-0.5636,0.0761,0.3672,-0.8715,-0.3248,0.1017,-0.5417,-0.8344,0.5116,-0.8089,-0.2896,0.3476,-0.6925,-0.6321,0.5209,-0.8364,0.1706,0.3886,-0.8818,0.2672,0.2232,0.7549,-0.6166,0.4777,0.7872,-0.3898,0.3095,0.6899,-0.6543,0.096,0.61,-0.7865,0.1847,0.5476,-0.8161,-0.0699,0.6867,-0.7236,0.0563,0.835,-0.5473,0.3916,0.8549,-0.3402,0.2153,0.9414,-0.2594,0.0628,-0.2486,0.9666,-0.1889,-0.3925,0.9001,-0.1234,-0.5098,0.8513,-0.4016,-0.7409,0.5383,0.0797,-0.6729,0.7354,-0.3003,0.4957,-0.8149,-0.2731,0.1097,-0.9557,-0.2739,0.2087,-0.9388,-0.3048,0.2479,-0.9196,-0.1876,0.4976,-0.8468,-0.2,-0.9455,0.257,0.0741,-0.8604,0.5041,-0.0395,-0.8354,0.5482,0.1996,-0.7048,0.6807,0.0896,-0.6807,0.727,-0.0524,-0.8313,0.5533,-0.2139,-0.9409,0.2624,0.7265,-0.6447,-0.2377,0.6791,-0.713,0.1743,0.6232,-0.7377,-0.2595,0.5954,-0.8034,0.0055,0.3382,-0.5517,-0.7623,0.3457,-0.5025,-0.7924,0.7912,-0.3212,-0.5204,0.4737,-0.8433,-0.2539,0.5617,-0.8272,-0.0122,0.7942,-0.3666,-0.4846,0.6442,-0.7499,0.1504,0.6083,0.0962,-0.7879,0.6785,0.2036,-0.7058,0.7978,-0.2638,-0.5421,0.7782,0.2807,-0.5618,-0.9242,0.3316,0.1892,-0.7183,0.6865,-0.1126,-0.937,0.2763,0.2136,-0.7913,0.5801,-0.1935,-0.9394,0.2327,0.2517,-0.7505,-0.3735,0.5451,-0.8696,-0.3788,0.3167,-0.8976,-0.2118,0.3864,-0.9738,-0.0981,-0.2051,-0.9686,-0.2374,-0.0731,-0.6311,-0.26,0.7308,0.4421,0.5639,-0.6975,0.3272,0.4283,-0.8423,0.5975,0.6561,-0.461,0.5802,-0.6434,0.4994,0.4811,-0.6242,0.6155,-0.1685,-0.1101,0.9795,-0.3284,-0.3292,0.8853,0.0041,-0.1585,0.9873,-0.2741,0.9574,-0.0909,-0.2273,0.8755,-0.4264,-0.394,0.8529,-0.3424,-0.3414,0.7295,-0.5926,-0.4987,0.7139,-0.4915,-0.6369,0.77,0.0392,-0.2052,-0.0665,-0.9764,-0.0852,-0.1519,-0.9847,-0.2731,0.1097,-0.9557,-0.4381,0.2809,-0.8539,0.0639,-0.8722,0.4849,-0.4434,-0.7985,0.4072,-0.2727,-0.6918,0.6685,0.1905,-0.7194,0.668,-0.1452,-0.5399,0.8291,-0.0885,-0.9786,0.1857,-0.3515,-0.8877,0.2974,-0.1816,-0.7873,0.5892,-0.6476,-0.3033,0.699,-0.0488,-0.6367,0.7696,0.2157,-0.8607,0.461,0.0801,-0.9795,0.1849,-0.6784,0.0531,-0.7328,-0.4191,0.1601,-0.8937,-0.6713,-0.015,0.741,-0.7342,-0.1033,0.671,-0.819,-0.1531,0.553,-0.6459,-0.2864,0.7076,-0.7515,-0.3888,0.5329,-0.5697,-0.1649,0.8051,-0.9944,-0.0537,0.0909,-0.9756,0.1684,-0.1409,-0.6641,-0.0748,-0.7439,-0.9245,0.3208,-0.206,-0.9051,0.1968,-0.3767,-0.9599,-0.0084,-0.28,-0.2752,0.8978,-0.3439,-0.4381,0.2809,-0.8539,0.0979,0.8721,-0.4794,0.0544,0.8333,-0.5501,-0.3095,0.8252,-0.4725,-0.6263,0.6867,-0.3689,0.4615,0.3106,-0.831,0.5353,0.0095,-0.8446,0.5339,-0.1834,-0.8254,0.4129,-0.0529,-0.9092,0.346,-0.2358,-0.9081,0.3917,0.2742,-0.8782,0.7789,-0.6264,0.0284,0.8378,-0.5367,0.1,0.3327,-0.7052,0.6261,0.7452,-0.6195,0.2467,0.6579,-0.7372,0.1538,0.721,-0.6855,-0.101,0.3105,0.4976,0.8099,0.463,0.74,0.4877,0.2755,0.7942,0.5416,0.16,0.2699,0.9495,0.2733,0.2226,0.9358,0.4756,0.4404,0.7615,-0.3801,0.0359,-0.9242,-0.2848,0.1733,-0.9428,-0.3975,0.0117,-0.9175,-0.3111,0.0822,-0.9468,-0.2832,-0.0326,-0.9585,-0.4477,-0.1842,-0.875,-0.4315,-0.1568,-0.8884,-0.7094,-0.6956,-0.113,-0.6623,-0.1912,-0.7244,-0.2412,0.7266,-0.6433,-0.1216,0.8741,-0.4702,-0.0933,0.9846,-0.1473,0.0216,0.9828,-0.1831,0.3515,-0.6741,0.6496,-0.3549,0.2367,-0.9044,-0.4191,0.1601,-0.8937,-0.107,0.4289,-0.897,-0.0649,-0.8266,0.559,-0.0376,-0.6227,0.7815,-0.1682,-0.7766,0.607,-0.2272,-0.936,0.2686,-0.3353,-0.8843,0.3248,0.0648,-0.6721,0.7376,0.0769,-0.6768,0.732,0.401,0.664,-0.6311,-0.1726,0.1891,-0.9666,0.4615,0.3106,-0.831,0.2969,0.6155,-0.7301,0.3917,0.2742,-0.8782,-0.6459,-0.2864,0.7076,-0.5697,-0.1649,0.8051,-0.6389,0.6306,-0.4405,-0.8351,0.4834,-0.2625,-0.6263,0.6867,-0.3689,-0.4912,0.0393,-0.8702,-0.6389,0.6306,-0.4405,-0.4074,0.1155,-0.9059,-0.8446,0.3818,-0.3752,-0.9051,0.1968,-0.3767,-0.8446,0.3818,-0.3752,-0.3095,0.8252,-0.4725,-0.3195,0.2106,-0.9239,-0.3705,0.2029,-0.9064,0.3295,-0.4542,-0.8277,0.5663,-0.5934,-0.572,0.3828,-0.7073,-0.5942,0.3295,-0.4542,-0.8277,-0.3276,-0.8001,-0.5024,-0.3665,-0.5126,-0.7765,0.346,-0.2358,-0.9081,0.5229,-0.3497,-0.7773,0.7452,-0.6195,0.2467,0.6579,-0.7372,0.1538,-0.0775,-0.9734,0.2153,0.5461,-0.8375,-0.0182,0.3917,0.2742,-0.8782,0.2969,0.6155,-0.7301,0.0544,0.8333,-0.5501,0.0176,0.4766,-0.8789,0.1108,0.414,-0.9035,0.1049,0.3684,-0.9237,0.0034,0.4316,-0.902,-0.1556,0.5544,-0.8176,0.5482,0.8359,0.0266,0.3703,0.9208,0.1222,0.628,0.6723,0.3919,0.6308,0.7747,-0.0433,0.287,-0.5738,0.7671,0.1735,-0.5498,0.817,0.3138,-0.5309,0.7872,0.1986,-0.506,0.8394,0.1603,-0.5461,0.8222,-0.3695,-0.9214,-0.1199,-0.3547,-0.9272,-0.1199,-0.459,-0.7519,-0.4731,-0.2236,-0.9628,-0.1518,0.8068,-0.3995,-0.4352,0.6989,-0.671,0.2475,0.8117,-0.4148,-0.4111,0.7138,-0.6418,0.2803,0.5813,-0.0472,-0.8123,0.5799,-0.0114,-0.8146,0.8381,-0.2481,-0.4858,0.9017,0.2743,-0.3342,0.9898,0.1374,-0.0379,0.4089,-0.7906,-0.4557,-0.8507,0.4831,-0.207,-0.9314,0.2015,0.303,-0.869,0.4542,-0.1964,-0.9265,0.1861,0.3271,-0.5716,-0.2318,0.7871,-0.9386,-0.3247,0.1166,-0.9008,0.3531,0.2527,-0.9583,-0.2792,0.0605,-0.8602,0.2774,0.4279,-0.5581,0.779,0.2857,0.2657,0.2946,-0.9179,0.265,0.2507,-0.9311,0.7509,0.6444,-0.1443,0.7179,0.6213,0.314,0.85,0.4865,0.2018,-0.4298,0.601,-0.6738,-0.5862,0.5891,-0.5561,-0.6178,0.5559,-0.5561,-0.4641,0.5652,-0.6821,-0.1559,0.9579,0.2409,-0.4848,0.6472,0.5883,0.044,0.9776,0.2058,0.2738,-0.5937,0.7566,-0.0731,-0.411,0.9087,0.292,-0.5481,0.7838,-0.084,-0.353,0.9318,-0.2235,-0.9581,-0.1791,-0.5984,-0.7996,0.0501,0.0311,-0.5098,0.8597,-0.5426,-0.2074,0.8139,0.0634,-0.469,0.8809,0.4145,-0.5796,0.7016,-0.0703,-0.9822,-0.1742,-0.5063,-0.8603,-0.059,-0.182,-0.8166,-0.5478,-0.5979,-0.7146,-0.3631,-0.9126,-0.1724,0.3706,-0.8822,-0.3786,0.2799,-0.9707,-0.2393,-0.0193,-0.5401,-0.0529,0.8399,-0.5132,-0.0359,0.8575,-0.6317,0.0572,0.7731,0.8758,-0.464,0.1328,0.4663,-0.5433,0.6981,0.9037,-0.4207,0.0797,0.8176,-0.496,0.2923,0.8115,-0.5203,0.2658,0.5461,-0.8375,-0.0182,0.642,-0.7099,-0.2896,0.4566,-0.8415,-0.2887,0.1668,0.9678,0.1885,-0.3302,0.5969,-0.7312,-0.3617,0.5579,-0.7469,-0.1803,0.5109,-0.8405,-0.3805,-0.9183,-0.1089,-0.491,-0.8703,-0.0383,-0.5774,-0.7138,-0.3963,0.148,-0.541,0.8279,0.1723,-0.4969,0.8505,0.1852,-0.5021,0.8448,0.063,-0.4442,0.8937,0.0415,-0.4889,0.8713,-0.5401,-0.0529,0.8399,-0.5132,-0.0359,0.8575,-0.8822,-0.3786,0.2799,-0.7515,-0.3888,0.5329,0.4566,-0.8415,-0.2887,0.3828,-0.7073,-0.5942,0.8176,-0.496,0.2923,0.8115,-0.5203,0.2658,0.6267,0.3883,0.6756,0.7214,0.3464,0.5996,-0.3792,0.0054,-0.9253,0.7908,-0.576,-0.2067,0.3382,-0.5222,-0.7829,-0.817,0.1134,0.5654,-0.9627,-0.2703,-0.0018,0.8469,0.2215,0.4834,-0.0943,0.0851,0.9919,0.1075,0.0625,0.9922,-0.2791,-0.1648,-0.946,-0.6001,0.1113,-0.7921,-0.6169,-0.4892,-0.6165,-0.204,-0.5139,-0.8332,0.2046,-0.0062,0.9788,-0.4866,-0.4596,-0.7429,-0.3381,-0.2447,-0.9087,-0.9599,-0.0084,-0.28,-0.9707,-0.2393,-0.0193,0.4129,-0.0529,-0.9092,-0.5261,-0.1173,0.8422,-0.5586,-0.3503,0.7518,-0.4655,-0.3878,0.7956,-0.5827,0.1156,0.8044,-0.6237,-0.1159,0.7729,-0.4309,0.1542,0.8891,-0.3628,-0.0901,0.9275,0.5826,-0.4378,-0.6847,0.4619,-0.751,-0.4719,0.4679,-0.466,-0.7509,0.5418,-0.1743,-0.8222,0.4287,-0.1908,-0.8831,0.4757,-0.4411,-0.7609,0.4631,-0.7396,-0.4883,-0.9723,-0.0941,0.2139,-0.8904,-0.3279,-0.3156,-0.8697,-0.4698,-0.151,-0.9097,-0.2864,0.3006,-0.8249,-0.5469,-0.1424,-0.3735,-0.7323,-0.5693,-0.4071,-0.7513,-0.5194,-0.1739,-0.9399,0.2938,-0.1928,-0.9147,-0.3551,0.0618,-0.9195,-0.3881,0.1617,-0.9167,0.3654,0.4282,-0.8448,-0.3206,0.4523,-0.2604,-0.853,0.2184,-0.3447,-0.913,0.8674,-0.0027,0.4975,0.5478,-0.0897,0.8318,0.8896,-0.0859,0.4486,0.8283,0.0247,0.5597,0.4978,0.0567,0.8654,0.9747,-0.1733,-0.141,0.9715,-0.0693,-0.2266,-0.7442,-0.2048,0.6357,-0.7908,-0.5525,0.2633,-0.6723,-0.4008,0.6224,-0.7918,-0.0196,0.6104,-0.6778,0.0909,0.7295,0.4339,0.392,0.8112,0.0671,0.8036,0.5913,0.0224,0.5221,0.8526,0.038,0.2673,0.9629,-0.1876,0.531,0.8263,-0.149,0.8179,0.5557,0.2954,-0.8192,-0.4916,0.3309,-0.5881,-0.738,-0.3406,-0.628,-0.6996,0.32,-0.3365,-0.8856,0.7079,-0.3396,-0.6192,0.6943,-0.6395,-0.3302,0.5555,-0.0692,-0.8286,0.9713,-0.0471,-0.2331,0.5629,0.0571,-0.8245,0.5853,-0.2448,-0.7729,0.1682,-0.2463,-0.9545,0.1352,-0.0493,-0.9896,0.8736,-0.4425,0.2022,0.5038,-0.5733,0.6462,0.8225,-0.5636,0.0761,0.8951,-0.3226,0.3078,0.6139,-0.444,0.6526,0.8882,-0.1994,-0.4139,0.7846,-0.1931,-0.5892,-0.3672,-0.8715,-0.3248,0.0652,-0.4418,-0.8947,-0.5116,-0.8089,-0.2896,-0.1017,-0.5417,-0.8344,-0.5209,-0.8364,0.1706,-0.3886,-0.8818,0.2672,-0.2232,0.7549,-0.6166,-0.4777,0.7872,-0.3898,-0.3916,0.8549,-0.3402,-0.096,0.61,-0.7865,-0.3095,0.6899,-0.6543,0.0699,0.6867,-0.7236,-0.0563,0.835,-0.5473,0.1889,-0.3925,0.9001,-0.0628,-0.2486,0.9666,0.1234,-0.5098,0.8513,0.4016,-0.7409,0.5383,-0.0797,-0.6729,0.7354,-0.2479,-0.3784,0.8918,0.2731,0.1097,-0.9557,0.3003,0.4957,-0.8149,0.2739,0.2087,-0.9388,0.3048,0.2479,-0.9196,0.1876,0.4976,-0.8468,-0.0741,-0.8604,0.5041,0.2,-0.9455,0.257,0.0395,-0.8354,0.5482,-0.1996,-0.7048,0.6807,-0.0896,-0.6807,0.727,0.0524,-0.8313,0.5533,0.2139,-0.9409,0.2624,-0.6791,-0.713,0.1743,-0.7265,-0.6447,-0.2377,-0.6232,-0.7377,-0.2595,-0.5954,-0.8034,0.0055,-0.3382,-0.5517,-0.7623,-0.3457,-0.5025,-0.7924,-0.7912,-0.3212,-0.5204,-0.4737,-0.8433,-0.2539,-0.7978,-0.2638,-0.5421,-0.7942,-0.3666,-0.4846,-0.5617,-0.8272,-0.0122,-0.6083,0.0962,-0.7879,-0.6785,0.2036,-0.7058,0.7183,0.6865,-0.1126,0.9242,0.3316,0.1892,0.937,0.2763,0.2136,0.7913,0.5801,-0.1935,0.9394,0.2327,0.2517,0.7505,-0.3735,0.5451,0.8696,-0.3788,0.3167,0.8976,-0.2118,0.3864,0.9738,-0.0981,-0.2051,0.7444,-0.3401,0.5746,0.6311,-0.26,0.7308,-0.4421,0.5639,-0.6975,-0.7782,0.2807,-0.5618,-0.5975,0.6561,-0.461,-0.3272,0.4283,-0.8423,-0.1847,0.5476,-0.8161,-0.5802,-0.6434,0.4994,-0.4811,-0.6242,0.6155,0.1685,-0.1101,0.9795,0.3284,-0.3292,0.8853,-0.0041,-0.1585,0.9873,0.2273,0.8755,-0.4264,0.2741,0.9574,-0.0909,0.394,0.8529,-0.3424,0.3414,0.7295,-0.5926,0.4987,0.7139,-0.4915,0.6369,0.77,0.0392,0.2052,-0.0665,-0.9764,0.0852,-0.152,-0.9847,-0.3476,-0.6925,-0.6321,0.2731,0.1097,-0.9557,0.4381,0.2809,-0.8539,-0.0639,-0.8722,0.4849,0.4434,-0.7985,0.4072,0.0885,-0.9786,0.1857,-0.1905,-0.7194,0.668,0.2727,-0.6918,0.6685,-0.6442,-0.7499,0.1504,0.3515,-0.8877,0.2974,0.1816,-0.7873,0.5892,0.6476,-0.3033,0.699,0.0488,-0.6367,0.7696,-0.2157,-0.8607,0.461,-0.0801,-0.9795,0.1849,0.6784,0.0531,-0.7328,0.1726,0.1891,-0.9666,0.4191,0.1601,-0.8937,0.9686,-0.2374,-0.0731,0.6713,-0.015,0.741,0.7342,-0.1033,0.671,0.819,-0.1531,0.553,0.6459,-0.2864,0.7076,0.7515,-0.3888,0.5329,0.5697,-0.1649,0.8051,0.9944,-0.0537,0.0909,0.9756,0.1684,-0.1409,0.6641,-0.0748,-0.7439,0.9245,0.3208,-0.206,0.9051,0.1968,-0.3767,0.9599,-0.0084,-0.28,0.9707,-0.2393,-0.0193,0.2752,0.8978,-0.3439,0.4381,0.2809,-0.8539,0.6263,0.6867,-0.3689,-0.0979,0.8721,-0.4794,-0.0544,0.8333,-0.5501,0.3095,0.8252,-0.4725,0.6389,0.6306,-0.4405,-0.4615,0.3106,-0.831,-0.5353,0.0095,-0.8446,-0.5339,-0.1834,-0.8254,-0.4129,-0.0529,-0.9092,-0.346,-0.2358,-0.9081,-0.3917,0.2743,-0.8782,-0.7789,-0.6264,0.0284,-0.721,-0.6855,-0.101,-0.8378,-0.5367,0.1,-0.7452,-0.6195,0.2467,-0.6579,-0.7372,0.1538,-0.5461,-0.8375,-0.0181,-0.3105,0.4976,0.8099,-0.463,0.74,0.4877,-0.4756,0.4404,0.7615,-0.2755,0.7942,0.5416,-0.16,0.2699,0.9495,-0.2733,0.2226,0.9358,0.2848,0.1733,-0.9428,0.3801,0.0359,-0.9242,0.3975,0.0117,-0.9175,0.3111,0.0822,-0.9468,0.2832,-0.0326,-0.9585,0.4477,-0.1842,-0.875,0.4315,-0.1568,-0.8884,0.7094,-0.6956,-0.113,0.6623,-0.1912,-0.7244,0.2412,0.7266,-0.6433,0.1216,0.8741,-0.4702,0.0933,0.9846,-0.1473,-0.0216,0.9828,-0.1831,-0.3515,-0.6741,0.6496,0.3549,0.2367,-0.9044,0.4191,0.1601,-0.8937,0.107,0.4289,-0.897,0.0649,-0.8266,0.559,0.0376,-0.6227,0.7815,-0.0648,-0.6721,0.7376,0.2272,-0.936,0.2686,0.1682,-0.7766,0.607,-0.401,0.664,-0.6311,0.1726,0.1891,-0.9666,-0.4615,0.3106,-0.831,-0.2969,0.6155,-0.7301,-0.3917,0.2743,-0.8782,0.6459,-0.2864,0.7076,0.3353,-0.8843,0.3248,0.7515,-0.3888,0.5329,0.5697,-0.1649,0.8051,0.6389,0.6306,-0.4405,0.8351,0.4834,-0.2625,0.8446,0.3818,-0.3752,0.4912,0.0393,-0.8702,0.6389,0.6306,-0.4405,0.8446,0.3818,-0.3752,0.3195,0.2106,-0.9239,0.3095,0.8252,-0.4725,0.3705,0.2029,-0.9064,-0.3295,-0.4542,-0.8277,-0.5663,-0.5934,-0.572,-0.5229,-0.3497,-0.7773,0.3276,-0.8001,-0.5024,-0.3295,-0.4542,-0.8277,0.3665,-0.5126,-0.7765,-0.346,-0.2358,-0.9081,-0.7452,-0.6195,0.2467,-0.6579,-0.7372,0.1538,0.0775,-0.9734,0.2153,-0.5461,-0.8375,-0.0181,-0.3917,0.2743,-0.8782,-0.2969,0.6155,-0.7301,-0.0176,0.4766,-0.8789,-0.1049,0.3684,-0.9237,-0.0034,0.4316,-0.902,0.1556,0.5544,-0.8176,-0.5482,0.8359,0.0266,-0.2153,0.9414,-0.2594,-0.628,0.6723,0.3919,-0.6308,0.7747,-0.0433,-0.287,-0.5738,0.7671,-0.1735,-0.5498,0.817,-0.3138,-0.5309,0.7872,-0.1986,-0.506,0.8394,-0.1603,-0.5461,0.8222,-0.0769,-0.6768,0.732,0.3695,-0.9214,-0.1199,0.3547,-0.9272,-0.1199,0.4591,-0.7519,-0.4731,0.2236,-0.9628,-0.1518,-0.8068,-0.3995,-0.4352,-0.8117,-0.4148,-0.4111,-0.6989,-0.671,0.2475,-0.5813,-0.0472,-0.8123,-0.5799,-0.0114,-0.8146,-0.8381,-0.2481,-0.4858,-0.9017,0.2743,-0.3342,-0.4089,-0.7906,-0.4557,0.8507,0.4831,-0.207,0.9314,0.2015,0.303,0.869,0.4542,-0.1964,0.9265,0.1861,0.3271,0.5716,-0.2318,0.7871,0.9386,-0.3247,0.1166,0.9008,0.3531,0.2527,0.9583,-0.2792,0.0605,0.8602,0.2774,0.4279,0.5581,0.779,0.2857,-0.2657,0.2946,-0.9179,-0.265,0.2507,-0.9311,-0.1108,0.414,-0.9035,-0.7509,0.6444,-0.1443,-0.7179,0.6213,0.314,-0.85,0.4865,0.2018,0.4298,0.601,-0.6738,0.5862,0.5891,-0.5561,0.6178,0.5559,-0.5561,0.1559,0.9579,0.2409,-0.044,0.9776,0.2058,-0.2738,-0.5937,0.7566,0.1452,-0.5399,0.8291,-0.292,-0.5481,0.7838,0.0731,-0.411,0.9087,-0.7138,-0.6418,0.2803,0.2235,-0.9581,-0.1791,0.5984,-0.7996,0.0501,-0.0311,-0.5098,0.8597,0.5426,-0.2074,0.8139,-0.0634,-0.469,0.8809,-0.4145,-0.5796,0.7016,-0.3327,-0.7052,0.6261,0.0703,-0.9822,-0.1742,0.5063,-0.8603,-0.059,0.182,-0.8166,-0.5478,0.5979,-0.7146,-0.3631,0.9126,-0.1724,0.3706,0.8822,-0.3786,0.2799,0.5401,-0.0529,0.8399,0.6317,0.0572,0.773,0.5132,-0.0359,0.8575,0.084,-0.353,0.9318,0.6584,0.1193,0.7431,-0.8758,-0.464,0.1328,-0.4663,-0.5433,0.6981,-0.9037,-0.4207,0.0797,-0.8176,-0.496,0.2923,-0.8115,-0.5203,0.2658,-0.642,-0.7099,-0.2896,-0.4566,-0.8415,-0.2887,-0.3828,-0.7073,-0.5942,-0.1668,0.9678,0.1885,0.3302,0.5969,-0.7312,0.3617,0.5579,-0.7469,0.4641,0.5652,-0.6821,0.3805,-0.9183,-0.1089,0.491,-0.8703,-0.0383,-0.148,-0.541,0.8279,-0.1723,-0.4969,0.8505,-0.063,-0.4442,0.8937,-0.0415,-0.4889,0.8713,0.5401,-0.0529,0.8399,0.5132,-0.0359,0.8575,0.8822,-0.3786,0.2799,0.5774,-0.7138,-0.3963,0.9707,-0.2393,-0.0193,-0.4566,-0.8415,-0.2887,-0.3828,-0.7073,-0.5942,-0.8176,-0.496,0.2923,-0.8115,-0.5203,0.2658,-0.6267,0.3883,0.6756,-0.7214,0.3464,0.5996,0.3792,0.0054,-0.9253,0.4074,0.1155,-0.9059,-0.8638,-0.414,0.2871,-0.7908,-0.576,-0.2067,-0.3382,-0.5222,-0.7829,0.817,0.1134,0.5654,0.4458,0.1823,0.8763,0.9627,-0.2703,-0.0018,-0.8469,0.2215,0.4834,0.0943,0.0851,0.9919,-0.1075,0.0625,0.9922,0.2791,-0.1648,-0.946,0.6001,0.1113,-0.7921,0.6169,-0.4892,-0.6165,0.204,-0.5139,-0.8332,0.6263,0.6867,-0.3689,-0.2046,-0.0062,0.9788,0.4866,-0.4596,-0.7429,0.3381,-0.2447,-0.9087,0.9051,0.1968,-0.3767,0.9599,-0.0084,-0.28,-0.4129,-0.0529,-0.9092,-0.6389,0.6306,-0.4405,-0.6584,0.1193,0.7431,-0.9898,0.1374,-0.0379,0.4847,0.6472,0.5883,-0.0544,0.8333,-0.5501,0.1803,0.5109,-0.8405,-0.3703,0.9208,0.1222,-0.1852,-0.5021,0.8448],"itemSize":3,"type":"Float32Array"},"uv":{"array":[0.2877,0.6924,0.251,0.7254,0.2435,0.6665,0.2857,0.6236,0.238,0.6079,0.34,0.6341,0.3386,0.7096,0.2904,0.7584,0.3373,0.7797,0.9091,0.5847,0.9665,0.6374,0.9044,0.6423,0.9541,0.6923,0.8969,0.7036,0.8217,0.6451,0.8227,0.5843,0.1485,0.5119,0.1753,0.5544,0.1509,0.559,0.1794,0.6033,0.1551,0.6093,0.1298,0.5655,0.1268,0.5162,0.2435,0.8405,0.2891,0.8451,0.2874,0.8595,0.3357,0.8587,0.3355,0.8683,0.3354,0.8743,0.2825,0.869,0.2229,0.8522,0.5132,0.6707,0.4758,0.7147,0.4912,0.664,0.5257,0.6164,0.5017,0.6095,0.5451,0.6252,0.53,0.6793,0.4954,0.7198,0.5099,0.7285,0.2111,0.6575,0.2015,0.7094,0.1879,0.6582,0.2038,0.6023,0.2221,0.7116,0.4895,0.5129,0.5075,0.5607,0.484,0.5589,0.4773,0.6075,0.4492,0.5601,0.4542,0.5111,0.1052,0.5213,0.1101,0.5725,0.1354,0.6174,0.1181,0.6251,0.0894,0.5784,0.0825,0.5264,0.5443,0.6873,0.562,0.6335,0.58,0.6398,0.561,0.6925,0.5201,0.7386,0.5395,0.7543,0.4561,0.817,0.4212,0.823,0.4455,0.7984,0.4724,0.7875,0.4602,0.7803,0.4767,0.8159,0.4486,0.8566,0.4285,0.844,0.217,0.8124,0.1964,0.8105,0.2018,0.7823,0.1912,0.7857,0.2282,0.7943,0.2515,0.8198,0.2863,0.3053,0.234,0.3853,0.2321,0.3098,0.2862,0.2164,0.2308,0.2239,0.3479,0.2149,0.3461,0.3051,0.2865,0.383,0.3447,0.3836,0.3849,0.7602,0.4201,0.7823,0.3828,0.812,0.3828,0.8469,0.3363,0.8289,0.2765,0.9175,0.2305,0.8971,0.2786,0.8911,0.335,0.8917,0.3346,0.9144,0.7447,0.4541,0.6931,0.3777,0.7502,0.3789,0.7022,0.2939,0.756,0.295,0.8262,0.3801,0.8249,0.4554,0.1816,0.7137,0.2113,0.7488,0.1936,0.7507,0.2142,0.7756,0.1818,0.7608,0.1667,0.7218,0.1371,0.3304,0.1167,0.4005,0.113,0.3336,0.1337,0.2549,0.1094,0.2616,0.1617,0.2463,0.165,0.3256,0.1418,0.3984,0.1701,0.3956,0.5467,0.4061,0.5263,0.3324,0.5539,0.3382,0.5324,0.2533,0.5602,0.263,0.5779,0.3424,0.5717,0.4091,0.4818,0.7562,0.4933,0.7668,0.4828,0.7913,0.4641,0.7536,0.1931,0.3179,0.1907,0.2352,0.1969,0.3906,0.2294,0.7587,0.2542,0.7792,0.4552,0.7161,0.4456,0.7628,0.4257,0.7287,0.492,0.3962,0.4599,0.3141,0.4985,0.3237,0.4644,0.2283,0.5038,0.2411,0.5186,0.4022,0.1563,0.7315,0.1781,0.7777,0.17,0.8068,0.1365,0.7464,0.09,0.3382,0.0708,0.4084,0.0681,0.3434,0.0864,0.2684,0.0651,0.2746,0.0933,0.4039,0.5949,0.4134,0.6007,0.3478,0.5843,0.2706,0.6071,0.2782,0.6224,0.3539,0.6173,0.4187,0.4964,0.7838,0.5033,0.8133,0.0571,0.2788,0.0598,0.3478,0.0622,0.4122,0.0493,0.3531,0.0504,0.4172,0.0475,0.2836,0.0733,0.5286,0.0811,0.5795,0.0999,0.6307,0.0924,0.6305,0.0804,0.6285,0.0684,0.5787,0.2768,0.9284,0.2189,0.9387,0.3344,0.9245,0.3342,0.9344,0.2792,0.9383,0.2259,0.9488,0.5567,0.7401,0.5695,0.6907,0.5875,0.6398,0.5814,0.6886,0.5995,0.6383,0.5682,0.7383,0.6305,0.3586,0.636,0.2898,0.6282,0.2853,0.6453,0.295,0.6408,0.3643,0.6257,0.4228,0.3985,0.5655,0.3423,0.5098,0.4015,0.5104,0.4429,0.6118,0.3946,0.6257,0.3412,0.5684,0.8193,0.7841,0.754,0.824,0.75,0.7692,0.7161,0.7919,0.6982,0.7483,0.7446,0.701,0.8206,0.711,0.3839,0.8614,0.3884,0.871,0.4094,0.2187,0.406,0.3075,0.4552,0.3895,0.4028,0.3852,0.2904,0.8103,0.3914,0.8933,0.4393,0.9011,0.3925,0.9198,0.9022,0.3815,0.9531,0.2982,0.9593,0.3822,0.9052,0.4568,0.9655,0.4575,0.8993,0.2974,0.8277,0.296,0.3919,0.9306,0.4493,0.9432,0.4419,0.953,0.389,0.9404,0.4389,0.9629,0.979,0.3808,0.9716,0.2972,0.1086,0.7297,0.1082,0.6821,0.1201,0.7317,0.9416,0.7525,0.9325,0.8022,0.9222,0.7954,0.9595,0.7479,0.9737,0.6904,0.0965,0.6796,0.8814,0.8451,0.8183,0.8429,0.8833,0.8262,0.6135,0.589,0.6106,0.5388,0.6236,0.5407,0.656,0.6316,0.6717,0.5791,0.6773,0.6325,0.6682,0.6852,0.6007,0.5893,0.6837,0.2923,0.6735,0.3756,0.6844,0.4527,0.6636,0.4508,0.7056,0.7983,0.7552,0.8429,0.818,0.8629,0.2834,0.1225,0.2245,0.1336,0.2068,0.0392,0.2747,0.0227,0.3498,0.1194,0.2847,0.4489,0.3434,0.4497,0.2831,0.5082,0.232,0.4499,0.7113,0.2051,0.7618,0.2058,0.7202,0.1118,0.7675,0.112,0.8292,0.2068,0.8238,0.522,0.7392,0.5204,0.7364,0.5817,0.6757,0.5189,0.1232,0.1773,0.0988,0.1886,0.0947,0.1017,0.072,0.1188,0.1235,0.0803,0.1517,0.1633,0.1451,0.4586,0.1713,0.4559,0.1723,0.5088,0.1212,0.4614,0.5464,0.1709,0.5742,0.1859,0.5772,0.0888,0.6053,0.1113,0.598,0.1981,0.565,0.4699,0.5413,0.4662,0.5574,0.5244,0.5359,0.5193,0.5151,0.4625,0.1821,0.1485,0.1576,0.0596,0.1959,0.4528,0.2305,0.5068,0.1951,0.5073,0.4745,0.1384,0.5166,0.1549,0.5439,0.0668,0.4956,0.0447,0.4907,0.4584,0.5122,0.5152,0.4548,0.4542,0.0766,0.1975,0.0566,0.2044,0.0523,0.1293,0.0344,0.1356,0.0984,0.465,0.0756,0.4693,0.6198,0.2078,0.6273,0.1293,0.6467,0.1406,0.6395,0.2155,0.6101,0.4793,0.5875,0.4742,0.6015,0.5362,0.5789,0.5303,0.0668,0.4723,0.0541,0.4759,0.0602,0.5301,0.0403,0.2118,0.0183,0.1395,0.0493,0.2079,0.6467,0.2192,0.6643,0.1476,0.6709,0.1499,0.6803,0.1521,0.6555,0.2235,0.6372,0.4283,0.6188,0.4827,0.6314,0.4867,0.4022,0.4511,0.416,0.125,0.4285,0.0256,0.3517,0.0171,0.9084,0.5233,0.9719,0.524,0.9738,0.5843,0.8966,0.2081,0.894,0.1142,0.8308,0.1129,0.9414,0.1156,0.9471,0.2091,0.9645,0.2088,0.9578,0.1165,0.9939,0.5236,0.9863,0.4563,0.6537,0.5178,0.6494,0.5786,0.7038,0.1122,0.6939,0.2042,0.2841,0.5633,0.2336,0.556,0.8891,0.7716,0.1657,0.664,0.1485,0.6719,0.5317,0.5663,0.5526,0.5736,0.1989,0.5534,0.4681,0.6624,0.4353,0.6702,0.1337,0.6795,0.1167,0.6841,0.572,0.5813,0.5925,0.5879,0.3901,0.6944,0.7391,0.6394,0.6877,0.6877,0.9877,0.6372,0.9961,0.5845,0.6805,0.7431,0.2877,0.6924,0.251,0.7254,0.2904,0.7584,0.2857,0.6236,0.2435,0.6665,0.34,0.6341,0.3386,0.7096,0.9665,0.6374,0.9091,0.5847,0.9044,0.6423,0.9541,0.6923,0.8969,0.7036,0.8217,0.6451,0.8227,0.5843,0.1753,0.5544,0.1485,0.5119,0.1509,0.559,0.1794,0.6033,0.1551,0.6093,0.1298,0.5655,0.1268,0.5162,0.2891,0.8451,0.2435,0.8405,0.2874,0.8595,0.3357,0.8587,0.3355,0.8683,0.3354,0.8743,0.2825,0.869,0.5132,0.6707,0.4758,0.7147,0.4954,0.7198,0.5257,0.6164,0.4912,0.664,0.5451,0.6252,0.53,0.6793,0.2111,0.6575,0.2015,0.7094,0.2221,0.7116,0.2038,0.6023,0.238,0.6079,0.5075,0.5607,0.4895,0.5129,0.484,0.5589,0.4773,0.6075,0.4492,0.5601,0.4542,0.5111,0.1052,0.5213,0.1101,0.5725,0.1354,0.6174,0.1181,0.6251,0.0894,0.5784,0.0825,0.5264,0.5443,0.6873,0.5099,0.7285,0.5201,0.7386,0.562,0.6335,0.58,0.6398,0.561,0.6925,0.4561,0.817,0.4212,0.823,0.4285,0.844,0.4724,0.7875,0.4455,0.7984,0.4767,0.8159,0.4486,0.8566,0.217,0.8124,0.2229,0.8522,0.2018,0.7823,0.1964,0.8105,0.2282,0.7943,0.2515,0.8198,0.2863,0.3053,0.234,0.3853,0.2865,0.383,0.2862,0.2164,0.2321,0.3098,0.3479,0.2149,0.3461,0.3051,0.4201,0.7823,0.3849,0.7602,0.3828,0.812,0.3828,0.8469,0.3363,0.8289,0.3373,0.7797,0.2305,0.8971,0.2765,0.9175,0.2786,0.8911,0.335,0.8917,0.3346,0.9144,0.6931,0.3777,0.7447,0.4541,0.7502,0.3789,0.7022,0.2939,0.756,0.295,0.8262,0.3801,0.8249,0.4554,0.2113,0.7488,0.1816,0.7137,0.1936,0.7507,0.2142,0.7756,0.1818,0.7608,0.1667,0.7218,0.1371,0.3304,0.1167,0.4005,0.1418,0.3984,0.1337,0.2549,0.113,0.3336,0.1617,0.2463,0.165,0.3256,0.5263,0.3324,0.5467,0.4061,0.5539,0.3382,0.5324,0.2533,0.5602,0.263,0.5779,0.3424,0.5717,0.4091,0.4818,0.7562,0.4933,0.7668,0.4602,0.7803,0.4641,0.7536,0.1931,0.3179,0.1701,0.3956,0.1969,0.3906,0.1907,0.2352,0.2308,0.2239,0.2294,0.7587,0.2542,0.7792,0.4552,0.7161,0.4456,0.7628,0.4257,0.7287,0.4599,0.3141,0.492,0.3962,0.4985,0.3237,0.4644,0.2283,0.5038,0.2411,0.5186,0.4022,0.1563,0.7315,0.1781,0.7777,0.1912,0.7857,0.17,0.8068,0.1365,0.7464,0.09,0.3382,0.0708,0.4084,0.0933,0.4039,0.0864,0.2684,0.0681,0.3434,0.1094,0.2616,0.5949,0.4134,0.6007,0.3478,0.5843,0.2706,0.6071,0.2782,0.6224,0.3539,0.6173,0.4187,0.4964,0.7838,0.5395,0.7543,0.5033,0.8133,0.4828,0.7913,0.0571,0.2788,0.0598,0.3478,0.0622,0.4122,0.0493,0.3531,0.0504,0.4172,0.0475,0.2836,0.0733,0.5286,0.0811,0.5795,0.0999,0.6307,0.0924,0.6305,0.0804,0.6285,0.0684,0.5787,0.0602,0.5301,0.2768,0.9284,0.2189,0.9387,0.2259,0.9488,0.3344,0.9245,0.3342,0.9344,0.2792,0.9383,0.2285,0.9588,0.5567,0.7401,0.5695,0.6907,0.5875,0.6398,0.5814,0.6886,0.5995,0.6383,0.5682,0.7383,0.6305,0.3586,0.6257,0.4228,0.636,0.2898,0.6453,0.295,0.6408,0.3643,0.6372,0.4283,0.3985,0.5655,0.3423,0.5098,0.3412,0.5684,0.4015,0.5104,0.4429,0.6118,0.3946,0.6257,0.754,0.824,0.8193,0.7841,0.75,0.7692,0.7161,0.7919,0.6982,0.7483,0.7446,0.701,0.8206,0.711,0.3839,0.8614,0.3884,0.871,0.4094,0.2187,0.406,0.3075,0.4552,0.3895,0.4028,0.3852,0.2904,0.8103,0.3914,0.8933,0.4393,0.9011,0.3925,0.9198,0.9022,0.3815,0.9531,0.2982,0.8993,0.2974,0.9052,0.4568,0.9593,0.3822,0.3919,0.9306,0.4493,0.9432,0.4419,0.953,0.389,0.9404,0.4389,0.9629,0.979,0.3808,0.9655,0.4575,0.9863,0.4563,0.9716,0.2972,0.1086,0.7297,0.1082,0.6821,0.0965,0.6796,0.9416,0.7525,0.9325,0.8022,0.9595,0.7479,0.8183,0.8429,0.8814,0.8451,0.8833,0.8262,0.6135,0.589,0.6106,0.5388,0.6007,0.5893,0.6717,0.5791,0.656,0.6316,0.6773,0.6325,0.6682,0.6852,0.6837,0.2923,0.6735,0.3756,0.6844,0.4527,0.6636,0.4508,0.7056,0.7983,0.7552,0.8429,0.2834,0.1225,0.2068,0.0392,0.2747,0.0227,0.3498,0.1194,0.2847,0.4489,0.3447,0.3836,0.2831,0.5082,0.232,0.4499,0.7113,0.2051,0.7618,0.2058,0.7202,0.1118,0.7675,0.112,0.8292,0.2068,0.8277,0.296,0.8238,0.522,0.7392,0.5204,0.7364,0.5817,0.6757,0.5189,0.1232,0.1773,0.0947,0.1017,0.0988,0.1886,0.1235,0.0803,0.1517,0.1633,0.1451,0.4586,0.1713,0.4559,0.1212,0.4614,0.5464,0.1709,0.5742,0.1859,0.5772,0.0888,0.6053,0.1113,0.598,0.1981,0.565,0.4699,0.5413,0.4662,0.5574,0.5244,0.5359,0.5193,0.5151,0.4625,0.1821,0.1485,0.1576,0.0596,0.2245,0.1336,0.1959,0.4528,0.2305,0.5068,0.1951,0.5073,0.4745,0.1384,0.5166,0.1549,0.5439,0.0668,0.4907,0.4584,0.4548,0.4542,0.0766,0.1975,0.0651,0.2746,0.0523,0.1293,0.0566,0.2044,0.072,0.1188,0.0984,0.465,0.0756,0.4693,0.6198,0.2078,0.6273,0.1293,0.6467,0.1406,0.6395,0.2155,0.6282,0.2853,0.6101,0.4793,0.5875,0.4742,0.6015,0.5362,0.5789,0.5303,0.0668,0.4723,0.0541,0.4759,0.0403,0.2118,0.0493,0.2079,0.0183,0.1395,0.0344,0.1356,0.0277,0.1377,0.6467,0.2192,0.6643,0.1476,0.6709,0.1499,0.6803,0.1521,0.6555,0.2235,0.6188,0.4827,0.6314,0.4867,0.6236,0.5407,0.4022,0.4511,0.416,0.125,0.4285,0.0256,0.4956,0.0447,0.9084,0.5233,0.9719,0.524,0.8966,0.2081,0.894,0.1142,0.9414,0.1156,0.9471,0.2091,0.9645,0.2088,0.9578,0.1165,0.9939,0.5236,0.9738,0.5843,0.9961,0.5845,0.6537,0.5178,0.6494,0.5786,0.7038,0.1122,0.6939,0.2042,0.2841,0.5633,0.2336,0.556,0.8891,0.7716,0.9222,0.7954,0.1879,0.6582,0.1657,0.664,0.1485,0.6719,0.5317,0.5663,0.5017,0.6095,0.5526,0.5736,0.1989,0.5534,0.4681,0.6624,0.4353,0.6702,0.1337,0.6795,0.1167,0.6841,0.572,0.5813,0.5925,0.5879,0.1201,0.7317,0.3901,0.6944,0.7391,0.6394,0.6877,0.6877,0.9737,0.6904,0.9877,0.6372,0.6805,0.7431,0.2285,0.9588,0.0277,0.1377,0.1723,0.5088,0.5122,0.5152,0.818,0.8629,0.3517,0.0171,0.3434,0.4497,0.8308,0.1129],"itemSize":2,"type":"Float32Array"},"position":{"array":[28.6598,44.7699,16.637,29.4591,41.5354,15.1643,31.1545,44.952,14.848,30.0966,49.0341,15.7262,32.5406,48.4201,13.752,27.0935,49.8143,17.5001,25.7432,45.0103,18.2313,26.9135,40.779,16.5912,24.0987,40.6542,17.9054,28.4028,50.8934,8.922,30.8711,48.2984,9.5991,28.3319,48.9604,10.8084,30.0926,46.1809,10.9292,27.6623,46.4624,12.0878,24.927,49.9409,12.2959,24.8703,52.0656,10.4327,35.5548,49.1291,6.2394,35.6972,48.8851,9.4013,35.2442,47.495,8.2509,34.6057,46.5411,11.0637,34.1599,45.4667,9.7702,34.1051,46.5388,7.5625,34.4146,47.9721,5.7687,25.3101,36.7394,12.3045,23.7074,36.4064,14.0103,23.0366,36.3036,12.715,21.3147,36.5176,14.7178,20.7421,36.5171,13.37,20.7454,37.4425,12.6245,23.0832,37.2036,11.8916,25.3633,37.5459,11.3989,16.0917,48.8102,17.899,17.038,46.1763,18.9403,17.1541,49.2872,18.9909,15.9241,51.7715,17.5151,17.1008,52.5933,18.4982,15.5813,50.8176,16.3662,15.7892,48.1777,16.6804,16.1407,46.0562,17.8503,15.891,45.685,16.6395,32.629,44.5044,13.4557,31.5149,41.1711,12.7917,33.1403,43.7601,12.2014,34.0548,47.5573,12.2944,30.9601,41.5341,13.9646,17.8643,58.217,15.5821,16.6735,55.4623,17.4808,18.4362,55.8924,17.6347,18.7422,52.8515,18.7978,20.8918,55.7171,17.3377,20.4262,58.2395,15.084,32.9263,47.9695,6.0824,32.6664,46.5862,7.7828,33.0863,44.7654,8.9317,31.754,44.8685,9.066,31.5187,47.0623,8.3391,31.722,48.477,6.65,16.5783,47.6592,15.8963,16.4415,50.1627,15.5694,17.5793,49.8323,15.1622,17.6167,47.3435,15.5344,16.5751,45.1952,15.8744,17.8922,44.3524,15.3285,16.9589,40.9731,16.2384,18.2133,39.7129,16.8289,17.3769,41.3582,17.4044,16.5464,42.5441,16.7837,16.9367,42.553,17.5407,16.6664,41.6677,15.4798,17.5125,40.2603,14.7332,17.7039,39.3692,15.535,27.0242,37.4932,11.9636,27.0555,38.0758,11.0675,28.4384,38.4326,11.733,28.1605,38.5841,11.1104,27.7659,37.7663,12.9921,26.0641,36.9985,13.4945,25.597,55.8729,-0.4358,30.6305,55.5766,2.4043,28.0842,54.0749,-1.3442,22.7727,52.7737,-4.0144,25.246,51.1929,-4.6564,19.8855,54.1497,-3.0008,22.6043,57.3959,0.7582,28.1191,57.5244,3.6099,25.0157,59.1594,5.0003,21.7903,42.5503,18.767,19.0199,41.7088,18.2266,20.5354,39.5337,17.4609,19.5046,37.8596,15.7953,22.528,37.86,16.4819,24.641,39.989,12.0892,26.2444,39.0004,11.166,23.8116,38.6737,11.8085,21.2599,38.8781,12.6674,21.8625,40.1388,13.0599,19.7724,54.5874,6.4051,15.9765,54.0565,4.4611,18.3173,53.3302,3.4539,14.4211,51.6826,1.7719,16.615,50.9883,0.804,21.4146,52.2593,2.1384,23.0489,53.4546,5.0135,31.2221,40.842,11.4451,29.9438,39.4029,12.8121,29.812,39.4255,11.6538,28.7275,38.4765,12.533,29.0594,39.3377,10.7828,30.3679,40.6797,10.491,30.6516,49.6211,-1.8722,32.0039,49.3723,1.0833,29.9833,48.4399,-1.3657,28.159,47.4268,-4.3406,27.725,46.4842,-3.5414,27.9174,48.7619,-4.9426,30.6331,51.2453,-2.1195,32.8911,50.6909,0.9158,33.0781,52.4882,1.0761,13.6006,57.3604,9.1087,13.1282,57.2975,5.315,12.4158,55.9259,5.8727,11.425,54.464,2.062,10.978,53.3669,2.9563,12.4784,54.492,6.0688,13.4864,55.7745,8.9479,16.283,44.103,17.3997,16.0725,43.8278,16.2984,16.3698,42.6606,16.1181,16.9569,43.893,18.3278,29.7701,52.6312,-1.9245,26.9537,49.9364,-5.0068,32.304,54.0073,1.566,29.2085,39.2007,13.7346,27.6048,38.7407,14.5805,18.2963,45.9125,19.3431,17.8481,43.1284,18.5595,19.8893,44.8441,19.2287,16.1057,59.6077,8.4455,16.5127,58.0756,3.5703,14.4576,57.9253,4.5789,14.3439,54.9622,-0.0261,12.5269,54.9244,1.1205,14.5606,58.8904,8.9406,29.239,40.8168,10.4959,27.9319,39.2088,10.7222,26.2444,39.0004,11.166,27.7246,40.953,11.1526,28.7862,48.383,-0.783,29.5472,49.7754,2.0692,27.7078,48.8388,-0.3381,26.6623,46.4874,-2.885,25.6348,46.9068,-2.4848,30.6774,49.2891,1.5769,14.4791,54.8895,8.4565,13.4736,53.6772,5.7204,11.2326,52.1863,3.4631,12.2355,51.4753,3.2422,14.5876,53.375,5.2342,15.6682,54.5739,7.9638,16.5715,43.1366,15.547,17.6595,41.9685,14.8121,25.3064,47.213,-2.4537,27.3958,49.1957,-0.2448,29.2489,50.165,2.2328,27.5381,49.8103,-0.41,29.4843,50.8476,2.2312,25.3485,47.712,-2.7606,31.4342,48.85,6.9406,31.2524,47.3923,8.6589,30.6995,45.2962,9.5899,30.4589,45.5684,9.9203,30.7918,45.9574,10.3874,31.6012,47.9063,9.0617,24.9904,40.4244,12.357,27.7246,40.953,11.1526,22.1301,40.5401,13.3633,22.3303,40.4832,13.8808,25.2092,40.4153,12.8796,27.6673,41.497,11.4993,18.439,44.6875,15.4187,18.0626,47.3193,15.5825,18.0695,49.8519,15.1822,18.3616,47.5623,16.0886,18.4024,50.2409,15.6493,18.6966,44.7893,15.9422,15.0064,53.4791,5.0171,13.6336,51.2487,2.5039,13.2735,51.1806,2.7652,13.6758,51.7477,2.1969,15.1487,54.0938,4.8519,16.1429,54.6963,7.799,24.218,55.016,16.7977,27.7018,57.1043,12.9978,23.9431,57.942,14.2482,20.9691,52.4208,18.6665,23.902,51.1758,18.3571,27.7818,53.9521,15.7522,23.5593,43.9162,13.9799,20.3552,43.0113,15.2131,20.9337,45.4981,15.1676,19.2377,44.9317,15.8056,19.0793,47.107,15.9849,21.4676,48.6042,14.7188,24.4657,47.1531,13.479,18.9647,37.7114,14.4444,18.8803,38.6567,13.6766,16.9363,54.7916,-1.5356,19.4023,58.0147,2.1951,18.3896,59.8087,7.6031,21.5661,59.7901,6.393,25.1312,37.9447,15.509,19.2158,40.2627,13.7604,17.6595,41.9685,14.8121,19.6522,41.7138,14.208,24.5119,51.1884,0.8229,24.6348,48.1513,-2.5659,26.8172,50.3085,-0.143,26.3254,52.3217,3.622,28.7534,51.3868,2.5785,22.4514,48.9704,-1.6747,19.5332,49.9793,-0.4354,19.8706,42.1945,14.5314,17.8922,44.3524,15.3285,18.439,44.6875,15.4187,20.0894,42.1854,15.054,18.6966,44.7893,15.9422,27.5381,49.8103,-0.41,25.3485,47.712,-2.7606,27.9249,41.5988,12.0229,29.377,43.4074,10.7771,27.6673,41.497,11.4993,28.9795,43.6842,11.7802,27.9249,41.5988,12.0229,27.6198,42.0336,12.2457,29.676,43.6505,11.2833,30.7918,45.9574,10.3874,29.676,43.6505,11.2833,25.2092,40.4153,12.8796,22.6875,41.3272,14.035,25.6093,41.1948,12.9816,18.1369,52.5615,14.7801,17.3428,53.7219,12.9253,17.6834,54.3333,13.2296,18.1369,52.5615,14.7801,18.687,54.2352,12.9768,19.0898,52.3716,14.6027,18.4024,50.2409,15.6493,17.7881,52.0475,14.3773,13.6758,51.7477,2.1969,15.1487,54.0938,4.8519,17.2857,55.3517,7.449,16.3783,55.3789,7.7975,18.6966,44.7893,15.9422,20.0894,42.1854,15.054,22.3303,40.4832,13.8808,20.0047,48.6952,-6.6632,22.4475,47.3585,-7.0999,19.6689,43.0481,-9.1092,17.2649,44.1269,-8.8471,17.2316,49.9101,-5.7982,29.9807,57.2601,7.66,26.7473,58.9511,9.247,30.9888,55.5061,11.2558,32.5532,55.2699,6.157,12.831,48.478,-0.323,14.8795,47.8133,-1.2462,11.2234,44.8581,-2.1209,13.1272,44.2218,-2.9965,17.6185,46.8663,-2.4095,24.2226,53.3134,7.8918,20.7669,54.5081,9.3594,21.3572,53.3294,11.9144,18.1374,55.3199,10.4399,25.6429,44.3833,-6.1732,25.4182,43.7202,-5.1733,23.115,40.9152,-7.6878,23.0871,40.552,-6.5334,22.499,41.5553,-8.735,25.2069,45.3826,-7.0241,34.648,50.3607,3.707,34.9765,52.1456,4.2753,35.9693,50.7629,7.1574,33.5976,49.0665,3.5352,9.727,50.7346,-0.4496,9.5167,49.9587,0.6758,8.0316,46.5572,-2.5905,8.0436,46.126,-1.2868,9.9383,49.0722,1.4012,14.0676,55.8188,11.8298,14.3026,57.3949,12.3479,14.5049,54.8556,14.2245,14.8139,56.3001,15.0483,15.4465,58.8979,12.5699,24.1617,46.3144,-7.2766,21.3819,42.2286,-9.1403,34.2484,53.6735,5.0604,33.5873,53.6892,9.4943,35.2805,52.1956,8.1853,12.2147,50.8965,-2.7539,10.6206,50.9961,-1.5256,8.7265,46.6041,-3.7654,10.1053,46.3546,-5.0474,17.1644,59.5801,12.3161,16.0596,57.6465,15.6132,19.6431,59.7334,11.6401,24.4816,43.797,-4.4741,23.5065,44.1777,-4.113,22.2725,40.7094,-5.8066,21.3504,41.0501,-5.4821,32.1603,49.0109,3.9396,30.9751,49.5181,4.4793,10.9405,48.4788,1.277,8.6197,45.554,-0.3889,9.6171,45.0849,-0.4317,11.9041,48.1891,0.8146,16.3371,54.579,10.6962,15.0764,54.9175,11.1953,16.7995,53.6363,12.9877,15.5101,53.991,13.4792,30.6807,49.912,4.7132,30.9828,50.5866,4.8754,31.7748,49.4614,7.2448,23.1197,44.7902,-4.5333,20.8713,41.4567,-6.017,23.166,44.426,-4.1279,12.2099,48.214,0.5253,10.507,44.7991,-0.8767,10.7606,44.7771,-1.1859,10.6318,44.9969,-1.6682,12.1636,48.5782,0.1199,16.3783,55.3789,7.7975,16.8581,54.691,10.5839,17.1602,55.3656,10.746,23.0694,59.6496,10.5953,14.5267,50.5891,-4.3366,12.1451,45.897,-6.6727,14.6102,45.1736,-8.1147,27.6782,52.1186,6.4241,30.2322,51.1382,5.3031,31.0169,49.9723,7.7402,20.3575,45.9193,-3.5728,18.247,42.4517,-5.171,15.6871,43.3367,-4.0838,20.183,41.7604,-5.9261,22.4176,45.1635,-4.3946,23.1197,44.7902,-4.5333,20.8713,41.4567,-6.017,30.9828,50.5866,4.8754,29.4843,50.8476,2.2312,17.1602,55.3656,10.746,17.6834,54.3333,13.2296,10.6318,44.9969,-1.6682,12.1636,48.5782,0.1199,30.9502,52.6884,13.9385,33.4673,51.3692,11.9967,26.5909,43.5422,12.7649,32.7452,43.0524,10.8261,31.7754,42.6507,9.8909,15.4263,54.3469,16.6678,15.0814,53.1161,15.6421,35.0773,50.139,10.5671,18.645,49.3392,19.3949,20.587,48.6056,19.3361,30.5623,42.8244,9.9571,29.5986,43.2009,10.4456,16.0253,52.3397,14.8505,17.2602,51.992,14.3949,23.0026,46.7258,19.0397,21.5997,51.288,13.6676,19.2519,49.929,15.5334,31.6012,47.9063,9.0617,31.7748,49.4614,7.2448,18.3616,47.5623,16.0886,-28.6598,44.7699,16.637,-29.4591,41.5354,15.1643,-26.9135,40.779,16.5912,-30.0966,49.0341,15.7262,-31.1545,44.952,14.848,-27.0935,49.8143,17.5001,-25.7432,45.0103,18.2313,-30.8711,48.2984,9.5991,-28.4028,50.8934,8.922,-28.3319,48.9604,10.8084,-30.0926,46.1809,10.9292,-27.6623,46.4624,12.0878,-24.927,49.9409,12.2959,-24.8703,52.0656,10.4327,-35.6972,48.8851,9.4013,-35.5548,49.1291,6.2394,-35.2442,47.495,8.2509,-34.6057,46.5411,11.0637,-34.1599,45.4667,9.7702,-34.1051,46.5388,7.5625,-34.4146,47.9721,5.7687,-23.7075,36.4064,14.0103,-25.3101,36.7394,12.3045,-23.0366,36.3036,12.715,-21.3147,36.5176,14.7178,-20.7421,36.5171,13.37,-20.7454,37.4425,12.6245,-23.0832,37.2036,11.8916,-16.0917,48.8102,17.899,-17.038,46.1763,18.9403,-16.1407,46.0562,17.8503,-15.9241,51.7715,17.5151,-17.1541,49.2872,18.9909,-15.5813,50.8176,16.3662,-15.7892,48.1777,16.6804,-32.629,44.5044,13.4557,-31.5149,41.1711,12.7917,-30.9601,41.5341,13.9646,-34.0548,47.5573,12.2944,-32.5406,48.4201,13.752,-16.6735,55.4623,17.4808,-17.8643,58.217,15.5821,-18.4362,55.8924,17.6347,-18.7422,52.8515,18.7978,-20.8918,55.7171,17.3377,-20.4262,58.2395,15.084,-32.9263,47.9695,6.0824,-32.6664,46.5862,7.7828,-33.0863,44.7654,8.9317,-31.754,44.8685,9.066,-31.5187,47.0623,8.3391,-31.722,48.477,6.65,-16.5783,47.6592,15.8963,-15.891,45.685,16.6395,-16.5751,45.1952,15.8744,-16.4415,50.1627,15.5694,-17.5793,49.8323,15.1622,-17.6167,47.3435,15.5344,-16.9589,40.9731,16.2384,-18.2133,39.7129,16.8289,-17.7039,39.3692,15.535,-16.5464,42.5441,16.7837,-17.3769,41.3582,17.4044,-16.6664,41.6677,15.4798,-17.5125,40.2603,14.7332,-27.0242,37.4932,11.9636,-25.3633,37.5459,11.3989,-28.4384,38.4326,11.733,-27.0555,38.0758,11.0675,-27.7659,37.7663,12.9921,-26.0641,36.9985,13.4945,-25.597,55.8729,-0.4358,-30.6305,55.5766,2.4043,-28.1191,57.5244,3.6099,-22.7727,52.7737,-4.0144,-28.0842,54.0749,-1.3442,-19.8855,54.1497,-3.0008,-22.6043,57.3959,0.7582,-19.0199,41.7088,18.2266,-21.7903,42.5503,18.767,-20.5354,39.5337,17.4609,-19.5046,37.8596,15.7953,-22.528,37.86,16.4819,-24.0987,40.6542,17.9054,-26.2444,39.0004,11.166,-24.641,39.989,12.0892,-23.8116,38.6737,11.8085,-21.2599,38.8781,12.6674,-21.8625,40.1388,13.0599,-15.9765,54.0565,4.4611,-19.7724,54.5874,6.4051,-18.3173,53.3302,3.4539,-14.4211,51.6826,1.7719,-16.615,50.9883,0.804,-21.4146,52.2593,2.1384,-23.0489,53.4546,5.0135,-29.9438,39.4029,12.8121,-31.2221,40.842,11.4451,-29.812,39.4255,11.6538,-28.7275,38.4765,12.533,-29.0594,39.3377,10.7828,-30.3679,40.6797,10.491,-30.6516,49.6211,-1.8722,-32.0039,49.3723,1.0833,-32.8911,50.6909,0.9158,-28.159,47.4268,-4.3406,-29.9833,48.4399,-1.3657,-27.9174,48.7619,-4.9426,-30.6331,51.2453,-2.1195,-13.1282,57.2975,5.315,-13.6006,57.3604,9.1087,-12.4158,55.9259,5.8727,-11.425,54.464,2.062,-10.978,53.3669,2.9563,-12.4784,54.492,6.0688,-13.4864,55.7745,8.9479,-16.283,44.103,17.3997,-16.0725,43.8278,16.2984,-16.9367,42.553,17.5407,-16.9569,43.893,18.3278,-29.7701,52.6312,-1.9245,-33.0781,52.4882,1.0761,-32.304,54.0073,1.566,-26.9537,49.9364,-5.0068,-25.246,51.1929,-4.6564,-29.2085,39.2007,13.7346,-27.6048,38.7407,14.5805,-18.2963,45.9125,19.3431,-17.8481,43.1284,18.5595,-19.8893,44.8441,19.2287,-16.5127,58.0756,3.5703,-16.1057,59.6077,8.4455,-14.4576,57.9253,4.5789,-14.3439,54.9622,-0.0261,-12.5269,54.9244,1.1205,-14.5606,58.8904,8.9406,-29.239,40.8168,10.4959,-27.9319,39.2088,10.7222,-28.1605,38.5841,11.1104,-26.2444,39.0004,11.166,-27.7246,40.953,11.1526,-28.7862,48.383,-0.783,-29.5472,49.7754,2.0692,-30.6774,49.2891,1.5769,-26.6623,46.4874,-2.885,-27.7078,48.8388,-0.3381,-27.725,46.4842,-3.5414,-14.4791,54.8895,8.4565,-13.4736,53.6772,5.7204,-11.2326,52.1863,3.4631,-12.2355,51.4753,3.2422,-14.5876,53.375,5.2342,-15.6682,54.5739,7.9638,-16.5715,43.1366,15.547,-17.8922,44.3524,15.3285,-17.6595,41.9685,14.8121,-16.3698,42.6606,16.1181,-25.3064,47.213,-2.4537,-27.3958,49.1957,-0.2448,-29.2489,50.165,2.2328,-27.5381,49.8103,-0.41,-29.4843,50.8476,2.2312,-25.3485,47.712,-2.7606,-31.4342,48.85,6.9406,-31.2524,47.3923,8.6589,-30.6995,45.2962,9.5899,-30.4589,45.5684,9.9203,-30.7918,45.9574,10.3874,-31.6012,47.9063,9.0617,-31.7748,49.4614,7.2448,-24.9904,40.4244,12.357,-27.7246,40.953,11.1526,-27.6673,41.497,11.4993,-22.1301,40.5401,13.3633,-22.3303,40.4832,13.8808,-25.2092,40.4153,12.8796,-27.9249,41.5988,12.0229,-18.439,44.6875,15.4187,-18.0626,47.3193,15.5825,-18.0695,49.8519,15.1822,-18.3616,47.5623,16.0886,-18.4024,50.2409,15.6493,-18.6966,44.7893,15.9422,-15.0064,53.4791,5.0171,-16.1429,54.6963,7.799,-13.6336,51.2487,2.5039,-13.6758,51.7477,2.1969,-15.1487,54.0938,4.8519,-16.3783,55.3789,7.7975,-24.218,55.016,16.7977,-27.7018,57.1043,12.9978,-27.7818,53.9521,15.7522,-23.9431,57.942,14.2482,-20.9691,52.4208,18.6665,-23.902,51.1758,18.3571,-20.3552,43.0113,15.2131,-23.5593,43.9162,13.9799,-20.9337,45.4981,15.1676,-19.2377,44.9317,15.8056,-19.0793,47.107,15.9849,-21.4676,48.6042,14.7188,-24.4657,47.1531,13.479,-18.9647,37.7114,14.4444,-18.8803,38.6567,13.6766,-16.9363,54.7916,-1.5356,-19.4023,58.0147,2.1951,-18.3896,59.8087,7.6031,-21.5661,59.7901,6.393,-25.1312,37.9447,15.509,-19.2158,40.2627,13.7604,-17.6595,41.9685,14.8121,-19.6522,41.7138,14.208,-24.5119,51.1884,0.8229,-24.6348,48.1513,-2.5659,-22.4514,48.9704,-1.6747,-26.3254,52.3217,3.622,-26.8172,50.3085,-0.143,-19.8706,42.1945,14.5314,-17.8922,44.3524,15.3285,-18.439,44.6875,15.4187,-20.0894,42.1854,15.054,-18.6966,44.7893,15.9422,-27.5381,49.8103,-0.41,-28.7534,51.3868,2.5785,-29.4843,50.8476,2.2312,-25.3485,47.712,-2.7606,-27.9249,41.5988,12.0229,-29.377,43.4074,10.7771,-29.676,43.6505,11.2833,-28.9795,43.6842,11.7802,-27.9249,41.5988,12.0229,-29.676,43.6505,11.2833,-22.6875,41.3272,14.035,-25.2092,40.4153,12.8796,-25.6093,41.1948,12.9816,-18.1369,52.5615,14.7801,-17.3428,53.7219,12.9253,-17.7881,52.0475,14.3773,-18.687,54.2352,12.9768,-18.1369,52.5615,14.7801,-19.0898,52.3716,14.6027,-18.4024,50.2409,15.6493,-13.6758,51.7477,2.1969,-15.1487,54.0938,4.8519,-17.2857,55.3517,7.449,-16.3783,55.3789,7.7975,-18.6966,44.7893,15.9422,-20.0894,42.1854,15.054,-20.0047,48.6952,-6.6632,-19.6689,43.0481,-9.1092,-17.2649,44.1269,-8.8471,-17.2316,49.9101,-5.7982,-29.9807,57.2601,7.66,-25.0157,59.1594,5.0003,-30.9888,55.5061,11.2558,-32.5532,55.2699,6.157,-12.831,48.478,-0.323,-14.8795,47.8133,-1.2462,-11.2234,44.8581,-2.1209,-13.1272,44.2218,-2.9965,-17.6185,46.8663,-2.4095,-19.5332,49.9793,-0.4354,-24.2225,53.3134,7.8918,-20.7669,54.5081,9.3594,-21.3572,53.3294,11.9144,-18.1374,55.3199,10.4399,-25.6429,44.3833,-6.1732,-23.115,40.9152,-7.6878,-25.4182,43.7202,-5.1733,-22.499,41.5553,-8.735,-25.2069,45.3826,-7.0241,-34.648,50.3607,3.707,-34.9765,52.1456,4.2753,-33.5976,49.0665,3.5352,-9.727,50.7346,-0.4496,-9.5167,49.9587,0.6758,-8.0316,46.5572,-2.5905,-8.0436,46.126,-1.2868,-9.9383,49.0722,1.4012,-14.0676,55.8188,11.8298,-14.3026,57.3949,12.3479,-14.5049,54.8556,14.2245,-14.8139,56.3001,15.0483,-15.4465,58.8979,12.5699,-24.1617,46.3144,-7.2766,-21.3819,42.2286,-9.1403,-22.4475,47.3585,-7.0999,-34.2484,53.6735,5.0604,-33.5873,53.6892,9.4943,-35.2805,52.1956,8.1853,-12.2147,50.8965,-2.7539,-10.6206,50.9961,-1.5256,-8.7265,46.6041,-3.7654,-17.1644,59.5801,12.3161,-19.6431,59.7334,11.6401,-24.4816,43.797,-4.4741,-25.6348,46.9068,-2.4848,-22.2725,40.7094,-5.8066,-23.5065,44.1777,-4.113,-23.0871,40.552,-6.5334,-32.1603,49.0109,3.9396,-30.9751,49.5181,4.4793,-10.9405,48.4788,1.277,-8.6197,45.554,-0.3889,-9.6171,45.0849,-0.4317,-11.9041,48.1891,0.8146,-13.2735,51.1806,2.7652,-16.3371,54.579,10.6962,-15.0764,54.9175,11.1953,-16.7995,53.6363,12.9877,-15.5101,53.991,13.4792,-30.6807,49.912,4.7132,-30.9828,50.5866,4.8754,-23.1197,44.7902,-4.5333,-23.166,44.426,-4.1279,-20.8713,41.4567,-6.017,-21.3504,41.0501,-5.4821,-21.0001,41.2369,-5.5347,-12.2099,48.214,0.5253,-10.507,44.7991,-0.8767,-10.7606,44.7771,-1.1859,-10.6318,44.9969,-1.6682,-12.1636,48.5782,0.1199,-16.8581,54.691,10.5839,-17.1602,55.3656,10.746,-17.6834,54.3333,13.2296,-23.0694,59.6496,10.5953,-14.5267,50.5891,-4.3366,-12.1451,45.897,-6.6727,-10.1053,46.3546,-5.0474,-27.6782,52.1186,6.4241,-30.2322,51.1382,5.3031,-20.3575,45.9193,-3.5728,-18.247,42.4517,-5.171,-20.183,41.7604,-5.9261,-22.4176,45.1635,-4.3946,-23.1197,44.7902,-4.5333,-20.8713,41.4567,-6.017,-30.9828,50.5866,4.8754,-31.0169,49.9723,7.7402,-31.7748,49.4614,7.2448,-17.1602,55.3656,10.746,-17.6834,54.3333,13.2296,-10.6318,44.9969,-1.6682,-12.1636,48.5782,0.1199,-30.9502,52.6884,13.9385,-33.4673,51.3692,11.9967,-26.5909,43.5422,12.7649,-27.6198,42.0336,12.2457,-33.1403,43.7601,12.2014,-32.7452,43.0524,10.8261,-31.7754,42.6507,9.8909,-15.4263,54.3469,16.6678,-17.1008,52.5933,18.4982,-15.0814,53.1161,15.6421,-35.0773,50.139,10.5671,-18.645,49.3392,19.3949,-20.587,48.6056,19.3361,-30.5623,42.8244,9.9571,-29.5986,43.2009,10.4456,-16.0253,52.3397,14.8505,-17.2602,51.992,14.3949,-27.6673,41.497,11.4993,-23.0026,46.7258,19.0397,-21.5997,51.288,13.6676,-19.2519,49.929,15.5334,-30.7918,45.9574,10.3874,-31.6012,47.9063,9.0617,-18.3616,47.5623,16.0886,27.9249,41.5988,12.0229,21.0001,41.2369,-5.5347,-35.9693,50.7629,7.1574,-16.0596,57.6465,15.6132,-22.3303,40.4832,13.8808,-14.6102,45.1736,-8.1147,-26.7473,58.9511,9.247,-15.6871,43.3367,-4.0838],"itemSize":3,"type":"Float32Array"}},"index":{"array":[0,1,2,3,2,4,0,5,6,7,6,8,9,10,11,11,12,13,13,14,11,11,15,9,16,17,18,18,19,20,20,21,18,18,22,16,23,24,25,25,26,27,25,28,29,23,29,30,31,32,33,34,33,35,31,36,37,38,37,39,40,41,42,40,19,43,40,4,2,44,2,1,45,46,47,48,46,35,48,49,47,47,50,45,51,21,52,52,53,54,54,55,52,52,56,51,57,39,37,58,37,36,57,59,60,61,60,62,63,64,65,66,65,67,66,68,63,63,69,70,71,30,72,73,72,74,73,75,71,71,76,23,77,78,79,80,79,81,77,82,83,84,83,85,86,87,88,88,64,89,89,90,88,88,8,86,91,92,93,93,30,29,29,94,93,93,95,91,96,97,98,98,99,100,100,101,98,98,102,96,103,104,105,105,106,73,73,107,105,105,108,103,109,110,111,112,111,113,109,114,115,116,115,117,118,119,120,120,121,122,122,123,120,120,124,118,125,39,126,66,126,127,125,67,128,38,128,32,129,117,115,130,115,114,129,81,79,131,79,78,132,1,133,75,133,76,132,106,104,44,104,41,134,128,135,135,67,65,65,87,135,135,136,134,137,138,139,139,140,141,141,119,139,139,142,137,143,107,144,144,74,72,72,145,144,144,146,143,147,148,149,150,149,151,147,113,111,152,111,110,153,123,154,154,155,156,156,157,154,154,158,153,159,62,160,68,160,69,159,127,126,61,126,39,161,149,162,162,148,163,164,163,165,166,162,164,167,55,168,168,169,170,171,168,170,172,167,168,173,174,91,175,91,95,176,173,175,177,178,173,179,60,180,181,60,59,182,181,183,184,180,182,185,158,157,186,157,187,188,185,186,189,190,185,191,192,193,49,193,50,191,194,195,196,195,5,197,198,199,199,200,201,201,202,199,199,203,197,204,26,89,70,89,64,70,205,204,204,28,27,206,138,207,207,208,209,209,83,207,207,82,206,90,24,210,210,76,133,133,7,210,210,8,90,94,205,211,211,69,212,212,213,211,211,95,94,214,215,216,217,216,218,214,102,101,219,101,220,175,213,221,221,222,223,224,223,225,176,221,224,226,218,216,227,216,215,228,229,230,231,232,233,234,12,235,170,236,171,237,238,239,239,232,237,240,241,242,243,244,245,245,246,243,183,247,240,248,97,249,249,250,251,198,252,200,253,238,254,255,81,256,255,257,258,258,259,255,80,259,82,260,85,261,260,192,262,262,263,260,260,78,84,100,264,265,265,266,267,267,268,265,265,220,100,96,269,270,270,15,271,271,272,270,270,250,96,273,113,274,275,274,276,273,277,278,112,278,114,279,117,280,16,280,281,279,22,282,116,282,110,122,283,284,284,285,286,286,287,284,284,155,122,118,288,289,289,290,291,291,292,289,289,142,118,293,114,278,293,277,294,294,256,293,130,256,81,131,263,295,295,296,297,297,280,295,131,280,117,141,298,299,300,298,301,299,285,283,299,121,141,137,292,302,45,292,303,302,50,304,137,304,208,305,151,306,307,306,308,305,276,274,150,274,113,309,110,282,51,282,22,309,56,310,152,310,148,156,287,311,311,312,313,313,314,311,311,187,156,153,315,316,316,317,318,318,288,316,316,124,153,319,148,310,167,310,56,320,167,321,165,319,320,322,161,166,323,324,322,324,308,306,324,151,161,325,187,314,325,326,327,328,325,327,329,186,325,330,331,190,332,241,331,241,315,331,331,158,190,333,208,304,193,304,50,333,192,261,333,85,209,206,259,334,335,259,336,334,301,298,334,140,206,337,218,338,9,338,339,337,15,269,217,269,102,340,220,268,341,268,342,340,343,344,219,344,215,345,215,344,346,344,343,347,339,338,348,338,218,251,272,349,349,244,350,351,264,352,352,99,248,353,4,354,262,354,296,353,192,196,3,196,5,13,231,355,355,233,239,239,197,355,355,203,13,20,42,356,356,41,103,103,357,356,356,53,20,358,35,46,291,46,303,358,290,359,34,359,36,43,17,360,297,17,281,360,296,354,43,354,4,361,35,33,361,32,134,134,362,361,361,194,48,54,357,363,363,108,143,143,364,363,363,169,54,365,36,359,318,359,290,365,317,366,58,366,59,170,364,229,230,364,146,247,59,366,241,366,317,195,362,367,367,136,86,86,6,367,367,5,195,368,369,245,271,245,244,368,15,14,202,14,203,235,10,370,370,339,371,372,369,201,252,201,200,373,374,375,376,377,373,373,378,376,375,379,373,380,381,382,383,382,384,385,384,382,386,382,381,387,388,389,390,389,391,392,391,389,393,389,388,394,395,396,397,396,398,396,399,398,395,400,396,401,402,403,404,405,401,401,406,404,403,407,401,408,409,410,390,408,411,408,412,411,410,377,408,413,414,415,416,413,415,417,416,415,418,415,414,392,419,420,421,420,422,423,422,420,424,420,419,425,426,427,428,407,425,425,429,428,427,430,425,431,432,433,434,435,431,436,434,431,437,431,433,438,439,395,440,441,438,442,440,438,443,438,395,444,445,446,447,448,444,444,449,447,446,450,444,451,452,453,432,453,454,455,454,453,456,453,452,457,458,459,439,459,400,460,400,459,461,459,458,462,463,464,465,464,466,467,466,464,468,464,463,469,470,471,472,471,440,473,440,471,474,471,470,475,476,477,478,479,475,475,480,478,477,481,475,482,483,484,485,484,486,487,486,484,488,484,483,489,426,403,434,490,489,489,491,434,403,492,489,493,494,495,496,481,493,493,497,496,495,448,493,498,374,410,442,499,498,498,472,442,410,469,498,492,500,501,491,501,435,451,435,501,502,501,500,503,504,505,506,505,507,482,507,505,508,505,504,473,509,510,511,510,441,512,441,510,513,510,509,514,515,516,517,518,514,514,519,517,516,479,514,487,520,521,522,521,523,524,523,521,525,521,520,526,527,427,436,528,526,526,529,436,427,490,526,518,530,531,515,531,532,532,533,534,531,535,533,423,536,537,538,537,539,540,537,541,541,536,542,543,544,545,546,458,543,547,543,548,548,545,549,430,550,551,552,430,551,552,553,554,551,555,553,556,525,557,558,524,556,559,556,560,560,557,561,562,563,564,417,565,562,562,566,417,564,567,562,568,569,570,571,570,572,573,572,570,574,570,569,575,397,398,433,454,575,576,433,575,399,575,398,503,577,578,579,578,580,450,580,578,449,578,577,394,455,581,443,581,499,375,499,581,456,581,455,576,460,582,437,582,583,584,583,582,461,582,460,585,586,587,588,589,585,585,468,588,587,467,585,584,546,590,591,590,592,592,593,594,590,547,593,595,596,597,598,589,595,599,600,601,602,603,604,604,383,602,601,539,540,605,606,607,603,607,606,608,609,610,611,612,613,614,613,612,554,610,552,462,615,616,617,616,618,568,619,620,620,605,568,621,497,447,622,621,623,624,623,621,447,624,621,625,626,446,563,625,627,628,627,625,445,625,446,629,466,630,631,630,632,633,632,630,634,630,466,635,463,636,386,636,637,638,637,636,617,636,463,639,519,478,640,641,639,639,642,640,478,643,639,644,494,477,388,645,644,644,393,388,477,646,644,647,486,648,649,648,650,651,650,648,522,648,486,652,483,653,654,653,655,656,655,653,508,653,483,657,480,496,642,657,658,659,658,657,496,659,657,628,495,660,661,660,662,645,662,660,495,645,660,663,507,664,665,663,664,664,649,665,485,664,507,656,504,666,414,656,666,666,418,414,504,667,666,668,669,517,670,671,668,668,672,670,517,641,668,673,476,516,419,646,673,673,424,419,516,674,673,651,523,675,676,675,677,678,677,675,679,675,523,680,520,681,682,681,683,652,683,681,488,681,520,684,515,532,536,674,684,536,685,542,684,534,685,530,686,535,687,688,686,687,689,690,669,687,530,691,679,558,692,691,693,694,691,695,695,558,559,561,696,697,697,609,698,680,609,696,525,696,557,699,579,580,565,667,699,699,563,565,626,699,580,624,577,700,701,624,700,700,702,701,506,700,577,703,596,588,381,704,703,703,386,381,588,635,703,705,634,587,706,633,705,705,707,706,587,708,705,709,586,598,710,708,709,711,712,713,597,704,711,638,618,714,611,714,715,629,716,717,465,717,615,718,412,376,627,719,718,718,563,627,376,564,718,602,384,720,721,720,607,569,607,720,574,720,384,722,391,723,409,723,470,724,470,723,421,723,391,725,726,404,655,413,725,725,654,655,404,727,725,387,411,728,662,387,728,728,661,662,411,719,728,729,726,416,402,729,500,730,500,729,566,729,416,724,422,731,474,731,509,732,509,731,538,731,422,733,406,428,683,727,733,733,682,683,428,734,733,732,539,600,735,732,600,610,429,552,609,734,610,730,567,736,502,736,452,379,452,736,378,736,567,737,738,573,637,613,737,737,386,637,573,385,737,380,739,740,712,740,713,741,738,614,619,572,741,0,7,1,3,0,2,0,3,5,7,0,6,9,339,10,11,10,12,13,203,14,11,14,15,16,281,17,18,17,19,20,53,21,18,21,22,23,76,24,25,24,26,25,27,28,23,25,29,31,38,32,34,31,33,31,34,36,38,31,37,40,44,41,40,42,19,40,43,4,44,40,2,45,303,46,48,47,46,48,194,49,47,49,50,51,22,21,52,21,53,54,169,55,52,55,56,57,61,39,58,57,37,57,58,59,61,57,60,63,70,64,66,63,65,66,127,68,63,68,69,71,23,30,73,71,72,73,106,75,71,75,76,77,84,78,80,77,79,77,80,82,84,77,83,86,136,87,88,87,64,89,26,90,88,90,8,91,174,92,93,92,30,29,28,94,93,94,95,96,250,97,98,97,99,100,220,101,98,101,102,103,41,104,105,104,106,73,74,107,105,107,108,109,116,110,112,109,111,109,112,114,116,109,115,118,142,119,120,119,121,122,155,123,120,123,124,125,38,39,66,125,126,125,66,67,38,125,128,129,131,117,130,129,115,129,130,81,131,129,79,132,44,1,75,132,133,132,75,106,44,132,104,134,32,128,135,128,67,65,64,87,135,87,136,137,208,138,139,138,140,141,121,119,139,119,142,143,108,107,144,107,74,72,30,145,144,145,146,147,152,148,150,147,149,147,150,113,152,147,111,153,124,123,154,123,155,156,187,157,154,157,158,159,61,62,68,159,160,159,68,127,61,159,126,161,151,149,162,149,148,164,162,163,166,161,162,167,56,55,168,55,169,171,172,168,172,321,167,173,178,174,175,173,91,176,177,173,177,742,178,179,62,60,181,180,60,182,180,181,184,179,180,185,190,158,186,185,157,188,189,185,189,330,190,191,196,192,49,191,193,191,49,194,196,191,195,197,238,198,199,198,200,201,369,202,199,202,203,204,27,26,70,204,89,70,69,205,204,205,28,206,140,138,207,138,208,209,85,83,207,83,82,90,26,24,210,24,76,133,1,7,210,7,8,94,28,205,211,205,69,212,222,213,211,213,95,214,219,215,217,214,216,214,217,102,219,214,101,175,95,213,221,213,222,224,221,223,176,175,221,226,348,218,227,226,216,228,236,229,231,234,232,234,231,12,170,229,236,237,254,238,239,233,232,240,247,241,243,350,244,245,369,246,183,181,247,248,99,97,249,97,250,198,253,252,253,198,238,255,80,81,255,256,257,258,336,259,80,255,259,260,84,85,260,261,192,262,296,263,260,263,78,100,99,264,265,264,266,267,342,268,265,268,220,96,102,269,270,269,15,271,244,272,270,272,250,273,112,113,275,273,274,273,275,277,112,273,278,279,116,117,16,279,280,279,16,22,116,279,282,122,121,283,284,283,285,286,312,287,284,287,155,118,124,288,289,288,290,291,303,292,289,292,142,293,130,114,293,278,277,294,257,256,130,293,256,131,78,263,295,263,296,297,281,280,131,295,280,141,140,298,300,299,298,299,300,285,299,283,121,137,142,292,45,302,292,302,45,50,137,302,304,305,150,151,307,305,306,305,307,276,150,305,274,309,152,110,51,309,282,309,51,56,152,309,310,156,155,287,311,287,312,313,326,314,311,314,187,153,158,315,316,315,317,318,290,288,316,288,124,319,163,148,167,319,310,320,319,167,165,163,319,322,324,161,323,743,324,324,743,308,324,306,151,325,186,187,325,314,326,328,329,325,329,188,186,330,332,331,332,242,241,241,317,315,331,315,158,333,209,208,193,333,304,333,193,192,333,261,85,206,82,259,335,334,259,334,335,301,334,298,140,337,217,218,9,337,338,337,9,15,217,337,269,340,219,220,341,340,268,340,341,343,219,340,344,345,227,215,346,345,344,347,371,339,348,347,338,251,250,272,349,272,244,351,266,264,352,264,99,353,3,4,262,353,354,353,262,192,3,353,196,13,12,231,355,231,233,239,238,197,355,197,203,20,19,42,356,42,41,103,108,357,356,357,53,358,34,35,291,358,46,358,291,290,34,358,359,43,19,17,297,360,17,360,297,296,43,360,354,361,48,35,361,33,32,134,136,362,361,362,194,54,53,357,363,357,108,143,146,364,363,364,169,365,58,36,318,365,359,365,318,317,58,365,366,170,169,364,230,229,364,247,181,59,241,247,366,195,194,362,367,362,136,86,8,6,367,6,5,368,202,369,271,368,245,368,271,15,202,368,14,235,12,10,370,10,339,372,246,369,252,372,201,373,377,374,376,412,377,373,379,378,375,456,379,380,712,381,383,380,382,385,574,384,386,385,382,387,744,388,390,387,389,392,421,391,393,392,389,394,443,395,397,394,396,396,400,399,395,439,400,401,405,402,404,726,405,401,407,406,403,426,407,408,722,409,390,722,408,408,377,412,410,374,377,413,745,414,416,726,413,417,566,416,418,417,415,392,393,419,421,392,420,423,538,422,424,423,420,425,407,426,428,406,407,425,430,429,427,527,430,431,435,432,434,491,435,436,529,434,437,436,431,438,441,439,440,511,441,442,472,440,443,442,438,444,448,445,447,497,448,444,450,449,446,626,450,451,502,452,432,451,453,455,397,454,456,455,453,457,544,458,439,457,459,460,399,400,461,460,459,462,617,463,465,462,464,467,634,466,468,467,464,469,409,470,472,469,471,473,511,440,474,473,471,475,479,476,478,519,479,475,481,480,477,494,481,482,508,483,485,482,484,487,522,486,488,487,484,489,490,426,434,529,490,489,492,491,403,402,492,493,481,494,496,480,481,493,448,497,495,445,448,498,499,374,442,443,499,498,469,472,410,409,469,492,402,500,491,492,501,451,432,435,502,451,501,503,579,504,506,503,505,482,485,507,508,482,505,473,474,509,511,473,510,512,439,441,513,512,510,514,518,515,517,669,518,514,479,519,516,476,479,487,488,520,522,487,521,524,679,523,525,524,521,526,528,527,436,437,528,526,490,529,427,426,490,518,669,530,515,518,531,532,531,533,531,530,535,423,424,536,538,423,537,540,539,537,541,537,536,543,458,544,546,461,458,547,546,543,548,543,545,430,527,550,552,429,430,552,551,553,551,550,555,556,524,525,558,679,524,559,558,556,560,556,557,562,565,563,417,418,565,562,567,566,564,378,567,568,605,569,571,568,570,573,738,572,574,573,570,575,454,397,433,432,454,576,437,433,399,576,575,503,506,577,579,503,578,450,626,580,449,450,578,394,397,455,443,394,581,375,374,499,456,375,581,576,399,460,437,576,582,584,591,583,461,584,582,585,589,586,588,596,589,585,467,468,587,634,467,584,461,546,591,584,590,592,590,593,590,546,547,595,589,596,598,586,589,599,735,600,602,721,603,604,739,383,601,600,539,605,746,606,603,721,607,608,698,609,611,715,612,614,738,613,554,608,610,462,465,615,617,462,616,568,571,619,620,746,605,621,659,497,622,659,621,624,747,623,447,449,624,625,748,626,563,748,625,628,661,627,445,628,625,629,465,466,631,629,630,633,749,632,634,633,630,635,468,463,386,635,636,638,611,637,617,638,636,639,641,519,640,672,641,639,643,642,478,480,643,644,645,494,388,744,645,644,646,393,477,476,646,647,485,486,649,647,648,651,676,650,522,651,648,652,488,483,654,652,653,656,745,655,508,656,653,657,643,480,642,643,657,659,622,658,496,497,659,628,445,495,661,628,660,645,744,662,495,494,645,663,506,507,665,702,663,664,647,649,485,647,664,656,508,504,414,745,656,666,667,418,504,579,667,668,671,669,670,689,671,668,641,672,517,519,641,673,646,476,419,393,646,673,674,424,516,515,674,651,522,523,676,651,675,678,692,677,679,678,675,680,525,520,682,680,681,652,654,683,488,652,681,684,674,515,536,424,674,536,684,685,684,532,534,530,687,686,687,690,688,687,671,689,669,671,687,691,678,679,692,678,691,694,693,691,695,691,558,561,557,696,697,696,609,680,682,609,525,680,696,699,667,579,565,418,667,699,748,563,626,748,699,624,449,577,701,747,624,700,663,702,506,663,700,703,704,596,381,712,704,703,635,386,588,468,635,705,633,634,706,749,633,705,708,707,587,586,708,709,708,586,710,707,708,711,704,712,597,596,704,638,617,618,611,638,714,629,631,716,465,629,717,718,719,412,627,661,719,718,564,563,376,378,564,602,383,384,721,602,720,569,605,607,574,569,720,722,390,391,409,722,723,724,474,470,421,724,723,725,413,726,655,745,413,725,727,654,404,406,727,387,390,411,662,744,387,728,719,661,411,412,719,729,405,726,402,405,729,730,502,500,566,730,729,724,421,422,474,724,731,732,513,509,538,732,731,733,727,406,683,654,727,733,734,682,428,429,734,732,538,539,735,513,732,610,734,429,609,682,734,730,566,567,502,730,736,379,456,452,378,379,736,737,613,738,637,611,613,737,385,386,573,574,385,380,383,739,712,380,740,741,572,738,619,571,572],"itemSize":1,"type":"Uint16Array"},"groups":[{"count":3936,"materialIndex":0,"start":0}]},"metadata":{"normal":750,"generator":"io_three","version":3,"uv":750,"position":750,"type":"BufferGeometry"}} \ No newline at end of file diff --git a/filters/dog/models/dog/dog_nose.json b/filters/dog/models/dog/dog_nose.json new file mode 100644 index 0000000..931ed2d --- /dev/null +++ b/filters/dog/models/dog/dog_nose.json @@ -0,0 +1 @@ +{"data":{"attributes":{"normal":{"array":[0.2192,-0.4327,0.8744,-0.0806,-0.1638,0.9832,-0.0191,-0.2955,0.9551,0.1151,-0.4674,0.8765,0.2585,-0.6477,0.7167,0.4807,-0.6037,0.636,0.5168,-0.5087,0.6886,0.3753,-0.4163,0.8281,0.055,-0.2429,0.9685,-0.2483,-0.7672,0.5914,0,-0.7778,0.6285,-0.149,-0.7888,0.5962,-0.2645,-0.7989,0.5402,-0.1678,-0.8305,0.5311,-0.3589,-0.7843,0.506,-0.3478,-0.7627,0.5452,0,-0.779,0.6269,0,-0.8041,0.5944,0.9894,0.128,0.0688,0.993,-0.1175,0,0.9916,0.1293,0,0.9616,0.2745,0,0.9598,0.2731,0.0641,0.9561,0.1216,0.2667,0.9528,-0.1137,0.2816,0.9903,-0.1181,0.0733,0.5979,0.7997,0.055,0.3183,0.948,0,0.3197,0.9465,0.0437,0.2143,0.9767,0.0002,0.2147,0.9759,0.0377,0.3223,0.9323,0.1639,0.5883,0.78,0.2133,0.1611,-0.1831,0.9698,0.372,0.0152,0.9281,0.2532,-0.0513,0.966,0.4178,0.1396,0.8977,0.3153,0.1094,0.9426,0.1167,-0.1067,0.9874,0.0295,-0.2793,0.9597,-0.0152,-0.9951,0.0981,0.2144,-0.9767,0.0043,0.2138,-0.9748,0.0641,0.5438,-0.8392,0,0.5445,-0.8358,0.07,0.5252,-0.807,0.2701,0.2023,-0.9465,0.2514,-0.041,-0.9631,0.266,0.1168,0.9923,0.0405,0.0915,0.9958,-0.0013,0.0927,0.9949,0.0385,0.0623,0.998,-0.0009,0.064,0.9973,0.0349,0.1033,0.9864,0.1276,0.12,0.9836,0.1342,0.4166,0.0957,0.904,0.6813,0.2886,0.6727,0.4276,0.3181,0.8462,0.5468,0.5221,0.6544,0.3973,0.6511,0.6467,0.2814,0.3074,0.909,0.1471,-0.0933,0.9847,-0.376,-0.7227,0.5799,0,-0.7208,0.6931,-0.4633,-0.6085,0.6442,0,-0.679,0.7341,-0.5316,-0.5658,0.6303,-0.3917,-0.5696,0.7226,-0.3435,-0.6484,0.6794,0.8673,0.4977,0,0.8663,0.4957,0.0613,0.5964,0.8027,0,0.8434,0.4808,0.2398,0.9316,0.2626,0.251,0.8466,-0.0989,0.523,0.6004,-0.3533,0.7174,0.7336,-0.4276,0.5281,0.4619,-0.7269,0.5082,0.3665,-0.6055,0.7064,0.829,-0.4812,0.285,0.3957,0.2968,0.8691,0.3401,0.3221,0.8835,0.349,0.3895,0.8523,0.3457,0.4236,0.8373,0.2625,0.2956,0.9185,0.1865,0.0727,0.9797,0.0002,-0.3899,0.9208,0.0979,-0.3116,0.9451,-0.0291,-0.4901,0.8712,0.0773,-0.4344,0.8974,0.2395,-0.2551,0.9368,0.3045,-0.0949,0.9478,-0.2493,-0.8491,0.4657,0,-0.8176,0.5758,-0.256,-0.7662,0.5893,-0.0511,-0.9006,0.4316,-0.031,-0.9587,0.2827,0,-0.9062,0.4229,0,-0.9751,0.2217,0.0105,-0.2122,0.9771,0.013,-0.087,0.9961,0.046,0.0497,0.9977,0.0683,-0.0773,0.9947,0.1025,-0.2013,0.9742,0.1787,0.204,0.9625,0.3314,0.4346,0.8374,0.3339,0.3704,0.8668,0.2329,0.1282,0.964,0.0713,0.0164,0.9973,0.1909,0.9074,0.3743,0.3224,0.5014,0.8029,0.2377,0.8007,0.5498,0.1421,0.9512,0.2739,0.1905,0.9244,0.3303,0.1145,0.9622,0.2469,0.1229,0.9428,0.3096,0.2576,0.896,0.3616,0.1282,0.9517,0.2791,-0.1903,-0.927,0.3231,-0.0591,-0.8808,0.4698,-0.2002,-0.8577,0.4735,-0.0647,-0.7512,0.6569,-0.1875,-0.7614,0.6205,-0.2604,-0.8359,0.4831,-0.247,-0.8832,0.3987,0.8592,0.1058,0.5005,0.8481,0.2345,0.4751,0.723,0.0841,0.6856,0.7245,0.198,0.6602,0.6999,-0.0807,0.7097,0.3289,0.8819,0.3377,0.2176,0.9668,0.1337,0.2351,0.9344,0.2677,0.3376,0.7411,0.5803,0.294,0.8273,0.4786,0.477,0.5946,0.6472,0.5506,0.7199,0.4226,0.1697,-0.8609,0.4795,0.1264,-0.7177,0.6847,0.0296,0.9888,0.1464,0,0.9958,0.0907,0,0.9897,0.1429,0.0533,0.978,0.2018,0,0.9808,0.195,0.0763,0.9738,0.2143,0.0427,0.9868,0.1558,0.0144,0.9956,0.0926,0.0186,0.9949,0.0986,0.7719,0.4384,0.4603,0.6538,0.3745,0.6575,0.8624,-0.5007,0.0746,0.8646,-0.5025,0,0,-0.9969,0.0782,0.0976,-0.9912,0.0888,0.1082,-0.9842,0.1402,0.0976,-0.9912,0.0888,0.125,-0.9921,0,0.094,-0.9955,0,0,-0.9969,0.0782,0,-1,0,0.6531,-0.3526,0.6701,0.7303,-0.1023,0.6754,0.7303,-0.1023,0.6754,0.8864,-0.4628,0,0.6531,-0.3526,0.6701,0.6266,-0.7793,0,0.4644,-0.6214,0.6309,0.7682,0.2119,0.6042,0.5708,0.6608,0.4873,0.7682,0.2119,0.6042,0.7232,0.6895,0.0388,0.9764,0.2159,0.0015,0.9876,-0.157,0,0.2949,0.9391,0.1763,0.1327,0.9825,0.1307,0.1327,0.9825,0.1307,0.3003,0.9527,0.0457,0.2949,0.9391,0.1763,0.5708,0.6608,0.4873,0.2714,-0.9625,0,0.6118,-0.7815,0.1216,0.2625,-0.9512,0.1618,0.204,-0.7628,0.6135,0.4927,-0.6934,0.5257,0.1098,-0.9444,0.3098,0.125,-0.9921,0,0.878,-0.4679,0.1012,0.9773,-0.1494,0.1499,0.7341,-0.4582,0.5011,0.7736,-0.0893,0.6273,0.6878,0.6706,0.2779,0.9438,0.2338,0.2335,0.0363,0.9963,0.0773,0,0.9781,0.2083,0.0165,0.9785,0.2053,0,0.7581,0.6521,-0.0154,0.7564,0.6539,0.0181,0.9791,0.2023,0.0372,0.9973,0.0623,0.3558,0.6822,0.6387,0.3536,0.6209,0.6996,0.251,0.8817,0.3994,0,-0.6949,0.719,-0.5282,-0.5981,0.6026,0,-0.7522,0.6589,-0.4718,-0.6756,0.5665,-0.4555,-0.6429,0.6157,-0.4433,-0.5845,0.6796,0.2534,-0.4702,0.8454,0.4324,-0.2737,0.8591,0.512,-0.0695,0.8561,0.3415,0.5335,0.7738,0.3869,0.4403,0.8102,-0.0519,-0.6026,0.7963,0.0877,-0.5525,0.8288,0.1555,-0.4017,0.9024,0.5508,0.0578,0.8326,0.5666,0.164,0.8075,0.5054,0.3106,0.805,0.132,0.9658,0.2229,0.1702,0.9558,0.2395,0.1567,0.979,0.1305,0.1578,0.9867,0.0392,0.159,0.9873,0.0003,0.1151,0.9933,-0.0002,0.1576,-0.4648,0.8713,0.0065,-0.1265,0.9919,0.0124,-0.4454,0.8952,-0.2223,-0.4206,0.8796,-0.1888,-0.1304,0.9733,0.0132,-0.6196,0.7848,0.0806,-0.6363,0.7672,-0.1596,-0.9659,0.2039,-0.1661,-0.9388,0.3016,-0.135,-0.9798,0.1472,0.0019,-0.9992,0.0388,-0.2033,-0.9174,0.342,0.0303,0.999,0.0312,0.032,0.9995,0.0003,0.0149,0.9995,0.0295,0.0164,0.9998,0.0005,0.0347,0.9934,0.109,0.0703,0.9905,0.1179,0.1251,0.2996,0.9458,0.2362,0.7216,0.6508,0.1007,0.7522,0.6511,-0.078,0.3012,0.9503,0.0013,0.7593,0.6507,-0.0762,-0.4631,0.883,-0.1747,-0.6071,0.7751,-0.1129,-0.5541,0.8248,-0.0511,-0.4014,0.9144,-0.1383,-0.5214,0.842,-0.1121,-0.5005,0.8584,-0.015,-0.3685,0.9295,0.0811,-0.4398,0.8944,-0.0685,-0.53,0.8452,0.0277,-0.6599,0.7508,0.0927,0.9693,0.2275,0.1021,0.9464,0.3064,0.0913,0.9457,0.3118,0.0981,0.9509,0.2933,-0.3155,-0.8103,0.4937,-0.2471,-0.7711,0.5867,-0.3128,-0.7606,0.5689,-0.4077,-0.7651,0.4983,-0.433,-0.712,0.5527,-0.2892,-0.8372,0.4642,0.1209,0.9711,0.2055,0.0908,0.9778,0.1889,0.2114,-0.8557,0.4723,0.4644,-0.6214,0.6309,0.2114,-0.8557,0.4723,0.1057,-0.9366,0.334,0.089,0.9845,0.1508,0.087,0.9414,0.3259,0.0673,0.9784,0.1955,0.0673,0.9784,0.1955,0.0714,0.9964,0.0449,0.089,0.9845,0.1508,0.1277,0.9912,0.0339,0.1038,-0.9238,0.3685,-0.1256,-0.6022,0.7884,0.076,-0.9067,0.4148,0.125,-0.9921,0,0.1533,0.9607,0.2312,0.3228,0.911,0.2565,-0.1536,-0.6539,0.7408,-0.2155,-0.6962,0.6847,0.3571,-0.3227,0.8765,0.3601,-0.3196,0.8765,0.2632,-0.385,0.8846,0.4373,-0.6643,0.6062,0.1541,-0.8424,0.5163,-0.1433,-0.5768,0.8042,0.3546,-0.5013,0.7893,0.2215,-0.4222,0.879,0.4195,-0.2615,0.8692,0.6165,-0.4784,0.6253,0.1036,-0.4211,0.9011,0.2056,-0.4242,0.8819,0.0722,-0.1744,0.982,0.3038,-0.3609,0.8817,-0.0858,-0.227,0.9701,-0.0393,-0.1974,0.9795,-0.1513,-0.5993,0.7861,0.1567,-0.8789,0.4505,0.54,-0.7259,0.4259,0.7356,-0.4618,0.4955,0.5369,-0.251,0.8054,0.0532,-0.0703,0.9961,-0.1564,-0.0824,0.9842,-0.2023,-0.1924,0.9602,-0.2221,-0.8589,0.4613,-0.1592,-0.8858,0.436,-0.2279,-0.553,0.8014,-0.2685,-0.618,0.7389,-0.1987,-0.5789,0.7908,-0.1495,-0.6596,0.7365,-0.0146,-0.7981,0.6024,0.0611,0.9835,0.1705,0.1018,-0.967,0.2334,0.1057,-0.9366,0.334,0.1018,-0.967,0.2334,0.1082,-0.9842,0.1402,0.0681,0.9746,0.2132,-0.2982,-0.6963,0.6529,-0.3158,-0.133,0.9394,-0.3458,-0.4015,0.848,0,-0.1516,0.9884,0,-0.4316,0.902,-0.2298,-0.569,0.7896,0.0103,0.9999,0.0002,0.0105,0.9995,0.0287,0,1,0.0001,0,0.9996,0.0281,-0.1582,0.2913,0.9434,0,0.294,0.9558,0.0716,0.9495,0.3054,0,0.955,0.2967,0.0727,0.9371,0.3413,-0.415,-0.7428,0.5254,0,-0.8051,0.5931,0.0612,0.9716,0.2283,0,0.9393,0.343,0,0.9716,0.2367,0.0612,0.9716,0.2283,0,0.9964,0.0843,0.0319,-0.902,0.4304,0,-0.5731,0.8195,0,-0.9094,0.4158,-0.2192,-0.4327,0.8744,0.0806,-0.1638,0.9832,-0.055,-0.2429,0.9685,-0.3753,-0.4163,0.8281,-0.5168,-0.5087,0.6886,-0.4807,-0.6037,0.636,-0.2585,-0.6477,0.7167,-0.1151,-0.4674,0.8765,0.0191,-0.2955,0.9551,0.2483,-0.7672,0.5914,0.3478,-0.7627,0.5452,0.3589,-0.7843,0.506,0.2645,-0.7989,0.5402,0.149,-0.7888,0.5962,0.1678,-0.8305,0.5311,-0.9894,0.128,0.0688,-0.993,-0.1175,0,-0.9903,-0.1181,0.0733,-0.9528,-0.1137,0.2816,-0.9561,0.1216,0.2667,-0.9598,0.2731,0.0641,-0.9916,0.1293,0,-0.9616,0.2745,0,-0.3183,0.948,0,-0.5979,0.7997,0.055,-0.3197,0.9465,0.0437,-0.5883,0.78,0.2133,-0.3223,0.9323,0.1639,-0.2147,0.9759,0.0377,-0.2143,0.9767,0.0002,-0.372,0.0152,0.9281,-0.1611,-0.1831,0.9698,-0.2532,-0.0513,0.966,-0.1167,-0.1067,0.9874,-0.0295,-0.2793,0.9597,-0.3153,0.1094,0.9426,-0.4178,0.1396,0.8977,-0.2144,-0.9767,0.0043,0.0152,-0.9951,0.0981,-0.2138,-0.9748,0.0641,-0.2023,-0.9465,0.2514,0.041,-0.9631,0.266,-0.5251,-0.807,0.2701,-0.5445,-0.8358,0.07,-0.5438,-0.8392,0,-0.0915,0.9958,-0.0013,-0.1168,0.9923,0.0405,-0.0927,0.9949,0.0385,-0.1033,0.9864,0.1276,-0.12,0.9836,0.1342,-0.064,0.9973,0.0349,-0.0623,0.998,-0.0009,-0.6813,0.2886,0.6727,-0.4166,0.0957,0.904,-0.4276,0.3181,0.8462,-0.2814,0.3074,0.909,-0.1471,-0.0933,0.9847,-0.3973,0.6511,0.6467,-0.5468,0.5221,0.6544,0.376,-0.7227,0.5799,0.4633,-0.6085,0.6442,0.3435,-0.6484,0.6794,0.3917,-0.5696,0.7226,0.5315,-0.5658,0.6303,-0.8663,0.4957,0.0613,-0.9316,0.2626,0.251,-0.8434,0.4808,0.2398,-0.5964,0.8027,0,-0.8673,0.4977,0,-0.6004,-0.3533,0.7174,-0.8466,-0.0989,0.523,-0.7336,-0.4276,0.5281,-0.829,-0.4812,0.285,-0.4619,-0.7269,0.5082,-0.3665,-0.6055,0.7064,-0.3957,0.2968,0.8691,-0.3401,0.3221,0.8835,-0.1865,0.0727,0.9797,-0.2625,0.2956,0.9185,-0.3457,0.4236,0.8373,-0.349,0.3895,0.8523,-0.0002,-0.3899,0.9208,-0.0979,-0.3116,0.9451,-0.3045,-0.0949,0.9478,-0.2395,-0.2551,0.9368,-0.0773,-0.4344,0.8974,0.0291,-0.4901,0.8712,0.2493,-0.8491,0.4657,0.031,-0.9587,0.2827,0.0511,-0.9006,0.4316,0.256,-0.7662,0.5893,-0.0105,-0.2122,0.9771,-0.013,-0.087,0.9961,-0.0683,-0.0773,0.9947,-0.1025,-0.2013,0.9742,-0.046,0.0497,0.9977,-0.1787,0.204,0.9625,-0.0713,0.0164,0.9973,-0.2329,0.1282,0.964,-0.3339,0.3704,0.8668,-0.3314,0.4346,0.8374,-0.1909,0.9074,0.3743,-0.3224,0.5014,0.8029,-0.2576,0.896,0.3616,-0.1229,0.9428,0.3097,-0.1282,0.9517,0.2791,-0.1145,0.9622,0.2469,-0.1421,0.9512,0.2739,-0.2377,0.8007,0.5498,-0.1905,0.9244,0.3303,0.0591,-0.8808,0.4698,0.1903,-0.927,0.3231,0.2002,-0.8577,0.4735,0.247,-0.8832,0.3987,0.2604,-0.8359,0.4831,0.1875,-0.7614,0.6205,0.0647,-0.7512,0.6569,-0.8592,0.1058,0.5005,-0.6999,-0.0807,0.7097,-0.723,0.0841,0.6856,-0.8481,0.2345,0.4751,-0.7245,0.198,0.6602,-0.3289,0.8819,0.3377,-0.2176,0.9668,0.1337,-0.5506,0.7199,0.4226,-0.477,0.5946,0.6472,-0.3376,0.7411,0.5803,-0.2351,0.9344,0.2677,-0.294,0.8273,0.4786,-0.1697,-0.8609,0.4795,-0.1264,-0.7177,0.6847,-0.0296,0.9888,0.1464,0,0.9958,0.0907,-0.0144,0.9956,0.0926,-0.0427,0.9868,0.1558,-0.0186,0.9949,0.0986,-0.0763,0.9738,0.2143,-0.0533,0.978,0.2018,0,0.9897,0.1429,0,0.9808,0.195,-0.7719,0.4384,0.4603,-0.6538,0.3745,0.6575,-0.8624,-0.5007,0.0746,-0.8646,-0.5025,0,-0.0976,-0.9912,0.0888,-0.094,-0.9955,0,-0.0976,-0.9912,0.0888,-0.125,-0.9921,0,-0.1082,-0.9842,0.1402,-0.1082,-0.9842,0.1402,-0.6531,-0.3526,0.6701,-0.4644,-0.6214,0.6309,-0.6531,-0.3526,0.6701,-0.6266,-0.7793,0,-0.8864,-0.4628,0,-0.7303,-0.1023,0.6754,-0.7303,-0.1023,0.6754,-0.7682,0.2119,0.6042,-0.9764,0.2159,0.0015,-0.9876,-0.157,0,-0.7682,0.2119,0.6042,-0.7232,0.6895,0.0388,-0.5708,0.6608,0.4873,-0.5708,0.6608,0.4873,-0.2949,0.9391,0.1763,-0.2949,0.9391,0.1763,-0.3003,0.9527,0.0457,-0.1327,0.9825,0.1307,-0.6118,-0.7815,0.1216,-0.2714,-0.9625,0,-0.2625,-0.9512,0.1618,-0.125,-0.9921,0,-0.1098,-0.9444,0.3098,-0.204,-0.7628,0.6135,-0.4927,-0.6934,0.5257,-0.878,-0.4679,0.1012,-0.7341,-0.4582,0.5011,-0.9773,-0.1494,0.1499,-0.7736,-0.0893,0.6273,-0.6878,0.6706,0.2779,-0.9438,0.2338,0.2335,0,0.9781,0.2083,-0.0363,0.9963,0.0773,-0.0165,0.9785,0.2053,-0.0372,0.9973,0.0623,-0.0181,0.9791,0.2023,0.0154,0.7564,0.6539,0,0.7581,0.6521,-0.3558,0.6822,0.6387,-0.251,0.8817,0.3994,-0.3536,0.6209,0.6996,0.5282,-0.5981,0.6026,0.4433,-0.5845,0.6796,0.4555,-0.6429,0.6157,0.4718,-0.6756,0.5665,-0.2534,-0.4702,0.8454,-0.4324,-0.2737,0.8591,-0.512,-0.0695,0.8561,-0.3415,0.5335,0.7738,-0.3869,0.4403,0.8102,0.0519,-0.6026,0.7963,-0.0877,-0.5525,0.8288,-0.1555,-0.4017,0.9024,-0.5508,0.0578,0.8326,-0.5666,0.164,0.8075,-0.5054,0.3106,0.805,-0.132,0.9658,0.2229,-0.1702,0.9558,0.2395,-0.1567,0.979,0.1305,-0.1578,0.9867,0.0392,-0.1151,0.9933,-0.0002,-0.159,0.9873,0.0003,-0.0065,-0.1265,0.9919,-0.1576,-0.4648,0.8713,-0.0124,-0.4454,0.8952,-0.0132,-0.6196,0.7848,-0.0806,-0.6363,0.7672,0.2223,-0.4206,0.8796,0.1887,-0.1304,0.9733,0.1596,-0.9659,0.2039,0.1661,-0.9388,0.3016,0.2033,-0.9174,0.342,0.135,-0.9798,0.1472,-0.0019,-0.9992,0.0388,-0.0303,0.999,0.0312,-0.0347,0.9934,0.109,-0.0703,0.9905,0.1179,-0.0149,0.9995,0.0295,-0.032,0.9995,0.0003,-0.0164,0.9998,0.0005,-0.1251,0.2996,0.9458,-0.2362,0.7216,0.6508,0.078,0.3012,0.9503,-0.1007,0.7522,0.6511,-0.0013,0.7593,0.6507,0.0762,-0.4631,0.883,0.1747,-0.6071,0.7751,0.1383,-0.5214,0.842,0.0511,-0.4014,0.9144,0.1121,-0.5005,0.8584,0.1129,-0.5541,0.8248,0.015,-0.3685,0.9295,0.0685,-0.53,0.8452,-0.0811,-0.4398,0.8944,-0.0277,-0.6599,0.7508,-0.0927,0.9693,0.2275,-0.1021,0.9464,0.3064,-0.0981,0.9509,0.2933,-0.0913,0.9457,0.3118,0.3155,-0.8103,0.4937,0.2471,-0.7711,0.5867,0.2892,-0.8372,0.4642,0.4077,-0.7651,0.4983,0.3128,-0.7605,0.5689,0.433,-0.712,0.5527,-0.1209,0.9711,0.2055,-0.0908,0.9778,0.1889,-0.2114,-0.8557,0.4723,-0.1057,-0.9366,0.334,-0.1057,-0.9366,0.334,-0.2114,-0.8557,0.4723,-0.4644,-0.6214,0.6309,-0.1327,0.9825,0.1307,-0.089,0.9845,0.1508,-0.089,0.9845,0.1508,-0.1277,0.9912,0.0339,-0.0714,0.9964,0.0449,-0.0673,0.9784,0.1955,-0.087,0.9414,0.3259,-0.1038,-0.9238,0.3685,-0.125,-0.9921,0,-0.076,-0.9067,0.4148,0.1256,-0.6022,0.7884,-0.1533,0.9607,0.2312,-0.3228,0.911,0.2565,0.1536,-0.6539,0.7408,0.2155,-0.6962,0.6847,-0.3571,-0.3227,0.8765,-0.3601,-0.3196,0.8765,0.1433,-0.5768,0.8042,-0.1541,-0.8424,0.5163,-0.4373,-0.6643,0.6062,-0.2632,-0.385,0.8846,-0.3546,-0.5013,0.7893,-0.6165,-0.4784,0.6253,-0.4195,-0.2615,0.8692,-0.2215,-0.4222,0.879,-0.1036,-0.4211,0.9011,-0.0722,-0.1744,0.982,-0.2056,-0.4242,0.8819,-0.3038,-0.3609,0.8817,0.0393,-0.1974,0.9795,0.0858,-0.227,0.9701,0.1513,-0.5993,0.7861,-0.1567,-0.8789,0.4505,-0.54,-0.7259,0.4259,-0.7356,-0.4618,0.4955,-0.5369,-0.251,0.8054,-0.0532,-0.0703,0.9961,0.1564,-0.0824,0.9842,0.2023,-0.1924,0.9602,0.2221,-0.8589,0.4613,0.1592,-0.8858,0.436,0.2279,-0.553,0.8014,0.1987,-0.5789,0.7908,0.2685,-0.618,0.7389,0.1495,-0.6596,0.7365,0.0146,-0.7981,0.6024,-0.0611,0.9835,0.1705,-0.1018,-0.967,0.2334,-0.1018,-0.967,0.2334,-0.0681,0.9746,0.2132,0.2982,-0.6963,0.6529,0.3158,-0.133,0.9394,0.3458,-0.4015,0.848,0.2298,-0.569,0.7896,-0.0103,0.9999,0.0002,-0.0105,0.9995,0.0287,0,0.9996,0.0281,0,1,0.0001,0.1582,0.2913,0.9434,-0.0716,0.9495,0.3054,-0.0727,0.9371,0.3413,0,0.955,0.2967,0.415,-0.7428,0.5254,-0.0673,0.9784,0.1955,-0.0612,0.9716,0.2283,-0.0612,0.9716,0.2283,0,0.9964,0.0843,0,0.9716,0.2367,0,0.9393,0.343,-0.0319,-0.902,0.4304,0,0.9716,0.2367,0,0.9716,0.2367],"itemSize":3,"type":"Float32Array"},"uv":{"array":[0.582,0.7051,0.5894,0.6842,0.5961,0.7027,0.5958,0.7216,0.5832,0.7311,0.5694,0.7292,0.5683,0.7077,0.5707,0.6853,0.579,0.6789,0.5038,0.088,0.5,0.0562,0.5025,0.0556,0.5129,0.0855,0.5097,0.0538,0.5148,0.1167,0.5046,0.1192,0.5,0.0889,0.5,0.12,0.9159,0.1325,0.9057,0.0657,0.9437,0.1141,0.9731,0.1714,0.9422,0.1846,0.8897,0.151,0.8608,0.1115,0.8825,0.0891,0.9646,0.2874,0.9953,0.3522,0.9612,0.3506,0.987,0.4145,0.9528,0.4108,0.9256,0.3515,0.9324,0.2921,0.7288,0.2317,0.7838,0.235,0.7454,0.2659,0.8028,0.2669,0.7664,0.2984,0.7064,0.298,0.6758,0.2622,0.6946,0.0385,0.7594,0.002,0.7564,0.035,0.8179,0.0119,0.8079,0.0431,0.7973,0.0719,0.7515,0.0662,0.6947,0.0708,0.9418,0.475,0.9711,0.5061,0.9362,0.5006,0.9671,0.5291,0.9318,0.5234,0.8953,0.494,0.9011,0.4685,0.5845,0.7691,0.6488,0.785,0.5993,0.8051,0.6531,0.8172,0.6232,0.8411,0.5511,0.8257,0.5308,0.7783,0.5082,0.2836,0.5,0.267,0.508,0.266,0.5,0.2442,0.5077,0.2434,0.5219,0.2628,0.5213,0.2811,0.9908,0.2279,0.9583,0.2357,0.998,0.2849,0.9276,0.2447,0.9129,0.1984,0.8392,0.1339,0.7971,0.1367,0.8143,0.1119,0.7855,0.1,0.7737,0.1269,0.8311,0.0865,0.8161,0.2925,0.7834,0.3244,0.822,0.3142,0.8018,0.3437,0.7527,0.3598,0.7316,0.3312,0.681,0.2219,0.7248,0.2035,0.6857,0.1907,0.7273,0.1779,0.7585,0.1839,0.7668,0.2045,0.5087,0.3004,0.5,0.2842,0.5204,0.2999,0.5195,0.3159,0.5089,0.3151,0.5,0.3002,0.5,0.3145,0.6417,0.3034,0.6764,0.3274,0.7075,0.3586,0.6574,0.3496,0.621,0.3282,0.7329,0.3887,0.7752,0.3827,0.7567,0.4125,0.7217,0.4085,0.6924,0.3781,0.7654,0.4745,0.745,0.4417,0.7676,0.4454,0.7936,0.4761,0.7978,0.4482,0.7924,0.5044,0.7665,0.5032,0.7509,0.476,0.7529,0.5045,0.6294,0.0854,0.6932,0.1029,0.6307,0.1178,0.6911,0.1336,0.6314,0.1496,0.573,0.1331,0.5707,0.1019,0.8639,0.1699,0.8844,0.2131,0.8383,0.1896,0.857,0.2287,0.817,0.1565,0.8868,0.3539,0.9148,0.4084,0.8696,0.4062,0.8511,0.3551,0.8274,0.4023,0.8703,0.3048,0.9002,0.2986,0.7451,0.0968,0.7384,0.1257,0.8321,0.5557,0.8853,0.5734,0.8308,0.565,0.7835,0.5492,0.7823,0.5572,0.7854,0.5391,0.8338,0.5446,0.8869,0.5631,0.8882,0.5513,0.8978,0.2549,0.8697,0.2653,0.8474,0.0606,0.8645,0.0327,0.5,0.3266,0.5088,0.3265,0.5189,0.3265,0.5064,0.5742,0.516,0.587,0.5058,0.5882,0.4976,0.5745,0.4975,0.589,0.6507,0.3576,0.6872,0.385,0.7059,0.7128,0.6674,0.6615,0.6769,0.6552,0.6302,0.6196,0.6368,0.6124,0.7174,0.4157,0.736,0.4472,0.7184,0.774,0.7037,0.8268,0.707,0.7748,0.6939,0.7169,0.7423,0.4778,0.7429,0.5063,0.6758,0.9155,0.683,0.8704,0.6988,0.8753,0.7149,0.8286,0.5895,0.5981,0.6184,0.6323,0.5815,0.6118,0.5759,0.6266,0.6073,0.646,0.5469,0.6047,0.5524,0.5895,0.6485,0.6739,0.669,0.7257,0.6297,0.6864,0.6345,0.7383,0.6807,0.8229,0.6827,0.777,0.6187,0.9497,0.5749,0.9283,0.5804,0.9229,0.5333,0.8938,0.5392,0.8891,0.5883,0.9163,0.6264,0.9417,0.7795,0.4232,0.7984,0.3958,0.8097,0.4286,0.5,0.2116,0.5069,0.2116,0.5,0.1769,0.5062,0.1775,0.5201,0.2102,0.5215,0.2407,0.763,0.1522,0.7804,0.1612,0.7942,0.1798,0.8239,0.353,0.844,0.3087,0.6889,0.1619,0.7323,0.152,0.7508,0.171,0.813,0.2104,0.8313,0.245,0.8437,0.2751,0.8476,0.458,0.8568,0.4364,0.9071,0.4437,0.9467,0.4486,0.9807,0.4532,0.976,0.48,0.5322,0.7068,0.5127,0.7831,0.5197,0.708,0.5095,0.7092,0.505,0.7867,0.5222,0.6355,0.5405,0.6323,0.6264,0.0533,0.5609,0.0398,0.6204,0.0215,0.6918,0.0055,0.5671,0.0706,0.9299,0.5416,0.9648,0.5466,0.9291,0.5562,0.9634,0.5605,0.8891,0.5363,0.891,0.5174,0.5264,0.8363,0.5807,0.8634,0.5583,0.8767,0.5147,0.8419,0.5471,0.8842,0.6284,0.2388,0.5778,0.2262,0.6312,0.2102,0.6198,0.2674,0.578,0.2495,0.5742,0.2714,0.6022,0.2969,0.5855,0.3199,0.5639,0.2964,0.5538,0.3172,0.789,0.5248,0.7646,0.5239,0.7619,0.5381,0.7526,0.5249,0.537,0.142,0.5747,0.1646,0.539,0.1729,0.5166,0.1466,0.5184,0.177,0.5347,0.1115,0.8424,0.4845,0.8392,0.5104,0.579,0.329,0.6134,0.3372,0.5946,0.5889,0.556,0.5781,0.7426,0.5258,0.7515,0.5386,0.742,0.5384,0.645,0.9568,0.6377,0.9285,0.6576,0.9413,0.6558,0.9064,0.5262,0.6024,0.5115,0.6347,0.514,0.6017,0.5296,0.587,0.6189,0.8882,0.6534,0.8597,0.6318,0.1805,0.5764,0.1968,0.6165,0.732,0.5822,0.7557,0.5462,0.7571,0.5556,0.7488,0.5834,0.7493,0.6087,0.73,0.5451,0.7081,0.5537,0.6556,0.5626,0.6684,0.5557,0.7098,0.5759,0.6418,0.6009,0.6579,0.5776,0.6566,0.6185,0.6941,0.6095,0.6986,0.5961,0.6685,0.6031,0.727,0.5838,0.7431,0.5615,0.7417,0.5618,0.7095,0.5675,0.6758,0.578,0.6661,0.5927,0.6755,0.6033,0.7011,0.5316,0.0806,0.5267,0.0496,0.5439,0.2571,0.5429,0.2353,0.5425,0.2764,0.5377,0.298,0.5332,0.3164,0.8363,0.53,0.5313,0.3267,0.5498,0.3271,0.5319,0.5746,0.5172,0.5739,0.5992,0.9058,0.5411,0.2056,0.4999,0.7885,0.5021,0.7074,0.4967,0.7888,0.4972,0.7057,0.5036,0.6317,0.9617,0.5729,0.9278,0.5685,0.96,0.5846,0.9261,0.5796,0.5061,0.8467,0.4963,0.8502,0.7605,0.5472,0.7597,0.5538,0.7507,0.5469,0.5053,0.1479,0.5,0.1478,0.7415,0.546,0.7501,0.5525,0.7409,0.5512,0.637,0.9656,0.6134,0.9555,0.505,0.6006,0.4973,0.6296,0.4975,0.5999,0.4121,0.7042,0.4048,0.6833,0.4153,0.6781,0.4235,0.6846,0.4258,0.7069,0.4246,0.7285,0.4108,0.7302,0.3982,0.7207,0.398,0.7018,0.4962,0.088,0.4955,0.1192,0.4852,0.1167,0.4871,0.0855,0.4976,0.0556,0.4903,0.0538,0.0841,0.1326,0.0943,0.0657,0.1175,0.0891,0.1392,0.1116,0.1104,0.151,0.0578,0.1846,0.0563,0.1142,0.0269,0.1714,0.0048,0.3522,0.0354,0.2875,0.0389,0.3507,0.0676,0.2921,0.0745,0.3515,0.0473,0.4108,0.0131,0.4146,0.2162,0.235,0.2712,0.2317,0.2546,0.2659,0.2937,0.298,0.3242,0.2622,0.2336,0.2985,0.1972,0.2669,0.2406,0.002,0.3054,0.0385,0.2436,0.035,0.2485,0.0662,0.3053,0.0708,0.2027,0.072,0.1921,0.0431,0.1821,0.0119,0.029,0.5061,0.0583,0.475,0.0639,0.5006,0.1048,0.494,0.099,0.4686,0.0683,0.5235,0.033,0.5291,0.3446,0.7835,0.409,0.7682,0.3939,0.8041,0.4418,0.8251,0.4626,0.7779,0.3696,0.8398,0.3399,0.8156,0.4918,0.2836,0.492,0.266,0.4787,0.2811,0.4782,0.2628,0.4924,0.2434,0.0417,0.2358,0.0871,0.1984,0.0725,0.2447,0.002,0.2849,0.0092,0.228,0.2029,0.1367,0.1609,0.134,0.1857,0.1119,0.1689,0.0865,0.2146,0.1,0.2264,0.1269,0.1839,0.2925,0.2167,0.3244,0.2685,0.3313,0.2473,0.3598,0.1983,0.3437,0.178,0.3142,0.319,0.2219,0.2752,0.2035,0.2332,0.2045,0.2415,0.184,0.2727,0.1779,0.3143,0.1907,0.4914,0.3004,0.4911,0.3151,0.4806,0.3159,0.4797,0.2999,0.3583,0.3034,0.3236,0.3274,0.3427,0.3496,0.3791,0.3282,0.2926,0.3586,0.2672,0.3887,0.3077,0.3781,0.2783,0.4085,0.2433,0.4125,0.2249,0.3827,0.2346,0.4745,0.255,0.4417,0.2492,0.4761,0.2336,0.5033,0.2472,0.5046,0.2076,0.5045,0.2065,0.4762,0.2325,0.4454,0.2023,0.4482,0.3068,0.1029,0.3706,0.0854,0.3693,0.1178,0.4293,0.1019,0.4271,0.1331,0.3687,0.1497,0.3089,0.1336,0.1361,0.1699,0.183,0.1566,0.1617,0.1896,0.1156,0.2132,0.143,0.2287,0.1133,0.3539,0.0853,0.4085,0.0999,0.2986,0.1298,0.3048,0.149,0.3551,0.1305,0.4063,0.1726,0.4024,0.255,0.0968,0.2616,0.1257,0.1679,0.5557,0.1148,0.5735,0.1132,0.5632,0.1663,0.5447,0.1119,0.5513,0.2147,0.5391,0.2166,0.5492,0.1693,0.565,0.2178,0.5572,0.1023,0.2549,0.1304,0.2654,0.1526,0.0606,0.1355,0.0327,0.4912,0.3265,0.4893,0.5881,0.4889,0.5741,0.4791,0.5868,0.478,0.5737,0.4812,0.3265,0.3493,0.3576,0.3867,0.3372,0.3176,0.6535,0.3646,0.6183,0.327,0.6598,0.2881,0.7107,0.3129,0.385,0.2826,0.4157,0.2864,0.7727,0.3,0.715,0.275,0.7718,0.2892,0.8247,0.278,0.8264,0.2641,0.4473,0.2578,0.4778,0.2936,0.8733,0.3094,0.8686,0.3162,0.9137,0.3763,0.6311,0.4055,0.5971,0.4133,0.611,0.4427,0.5889,0.448,0.6042,0.4188,0.6258,0.3873,0.6449,0.3459,0.6724,0.3645,0.6851,0.3249,0.724,0.3593,0.737,0.3122,0.8211,0.3107,0.7751,0.4169,0.9275,0.373,0.9484,0.4116,0.922,0.3654,0.9404,0.4037,0.9153,0.4531,0.8887,0.4589,0.8934,0.2205,0.4233,0.1904,0.4286,0.2017,0.3958,0.4931,0.2116,0.4785,0.2407,0.4799,0.2102,0.4939,0.1775,0.237,0.1522,0.2196,0.1612,0.2058,0.1798,0.1761,0.3531,0.156,0.3088,0.3111,0.1619,0.2677,0.152,0.2492,0.171,0.1871,0.2104,0.1687,0.2451,0.1564,0.2752,0.1525,0.458,0.1433,0.4364,0.0929,0.4437,0.0534,0.4486,0.0241,0.4801,0.0193,0.4532,0.4807,0.783,0.4622,0.7064,0.4747,0.7077,0.4723,0.6352,0.4541,0.6318,0.4849,0.709,0.4883,0.7866,0.3736,0.0533,0.4392,0.0398,0.4329,0.0706,0.3796,0.0215,0.3083,0.0055,0.0702,0.5416,0.111,0.5363,0.1091,0.5175,0.071,0.5563,0.0352,0.5466,0.0367,0.5606,0.4664,0.836,0.4118,0.8626,0.478,0.8418,0.4341,0.876,0.4452,0.8837,0.3717,0.2388,0.4223,0.2262,0.422,0.2495,0.3802,0.2674,0.4258,0.2714,0.3689,0.2102,0.3979,0.2969,0.4362,0.2964,0.4146,0.3199,0.4462,0.3172,0.211,0.5248,0.2355,0.524,0.2475,0.5249,0.2382,0.5381,0.463,0.142,0.4253,0.1646,0.4653,0.1115,0.4835,0.1466,0.461,0.1729,0.4817,0.177,0.1577,0.4845,0.1608,0.5104,0.4211,0.329,0.4502,0.3271,0.4392,0.5775,0.4005,0.5879,0.3581,0.611,0.2571,0.5064,0.2575,0.5258,0.3341,0.9396,0.3363,0.9048,0.3542,0.927,0.3466,0.9553,0.2486,0.5386,0.4688,0.6021,0.4655,0.5866,0.481,0.6016,0.4831,0.6345,0.3734,0.887,0.3392,0.8581,0.3682,0.1805,0.4236,0.1968,0.3773,0.7308,0.4114,0.7548,0.3852,0.7289,0.4103,0.7484,0.4382,0.7482,0.4474,0.7565,0.4492,0.7075,0.4385,0.7091,0.4318,0.6678,0.4408,0.6551,0.4188,0.6411,0.4169,0.6557,0.3936,0.6569,0.3756,0.6929,0.3982,0.6675,0.3846,0.6975,0.3909,0.726,0.4101,0.7422,0.4323,0.741,0.4324,0.7088,0.4268,0.6751,0.4163,0.6653,0.4016,0.6745,0.3908,0.7001,0.4684,0.0806,0.4733,0.0496,0.4562,0.2571,0.4576,0.2764,0.4571,0.2353,0.4623,0.298,0.4669,0.3164,0.1638,0.53,0.4688,0.3267,0.4633,0.5742,0.3929,0.9048,0.459,0.2056,0.4935,0.7885,0.4922,0.7074,0.491,0.6316,0.0383,0.573,0.0723,0.5685,0.074,0.5796,0.0401,0.5846,0.4866,0.8466,0.2395,0.5472,0.2493,0.5469,0.2404,0.5539,0.4947,0.1479,0.258,0.5384,0.2586,0.5461,0.3545,0.9642,0.3782,0.9543,0.3597,0.97,0.25,0.5525,0.49,0.6006,0.6318,0.9714,0.2592,0.5512],"itemSize":2,"type":"Float32Array"},"position":{"array":[3.1159,7.8661,7.196,3.3026,7.2516,6.9792,3.5858,7.8017,7.0936,3.6852,8.3178,7.306,3.3414,8.5265,7.5124,2.9258,8.3689,7.6249,2.6774,7.8673,7.3493,2.6615,7.3015,7.0545,2.9218,7.1425,6.9304,0.4113,0.2112,-0.3804,0.1001,-0.4394,-1.2431,0.4113,-0.4792,-1.2431,0.9495,0.0173,-0.3698,0.9495,-0.5801,-1.2431,0.9463,0.5824,0.4839,0.4099,0.845,0.4501,0.1001,0.2876,-0.3846,0.1001,0.9485,0.4333,16.3189,4.7891,-0.2227,16.4239,2.437,-1.2431,16.3189,4.7891,-1.2431,15.7778,7.2689,-1.2431,15.7778,7.2689,-0.2227,16.1769,4.8005,0.7822,16.2774,2.4766,0.7834,16.4239,2.437,-0.2227,13.5111,11.2331,-0.2227,10.8694,12.3745,-1.2431,10.8694,12.3745,-0.2227,8.1375,13.0431,-1.2431,8.1358,13.0433,-0.2227,10.7912,12.3038,0.8368,13.4088,11.1683,0.7945,10.5249,3.6319,4.6273,12.6364,5.2754,4.1905,10.5408,5.5649,4.853,12.459,7.2436,4.1174,10.508,7.5446,4.8695,8.3013,5.9703,5.3195,7.6883,3.8792,4.9684,9.7583,-1.6737,-0.2371,12.5171,-1.4607,-1.2431,12.5171,-1.4607,-0.2227,14.6341,-0.6832,-1.2431,14.6341,-0.6832,-0.2227,14.523,-0.5841,0.7833,12.4439,-1.343,0.7824,9.7209,-1.5175,0.7529,5.1171,13.5463,-0.2095,3.8738,13.6745,-1.2196,3.8831,13.6753,-0.17,2.7644,13.7629,-1.2079,2.7794,13.7634,-0.1436,3.9119,13.5759,1.0524,5.1566,13.4391,1.0019,3.6352,9.5358,8.0483,4.847,10.6358,7.0315,3.5028,10.8568,7.746,4.3743,11.6413,6.8304,3.3713,12.1291,7.1964,2.0227,11.0908,8.2929,2.0091,9.3386,8.6074,0.3632,4.5227,4.4967,0.1001,4.2799,4.0557,0.3764,4.1134,4.0864,0.1001,3.73,3.5135,0.3819,3.5367,3.5701,0.8703,3.7459,4.1368,0.8225,4.2567,4.5139,14.9946,9.4741,-1.2431,14.9946,9.4741,-0.2227,13.5111,11.2331,-1.2431,14.8765,9.4302,0.7805,15.648,7.2531,0.781,15.8378,2.5956,1.7612,14.7065,1.2499,2.6514,15.3556,0.8982,1.7625,14.1895,-0.2871,1.7609,13.6825,0.2032,2.6262,15.7635,0.6854,0.7837,12.007,8.686,3.9333,10.1529,9.0311,4.6027,11.3607,9.6415,3.7986,9.8416,10.1532,4.1661,8.1787,9.5791,5.137,8.4355,7.9591,5.4203,8.4179,2.3498,4.3922,10.7336,2.2854,4.2668,8.9037,1.2374,3.8515,11.084,1.2767,3.8056,12.5857,2.1522,3.9384,12.6438,3.379,4.1362,0.332,4.8188,4.9297,0.1001,4.633,4.486,0.6979,4.6917,4.948,0.5756,4.9895,5.3571,0.3017,4.9983,5.3378,0.1001,4.8688,4.9176,0.1001,5.0018,5.3243,5.5302,5.0309,5.2649,6.4316,6.5339,5.4541,6.7692,8.4003,5.5314,5.1681,7.016,5.4608,4.2219,5.6735,5.415,6.6304,10.0819,5.3582,7.8485,10.8336,4.648,6.373,11.3942,5.0074,5.6289,10.4421,5.4336,5.6718,8.7411,5.4803,3.8247,12.7146,4.8185,5.0608,11.9979,5.2953,5.2107,12.4413,4.8196,3.9846,12.9357,4.0402,5.3559,12.7315,4.0222,2.6416,13.1318,3.9839,2.4963,12.9305,4.7285,3.6227,12.5935,5.2057,2.3362,12.812,5.1115,6.5488,-1.0339,0.667,9.6087,-1.1273,1.7107,6.4923,-0.6167,1.5818,9.4374,-0.5239,2.5698,6.4045,-0.0263,2.4313,3.6653,0.1249,1.4413,3.6973,-0.317,0.5727,15.7511,4.8347,1.7565,15.2583,7.2057,1.7515,15.048,4.9136,2.6638,14.6243,7.1584,2.6412,15.1129,2.7957,2.6711,10.5565,12.0917,1.9747,8.0927,12.9677,0.8929,7.9666,12.7406,2.1991,10.246,11.6873,2.9879,7.8319,12.3356,3.3828,12.6306,10.6184,2.6941,13.1019,10.974,1.8057,12.2241,-0.9898,1.757,11.8948,-0.4177,2.6169,0.5429,13.5454,2.6415,0.1001,13.7579,1.0035,0.1001,13.5534,2.6415,0.4824,13.3069,4.0969,0.1001,13.3192,4.0968,0.9685,13.2757,4.0772,1.0746,13.5252,2.6362,0.5935,13.7534,1.0035,1.1599,13.742,1.0157,14.5223,9.2987,1.7496,13.9543,9.0844,2.6149,15.8994,0.6145,-0.2227,15.8994,0.6145,-1.2431,0.1001,5.0461,5.6802,0.2917,5.0581,5.6732,0.5348,5.0888,5.6593,0.2917,5.0581,5.6732,0.5348,5.0888,5.9258,0.2917,5.0581,5.9549,0.1001,5.0461,5.6802,0.1001,5.0461,5.971,4.7469,7.1767,5.5437,5.3061,8.8548,5.5446,5.3061,8.8548,5.5446,4.7469,7.1767,5.7965,4.7469,7.1767,5.5437,3.7858,5.8878,5.7702,3.7858,5.8878,5.5496,5.2951,10.5622,5.5308,4.6987,11.921,5.5005,5.2951,10.5622,5.5308,4.68,11.921,5.7513,5.2951,10.5622,5.785,5.3061,8.8548,5.8233,3.5013,12.5532,5.452,2.2016,12.7672,5.401,2.2016,12.7672,5.401,3.4265,12.5532,5.7918,3.5013,12.5532,5.452,4.6987,11.921,5.5005,2.5908,5.3479,5.81,3.7858,5.8878,6.1783,2.5908,5.3479,6.1657,2.6283,5.4865,6.5219,3.7458,5.9914,6.5972,1.5074,5.2114,6.2054,1.5074,5.2114,5.8695,4.7469,7.1767,6.3131,5.3061,8.8548,6.4157,4.6536,7.2244,6.8275,5.0496,8.8936,7.2394,4.6645,11.921,6.2747,5.2951,10.5622,6.3315,0.3469,12.8825,5.8143,0.1001,12.8554,6.7329,0.3469,12.8524,6.7329,0.1001,12.4573,7.7098,0.3506,12.4526,7.7218,0.674,12.845,6.7368,0.6895,12.8676,5.8213,6.3548,12.1525,4.5519,7.7628,11.7261,4.1312,6.4201,12.6075,3.7653,0.1001,2.9037,2.7462,0.3901,2.7385,2.8189,0.1001,2.0648,1.9122,0.3988,1.9408,1.9839,0.9015,2.3742,2.9407,0.8828,3.1286,3.6635,13.051,0.8817,3.2954,13.8466,1.7375,3.3883,14.1107,3.0785,3.4734,9.9402,11.0399,3.6731,12.0349,10.0698,3.3431,9.223,0.2719,3.2637,11.4929,0.3567,3.2777,12.3122,1.4292,3.6916,14.0743,5.0594,3.4679,13.7612,7.1429,3.4022,13.195,8.7919,3.3067,5.287,13.1158,2.5811,6.4131,13.0096,2.4209,6.3823,13.2913,0.9484,6.3765,13.3847,-0.2227,6.3832,13.3841,-1.2431,5.1231,13.5453,-1.2372,1.5368,7.3797,7.8052,1.1693,9.4287,8.6396,1.0544,7.3552,7.8483,0.6313,7.3757,7.8214,0.6952,9.4874,8.6235,0.9244,5.6881,6.8121,1.5289,5.6289,6.7368,6.5677,-1.2772,-0.28,3.7079,-0.9839,-1.2431,6.5677,-1.4337,-1.2431,9.7583,-1.7128,-1.2431,3.7079,-0.6721,-0.3273,1.9107,13.802,-0.17,1.9239,13.8018,-1.2196,1.2149,13.8142,-0.2095,1.2546,13.8141,-1.2372,1.8723,13.7258,1.0524,2.775,13.679,1.0769,1.167,11.2034,8.4897,1.9614,12.3404,7.6064,1.1353,12.4238,7.7441,0.694,11.2486,8.4822,0.6721,12.4407,7.7393,5.766,2.5581,4.3332,3.47,2.1763,3.7601,6.0982,1.6167,3.8206,5.1183,3.5144,4.7504,3.3645,2.886,4.2154,3.0591,3.6019,4.5815,3.9778,4.439,5.1027,2.9375,5.1207,5.383,2.3773,4.3889,4.9912,1.7249,5.0057,5.3651,1.6622,13.2312,4.0179,1.5249,13.0471,4.7295,0.8513,13.1053,4.7642,1.3957,12.9315,5.0722,1.9182,0.6804,1.3601,3.6157,0.6882,2.2781,1.8907,1.2329,2.1872,0.9364,1.0829,1.2983,0.9211,1.6398,2.1064,1.9359,0.2085,0.5182,3.9797,13.2761,2.6203,2.7318,13.4248,2.6097,2.5908,5.3479,5.5839,3.7858,5.8878,5.5496,2.5908,5.3479,5.5839,1.5074,5.2114,5.6236,1.2985,12.8717,5.363,0.7541,12.9923,5.0629,0.7082,12.9149,5.3393,0.7082,12.9149,5.3393,1.2238,12.8464,5.8419,1.2985,12.8717,5.363,2.0895,12.7609,5.843,0.8811,5.1324,6.2275,0.5589,5.6605,6.7861,0.5348,5.0888,6.2278,0.8811,5.1324,5.9027,1.9966,12.7579,6.684,3.3645,12.5532,6.4591,6.2921,0.7367,3.1821,3.5522,1.4078,3.0827,4.5309,8.4659,7.4582,3.6444,8.9653,8.0437,2.532,8.699,8.3056,2.7704,8.5768,8.0858,3.5789,8.8155,7.885,4.2046,8.4465,7.4282,2.0114,7.5,7.7197,2.0814,6.2678,6.9722,2.394,6.7074,7.0123,2.3718,7.6561,7.6077,2.7407,5.9023,6.7495,3.626,6.3025,6.8503,2.8481,6.3847,6.8613,4.3738,7.3676,7.0735,4.0552,7.5441,7.1386,3.4849,6.6698,6.9662,3.9766,8.4652,7.3403,3.4868,8.7561,7.725,2.8429,8.5388,7.896,2.5116,7.7879,7.4854,2.5138,7.0129,6.9809,2.8705,6.7234,6.8702,3.3812,6.9421,6.9733,3.8457,7.6916,7.1098,1.9418,-0.2589,-0.3547,1.9418,-0.7239,-1.2431,1.7994,3.3094,4.1649,1.8218,2.6777,3.7173,1.6741,3.8996,4.5224,1.3318,4.5108,4.954,0.9938,4.977,5.3613,1.7838,13.4965,2.6203,0.8811,5.1324,5.6458,1.5074,5.2114,5.6236,0.8811,5.1324,5.6458,0.5348,5.0888,5.6593,1.1618,12.8343,6.7486,1.8554,1.9421,3.0155,0.3624,9.5286,8.5096,0.3342,7.3901,7.6972,0.1001,9.5449,8.4282,0.1001,7.3957,7.6108,0.3023,5.6411,6.6907,0.659,13.8227,-1.2431,0.6298,13.8227,-0.2227,0.1001,13.826,-1.2431,0.1001,13.8261,-0.2227,0.3618,11.2804,8.4159,0.1001,11.2929,8.3681,0.4161,13.1462,4.7752,0.1001,13.1623,4.7748,0.3642,13.0351,5.0591,0.4055,1.3656,1.2162,0.1001,1.4769,1.1701,0.3469,12.9453,5.3309,0.1001,13.0519,5.0584,0.1001,12.9572,5.3305,0.3469,12.9453,5.3309,0.1001,12.8884,5.8142,0.2917,5.0581,6.202,0.1001,5.6335,6.6256,0.1001,5.0461,6.1826,-2.9157,7.8661,7.196,-3.1023,7.2516,6.9792,-2.7216,7.1425,6.9304,-2.4613,7.3015,7.0545,-2.4772,7.8673,7.3493,-2.7256,8.3689,7.6249,-3.1412,8.5265,7.5124,-3.485,8.3178,7.306,-3.3856,7.8017,7.0936,-0.2111,0.2112,-0.3804,-0.2097,0.845,0.4501,-0.746,0.5824,0.4839,-0.7493,0.0173,-0.3698,-0.2111,-0.4792,-1.2431,-0.7493,-0.5801,-1.2431,-16.1186,4.7891,-0.2227,-16.2237,2.437,-1.2431,-16.2237,2.437,-0.2227,-16.0772,2.4766,0.7834,-15.9767,4.8005,0.7822,-15.5776,7.2689,-0.2227,-16.1186,4.7891,-1.2431,-15.5776,7.2689,-1.2431,-10.6692,12.3745,-1.2431,-13.3109,11.2331,-0.2227,-10.6692,12.3745,-0.2227,-13.2086,11.1683,0.7945,-10.591,12.3038,0.8368,-7.9356,13.0433,-0.2227,-7.9372,13.0431,-1.2431,-12.4362,5.2754,4.1905,-10.3247,3.6319,4.6273,-10.3406,5.5649,4.853,-8.101,5.9703,5.3195,-7.4881,3.8792,4.9684,-10.3077,7.5446,4.8695,-12.2588,7.2436,4.1174,-12.3169,-1.4607,-1.2431,-9.5581,-1.6737,-0.2371,-12.3169,-1.4607,-0.2227,-12.2437,-1.343,0.7824,-9.5207,-1.5175,0.7529,-14.3228,-0.5841,0.7833,-14.4339,-0.6832,-0.2227,-14.4339,-0.6832,-1.2431,-3.6736,13.6745,-1.2196,-4.9169,13.5463,-0.2095,-3.6829,13.6753,-0.17,-3.7117,13.5759,1.0524,-4.9563,13.4391,1.0019,-2.5792,13.7634,-0.1436,-2.5642,13.7629,-1.2079,-4.6468,10.6358,7.0315,-3.4349,9.5358,8.0483,-3.3026,10.8568,7.746,-1.8225,11.0908,8.2929,-1.8089,9.3386,8.6074,-3.1711,12.1291,7.1964,-4.1741,11.6413,6.8304,-0.163,4.5227,4.4967,-0.1762,4.1134,4.0864,-0.6223,4.2567,4.5139,-0.6701,3.7459,4.1368,-0.1817,3.5367,3.5701,-14.7943,9.4741,-0.2227,-15.4477,7.2531,0.781,-14.6763,9.4302,0.7805,-13.3109,11.2331,-1.2431,-14.7943,9.4741,-1.2431,-14.5063,1.2499,2.6514,-15.6375,2.5956,1.7612,-15.1554,0.8982,1.7625,-15.5632,0.6854,0.7837,-13.9893,-0.2871,1.7609,-13.4823,0.2032,2.6262,-11.8068,8.686,3.9333,-9.9527,9.0311,4.6027,-8.2353,7.9591,5.4203,-7.9785,9.5791,5.137,-9.6414,10.1532,4.1661,-11.1605,9.6415,3.7986,-8.2176,2.3498,4.3922,-10.5334,2.2854,4.2668,-12.4436,3.379,4.1362,-12.3855,2.1522,3.9384,-10.8837,1.2767,3.8056,-8.7035,1.2374,3.8515,-0.1317,4.8188,4.9297,-0.1015,4.9983,5.3378,-0.3753,4.9895,5.3571,-0.4976,4.6917,4.948,-5.33,5.0309,5.2649,-6.2314,6.5339,5.4541,-4.9679,7.016,5.4608,-4.0217,5.6735,5.415,-6.569,8.4003,5.5314,-6.4302,10.0819,5.3582,-5.4716,8.7411,5.4803,-5.4287,10.4421,5.4336,-6.1728,11.3942,5.0074,-7.6483,10.8336,4.648,-3.6245,12.7146,4.8185,-4.8606,11.9979,5.2953,-3.4225,12.5935,5.2057,-2.2961,12.9305,4.7285,-2.1359,12.812,5.1115,-2.4414,13.1318,3.9839,-3.7844,12.9357,4.0402,-5.0105,12.4413,4.8196,-5.1557,12.7315,4.0222,-9.4084,-1.1273,1.7107,-6.3486,-1.0339,0.667,-6.292,-0.6167,1.5818,-3.497,-0.317,0.5727,-3.4651,0.1249,1.4413,-6.2043,-0.0263,2.4313,-9.2372,-0.5239,2.5698,-15.5509,4.8347,1.7565,-14.9127,2.7957,2.6711,-14.8478,4.9136,2.6638,-15.0581,7.2057,1.7515,-14.4241,7.1584,2.6412,-10.3563,12.0917,1.9747,-7.8925,12.9677,0.8929,-12.9017,10.974,1.8057,-12.4304,10.6184,2.6941,-10.0457,11.6873,2.9879,-7.7664,12.7406,2.1991,-7.6317,12.3356,3.3828,-12.0239,-0.9898,1.757,-11.6946,-0.4177,2.6169,-0.3427,13.5454,2.6415,0.1001,13.7579,1.0035,-0.3933,13.7534,1.0035,-0.8743,13.5252,2.6362,-0.9597,13.742,1.0157,-0.7683,13.2757,4.0772,-0.2822,13.3069,4.0969,0.1001,13.5534,2.6415,0.1001,13.3192,4.0968,-14.322,9.2987,1.7496,-13.7541,9.0844,2.6149,-15.6992,0.6145,-0.2227,-15.6992,0.6145,-1.2431,-0.0914,5.0581,5.6732,-0.0914,5.0581,5.9549,-0.0914,5.0581,5.6732,-0.3346,5.0888,5.9258,-0.3346,5.0888,5.6593,-0.3346,5.0888,5.6593,-4.5467,7.1767,5.5437,-3.5856,5.8878,5.5496,-4.5467,7.1767,5.5437,-3.5856,5.8878,5.7702,-4.5467,7.1767,5.7965,-5.1058,8.8548,5.5446,-5.1058,8.8548,5.5446,-5.0949,10.5622,5.5308,-5.0949,10.5622,5.785,-5.1058,8.8548,5.8233,-5.0949,10.5622,5.5308,-4.4798,11.921,5.7513,-4.4984,11.921,5.5005,-4.4984,11.921,5.5005,-3.301,12.5532,5.452,-3.301,12.5532,5.452,-3.2263,12.5532,5.7918,-2.0014,12.7672,5.401,-3.5856,5.8878,6.1783,-2.3906,5.3479,5.81,-2.3906,5.3479,6.1657,-1.3072,5.2114,5.8695,-1.3072,5.2114,6.2054,-2.4281,5.4865,6.5219,-3.5456,5.9914,6.5972,-4.5467,7.1767,6.3131,-4.4534,7.2244,6.8275,-5.1058,8.8548,6.4157,-4.8493,8.8936,7.2394,-4.4643,11.921,6.2747,-5.0949,10.5622,6.3315,0.1001,12.8554,6.7329,-0.1467,12.8825,5.8143,-0.1467,12.8524,6.7329,-0.4893,12.8676,5.8213,-0.4738,12.845,6.7368,-0.1504,12.4526,7.7218,0.1001,12.4573,7.7098,-6.1546,12.1525,4.5519,-6.2199,12.6075,3.7653,-7.5625,11.7261,4.1312,-0.1899,2.7385,2.8189,-0.6826,3.1286,3.6635,-0.7012,2.3742,2.9407,-0.1986,1.9408,1.9839,-12.8508,0.8817,3.2954,-13.6464,1.7375,3.3883,-13.9105,3.0785,3.4734,-9.7399,11.0399,3.6731,-11.8347,10.0698,3.3431,-9.0228,0.2719,3.2637,-11.2927,0.3567,3.2777,-12.112,1.4292,3.6916,-13.8741,5.0594,3.4679,-13.561,7.1429,3.4022,-12.9948,8.7919,3.3067,-5.0868,13.1158,2.5811,-6.2128,13.0096,2.4209,-6.1821,13.2913,0.9484,-6.1763,13.3847,-0.2227,-4.9229,13.5453,-1.2372,-6.183,13.3841,-1.2431,-0.9691,9.4287,8.6396,-1.3365,7.3797,7.8052,-0.8542,7.3552,7.8483,-0.7242,5.6881,6.8121,-1.3287,5.6289,6.7368,-0.4311,7.3757,7.8214,-0.495,9.4874,8.6235,-6.3674,-1.2772,-0.28,-3.5077,-0.9839,-1.2431,-3.5077,-0.6721,-0.3273,-6.3674,-1.4337,-1.2431,-9.5581,-1.7128,-1.2431,-1.7105,13.802,-0.17,-1.6721,13.7258,1.0524,-2.5748,13.679,1.0769,-1.0146,13.8142,-0.2095,-1.7237,13.8018,-1.2196,-1.0544,13.8141,-1.2372,-0.9668,11.2034,8.4897,-1.7612,12.3404,7.6064,-0.4937,11.2486,8.4822,-0.9351,12.4238,7.7441,-0.4718,12.4407,7.7393,-5.5658,2.5581,4.3332,-3.2698,2.1763,3.7601,-3.1642,2.886,4.2154,-4.9181,3.5144,4.7504,-2.8588,3.6019,4.5815,-5.898,1.6167,3.8206,-3.7776,4.439,5.1027,-2.1771,4.3889,4.9912,-2.7373,5.1207,5.383,-1.5247,5.0057,5.3651,-1.462,13.2312,4.0179,-1.3247,13.0471,4.7295,-1.1955,12.9315,5.0722,-0.6511,13.1053,4.7642,-1.718,0.6804,1.3601,-3.4155,0.6882,2.2781,-1.7357,0.2085,0.5182,-0.7362,1.0829,1.2983,-1.6904,1.2329,2.1872,-0.7209,1.6398,2.1064,-3.7795,13.2761,2.6203,-2.5316,13.4248,2.6097,-2.3906,5.3479,5.5839,-1.3072,5.2114,5.6236,-1.3072,5.2114,5.6236,-2.3906,5.3479,5.5839,-3.5856,5.8878,5.5496,-2.0014,12.7672,5.401,-1.0983,12.8717,5.363,-1.0983,12.8717,5.363,-1.8893,12.7609,5.843,-1.0236,12.8464,5.8419,-0.508,12.9149,5.3393,-0.5539,12.9923,5.0629,-0.6808,5.1324,6.2275,-0.6808,5.1324,5.9027,-0.3346,5.0888,6.2278,-0.3587,5.6605,6.7861,-1.7963,12.7579,6.684,-3.1643,12.5532,6.4591,-6.0919,0.7367,3.1821,-3.352,1.4078,3.0827,-4.3307,8.4659,7.4582,-3.4442,8.9653,8.0437,-4.0044,8.4465,7.4282,-3.3786,8.8155,7.885,-2.5702,8.5768,8.0858,-2.3317,8.699,8.3056,-1.8112,7.5,7.7197,-2.1716,7.6561,7.6077,-2.1938,6.7074,7.0123,-1.8812,6.2678,6.9722,-2.5405,5.9023,6.7495,-2.6479,6.3847,6.8613,-3.4258,6.3025,6.8503,-4.1735,7.3676,7.0735,-3.2847,6.6698,6.9662,-3.8549,7.5441,7.1386,-3.7764,8.4652,7.3403,-3.2866,8.7561,7.725,-2.6427,8.5388,7.896,-2.3114,7.7879,7.4854,-2.3136,7.0129,6.9809,-2.6703,6.7234,6.8702,-3.181,6.9421,6.9733,-3.6455,7.6916,7.1098,-1.7416,-0.2589,-0.3547,-1.7416,-0.7239,-1.2431,-1.5992,3.3094,4.1649,-1.4739,3.8996,4.5224,-1.6216,2.6777,3.7173,-1.1316,4.5108,4.954,-0.7935,4.977,5.3613,-1.5836,13.4965,2.6203,-0.6808,5.1324,5.6458,-0.6808,5.1324,5.6458,-0.9616,12.8343,6.7486,-1.6552,1.9421,3.0155,-0.1621,9.5286,8.5096,-0.134,7.3901,7.6972,-0.1021,5.6411,6.6907,-0.4588,13.8227,-1.2431,-0.4296,13.8227,-0.2227,0.1001,13.8261,-0.2227,0.1001,13.826,-1.2431,-0.1616,11.2804,8.4159,-0.2159,13.1462,4.7752,-0.164,13.0351,5.0591,0.1001,13.1623,4.7748,-0.2053,1.3656,1.2162,-0.508,12.9149,5.3393,-0.1467,12.9453,5.3309,-0.1467,12.9453,5.3309,0.1001,12.8884,5.8142,0.1001,12.9572,5.3305,0.1001,13.0519,5.0584,-0.0914,5.0581,6.202,0.1001,12.9572,5.3305,0.1001,12.9572,5.3305],"itemSize":3,"type":"Float32Array"}},"index":{"array":[0,1,2,0,3,4,0,5,6,0,7,8,9,10,11,12,11,13,9,14,15,16,15,17,18,19,20,18,21,22,22,23,18,18,24,25,26,27,28,28,29,30,30,31,28,28,32,26,33,34,35,35,36,37,37,38,35,33,38,39,40,41,42,42,43,44,42,45,46,40,46,47,48,49,50,50,51,52,52,53,50,48,53,54,55,56,57,57,58,59,59,60,57,55,60,61,62,63,64,64,65,66,66,67,64,64,68,62,22,69,70,70,71,26,26,72,70,70,73,22,74,75,76,77,75,78,76,45,79,76,24,74,37,80,81,81,82,83,83,84,81,81,85,37,33,86,87,87,88,89,89,90,87,87,91,33,92,93,62,94,62,68,92,95,96,97,96,98,99,38,100,100,85,101,101,102,100,99,102,103,101,84,104,104,105,106,106,107,104,104,108,101,109,110,111,112,111,113,109,114,115,116,115,117,118,119,120,120,121,122,122,123,120,120,124,118,125,73,126,127,126,128,125,129,74,23,74,24,130,131,132,133,132,134,130,135,136,31,136,32,46,77,137,137,78,138,138,119,137,137,47,46,139,140,141,142,141,143,139,144,145,146,145,147,148,32,136,149,136,135,148,128,126,72,126,73,79,44,150,151,44,43,151,25,150,79,25,24,152,96,153,154,96,95,155,156,157,158,157,159,160,103,102,160,108,161,162,163,164,164,165,166,161,107,167,167,110,168,169,170,171,162,171,172,168,116,173,173,117,174,175,176,177,177,170,178,179,180,181,182,180,183,182,184,181,181,185,179,186,172,187,188,187,189,186,183,180,163,180,165,171,190,191,56,190,58,191,189,187,191,172,171,192,193,194,194,195,196,196,197,194,194,198,192,199,113,111,199,110,106,106,200,199,201,200,134,66,202,203,203,204,205,205,206,203,203,207,66,90,208,209,209,78,75,209,129,210,90,210,91,211,82,212,133,212,135,211,134,200,211,105,83,89,213,214,214,121,138,138,208,214,214,215,89,216,91,210,127,210,129,216,128,217,34,217,36,218,36,217,149,217,128,218,135,212,80,212,82,219,201,220,220,134,132,132,221,220,220,54,219,222,54,221,222,131,30,30,223,222,222,224,48,225,226,227,228,226,229,228,230,227,225,230,231,232,233,234,40,234,235,232,47,118,236,118,124,237,51,238,239,238,240,237,147,241,52,241,242,243,244,245,246,245,247,243,229,226,60,226,61,248,249,250,86,250,88,248,39,251,252,251,253,254,253,251,99,251,39,254,103,255,256,255,257,115,258,259,259,144,260,260,261,259,259,117,115,262,263,264,265,264,266,262,14,267,123,267,124,268,114,112,219,112,113,268,54,53,269,53,242,270,257,255,271,255,103,272,165,179,273,179,185,174,261,274,274,275,276,277,278,279,279,280,175,281,231,230,281,282,283,281,156,284,184,284,185,285,59,286,286,58,190,190,176,286,286,280,285,287,263,122,213,122,121,287,88,250,288,250,249,289,55,290,291,55,61,290,292,293,290,294,289,291,225,295,296,225,231,295,297,298,291,298,292,296,182,299,299,183,300,300,301,299,296,301,297,300,188,302,289,188,189,289,303,302,302,304,300,305,293,306,307,293,292,307,4,306,306,3,305,308,292,298,309,298,297,308,7,6,308,5,307,310,297,301,310,304,311,311,8,310,309,8,7,311,303,312,312,294,305,312,3,2,312,1,311,313,13,314,236,314,233,313,124,267,12,267,14,315,207,316,252,316,249,315,253,317,67,317,68,318,68,317,256,317,253,318,257,319,94,319,95,145,258,320,320,114,269,269,241,320,320,147,145,321,95,319,322,319,257,323,185,284,324,284,156,325,247,245,325,244,285,285,278,325,325,198,197,326,266,264,288,264,263,326,249,316,206,316,207,228,327,328,328,329,330,330,331,328,328,282,228,239,332,333,333,334,335,335,146,333,333,147,239,336,247,196,337,196,195,336,329,327,246,327,229,260,142,338,338,143,339,339,340,338,338,275,260,341,266,205,342,205,204,341,17,15,265,15,14,276,340,343,343,344,345,346,347,192,277,192,198,283,331,348,348,349,350,350,157,348,283,157,156,351,352,353,351,354,355,351,356,357,351,358,359,360,10,16,361,16,17,360,362,363,364,363,365,366,367,368,366,369,370,370,371,366,372,371,373,374,375,376,376,377,378,378,379,376,376,380,374,381,382,383,384,382,385,384,386,383,383,387,381,388,389,390,391,389,392,390,393,394,390,395,388,396,397,398,399,397,400,399,401,398,398,402,396,403,404,405,406,404,407,406,408,405,405,409,403,63,410,411,411,412,413,413,414,411,411,65,63,415,373,371,415,416,417,417,375,415,415,418,419,420,421,422,422,369,423,422,393,424,420,424,425,426,386,427,427,428,429,429,430,427,427,431,426,432,382,433,433,434,435,435,436,433,433,437,432,438,93,97,439,97,98,438,440,441,410,441,412,384,442,443,444,442,445,444,446,443,443,428,384,429,446,447,447,448,449,449,450,447,447,451,429,452,453,454,455,454,456,452,457,458,459,458,460,461,462,463,463,464,465,465,466,463,463,467,461,468,416,370,421,370,369,468,469,470,471,470,472,473,474,378,475,378,377,473,476,477,478,477,479,424,391,480,480,392,461,461,481,480,480,425,424,482,483,484,485,484,486,482,487,488,489,488,490,491,377,417,471,417,416,491,472,492,475,492,476,394,423,493,368,423,369,368,494,493,394,494,395,439,152,495,496,158,159,497,498,499,439,500,440,501,445,502,503,504,505,505,506,503,501,448,444,449,507,508,509,506,510,511,512,513,508,453,449,454,514,515,516,512,517,517,518,516,515,456,454,519,520,521,521,522,523,523,524,521,519,524,525,526,510,505,519,505,504,526,525,527,528,527,529,530,509,531,531,510,528,531,529,403,530,403,409,532,533,534,534,535,536,536,537,534,534,538,532,539,460,540,541,540,479,541,450,539,539,453,459,202,414,542,542,543,544,544,545,542,542,204,202,546,435,547,548,435,434,547,469,420,547,425,546,549,431,430,549,451,541,549,479,477,550,477,476,551,436,552,552,553,546,546,481,552,552,467,551,554,434,381,555,381,387,554,472,470,548,470,469,556,387,426,550,426,431,556,476,492,555,492,472,540,557,558,558,400,559,559,478,558,558,479,540,560,400,397,560,561,562,562,379,560,560,474,559,563,564,565,566,564,567,566,568,565,563,568,569,570,571,572,462,572,464,570,392,389,573,389,574,575,402,401,576,401,577,575,486,578,579,578,580,581,582,406,563,406,407,581,569,583,584,583,585,586,587,588,589,588,590,586,385,432,591,432,437,592,590,593,594,593,595,592,445,442,589,442,385,596,455,597,597,456,598,598,599,597,597,487,596,600,601,465,602,465,464,600,362,603,604,603,605,606,457,607,399,607,577,606,400,557,458,557,460,608,595,609,520,610,522,611,504,612,594,502,445,598,613,614,615,616,617,617,618,615,614,619,598,620,567,523,621,523,522,620,498,622,620,623,566,408,624,625,625,616,517,517,530,625,625,409,408,626,601,627,591,627,587,626,437,551,466,551,467,404,628,629,629,630,631,629,632,633,404,633,407,564,633,634,635,633,632,634,636,637,564,637,567,524,637,638,639,637,636,639,640,638,638,525,524,527,640,641,641,642,643,643,628,641,527,628,529,631,644,645,645,358,357,357,646,645,631,646,632,647,632,646,647,356,355,647,354,648,635,648,636,649,636,648,353,648,354,353,650,649,649,642,639,643,650,651,651,352,359,651,358,644,651,630,643,652,365,363,602,363,362,652,464,572,653,572,571,654,543,413,655,413,412,654,590,588,656,588,587,657,412,441,658,441,440,657,595,593,655,593,590,596,485,659,659,486,576,576,607,659,659,457,596,660,440,500,621,499,498,661,522,610,658,609,595,662,585,536,662,535,617,617,624,662,662,582,584,663,605,544,656,544,543,663,587,627,604,627,601,664,568,665,665,623,666,666,330,665,665,329,664,667,578,668,668,486,484,484,669,668,668,670,667,671,585,583,664,583,569,671,329,337,537,337,538,488,599,672,672,619,673,673,674,672,672,490,488,675,605,603,361,603,362,675,17,342,545,342,204,673,676,677,533,618,535,678,679,680,677,681,673,666,622,682,496,622,498,496,350,682,682,349,666,0,8,1,0,2,3,0,4,5,0,6,7,9,16,10,12,9,11,9,12,14,16,9,15,18,25,19,18,20,21,22,73,23,18,23,24,26,71,27,28,27,29,30,131,31,28,31,32,33,91,34,35,34,36,37,85,38,33,35,38,40,235,41,42,41,43,42,44,45,40,42,46,48,224,49,50,49,51,52,242,53,48,50,53,55,189,56,57,56,58,59,244,60,55,57,60,62,93,63,64,63,65,66,207,67,64,67,68,22,21,69,70,69,71,26,32,72,70,72,73,74,129,75,77,76,75,76,77,45,76,79,24,37,36,80,81,80,82,83,105,84,81,84,85,33,39,86,87,86,88,89,215,90,87,90,91,92,97,93,94,92,62,92,94,95,97,92,96,99,39,38,100,38,85,101,108,102,99,100,102,101,85,84,104,84,105,106,110,107,104,107,108,109,116,110,112,109,111,109,112,114,116,109,115,118,47,119,120,119,121,122,263,123,120,123,124,125,23,73,127,125,126,125,127,129,23,125,74,130,31,131,133,130,132,130,133,135,31,130,136,46,45,77,137,77,78,138,121,119,137,119,47,139,146,140,142,139,141,139,142,144,146,139,145,148,72,32,149,148,136,148,149,128,72,148,126,79,45,44,151,150,44,151,19,25,79,150,25,152,98,96,154,153,96,155,324,156,158,155,157,160,271,103,160,102,108,162,172,163,164,163,165,161,108,107,167,107,110,169,178,170,162,169,171,168,110,116,173,116,117,175,280,176,177,176,170,179,165,180,182,181,180,182,231,184,181,184,185,186,163,172,188,186,187,186,188,183,163,186,180,171,170,190,56,191,190,191,56,189,191,187,172,192,347,193,194,193,195,196,247,197,194,197,198,199,201,113,199,111,110,106,105,200,201,199,200,66,65,202,203,202,204,205,266,206,203,206,207,90,215,208,209,208,78,209,75,129,90,209,210,211,83,82,133,211,212,211,133,134,211,200,105,89,88,213,214,213,121,138,78,208,214,208,215,216,34,91,127,216,210,216,127,128,34,216,217,218,80,36,149,218,217,218,149,135,80,218,212,219,113,201,220,201,134,132,131,221,220,221,54,222,48,54,222,221,131,30,29,223,222,223,224,225,61,226,228,227,226,228,282,230,225,227,230,232,236,233,40,232,234,232,40,47,236,232,118,237,52,51,239,237,238,237,239,147,52,237,241,243,60,244,246,243,245,243,246,229,60,243,226,248,252,249,86,248,250,248,86,39,252,248,251,254,256,253,99,254,251,254,99,103,256,254,255,115,114,258,259,258,144,260,275,261,259,261,117,262,123,263,265,262,264,262,265,14,123,262,267,268,269,114,219,268,112,268,219,54,269,268,53,270,322,257,271,270,255,272,166,165,273,272,179,174,117,261,274,261,275,277,198,278,279,278,280,281,184,231,281,230,282,281,283,156,184,281,284,285,244,59,286,59,58,190,170,176,286,176,280,287,288,263,213,287,122,287,213,88,288,287,250,289,189,55,291,290,55,290,291,292,290,293,294,291,61,225,296,295,225,295,296,297,291,295,298,296,231,182,299,182,183,300,304,301,296,299,301,300,183,188,289,302,188,289,294,303,302,303,304,305,294,293,307,306,293,307,5,4,306,4,3,308,307,292,309,308,298,308,309,7,308,6,5,310,309,297,310,301,304,311,1,8,309,310,8,311,304,303,312,303,294,312,305,3,312,2,1,313,12,13,236,313,314,313,236,124,12,313,267,315,67,207,252,315,316,315,252,253,67,315,317,318,94,68,256,318,317,318,256,257,94,318,319,145,144,258,320,258,114,269,242,241,320,241,147,321,154,95,322,321,319,323,273,185,324,323,284,325,197,247,325,245,244,285,280,278,325,278,198,326,206,266,288,326,264,326,288,249,206,326,316,228,229,327,328,327,329,330,349,331,328,331,282,239,240,332,333,332,334,335,140,146,333,146,147,336,246,247,337,336,196,336,337,329,246,336,327,260,144,142,338,142,143,339,344,340,338,340,275,341,265,266,342,341,205,341,342,17,265,341,15,276,275,340,343,340,344,346,683,347,277,346,192,283,282,331,348,331,349,350,159,157,283,348,157,351,359,352,351,353,354,351,355,356,351,357,358,360,364,10,361,360,16,360,361,362,364,360,363,366,372,367,366,368,369,370,416,371,372,366,371,374,418,375,376,375,377,378,474,379,376,379,380,381,434,382,384,383,382,384,428,386,383,386,387,388,574,389,391,390,389,390,391,393,390,394,395,396,561,397,399,398,397,399,577,401,398,401,402,403,529,404,406,405,404,406,582,408,405,408,409,63,93,410,411,410,412,413,543,414,411,414,65,415,419,373,415,371,416,417,377,375,415,375,418,420,469,421,422,421,369,422,423,393,420,422,424,426,387,386,427,386,428,429,451,430,427,430,431,432,385,382,433,382,434,435,553,436,433,436,437,438,410,93,439,438,97,438,439,440,410,438,441,384,385,442,444,443,442,444,448,446,443,446,428,429,428,446,447,446,448,449,453,450,447,450,451,452,459,453,455,452,454,452,455,457,459,452,458,461,392,462,463,462,464,465,601,466,463,466,467,468,471,416,421,468,370,468,421,469,471,468,470,473,478,474,475,473,378,473,475,476,478,473,477,424,393,391,480,391,392,461,467,481,480,481,425,482,489,483,485,482,484,482,485,487,489,482,488,491,475,377,471,491,417,491,471,472,475,491,492,394,393,423,368,493,423,368,367,494,394,493,494,439,98,152,496,497,158,497,496,498,439,495,500,501,444,445,503,612,504,505,510,506,501,507,448,449,448,507,509,511,506,511,509,512,508,514,453,454,453,514,516,513,512,517,616,518,515,613,456,519,504,520,521,520,522,523,567,524,519,521,524,526,528,510,519,526,505,526,519,525,528,526,527,530,512,509,531,509,510,531,528,529,530,531,403,532,679,533,534,533,535,536,585,537,534,537,538,539,459,460,541,539,540,541,451,450,539,450,453,202,65,414,542,414,543,544,605,545,542,545,204,546,553,435,548,547,435,547,548,469,547,420,425,549,550,431,549,430,451,549,541,479,550,549,477,551,437,436,552,436,553,546,425,481,552,481,467,554,548,434,555,554,381,554,555,472,548,554,470,556,555,387,550,556,426,556,550,476,555,556,492,540,460,557,558,557,400,559,474,478,558,478,479,560,559,400,560,397,561,562,380,379,560,379,474,563,407,564,566,565,564,566,623,568,563,565,568,570,573,571,462,570,572,570,462,392,573,570,389,575,579,402,576,575,401,575,576,486,579,575,578,581,584,582,563,581,406,581,563,569,584,581,583,586,591,587,589,586,588,586,589,385,591,586,432,592,589,590,594,592,593,592,594,445,589,592,442,596,457,455,597,455,456,598,619,599,597,599,487,600,604,601,602,600,465,600,602,362,604,600,603,606,458,457,399,606,607,606,399,400,458,606,557,608,594,595,520,611,610,611,520,504,594,608,502,598,456,613,615,518,616,617,535,618,614,676,619,620,566,567,621,620,523,620,621,498,620,622,623,408,582,624,625,624,616,517,512,530,625,530,409,626,466,601,591,626,627,626,591,437,466,626,551,404,529,628,629,628,630,629,631,632,404,629,633,564,407,633,635,634,633,634,635,636,564,634,637,524,567,637,639,638,637,639,642,640,638,640,525,527,525,640,641,640,642,643,630,628,527,641,628,631,630,644,645,644,358,357,356,646,631,645,646,647,635,632,647,646,356,647,355,354,635,647,648,649,639,636,353,649,648,353,352,650,649,650,642,643,642,650,651,650,352,651,359,358,651,644,630,652,653,365,602,652,363,652,602,464,653,652,572,654,656,543,655,654,413,654,655,590,656,654,588,657,655,412,658,657,441,657,658,595,655,657,593,596,487,485,659,485,486,576,577,607,659,607,457,660,658,440,621,661,499,661,621,522,658,660,609,662,584,585,662,536,535,617,616,624,662,624,582,663,604,605,656,663,544,663,656,587,604,663,627,664,569,568,665,568,623,666,349,330,665,330,329,667,580,578,668,578,486,484,483,669,668,669,670,671,537,585,664,671,583,671,664,329,537,671,337,488,487,599,672,599,619,673,681,674,672,674,490,675,545,605,361,675,603,675,361,17,545,675,342,673,619,676,533,678,618,678,533,679,677,684,681,666,623,622,496,682,622,496,159,350,682,350,349],"itemSize":1,"type":"Uint16Array"},"groups":[{"count":3696,"materialIndex":0,"start":0}]},"metadata":{"normal":685,"generator":"io_three","version":3,"uv":685,"position":685,"type":"BufferGeometry"}} \ No newline at end of file diff --git a/filters/dog/models/dog/dog_tongue.jpg b/filters/dog/models/dog/dog_tongue.jpg new file mode 100644 index 0000000..47c6389 Binary files /dev/null and b/filters/dog/models/dog/dog_tongue.jpg differ diff --git a/filters/dog/models/dog/dog_tongue.json b/filters/dog/models/dog/dog_tongue.json new file mode 100644 index 0000000..8b997e8 --- /dev/null +++ b/filters/dog/models/dog/dog_tongue.json @@ -0,0 +1 @@ +{"vertices":[-0.0611,-0.25,0.2087,0.0611,-0.25,0.2087,-0.0453,-0.0364,0.0536,0.0453,-0.0364,0.0536,-0.0611,-0.2521,0.216,0.0611,-0.2521,0.216,-0.0453,-0.0235,0.0541,0.0453,-0.0235,0.0541,-0.0803,-0.168,0.1971,0.0803,-0.1647,0.2045,-0.0172,-0.0373,0.0536,-0.0234,-0.2716,0.2076,-0.0234,-0.2755,0.2153,-0.0172,-0.0234,0.0541,0.0555,-0.0515,0.1211,0.0645,-0.075,0.1499,0.0738,-0.1077,0.174,-0.0555,-0.0396,0.1236,-0.0645,-0.0649,0.154,-0.0738,-0.1,0.1797,-0.0738,-0.1077,0.174,-0.0645,-0.075,0.1499,-0.0555,-0.0515,0.1211,0.0738,-0.1,0.1797,0.0645,-0.0649,0.154,0.0555,-0.0396,0.1236,0.0185,-0.0547,0.1242,0.0195,-0.0827,0.1551,-0.0206,-0.1219,0.1802,-0.0185,-0.0421,0.1272,-0.0195,-0.0722,0.16,0.0206,-0.1147,0.187,-0.0758,-0.2108,0.2054,0.0758,-0.2104,0.2134,0.0758,-0.2108,0.2054,-0.0758,-0.2104,0.2134,-0.0215,-0.232,0.207,0.0215,-0.2333,0.2159,0.0172,-0.0373,0.0536,0.0234,-0.2716,0.2076,0.0234,-0.2755,0.2153,0.0172,-0.0234,0.0541,0.0213,-0.1902,0.2016,-0.0213,-0.1883,0.2101,-0.0185,-0.0547,0.1242,-0.0195,-0.0827,0.1551,0.0206,-0.1219,0.1802,0.0185,-0.0421,0.1272,0.0195,-0.0722,0.16,-0.0206,-0.1147,0.187,0.0215,-0.232,0.207,-0.0215,-0.2333,0.2159,0,-0.0373,0.0536,0,-0.2758,0.2071,0,-0.2789,0.2127,-0,-0.0271,0.054,0,-0.0551,0.1247,0,-0.0838,0.156,0,-0.1242,0.1813,0,-0.0459,0.1269,0,-0.0763,0.1596,0,-0.1191,0.1864,0,-0.2357,0.2074,0,-0.2369,0.2139,0.0663,-0.2568,0.2126,-0.0663,-0.2568,0.2126,0.0512,-0.03,0.0539,-0.0512,-0.03,0.0539,-0.0927,-0.164,0.2003,-0.0244,-0.2845,0.2106,-0.0849,-0.1014,0.1755,-0.0739,-0.0678,0.15,-0.0633,-0.0441,0.12,0.0633,-0.0441,0.12,0.0739,-0.0678,0.15,0.0849,-0.1014,0.1755,0.0871,-0.2099,0.2094,-0.0871,-0.2099,0.2094,0.0244,-0.2845,0.2106,0,-0.2883,0.2088,0.0501,-0.0396,0.0882,-0.0501,-0.0269,0.0892,-0.0178,-0.041,0.0898,0.0178,-0.0273,0.091,-0.0501,-0.0396,0.0882,0.0501,-0.0269,0.0892,0.0178,-0.041,0.0898,-0.0178,-0.0273,0.091,0,-0.041,0.0901,-0,-0.031,0.0909,-0.0569,-0.033,0.0874,0.0569,-0.033,0.0874,0.0803,-0.168,0.1971,-0.0803,-0.1647,0.2045,-0.0213,-0.1902,0.2016,0.0213,-0.1883,0.2101,0,-0.1938,0.2025,0,-0.1927,0.2087,0.0927,-0.164,0.2003,-0.0468,-0.2433,0.2072,-0.0468,-0.2457,0.2166,-0.0449,-0.2707,0.2097,0.0785,-0.2328,0.2094,-0.0674,-0.0581,0.135,-0.0453,-0.0968,0.1655,0.0453,-0.087,0.1716,0.0786,-0.087,0.1625,-0.0899,-0.1854,0.2028,0.0507,-0.199,0.2028,0.0468,-0.2457,0.2166,0.0449,-0.2707,0.2097,0.04,-0.0649,0.138,-0.04,-0.0525,0.1421,-0.0882,-0.1195,0.1825,-0.0786,-0.087,0.1625,-0.059,-0.0339,0.1051,-0.036,-0.0457,0.1062,-0.04,-0.0649,0.138,-0.0498,-0.1325,0.1852,0.036,-0.0317,0.1083,0.04,-0.0525,0.1421,0.0498,-0.1257,0.1927,0.059,-0.041,0.1041,0.0674,-0.0581,0.135,0.0882,-0.1156,0.1861,0.0498,-0.1325,0.1852,0.0453,-0.0968,0.1655,0.036,-0.0457,0.1062,-0.0498,-0.1257,0.1927,-0.0453,-0.087,0.1716,-0.036,-0.0317,0.1083,-0.0507,-0.199,0.2028,-0.0507,-0.1977,0.2118,0.0899,-0.1854,0.2028,-0.0785,-0.2328,0.2094,0.0468,-0.2433,0.2072,0.0507,-0.1977,0.2118,-0.0069,-0.2138,0.2053,-0.0085,-0.2605,0.2149,-0.0103,-0.285,0.2079,-0.0073,-0.0383,0.0719,0.0073,-0.0267,0.0727,-0.0071,-0.0677,0.1407,-0.007,-0.1035,0.1696,-0.0068,-0.144,0.1897,0.0071,-0.058,0.1442,0.007,-0.0962,0.1747,0.0068,-0.1395,0.196,-0.0085,-0.2576,0.2074,-0.0069,-0.2138,0.2126,0.0069,-0.2138,0.2053,0.0085,-0.2605,0.2149,0.0103,-0.285,0.2079,0.0073,-0.0383,0.0719,-0.0073,-0.0267,0.0727,0.0071,-0.0677,0.1407,0.007,-0.1035,0.1696,0.0068,-0.144,0.1897,-0.0071,-0.058,0.1442,-0.007,-0.0962,0.1747,-0.0068,-0.1395,0.196,0.0085,-0.2576,0.2074,0.0069,-0.2138,0.2126,-0.0449,-0.2728,0.2144,0.0785,-0.2333,0.2141,-0.0674,-0.0517,0.137,0.0786,-0.0818,0.1653,-0.0899,-0.1841,0.2072,0.0449,-0.2728,0.2144,-0.0882,-0.1156,0.1861,-0.0786,-0.0818,0.1653,-0.0534,-0.0345,0.0707,0.0534,-0.0271,0.0712,0.0674,-0.0517,0.137,0.0882,-0.1195,0.1825,0.0899,-0.1841,0.2072,-0.0785,-0.2333,0.2141,-0.0103,-0.2872,0.2116,0.0103,-0.2872,0.2116,-0.0534,-0.0271,0.0712,-0.0334,-0.0383,0.0714,0.0334,-0.0236,0.0723,0.0534,-0.0345,0.0707,0.0334,-0.0383,0.0714,-0.0334,-0.0236,0.0723,-0.0073,-0.0464,0.1076,0.0073,-0.0353,0.1094,0.0073,-0.0464,0.1076,-0.0073,-0.0353,0.1094,-0.059,-0.041,0.1041,0.059,-0.0339,0.1051,-0.0511,-0.1548,0.1929,0.0512,-0.1507,0.2013,0.091,-0.14,0.1909,-0.091,-0.14,0.1909,0.0511,-0.1548,0.1929,-0.0512,-0.1507,0.2013,0.0068,-0.1692,0.1971,-0.0068,-0.167,0.2041,-0.0068,-0.1692,0.1971,0.0068,-0.167,0.2041,0.091,-0.1373,0.1949,-0.091,-0.1373,0.1949,-0.0696,-0.2337,0.2076,-0.032,-0.0373,0.0536,0.0477,-0.0373,0.071,0.0448,-0.2613,0.2082,-0.0448,-0.2646,0.2164,0.0696,-0.235,0.2158,0.032,-0.0226,0.0542,-0.0477,-0.0245,0.0718,0.0655,-0.2543,0.2103,-0.0655,-0.2557,0.215,0.0506,-0.0336,0.0537,-0.0506,-0.0336,0.0537,-0.0775,-0.1235,0.1822,0.079,-0.1882,0.2016,0.0775,-0.1169,0.1886,-0.079,-0.1863,0.2093,-0.0513,-0.1791,0.1991,0.0513,-0.1761,0.2077,0.0915,-0.1645,0.198,0.032,-0.0373,0.0536,-0.0448,-0.2613,0.2082,0.0448,-0.2646,0.2164,-0.032,-0.0226,0.0542,0.0513,-0.1791,0.1991,-0.0513,-0.1761,0.2077,-0.0212,-0.2101,0.2047,-0.0224,-0.257,0.2163,-0.0241,-0.2812,0.2086,-0.0175,-0.0383,0.0718,0.0175,-0.0245,0.0727,0.0597,-0.0618,0.1359,0.0693,-0.091,0.1627,0.0775,-0.1235,0.1822,-0.0597,-0.0508,0.1394,-0.0693,-0.0821,0.1678,-0.0775,-0.1169,0.1886,-0.0693,-0.091,0.1627,-0.0597,-0.0618,0.1359,-0.0525,-0.0442,0.105,0.0693,-0.0821,0.1678,0.0597,-0.0508,0.1394,0.0525,-0.0319,0.1067,-0.0189,-0.067,0.14,-0.0201,-0.1018,0.1686,-0.021,-0.1411,0.1886,0.0189,-0.0554,0.1441,0.0201,-0.0929,0.1745,0.021,-0.1354,0.196,-0.0838,-0.1037,0.174,-0.073,-0.0711,0.1492,-0.0625,-0.0412,0.1214,-0.0377,-0.0536,0.1227,-0.0427,-0.0793,0.1524,-0.0478,-0.1151,0.1769,0.0377,-0.0402,0.1257,0.0427,-0.068,0.1574,0.0478,-0.1069,0.1838,0.0625,-0.0479,0.12,0.073,-0.0711,0.1492,0.0838,-0.0992,0.1772,0.0478,-0.1151,0.1769,0.0427,-0.0793,0.1524,0.0377,-0.0536,0.1227,-0.0478,-0.1069,0.1838,-0.0427,-0.068,0.1574,-0.0377,-0.0402,0.1257,-0.079,-0.1882,0.2016,0.079,-0.1863,0.2093,0.0696,-0.2337,0.2076,-0.0696,-0.235,0.2158,-0.0224,-0.2538,0.2074,-0.0212,-0.2098,0.2133,-0.0493,-0.2211,0.2059,-0.0493,-0.2216,0.2151,0.086,-0.2089,0.207,-0.086,-0.2089,0.207,0.0493,-0.2211,0.2059,0.0493,-0.2216,0.2151,0.0073,-0.0373,0.0536,0.0098,-0.2755,0.2072,0.0098,-0.279,0.2137,0.0073,-0.0256,0.054,-0.0072,-0.0551,0.1247,-0.0071,-0.0838,0.156,0.0069,-0.1242,0.1813,0.0072,-0.0445,0.1272,0.0071,-0.0752,0.1602,-0.0069,-0.1183,0.1871,0.0074,-0.2357,0.2074,-0.0074,-0.237,0.2148,0.0212,-0.2101,0.2047,0.0224,-0.257,0.2163,0.0241,-0.2812,0.2086,0.0175,-0.0383,0.0718,-0.0175,-0.0245,0.0727,0.0189,-0.067,0.14,0.0201,-0.1018,0.1686,0.021,-0.1411,0.1886,-0.0189,-0.0554,0.1441,-0.0201,-0.0929,0.1745,-0.021,-0.1354,0.196,0.0224,-0.2538,0.2074,0.0212,-0.2098,0.2133,-0.0073,-0.0373,0.0536,-0.0098,-0.2755,0.2072,-0.0098,-0.279,0.2137,-0.0073,-0.0256,0.054,0.0072,-0.0551,0.1247,0.0071,-0.0838,0.156,-0.0069,-0.1242,0.1813,-0.0072,-0.0445,0.1272,-0.0071,-0.0752,0.1602,0.0069,-0.1183,0.1871,-0.0074,-0.2357,0.2074,0.0074,-0.237,0.2148,0,-0.2138,0.2053,0,-0.2604,0.2139,0,-0.2852,0.2076,0,-0.0383,0.0719,-0,-0.0282,0.0726,0,-0.0677,0.1407,0,-0.1035,0.1696,0,-0.144,0.1897,0,-0.0593,0.1437,0,-0.0971,0.174,0,-0.14,0.1952,0,-0.2578,0.2074,0,-0.2138,0.2116,0.0655,-0.2557,0.215,-0.0655,-0.2543,0.2103,0.0506,-0.0263,0.054,-0.0506,-0.0263,0.054,0.0915,-0.1623,0.2022,-0.0241,-0.2836,0.2131,-0.0838,-0.0992,0.1772,-0.073,-0.0652,0.1516,-0.0625,-0.0479,0.12,0.0625,-0.0412,0.1214,0.073,-0.0652,0.1516,0.0838,-0.1037,0.174,0.086,-0.2085,0.2115,-0.086,-0.2085,0.2115,0.0241,-0.2836,0.2131,0,-0.2872,0.2108,-0.0455,-0.2737,0.2119,0.0795,-0.2346,0.2118,-0.0683,-0.0544,0.1354,0.0796,-0.0842,0.1636,-0.0911,-0.1856,0.2052,0.0455,-0.2737,0.2119,-0.0893,-0.1177,0.1844,-0.0796,-0.0842,0.1636,-0.0541,-0.0308,0.0707,0.0541,-0.0308,0.0707,0.0683,-0.0544,0.1354,0.0893,-0.1177,0.1844,0.0911,-0.1856,0.2052,-0.0795,-0.2346,0.2118,-0.0105,-0.2882,0.2094,0.0105,-0.2882,0.2094,0.0525,-0.0442,0.105,-0.0525,-0.0319,0.1067,-0.0181,-0.0463,0.1073,0.0181,-0.033,0.1094,-0.0477,-0.0373,0.071,0.0477,-0.0245,0.0718,0.0181,-0.0463,0.1073,-0.0181,-0.033,0.1094,0,-0.0464,0.1076,0,-0.0368,0.1092,-0.0598,-0.0372,0.1039,0.0598,-0.0372,0.1039,-0.0562,-0.0294,0.0881,-0.0347,-0.0408,0.0891,0.0347,-0.0263,0.0903,0.0562,-0.0367,0.0875,0.0347,-0.0408,0.0891,-0.0347,-0.0263,0.0903,-0.0073,-0.041,0.0901,0.0073,-0.0296,0.0911,0.0073,-0.041,0.0901,-0.0073,-0.0296,0.0911,-0.0562,-0.0367,0.0875,0.0562,-0.0294,0.0881,-0.0798,-0.1439,0.1902,0.0798,-0.1439,0.1902,0.0799,-0.1395,0.1974,-0.0799,-0.1395,0.1974,-0.0212,-0.1656,0.1961,0.0212,-0.1627,0.2043,0.0212,-0.1656,0.1961,-0.0212,-0.1627,0.2043,0,-0.1692,0.1971,0,-0.1673,0.2032,0.0922,-0.1392,0.1931,-0.0922,-0.1392,0.1931,-0.0915,-0.1645,0.198,0.0067,-0.1938,0.2025,-0.0067,-0.1926,0.2096,-0.0067,-0.1938,0.2025,0.0067,-0.1926,0.2096,-0.0915,-0.1623,0.2022],"uvs":[[0.91,0.0935,0.9301,0.1314,0.8773,0.1093,0.8722,0.0672,0.9448,0.1844,0.8836,0.1612,0.8194,0.1367,0.8208,0.085,0.8227,0.0428,0.1129,0.1293,0.1487,0.099,0.1449,0.1432,0.0938,0.1697,0.1968,0.071,0.1999,0.1147,0.2027,0.1696,0.1399,0.1987,0.0799,0.226,0.0792,0.1027,0.118,0.0584,0.1378,0.0657,0.0902,0.1109,0.1745,0.0214,0.1885,0.0373,0.1929,0.0433,0.1442,0.0708,0.0977,0.114,0.4213,0.0977,0.454,0.1429,0.4424,0.1604,0.4106,0.1062,0.481,0.2037,0.4621,0.2193,0.4543,0.2199,0.4348,0.1619,0.4032,0.1096,0.0749,0.7436,0.0614,0.6842,0.0816,0.683,0.0936,0.7439,0.0465,0.625,0.0682,0.6226,0.077,0.6223,0.0907,0.6836,0.1029,0.7451,0.9429,0.4393,0.933,0.4922,0.8776,0.4767,0.8829,0.4209,0.9221,0.5489,0.8718,0.5363,0.8185,0.5249,0.8194,0.462,0.8201,0.4028,0.4273,0.4909,0.4186,0.5474,0.3622,0.5318,0.3664,0.472,0.4087,0.6082,0.3573,0.5958,0.303,0.5843,0.3031,0.5165,0.303,0.4528,0.4943,0.5007,0.4825,0.5583,0.4589,0.5559,0.4691,0.4988,0.4689,0.6186,0.4471,0.6168,0.4383,0.6168,0.4502,0.5552,0.4605,0.4977,0.002,0.3284,0.0077,0.2717,0.0315,0.2837,0.0281,0.3366,0.0225,0.2103,0.0418,0.2253,0.0496,0.2257,0.0395,0.2836,0.036,0.3359,0.7222,0.2348,0.6533,0.2615,0.6543,0.2148,0.7217,0.1885,0.5869,0.2877,0.5895,0.2404,0.5962,0.188,0.6569,0.1635,0.7205,0.1377,0.3029,0.0695,0.3517,0.096,0.3568,0.1401,0.301,0.1132,0.3884,0.1253,0.4086,0.1652,0.424,0.221,0.3633,0.1955,0.2997,0.1682,0.3238,0.0192,0.3813,0.0545,0.3617,0.0624,0.3102,0.0354,0.3555,0.0677,0.306,0.0415,0.6468,0.6633,0.6369,0.6063,0.6822,0.5963,0.6876,0.6563,0.6258,0.5503,0.6761,0.5372,0.7294,0.5253,0.7306,0.5879,0.7316,0.6505,0.1289,0.7354,0.1182,0.6736,0.1641,0.6626,0.1706,0.7274,0.1061,0.613,0.157,0.5988,0.2109,0.5855,0.2132,0.6529,0.2154,0.7207,0.0176,0.5077,0.0088,0.4566,0.0351,0.4563,0.0427,0.5051,0.0022,0.3961,0.0291,0.3998,0.037,0.398,0.043,0.4551,0.0513,0.5038,0.031,0.5651,0.0545,0.562,0.0632,0.5611,0.1369,0.7998,0.1205,0.8046,0.1114,0.7416,0.1431,0.8656,0.1275,0.8685,0.1192,0.87,0.1122,0.8073,0.9014,0.6627,0.8953,0.7226,0.8571,0.7178,0.8605,0.6559,0.89,0.7846,0.8543,0.7813,0.8152,0.7786,0.8158,0.7138,0.8164,0.6502,0.9112,0.6054,0.8658,0.5957,0.8174,0.5875,0.8206,0.3518,0.8872,0.3733,0.8205,0.2917,0.8895,0.3173,0.9559,0.3425,0.9511,0.3948,0.3906,0.7314,0.3846,0.7963,0.346,0.792,0.3488,0.7248,0.3798,0.8624,0.344,0.8602,0.3048,0.8577,0.3037,0.7883,0.3037,0.7196,0.3991,0.6692,0.3529,0.6598,0.3034,0.6519,0.3028,0.3982,0.3697,0.4213,0.302,0.3319,0.3712,0.3596,0.4379,0.3864,0.434,0.4436,0.4446,0.738,0.4354,0.7997,0.4183,0.8011,0.426,0.7389,0.4279,0.8634,0.4121,0.8642,0.4034,0.8657,0.4093,0.8028,0.4168,0.7404,0.4561,0.6781,0.4359,0.6776,0.4268,0.6785,0.4592,0.4495,0.4516,0.497,0.4639,0.3931,0.4719,0.3917,0.4674,0.4488,0.6036,0.4421,0.5945,0.3981,0.658,0.3753,0.6632,0.4226,0.5886,0.3461,0.6544,0.3195,0.7229,0.2925,0.7241,0.3526,0.7256,0.4034,0.6143,0.4943,0.6695,0.4781,0.7274,0.4625,0.7323,0.714,0.691,0.7182,0.7329,0.7788,0.6938,0.7816,0.6581,0.7849,0.6528,0.7229,0.0842,0.496,0.0762,0.4489,0.1398,0.4247,0.1445,0.4752,0.0707,0.3918,0.1366,0.363,0.2051,0.3333,0.206,0.3996,0.2074,0.4542,0.0945,0.5523,0.1504,0.5349,0.209,0.5178,0.2174,0.7896,0.1755,0.7943,0.2196,0.859,0.1796,0.8621,0.9527,0.2366,0.8873,0.2125,0.9563,0.2839,0.8894,0.2591,0.8199,0.2338,0.8193,0.1875,0.2041,0.2237,0.1372,0.2533,0.2045,0.273,0.136,0.3027,0.0698,0.3313,0.0727,0.2814,0.4974,0.2646,0.474,0.2773,0.505,0.3211,0.4792,0.33,0.4713,0.3295,0.4658,0.2774,0.0478,0.1487,0.0599,0.166,0.0675,0.1672,0.6097,0.1348,0.662,0.1116,0.6289,0.0964,0.6662,0.0693,0.7152,0.0439,0.718,0.0861,0.4328,0.2762,0.3676,0.25,0.4372,0.3259,0.3702,0.2993,0.3009,0.2716,0.2999,0.2223,0.7864,0.2255,0.7862,0.1793,0.771,0.2256,0.7704,0.1794,0.7699,0.1285,0.7868,0.1285,0.2277,0.0603,0.2312,0.1046,0.2497,0.0589,0.2503,0.1039,0.2511,0.1596,0.2348,0.1599,0.2162,0.007,0.2231,0.0269,0.2489,0.002,0.2492,0.0235,0.2493,0.0302,0.2252,0.0328,0.8138,0.9117,0.7911,0.9117,0.791,0.8443,0.8145,0.8447,0.7741,0.9118,0.7741,0.8443,0.774,0.7778,0.7909,0.7778,0.3053,0.9963,0.2808,0.9963,0.2807,0.9268,0.305,0.927,0.2626,0.9965,0.2626,0.927,0.2626,0.8576,0.2799,0.8573,0.7906,0.6484,0.7904,0.5847,0.774,0.6484,0.774,0.5848,0.774,0.5212,0.79,0.5211,0.7894,0.4571,0.7734,0.4572,0.7728,0.3969,0.7887,0.3968,0.788,0.3447,0.7723,0.3449,0.7716,0.2834,0.7871,0.2833,0.2767,0.718,0.2753,0.6493,0.2594,0.7183,0.2583,0.6495,0.257,0.5809,0.2736,0.5807,0.2723,0.5117,0.256,0.5121,0.2551,0.4472,0.2711,0.4468,0.27,0.3909,0.2543,0.3912,0.2534,0.3239,0.2686,0.3234,0.7889,0.0763,0.7693,0.076,0.7688,0.033,0.7912,0.0336,0.2366,0.2141,0.2519,0.2139,0.2525,0.2633,0.2375,0.2634,0.7555,0.2258,0.7547,0.1796,0.753,0.1288,0.2717,0.0597,0.2694,0.104,0.2674,0.1595,0.2816,0.0061,0.2753,0.0262,0.2733,0.0322,0.757,0.9118,0.7571,0.8443,0.7343,0.9118,0.7336,0.8448,0.7572,0.7778,0.2444,0.9967,0.2445,0.9272,0.2206,0.9969,0.2199,0.9278,0.2452,0.8578,0.7574,0.6485,0.7576,0.5849,0.7579,0.5213,0.7574,0.4573,0.757,0.397,0.7566,0.3449,0.7561,0.2835,0.2422,0.7184,0.2412,0.6497,0.2402,0.5811,0.2396,0.5122,0.2391,0.4473,0.2386,0.3914,0.2382,0.3239,0.7497,0.0767,0.7464,0.0341,0.2671,0.2136,0.2676,0.2629,0.1948,0.0505,0.148,0.0782,0.1029,0.1207,0.4475,0.2247,0.429,0.1678,0.3981,0.1165,0.0855,0.6197,0.0992,0.6802,0.4297,0.6144,0.4414,0.5536,0.0565,0.2303,0.0473,0.287,0.044,0.338,0.3519,0.0753,0.3043,0.0489,0.045,0.3992,0.0512,0.4555,0.0601,0.5028,0.0719,0.5592,0.1312,0.9957,0.1223,0.9959,0.1171,0.9323,0.126,0.9327,0.1086,0.998,0.1023,0.9331,0.0945,0.8686,0.1104,0.8689,0.4005,0.9918,0.3902,0.9925,0.39,0.9284,0.3983,0.9286,0.3745,0.9939,0.3756,0.928,0.3951,0.8646,0.4083,0.7372,0.4183,0.6754,0.4798,0.3932,0.4753,0.4498,0.5067,0.3888,0.5017,0.4494,0.4635,0.3319,0.4582,0.2811,0.0735,0.173,0.2494,0.0373,0.2259,0.0394,0.2728,0.0388,0.1493,0.9309,0.1347,0.9321,0.1546,0.9966,0.1403,0.9959,0.8845,0.8478,0.8512,0.8461,0.8789,0.9117,0.8481,0.9117,0.3419,0.9278,0.3416,0.9956,0.421,0.9271,0.4065,0.9276,0.4255,0.9914,0.4108,0.9914,0.6969,0.8462,0.7,0.9119,0.6692,0.9119,0.6636,0.848,0.1828,0.9293,0.1859,0.9969,0.774,0.7125,0.7908,0.7125,0.2602,0.7877,0.2774,0.7875,0.7573,0.7126,0.2431,0.7879,0.0859,0.805,0.1031,0.8059,0.4009,0.8005]],"bones":[{"rotq":[0,0,0,1],"parent":-1,"pos":[-0,-0.0306,0.0541],"name":"Bone001"},{"rotq":[0,0,0,1],"parent":0,"pos":[-0,-0.0006,0.0333],"name":"Bone002"},{"rotq":[0,0,0,1],"parent":1,"pos":[-0,-0.0126,0.0333],"name":"Bone003"},{"rotq":[0,0,0,1],"parent":2,"pos":[-0,-0.0249,0.0271],"name":"Bone004"},{"rotq":[0,0,0,1],"parent":3,"pos":[-0,-0.0368,0.021],"name":"Bone005"},{"rotq":[0,0,0,1],"parent":4,"pos":[-0,-0.0394,0.0139],"name":"Bone006"},{"rotq":[0,0,0,1],"parent":5,"pos":[-0,-0.0472,0.0055],"name":"Bone007"},{"rotq":[0,0,0,1],"parent":6,"pos":[0,-0.0475,-0.0042],"name":"Bone008"}],"morphTargets":[{"vertices":[-0.0611,0.0153,0.1129,0.0611,0.0153,0.1129,-0.0453,-0.0352,0.0506,0.0453,-0.0352,0.0506,-0.0611,0.0149,0.1205,0.0611,0.0149,0.1205,-0.0453,-0.0247,0.058,0.0453,-0.0247,0.058,-0.0803,0.0656,0.1613,0.0803,0.0599,0.1627,-0.0172,-0.036,0.0501,-0.0234,-0.006,0.1167,-0.0234,-0.008,0.1252,-0.0172,-0.0246,0.0581,0.0555,-0.0564,0.1207,0.0645,-0.0379,0.1573,0.0738,-0.0066,0.1873,-0.0555,-0.0466,0.1156,-0.0645,-0.0321,0.1486,-0.0738,-0.0059,0.1788,-0.0738,-0.0066,0.1873,-0.0645,-0.0379,0.1573,-0.0555,-0.0564,0.1207,0.0738,-0.0059,0.1788,0.0645,-0.0321,0.1486,0.0555,-0.0466,0.1156,0.0185,-0.0568,0.1248,0.0195,-0.0345,0.1655,-0.0206,0.0047,0.1951,-0.0185,-0.0462,0.1195,-0.0195,-0.0279,0.1567,0.0206,0.0065,0.1864,-0.0758,0.0504,0.1134,0.0758,0.0482,0.1195,0.0758,0.0504,0.1134,-0.0758,0.0482,0.1195,-0.0215,0.0342,0.1081,0.0215,0.0305,0.1142,0.0172,-0.036,0.0501,0.0234,-0.006,0.1167,0.0234,-0.008,0.1252,0.0172,-0.0246,0.0581,0.0213,0.0653,0.1449,-0.0213,0.059,0.1451,-0.0185,-0.0568,0.1248,-0.0195,-0.0345,0.1655,0.0206,0.0047,0.1951,0.0185,-0.0462,0.1195,0.0195,-0.0279,0.1567,-0.0206,0.0065,0.1864,0.0215,0.0342,0.1081,-0.0215,0.0305,0.1142,0,-0.036,0.0501,-0,-0.0101,0.1173,-0,-0.0118,0.1234,-0,-0.0276,0.0559,-0,-0.0568,0.1254,-0,-0.0339,0.1667,-0,0.0066,0.1963,-0,-0.049,0.1215,-0,-0.0291,0.1604,-0,0.008,0.1901,-0,0.0313,0.1072,-0,0.0284,0.1116,0.0663,0.0096,0.1183,-0.0663,0.0096,0.1183,0.0512,-0.0299,0.0543,-0.0512,-0.0299,0.0543,-0.0927,0.0628,0.1637,-0.0244,-0.0178,0.1226,-0.0849,-0.0084,0.1818,-0.0739,-0.0364,0.1506,-0.0633,-0.0519,0.1157,0.0633,-0.0519,0.1157,0.0739,-0.0364,0.1506,0.0849,-0.0084,0.1818,0.0871,0.0498,0.1167,-0.0871,0.0498,0.1167,0.0244,-0.0178,0.1226,-0,-0.0219,0.1218,0.0501,-0.0566,0.0809,-0.0501,-0.0455,0.0833,-0.0178,-0.058,0.0822,0.0178,-0.046,0.0849,-0.0501,-0.0566,0.0809,0.0501,-0.0455,0.0833,0.0178,-0.058,0.0822,-0.0178,-0.046,0.0849,0,-0.058,0.0824,0,-0.0493,0.0844,-0.0569,-0.0506,0.081,0.0569,-0.0506,0.081,0.0803,0.0656,0.1613,-0.0803,0.0599,0.1627,-0.0213,0.0653,0.1449,0.0213,0.059,0.1451,-0,0.0651,0.1422,-0,0.0606,0.1422,0.0927,0.0628,0.1637,-0.0468,0.0236,0.1074,-0.0468,0.0212,0.1153,-0.0449,-0.0045,0.1187,0.0785,0.0326,0.1097,-0.0674,-0.0491,0.1347,-0.0453,-0.023,0.1794,0.0453,-0.0166,0.1703,0.0786,-0.0254,0.1698,-0.0899,0.0638,0.1473,0.0507,0.0611,0.1367,0.0468,0.0212,0.1153,0.0449,-0.0045,0.1187,0.04,-0.0509,0.1414,-0.04,-0.0406,0.1347,-0.0882,0.0143,0.1947,-0.0786,-0.0254,0.1698,-0.059,-0.0499,0.0973,-0.036,-0.0606,0.0995,-0.04,-0.0509,0.1414,-0.0498,0.0242,0.1947,0.036,-0.0475,0.1002,0.04,-0.0406,0.1347,0.0498,0.0205,0.1882,0.059,-0.0564,0.0971,0.0674,-0.0491,0.1347,0.0882,0.012,0.1914,0.0498,0.0242,0.1947,0.0453,-0.023,0.1794,0.036,-0.0606,0.0995,-0.0498,0.0205,0.1882,-0.0453,-0.0166,0.1703,-0.036,-0.0475,0.1002,-0.0507,0.0611,0.1367,-0.0507,0.0544,0.1395,0.0899,0.0638,0.1473,-0.0785,0.0326,0.1097,0.0468,0.0236,0.1074,0.0507,0.0544,0.1395,-0.0069,0.0563,0.1257,-0.0085,0.0086,0.1132,-0.0103,-0.0189,0.1201,-0.0073,-0.0467,0.0649,0.0073,-0.0374,0.0718,-0.0071,-0.0505,0.145,-0.007,-0.0194,0.1861,-0.0068,0.0333,0.1932,0.0071,-0.0423,0.1399,0.007,-0.0141,0.1793,0.0068,0.031,0.1879,-0.0085,0.0113,0.107,-0.0069,0.0506,0.1271,0.0069,0.0563,0.1257,0.0085,0.0086,0.1132,0.0103,-0.0189,0.1201,0.0073,-0.0467,0.0649,-0.0073,-0.0374,0.0718,0.0071,-0.0505,0.145,0.007,-0.0194,0.1861,0.0068,0.0333,0.1932,-0.0071,-0.0423,0.1399,-0.007,-0.0141,0.1793,-0.0068,0.031,0.1879,0.0085,0.0113,0.107,0.0069,0.0506,0.1271,-0.0449,-0.0055,0.1237,0.0785,0.0319,0.1136,-0.0674,-0.044,0.1311,0.0786,-0.0224,0.1649,-0.0899,0.0606,0.1492,0.0449,-0.0055,0.1237,-0.0882,0.012,0.1914,-0.0786,-0.0224,0.1649,-0.0534,-0.0428,0.066,0.0534,-0.0369,0.0703,0.0674,-0.044,0.1311,0.0882,0.0143,0.1947,0.0899,0.0606,0.1492,-0.0785,0.0319,0.1136,-0.0103,-0.0202,0.1242,0.0103,-0.0202,0.1242,-0.0534,-0.0369,0.0703,-0.0334,-0.0464,0.0645,0.0334,-0.0346,0.0732,0.0534,-0.0428,0.066,0.0334,-0.0464,0.0645,-0.0334,-0.0346,0.0732,-0.0073,-0.0611,0.1008,0.0073,-0.0508,0.1015,0.0073,-0.0611,0.1008,-0.0073,-0.0508,0.1015,-0.059,-0.0564,0.0971,0.059,-0.0499,0.0973,-0.0511,0.0458,0.1809,0.0512,0.0397,0.1754,0.091,0.0345,0.1874,-0.091,0.0345,0.1874,0.0511,0.0458,0.1809,-0.0512,0.0397,0.1754,0.0068,0.056,0.1727,-0.0068,0.0519,0.1678,-0.0068,0.056,0.1727,0.0068,0.0519,0.1678,0.091,0.031,0.185,-0.091,0.031,0.185,-0.0696,0.0319,0.1081,-0.032,-0.036,0.0501,0.0477,-0.0453,0.0647,0.0448,0.0043,0.115,-0.0448,0.0029,0.1237,0.0696,0.0304,0.115,0.032,-0.0239,0.0585,-0.0477,-0.035,0.0723,0.0655,0.0116,0.1155,-0.0655,0.0112,0.1204,0.0506,-0.033,0.0522,-0.0506,-0.033,0.0522,-0.0775,0.0172,0.1955,0.079,0.0642,0.1448,0.0775,0.0134,0.1899,-0.079,0.0586,0.1479,-0.0513,0.0657,0.1531,0.0513,0.0591,0.1541,0.0915,0.0645,0.1637,0.032,-0.036,0.0501,-0.0448,0.0043,0.115,0.0448,0.0029,0.1237,-0.032,-0.0239,0.0585,0.0513,0.0657,0.1531,-0.0513,0.0591,0.1541,-0.0212,0.0575,0.1285,-0.0224,0.0116,0.1146,-0.0241,-0.015,0.12,-0.0175,-0.0467,0.0648,0.0175,-0.0355,0.0731,0.0597,-0.0506,0.1379,0.0693,-0.0254,0.1737,0.0775,0.0172,0.1955,-0.0597,-0.0417,0.1318,-0.0693,-0.02,0.1653,-0.0775,0.0134,0.1899,-0.0693,-0.0254,0.1737,-0.0597,-0.0506,0.1379,-0.0525,-0.0593,0.0982,0.0693,-0.02,0.1653,0.0597,-0.0417,0.1318,0.0525,-0.0478,0.0987,-0.0189,-0.0506,0.1441,-0.0201,-0.0203,0.1844,-0.021,0.0311,0.1936,0.0189,-0.0409,0.138,0.0201,-0.0141,0.1762,0.021,0.0281,0.1873,-0.0838,-0.0085,0.1842,-0.073,-0.0378,0.1535,-0.0625,-0.0489,0.1149,-0.0377,-0.0569,0.1232,-0.0427,-0.0364,0.1618,-0.0478,-0.001,0.1915,0.0377,-0.0457,0.1174,0.0427,-0.0295,0.1522,0.0478,0.0004,0.1821,0.0625,-0.0545,0.1179,0.073,-0.0378,0.1535,0.0838,-0.0082,0.1793,0.0478,-0.001,0.1915,0.0427,-0.0364,0.1618,0.0377,-0.0569,0.1232,-0.0478,0.0004,0.1821,-0.0427,-0.0295,0.1522,-0.0377,-0.0457,0.1174,-0.079,0.0642,0.1448,0.079,0.0586,0.1479,0.0696,0.0319,0.1081,-0.0696,0.0304,0.115,-0.0224,0.0146,0.1071,-0.0212,0.0508,0.1304,-0.0493,0.0426,0.1106,-0.0493,0.0394,0.1173,0.086,0.0513,0.1152,-0.086,0.0513,0.1152,0.0493,0.0426,0.1106,0.0493,0.0394,0.1173,0.0073,-0.036,0.0501,0.0098,-0.0098,0.1173,0.0098,-0.0117,0.1244,0.0073,-0.0264,0.0568,-0.0072,-0.0568,0.1254,-0.0071,-0.0339,0.1667,0.0069,0.0066,0.1963,0.0072,-0.0479,0.121,0.0071,-0.0283,0.1594,-0.0069,0.0082,0.1891,0.0074,0.0313,0.1072,-0.0074,0.028,0.1123,0.0212,0.0575,0.1285,0.0224,0.0116,0.1146,0.0241,-0.015,0.12,0.0175,-0.0467,0.0648,-0.0175,-0.0355,0.0731,0.0189,-0.0506,0.1441,0.0201,-0.0203,0.1844,0.021,0.0311,0.1936,-0.0189,-0.0409,0.138,-0.0201,-0.0141,0.1762,-0.021,0.0281,0.1873,0.0224,0.0146,0.1071,0.0212,0.0508,0.1304,-0.0073,-0.036,0.0501,-0.0098,-0.0098,0.1173,-0.0098,-0.0117,0.1244,-0.0073,-0.0264,0.0568,0.0072,-0.0568,0.1254,0.0071,-0.0339,0.1667,-0.0069,0.0066,0.1963,-0.0072,-0.0479,0.121,-0.0071,-0.0283,0.1594,0.0069,0.0082,0.1891,-0.0074,0.0313,0.1072,0.0074,0.028,0.1123,-0,0.0563,0.1257,-0,0.0087,0.1124,-0,-0.0192,0.1199,0,-0.0467,0.0649,-0,-0.0386,0.0709,-0,-0.0505,0.145,-0,-0.0194,0.1861,-0,0.0333,0.1932,-0,-0.0434,0.1406,-0,-0.0148,0.1802,-0,0.0313,0.1886,-0,0.0112,0.1069,-0,0.0514,0.1269,0.0655,0.0112,0.1204,-0.0655,0.0116,0.1155,0.0506,-0.0269,0.0564,-0.0506,-0.0269,0.0564,0.0915,0.0612,0.1647,-0.0241,-0.0164,0.1249,-0.0838,-0.0082,0.1793,-0.073,-0.0345,0.1485,-0.0625,-0.0545,0.1179,0.0625,-0.0489,0.1149,0.073,-0.0345,0.1485,0.0838,-0.0085,0.1842,0.086,0.0502,0.1187,-0.086,0.0502,0.1187,0.0241,-0.0164,0.1249,-0,-0.0203,0.1234,-0.0455,-0.007,0.1215,0.0795,0.0309,0.1116,-0.0683,-0.0467,0.1322,0.0796,-0.0241,0.1671,-0.0911,0.0619,0.1476,0.0455,-0.007,0.1215,-0.0893,0.0133,0.193,-0.0796,-0.0241,0.1671,-0.0541,-0.0397,0.068,0.0541,-0.0397,0.068,0.0683,-0.0467,0.1322,0.0893,0.0133,0.193,0.0911,0.0619,0.1476,-0.0795,0.0309,0.1116,-0.0105,-0.0217,0.1223,0.0105,-0.0217,0.1223,0.0525,-0.0593,0.0982,-0.0525,-0.0478,0.0987,-0.0181,-0.061,0.1005,0.0181,-0.0486,0.1012,-0.0477,-0.0453,0.0647,0.0477,-0.035,0.0723,0.0181,-0.061,0.1005,-0.0181,-0.0486,0.1012,0,-0.0611,0.1008,0,-0.0521,0.1014,-0.0598,-0.0529,0.0966,0.0598,-0.0529,0.0966,-0.0562,-0.0475,0.082,-0.0347,-0.0577,0.0816,0.0347,-0.045,0.0843,0.0562,-0.0539,0.0807,0.0347,-0.0577,0.0816,-0.0347,-0.045,0.0843,-0.0073,-0.058,0.0824,0.0073,-0.048,0.0846,0.0073,-0.058,0.0824,-0.0073,-0.048,0.0846,-0.0562,-0.0539,0.0807,0.0562,-0.0475,0.082,-0.0798,0.0378,0.1866,0.0798,0.0378,0.1866,0.0799,0.032,0.1823,-0.0799,0.032,0.1823,-0.0212,0.0534,0.1748,0.0212,0.0484,0.1691,0.0212,0.0534,0.1748,-0.0212,0.0484,0.1691,-0,0.056,0.1727,-0,0.0525,0.1684,0.0922,0.0331,0.1859,-0.0922,0.0331,0.1859,-0.0915,0.0645,0.1637,0.0067,0.0651,0.1422,-0.0067,0.0599,0.1422,-0.0067,0.0651,0.1422,0.0067,0.0599,0.1422,-0.0915,0.0612,0.1647],"name":"animation_000000"},{"vertices":[-0.0611,0.0323,0.1183,0.0611,0.0323,0.1183,-0.0453,-0.0353,0.0508,0.0453,-0.0353,0.0508,-0.0611,0.0287,0.125,0.0611,0.0287,0.125,-0.0453,-0.0245,0.0577,0.0453,-0.0245,0.0577,-0.0803,0.0628,0.1832,0.0803,0.0567,0.1829,-0.0172,-0.0361,0.0503,-0.0234,0.0114,0.1127,-0.0234,0.006,0.1195,-0.0172,-0.0244,0.0578,0.0555,-0.0562,0.1213,0.0645,-0.0408,0.1589,0.0738,-0.0134,0.1924,-0.0555,-0.0461,0.1165,-0.0645,-0.0341,0.1508,-0.0738,-0.0114,0.1839,-0.0738,-0.0134,0.1924,-0.0645,-0.0408,0.1589,-0.0555,-0.0562,0.1213,0.0738,-0.0114,0.1839,0.0645,-0.0341,0.1508,0.0555,-0.0461,0.1165,0.0185,-0.0569,0.1254,0.0195,-0.0382,0.1675,-0.0206,-0.0031,0.2019,-0.0185,-0.0459,0.1205,-0.0195,-0.0307,0.1593,0.0206,-0.0001,0.1935,-0.0758,0.0646,0.1334,0.0758,0.0602,0.1383,0.0758,0.0646,0.1334,-0.0758,0.0602,0.1383,-0.0215,0.0514,0.1218,0.0215,0.0454,0.1262,0.0172,-0.0361,0.0503,0.0234,0.0114,0.1127,0.0234,0.006,0.1195,0.0172,-0.0244,0.0578,0.0213,0.0676,0.1669,-0.0213,0.0613,0.1651,-0.0185,-0.0569,0.1254,-0.0195,-0.0382,0.1675,0.0206,-0.0031,0.2019,0.0185,-0.0459,0.1205,0.0195,-0.0307,0.1593,-0.0206,-0.0001,0.1935,0.0215,0.0514,0.1218,-0.0215,0.0454,0.1262,0,-0.0361,0.0503,-0,0.0074,0.1114,-0,0.0032,0.1163,-0,-0.0276,0.0558,-0,-0.0569,0.126,-0,-0.0377,0.1688,-0,-0.0014,0.2034,-0,-0.0489,0.1225,-0,-0.0322,0.1629,-0,0.0009,0.1974,-0,0.049,0.1198,-0,0.0445,0.1229,0.0663,0.0248,0.1207,-0.0663,0.0248,0.1207,0.0512,-0.0299,0.0543,-0.0512,-0.0299,0.0543,-0.0927,0.0592,0.1848,-0.0244,-0.0018,0.113,-0.0849,-0.0143,0.1865,-0.0739,-0.0387,0.1524,-0.0633,-0.0514,0.1164,0.0633,-0.0514,0.1164,0.0739,-0.0387,0.1524,0.0849,-0.0143,0.1865,0.0871,0.0628,0.1362,-0.0871,0.0628,0.1362,0.0244,-0.0018,0.113,-0,-0.0052,0.1105,0.0501,-0.0556,0.0818,-0.0501,-0.0443,0.084,-0.0178,-0.057,0.0831,0.0178,-0.0448,0.0856,-0.0501,-0.0556,0.0818,0.0501,-0.0443,0.084,0.0178,-0.057,0.0831,-0.0178,-0.0448,0.0856,0,-0.057,0.0833,0,-0.0482,0.0852,-0.0569,-0.0495,0.0818,0.0569,-0.0495,0.0818,0.0803,0.0628,0.1832,-0.0803,0.0567,0.1829,-0.0213,0.0676,0.1669,0.0213,0.0613,0.1651,-0,0.0684,0.1641,-0,0.0638,0.1626,0.0927,0.0592,0.1848,-0.0468,0.0419,0.1168,-0.0468,0.0364,0.1231,-0.0449,0.0119,0.1151,0.0785,0.0493,0.1227,-0.0674,-0.0498,0.1357,-0.0453,-0.0283,0.1826,0.0453,-0.021,0.1741,0.0786,-0.0297,0.1727,-0.0899,0.0654,0.1688,0.0507,0.0665,0.1577,0.0468,0.0364,0.1231,0.0449,0.0119,0.1151,0.04,-0.0521,0.1424,-0.04,-0.0413,0.1362,-0.0882,0.0053,0.2029,-0.0786,-0.0297,0.1727,-0.059,-0.0489,0.0983,-0.036,-0.0597,0.1003,-0.04,-0.0521,0.1424,-0.0498,0.0154,0.205,0.036,-0.0466,0.1011,0.04,-0.0413,0.1362,0.0498,0.0129,0.1976,0.059,-0.0555,0.0979,0.0674,-0.0498,0.1357,0.0882,0.0036,0.1991,0.0498,0.0154,0.205,0.0453,-0.0283,0.1826,0.036,-0.0597,0.1003,-0.0498,0.0129,0.1976,-0.0453,-0.021,0.1741,-0.036,-0.0466,0.1011,-0.0507,0.0665,0.1577,-0.0507,0.059,0.158,0.0899,0.0654,0.1688,-0.0785,0.0493,0.1227,0.0468,0.0419,0.1168,0.0507,0.059,0.158,-0.0069,0.0656,0.1454,-0.0085,0.0254,0.1159,-0.0103,-0.0018,0.1103,-0.0073,-0.0463,0.0655,0.0073,-0.0367,0.0721,-0.0071,-0.0519,0.146,-0.007,-0.0254,0.1896,-0.0068,0.025,0.2054,0.0071,-0.0434,0.1414,0.007,-0.0194,0.1834,0.0068,0.0237,0.1995,-0.0085,0.0307,0.1112,-0.0069,0.0596,0.1448,0.0069,0.0656,0.1454,0.0085,0.0254,0.1159,0.0103,-0.0018,0.1103,0.0073,-0.0463,0.0655,-0.0073,-0.0367,0.0721,0.0071,-0.0519,0.146,0.007,-0.0254,0.1896,0.0068,0.025,0.2054,-0.0071,-0.0434,0.1414,-0.007,-0.0194,0.1834,-0.0068,0.0237,0.1995,0.0085,0.0307,0.1112,0.0069,0.0596,0.1448,-0.0449,0.0088,0.1192,0.0785,0.047,0.1261,-0.0674,-0.0445,0.1324,0.0786,-0.0262,0.1682,-0.0899,0.0617,0.1696,0.0449,0.0088,0.1192,-0.0882,0.0036,0.1991,-0.0786,-0.0262,0.1682,-0.0534,-0.0423,0.0665,0.0534,-0.0363,0.0706,0.0674,-0.0445,0.1324,0.0882,0.0053,0.2029,0.0899,0.0617,0.1696,-0.0785,0.047,0.1261,-0.0103,-0.0047,0.1134,0.0103,-0.0047,0.1134,-0.0534,-0.0363,0.0706,-0.0334,-0.046,0.0652,0.0334,-0.0338,0.0734,0.0534,-0.0423,0.0665,0.0334,-0.046,0.0652,-0.0334,-0.0338,0.0734,-0.0073,-0.0603,0.1017,0.0073,-0.0498,0.1024,0.0073,-0.0603,0.1017,-0.0073,-0.0498,0.1024,-0.059,-0.0555,0.0979,0.059,-0.0489,0.0983,-0.0511,0.0395,0.1963,0.0512,0.0348,0.1894,0.091,0.0268,0.1999,-0.091,0.0268,0.1999,0.0511,0.0395,0.1963,-0.0512,0.0348,0.1894,0.0068,0.0516,0.1907,-0.0068,0.0488,0.1849,-0.0068,0.0516,0.1907,0.0068,0.0488,0.1849,0.091,0.0239,0.1967,-0.091,0.0239,0.1967,-0.0696,0.0492,0.1209,-0.032,-0.0361,0.0503,0.0477,-0.0449,0.0653,0.0448,0.0214,0.1155,-0.0448,0.0165,0.1228,0.0696,0.045,0.1268,0.032,-0.0238,0.0582,-0.0477,-0.0343,0.0725,0.0655,0.0278,0.119,-0.0655,0.0254,0.1233,0.0506,-0.033,0.0523,-0.0506,-0.033,0.0523,-0.0775,0.0081,0.2043,0.079,0.0666,0.1666,0.0775,0.0054,0.1978,-0.079,0.0602,0.1676,-0.0513,0.0654,0.1752,0.0513,0.0586,0.174,0.0915,0.0609,0.1853,0.032,-0.0361,0.0503,-0.0448,0.0214,0.1155,0.0448,0.0165,0.1228,-0.032,-0.0238,0.0582,0.0513,0.0654,0.1752,-0.0513,0.0586,0.174,-0.0212,0.0658,0.1484,-0.0224,0.0277,0.1184,-0.0241,0.0018,0.1118,-0.0175,-0.0462,0.0655,0.0175,-0.0347,0.0733,0.0597,-0.0516,0.1389,0.0693,-0.03,0.1766,0.0775,0.0081,0.2043,-0.0597,-0.0422,0.1333,-0.0693,-0.0238,0.1688,-0.0775,0.0054,0.1978,-0.0693,-0.03,0.1766,-0.0597,-0.0516,0.1389,-0.0525,-0.0584,0.0991,0.0693,-0.0238,0.1688,0.0597,-0.0422,0.1333,0.0525,-0.0468,0.0997,-0.0189,-0.052,0.1451,-0.0201,-0.0262,0.1879,-0.021,0.0226,0.2053,0.0189,-0.0418,0.1395,0.0201,-0.019,0.1803,0.021,0.0208,0.1982,-0.0838,-0.0148,0.189,-0.073,-0.0403,0.1552,-0.0625,-0.0485,0.1158,-0.0377,-0.0569,0.1237,-0.0427,-0.0397,0.1636,-0.0478,-0.0083,0.1975,0.0377,-0.0453,0.1184,0.0427,-0.0319,0.1546,0.0478,-0.0056,0.1882,0.0625,-0.0542,0.1185,0.073,-0.0403,0.1552,0.0838,-0.0137,0.1841,0.0478,-0.0083,0.1975,0.0427,-0.0397,0.1636,0.0377,-0.0569,0.1237,-0.0478,-0.0056,0.1882,-0.0427,-0.0319,0.1546,-0.0377,-0.0453,0.1184,-0.079,0.0666,0.1666,0.079,0.0602,0.1676,0.0696,0.0492,0.1209,-0.0696,0.045,0.1268,-0.0224,0.0336,0.1127,-0.0212,0.0587,0.148,-0.0493,0.0584,0.1276,-0.0493,0.0527,0.1327,0.086,0.0648,0.1354,-0.086,0.0648,0.1354,0.0493,0.0584,0.1276,0.0493,0.0527,0.1327,0.0073,-0.0361,0.0503,0.0098,0.0076,0.1116,0.0098,0.0029,0.1172,0.0073,-0.0263,0.0566,-0.0072,-0.0569,0.126,-0.0071,-0.0377,0.1688,0.0069,-0.0014,0.2034,0.0072,-0.0477,0.1219,0.0071,-0.0314,0.162,-0.0069,0.0013,0.1965,0.0074,0.049,0.1199,-0.0074,0.0438,0.1234,0.0212,0.0658,0.1484,0.0224,0.0277,0.1184,0.0241,0.0018,0.1118,0.0175,-0.0462,0.0655,-0.0175,-0.0347,0.0733,0.0189,-0.052,0.1451,0.0201,-0.0262,0.1879,0.021,0.0226,0.2053,-0.0189,-0.0418,0.1395,-0.0201,-0.019,0.1803,-0.021,0.0208,0.1982,0.0224,0.0336,0.1127,0.0212,0.0587,0.148,-0.0073,-0.0361,0.0503,-0.0098,0.0076,0.1116,-0.0098,0.0029,0.1172,-0.0073,-0.0263,0.0566,0.0072,-0.0569,0.126,0.0071,-0.0377,0.1688,-0.0069,-0.0014,0.2034,-0.0072,-0.0477,0.1219,-0.0071,-0.0314,0.162,0.0069,0.0013,0.1965,-0.0074,0.049,0.1199,0.0074,0.0438,0.1234,-0,0.0656,0.1454,-0,0.026,0.1152,-0,-0.0019,0.1099,0,-0.0463,0.0655,-0,-0.0379,0.0713,-0,-0.0519,0.146,-0,-0.0254,0.1896,-0,0.025,0.2054,-0,-0.0445,0.142,-0,-0.0202,0.1842,-0,0.0239,0.2002,-0,0.0305,0.1111,-0,0.0604,0.1449,0.0655,0.0254,0.1233,-0.0655,0.0278,0.119,0.0506,-0.0269,0.0562,-0.0506,-0.0269,0.0562,0.0915,0.0573,0.1852,-0.0241,-0.0015,0.1156,-0.0838,-0.0137,0.1841,-0.073,-0.0365,0.1505,-0.0625,-0.0542,0.1185,0.0625,-0.0485,0.1158,0.073,-0.0365,0.1505,0.0838,-0.0148,0.189,0.086,0.0624,0.1383,-0.086,0.0624,0.1383,0.0241,-0.0015,0.1156,-0,-0.0045,0.1127,-0.0455,0.0084,0.1165,0.0795,0.0469,0.1238,-0.0683,-0.0473,0.1334,0.0796,-0.0281,0.1702,-0.0911,0.0635,0.1685,0.0455,0.0084,0.1165,-0.0893,0.0046,0.201,-0.0796,-0.0281,0.1702,-0.0541,-0.0392,0.0684,0.0541,-0.0392,0.0684,0.0683,-0.0473,0.1334,0.0893,0.0046,0.201,0.0911,0.0635,0.1685,-0.0795,0.0469,0.1238,-0.0105,-0.0052,0.1111,0.0105,-0.0052,0.1111,0.0525,-0.0584,0.0991,-0.0525,-0.0468,0.0997,-0.0181,-0.0601,0.1014,0.0181,-0.0477,0.1022,-0.0477,-0.0449,0.0653,0.0477,-0.0343,0.0725,0.0181,-0.0601,0.1014,-0.0181,-0.0477,0.1022,0,-0.0603,0.1017,0,-0.0512,0.1024,-0.0598,-0.052,0.0975,0.0598,-0.052,0.0975,-0.0562,-0.0464,0.0828,-0.0347,-0.0567,0.0824,0.0347,-0.0438,0.0851,0.0562,-0.0529,0.0815,0.0347,-0.0567,0.0824,-0.0347,-0.0438,0.0851,-0.0073,-0.057,0.0833,0.0073,-0.0468,0.0854,0.0073,-0.057,0.0833,-0.0073,-0.0468,0.0854,-0.0562,-0.0529,0.0815,0.0562,-0.0464,0.0828,-0.0798,0.0302,0.2,0.0798,0.0302,0.2,0.0799,0.0255,0.1942,-0.0799,0.0255,0.1942,-0.0212,0.0486,0.1921,0.0212,0.045,0.1853,0.0212,0.0486,0.1921,-0.0212,0.045,0.1853,-0,0.0516,0.1907,-0,0.0492,0.1857,0.0922,0.0258,0.198,-0.0922,0.0258,0.198,-0.0915,0.0609,0.1853,0.0067,0.0684,0.1641,-0.0067,0.0632,0.1624,-0.0067,0.0684,0.1641,0.0067,0.0632,0.1624,-0.0915,0.0573,0.1852],"name":"animation_000001"},{"vertices":[-0.0611,0.0504,0.1315,0.0611,0.0504,0.1315,-0.0453,-0.0355,0.051,0.0453,-0.0355,0.051,-0.0611,0.0443,0.136,0.0611,0.0443,0.136,-0.0453,-0.0244,0.0575,0.0453,-0.0244,0.0575,-0.0803,0.0553,0.205,0.0803,0.0494,0.2027,-0.0172,-0.0363,0.0505,-0.0234,0.034,0.1174,-0.0234,0.0262,0.1211,-0.0172,-0.0243,0.0576,0.0555,-0.0561,0.1218,0.0645,-0.0438,0.1603,0.0738,-0.0207,0.1967,-0.0555,-0.0456,0.1174,-0.0645,-0.0363,0.1528,-0.0738,-0.0174,0.1885,-0.0738,-0.0207,0.1967,-0.0645,-0.0438,0.1603,-0.0555,-0.0561,0.1218,0.0738,-0.0174,0.1885,0.0645,-0.0363,0.1528,0.0555,-0.0456,0.1174,0.0185,-0.0569,0.1259,0.0195,-0.0419,0.1691,-0.0206,-0.0118,0.2078,-0.0185,-0.0456,0.1215,-0.0195,-0.0337,0.1616,0.0206,-0.0075,0.1998,-0.0758,0.0739,0.1591,0.0758,0.0677,0.1619,0.0758,0.0739,0.1591,-0.0758,0.0677,0.1619,-0.0215,0.0661,0.1428,0.0215,0.0587,0.1445,0.0172,-0.0363,0.0505,0.0234,0.034,0.1174,0.0234,0.0262,0.1211,0.0172,-0.0243,0.0576,0.0213,0.0654,0.1903,-0.0213,0.0597,0.1866,-0.0185,-0.0569,0.1259,-0.0195,-0.0419,0.1691,0.0206,-0.0118,0.2078,0.0185,-0.0456,0.1215,0.0195,-0.0337,0.1616,-0.0206,-0.0075,0.1998,0.0215,0.0661,0.1428,-0.0215,0.0587,0.1445,0,-0.0363,0.0505,-0,0.031,0.1145,-0,0.0251,0.1171,-0,-0.0275,0.0556,-0,-0.057,0.1265,-0,-0.0416,0.1704,-0,-0.0103,0.2095,-0,-0.0487,0.1233,-0,-0.0355,0.165,-0,-0.0071,0.2038,-0,0.0647,0.14,-0,0.0592,0.141,0.0663,0.0426,0.1304,-0.0663,0.0426,0.1304,0.0512,-0.0299,0.0542,-0.0512,-0.0299,0.0542,-0.0927,0.0513,0.2054,-0.0244,0.022,0.1119,-0.0849,-0.0208,0.1907,-0.0739,-0.041,0.1539,-0.0633,-0.051,0.1171,0.0633,-0.051,0.1171,0.0739,-0.041,0.1539,0.0849,-0.0208,0.1907,0.0871,0.0711,0.1611,-0.0871,0.0711,0.1611,0.0244,0.022,0.1119,-0,0.0201,0.1082,0.0501,-0.0545,0.0826,-0.0501,-0.0431,0.0848,-0.0178,-0.0559,0.0839,0.0178,-0.0435,0.0864,-0.0501,-0.0545,0.0826,0.0501,-0.0431,0.0848,0.0178,-0.0559,0.0839,-0.0178,-0.0435,0.0864,0,-0.056,0.0841,0,-0.047,0.0859,-0.0569,-0.0484,0.0825,0.0569,-0.0484,0.0825,0.0803,0.0553,0.205,-0.0803,0.0494,0.2027,-0.0213,0.0654,0.1903,0.0213,0.0597,0.1866,-0,0.067,0.1878,-0,0.063,0.1849,0.0927,0.0513,0.2054,-0.0468,0.0595,0.1342,-0.0468,0.0517,0.1377,-0.0449,0.0334,0.1197,0.0785,0.0638,0.1428,-0.0674,-0.0506,0.1366,-0.0453,-0.0338,0.1852,0.0453,-0.0256,0.1775,0.0786,-0.0342,0.1752,-0.0899,0.0624,0.1916,0.0507,0.0674,0.1813,0.0468,0.0517,0.1377,0.0449,0.0334,0.1197,0.04,-0.0533,0.1431,-0.04,-0.0421,0.1377,-0.0882,-0.0047,0.2097,-0.0786,-0.0342,0.1752,-0.059,-0.0479,0.0992,-0.036,-0.0589,0.1012,-0.04,-0.0533,0.1431,-0.0498,0.0051,0.2141,0.036,-0.0455,0.1021,0.04,-0.0421,0.1377,0.0498,0.0042,0.206,0.059,-0.0546,0.0988,0.0674,-0.0506,0.1366,0.0882,-0.0056,0.2056,0.0498,0.0051,0.2141,0.0453,-0.0338,0.1852,0.036,-0.0589,0.1012,-0.0498,0.0042,0.206,-0.0453,-0.0256,0.1775,-0.036,-0.0455,0.1021,-0.0507,0.0674,0.1813,-0.0507,0.0601,0.179,0.0899,0.0624,0.1916,-0.0785,0.0638,0.1428,0.0468,0.0595,0.1342,0.0507,0.0601,0.179,-0.0069,0.0709,0.1691,-0.0085,0.0447,0.1263,-0.0103,0.0232,0.1095,-0.0073,-0.0458,0.0662,0.0073,-0.036,0.0723,-0.0071,-0.0534,0.1468,-0.007,-0.0318,0.1925,-0.0068,0.0148,0.2164,0.0071,-0.0445,0.1428,0.007,-0.0251,0.187,0.0068,0.0147,0.2102,-0.0085,0.0515,0.1243,-0.0069,0.0654,0.1664,0.0069,0.0709,0.1691,0.0085,0.0447,0.1263,0.0103,0.0232,0.1095,0.0073,-0.0458,0.0662,-0.0073,-0.036,0.0723,0.0071,-0.0534,0.1468,0.007,-0.0318,0.1925,0.0068,0.0148,0.2164,-0.0071,-0.0445,0.1428,-0.007,-0.0251,0.187,-0.0068,0.0147,0.2102,0.0085,0.0515,0.1243,0.0069,0.0654,0.1664,-0.0449,0.0288,0.1221,0.0785,0.0602,0.145,-0.0674,-0.045,0.1337,0.0786,-0.0302,0.171,-0.0899,0.0586,0.191,0.0449,0.0288,0.1221,-0.0882,-0.0056,0.2056,-0.0786,-0.0302,0.171,-0.0534,-0.0418,0.0669,0.0534,-0.0356,0.0708,0.0674,-0.045,0.1337,0.0882,-0.0047,0.2097,0.0899,0.0586,0.191,-0.0785,0.0602,0.145,-0.0103,0.0192,0.111,0.0103,0.0192,0.111,-0.0534,-0.0356,0.0708,-0.0334,-0.0455,0.0658,0.0334,-0.0331,0.0735,0.0534,-0.0418,0.0669,0.0334,-0.0455,0.0658,-0.0334,-0.0331,0.0735,-0.0073,-0.0594,0.1026,0.0073,-0.0489,0.1034,0.0073,-0.0594,0.1026,-0.0073,-0.0489,0.1034,-0.059,-0.0546,0.0988,0.059,-0.0479,0.0992,-0.0511,0.0305,0.211,0.0512,0.0277,0.203,0.091,0.0171,0.2113,-0.091,0.0171,0.2113,0.0511,0.0305,0.211,-0.0512,0.0277,0.203,0.0068,0.0439,0.2086,-0.0068,0.0426,0.2021,-0.0068,0.0439,0.2086,0.0068,0.0426,0.2021,0.091,0.0151,0.2075,-0.091,0.0151,0.2075,-0.0696,0.0645,0.1412,-0.032,-0.0363,0.0505,0.0477,-0.0444,0.0659,0.0448,0.0418,0.1242,-0.0448,0.0342,0.1287,0.0696,0.0581,0.1447,0.032,-0.0236,0.0579,-0.0477,-0.0335,0.0726,0.0655,0.0461,0.1302,-0.0655,0.042,0.133,0.0506,-0.0331,0.0524,-0.0506,-0.0331,0.0524,-0.0775,-0.0022,0.2118,0.079,0.0645,0.1899,0.0775,-0.0036,0.2046,-0.079,0.0579,0.1886,-0.0513,0.0605,0.1979,0.0513,0.0541,0.1945,0.0915,0.0528,0.2064,0.032,-0.0363,0.0505,-0.0448,0.0418,0.1242,0.0448,0.0342,0.1287,-0.032,-0.0236,0.0579,0.0513,0.0605,0.1979,-0.0513,0.0541,0.1945,-0.0212,0.0701,0.1721,-0.0224,0.0457,0.1296,-0.0241,0.0258,0.1124,-0.0175,-0.0457,0.0661,0.0175,-0.034,0.0734,0.0597,-0.0526,0.1396,0.0693,-0.035,0.179,0.0775,-0.0022,0.2118,-0.0597,-0.0428,0.1346,-0.0693,-0.0279,0.1719,-0.0775,-0.0036,0.2046,-0.0693,-0.035,0.179,-0.0597,-0.0526,0.1396,-0.0525,-0.0575,0.0999,0.0693,-0.0279,0.1719,0.0597,-0.0428,0.1346,0.0525,-0.0458,0.1006,-0.0189,-0.0534,0.1459,-0.0201,-0.0323,0.1907,-0.021,0.0124,0.2159,0.0189,-0.0427,0.1409,0.0201,-0.0244,0.1839,0.021,0.0121,0.2083,-0.0838,-0.0216,0.1931,-0.073,-0.0429,0.1566,-0.0625,-0.048,0.1166,-0.0377,-0.0569,0.1242,-0.0427,-0.0431,0.1651,-0.0478,-0.0164,0.2025,0.0377,-0.0449,0.1194,0.0427,-0.0344,0.1568,0.0478,-0.0122,0.1936,0.0625,-0.0539,0.1191,0.073,-0.0429,0.1566,0.0838,-0.0198,0.1883,0.0478,-0.0164,0.2025,0.0427,-0.0431,0.1651,0.0377,-0.0569,0.1242,-0.0478,-0.0122,0.1936,-0.0427,-0.0344,0.1568,-0.0377,-0.0449,0.1194,-0.079,0.0645,0.1899,0.079,0.0579,0.1886,0.0696,0.0645,0.1412,-0.0696,0.0581,0.1447,-0.0224,0.0536,0.1269,-0.0212,0.0634,0.1692,-0.0493,0.0704,0.1511,-0.0493,0.0629,0.1536,0.086,0.0733,0.1611,-0.086,0.0733,0.1611,0.0493,0.0704,0.1511,0.0493,0.0629,0.1536,0.0073,-0.0363,0.0505,0.0098,0.0312,0.1147,0.0098,0.0244,0.1177,0.0073,-0.0262,0.0564,-0.0072,-0.057,0.1265,-0.0071,-0.0416,0.1704,0.0069,-0.0103,0.2095,0.0072,-0.0475,0.1228,0.0071,-0.0346,0.1642,-0.0069,-0.0066,0.203,0.0074,0.0647,0.14,-0.0074,0.0584,0.1412,0.0212,0.0701,0.1721,0.0224,0.0457,0.1296,0.0241,0.0258,0.1124,0.0175,-0.0457,0.0661,-0.0175,-0.034,0.0734,0.0189,-0.0534,0.1459,0.0201,-0.0323,0.1907,0.021,0.0124,0.2159,-0.0189,-0.0427,0.1409,-0.0201,-0.0244,0.1839,-0.021,0.0121,0.2083,0.0224,0.0536,0.1269,0.0212,0.0634,0.1692,-0.0073,-0.0363,0.0505,-0.0098,0.0312,0.1147,-0.0098,0.0244,0.1177,-0.0073,-0.0262,0.0564,0.0072,-0.057,0.1265,0.0071,-0.0416,0.1704,-0.0069,-0.0103,0.2095,-0.0072,-0.0475,0.1228,-0.0071,-0.0346,0.1642,0.0069,-0.0066,0.203,-0.0074,0.0647,0.14,0.0074,0.0584,0.1412,-0,0.0709,0.1691,-0,0.0455,0.1259,-0,0.0232,0.1091,0,-0.0458,0.0662,-0,-0.0372,0.0715,-0,-0.0534,0.1468,-0,-0.0318,0.1925,-0,0.0148,0.2164,-0,-0.0457,0.1433,-0,-0.026,0.1877,-0,0.0148,0.211,-0,0.0514,0.1241,-0,0.0661,0.1668,0.0655,0.042,0.133,-0.0655,0.0461,0.1302,0.0506,-0.0268,0.0561,-0.0506,-0.0268,0.0561,0.0915,0.0493,0.2052,-0.0241,0.0211,0.1144,-0.0838,-0.0198,0.1883,-0.073,-0.0386,0.1522,-0.0625,-0.0539,0.1191,0.0625,-0.048,0.1166,0.073,-0.0386,0.1522,0.0838,-0.0216,0.1931,0.086,0.0698,0.1629,-0.086,0.0698,0.1629,0.0241,0.0211,0.1144,-0,0.0197,0.1104,-0.0455,0.0297,0.1195,0.0795,0.0611,0.1428,-0.0683,-0.0479,0.1344,0.0796,-0.0323,0.1728,-0.0911,0.0607,0.1906,0.0455,0.0297,0.1195,-0.0893,-0.005,0.2077,-0.0796,-0.0323,0.1728,-0.0541,-0.0386,0.0687,0.0541,-0.0386,0.0687,0.0683,-0.0479,0.1344,0.0893,-0.005,0.2077,0.0911,0.0607,0.1906,-0.0795,0.0611,0.1428,-0.0105,0.0198,0.1087,0.0105,0.0198,0.1087,0.0525,-0.0575,0.0999,-0.0525,-0.0458,0.1006,-0.0181,-0.0593,0.1022,0.0181,-0.0467,0.1032,-0.0477,-0.0444,0.0659,0.0477,-0.0335,0.0726,0.0181,-0.0593,0.1022,-0.0181,-0.0467,0.1032,0,-0.0594,0.1026,0,-0.0502,0.1033,-0.0598,-0.051,0.0984,0.0598,-0.051,0.0984,-0.0562,-0.0452,0.0835,-0.0347,-0.0557,0.0832,0.0347,-0.0426,0.0858,0.0562,-0.0518,0.0823,0.0347,-0.0557,0.0832,-0.0347,-0.0426,0.0858,-0.0073,-0.056,0.0841,0.0073,-0.0456,0.0862,0.0073,-0.056,0.0841,-0.0073,-0.0456,0.0862,-0.0562,-0.0518,0.0823,0.0562,-0.0452,0.0835,-0.0798,0.0205,0.2123,0.0798,0.0205,0.2123,0.0799,0.0173,0.2055,-0.0799,0.0173,0.2055,-0.0212,0.0406,0.2092,0.0212,0.0387,0.2015,0.0212,0.0406,0.2092,-0.0212,0.0387,0.2015,-0,0.0439,0.2086,-0,0.0428,0.2029,0.0922,0.0166,0.2093,-0.0922,0.0166,0.2093,-0.0915,0.0528,0.2064,0.0067,0.067,0.1878,-0.0067,0.0624,0.1845,-0.0067,0.067,0.1878,0.0067,0.0624,0.1845,-0.0915,0.0493,0.2052],"name":"animation_000002"},{"vertices":[-0.0611,0.0665,0.1535,0.0611,0.0665,0.1535,-0.0453,-0.0356,0.0512,0.0453,-0.0356,0.0512,-0.0611,0.059,0.1548,0.0611,0.059,0.1548,-0.0453,-0.0243,0.0572,0.0453,-0.0243,0.0572,-0.0803,0.0432,0.2254,0.0803,0.0381,0.2211,-0.0172,-0.0364,0.0507,-0.0234,0.058,0.1336,-0.0234,0.0493,0.1335,-0.0172,-0.0241,0.0573,0.0555,-0.0559,0.1221,0.0645,-0.0468,0.1613,0.0738,-0.0284,0.2001,-0.0555,-0.0452,0.1183,-0.0645,-0.0386,0.1545,-0.0738,-0.0239,0.1924,-0.0738,-0.0284,0.2001,-0.0645,-0.0468,0.1613,-0.0555,-0.0559,0.1221,0.0738,-0.0239,0.1924,0.0645,-0.0386,0.1545,0.0555,-0.0452,0.1183,0.0185,-0.057,0.1263,0.0195,-0.0458,0.1703,-0.0206,-0.0212,0.2126,-0.0185,-0.0453,0.1224,-0.0195,-0.0368,0.1636,0.0206,-0.0157,0.2052,-0.0758,0.0762,0.1891,0.0758,0.0693,0.1891,0.0758,0.0762,0.1891,-0.0758,0.0693,0.1891,-0.0215,0.0756,0.1705,0.0215,0.068,0.169,0.0172,-0.0364,0.0507,0.0234,0.058,0.1336,0.0234,0.0493,0.1335,0.0172,-0.0241,0.0573,0.0213,0.0579,0.2142,-0.0213,0.0536,0.2086,-0.0185,-0.057,0.1263,-0.0195,-0.0458,0.1703,0.0206,-0.0212,0.2126,0.0185,-0.0453,0.1224,0.0195,-0.0368,0.1636,-0.0206,-0.0157,0.2052,0.0215,0.0756,0.1705,-0.0215,0.068,0.169,0,-0.0364,0.0507,-0,0.0566,0.1296,-0,0.0502,0.1294,-0,-0.0275,0.0555,-0,-0.057,0.1269,-0,-0.0456,0.1716,-0,-0.02,0.2146,-0,-0.0485,0.1241,-0,-0.039,0.1668,-0,-0.0159,0.2093,-0,0.0754,0.1673,-0,0.0698,0.166,0.0663,0.0599,0.1491,-0.0663,0.0599,0.1491,0.0512,-0.0299,0.0542,-0.0512,-0.0299,0.0542,-0.0927,0.0391,0.2244,-0.0244,0.0496,0.1234,-0.0849,-0.0276,0.1941,-0.0739,-0.0434,0.1552,-0.0633,-0.0505,0.1177,0.0633,-0.0505,0.1177,0.0739,-0.0434,0.1552,0.0849,-0.0276,0.1941,0.0871,0.0727,0.1897,-0.0871,0.0727,0.1897,0.0244,0.0496,0.1234,-0,0.0495,0.1192,0.0501,-0.0534,0.0833,-0.0501,-0.0418,0.0854,-0.0178,-0.0548,0.0847,0.0178,-0.0423,0.0871,-0.0501,-0.0534,0.0833,0.0501,-0.0418,0.0854,0.0178,-0.0548,0.0847,-0.0178,-0.0423,0.0871,0,-0.0549,0.0849,0,-0.0458,0.0866,-0.0569,-0.0472,0.0832,0.0569,-0.0472,0.0832,0.0803,0.0432,0.2254,-0.0803,0.0381,0.2211,-0.0213,0.0579,0.2142,0.0213,0.0536,0.2086,-0,0.0603,0.2122,-0,0.0573,0.2081,0.0927,0.0391,0.2244,-0.0468,0.0733,0.1598,-0.0468,0.0645,0.1596,-0.0449,0.0564,0.1354,0.0785,0.0735,0.1695,-0.0674,-0.0514,0.1373,-0.0453,-0.0396,0.1872,0.0453,-0.0306,0.1804,0.0786,-0.0389,0.1771,-0.0899,0.0545,0.2146,0.0507,0.063,0.2063,0.0468,0.0645,0.1596,0.0449,0.0564,0.1354,0.04,-0.0545,0.1437,-0.04,-0.0429,0.139,-0.0882,-0.0154,0.2151,-0.0786,-0.0389,0.1771,-0.059,-0.0468,0.1,-0.036,-0.0579,0.1019,-0.04,-0.0545,0.1437,-0.0498,-0.0064,0.2216,0.036,-0.0445,0.103,0.04,-0.0429,0.139,0.0498,-0.0056,0.2132,0.059,-0.0536,0.0996,0.0674,-0.0514,0.1373,0.0882,-0.0154,0.2107,0.0498,-0.0064,0.2216,0.0453,-0.0396,0.1872,0.036,-0.0579,0.1019,-0.0498,-0.0056,0.2132,-0.0453,-0.0306,0.1804,-0.036,-0.0445,0.103,-0.0507,0.063,0.2063,-0.0507,0.0568,0.2016,0.0899,0.0545,0.2146,-0.0785,0.0735,0.1695,0.0468,0.0733,0.1598,0.0507,0.0568,0.2016,-0.0069,0.0707,0.1959,-0.0085,0.0631,0.1461,-0.0103,0.0518,0.1217,-0.0073,-0.0453,0.0668,0.0073,-0.0352,0.0725,-0.0071,-0.0549,0.1474,-0.007,-0.0383,0.1947,-0.0068,0.0029,0.2261,0.0071,-0.0457,0.1439,0.007,-0.0311,0.1899,0.0068,0.0042,0.2197,-0.0085,0.0702,0.1471,-0.0069,0.0663,0.1913,0.0069,0.0707,0.1959,0.0085,0.0631,0.1461,0.0103,0.0518,0.1217,0.0073,-0.0453,0.0668,-0.0073,-0.0352,0.0725,0.0071,-0.0549,0.1474,0.007,-0.0383,0.1947,0.0068,0.0029,0.2261,-0.0071,-0.0457,0.1439,-0.007,-0.0311,0.1899,-0.0068,0.0042,0.2197,0.0085,0.0702,0.1471,0.0069,0.0663,0.1913,-0.0449,0.0513,0.1356,0.0785,0.0692,0.17,-0.0674,-0.0456,0.1347,0.0786,-0.0345,0.1734,-0.0899,0.0511,0.2126,0.0449,0.0513,0.1356,-0.0882,-0.0154,0.2107,-0.0786,-0.0345,0.1734,-0.0534,-0.0413,0.0674,0.0534,-0.0349,0.071,0.0674,-0.0456,0.1347,0.0882,-0.0154,0.2151,0.0899,0.0511,0.2126,-0.0785,0.0692,0.17,-0.0103,0.0475,0.1214,0.0103,0.0475,0.1214,-0.0534,-0.0349,0.071,-0.0334,-0.045,0.0664,0.0334,-0.0323,0.0736,0.0534,-0.0413,0.0674,0.0334,-0.045,0.0664,-0.0334,-0.0323,0.0736,-0.0073,-0.0585,0.1033,0.0073,-0.0479,0.1042,0.0073,-0.0585,0.1033,-0.0073,-0.0479,0.1042,-0.059,-0.0536,0.0996,0.059,-0.0468,0.1,-0.0511,0.019,0.2245,0.0512,0.0182,0.2159,0.091,0.0057,0.2214,-0.091,0.0057,0.2214,0.0511,0.019,0.2245,-0.0512,0.0182,0.2159,0.0068,0.0328,0.2255,-0.0068,0.0331,0.2188,-0.0068,0.0328,0.2255,0.0068,0.0331,0.2188,0.091,0.0047,0.2171,-0.091,0.0047,0.2171,-0.0696,0.0748,0.1684,-0.032,-0.0364,0.0507,0.0477,-0.0439,0.0664,0.0448,0.062,0.1432,-0.0448,0.0532,0.1438,0.0696,0.0674,0.1689,0.032,-0.0235,0.0576,-0.0477,-0.0328,0.0727,0.0655,0.0631,0.1504,-0.0655,0.0583,0.1512,0.0506,-0.0332,0.0525,-0.0506,-0.0332,0.0525,-0.0775,-0.0133,0.2178,0.079,0.0571,0.2136,0.0775,-0.0131,0.2102,-0.079,0.0512,0.21,-0.0513,0.0507,0.22,0.0513,0.0454,0.2147,0.0915,0.0402,0.2259,0.032,-0.0364,0.0507,-0.0448,0.062,0.1432,0.0448,0.0532,0.1438,-0.032,-0.0235,0.0576,0.0513,0.0507,0.22,-0.0513,0.0454,0.2147,-0.0212,0.0688,0.1985,-0.0224,0.0625,0.1495,-0.0241,0.0528,0.1255,-0.0175,-0.0452,0.0667,0.0175,-0.0332,0.0735,0.0597,-0.0536,0.1403,0.0693,-0.0401,0.1809,0.0775,-0.0133,0.2178,-0.0597,-0.0434,0.1359,-0.0693,-0.0323,0.1746,-0.0775,-0.0131,0.2102,-0.0693,-0.0401,0.1809,-0.0597,-0.0536,0.1403,-0.0525,-0.0566,0.1007,0.0693,-0.0323,0.1746,0.0597,-0.0434,0.1359,0.0525,-0.0448,0.1015,-0.0189,-0.0548,0.1465,-0.0201,-0.0387,0.1928,-0.021,0.0006,0.225,0.0189,-0.0438,0.1422,0.0201,-0.03,0.1869,0.021,0.0019,0.2173,-0.0838,-0.0288,0.1964,-0.073,-0.0455,0.1577,-0.0625,-0.0475,0.1173,-0.0377,-0.0568,0.1245,-0.0427,-0.0465,0.1662,-0.0478,-0.025,0.2066,0.0377,-0.0445,0.1203,0.0427,-0.0371,0.1587,0.0478,-0.0194,0.1983,0.0625,-0.0536,0.1196,0.073,-0.0455,0.1577,0.0838,-0.0263,0.1919,0.0478,-0.025,0.2066,0.0427,-0.0465,0.1662,0.0377,-0.0568,0.1245,-0.0478,-0.0194,0.1983,-0.0427,-0.0371,0.1587,-0.0377,-0.0445,0.1203,-0.079,0.0571,0.2136,0.079,0.0512,0.21,0.0696,0.0748,0.1684,-0.0696,0.0674,0.1689,-0.0224,0.071,0.1505,-0.0212,0.0634,0.1933,-0.0493,0.0762,0.1801,-0.0493,0.0682,0.1793,0.086,0.0748,0.1907,-0.086,0.0748,0.1907,0.0493,0.0762,0.1801,0.0493,0.0682,0.1793,0.0073,-0.0364,0.0507,0.0098,0.0566,0.13,0.0098,0.0492,0.1297,0.0073,-0.0261,0.0562,-0.0072,-0.057,0.1269,-0.0071,-0.0456,0.1716,0.0069,-0.02,0.2146,0.0072,-0.0473,0.1237,0.0071,-0.038,0.1661,-0.0069,-0.0152,0.2086,0.0074,0.0754,0.1673,-0.0074,0.069,0.1658,0.0212,0.0688,0.1985,0.0224,0.0625,0.1495,0.0241,0.0528,0.1255,0.0175,-0.0452,0.0667,-0.0175,-0.0332,0.0735,0.0189,-0.0548,0.1465,0.0201,-0.0387,0.1928,0.021,0.0006,0.225,-0.0189,-0.0438,0.1422,-0.0201,-0.03,0.1869,-0.021,0.0019,0.2173,0.0224,0.071,0.1505,0.0212,0.0634,0.1933,-0.0073,-0.0364,0.0507,-0.0098,0.0566,0.13,-0.0098,0.0492,0.1297,-0.0073,-0.0261,0.0562,0.0072,-0.057,0.1269,0.0071,-0.0456,0.1716,-0.0069,-0.02,0.2146,-0.0072,-0.0473,0.1237,-0.0071,-0.038,0.1661,0.0069,-0.0152,0.2086,-0.0074,0.0754,0.1673,0.0074,0.069,0.1658,-0,0.0707,0.1959,-0,0.064,0.146,-0,0.052,0.1214,0,-0.0453,0.0668,-0,-0.0365,0.0718,-0,-0.0549,0.1474,-0,-0.0383,0.1947,-0,0.0029,0.2261,-0,-0.0469,0.1444,-0,-0.032,0.1905,-0,0.004,0.2205,-0,0.0702,0.147,-0,0.0669,0.1919,0.0655,0.0583,0.1512,-0.0655,0.0631,0.1504,0.0506,-0.0267,0.0559,-0.0506,-0.0267,0.0559,0.0915,0.0372,0.2236,-0.0241,0.0478,0.1252,-0.0838,-0.0263,0.1919,-0.073,-0.0409,0.1537,-0.0625,-0.0536,0.1196,0.0625,-0.0475,0.1173,0.073,-0.0409,0.1537,0.0838,-0.0288,0.1964,0.086,0.0708,0.1909,-0.086,0.0708,0.1909,0.0241,0.0478,0.1252,-0,0.0483,0.1211,-0.0455,0.0531,0.1336,0.0795,0.071,0.1684,-0.0683,-0.0485,0.1353,0.0796,-0.0368,0.175,-0.0911,0.0533,0.213,0.0455,0.0531,0.1336,-0.0893,-0.0153,0.213,-0.0796,-0.0368,0.175,-0.0541,-0.038,0.069,0.0541,-0.038,0.069,0.0683,-0.0485,0.1353,0.0893,-0.0153,0.213,0.0911,0.0533,0.213,-0.0795,0.071,0.1684,-0.0105,0.0491,0.1195,0.0105,0.0491,0.1195,0.0525,-0.0566,0.1007,-0.0525,-0.0448,0.1015,-0.0181,-0.0584,0.103,0.0181,-0.0457,0.104,-0.0477,-0.0439,0.0664,0.0477,-0.0328,0.0727,0.0181,-0.0584,0.103,-0.0181,-0.0457,0.104,0,-0.0585,0.1033,0,-0.0492,0.1041,-0.0598,-0.05,0.0992,0.0598,-0.05,0.0992,-0.0562,-0.044,0.0842,-0.0347,-0.0546,0.084,0.0347,-0.0413,0.0865,0.0562,-0.0507,0.083,0.0347,-0.0546,0.084,-0.0347,-0.0413,0.0865,-0.0073,-0.0549,0.0849,0.0073,-0.0444,0.0869,0.0073,-0.0549,0.0849,-0.0073,-0.0444,0.0869,-0.0562,-0.0507,0.083,0.0562,-0.044,0.0842,-0.0798,0.0088,0.2232,0.0798,0.0088,0.2232,0.0799,0.0073,0.2157,-0.0799,0.0073,0.2157,-0.0212,0.0293,0.2252,0.0212,0.0294,0.2172,0.0212,0.0293,0.2252,-0.0212,0.0294,0.2172,-0,0.0328,0.2255,-0,0.0331,0.2196,0.0922,0.0057,0.2192,-0.0922,0.0057,0.2192,-0.0915,0.0402,0.2259,0.0067,0.0603,0.2122,-0.0067,0.0569,0.2074,-0.0067,0.0603,0.2122,0.0067,0.0569,0.2074,-0.0915,0.0372,0.2236],"name":"animation_000003"},{"vertices":[-0.0611,0.0765,0.184,0.0611,0.0765,0.184,-0.0453,-0.0357,0.0514,0.0453,-0.0357,0.0514,-0.0611,0.0693,0.1818,0.0611,0.0693,0.1818,-0.0453,-0.0241,0.057,0.0453,-0.0241,0.057,-0.0803,0.0269,0.2432,0.0803,0.0233,0.2373,-0.0172,-0.0365,0.051,-0.0234,0.0779,0.1624,-0.0234,0.0702,0.1584,-0.0172,-0.024,0.057,0.0555,-0.0557,0.1225,0.0645,-0.0498,0.162,0.0738,-0.0365,0.2026,-0.0555,-0.0447,0.1191,-0.0645,-0.0409,0.156,-0.0738,-0.0307,0.1956,-0.0738,-0.0365,0.2026,-0.0645,-0.0498,0.162,-0.0555,-0.0557,0.1225,0.0738,-0.0307,0.1956,0.0645,-0.0409,0.156,0.0555,-0.0447,0.1191,0.0185,-0.057,0.1266,0.0195,-0.0497,0.171,-0.0206,-0.0312,0.2162,-0.0185,-0.0451,0.1233,-0.0195,-0.0401,0.1652,0.0206,-0.0245,0.2097,-0.0758,0.07,0.2208,0.0758,0.0635,0.2179,0.0758,0.07,0.2208,-0.0758,0.0635,0.2179,-0.0215,0.0772,0.2032,0.0215,0.0707,0.1986,0.0172,-0.0365,0.051,0.0234,0.0779,0.1624,0.0234,0.0702,0.1584,0.0172,-0.024,0.057,0.0213,0.045,0.237,-0.0213,0.0426,0.2301,-0.0185,-0.057,0.1266,-0.0195,-0.0497,0.171,0.0206,-0.0312,0.2162,0.0185,-0.0451,0.1233,0.0195,-0.0401,0.1652,-0.0206,-0.0245,0.2097,0.0215,0.0772,0.2032,-0.0215,0.0707,0.1986,0,-0.0365,0.051,-0,0.0784,0.1582,-0,0.0728,0.1551,-0,-0.0274,0.0554,-0,-0.0571,0.1272,-0,-0.0496,0.1724,-0,-0.0302,0.2184,-0,-0.0484,0.1248,-0,-0.0426,0.1683,-0,-0.0253,0.2137,-0,0.0784,0.2001,-0,0.0737,0.1965,0.0663,0.0727,0.1771,-0.0663,0.0727,0.1771,0.0512,-0.0299,0.0542,-0.0512,-0.0299,0.0542,-0.0927,0.0232,0.2409,-0.0244,0.075,0.1495,-0.0849,-0.0347,0.1967,-0.0739,-0.0458,0.1562,-0.0633,-0.0501,0.1182,0.0633,-0.0501,0.1182,0.0739,-0.0458,0.1562,0.0849,-0.0347,0.1967,0.0871,0.0665,0.2199,-0.0871,0.0665,0.2199,0.0244,0.075,0.1495,-0,0.0768,0.1457,0.0501,-0.0523,0.084,-0.0501,-0.0405,0.086,-0.0178,-0.0537,0.0854,0.0178,-0.041,0.0877,-0.0501,-0.0523,0.084,0.0501,-0.0405,0.086,0.0178,-0.0537,0.0854,-0.0178,-0.041,0.0877,0,-0.0538,0.0856,0,-0.0445,0.0873,-0.0569,-0.046,0.0838,0.0569,-0.046,0.0838,0.0803,0.0269,0.2432,-0.0803,0.0233,0.2373,-0.0213,0.045,0.237,0.0213,0.0426,0.2301,-0,0.048,0.2359,-0,0.0464,0.2308,0.0927,0.0232,0.2409,-0.0468,0.0797,0.1924,-0.0468,0.0718,0.1884,-0.0449,0.0757,0.1633,0.0785,0.0756,0.2014,-0.0674,-0.0522,0.1379,-0.0453,-0.0455,0.1885,0.0453,-0.0358,0.1827,0.0786,-0.0437,0.1786,-0.0899,0.0415,0.2363,0.0507,0.0526,0.2315,0.0468,0.0718,0.1884,0.0449,0.0757,0.1633,0.04,-0.0558,0.1441,-0.04,-0.0438,0.1401,-0.0882,-0.0266,0.2189,-0.0786,-0.0437,0.1786,-0.059,-0.0458,0.1008,-0.036,-0.057,0.1027,-0.04,-0.0558,0.1441,-0.0498,-0.0189,0.2274,0.036,-0.0434,0.1038,0.04,-0.0438,0.1401,0.0498,-0.0163,0.2191,0.059,-0.0526,0.1003,0.0674,-0.0522,0.1379,0.0882,-0.0257,0.2145,0.0498,-0.0189,0.2274,0.0453,-0.0455,0.1885,0.036,-0.057,0.1027,-0.0498,-0.0163,0.2191,-0.0453,-0.0358,0.1827,-0.036,-0.0434,0.1038,-0.0507,0.0526,0.2315,-0.0507,0.0484,0.2247,0.0899,0.0415,0.2363,-0.0785,0.0756,0.2014,0.0468,0.0797,0.1924,0.0507,0.0484,0.2247,-0.0069,0.0637,0.2242,-0.0085,0.0764,0.1753,-0.0103,0.0777,0.149,-0.0073,-0.0448,0.0674,0.0073,-0.0344,0.0727,-0.0071,-0.0564,0.1478,-0.007,-0.0451,0.1962,-0.0068,-0.0104,0.2339,0.0071,-0.0469,0.1449,0.007,-0.0373,0.1921,0.0068,-0.0078,0.2278,-0.0085,0.0825,0.1795,-0.0069,0.0611,0.2183,0.0069,0.0637,0.2242,0.0085,0.0764,0.1753,0.0103,0.0777,0.149,0.0073,-0.0448,0.0674,-0.0073,-0.0344,0.0727,0.0071,-0.0564,0.1478,0.007,-0.0451,0.1962,0.0068,-0.0104,0.2339,-0.0071,-0.0469,0.1449,-0.007,-0.0373,0.1921,-0.0068,-0.0078,0.2278,0.0085,0.0825,0.1795,0.0069,0.0611,0.2183,-0.0449,0.071,0.1611,0.0785,0.0715,0.2,-0.0674,-0.0462,0.1357,0.0786,-0.0389,0.1753,-0.0899,0.0389,0.2332,0.0449,0.071,0.1611,-0.0882,-0.0257,0.2145,-0.0786,-0.0389,0.1753,-0.0534,-0.0407,0.0678,0.0534,-0.0342,0.0711,0.0674,-0.0462,0.1357,0.0882,-0.0266,0.2189,0.0899,0.0389,0.2332,-0.0785,0.0715,0.2,-0.0103,0.074,0.1468,0.0103,0.074,0.1468,-0.0534,-0.0342,0.0711,-0.0334,-0.0445,0.0669,0.0334,-0.0315,0.0736,0.0534,-0.0407,0.0678,0.0334,-0.0445,0.0669,-0.0334,-0.0315,0.0736,-0.0073,-0.0575,0.1041,0.0073,-0.0468,0.1051,0.0073,-0.0575,0.1041,-0.0073,-0.0468,0.1051,-0.059,-0.0526,0.1003,0.059,-0.0458,0.1008,-0.0511,0.0051,0.2361,0.0512,0.0065,0.2275,0.091,-0.0072,0.2297,-0.091,-0.0072,0.2297,0.0511,0.0051,0.2361,-0.0512,0.0065,0.2275,0.0068,0.0183,0.2406,-0.0068,0.0204,0.2341,-0.0068,0.0183,0.2406,0.0068,0.0204,0.2341,0.091,-0.0071,0.2252,-0.091,-0.0071,0.2252,-0.0696,0.0774,0.201,-0.032,-0.0365,0.051,0.0477,-0.0434,0.067,0.0448,0.0772,0.1727,-0.0448,0.069,0.1693,0.0696,0.0703,0.1981,0.032,-0.0233,0.0574,-0.0477,-0.032,0.0728,0.0655,0.0749,0.1797,-0.0655,0.0702,0.1782,0.0506,-0.0332,0.0526,-0.0506,-0.0332,0.0526,-0.0775,-0.025,0.222,0.079,0.0443,0.2363,0.0775,-0.0232,0.2144,-0.079,0.0399,0.2308,-0.0513,0.036,0.2404,0.0513,0.0326,0.2334,0.0915,0.0238,0.2427,0.032,-0.0365,0.051,-0.0448,0.0772,0.1727,0.0448,0.069,0.1693,-0.032,-0.0233,0.0574,0.0513,0.036,0.2404,-0.0513,0.0326,0.2334,-0.0212,0.0609,0.226,-0.0224,0.0744,0.1782,-0.0241,0.0769,0.1528,-0.0175,-0.0447,0.0673,0.0175,-0.0324,0.0736,0.0597,-0.0546,0.1407,0.0693,-0.0453,0.1822,0.0775,-0.025,0.222,-0.0597,-0.0441,0.137,-0.0693,-0.0368,0.1767,-0.0775,-0.0232,0.2144,-0.0693,-0.0453,0.1822,-0.0597,-0.0546,0.1407,-0.0525,-0.0556,0.1014,0.0693,-0.0368,0.1767,0.0597,-0.0441,0.137,0.0525,-0.0437,0.1023,-0.0189,-0.0562,0.1469,-0.0201,-0.0452,0.1942,-0.021,-0.0125,0.2323,0.0189,-0.0449,0.1433,0.0201,-0.036,0.1893,0.021,-0.0096,0.2248,-0.0838,-0.0363,0.1988,-0.073,-0.0482,0.1584,-0.0625,-0.0469,0.118,-0.0377,-0.0567,0.1248,-0.0427,-0.0501,0.1668,-0.0478,-0.034,0.2096,0.0377,-0.0442,0.1212,0.0427,-0.0399,0.1603,0.0478,-0.0272,0.2022,0.0625,-0.0532,0.12,0.073,-0.0482,0.1584,0.0838,-0.033,0.1947,0.0478,-0.034,0.2096,0.0427,-0.0501,0.1668,0.0377,-0.0567,0.1248,-0.0478,-0.0272,0.2022,-0.0427,-0.0399,0.1603,-0.0377,-0.0442,0.1212,-0.079,0.0443,0.2363,0.079,0.0399,0.2308,0.0696,0.0774,0.201,-0.0696,0.0703,0.1981,-0.0224,0.0817,0.1829,-0.0212,0.0576,0.2191,-0.0493,0.0738,0.2124,-0.0493,0.0666,0.2083,0.086,0.068,0.2217,-0.086,0.068,0.2217,0.0493,0.0738,0.2124,0.0493,0.0666,0.2083,0.0073,-0.0365,0.051,0.0098,0.0783,0.1585,0.0098,0.0718,0.155,0.0073,-0.026,0.056,-0.0072,-0.0571,0.1272,-0.0071,-0.0496,0.1724,0.0069,-0.0302,0.2184,0.0072,-0.0471,0.1244,0.0071,-0.0415,0.1676,-0.0069,-0.0246,0.2131,0.0074,0.0784,0.2001,-0.0074,0.073,0.196,0.0212,0.0609,0.226,0.0224,0.0744,0.1782,0.0241,0.0769,0.1528,0.0175,-0.0447,0.0673,-0.0175,-0.0324,0.0736,0.0189,-0.0562,0.1469,0.0201,-0.0452,0.1942,0.021,-0.0125,0.2323,-0.0189,-0.0449,0.1433,-0.0201,-0.036,0.1893,-0.021,-0.0096,0.2248,0.0224,0.0817,0.1829,0.0212,0.0576,0.2191,-0.0073,-0.0365,0.051,-0.0098,0.0783,0.1585,-0.0098,0.0718,0.155,-0.0073,-0.026,0.056,0.0072,-0.0571,0.1272,0.0071,-0.0496,0.1724,-0.0069,-0.0302,0.2184,-0.0072,-0.0471,0.1244,-0.0071,-0.0415,0.1676,0.0069,-0.0246,0.2131,-0.0074,0.0784,0.2001,0.0074,0.073,0.196,-0,0.0637,0.2242,-0,0.0773,0.1757,-0,0.078,0.1488,0,-0.0448,0.0674,-0,-0.0358,0.072,-0,-0.0564,0.1478,-0,-0.0451,0.1962,-0,-0.0104,0.2339,-0,-0.0481,0.1453,-0,-0.0383,0.1926,-0,-0.0081,0.2286,-0,0.0825,0.1793,-0,0.0615,0.219,0.0655,0.0702,0.1782,-0.0655,0.0749,0.1797,0.0506,-0.0266,0.0558,-0.0506,-0.0266,0.0558,0.0915,0.0216,0.2395,-0.0241,0.0725,0.1503,-0.0838,-0.033,0.1947,-0.073,-0.0432,0.1549,-0.0625,-0.0532,0.12,0.0625,-0.0469,0.118,0.073,-0.0432,0.1549,0.0838,-0.0363,0.1988,0.086,0.0642,0.2202,-0.086,0.0642,0.2202,0.0241,0.0725,0.1503,-0,0.0748,0.1468,-0.0455,0.0736,0.1602,0.0795,0.0738,0.1993,-0.0683,-0.0492,0.136,0.0796,-0.0414,0.1766,-0.0911,0.0409,0.2343,0.0455,0.0736,0.1602,-0.0893,-0.026,0.2168,-0.0796,-0.0414,0.1766,-0.0541,-0.0374,0.0693,0.0541,-0.0374,0.0693,0.0683,-0.0492,0.136,0.0893,-0.026,0.2168,0.0911,0.0409,0.2343,-0.0795,0.0738,0.1993,-0.0105,0.0762,0.1458,0.0105,0.0762,0.1458,0.0525,-0.0556,0.1014,-0.0525,-0.0437,0.1023,-0.0181,-0.0574,0.1037,0.0181,-0.0446,0.1049,-0.0477,-0.0434,0.067,0.0477,-0.032,0.0728,0.0181,-0.0574,0.1037,-0.0181,-0.0446,0.1049,0,-0.0575,0.1041,-0,-0.0482,0.1049,-0.0598,-0.0489,0.0999,0.0598,-0.0489,0.0999,-0.0562,-0.0428,0.0848,-0.0347,-0.0535,0.0847,0.0347,-0.04,0.0871,0.0562,-0.0495,0.0836,0.0347,-0.0535,0.0847,-0.0347,-0.04,0.0871,-0.0073,-0.0538,0.0856,0.0073,-0.0431,0.0876,0.0073,-0.0538,0.0856,-0.0073,-0.0431,0.0876,-0.0562,-0.0495,0.0836,0.0562,-0.0428,0.0848,-0.0798,-0.0047,0.2323,0.0798,-0.0047,0.2323,0.0799,-0.0042,0.2245,-0.0799,-0.0042,0.2245,-0.0212,0.015,0.2395,0.0212,0.0172,0.2316,0.0212,0.015,0.2395,-0.0212,0.0172,0.2316,-0,0.0183,0.2406,-0,0.0201,0.2349,0.0922,-0.0067,0.2276,-0.0922,-0.0067,0.2276,-0.0915,0.0238,0.2427,0.0067,0.048,0.2359,-0.0067,0.0462,0.2301,-0.0067,0.048,0.2359,0.0067,0.0462,0.2301,-0.0915,0.0216,0.2395],"name":"animation_000004"},{"vertices":[-0.0611,0.0769,0.2207,0.0611,0.0769,0.2207,-0.0453,-0.0358,0.0516,0.0453,-0.0358,0.0516,-0.0611,0.0714,0.2155,0.0611,0.0714,0.2155,-0.0453,-0.024,0.0567,0.0453,-0.024,0.0567,-0.0803,0.0071,0.2574,0.0803,0.0055,0.2505,-0.0172,-0.0367,0.0512,-0.0234,0.0879,0.2021,-0.0234,0.0828,0.1951,-0.0172,-0.0239,0.0568,0.0555,-0.0555,0.1227,0.0645,-0.0529,0.1623,0.0738,-0.0447,0.2041,-0.0555,-0.0442,0.1199,-0.0645,-0.0434,0.1571,-0.0738,-0.0379,0.1979,-0.0738,-0.0447,0.2041,-0.0645,-0.0529,0.1623,-0.0555,-0.0555,0.1227,0.0738,-0.0379,0.1979,0.0645,-0.0434,0.1571,0.0555,-0.0442,0.1199,0.0185,-0.057,0.1268,0.0195,-0.0537,0.1713,-0.0206,-0.0415,0.2185,-0.0185,-0.0448,0.124,-0.0195,-0.0434,0.1665,0.0206,-0.0338,0.213,-0.0758,0.0548,0.2515,0.0758,0.0499,0.2461,0.0758,0.0548,0.2515,-0.0758,0.0499,0.2461,-0.0215,0.0689,0.2382,0.0215,0.0647,0.2312,0.0172,-0.0367,0.0512,0.0234,0.0879,0.2021,0.0234,0.0828,0.1951,0.0172,-0.0239,0.0568,0.0213,0.0268,0.2574,-0.0213,0.0267,0.2499,-0.0185,-0.057,0.1268,-0.0195,-0.0537,0.1713,0.0206,-0.0415,0.2185,0.0185,-0.0448,0.124,0.0195,-0.0434,0.1665,-0.0206,-0.0338,0.213,0.0215,0.0689,0.2382,-0.0215,0.0647,0.2312,0,-0.0367,0.0512,-0,0.0902,0.1986,-0,0.0866,0.1933,-0,-0.0273,0.0553,-0,-0.0571,0.1273,-0,-0.0537,0.1727,-0,-0.0409,0.2208,-0,-0.0482,0.1254,-0,-0.0463,0.1693,-0,-0.0353,0.2169,-0,0.0713,0.2358,-0,0.0684,0.2305,0.0663,0.0765,0.2129,-0.0663,0.0765,0.2129,0.0512,-0.0299,0.0541,-0.0512,-0.0299,0.0541,-0.0927,0.0042,0.254,-0.0244,0.0912,0.1893,-0.0849,-0.0421,0.1984,-0.0739,-0.0483,0.1569,-0.0633,-0.0496,0.1187,0.0633,-0.0496,0.1187,0.0739,-0.0483,0.1569,0.0849,-0.0421,0.1984,0.0871,0.0518,0.2492,-0.0871,0.0518,0.2492,0.0244,0.0912,0.1893,-0,0.0944,0.1868,0.0501,-0.0512,0.0847,-0.0501,-0.0392,0.0866,-0.0178,-0.0526,0.0861,0.0178,-0.0397,0.0883,-0.0501,-0.0512,0.0847,0.0501,-0.0392,0.0866,0.0178,-0.0526,0.0861,-0.0178,-0.0397,0.0883,0,-0.0526,0.0863,0,-0.0432,0.0879,-0.0569,-0.0448,0.0844,0.0569,-0.0448,0.0844,0.0803,0.0071,0.2574,-0.0803,0.0055,0.2505,-0.0213,0.0268,0.2574,0.0213,0.0267,0.2499,-0,0.0301,0.2573,-0,0.0303,0.2518,0.0927,0.0042,0.254,-0.0468,0.0759,0.2294,-0.0468,0.0705,0.2222,-0.0449,0.0855,0.202,0.0785,0.0681,0.2359,-0.0674,-0.053,0.1383,-0.0453,-0.0516,0.1891,0.0453,-0.0412,0.1845,0.0786,-0.0487,0.1794,-0.0899,0.0235,0.2556,0.0507,0.0359,0.2549,0.0468,0.0705,0.2222,0.0449,0.0855,0.202,0.04,-0.057,0.1444,-0.04,-0.0447,0.1411,-0.0882,-0.038,0.2211,-0.0786,-0.0487,0.1794,-0.059,-0.0447,0.1015,-0.036,-0.056,0.1033,-0.04,-0.057,0.1444,-0.0498,-0.0321,0.2313,0.036,-0.0423,0.1046,0.04,-0.0447,0.1411,0.0498,-0.0276,0.2235,0.059,-0.0515,0.101,0.0674,-0.053,0.1383,0.0882,-0.0361,0.2169,0.0498,-0.0321,0.2313,0.0453,-0.0516,0.1891,0.036,-0.056,0.1033,-0.0498,-0.0276,0.2235,-0.0453,-0.0412,0.1845,-0.036,-0.0423,0.1046,-0.0507,0.0359,0.2549,-0.0507,0.0343,0.2469,0.0899,0.0235,0.2556,-0.0785,0.0681,0.2359,0.0468,0.0759,0.2294,0.0507,0.0343,0.2469,-0.0069,0.0492,0.252,-0.0085,0.0804,0.2124,-0.0103,0.0938,0.1901,-0.0073,-0.0442,0.0679,0.0073,-0.0337,0.0728,-0.0071,-0.0578,0.148,-0.007,-0.0519,0.1968,-0.0068,-0.025,0.2397,0.0071,-0.0481,0.1457,0.007,-0.0438,0.1937,0.0068,-0.0209,0.2341,-0.0085,0.0841,0.2188,-0.0069,0.0488,0.2454,0.0069,0.0492,0.252,0.0085,0.0804,0.2124,0.0103,0.0938,0.1901,0.0073,-0.0442,0.0679,-0.0073,-0.0337,0.0728,0.0071,-0.0578,0.148,0.007,-0.0519,0.1968,0.0068,-0.025,0.2397,-0.0071,-0.0481,0.1457,-0.007,-0.0438,0.1937,-0.0068,-0.0209,0.2341,0.0085,0.0841,0.2188,0.0069,0.0488,0.2454,-0.0449,0.0823,0.1979,0.0785,0.065,0.2327,-0.0674,-0.0468,0.1365,0.0786,-0.0435,0.1768,-0.0899,0.0222,0.2517,0.0449,0.0823,0.1979,-0.0882,-0.0361,0.2169,-0.0786,-0.0435,0.1768,-0.0534,-0.0402,0.0682,0.0534,-0.0335,0.0713,0.0674,-0.0468,0.1365,0.0882,-0.038,0.2211,0.0899,0.0222,0.2517,-0.0785,0.065,0.2327,-0.0103,0.0915,0.1865,0.0103,0.0915,0.1865,-0.0534,-0.0335,0.0713,-0.0334,-0.044,0.0675,0.0334,-0.0307,0.0736,0.0534,-0.0402,0.0682,0.0334,-0.044,0.0675,-0.0334,-0.0307,0.0736,-0.0073,-0.0566,0.1047,0.0073,-0.0458,0.1058,0.0073,-0.0566,0.1047,-0.0073,-0.0458,0.1058,-0.059,-0.0515,0.101,0.059,-0.0447,0.1015,-0.0511,-0.011,0.2454,0.0512,-0.0074,0.2373,0.091,-0.0214,0.236,-0.091,-0.0214,0.236,0.0511,-0.011,0.2454,-0.0512,-0.0074,0.2373,0.0068,0.0009,0.2532,-0.0068,0.0046,0.2473,-0.0068,0.0009,0.2532,0.0068,0.0046,0.2473,0.091,-0.0201,0.2316,-0.091,-0.0201,0.2316,-0.0696,0.0699,0.2362,-0.032,-0.0367,0.0512,0.0477,-0.0429,0.0675,0.0448,0.0825,0.211,-0.0448,0.0768,0.2043,0.0696,0.0648,0.2305,0.032,-0.0232,0.057,-0.0477,-0.0312,0.0728,0.0655,0.0774,0.2162,-0.0655,0.0739,0.2127,0.0506,-0.0333,0.0527,-0.0506,-0.0333,0.0527,-0.0775,-0.0371,0.2246,0.079,0.0262,0.2566,0.0775,-0.0336,0.2173,-0.079,0.024,0.2497,-0.0513,0.0169,0.2577,0.0513,0.0159,0.2497,0.0915,0.0042,0.256,0.032,-0.0367,0.0512,-0.0448,0.0825,0.211,0.0448,0.0768,0.2043,-0.032,-0.0232,0.057,0.0513,0.0169,0.2577,-0.0513,0.0159,0.2497,-0.0212,0.0458,0.2527,-0.0224,0.0773,0.2141,-0.0241,0.0913,0.1932,-0.0175,-0.0442,0.0678,0.0175,-0.0316,0.0737,0.0597,-0.0556,0.141,0.0693,-0.0506,0.1829,0.0775,-0.0371,0.2246,-0.0597,-0.0448,0.1379,-0.0693,-0.0416,0.1783,-0.0775,-0.0336,0.2173,-0.0693,-0.0506,0.1829,-0.0597,-0.0556,0.141,-0.0525,-0.0546,0.102,0.0693,-0.0416,0.1783,0.0597,-0.0448,0.1379,0.0525,-0.0426,0.103,-0.0189,-0.0576,0.1471,-0.0201,-0.0518,0.1949,-0.021,-0.0267,0.2376,0.0189,-0.046,0.1442,0.0201,-0.0421,0.1909,0.021,-0.0221,0.2307,-0.0838,-0.044,0.2003,-0.073,-0.0509,0.1589,-0.0625,-0.0464,0.1187,-0.0377,-0.0566,0.125,-0.0427,-0.0536,0.1671,-0.0478,-0.0434,0.2115,0.0377,-0.0438,0.122,0.0427,-0.0428,0.1616,0.0478,-0.0354,0.2051,0.0625,-0.0529,0.1203,0.073,-0.0509,0.1589,0.0838,-0.0401,0.1967,0.0478,-0.0434,0.2115,0.0427,-0.0536,0.1671,0.0377,-0.0566,0.125,-0.0478,-0.0354,0.2051,-0.0427,-0.0428,0.1616,-0.0377,-0.0438,0.122,-0.079,0.0262,0.2566,0.079,0.024,0.2497,0.0696,0.0699,0.2362,-0.0696,0.0648,0.2305,-0.0224,0.0819,0.2216,-0.0212,0.0451,0.2449,-0.0493,0.0618,0.2452,-0.0493,0.0568,0.2384,0.086,0.0525,0.2515,-0.086,0.0525,0.2515,0.0493,0.0618,0.2452,0.0493,0.0568,0.2384,0.0073,-0.0367,0.0512,0.0098,0.09,0.1988,0.0098,0.0858,0.1928,0.0073,-0.026,0.0559,-0.0072,-0.0571,0.1273,-0.0071,-0.0537,0.1727,0.0069,-0.0409,0.2208,0.0072,-0.0469,0.1251,0.0071,-0.0451,0.1688,-0.0069,-0.0344,0.2164,0.0074,0.0713,0.2358,-0.0074,0.068,0.2297,0.0212,0.0458,0.2527,0.0224,0.0773,0.2141,0.0241,0.0913,0.1932,0.0175,-0.0442,0.0678,-0.0175,-0.0316,0.0737,0.0189,-0.0576,0.1471,0.0201,-0.0518,0.1949,0.021,-0.0267,0.2376,-0.0189,-0.046,0.1442,-0.0201,-0.0421,0.1909,-0.021,-0.0221,0.2307,0.0224,0.0819,0.2216,0.0212,0.0451,0.2449,-0.0073,-0.0367,0.0512,-0.0098,0.09,0.1988,-0.0098,0.0858,0.1928,-0.0073,-0.026,0.0559,0.0072,-0.0571,0.1273,0.0071,-0.0537,0.1727,-0.0069,-0.0409,0.2208,-0.0072,-0.0469,0.1251,-0.0071,-0.0451,0.1688,0.0069,-0.0344,0.2164,-0.0074,0.0713,0.2358,0.0074,0.068,0.2297,-0,0.0492,0.252,-0,0.081,0.2131,-0,0.0941,0.1901,0,-0.0442,0.0679,-0,-0.0351,0.0722,-0,-0.0578,0.148,-0,-0.0519,0.1968,-0,-0.025,0.2397,-0,-0.0494,0.146,-0,-0.0448,0.1941,-0,-0.0215,0.2348,-0,0.0843,0.2187,-0,0.0489,0.2462,0.0655,0.0739,0.2127,-0.0655,0.0774,0.2162,0.0506,-0.0266,0.0556,-0.0506,-0.0266,0.0556,0.0915,0.0031,0.252,-0.0241,0.0885,0.1889,-0.0838,-0.0401,0.1967,-0.073,-0.0455,0.1559,-0.0625,-0.0529,0.1203,0.0625,-0.0464,0.1187,0.073,-0.0455,0.1559,0.0838,-0.044,0.2003,0.086,0.0496,0.2485,-0.086,0.0496,0.2485,0.0241,0.0885,0.1889,-0,0.0922,0.1869,-0.0455,0.085,0.1982,0.0795,0.0674,0.2331,-0.0683,-0.0498,0.1367,0.0796,-0.0461,0.1778,-0.0911,0.0236,0.2534,0.0455,0.085,0.1982,-0.0893,-0.0369,0.2191,-0.0796,-0.0461,0.1778,-0.0541,-0.0367,0.0696,0.0541,-0.0367,0.0696,0.0683,-0.0498,0.1367,0.0893,-0.0369,0.2191,0.0911,0.0236,0.2534,-0.0795,0.0674,0.2331,-0.0105,0.0939,0.1866,0.0105,0.0939,0.1866,0.0525,-0.0546,0.102,-0.0525,-0.0426,0.103,-0.0181,-0.0564,0.1044,0.0181,-0.0435,0.1056,-0.0477,-0.0429,0.0675,0.0477,-0.0312,0.0728,0.0181,-0.0564,0.1044,-0.0181,-0.0435,0.1056,0,-0.0566,0.1047,-0,-0.0472,0.1057,-0.0598,-0.0479,0.1006,0.0598,-0.0479,0.1006,-0.0562,-0.0415,0.0854,-0.0347,-0.0523,0.0854,0.0347,-0.0387,0.0877,0.0562,-0.0483,0.0843,0.0347,-0.0523,0.0854,-0.0347,-0.0387,0.0877,-0.0073,-0.0526,0.0863,0.0073,-0.0418,0.0882,0.0073,-0.0526,0.0863,-0.0073,-0.0418,0.0882,-0.0562,-0.0483,0.0843,0.0562,-0.0415,0.0854,-0.0798,-0.0195,0.2391,0.0798,-0.0195,0.2391,0.0799,-0.017,0.2316,-0.0799,-0.017,0.2316,-0.0212,-0.0021,0.2512,0.0212,0.0021,0.2441,0.0212,-0.0021,0.2512,-0.0212,0.0021,0.2441,-0,0.0009,0.2532,-0,0.0041,0.2481,0.0922,-0.0203,0.234,-0.0922,-0.0203,0.234,-0.0915,0.0042,0.256,0.0067,0.0301,0.2573,-0.0067,0.0303,0.251,-0.0067,0.0301,0.2573,0.0067,0.0303,0.251,-0.0915,0.0031,0.252],"name":"animation_000005"},{"vertices":[-0.0611,0.0646,0.26,0.0611,0.0646,0.26,-0.0453,-0.0359,0.0518,0.0453,-0.0359,0.0518,-0.0611,0.0621,0.2529,0.0611,0.0621,0.2529,-0.0453,-0.0239,0.0564,0.0453,-0.0239,0.0564,-0.0803,-0.0153,0.2674,0.0803,-0.0145,0.2601,-0.0172,-0.0368,0.0515,-0.0234,0.0829,0.2485,-0.0234,0.0816,0.2399,-0.0172,-0.0238,0.0565,0.0555,-0.0552,0.1228,0.0645,-0.0559,0.1622,0.0738,-0.0531,0.2045,-0.0555,-0.0437,0.1206,-0.0645,-0.0459,0.158,-0.0738,-0.0453,0.1994,-0.0738,-0.0531,0.2045,-0.0645,-0.0559,0.1622,-0.0555,-0.0552,0.1228,0.0738,-0.0453,0.1994,0.0645,-0.0459,0.158,0.0555,-0.0437,0.1206,0.0185,-0.0569,0.1269,0.0195,-0.0576,0.1712,-0.0206,-0.0521,0.2194,-0.0185,-0.0445,0.1247,-0.0195,-0.0469,0.1673,0.0206,-0.0436,0.2151,-0.0758,0.0309,0.2783,0.0758,0.0287,0.2712,0.0758,0.0309,0.2783,-0.0758,0.0287,0.2712,-0.0215,0.0496,0.2719,0.0215,0.0488,0.2636,0.0172,-0.0368,0.0515,0.0234,0.0829,0.2485,0.0234,0.0816,0.2399,0.0172,-0.0238,0.0565,0.0213,0.0039,0.274,-0.0213,0.0063,0.2666,-0.0185,-0.0569,0.1269,-0.0195,-0.0576,0.1712,0.0206,-0.0521,0.2194,0.0185,-0.0445,0.1247,0.0195,-0.0469,0.1673,-0.0206,-0.0436,0.2151,0.0215,0.0496,0.2719,-0.0215,0.0488,0.2636,0,-0.0368,0.0515,-0,0.0866,0.2465,-0,0.0858,0.2401,-0,-0.0273,0.0551,0,-0.057,0.1274,-0,-0.0578,0.1726,-0,-0.0519,0.2218,-0,-0.048,0.1259,-0,-0.05,0.1699,-0,-0.0456,0.2188,-0,0.0529,0.2707,-0,0.0525,0.2646,0.0663,0.0679,0.2529,-0.0663,0.0679,0.2529,0.0512,-0.0299,0.0541,-0.0512,-0.0299,0.0541,-0.0927,-0.0169,0.2631,-0.0244,0.0917,0.2386,-0.0849,-0.0495,0.1993,-0.0739,-0.0508,0.1573,-0.0633,-0.0491,0.1191,0.0633,-0.0491,0.1191,0.0739,-0.0508,0.1573,0.0849,-0.0495,0.1993,0.0871,0.0292,0.2749,-0.0871,0.0292,0.2749,0.0244,0.0917,0.2386,-0,0.0958,0.2379,0.0501,-0.05,0.0853,-0.0501,-0.0379,0.0871,-0.0178,-0.0514,0.0867,0.0178,-0.0383,0.0888,-0.0501,-0.05,0.0853,0.0501,-0.0379,0.0871,0.0178,-0.0514,0.0867,-0.0178,-0.0383,0.0888,0,-0.0515,0.087,-0,-0.0419,0.0885,-0.0569,-0.0435,0.085,0.0569,-0.0435,0.085,0.0803,-0.0153,0.2674,-0.0803,-0.0145,0.2601,-0.0213,0.0039,0.274,0.0213,0.0063,0.2666,-0,0.0072,0.275,-0,0.0091,0.2697,0.0927,-0.0169,0.2631,-0.0468,0.0598,0.2671,-0.0468,0.0581,0.2581,-0.0449,0.0808,0.2473,0.0785,0.0499,0.2695,-0.0674,-0.0538,0.1386,-0.0453,-0.0576,0.1891,0.0453,-0.0468,0.1855,0.0786,-0.0536,0.1797,-0.0899,0.0013,0.271,0.0507,0.0133,0.2749,0.0468,0.0581,0.2581,0.0449,0.0808,0.2473,0.04,-0.0582,0.1444,-0.04,-0.0456,0.1419,-0.0882,-0.0493,0.2218,-0.0786,-0.0536,0.1797,-0.059,-0.0435,0.1022,-0.036,-0.0549,0.1039,-0.04,-0.0582,0.1444,-0.0498,-0.0456,0.2333,0.036,-0.0412,0.1053,0.04,-0.0456,0.1419,0.0498,-0.0395,0.2264,0.059,-0.0504,0.1016,0.0674,-0.0538,0.1386,0.0882,-0.0465,0.2179,0.0498,-0.0456,0.2333,0.0453,-0.0576,0.1891,0.036,-0.0549,0.1039,-0.0498,-0.0395,0.2264,-0.0453,-0.0468,0.1855,-0.036,-0.0412,0.1053,-0.0507,0.0133,0.2749,-0.0507,0.0147,0.2666,0.0899,0.0013,0.271,-0.0785,0.0499,0.2695,0.0468,0.0598,0.2671,0.0507,0.0147,0.2666,-0.0069,0.027,0.2769,-0.0085,0.0716,0.2536,-0.0103,0.0936,0.2406,-0.0073,-0.0437,0.0685,0.0073,-0.0329,0.073,-0.0071,-0.0592,0.148,-0.007,-0.0588,0.1967,-0.0068,-0.0403,0.2432,0.0071,-0.0493,0.1463,0.007,-0.0503,0.1944,0.0068,-0.0351,0.2384,-0.0085,0.0721,0.2611,-0.0069,0.0291,0.2704,0.0069,0.027,0.2769,0.0085,0.0716,0.2536,0.0103,0.0936,0.2406,0.0073,-0.0437,0.0685,-0.0073,-0.0329,0.073,0.0071,-0.0592,0.148,0.007,-0.0588,0.1967,0.0068,-0.0403,0.2432,-0.0071,-0.0493,0.1463,-0.007,-0.0503,0.1944,-0.0068,-0.0351,0.2384,0.0085,0.0721,0.2611,0.0069,0.0291,0.2704,-0.0449,0.0799,0.2422,0.0785,0.0485,0.2652,-0.0674,-0.0474,0.1372,0.0786,-0.0482,0.1776,-0.0899,0.0014,0.2668,0.0449,0.0799,0.2422,-0.0882,-0.0465,0.2179,-0.0786,-0.0482,0.1776,-0.0534,-0.0396,0.0686,0.0534,-0.0328,0.0714,0.0674,-0.0474,0.1372,0.0882,-0.0493,0.2218,0.0899,0.0014,0.2668,-0.0785,0.0485,0.2652,-0.0103,0.0933,0.2363,0.0103,0.0933,0.2363,-0.0534,-0.0328,0.0714,-0.0334,-0.0434,0.068,0.0334,-0.0299,0.0736,0.0534,-0.0396,0.0686,0.0334,-0.0434,0.068,-0.0334,-0.0299,0.0736,-0.0073,-0.0556,0.1053,0.0073,-0.0447,0.1065,0.0073,-0.0556,0.1053,-0.0073,-0.0447,0.1065,-0.059,-0.0504,0.1016,0.059,-0.0435,0.1022,-0.0511,-0.0286,0.2519,0.0512,-0.023,0.2449,0.091,-0.0364,0.24,-0.091,-0.0364,0.24,0.0511,-0.0286,0.2519,-0.0512,-0.023,0.2449,0.0068,-0.019,0.2625,-0.0068,-0.0139,0.2578,-0.0068,-0.019,0.2625,0.0068,-0.0139,0.2578,0.091,-0.034,0.236,-0.091,-0.034,0.236,-0.0696,0.0514,0.2706,-0.032,-0.0368,0.0515,0.0477,-0.0423,0.068,0.0448,0.0741,0.254,-0.0448,0.0721,0.2454,0.0696,0.0493,0.2631,0.032,-0.0231,0.0567,-0.0477,-0.0305,0.0728,0.0655,0.0671,0.2562,-0.0655,0.0656,0.2516,0.0506,-0.0333,0.0528,-0.0506,-0.0333,0.0528,-0.0775,-0.0492,0.2254,0.079,0.0034,0.2729,0.0775,-0.0441,0.2188,-0.079,0.0039,0.2656,-0.0513,-0.0058,0.2709,0.0513,-0.0041,0.2628,0.0915,-0.0176,0.265,0.032,-0.0368,0.0515,-0.0448,0.0741,0.254,0.0448,0.0721,0.2454,-0.032,-0.0231,0.0567,0.0513,-0.0058,0.2709,-0.0513,-0.0041,0.2628,-0.0212,0.0236,0.2764,-0.0224,0.068,0.2538,-0.0241,0.0901,0.2421,-0.0175,-0.0436,0.0684,0.0175,-0.0308,0.0737,0.0597,-0.0565,0.1411,0.0693,-0.056,0.1829,0.0775,-0.0492,0.2254,-0.0597,-0.0455,0.1387,-0.0693,-0.0464,0.1794,-0.0775,-0.0441,0.2188,-0.0693,-0.056,0.1829,-0.0597,-0.0565,0.1411,-0.0525,-0.0535,0.1026,0.0693,-0.0464,0.1794,0.0597,-0.0455,0.1387,0.0525,-0.0415,0.1037,-0.0189,-0.059,0.1471,-0.0201,-0.0585,0.1948,-0.021,-0.0416,0.2407,0.0189,-0.0471,0.145,0.0201,-0.0483,0.1919,0.021,-0.0355,0.2348,-0.0838,-0.0517,0.2009,-0.073,-0.0536,0.159,-0.0625,-0.0459,0.1192,-0.0377,-0.0565,0.1251,-0.0427,-0.0571,0.167,-0.0478,-0.0529,0.2122,0.0377,-0.0434,0.1227,0.0427,-0.0458,0.1626,0.0478,-0.0439,0.207,0.0625,-0.0524,0.1205,0.073,-0.0536,0.159,0.0838,-0.0473,0.1979,0.0478,-0.0529,0.2122,0.0427,-0.0571,0.167,0.0377,-0.0565,0.1251,-0.0478,-0.0439,0.207,-0.0427,-0.0458,0.1626,-0.0377,-0.0434,0.1227,-0.079,0.0034,0.2729,0.079,0.0039,0.2656,0.0696,0.0514,0.2706,-0.0696,0.0493,0.2631,-0.0224,0.0688,0.2627,-0.0212,0.0257,0.2687,-0.0493,0.0401,0.2755,-0.0493,0.0383,0.267,0.086,0.0288,0.2773,-0.086,0.0288,0.2773,0.0493,0.0401,0.2755,0.0493,0.0383,0.267,0.0073,-0.0368,0.0515,0.0098,0.0863,0.2466,0.0098,0.0854,0.2393,0.0073,-0.0259,0.0557,-0.0072,-0.057,0.1274,-0.0071,-0.0578,0.1726,0.0069,-0.0519,0.2218,0.0072,-0.0467,0.1257,0.0071,-0.0488,0.1695,-0.0069,-0.0447,0.2184,0.0074,0.0529,0.2707,-0.0074,0.0524,0.2637,0.0212,0.0236,0.2764,0.0224,0.068,0.2538,0.0241,0.0901,0.2421,0.0175,-0.0436,0.0684,-0.0175,-0.0308,0.0737,0.0189,-0.059,0.1471,0.0201,-0.0585,0.1948,0.021,-0.0416,0.2407,-0.0189,-0.0471,0.145,-0.0201,-0.0483,0.1919,-0.021,-0.0355,0.2348,0.0224,0.0688,0.2627,0.0212,0.0257,0.2687,-0.0073,-0.0368,0.0515,-0.0098,0.0863,0.2466,-0.0098,0.0854,0.2393,-0.0073,-0.0259,0.0557,0.0072,-0.057,0.1274,0.0071,-0.0578,0.1726,-0.0069,-0.0519,0.2218,-0.0072,-0.0467,0.1257,-0.0071,-0.0488,0.1695,0.0069,-0.0447,0.2184,-0.0074,0.0529,0.2707,0.0074,0.0524,0.2637,-0,0.027,0.2769,-0,0.0718,0.2545,-0,0.094,0.2407,0,-0.0437,0.0685,-0,-0.0343,0.0724,-0,-0.0592,0.148,-0,-0.0588,0.1967,-0,-0.0403,0.2432,-0,-0.0506,0.1465,-0,-0.0514,0.1947,-0,-0.0357,0.239,-0,0.0723,0.2611,-0,0.0288,0.2713,0.0655,0.0656,0.2516,-0.0655,0.0671,0.2562,0.0506,-0.0265,0.0554,-0.0506,-0.0265,0.0554,0.0915,-0.0174,0.2608,-0.0241,0.0895,0.2371,-0.0838,-0.0473,0.1979,-0.073,-0.0479,0.1566,-0.0625,-0.0524,0.1205,0.0625,-0.0459,0.1192,0.073,-0.0479,0.1566,0.0838,-0.0517,0.2009,0.086,0.0274,0.2733,-0.086,0.0274,0.2733,0.0241,0.0895,0.2371,-0,0.0937,0.2369,-0.0455,0.0821,0.2437,0.0795,0.0505,0.2667,-0.0683,-0.0505,0.1371,0.0796,-0.0509,0.1783,-0.0911,0.0021,0.269,0.0455,0.0821,0.2437,-0.0893,-0.0478,0.22,-0.0796,-0.0509,0.1783,-0.0541,-0.0361,0.0698,0.0541,-0.0361,0.0698,0.0683,-0.0505,0.1371,0.0893,-0.0478,0.22,0.0911,0.0021,0.269,-0.0795,0.0505,0.2667,-0.0105,0.0954,0.2375,0.0105,0.0954,0.2375,0.0525,-0.0535,0.1026,-0.0525,-0.0415,0.1037,-0.0181,-0.0554,0.105,0.0181,-0.0424,0.1063,-0.0477,-0.0423,0.068,0.0477,-0.0305,0.0728,0.0181,-0.0554,0.105,-0.0181,-0.0424,0.1063,0,-0.0556,0.1053,-0,-0.0461,0.1063,-0.0598,-0.0468,0.1013,0.0598,-0.0468,0.1013,-0.0562,-0.0402,0.0859,-0.0347,-0.0511,0.086,0.0347,-0.0374,0.0882,0.0562,-0.0471,0.0848,0.0347,-0.0511,0.086,-0.0347,-0.0374,0.0882,-0.0073,-0.0515,0.087,0.0073,-0.0405,0.0887,0.0073,-0.0515,0.087,-0.0073,-0.0405,0.0887,-0.0562,-0.0471,0.0848,0.0562,-0.0402,0.0859,-0.0798,-0.0354,0.2436,0.0798,-0.0354,0.2436,0.0799,-0.031,0.2368,-0.0799,-0.031,0.2368,-0.0212,-0.0214,0.2599,0.0212,-0.0155,0.2539,0.0212,-0.0214,0.2599,-0.0212,-0.0155,0.2539,-0,-0.019,0.2625,-0,-0.0145,0.2584,0.0922,-0.0349,0.2383,-0.0922,-0.0349,0.2383,-0.0915,-0.0176,0.265,0.0067,0.0072,0.275,-0.0067,0.0094,0.2689,-0.0067,0.0072,0.275,0.0067,0.0094,0.2689,-0.0915,-0.0174,0.2608],"name":"animation_000006"},{"vertices":[-0.0611,0.0386,0.2968,0.0611,0.0386,0.2968,-0.0453,-0.036,0.052,0.0453,-0.036,0.052,-0.0611,0.0397,0.2893,0.0611,0.0397,0.2893,-0.0453,-0.0238,0.0561,0.0453,-0.0238,0.0561,-0.0803,-0.0391,0.2726,0.0803,-0.0359,0.2658,-0.0172,-0.0369,0.0517,-0.0234,0.0602,0.295,-0.0234,0.0629,0.2868,-0.0172,-0.0237,0.0562,0.0555,-0.0549,0.1229,0.0645,-0.0588,0.1618,0.0738,-0.0614,0.2039,-0.0555,-0.0432,0.1212,-0.0645,-0.0485,0.1586,-0.0738,-0.0528,0.2001,-0.0738,-0.0614,0.2039,-0.0645,-0.0588,0.1618,-0.0555,-0.0549,0.1229,0.0738,-0.0528,0.2001,0.0645,-0.0485,0.1586,0.0555,-0.0432,0.1212,0.0185,-0.0568,0.1268,0.0195,-0.0614,0.1706,-0.0206,-0.0627,0.2189,-0.0185,-0.0442,0.1253,-0.0195,-0.0504,0.1678,0.0206,-0.0535,0.2159,-0.0758,-0,0.2985,0.0758,0.0009,0.291,0.0758,-0,0.2985,-0.0758,0.0009,0.291,-0.0215,0.02,0.3006,0.0215,0.0227,0.2926,0.0172,-0.0369,0.0517,0.0234,0.0602,0.295,0.0234,0.0629,0.2868,0.0172,-0.0237,0.0562,0.0213,-0.0227,0.2854,-0.0213,-0.0179,0.279,-0.0185,-0.0568,0.1268,-0.0195,-0.0614,0.1706,0.0206,-0.0627,0.2189,0.0185,-0.0442,0.1253,0.0195,-0.0504,0.1678,-0.0206,-0.0535,0.2159,0.0215,0.02,0.3006,-0.0215,0.0227,0.2926,0,-0.0369,0.0517,-0,0.0644,0.2949,-0,0.0666,0.2889,-0,-0.0273,0.055,0,-0.057,0.1274,-0,-0.0617,0.1719,-0,-0.0628,0.2214,-0,-0.0478,0.1263,-0,-0.0537,0.17,-0,-0.0562,0.2194,-0,0.0235,0.3009,-0,0.0257,0.2951,0.0663,0.0448,0.292,-0.0663,0.0448,0.292,0.0512,-0.0299,0.0541,-0.0512,-0.0299,0.0541,-0.0927,-0.0393,0.2679,-0.0244,0.0725,0.2903,-0.0849,-0.057,0.1993,-0.0739,-0.0532,0.1574,-0.0633,-0.0485,0.1194,0.0633,-0.0485,0.1194,0.0739,-0.0532,0.1574,0.0849,-0.057,0.1993,0.0871,-0.0002,0.2947,-0.0871,-0.0002,0.2947,0.0244,0.0725,0.2903,-0,0.0765,0.2915,0.0501,-0.0487,0.0858,-0.0501,-0.0365,0.0876,-0.0178,-0.0501,0.0873,0.0178,-0.037,0.0893,-0.0501,-0.0487,0.0858,0.0501,-0.0365,0.0876,0.0178,-0.0501,0.0873,-0.0178,-0.037,0.0893,0,-0.0502,0.0875,-0,-0.0406,0.089,-0.0569,-0.0422,0.0855,0.0569,-0.0422,0.0855,0.0803,-0.0391,0.2726,-0.0803,-0.0359,0.2658,-0.0213,-0.0227,0.2854,0.0213,-0.0179,0.279,-0,-0.0199,0.2875,-0,-0.0162,0.283,0.0927,-0.0393,0.2679,-0.0468,0.0313,0.3007,-0.0468,0.0338,0.2918,-0.0449,0.0589,0.293,0.0785,0.0212,0.2985,-0.0674,-0.0545,0.1386,-0.0453,-0.0635,0.1883,0.0453,-0.0523,0.186,0.0786,-0.0585,0.1794,-0.0899,-0.0243,0.2816,0.0507,-0.0143,0.2896,0.0468,0.0338,0.2918,0.0449,0.0589,0.293,0.04,-0.0593,0.1442,-0.04,-0.0465,0.1425,-0.0882,-0.0604,0.2209,-0.0786,-0.0585,0.1794,-0.059,-0.0424,0.1028,-0.036,-0.0539,0.1044,-0.04,-0.0593,0.1442,-0.0498,-0.0592,0.2332,0.036,-0.0401,0.1059,0.04,-0.0465,0.1425,0.0498,-0.0516,0.2276,0.059,-0.0493,0.1021,0.0674,-0.0545,0.1386,0.0882,-0.0567,0.2176,0.0498,-0.0592,0.2332,0.0453,-0.0635,0.1883,0.036,-0.0539,0.1044,-0.0498,-0.0516,0.2276,-0.0453,-0.0523,0.186,-0.036,-0.0401,0.1059,-0.0507,-0.0143,0.2896,-0.0507,-0.01,0.2823,0.0899,-0.0243,0.2816,-0.0785,0.0212,0.2985,0.0468,0.0313,0.3007,0.0507,-0.01,0.2823,-0.0069,-0.002,0.2965,-0.0085,0.048,0.2937,-0.0103,0.0733,0.2929,-0.0073,-0.043,0.069,0.0073,-0.0321,0.073,-0.0071,-0.0606,0.1478,-0.007,-0.0655,0.1958,-0.0068,-0.056,0.2443,0.0071,-0.0506,0.1467,0.007,-0.0568,0.1945,0.0068,-0.0498,0.2406,-0.0085,0.0451,0.3008,-0.0069,0.0023,0.2911,0.0069,-0.002,0.2965,0.0085,0.048,0.2937,0.0103,0.0733,0.2929,0.0073,-0.043,0.069,-0.0073,-0.0321,0.073,0.0071,-0.0606,0.1478,0.007,-0.0655,0.1958,0.0068,-0.056,0.2443,-0.0071,-0.0506,0.1467,-0.007,-0.0568,0.1945,-0.0068,-0.0498,0.2406,0.0085,0.0451,0.3008,0.0069,0.0023,0.2911,-0.0449,0.0604,0.288,0.0785,0.0219,0.294,-0.0674,-0.0481,0.1377,0.0786,-0.0529,0.1779,-0.0899,-0.0227,0.2776,0.0449,0.0604,0.288,-0.0882,-0.0567,0.2176,-0.0786,-0.0529,0.1779,-0.0534,-0.039,0.0689,0.0534,-0.0321,0.0714,0.0674,-0.0481,0.1377,0.0882,-0.0604,0.2209,0.0899,-0.0227,0.2776,-0.0785,0.0219,0.294,-0.0103,0.075,0.289,0.0103,0.075,0.289,-0.0534,-0.0321,0.0714,-0.0334,-0.0428,0.0686,0.0334,-0.0291,0.0736,0.0534,-0.039,0.0689,0.0334,-0.0428,0.0686,-0.0334,-0.0291,0.0736,-0.0073,-0.0545,0.1058,0.0073,-0.0436,0.1071,0.0073,-0.0545,0.1058,-0.0073,-0.0436,0.1071,-0.059,-0.0493,0.1021,0.059,-0.0424,0.1028,-0.0511,-0.0473,0.2552,0.0512,-0.0401,0.2498,0.091,-0.0519,0.2415,-0.091,-0.0519,0.2415,0.0511,-0.0473,0.2552,-0.0512,-0.0401,0.2498,0.0068,-0.0406,0.2681,-0.0068,-0.0344,0.2647,-0.0068,-0.0406,0.2681,0.0068,-0.0344,0.2647,0.091,-0.0485,0.2383,-0.091,-0.0485,0.2383,-0.0696,0.0221,0.3002,-0.032,-0.0369,0.0517,0.0477,-0.0418,0.0684,0.0448,0.0498,0.2958,-0.0448,0.052,0.2873,0.0696,0.0235,0.2924,0.032,-0.023,0.0564,-0.0477,-0.0297,0.0728,0.0655,0.0426,0.2946,-0.0655,0.0434,0.2898,0.0506,-0.0334,0.0529,-0.0506,-0.0334,0.0529,-0.0775,-0.0611,0.2246,0.079,-0.023,0.2842,0.0775,-0.0546,0.2191,-0.079,-0.0199,0.2774,-0.0513,-0.0311,0.2792,0.0513,-0.0268,0.2719,0.0915,-0.0406,0.2695,0.032,-0.0369,0.0517,-0.0448,0.0498,0.2958,0.0448,0.052,0.2873,-0.032,-0.023,0.0564,0.0513,-0.0311,0.2792,-0.0513,-0.0268,0.2719,-0.0212,-0.005,0.2948,-0.0224,0.0446,0.2923,-0.0241,0.0695,0.2927,-0.0175,-0.043,0.0689,0.0175,-0.03,0.0737,0.0597,-0.0575,0.141,0.0693,-0.0612,0.1824,0.0775,-0.0611,0.2246,-0.0597,-0.0462,0.1394,-0.0693,-0.0514,0.1799,-0.0775,-0.0546,0.2191,-0.0693,-0.0612,0.1824,-0.0597,-0.0575,0.141,-0.0525,-0.0524,0.1031,0.0693,-0.0514,0.1799,0.0597,-0.0462,0.1394,0.0525,-0.0403,0.1043,-0.0189,-0.0603,0.1469,-0.0201,-0.065,0.1939,-0.021,-0.0568,0.2415,0.0189,-0.0483,0.1455,0.0201,-0.0546,0.1922,0.021,-0.0494,0.2369,-0.0838,-0.0594,0.2005,-0.073,-0.0562,0.1589,-0.0625,-0.0453,0.1197,-0.0377,-0.0563,0.1251,-0.0427,-0.0605,0.1664,-0.0478,-0.0623,0.2116,0.0377,-0.043,0.1234,0.0427,-0.0487,0.1632,0.0478,-0.0526,0.2078,0.0625,-0.052,0.1207,0.073,-0.0562,0.1589,0.0838,-0.0546,0.1982,0.0478,-0.0623,0.2116,0.0427,-0.0605,0.1664,0.0377,-0.0563,0.1251,-0.0478,-0.0526,0.2078,-0.0427,-0.0487,0.1632,-0.0377,-0.043,0.1234,-0.079,-0.023,0.2842,0.079,-0.0199,0.2774,0.0696,0.0221,0.3002,-0.0696,0.0235,0.2924,-0.0224,0.0415,0.3008,-0.0212,-0.0002,0.2882,-0.0493,0.0096,0.2998,-0.0493,0.0116,0.2913,0.086,-0.0016,0.2967,-0.086,-0.0016,0.2967,0.0493,0.0096,0.2998,0.0493,0.0116,0.2913,0.0073,-0.0369,0.0517,0.0098,0.064,0.2949,0.0098,0.0666,0.288,0.0073,-0.0258,0.0555,-0.0072,-0.057,0.1274,-0.0071,-0.0617,0.1719,0.0069,-0.0628,0.2214,0.0072,-0.0465,0.1262,0.0071,-0.0525,0.1697,-0.0069,-0.0552,0.2191,0.0074,0.0235,0.3009,-0.0074,0.026,0.2942,0.0212,-0.005,0.2948,0.0224,0.0446,0.2923,0.0241,0.0695,0.2927,0.0175,-0.043,0.0689,-0.0175,-0.03,0.0737,0.0189,-0.0603,0.1469,0.0201,-0.065,0.1939,0.021,-0.0568,0.2415,-0.0189,-0.0483,0.1455,-0.0201,-0.0546,0.1922,-0.021,-0.0494,0.2369,0.0224,0.0415,0.3008,0.0212,-0.0002,0.2882,-0.0073,-0.0369,0.0517,-0.0098,0.064,0.2949,-0.0098,0.0666,0.288,-0.0073,-0.0258,0.0555,0.0072,-0.057,0.1274,0.0071,-0.0617,0.1719,-0.0069,-0.0628,0.2214,-0.0072,-0.0465,0.1262,-0.0071,-0.0525,0.1697,0.0069,-0.0552,0.2191,-0.0074,0.0235,0.3009,0.0074,0.026,0.2942,-0,-0.002,0.2965,-0,0.0478,0.2947,-0,0.0736,0.2932,0,-0.043,0.069,-0,-0.0335,0.0725,-0,-0.0606,0.1478,-0,-0.0655,0.1958,-0,-0.056,0.2443,-0,-0.0519,0.1469,-0,-0.058,0.1946,-0,-0.0506,0.2411,-0,0.0453,0.3008,-0,0.0018,0.2918,0.0655,0.0434,0.2898,-0.0655,0.0426,0.2946,0.0506,-0.0264,0.0553,-0.0506,-0.0264,0.0553,0.0915,-0.0389,0.2655,-0.0241,0.0713,0.288,-0.0838,-0.0546,0.1982,-0.073,-0.0503,0.157,-0.0625,-0.052,0.1207,0.0625,-0.0453,0.1197,0.073,-0.0503,0.157,0.0838,-0.0594,0.2005,0.086,-0.0012,0.2924,-0.086,-0.0012,0.2924,0.0241,0.0713,0.288,-0,0.0751,0.2897,-0.0455,0.0617,0.2904,0.0795,0.0231,0.2962,-0.0683,-0.0511,0.1374,0.0796,-0.0557,0.1783,-0.0911,-0.0228,0.28,0.0455,0.0617,0.2904,-0.0893,-0.0585,0.2194,-0.0796,-0.0557,0.1783,-0.0541,-0.0355,0.07,0.0541,-0.0355,0.07,0.0683,-0.0511,0.1374,0.0893,-0.0585,0.2194,0.0911,-0.0228,0.28,-0.0795,0.0231,0.2962,-0.0105,0.0763,0.291,0.0105,0.0763,0.291,0.0525,-0.0524,0.1031,-0.0525,-0.0403,0.1043,-0.0181,-0.0544,0.1055,0.0181,-0.0413,0.107,-0.0477,-0.0418,0.0684,0.0477,-0.0297,0.0728,0.0181,-0.0544,0.1055,-0.0181,-0.0413,0.107,0,-0.0545,0.1058,-0,-0.045,0.1069,-0.0598,-0.0456,0.1018,0.0598,-0.0456,0.1018,-0.0562,-0.0389,0.0863,-0.0347,-0.0499,0.0866,0.0347,-0.036,0.0887,0.0562,-0.0459,0.0854,0.0347,-0.0499,0.0866,-0.0347,-0.036,0.0887,-0.0073,-0.0502,0.0875,0.0073,-0.0392,0.0892,0.0073,-0.0502,0.0875,-0.0073,-0.0392,0.0892,-0.0562,-0.0459,0.0854,0.0562,-0.0389,0.0863,-0.0798,-0.0518,0.2453,0.0798,-0.0518,0.2453,0.0799,-0.0458,0.2399,-0.0799,-0.0458,0.2399,-0.0212,-0.0423,0.2649,0.0212,-0.035,0.2606,0.0212,-0.0423,0.2649,-0.0212,-0.035,0.2606,-0,-0.0406,0.2681,-0,-0.0352,0.2652,0.0922,-0.05,0.2404,-0.0922,-0.05,0.2404,-0.0915,-0.0406,0.2695,0.0067,-0.0199,0.2875,-0.0067,-0.0156,0.2823,-0.0067,-0.0199,0.2875,0.0067,-0.0156,0.2823,-0.0915,-0.0389,0.2655],"name":"animation_000007"},{"vertices":[-0.0611,-0.0001,0.3259,0.0611,-0.0001,0.3259,-0.0453,-0.0361,0.0522,0.0453,-0.0361,0.0522,-0.0611,0.0043,0.3197,0.0611,0.0043,0.3197,-0.0453,-0.0238,0.0559,0.0453,-0.0238,0.0559,-0.0803,-0.0633,0.273,0.0803,-0.058,0.2675,-0.0172,-0.037,0.052,-0.0234,0.0198,0.3342,-0.0234,0.0261,0.3282,-0.0172,-0.0236,0.0559,0.0555,-0.0545,0.1228,0.0645,-0.0617,0.161,0.0738,-0.0695,0.2023,-0.0555,-0.0427,0.1218,-0.0645,-0.051,0.1589,-0.0738,-0.0604,0.1998,-0.0738,-0.0695,0.2023,-0.0645,-0.0617,0.161,-0.0555,-0.0545,0.1228,0.0738,-0.0604,0.1998,0.0645,-0.051,0.1589,0.0555,-0.0427,0.1218,0.0185,-0.0566,0.1267,0.0195,-0.0651,0.1695,-0.0206,-0.0731,0.217,-0.0185,-0.0439,0.1258,-0.0195,-0.0538,0.1679,0.0206,-0.0635,0.2155,-0.0758,-0.0358,0.3103,0.0758,-0.0317,0.3038,0.0758,-0.0358,0.3103,-0.0758,-0.0317,0.3038,-0.0215,-0.0183,0.3207,0.0215,-0.0124,0.3145,0.0172,-0.037,0.052,0.0234,0.0198,0.3342,0.0234,0.0261,0.3282,0.0172,-0.0236,0.0559,0.0213,-0.0517,0.2908,-0.0213,-0.0449,0.2863,-0.0185,-0.0566,0.1267,-0.0195,-0.0651,0.1695,0.0206,-0.0731,0.217,0.0185,-0.0439,0.1258,0.0195,-0.0538,0.1679,-0.0206,-0.0635,0.2155,0.0215,-0.0183,0.3207,-0.0215,-0.0124,0.3145,0,-0.037,0.052,-0,0.0236,0.336,-0,0.0284,0.3318,-0,-0.0272,0.0548,0,-0.0568,0.1273,-0,-0.0656,0.1709,-0,-0.0736,0.2194,-0,-0.0476,0.1267,-0,-0.0574,0.1697,-0,-0.0667,0.2185,-0,-0.0152,0.3225,-0,-0.0107,0.3181,0.0663,0.0076,0.3244,-0.0663,0.0076,0.3244,0.0512,-0.0299,0.054,-0.0512,-0.0299,0.054,-0.0927,-0.0618,0.2684,-0.0244,0.033,0.3357,-0.0849,-0.0644,0.1983,-0.0739,-0.0556,0.1572,-0.0633,-0.048,0.1197,0.0633,-0.048,0.1197,0.0739,-0.0556,0.1572,0.0849,-0.0644,0.1983,0.0871,-0.0343,0.3067,-0.0871,-0.0343,0.3067,0.0244,0.033,0.3357,-0,0.0359,0.3386,0.0501,-0.0475,0.0863,-0.0501,-0.0352,0.088,-0.0178,-0.0489,0.0878,0.0178,-0.0356,0.0897,-0.0501,-0.0475,0.0863,0.0501,-0.0352,0.088,0.0178,-0.0489,0.0878,-0.0178,-0.0356,0.0897,0,-0.049,0.0881,-0,-0.0393,0.0895,-0.0569,-0.041,0.0859,0.0569,-0.041,0.0859,0.0803,-0.0633,0.273,-0.0803,-0.058,0.2675,-0.0213,-0.0517,0.2908,0.0213,-0.0449,0.2863,-0,-0.0496,0.2938,-0,-0.0446,0.2907,0.0927,-0.0618,0.2684,-0.0468,-0.0081,0.3259,-0.0468,-0.0019,0.3189,-0.0449,0.0197,0.3318,0.0785,-0.0162,0.3193,-0.0674,-0.0552,0.1386,-0.0453,-0.0693,0.1869,0.0453,-0.0579,0.1858,0.0786,-0.0634,0.1785,-0.0899,-0.052,0.2866,0.0507,-0.0454,0.2978,0.0468,-0.0019,0.3189,0.0449,0.0197,0.3318,0.04,-0.0604,0.1438,-0.04,-0.0475,0.143,-0.0882,-0.0711,0.2186,-0.0786,-0.0634,0.1785,-0.059,-0.0412,0.1033,-0.036,-0.0528,0.1049,-0.04,-0.0604,0.1438,-0.0498,-0.0725,0.2311,0.036,-0.0389,0.1064,0.04,-0.0475,0.143,0.0498,-0.0637,0.2272,0.059,-0.0482,0.1026,0.0674,-0.0552,0.1386,0.0882,-0.0667,0.2161,0.0498,-0.0725,0.2311,0.0453,-0.0693,0.1869,0.036,-0.0528,0.1049,-0.0498,-0.0637,0.2272,-0.0453,-0.0579,0.1858,-0.036,-0.0389,0.1064,-0.0507,-0.0454,0.2978,-0.0507,-0.0387,0.2924,0.0899,-0.052,0.2866,-0.0785,-0.0162,0.3193,0.0468,-0.0081,0.3259,0.0507,-0.0387,0.2924,-0.0069,-0.0361,0.3087,-0.0085,0.0101,0.327,-0.0103,0.0325,0.3384,-0.0073,-0.0424,0.0695,0.0073,-0.0314,0.0731,-0.0071,-0.0619,0.1473,-0.007,-0.0721,0.1941,-0.0068,-0.0718,0.2428,0.0071,-0.0518,0.1469,0.007,-0.0633,0.1937,0.0068,-0.0647,0.2406,-0.0085,0.0043,0.3321,-0.0069,-0.0301,0.3052,0.0069,-0.0361,0.3087,0.0085,0.0101,0.327,0.0103,0.0325,0.3384,0.0073,-0.0424,0.0695,-0.0073,-0.0314,0.0731,0.0071,-0.0619,0.1473,0.007,-0.0721,0.1941,0.0068,-0.0718,0.2428,-0.0071,-0.0518,0.1469,-0.007,-0.0633,0.1937,-0.0068,-0.0647,0.2406,0.0085,0.0043,0.3321,0.0069,-0.0301,0.3052,-0.0449,0.0233,0.3281,0.0785,-0.0137,0.3155,-0.0674,-0.0487,0.138,0.0786,-0.0576,0.1777,-0.0899,-0.0491,0.2834,0.0449,0.0233,0.3281,-0.0882,-0.0667,0.2161,-0.0786,-0.0576,0.1777,-0.0534,-0.0384,0.0693,0.0534,-0.0314,0.0715,0.0674,-0.0487,0.138,0.0882,-0.0711,0.2186,0.0899,-0.0491,0.2834,-0.0785,-0.0137,0.3155,-0.0103,0.0358,0.3357,0.0103,0.0358,0.3357,-0.0534,-0.0314,0.0715,-0.0334,-0.0422,0.069,0.0334,-0.0283,0.0735,0.0534,-0.0384,0.0693,0.0334,-0.0422,0.069,-0.0334,-0.0283,0.0735,-0.0073,-0.0534,0.1063,0.0073,-0.0425,0.1076,0.0073,-0.0534,0.1063,-0.0073,-0.0425,0.1076,-0.059,-0.0482,0.1026,0.059,-0.0412,0.1033,-0.0511,-0.0664,0.2552,0.0512,-0.058,0.2517,0.091,-0.0674,0.2407,-0.091,-0.0674,0.2407,0.0511,-0.0664,0.2552,-0.0512,-0.058,0.2517,0.0068,-0.0632,0.2695,-0.0068,-0.0563,0.2678,-0.0068,-0.0632,0.2695,0.0068,-0.0563,0.2678,0.091,-0.0633,0.2383,-0.091,-0.0633,0.2383,-0.0696,-0.0162,0.3212,-0.032,-0.037,0.052,0.0477,-0.0412,0.0689,0.0448,0.0103,0.3301,-0.0448,0.0161,0.3235,0.0696,-0.0115,0.3148,0.032,-0.0229,0.0561,-0.0477,-0.0289,0.0727,0.0655,0.0044,0.3257,-0.0655,0.0074,0.3218,0.0506,-0.0334,0.053,-0.0506,-0.0334,0.053,-0.0775,-0.0725,0.2221,0.079,-0.0517,0.2895,0.0775,-0.0649,0.2181,-0.079,-0.0463,0.2842,-0.0513,-0.0577,0.282,0.0513,-0.0511,0.2765,0.0915,-0.0637,0.2696,0.032,-0.037,0.052,-0.0448,0.0103,0.3301,0.0448,0.0161,0.3235,-0.032,-0.0229,0.0561,0.0513,-0.0577,0.282,-0.0513,-0.0511,0.2765,-0.0212,-0.0384,0.306,-0.0224,0.0077,0.3242,-0.0241,0.0292,0.3364,-0.0175,-0.0424,0.0694,0.0175,-0.0292,0.0736,0.0597,-0.0583,0.1408,0.0693,-0.0664,0.1812,0.0775,-0.0725,0.2221,-0.0597,-0.0469,0.1399,-0.0693,-0.0563,0.1798,-0.0775,-0.0649,0.2181,-0.0693,-0.0664,0.1812,-0.0597,-0.0583,0.1408,-0.0525,-0.0513,0.1036,0.0693,-0.0563,0.1798,0.0597,-0.0469,0.1399,0.0525,-0.0392,0.1049,-0.0189,-0.0616,0.1465,-0.0201,-0.0714,0.1923,-0.021,-0.0719,0.2399,0.0189,-0.0494,0.1459,0.0201,-0.0608,0.1917,0.021,-0.0636,0.2369,-0.0838,-0.067,0.1992,-0.073,-0.0588,0.1584,-0.0625,-0.0448,0.1202,-0.0377,-0.056,0.125,-0.0427,-0.0638,0.1655,-0.0478,-0.0716,0.2098,0.0377,-0.0426,0.1239,0.0427,-0.0517,0.1634,0.0478,-0.0614,0.2075,0.0625,-0.0515,0.1208,0.073,-0.0588,0.1584,0.0838,-0.0618,0.1976,0.0478,-0.0716,0.2098,0.0427,-0.0638,0.1655,0.0377,-0.056,0.125,-0.0478,-0.0614,0.2075,-0.0427,-0.0517,0.1634,-0.0377,-0.0426,0.1239,-0.079,-0.0517,0.2895,0.079,-0.0463,0.2842,0.0696,-0.0162,0.3212,-0.0696,-0.0115,0.3148,-0.0224,0.0011,0.3304,-0.0212,-0.0315,0.3015,-0.0493,-0.0275,0.3156,-0.0493,-0.022,0.3086,0.086,-0.0365,0.308,-0.086,-0.0365,0.308,0.0493,-0.0275,0.3156,0.0493,-0.022,0.3086,0.0073,-0.037,0.052,0.0098,0.0234,0.3358,0.0098,0.0288,0.3309,0.0073,-0.0258,0.0553,-0.0072,-0.0568,0.1273,-0.0071,-0.0656,0.1709,0.0069,-0.0736,0.2194,0.0072,-0.0462,0.1266,0.0071,-0.0561,0.1696,-0.0069,-0.0656,0.2183,0.0074,-0.0152,0.3225,-0.0074,-0.01,0.3174,0.0212,-0.0384,0.306,0.0224,0.0077,0.3242,0.0241,0.0292,0.3364,0.0175,-0.0424,0.0694,-0.0175,-0.0292,0.0736,0.0189,-0.0616,0.1465,0.0201,-0.0714,0.1923,0.021,-0.0719,0.2399,-0.0189,-0.0494,0.1459,-0.0201,-0.0608,0.1917,-0.021,-0.0636,0.2369,0.0224,0.0011,0.3304,0.0212,-0.0315,0.3015,-0.0073,-0.037,0.052,-0.0098,0.0234,0.3358,-0.0098,0.0288,0.3309,-0.0073,-0.0258,0.0553,0.0072,-0.0568,0.1273,0.0071,-0.0656,0.1709,-0.0069,-0.0736,0.2194,-0.0072,-0.0462,0.1266,-0.0071,-0.0561,0.1696,0.0069,-0.0656,0.2183,-0.0074,-0.0152,0.3225,0.0074,-0.01,0.3174,-0,-0.0361,0.3087,-0,0.0096,0.3277,-0,0.0326,0.3388,0,-0.0424,0.0695,-0,-0.0328,0.0726,-0,-0.0619,0.1473,-0,-0.0721,0.1941,-0,-0.0718,0.2428,-0,-0.0531,0.147,-0,-0.0644,0.1938,-0,-0.0656,0.2409,-0,0.0045,0.3322,-0,-0.0309,0.3056,0.0655,0.0074,0.3218,-0.0655,0.0044,0.3257,0.0506,-0.0264,0.0551,-0.0506,-0.0264,0.0551,0.0915,-0.0607,0.2663,-0.0241,0.033,0.3331,-0.0838,-0.0618,0.1976,-0.073,-0.0527,0.1571,-0.0625,-0.0515,0.1208,0.0625,-0.0448,0.1202,0.073,-0.0527,0.1571,0.0838,-0.067,0.1992,0.086,-0.0343,0.3042,-0.086,-0.0343,0.3042,0.0241,0.033,0.3331,-0,0.0355,0.3364,-0.0455,0.0233,0.3308,0.0795,-0.0136,0.3181,-0.0683,-0.0518,0.1376,0.0796,-0.0604,0.1778,-0.0911,-0.05,0.2856,0.0455,0.0233,0.3308,-0.0893,-0.0689,0.2176,-0.0796,-0.0604,0.1778,-0.0541,-0.0348,0.0702,0.0541,-0.0348,0.0702,0.0683,-0.0518,0.1376,0.0893,-0.0689,0.2176,0.0911,-0.05,0.2856,-0.0795,-0.0136,0.3181,-0.0105,0.036,0.3381,0.0105,0.036,0.3381,0.0525,-0.0513,0.1036,-0.0525,-0.0392,0.1049,-0.0181,-0.0533,0.1059,0.0181,-0.0402,0.1075,-0.0477,-0.0412,0.0689,0.0477,-0.0289,0.0727,0.0181,-0.0533,0.1059,-0.0181,-0.0402,0.1075,0,-0.0534,0.1063,-0,-0.0439,0.1075,-0.0598,-0.0445,0.1023,0.0598,-0.0445,0.1023,-0.0562,-0.0376,0.0868,-0.0347,-0.0487,0.0871,0.0347,-0.0346,0.0891,0.0562,-0.0446,0.0858,0.0347,-0.0487,0.0871,-0.0347,-0.0346,0.0891,-0.0073,-0.049,0.0881,0.0073,-0.0378,0.0897,0.0073,-0.049,0.0881,-0.0073,-0.0378,0.0897,-0.0562,-0.0446,0.0858,0.0562,-0.0376,0.0868,-0.0798,-0.0683,0.2444,0.0798,-0.0683,0.2444,0.0799,-0.0611,0.2406,-0.0799,-0.0611,0.2406,-0.0212,-0.064,0.2659,0.0212,-0.0558,0.2636,0.0212,-0.064,0.2659,-0.0212,-0.0558,0.2636,-0,-0.0632,0.2695,-0,-0.0572,0.268,0.0922,-0.0652,0.24,-0.0922,-0.0652,0.24,-0.0915,-0.0637,0.2696,0.0067,-0.0496,0.2938,-0.0067,-0.0438,0.2902,-0.0067,-0.0496,0.2938,0.0067,-0.0438,0.2902,-0.0915,-0.0607,0.2663],"name":"animation_000008"},{"vertices":[-0.0611,-0.0483,0.3424,0.0611,-0.0483,0.3424,-0.0453,-0.0362,0.0525,0.0453,-0.0362,0.0525,-0.0611,-0.0416,0.339,0.0611,-0.0416,0.339,-0.0453,-0.0237,0.0556,0.0453,-0.0237,0.0556,-0.0803,-0.0867,0.2688,0.0803,-0.0798,0.2652,-0.0172,-0.037,0.0522,-0.0234,-0.0344,0.359,-0.0234,-0.0261,0.3566,-0.0172,-0.0235,0.0556,0.0555,-0.0541,0.1227,0.0645,-0.0644,0.1599,0.0738,-0.0772,0.1996,-0.0555,-0.0422,0.1223,-0.0645,-0.0535,0.1588,-0.0738,-0.0678,0.1986,-0.0738,-0.0772,0.1996,-0.0645,-0.0644,0.1599,-0.0555,-0.0541,0.1227,0.0738,-0.0678,0.1986,0.0645,-0.0535,0.1588,0.0555,-0.0422,0.1223,0.0185,-0.0565,0.1265,0.0195,-0.0687,0.168,-0.0206,-0.0832,0.2137,-0.0185,-0.0437,0.1263,-0.0195,-0.0572,0.1675,0.0206,-0.0734,0.2137,-0.0758,-0.0738,0.3126,0.0758,-0.0673,0.3084,0.0758,-0.0738,0.3126,-0.0758,-0.0673,0.3084,-0.0215,-0.0621,0.3296,0.0215,-0.054,0.3264,0.0172,-0.037,0.0522,0.0234,-0.0344,0.359,0.0234,-0.0261,0.3566,0.0172,-0.0235,0.0556,0.0213,-0.0814,0.2898,-0.0213,-0.0734,0.2877,-0.0185,-0.0565,0.1265,-0.0195,-0.0687,0.168,0.0206,-0.0832,0.2137,0.0185,-0.0437,0.1263,0.0195,-0.0572,0.1675,-0.0206,-0.0734,0.2137,0.0215,-0.0621,0.3296,-0.0215,-0.054,0.3264,0,-0.037,0.0522,-0,-0.0319,0.3624,-0,-0.0257,0.3608,-0,-0.0272,0.0547,0,-0.0567,0.1271,-0,-0.0693,0.1693,-0,-0.084,0.2161,-0,-0.0474,0.1269,-0,-0.0609,0.169,-0,-0.077,0.2162,-0,-0.06,0.3326,-0,-0.054,0.3305,0.0663,-0.0408,0.3447,-0.0663,-0.0408,0.3447,0.0512,-0.0299,0.054,-0.0512,-0.0299,0.054,-0.0927,-0.0838,0.2648,-0.0244,-0.0235,0.3664,-0.0849,-0.0716,0.1965,-0.0739,-0.058,0.1566,-0.0633,-0.0474,0.1199,0.0633,-0.0474,0.1199,0.0739,-0.058,0.1566,0.0849,-0.0716,0.1965,0.0871,-0.0709,0.3099,-0.0871,-0.0709,0.3099,0.0244,-0.0235,0.3664,-0,-0.0222,0.3703,0.0501,-0.0462,0.0868,-0.0501,-0.0338,0.0883,-0.0178,-0.0476,0.0883,0.0178,-0.0342,0.0901,-0.0501,-0.0462,0.0868,0.0501,-0.0338,0.0883,0.0178,-0.0476,0.0883,-0.0178,-0.0342,0.0901,0,-0.0477,0.0885,-0,-0.0379,0.0899,-0.0569,-0.0396,0.0863,0.0569,-0.0396,0.0863,0.0803,-0.0867,0.2688,-0.0803,-0.0798,0.2652,-0.0213,-0.0814,0.2898,0.0213,-0.0734,0.2877,-0,-0.0804,0.2933,-0,-0.0746,0.292,0.0927,-0.0838,0.2648,-0.0468,-0.0552,0.3388,-0.0468,-0.0465,0.3352,-0.0449,-0.0335,0.3568,0.0785,-0.0596,0.3292,-0.0674,-0.0559,0.1384,-0.0453,-0.0748,0.1847,0.0453,-0.0634,0.1849,0.0786,-0.068,0.1771,-0.0899,-0.0804,0.2855,0.0507,-0.0781,0.2985,0.0468,-0.0465,0.3352,0.0449,-0.0335,0.3568,0.04,-0.0614,0.1433,-0.04,-0.0484,0.1433,-0.0882,-0.0811,0.215,-0.0786,-0.068,0.1771,-0.059,-0.04,0.1038,-0.036,-0.0517,0.1053,-0.04,-0.0614,0.1433,-0.0498,-0.0853,0.2271,0.036,-0.0378,0.1069,0.04,-0.0484,0.1433,0.0498,-0.0757,0.2252,0.059,-0.047,0.103,0.0674,-0.0559,0.1384,0.0882,-0.0763,0.2135,0.0498,-0.0853,0.2271,0.0453,-0.0748,0.1847,0.036,-0.0517,0.1053,-0.0498,-0.0757,0.2252,-0.0453,-0.0634,0.1849,-0.036,-0.0378,0.1069,-0.0507,-0.0781,0.2985,-0.0507,-0.0698,0.2958,0.0899,-0.0804,0.2855,-0.0785,-0.0596,0.3292,0.0468,-0.0552,0.3388,0.0507,-0.0698,0.2958,-0.0069,-0.0732,0.3122,-0.0085,-0.0391,0.3479,-0.0103,-0.0251,0.3686,-0.0073,-0.0418,0.07,0.0073,-0.0306,0.0731,-0.0071,-0.0632,0.1467,-0.007,-0.0785,0.1916,-0.0068,-0.087,0.239,0.0071,-0.053,0.1469,0.007,-0.0696,0.1922,0.0068,-0.0796,0.2382,-0.0085,-0.0466,0.3499,-0.0069,-0.0663,0.3109,0.0069,-0.0732,0.3122,0.0085,-0.0391,0.3479,0.0103,-0.0251,0.3686,0.0073,-0.0418,0.07,-0.0073,-0.0306,0.0731,0.0071,-0.0632,0.1467,0.007,-0.0785,0.1916,0.0068,-0.087,0.239,-0.0071,-0.053,0.1469,-0.007,-0.0696,0.1922,-0.0068,-0.0796,0.2382,0.0085,-0.0466,0.3499,0.0069,-0.0663,0.3109,-0.0449,-0.0286,0.3552,0.0785,-0.0556,0.3269,-0.0674,-0.0493,0.1382,0.0786,-0.0621,0.1769,-0.0899,-0.0765,0.2835,0.0449,-0.0286,0.3552,-0.0882,-0.0763,0.2135,-0.0786,-0.0621,0.1769,-0.0534,-0.0377,0.0696,0.0534,-0.0307,0.0715,0.0674,-0.0493,0.1382,0.0882,-0.0811,0.215,0.0899,-0.0765,0.2835,-0.0785,-0.0556,0.3269,-0.0103,-0.0209,0.3677,0.0103,-0.0209,0.3677,-0.0534,-0.0307,0.0715,-0.0334,-0.0416,0.0695,0.0334,-0.0275,0.0734,0.0534,-0.0377,0.0696,0.0334,-0.0416,0.0695,-0.0334,-0.0275,0.0734,-0.0073,-0.0523,0.1067,0.0073,-0.0413,0.1081,0.0073,-0.0523,0.1067,-0.0073,-0.0413,0.1081,-0.059,-0.047,0.103,0.059,-0.04,0.1038,-0.0511,-0.0853,0.2517,0.0512,-0.0762,0.2506,0.091,-0.0826,0.2374,-0.091,-0.0826,0.2374,0.0511,-0.0853,0.2517,-0.0512,-0.0762,0.2506,0.0068,-0.0858,0.2665,-0.0068,-0.0786,0.2667,-0.0068,-0.0858,0.2665,0.0068,-0.0786,0.2667,0.091,-0.0779,0.2361,-0.091,-0.0779,0.2361,-0.0696,-0.0605,0.331,-0.032,-0.037,0.0522,0.0477,-0.0405,0.0693,0.0448,-0.0411,0.351,-0.0448,-0.0328,0.3478,0.0696,-0.0533,0.3272,0.032,-0.0228,0.0558,-0.0477,-0.0282,0.0727,0.0655,-0.0443,0.3444,-0.0655,-0.0398,0.3423,0.0506,-0.0335,0.0531,-0.0506,-0.0335,0.0531,-0.0775,-0.0833,0.2182,0.079,-0.0811,0.2884,0.0775,-0.0749,0.2158,-0.079,-0.0741,0.2853,-0.0513,-0.0843,0.2793,0.0513,-0.0762,0.2761,0.0915,-0.0859,0.2653,0.032,-0.037,0.0522,-0.0448,-0.0411,0.351,0.0448,-0.0328,0.3478,-0.032,-0.0228,0.0558,0.0513,-0.0843,0.2793,-0.0513,-0.0762,0.2761,-0.0212,-0.0745,0.3088,-0.0224,-0.0401,0.3442,-0.0241,-0.0272,0.3653,-0.0175,-0.0417,0.0699,0.0175,-0.0284,0.0736,0.0597,-0.0591,0.1403,0.0693,-0.0713,0.1794,0.0775,-0.0833,0.2182,-0.0597,-0.0477,0.1402,-0.0693,-0.0611,0.1791,-0.0775,-0.0749,0.2158,-0.0693,-0.0713,0.1794,-0.0597,-0.0591,0.1403,-0.0525,-0.0502,0.104,0.0693,-0.0611,0.1791,0.0597,-0.0477,0.1402,0.0525,-0.038,0.1054,-0.0189,-0.0627,0.1458,-0.0201,-0.0775,0.1899,-0.021,-0.0866,0.236,0.0189,-0.0505,0.1461,0.0201,-0.0669,0.1905,0.021,-0.0776,0.2349,-0.0838,-0.0743,0.1969,-0.073,-0.0612,0.1575,-0.0625,-0.0442,0.1206,-0.0377,-0.0558,0.1248,-0.0427,-0.0669,0.1641,-0.0478,-0.0805,0.2068,0.0377,-0.0422,0.1244,0.0427,-0.0547,0.1633,0.0478,-0.07,0.2061,0.0625,-0.051,0.1209,0.073,-0.0612,0.1575,0.0838,-0.0689,0.1962,0.0478,-0.0805,0.2068,0.0427,-0.0669,0.1641,0.0377,-0.0558,0.1248,-0.0478,-0.07,0.2061,-0.0427,-0.0547,0.1633,-0.0377,-0.0422,0.1244,-0.079,-0.0811,0.2884,0.079,-0.0741,0.2853,0.0696,-0.0605,0.331,-0.0696,-0.0533,0.3272,-0.0224,-0.0489,0.347,-0.0212,-0.0663,0.307,-0.0493,-0.0684,0.3211,-0.0493,-0.0604,0.3169,0.086,-0.0734,0.3103,-0.086,-0.0734,0.3103,0.0493,-0.0684,0.3211,0.0493,-0.0604,0.3169,0.0073,-0.037,0.0522,0.0098,-0.0321,0.3621,0.0098,-0.025,0.3602,0.0073,-0.0257,0.0551,-0.0072,-0.0567,0.1271,-0.0071,-0.0693,0.1693,0.0069,-0.084,0.2161,0.0072,-0.046,0.1269,0.0071,-0.0597,0.169,-0.0069,-0.0759,0.2162,0.0074,-0.06,0.3326,-0.0074,-0.0531,0.3301,0.0212,-0.0745,0.3088,0.0224,-0.0401,0.3442,0.0241,-0.0272,0.3653,0.0175,-0.0417,0.0699,-0.0175,-0.0284,0.0736,0.0189,-0.0627,0.1458,0.0201,-0.0775,0.1899,0.021,-0.0866,0.236,-0.0189,-0.0505,0.1461,-0.0201,-0.0669,0.1905,-0.021,-0.0776,0.2349,0.0224,-0.0489,0.347,0.0212,-0.0663,0.307,-0.0073,-0.037,0.0522,-0.0098,-0.0321,0.3621,-0.0098,-0.025,0.3602,-0.0073,-0.0257,0.0551,0.0072,-0.0567,0.1271,0.0071,-0.0693,0.1693,-0.0069,-0.084,0.2161,-0.0072,-0.046,0.1269,-0.0071,-0.0597,0.169,0.0069,-0.0759,0.2162,-0.0074,-0.06,0.3326,0.0074,-0.0531,0.3301,-0,-0.0732,0.3122,-0,-0.04,0.3483,-0,-0.0252,0.369,0,-0.0418,0.07,-0,-0.032,0.0727,0,-0.0632,0.1467,-0,-0.0785,0.1916,-0,-0.087,0.239,-0,-0.0543,0.1469,-0,-0.0708,0.1921,-0,-0.0805,0.2383,-0,-0.0466,0.3501,-0,-0.0672,0.3111,0.0655,-0.0398,0.3423,-0.0655,-0.0443,0.3444,0.0506,-0.0264,0.0549,-0.0506,-0.0264,0.0549,0.0915,-0.082,0.2631,-0.0241,-0.0222,0.3641,-0.0838,-0.0689,0.1962,-0.073,-0.055,0.1569,-0.0625,-0.051,0.1209,0.0625,-0.0442,0.1206,0.073,-0.055,0.1569,0.0838,-0.0743,0.1969,0.086,-0.0698,0.3077,-0.086,-0.0698,0.3077,0.0241,-0.0222,0.3641,-0,-0.0215,0.3682,-0.0455,-0.0298,0.3576,0.0795,-0.0567,0.3293,-0.0683,-0.0523,0.1376,0.0796,-0.065,0.1767,-0.0911,-0.0781,0.2853,0.0455,-0.0298,0.3576,-0.0893,-0.0787,0.2145,-0.0796,-0.065,0.1767,-0.0541,-0.0341,0.0703,0.0541,-0.0341,0.0703,0.0683,-0.0523,0.1376,0.0893,-0.0787,0.2145,0.0911,-0.0781,0.2853,-0.0795,-0.0567,0.3293,-0.0105,-0.0218,0.3699,0.0105,-0.0218,0.3699,0.0525,-0.0502,0.104,-0.0525,-0.038,0.1054,-0.0181,-0.0522,0.1063,0.0181,-0.039,0.108,-0.0477,-0.0405,0.0693,0.0477,-0.0282,0.0727,0.0181,-0.0522,0.1063,-0.0181,-0.039,0.108,0,-0.0523,0.1067,-0,-0.0427,0.1079,-0.0598,-0.0433,0.1028,0.0598,-0.0433,0.1028,-0.0562,-0.0362,0.0871,-0.0347,-0.0474,0.0876,0.0347,-0.0332,0.0894,0.0562,-0.0433,0.0863,0.0347,-0.0474,0.0876,-0.0347,-0.0332,0.0894,-0.0073,-0.0477,0.0885,0.0073,-0.0365,0.09,0.0073,-0.0477,0.0885,-0.0073,-0.0365,0.09,-0.0562,-0.0433,0.0863,0.0562,-0.0362,0.0871,-0.0798,-0.0844,0.2407,0.0798,-0.0844,0.2407,0.0799,-0.0763,0.2389,-0.0799,-0.0763,0.2389,-0.0212,-0.0857,0.2628,0.0212,-0.0771,0.2627,0.0212,-0.0857,0.2628,-0.0212,-0.0771,0.2627,-0,-0.0858,0.2665,-0,-0.0796,0.2666,0.0922,-0.0802,0.2373,-0.0922,-0.0802,0.2373,-0.0915,-0.0859,0.2653,0.0067,-0.0804,0.2933,-0.0067,-0.0737,0.2918,-0.0067,-0.0804,0.2933,0.0067,-0.0737,0.2918,-0.0915,-0.082,0.2631],"name":"animation_000009"},{"vertices":[-0.0611,-0.1011,0.3435,0.0611,-0.1011,0.3435,-0.0453,-0.0362,0.0527,0.0453,-0.0362,0.0527,-0.0611,-0.0935,0.3435,0.0611,-0.0935,0.3435,-0.0453,-0.0236,0.0553,0.0453,-0.0236,0.0553,-0.0803,-0.1085,0.2604,0.0803,-0.1007,0.2592,-0.0172,-0.0371,0.0525,-0.0234,-0.0963,0.3646,-0.0234,-0.0878,0.3662,-0.0172,-0.0235,0.0553,0.0555,-0.0537,0.1225,0.0645,-0.0669,0.1585,0.0738,-0.0846,0.1961,-0.0555,-0.0417,0.1227,-0.0645,-0.056,0.1585,-0.0738,-0.0751,0.1964,-0.0738,-0.0846,0.1961,-0.0645,-0.0669,0.1585,-0.0555,-0.0537,0.1225,0.0738,-0.0751,0.1964,0.0645,-0.056,0.1585,0.0555,-0.0417,0.1227,0.0185,-0.0562,0.1262,0.0195,-0.072,0.1661,-0.0206,-0.0926,0.2092,-0.0185,-0.0434,0.1266,-0.0195,-0.0605,0.1668,0.0206,-0.0829,0.2106,-0.0758,-0.1111,0.3054,0.0758,-0.1033,0.3043,0.0758,-0.1111,0.3054,-0.0758,-0.1033,0.3043,-0.0215,-0.1075,0.326,0.0215,-0.0988,0.3264,0.0172,-0.0371,0.0525,0.0234,-0.0963,0.3646,0.0234,-0.0878,0.3662,0.0172,-0.0235,0.0553,0.0213,-0.1103,0.2822,-0.0213,-0.102,0.2828,-0.0185,-0.0562,0.1262,-0.0195,-0.072,0.1661,0.0206,-0.0926,0.2092,0.0185,-0.0434,0.1266,0.0195,-0.0605,0.1668,-0.0206,-0.0829,0.2106,0.0215,-0.1075,0.326,-0.0215,-0.0988,0.3264,0,-0.0371,0.0525,-0,-0.0957,0.3687,-0,-0.0894,0.3701,-0,-0.0272,0.0546,0,-0.0565,0.1268,0,-0.0727,0.1674,-0,-0.0939,0.2113,-0,-0.0471,0.1271,-0,-0.0644,0.1679,-0,-0.0869,0.2125,-0,-0.1068,0.3296,-0,-0.1004,0.3302,0.0663,-0.0955,0.349,-0.0663,-0.0955,0.349,0.0512,-0.0299,0.054,-0.0512,-0.0299,0.054,-0.0927,-0.1044,0.2575,-0.0244,-0.09,0.3762,-0.0849,-0.0785,0.1938,-0.0739,-0.0602,0.1558,-0.0633,-0.0468,0.1201,0.0633,-0.0468,0.1201,0.0739,-0.0602,0.1558,0.0849,-0.0785,0.1938,0.0871,-0.1073,0.3042,-0.0871,-0.1073,0.3042,0.0244,-0.09,0.3762,-0,-0.0906,0.3803,0.0501,-0.0449,0.0872,-0.0501,-0.0324,0.0886,-0.0178,-0.0463,0.0887,0.0178,-0.0328,0.0904,-0.0501,-0.0449,0.0872,0.0501,-0.0324,0.0886,0.0178,-0.0463,0.0887,-0.0178,-0.0328,0.0904,0,-0.0464,0.089,-0,-0.0366,0.0902,-0.0569,-0.0383,0.0866,0.0569,-0.0383,0.0866,0.0803,-0.1085,0.2604,-0.0803,-0.1007,0.2592,-0.0213,-0.1103,0.2822,0.0213,-0.102,0.2828,-0,-0.1106,0.2859,-0,-0.1045,0.2866,0.0927,-0.1044,0.2575,-0.0468,-0.1053,0.3372,-0.0468,-0.0958,0.3378,-0.0449,-0.0945,0.3631,0.0785,-0.1051,0.3266,-0.0674,-0.0564,0.138,-0.0453,-0.08,0.182,0.0453,-0.0687,0.1834,0.0786,-0.0725,0.1751,-0.0899,-0.1079,0.2784,0.0507,-0.1104,0.2915,0.0468,-0.0958,0.3378,0.0449,-0.0945,0.3631,0.04,-0.0623,0.1425,-0.04,-0.0493,0.1434,-0.0882,-0.0905,0.2103,-0.0786,-0.0725,0.1751,-0.059,-0.0388,0.1042,-0.036,-0.0505,0.1056,-0.04,-0.0623,0.1425,-0.0498,-0.0972,0.2214,0.036,-0.0366,0.1074,0.04,-0.0493,0.1434,0.0498,-0.0873,0.2215,0.059,-0.0459,0.1033,0.0674,-0.0564,0.138,0.0882,-0.0854,0.2098,0.0498,-0.0972,0.2214,0.0453,-0.08,0.182,0.036,-0.0505,0.1056,-0.0498,-0.0873,0.2215,-0.0453,-0.0687,0.1834,-0.036,-0.0366,0.1074,-0.0507,-0.1104,0.2915,-0.0507,-0.1015,0.2919,0.0899,-0.1079,0.2784,-0.0785,-0.1051,0.3266,0.0468,-0.1053,0.3372,0.0507,-0.1015,0.2919,-0.0069,-0.1106,0.3062,-0.0085,-0.0947,0.3525,-0.0103,-0.0924,0.3774,-0.0073,-0.0411,0.0704,0.0073,-0.0298,0.0731,-0.0071,-0.0643,0.1458,-0.007,-0.0844,0.1884,-0.0068,-0.1014,0.2328,0.0071,-0.0541,0.1468,0.007,-0.0757,0.19,0.0068,-0.0939,0.2336,-0.0085,-0.1025,0.3511,-0.0069,-0.1036,0.3075,0.0069,-0.1106,0.3062,0.0085,-0.0947,0.3525,0.0103,-0.0924,0.3774,0.0073,-0.0411,0.0704,-0.0073,-0.0298,0.0731,0.0071,-0.0643,0.1458,0.007,-0.0844,0.1884,0.0068,-0.1014,0.2328,-0.0071,-0.0541,0.1468,-0.007,-0.0757,0.19,-0.0068,-0.0939,0.2336,0.0085,-0.1025,0.3511,0.0069,-0.1036,0.3075,-0.0449,-0.0894,0.3639,0.0785,-0.1005,0.3263,-0.0674,-0.0499,0.1383,0.0786,-0.0666,0.1755,-0.0899,-0.1035,0.2779,0.0449,-0.0894,0.3639,-0.0882,-0.0854,0.2098,-0.0786,-0.0666,0.1755,-0.0534,-0.0371,0.0699,0.0534,-0.03,0.0715,0.0674,-0.0499,0.1383,0.0882,-0.0905,0.2103,0.0899,-0.1035,0.2779,-0.0785,-0.1005,0.3263,-0.0103,-0.0883,0.3785,0.0103,-0.0883,0.3785,-0.0534,-0.03,0.0715,-0.0334,-0.041,0.0699,0.0334,-0.0267,0.0732,0.0534,-0.0371,0.0699,0.0334,-0.041,0.0699,-0.0334,-0.0267,0.0732,-0.0073,-0.0512,0.107,0.0073,-0.0401,0.1085,0.0073,-0.0512,0.107,-0.0073,-0.0401,0.1085,-0.059,-0.0459,0.1033,0.059,-0.0388,0.1042,-0.0511,-0.1032,0.2451,0.0512,-0.094,0.2462,0.091,-0.0969,0.2317,-0.091,-0.0969,0.2317,0.0511,-0.1032,0.2451,-0.0512,-0.094,0.2462,0.0068,-0.1075,0.2593,-0.0068,-0.1005,0.2613,-0.0068,-0.1075,0.2593,0.0068,-0.1005,0.2613,0.091,-0.0921,0.2317,-0.091,-0.0921,0.2317,-0.0696,-0.1066,0.3278,-0.032,-0.0371,0.0525,0.0477,-0.0399,0.0697,0.0448,-0.0986,0.3545,-0.0448,-0.0898,0.3554,0.0696,-0.0985,0.3276,0.032,-0.0227,0.0555,-0.0477,-0.0274,0.0725,0.0655,-0.0984,0.3471,-0.0655,-0.0935,0.3473,0.0506,-0.0335,0.0532,-0.0506,-0.0335,0.0532,-0.0775,-0.0934,0.213,0.079,-0.1097,0.2809,0.0775,-0.0845,0.2124,-0.079,-0.1019,0.2804,-0.0513,-0.1097,0.2712,0.0513,-0.1008,0.2708,0.0915,-0.1066,0.2573,0.032,-0.0371,0.0525,-0.0448,-0.0986,0.3545,0.0448,-0.0898,0.3554,-0.032,-0.0227,0.0555,0.0513,-0.1097,0.2712,-0.0513,-0.1008,0.2708,-0.0212,-0.1106,0.3025,-0.0224,-0.094,0.3488,-0.0241,-0.0927,0.3735,-0.0175,-0.0411,0.0703,0.0175,-0.0276,0.0735,0.0597,-0.0598,0.1397,0.0693,-0.076,0.177,0.0775,-0.0934,0.213,-0.0597,-0.0484,0.1403,-0.0693,-0.0658,0.1779,-0.0775,-0.0845,0.2124,-0.0693,-0.076,0.177,-0.0597,-0.0598,0.1397,-0.0525,-0.049,0.1043,0.0693,-0.0658,0.1779,0.0597,-0.0484,0.1403,0.0525,-0.0368,0.1058,-0.0189,-0.0638,0.145,-0.0201,-0.0833,0.1868,-0.021,-0.1004,0.2299,0.0189,-0.0516,0.146,0.0201,-0.0728,0.1885,0.021,-0.0912,0.2307,-0.0838,-0.0813,0.1938,-0.073,-0.0636,0.1564,-0.0625,-0.0436,0.1209,-0.0377,-0.0554,0.1246,-0.0427,-0.0699,0.1624,-0.0478,-0.089,0.2026,0.0377,-0.0418,0.1249,0.0427,-0.0576,0.1628,0.0478,-0.0784,0.2036,0.0625,-0.0505,0.1208,0.073,-0.0636,0.1564,0.0838,-0.0758,0.1939,0.0478,-0.089,0.2026,0.0427,-0.0699,0.1624,0.0377,-0.0554,0.1246,-0.0478,-0.0784,0.2036,-0.0427,-0.0576,0.1628,-0.0377,-0.0418,0.1249,-0.079,-0.1097,0.2809,0.079,-0.1019,0.2804,0.0696,-0.1066,0.3278,-0.0696,-0.0985,0.3276,-0.0224,-0.1032,0.3474,-0.0212,-0.1022,0.3037,-0.0493,-0.1097,0.3154,-0.0493,-0.1006,0.315,0.086,-0.1098,0.3034,-0.086,-0.1098,0.3034,0.0493,-0.1097,0.3154,0.0493,-0.1006,0.315,0.0073,-0.0371,0.0525,0.0098,-0.0956,0.3684,0.0098,-0.0885,0.37,0.0073,-0.0257,0.0549,-0.0072,-0.0565,0.1268,-0.0071,-0.0727,0.1674,0.0069,-0.0939,0.2113,0.0072,-0.0457,0.1272,0.0071,-0.0632,0.168,-0.0069,-0.0858,0.2127,0.0074,-0.1068,0.3295,-0.0074,-0.0994,0.3302,0.0212,-0.1106,0.3025,0.0224,-0.094,0.3488,0.0241,-0.0927,0.3735,0.0175,-0.0411,0.0703,-0.0175,-0.0276,0.0735,0.0189,-0.0638,0.145,0.0201,-0.0833,0.1868,0.021,-0.1004,0.2299,-0.0189,-0.0516,0.146,-0.0201,-0.0728,0.1885,-0.021,-0.0912,0.2307,0.0224,-0.1032,0.3474,0.0212,-0.1022,0.3037,-0.0073,-0.0371,0.0525,-0.0098,-0.0956,0.3684,-0.0098,-0.0885,0.37,-0.0073,-0.0257,0.0549,0.0072,-0.0565,0.1268,0.0071,-0.0727,0.1674,-0.0069,-0.0939,0.2113,-0.0072,-0.0457,0.1272,-0.0071,-0.0632,0.168,0.0069,-0.0858,0.2127,-0.0074,-0.1068,0.3295,0.0074,-0.0994,0.3302,-0,-0.1106,0.3062,-0,-0.0957,0.3526,-0,-0.0927,0.3777,0,-0.0411,0.0704,-0,-0.0313,0.0727,0,-0.0643,0.1458,0,-0.0844,0.1884,-0,-0.1014,0.2328,-0,-0.0555,0.1466,-0,-0.0768,0.1898,-0,-0.0949,0.2335,-0,-0.1025,0.3513,-0,-0.1045,0.3073,0.0655,-0.0935,0.3473,-0.0655,-0.0984,0.3471,0.0506,-0.0263,0.0547,-0.0506,-0.0263,0.0547,0.0915,-0.1022,0.2564,-0.0241,-0.0878,0.3747,-0.0838,-0.0758,0.1939,-0.073,-0.0573,0.1563,-0.0625,-0.0505,0.1208,0.0625,-0.0436,0.1209,0.073,-0.0573,0.1563,0.0838,-0.0813,0.1938,0.086,-0.1054,0.3026,-0.086,-0.1054,0.3026,0.0241,-0.0878,0.3747,-0,-0.089,0.3787,-0.0455,-0.0916,0.3655,0.0795,-0.1024,0.3279,-0.0683,-0.0529,0.1374,0.0796,-0.0694,0.175,-0.0911,-0.1057,0.279,0.0455,-0.0916,0.3655,-0.0893,-0.088,0.2103,-0.0796,-0.0694,0.175,-0.0541,-0.0335,0.0705,0.0541,-0.0335,0.0705,0.0683,-0.0529,0.1374,0.0893,-0.088,0.2103,0.0911,-0.1057,0.279,-0.0795,-0.1024,0.3279,-0.0105,-0.0901,0.38,0.0105,-0.0901,0.38,0.0525,-0.049,0.1043,-0.0525,-0.0368,0.1058,-0.0181,-0.051,0.1067,0.0181,-0.0378,0.1084,-0.0477,-0.0399,0.0697,0.0477,-0.0274,0.0725,0.0181,-0.051,0.1067,-0.0181,-0.0378,0.1084,0,-0.0512,0.107,-0,-0.0416,0.1083,-0.0598,-0.0421,0.1031,0.0598,-0.0421,0.1031,-0.0562,-0.0349,0.0874,-0.0347,-0.0461,0.088,0.0347,-0.0319,0.0897,0.0562,-0.042,0.0866,0.0347,-0.0461,0.088,-0.0347,-0.0319,0.0897,-0.0073,-0.0464,0.089,0.0073,-0.0351,0.0904,0.0073,-0.0464,0.089,-0.0073,-0.0351,0.0904,-0.0562,-0.042,0.0866,0.0562,-0.0349,0.0874,-0.0798,-0.0996,0.2346,0.0798,-0.0996,0.2346,0.0799,-0.0912,0.2348,-0.0799,-0.0912,0.2348,-0.0212,-0.1064,0.2558,0.0212,-0.098,0.2578,0.0212,-0.1064,0.2558,-0.0212,-0.098,0.2578,-0,-0.1075,0.2593,-0,-0.1014,0.261,0.0922,-0.0946,0.2322,-0.0922,-0.0946,0.2322,-0.0915,-0.1066,0.2573,0.0067,-0.1106,0.2859,-0.0067,-0.1036,0.2867,-0.0067,-0.1106,0.2859,0.0067,-0.1036,0.2867,-0.0915,-0.1022,0.2564],"name":"animation_000010"},{"vertices":[-0.0611,-0.1526,0.3282,0.0611,-0.1526,0.3282,-0.0453,-0.0363,0.0529,0.0453,-0.0363,0.0529,-0.0611,-0.1459,0.3317,0.0611,-0.1459,0.3317,-0.0453,-0.0236,0.055,0.0453,-0.0236,0.055,-0.0803,-0.128,0.2483,0.0803,-0.1201,0.2497,-0.0172,-0.0372,0.0528,-0.0234,-0.158,0.3492,-0.0234,-0.1511,0.3545,-0.0172,-0.0234,0.055,0.0555,-0.0532,0.1223,0.0645,-0.0693,0.1567,0.0738,-0.0914,0.1916,-0.0555,-0.0412,0.123,-0.0645,-0.0584,0.1578,-0.0738,-0.082,0.1934,-0.0738,-0.0914,0.1916,-0.0645,-0.0693,0.1567,-0.0555,-0.0532,0.1223,0.0738,-0.082,0.1934,0.0645,-0.0584,0.1578,0.0555,-0.0412,0.123,0.0185,-0.0559,0.1258,0.0195,-0.0751,0.1639,-0.0206,-0.1014,0.2034,-0.0185,-0.0431,0.1269,-0.0195,-0.0637,0.1656,0.0206,-0.092,0.2063,-0.0758,-0.1452,0.2895,0.0758,-0.1376,0.2917,0.0758,-0.1452,0.2895,-0.0758,-0.1376,0.2917,-0.0215,-0.1505,0.3098,0.0215,-0.1426,0.3139,0.0172,-0.0372,0.0528,0.0234,-0.158,0.3492,0.0234,-0.1511,0.3545,0.0172,-0.0234,0.055,0.0213,-0.1369,0.2687,-0.0213,-0.129,0.2719,-0.0185,-0.0559,0.1258,-0.0195,-0.0751,0.1639,0.0206,-0.1014,0.2034,0.0185,-0.0431,0.1269,0.0195,-0.0637,0.1656,-0.0206,-0.092,0.2063,0.0215,-0.1505,0.3098,-0.0215,-0.1426,0.3139,0,-0.0372,0.0528,-0,-0.1592,0.3532,-0,-0.1543,0.3573,-0,-0.0272,0.0544,0,-0.0562,0.1264,0,-0.0759,0.165,0,-0.103,0.2054,0,-0.0469,0.1272,0,-0.0677,0.1664,0,-0.0962,0.2076,-0,-0.1513,0.3134,-0,-0.1457,0.3166,0.0663,-0.1501,0.3357,-0.0663,-0.1501,0.3357,0.0512,-0.0299,0.054,-0.0512,-0.0299,0.054,-0.0927,-0.1231,0.2469,-0.0244,-0.1576,0.3624,-0.0849,-0.0851,0.1903,-0.0739,-0.0623,0.1548,-0.0633,-0.0461,0.1201,0.0633,-0.0461,0.1201,0.0739,-0.0623,0.1548,0.0849,-0.0851,0.1903,0.0871,-0.1412,0.2899,-0.0871,-0.1412,0.2899,0.0244,-0.1576,0.3624,-0,-0.16,0.3658,0.0501,-0.0436,0.0875,-0.0501,-0.0311,0.0888,-0.0178,-0.045,0.0891,0.0178,-0.0314,0.0906,-0.0501,-0.0436,0.0875,0.0501,-0.0311,0.0888,0.0178,-0.045,0.0891,-0.0178,-0.0314,0.0906,0,-0.0451,0.0893,-0,-0.0352,0.0905,-0.0569,-0.037,0.0869,0.0569,-0.037,0.0869,0.0803,-0.128,0.2483,-0.0803,-0.1201,0.2497,-0.0213,-0.1369,0.2687,0.0213,-0.129,0.2719,-0,-0.1383,0.2721,-0,-0.1326,0.2747,0.0927,-0.1231,0.2469,-0.0468,-0.1533,0.3209,-0.0468,-0.145,0.3256,-0.0449,-0.1556,0.3487,0.0785,-0.1485,0.3114,-0.0674,-0.057,0.1374,-0.0453,-0.0849,0.1786,0.0453,-0.0737,0.1812,0.0786,-0.0766,0.1726,-0.0899,-0.1333,0.2657,0.0507,-0.1402,0.2772,0.0468,-0.145,0.3256,0.0449,-0.1556,0.3487,0.04,-0.0631,0.1416,-0.04,-0.0502,0.1433,-0.0882,-0.0991,0.2046,-0.0786,-0.0766,0.1726,-0.059,-0.0376,0.1045,-0.036,-0.0494,0.1058,-0.04,-0.0631,0.1416,-0.0498,-0.108,0.2142,0.036,-0.0354,0.1077,0.04,-0.0502,0.1433,0.0498,-0.0983,0.2163,0.059,-0.0447,0.1036,0.0674,-0.057,0.1374,0.0882,-0.0939,0.2052,0.0498,-0.108,0.2142,0.0453,-0.0849,0.1786,0.036,-0.0494,0.1058,-0.0498,-0.0983,0.2163,-0.0453,-0.0737,0.1812,-0.036,-0.0354,0.1077,-0.0507,-0.1402,0.2772,-0.0507,-0.1319,0.2807,0.0899,-0.1333,0.2657,-0.0785,-0.1485,0.3114,0.0468,-0.1533,0.3209,0.0507,-0.1319,0.2807,-0.0069,-0.1455,0.291,-0.0085,-0.1505,0.3394,-0.0103,-0.1603,0.3623,-0.0073,-0.0404,0.0708,0.0073,-0.029,0.073,-0.0071,-0.0654,0.1448,-0.007,-0.09,0.1846,-0.0068,-0.1146,0.2244,0.0071,-0.0552,0.1464,0.007,-0.0815,0.1871,0.0068,-0.1073,0.2269,-0.0085,-0.1568,0.3347,-0.0069,-0.1394,0.2947,0.0069,-0.1455,0.291,0.0085,-0.1505,0.3394,0.0103,-0.1603,0.3623,0.0073,-0.0404,0.0708,-0.0073,-0.029,0.073,0.0071,-0.0654,0.1448,0.007,-0.09,0.1846,0.0068,-0.1146,0.2244,-0.0071,-0.0552,0.1464,-0.007,-0.0815,0.1871,-0.0068,-0.1073,0.2269,0.0085,-0.1568,0.3347,0.0069,-0.1394,0.2947,-0.0449,-0.1514,0.3517,0.0785,-0.1442,0.3131,-0.0674,-0.0504,0.1382,0.0786,-0.0708,0.1737,-0.0899,-0.1289,0.2668,0.0449,-0.1514,0.3517,-0.0882,-0.0939,0.2052,-0.0786,-0.0708,0.1737,-0.0534,-0.0364,0.0701,0.0534,-0.0292,0.0715,0.0674,-0.0504,0.1382,0.0882,-0.0991,0.2046,0.0899,-0.1289,0.2668,-0.0785,-0.1442,0.3131,-0.0103,-0.1571,0.3652,0.0103,-0.1571,0.3652,-0.0534,-0.0292,0.0715,-0.0334,-0.0403,0.0703,0.0334,-0.0259,0.0731,0.0534,-0.0364,0.0701,0.0334,-0.0403,0.0703,-0.0334,-0.0259,0.0731,-0.0073,-0.05,0.1073,0.0073,-0.039,0.1089,0.0073,-0.05,0.1073,-0.0073,-0.039,0.1089,-0.059,-0.0447,0.1036,0.059,-0.0376,0.1045,-0.0511,-0.1196,0.2354,0.0512,-0.1109,0.2388,0.091,-0.1101,0.224,-0.091,-0.1101,0.224,0.0511,-0.1196,0.2354,-0.0512,-0.1109,0.2388,0.0068,-0.1273,0.2482,-0.0068,-0.121,0.2518,-0.0068,-0.1273,0.2482,0.0068,-0.121,0.2518,0.091,-0.1054,0.2252,-0.091,-0.1054,0.2252,-0.0696,-0.1504,0.3118,-0.032,-0.0372,0.0528,0.0477,-0.0393,0.07,0.0448,-0.1553,0.3392,-0.0448,-0.1479,0.344,0.0696,-0.143,0.3152,0.032,-0.0227,0.0551,-0.0477,-0.0267,0.0724,0.0655,-0.1518,0.3327,-0.0655,-0.1475,0.335,0.0506,-0.0335,0.0534,-0.0506,-0.0335,0.0534,-0.0775,-0.1025,0.2066,0.079,-0.1358,0.2675,0.0775,-0.0936,0.2079,-0.079,-0.1283,0.2697,-0.0513,-0.1326,0.2583,0.0513,-0.124,0.2608,0.0915,-0.1252,0.246,0.032,-0.0372,0.0528,-0.0448,-0.1553,0.3392,0.0448,-0.1479,0.344,-0.032,-0.0227,0.0551,0.0513,-0.1326,0.2583,-0.0513,-0.124,0.2608,-0.0212,-0.1442,0.2876,-0.0224,-0.1482,0.3364,-0.0241,-0.1588,0.3587,-0.0175,-0.0404,0.0707,0.0175,-0.0268,0.0733,0.0597,-0.0605,0.139,0.0693,-0.0803,0.1741,0.0775,-0.1025,0.2066,-0.0597,-0.049,0.1403,-0.0693,-0.0703,0.1761,-0.0775,-0.0936,0.2079,-0.0693,-0.0803,0.1741,-0.0597,-0.0605,0.139,-0.0525,-0.0478,0.1046,0.0693,-0.0703,0.1761,0.0597,-0.049,0.1403,0.0525,-0.0356,0.1061,-0.0189,-0.0648,0.144,-0.0201,-0.0887,0.1831,-0.021,-0.113,0.2219,0.0189,-0.0527,0.1458,0.0201,-0.0784,0.1859,0.021,-0.1041,0.2246,-0.0838,-0.0878,0.1899,-0.073,-0.0657,0.155,-0.0625,-0.043,0.1211,-0.0377,-0.0551,0.1242,-0.0427,-0.0726,0.1604,-0.0478,-0.0968,0.1975,0.0377,-0.0414,0.1252,0.0427,-0.0604,0.1619,0.0478,-0.0864,0.2,0.0625,-0.0499,0.1207,0.073,-0.0657,0.155,0.0838,-0.0823,0.1908,0.0478,-0.0968,0.1975,0.0427,-0.0726,0.1604,0.0377,-0.0551,0.1242,-0.0478,-0.0864,0.2,-0.0427,-0.0604,0.1619,-0.0377,-0.0414,0.1252,-0.079,-0.1358,0.2675,0.079,-0.1283,0.2697,0.0696,-0.1504,0.3118,-0.0696,-0.143,0.3152,-0.0224,-0.1559,0.3311,-0.0212,-0.1367,0.2917,-0.0493,-0.1481,0.2993,-0.0493,-0.1396,0.3026,0.086,-0.1431,0.2882,-0.086,-0.1431,0.2882,0.0493,-0.1481,0.2993,0.0493,-0.1396,0.3026,0.0073,-0.0372,0.0528,0.0098,-0.1591,0.3529,0.0098,-0.1534,0.3576,0.0073,-0.0257,0.0547,-0.0072,-0.0562,0.1264,-0.0071,-0.0759,0.165,0.0069,-0.103,0.2054,0.0072,-0.0455,0.1273,0.0071,-0.0665,0.1666,-0.0069,-0.0952,0.208,0.0074,-0.1513,0.3134,-0.0074,-0.1448,0.3171,0.0212,-0.1442,0.2876,0.0224,-0.1482,0.3364,0.0241,-0.1588,0.3587,0.0175,-0.0404,0.0707,-0.0175,-0.0268,0.0733,0.0189,-0.0648,0.144,0.0201,-0.0887,0.1831,0.021,-0.113,0.2219,-0.0189,-0.0527,0.1458,-0.0201,-0.0784,0.1859,-0.021,-0.1041,0.2246,0.0224,-0.1559,0.3311,0.0212,-0.1367,0.2917,-0.0073,-0.0372,0.0528,-0.0098,-0.1591,0.3529,-0.0098,-0.1534,0.3576,-0.0073,-0.0257,0.0547,0.0072,-0.0562,0.1264,0.0071,-0.0759,0.165,-0.0069,-0.103,0.2054,-0.0072,-0.0455,0.1273,-0.0071,-0.0665,0.1666,0.0069,-0.0952,0.208,-0.0074,-0.1513,0.3134,0.0074,-0.1448,0.3171,-0,-0.1455,0.291,-0,-0.1514,0.339,-0,-0.1606,0.3625,0,-0.0404,0.0708,-0,-0.0305,0.0727,0,-0.0654,0.1448,0,-0.09,0.1846,0,-0.1146,0.2244,0,-0.0565,0.1462,0,-0.0826,0.1867,-0,-0.1083,0.2266,-0,-0.1569,0.3349,-0,-0.1402,0.2942,0.0655,-0.1475,0.335,-0.0655,-0.1518,0.3327,0.0506,-0.0263,0.0546,-0.0506,-0.0263,0.0546,0.0915,-0.1206,0.2466,-0.0241,-0.1549,0.362,-0.0838,-0.0823,0.1908,-0.073,-0.0595,0.1555,-0.0625,-0.0499,0.1207,0.0625,-0.043,0.1211,0.073,-0.0595,0.1555,0.0838,-0.0878,0.1899,0.086,-0.1388,0.2893,-0.086,-0.1388,0.2893,0.0241,-0.1549,0.362,-0,-0.1579,0.365,-0.0455,-0.1541,0.3521,0.0795,-0.1467,0.3138,-0.0683,-0.0534,0.1371,0.0796,-0.0735,0.1728,-0.0911,-0.1314,0.2671,0.0455,-0.1541,0.3521,-0.0893,-0.0966,0.2051,-0.0796,-0.0735,0.1728,-0.0541,-0.0328,0.0706,0.0541,-0.0328,0.0706,0.0683,-0.0534,0.1371,0.0893,-0.0966,0.2051,0.0911,-0.1314,0.2671,-0.0795,-0.1467,0.3138,-0.0105,-0.1594,0.3658,0.0105,-0.1594,0.3658,0.0525,-0.0478,0.1046,-0.0525,-0.0356,0.1061,-0.0181,-0.0499,0.1069,0.0181,-0.0366,0.1088,-0.0477,-0.0393,0.07,0.0477,-0.0267,0.0724,0.0181,-0.0499,0.1069,-0.0181,-0.0366,0.1088,0,-0.05,0.1073,-0,-0.0404,0.1086,-0.0598,-0.0409,0.1034,0.0598,-0.0409,0.1034,-0.0562,-0.0335,0.0877,-0.0347,-0.0448,0.0884,0.0347,-0.0305,0.0899,0.0562,-0.0407,0.0869,0.0347,-0.0448,0.0884,-0.0347,-0.0305,0.0899,-0.0073,-0.0451,0.0893,0.0073,-0.0337,0.0906,0.0073,-0.0451,0.0893,-0.0073,-0.0337,0.0906,-0.0562,-0.0407,0.0869,0.0562,-0.0335,0.0877,-0.0798,-0.1134,0.2261,0.0798,-0.1134,0.2261,0.0799,-0.1054,0.2284,-0.0799,-0.1054,0.2284,-0.0212,-0.1254,0.245,0.0212,-0.1177,0.2491,0.0212,-0.1254,0.245,-0.0212,-0.1177,0.2491,0,-0.1273,0.2482,-0,-0.1218,0.2514,0.0922,-0.108,0.225,-0.0922,-0.108,0.225,-0.0915,-0.1252,0.246,0.0067,-0.1383,0.2721,-0.0067,-0.1318,0.2751,-0.0067,-0.1383,0.2721,0.0067,-0.1318,0.2751,-0.0915,-0.1206,0.2466],"name":"animation_000011"},{"vertices":[-0.0611,-0.1973,0.2981,0.0611,-0.1973,0.2981,-0.0453,-0.0363,0.0532,0.0453,-0.0363,0.0532,-0.0611,-0.1929,0.3043,0.0611,-0.1929,0.3043,-0.0453,-0.0236,0.0547,0.0453,-0.0236,0.0547,-0.0803,-0.1446,0.2333,0.0803,-0.1375,0.2372,-0.0172,-0.0372,0.053,-0.0234,-0.2115,0.3145,-0.0234,-0.2078,0.3223,-0.0172,-0.0234,0.0547,0.0555,-0.0527,0.1219,0.0645,-0.0714,0.1547,0.0738,-0.0976,0.1864,-0.0555,-0.0407,0.1233,-0.0645,-0.0607,0.1568,-0.0738,-0.0885,0.1896,-0.0738,-0.0976,0.1864,-0.0645,-0.0714,0.1547,-0.0555,-0.0527,0.1219,0.0738,-0.0885,0.1896,0.0645,-0.0607,0.1568,0.0555,-0.0407,0.1233,0.0185,-0.0556,0.1254,0.0195,-0.0779,0.1612,-0.0206,-0.1093,0.1965,-0.0185,-0.0427,0.1271,-0.0195,-0.0668,0.1641,0.0206,-0.1004,0.2009,-0.0758,-0.1741,0.2662,0.0758,-0.168,0.2713,0.0758,-0.1741,0.2662,-0.0758,-0.168,0.2713,-0.0215,-0.1872,0.2827,0.0215,-0.1817,0.2897,0.0172,-0.0372,0.053,0.0234,-0.2115,0.3145,0.0234,-0.2078,0.3223,0.0172,-0.0234,0.0547,0.0213,-0.1596,0.2499,-0.0213,-0.1532,0.2555,-0.0185,-0.0556,0.1254,-0.0195,-0.0779,0.1612,0.0206,-0.1093,0.1965,0.0185,-0.0427,0.1271,0.0195,-0.0668,0.1641,-0.0206,-0.1004,0.2009,0.0215,-0.1872,0.2827,-0.0215,-0.1817,0.2897,0,-0.0372,0.053,0,-0.2144,0.3175,-0,-0.2118,0.3233,-0,-0.0271,0.0543,0,-0.0559,0.1259,0,-0.0789,0.1623,0,-0.1111,0.1983,0,-0.0466,0.1272,0,-0.0708,0.1645,0,-0.1047,0.2015,0,-0.1895,0.2857,0,-0.1856,0.2909,0.0663,-0.1984,0.3059,-0.0663,-0.1984,0.3059,0.0512,-0.0299,0.0539,-0.0512,-0.0299,0.0539,-0.0927,-0.1395,0.2334,-0.0244,-0.217,0.3264,-0.0849,-0.0911,0.186,-0.0739,-0.0643,0.1534,-0.0633,-0.0455,0.1202,0.0633,-0.0455,0.1202,0.0739,-0.0643,0.1534,0.0849,-0.0911,0.186,0.0871,-0.1706,0.2683,-0.0871,-0.1706,0.2683,0.0244,-0.217,0.3264,0,-0.2207,0.3284,0.0501,-0.0423,0.0878,-0.0501,-0.0297,0.089,-0.0178,-0.0437,0.0894,0.0178,-0.03,0.0908,-0.0501,-0.0423,0.0878,0.0501,-0.0297,0.089,0.0178,-0.0437,0.0894,-0.0178,-0.03,0.0908,0,-0.0437,0.0896,-0,-0.0338,0.0907,-0.0569,-0.0356,0.0871,0.0569,-0.0356,0.0871,0.0803,-0.1446,0.2333,-0.0803,-0.1375,0.2372,-0.0213,-0.1596,0.2499,0.0213,-0.1532,0.2555,0,-0.1621,0.2527,0,-0.1575,0.257,0.0927,-0.1395,0.2334,-0.0468,-0.1945,0.2915,-0.0468,-0.189,0.2994,-0.0449,-0.2092,0.3151,0.0785,-0.1861,0.2849,-0.0674,-0.0574,0.1368,-0.0453,-0.0894,0.1747,0.0453,-0.0785,0.1785,0.0786,-0.0805,0.1696,-0.0899,-0.1552,0.2481,0.0507,-0.1657,0.2567,0.0468,-0.189,0.2994,0.0449,-0.2092,0.3151,0.04,-0.0639,0.1406,-0.04,-0.051,0.1431,-0.0882,-0.1068,0.1979,-0.0786,-0.0805,0.1696,-0.059,-0.0364,0.1047,-0.036,-0.0482,0.106,-0.04,-0.0639,0.1406,-0.0498,-0.1176,0.2055,0.036,-0.0342,0.108,0.04,-0.051,0.1431,0.0498,-0.1084,0.2097,0.059,-0.0434,0.1038,0.0674,-0.0574,0.1368,0.0882,-0.1018,0.1996,0.0498,-0.1176,0.2055,0.0453,-0.0894,0.1747,0.036,-0.0482,0.106,-0.0498,-0.1084,0.2097,-0.0453,-0.0785,0.1785,-0.036,-0.0342,0.108,-0.0507,-0.1657,0.2567,-0.0507,-0.1591,0.2628,0.0899,-0.1552,0.2481,-0.0785,-0.1861,0.2849,0.0468,-0.1945,0.2915,0.0507,-0.1591,0.2628,-0.0069,-0.1755,0.2678,-0.0085,-0.1999,0.3095,-0.0103,-0.2195,0.3252,-0.0073,-0.0398,0.0712,0.0073,-0.0282,0.0729,-0.0071,-0.0663,0.1436,-0.007,-0.095,0.1801,-0.0068,-0.1263,0.2143,0.0071,-0.0563,0.1458,0.007,-0.0868,0.1835,0.0068,-0.1196,0.2182,-0.0085,-0.2037,0.3025,-0.0069,-0.171,0.2735,0.0069,-0.1755,0.2678,0.0085,-0.1999,0.3095,0.0103,-0.2195,0.3252,0.0073,-0.0398,0.0712,-0.0073,-0.0282,0.0729,0.0071,-0.0663,0.1436,0.007,-0.095,0.1801,0.0068,-0.1263,0.2143,-0.0071,-0.0563,0.1458,-0.007,-0.0868,0.1835,-0.0068,-0.1196,0.2182,0.0085,-0.2037,0.3025,0.0069,-0.171,0.2735,-0.0449,-0.2068,0.3196,0.0785,-0.1829,0.2884,-0.0674,-0.0509,0.1379,0.0786,-0.0748,0.1713,-0.0899,-0.1514,0.2507,0.0449,-0.2068,0.3196,-0.0882,-0.1018,0.1996,-0.0786,-0.0748,0.1713,-0.0534,-0.0358,0.0703,0.0534,-0.0285,0.0714,0.0674,-0.0509,0.1379,0.0882,-0.1068,0.1979,0.0899,-0.1514,0.2507,-0.0785,-0.1829,0.2884,-0.0103,-0.2179,0.3292,0.0103,-0.2179,0.3292,-0.0534,-0.0285,0.0714,-0.0334,-0.0396,0.0707,0.0334,-0.0251,0.0729,0.0534,-0.0358,0.0703,0.0334,-0.0396,0.0707,-0.0334,-0.0251,0.0729,-0.0073,-0.0488,0.1075,0.0073,-0.0378,0.1091,0.0073,-0.0488,0.1075,-0.0073,-0.0378,0.1091,-0.059,-0.0434,0.1038,0.059,-0.0364,0.1047,-0.0511,-0.1339,0.2231,0.0512,-0.1263,0.2286,0.091,-0.1218,0.2144,-0.091,-0.1218,0.2144,0.0511,-0.1339,0.2231,-0.0512,-0.1263,0.2286,0.0068,-0.1446,0.2337,-0.0068,-0.1394,0.2388,-0.0068,-0.1446,0.2337,0.0068,-0.1394,0.2388,0.091,-0.1176,0.2167,-0.091,-0.1176,0.2167,-0.0696,-0.188,0.2845,-0.032,-0.0372,0.053,0.0477,-0.0386,0.0704,0.0448,-0.2046,0.3067,-0.0448,-0.2002,0.3143,0.0696,-0.1827,0.2908,0.032,-0.0227,0.0548,-0.0477,-0.0259,0.0722,0.0655,-0.1986,0.3025,-0.0655,-0.1958,0.3065,0.0506,-0.0336,0.0535,-0.0506,-0.0336,0.0535,-0.0775,-0.1106,0.1993,0.079,-0.1582,0.2489,0.0775,-0.1021,0.2024,-0.079,-0.1518,0.2536,-0.0513,-0.1523,0.2413,0.0513,-0.1448,0.2465,0.0915,-0.1412,0.2319,0.032,-0.0372,0.053,-0.0448,-0.2046,0.3067,0.0448,-0.2002,0.3143,-0.032,-0.0227,0.0548,0.0513,-0.1523,0.2413,-0.0513,-0.1448,0.2465,-0.0212,-0.1731,0.265,-0.0224,-0.1965,0.3077,-0.0241,-0.2165,0.3226,-0.0175,-0.0397,0.0711,0.0175,-0.026,0.0731,0.0597,-0.061,0.1381,0.0693,-0.0843,0.1708,0.0775,-0.1106,0.1993,-0.0597,-0.0497,0.1401,-0.0693,-0.0745,0.1738,-0.0775,-0.1021,0.2024,-0.0693,-0.0843,0.1708,-0.0597,-0.061,0.1381,-0.0525,-0.0466,0.1048,0.0693,-0.0745,0.1738,0.0597,-0.0497,0.1401,0.0525,-0.0343,0.1064,-0.0189,-0.0657,0.1428,-0.0201,-0.0936,0.1787,-0.021,-0.1241,0.2121,0.0189,-0.0536,0.1454,0.0201,-0.0837,0.1827,0.021,-0.1159,0.2166,-0.0838,-0.0937,0.1852,-0.073,-0.0677,0.1533,-0.0625,-0.0424,0.1213,-0.0377,-0.0546,0.1238,-0.0427,-0.0751,0.158,-0.0478,-0.1038,0.1914,0.0377,-0.041,0.1255,0.0427,-0.0631,0.1607,0.0478,-0.0939,0.1955,0.0625,-0.0493,0.1206,0.073,-0.0677,0.1533,0.0838,-0.0885,0.187,0.0478,-0.1038,0.1914,0.0427,-0.0751,0.158,0.0377,-0.0546,0.1238,-0.0478,-0.0939,0.1955,-0.0427,-0.0631,0.1607,-0.0377,-0.041,0.1255,-0.079,-0.1582,0.2489,0.079,-0.1518,0.2536,0.0696,-0.188,0.2845,-0.0696,-0.1827,0.2908,-0.0224,-0.2012,0.2996,-0.0212,-0.1674,0.2715,-0.0493,-0.1807,0.274,-0.0493,-0.1743,0.2806,0.086,-0.1716,0.2659,-0.086,-0.1716,0.2659,0.0493,-0.1807,0.274,0.0493,-0.1743,0.2806,0.0073,-0.0372,0.053,0.0098,-0.2141,0.3173,0.0098,-0.2112,0.324,0.0073,-0.0257,0.0545,-0.0072,-0.0559,0.1259,-0.0071,-0.0789,0.1623,0.0069,-0.1111,0.1983,0.0072,-0.0452,0.1274,0.0071,-0.0696,0.1648,-0.0069,-0.1038,0.202,0.0074,-0.1895,0.2856,-0.0074,-0.185,0.2917,0.0212,-0.1731,0.265,0.0224,-0.1965,0.3077,0.0241,-0.2165,0.3226,0.0175,-0.0397,0.0711,-0.0175,-0.026,0.0731,0.0189,-0.0657,0.1428,0.0201,-0.0936,0.1787,0.021,-0.1241,0.2121,-0.0189,-0.0536,0.1454,-0.0201,-0.0837,0.1827,-0.021,-0.1159,0.2166,0.0224,-0.2012,0.2996,0.0212,-0.1674,0.2715,-0.0073,-0.0372,0.053,-0.0098,-0.2141,0.3173,-0.0098,-0.2112,0.324,-0.0073,-0.0257,0.0545,0.0072,-0.0559,0.1259,0.0071,-0.0789,0.1623,-0.0069,-0.1111,0.1983,-0.0072,-0.0452,0.1274,-0.0071,-0.0696,0.1648,0.0069,-0.1038,0.202,-0.0074,-0.1895,0.2856,0.0074,-0.185,0.2917,0,-0.1755,0.2678,0,-0.2005,0.3088,0,-0.2198,0.3252,0,-0.0398,0.0712,-0,-0.0297,0.0727,0,-0.0663,0.1436,0,-0.095,0.1801,0,-0.1263,0.2143,0,-0.0575,0.1455,0,-0.0879,0.1831,0,-0.1205,0.2177,0,-0.2038,0.3026,0,-0.1715,0.2727,0.0655,-0.1958,0.3065,-0.0655,-0.1986,0.3025,0.0506,-0.0263,0.0544,-0.0506,-0.0263,0.0544,0.0915,-0.137,0.234,-0.0241,-0.2145,0.3273,-0.0838,-0.0885,0.187,-0.073,-0.0615,0.1545,-0.0625,-0.0493,0.1206,0.0625,-0.0424,0.1213,0.073,-0.0615,0.1545,0.0838,-0.0937,0.1852,0.086,-0.1681,0.2687,-0.086,-0.1681,0.2687,0.0241,-0.2145,0.3273,0,-0.2185,0.3287,-0.0455,-0.2094,0.3188,0.0795,-0.1854,0.2879,-0.0683,-0.0538,0.1367,0.0796,-0.0774,0.1702,-0.0911,-0.1539,0.2501,0.0455,-0.2094,0.3188,-0.0893,-0.1044,0.1989,-0.0796,-0.0774,0.1702,-0.0541,-0.0321,0.0706,0.0541,-0.0321,0.0706,0.0683,-0.0538,0.1367,0.0893,-0.1044,0.1989,0.0911,-0.1539,0.2501,-0.0795,-0.1854,0.2879,-0.0105,-0.2202,0.3286,0.0105,-0.2202,0.3286,0.0525,-0.0466,0.1048,-0.0525,-0.0343,0.1064,-0.0181,-0.0487,0.1071,0.0181,-0.0354,0.109,-0.0477,-0.0386,0.0704,0.0477,-0.0259,0.0722,0.0181,-0.0487,0.1071,-0.0181,-0.0354,0.109,0,-0.0488,0.1075,-0,-0.0392,0.1089,-0.0598,-0.0397,0.1037,0.0598,-0.0397,0.1037,-0.0562,-0.0322,0.0879,-0.0347,-0.0435,0.0887,0.0347,-0.0291,0.0901,0.0562,-0.0394,0.0872,0.0347,-0.0435,0.0887,-0.0347,-0.0291,0.0901,-0.0073,-0.0437,0.0896,0.0073,-0.0323,0.0908,0.0073,-0.0437,0.0896,-0.0073,-0.0323,0.0908,-0.0562,-0.0394,0.0872,0.0562,-0.0322,0.0879,-0.0798,-0.1256,0.2156,0.0798,-0.1256,0.2156,0.0799,-0.1183,0.2198,-0.0799,-0.1183,0.2198,-0.0212,-0.1419,0.231,0.0212,-0.1354,0.2369,0.0212,-0.1419,0.231,-0.0212,-0.1354,0.2369,0,-0.1446,0.2337,0,-0.14,0.2381,0.0922,-0.1201,0.2159,-0.0922,-0.1201,0.2159,-0.0915,-0.1412,0.2319,0.0067,-0.1621,0.2527,-0.0067,-0.1568,0.2577,-0.0067,-0.1621,0.2527,0.0067,-0.1568,0.2577,-0.0915,-0.137,0.234],"name":"animation_000012"},{"vertices":[-0.0611,-0.2307,0.2567,0.0611,-0.2307,0.2567,-0.0453,-0.0363,0.0534,0.0453,-0.0363,0.0534,-0.0611,-0.2294,0.2642,0.0611,-0.2294,0.2642,-0.0453,-0.0235,0.0544,0.0453,-0.0235,0.0544,-0.0803,-0.158,0.216,0.0803,-0.1525,0.2219,-0.0172,-0.0373,0.0533,-0.0234,-0.2506,0.2651,-0.0234,-0.2507,0.2737,-0.0172,-0.0234,0.0544,0.0555,-0.0521,0.1215,0.0645,-0.0733,0.1524,0.0738,-0.1031,0.1805,-0.0555,-0.0402,0.1235,-0.0645,-0.0628,0.1556,-0.0738,-0.0946,0.185,-0.0738,-0.1031,0.1805,-0.0645,-0.0733,0.1524,-0.0555,-0.0521,0.1215,0.0738,-0.0946,0.185,0.0645,-0.0628,0.1556,0.0555,-0.0402,0.1235,0.0185,-0.0552,0.1248,0.0195,-0.0805,0.1583,-0.0206,-0.1162,0.1888,-0.0185,-0.0424,0.1272,-0.0195,-0.0696,0.1622,0.0206,-0.108,0.1944,-0.0758,-0.1962,0.2375,0.0758,-0.1927,0.2447,0.0758,-0.1962,0.2375,-0.0758,-0.1927,0.2447,-0.0215,-0.215,0.2473,0.0215,-0.2127,0.256,0.0172,-0.0373,0.0533,0.0234,-0.2506,0.2651,0.0234,-0.2507,0.2737,0.0172,-0.0234,0.0544,0.0213,-0.1776,0.2271,-0.0213,-0.1732,0.2345,-0.0185,-0.0552,0.1248,-0.0195,-0.0805,0.1583,0.0206,-0.1162,0.1888,0.0185,-0.0424,0.1272,0.0195,-0.0696,0.1622,-0.0206,-0.108,0.1944,0.0215,-0.215,0.2473,-0.0215,-0.2127,0.256,0,-0.0373,0.0533,0,-0.2546,0.2665,0,-0.2549,0.2729,-0,-0.0271,0.0541,0,-0.0555,0.1253,0,-0.0815,0.1593,0,-0.1182,0.1902,0,-0.0462,0.1271,0,-0.0737,0.1622,0,-0.1124,0.1944,0,-0.2183,0.2491,0,-0.2168,0.2556,0.0663,-0.2351,0.2632,-0.0663,-0.2351,0.2632,0.0512,-0.0299,0.0539,-0.0512,-0.0299,0.0539,-0.0927,-0.1532,0.2177,-0.0244,-0.2609,0.2734,-0.0849,-0.0965,0.1811,-0.0739,-0.0661,0.1518,-0.0633,-0.0448,0.1201,0.0633,-0.0448,0.1201,0.0739,-0.0661,0.1518,0.0849,-0.0965,0.1811,0.0871,-0.1938,0.2408,-0.0871,-0.1938,0.2408,0.0244,-0.2609,0.2734,0,-0.265,0.2735,0.0501,-0.041,0.0881,-0.0501,-0.0283,0.0891,-0.0178,-0.0423,0.0896,0.0178,-0.0286,0.0909,-0.0501,-0.041,0.0881,0.0501,-0.0283,0.0891,0.0178,-0.0423,0.0896,-0.0178,-0.0286,0.0909,0,-0.0424,0.0899,-0,-0.0324,0.0908,-0.0569,-0.0343,0.0873,0.0569,-0.0343,0.0873,0.0803,-0.158,0.216,-0.0803,-0.1525,0.2219,-0.0213,-0.1776,0.2271,0.0213,-0.1732,0.2345,0,-0.1808,0.229,0,-0.1778,0.2346,0.0927,-0.1532,0.2177,-0.0468,-0.2252,0.2522,-0.0468,-0.2235,0.2617,-0.0449,-0.2488,0.2666,0.0785,-0.2148,0.2499,-0.0674,-0.0578,0.136,-0.0453,-0.0933,0.1703,0.0453,-0.083,0.1753,0.0786,-0.0839,0.1662,-0.0899,-0.1728,0.2268,0.0507,-0.1856,0.2313,0.0468,-0.2235,0.2617,0.0449,-0.2488,0.2666,0.04,-0.0645,0.1393,-0.04,-0.0518,0.1427,-0.0882,-0.1136,0.1906,-0.0786,-0.0839,0.1662,-0.059,-0.0352,0.1049,-0.036,-0.047,0.1062,-0.04,-0.0645,0.1393,-0.0498,-0.1258,0.1958,0.036,-0.0329,0.1082,0.04,-0.0518,0.1427,0.0498,-0.1177,0.2018,0.059,-0.0422,0.104,0.0674,-0.0578,0.136,0.0882,-0.1091,0.1933,0.0498,-0.1258,0.1958,0.0453,-0.0933,0.1703,0.036,-0.047,0.1062,-0.0498,-0.1177,0.2018,-0.0453,-0.083,0.1753,-0.036,-0.0329,0.1082,-0.0507,-0.1856,0.2313,-0.0507,-0.1814,0.2393,0.0899,-0.1728,0.2268,-0.0785,-0.2148,0.2499,0.0468,-0.2252,0.2522,0.0507,-0.1814,0.2393,-0.0069,-0.1987,0.2385,-0.0085,-0.2377,0.2663,-0.0103,-0.2625,0.2712,-0.0073,-0.039,0.0716,0.0073,-0.0275,0.0728,-0.0071,-0.0671,0.1422,-0.007,-0.0996,0.1751,-0.0068,-0.1361,0.2026,0.0071,-0.0572,0.1451,0.007,-0.0918,0.1793,0.0068,-0.1304,0.2078,-0.0085,-0.2382,0.2584,-0.0069,-0.1963,0.2454,0.0069,-0.1987,0.2385,0.0085,-0.2377,0.2663,0.0103,-0.2625,0.2712,0.0073,-0.039,0.0716,-0.0073,-0.0275,0.0728,0.0071,-0.0671,0.1422,0.007,-0.0996,0.1751,0.0068,-0.1361,0.2026,-0.0071,-0.0572,0.1451,-0.007,-0.0918,0.1793,-0.0068,-0.1304,0.2078,0.0085,-0.2382,0.2584,0.0069,-0.1963,0.2454,-0.0449,-0.2487,0.2718,0.0785,-0.2134,0.2543,-0.0674,-0.0513,0.1375,0.0786,-0.0785,0.1685,-0.0899,-0.1701,0.2305,0.0449,-0.2487,0.2718,-0.0882,-0.1091,0.1933,-0.0786,-0.0785,0.1685,-0.0534,-0.0351,0.0705,0.0534,-0.0278,0.0713,0.0674,-0.0513,0.1375,0.0882,-0.1136,0.1906,0.0899,-0.1701,0.2305,-0.0785,-0.2134,0.2543,-0.0103,-0.2629,0.2755,0.0103,-0.2629,0.2755,-0.0534,-0.0278,0.0713,-0.0334,-0.0389,0.0711,0.0334,-0.0244,0.0726,0.0534,-0.0351,0.0705,0.0334,-0.0389,0.0711,-0.0334,-0.0244,0.0726,-0.0073,-0.0476,0.1076,0.0073,-0.0366,0.1093,0.0073,-0.0476,0.1076,-0.0073,-0.0366,0.1093,-0.059,-0.0422,0.104,0.059,-0.0352,0.1049,-0.0511,-0.1457,0.2087,0.0512,-0.1397,0.2159,0.091,-0.1319,0.2032,-0.091,-0.1319,0.2032,0.0511,-0.1457,0.2087,-0.0512,-0.1397,0.2159,0.0068,-0.1587,0.2164,-0.0068,-0.1549,0.2226,-0.0068,-0.1587,0.2164,0.0068,-0.1549,0.2226,0.091,-0.1283,0.2065,-0.091,-0.1283,0.2065,-0.0696,-0.2163,0.2486,-0.032,-0.0373,0.0533,0.0477,-0.0379,0.0707,0.0448,-0.241,0.2611,-0.0448,-0.2404,0.2699,0.0696,-0.2142,0.2566,0.032,-0.0226,0.0545,-0.0477,-0.0252,0.072,0.0655,-0.2338,0.26,-0.0655,-0.233,0.2649,0.0506,-0.0336,0.0536,-0.0506,-0.0336,0.0536,-0.0775,-0.1176,0.1911,0.079,-0.1759,0.2265,0.0775,-0.1099,0.1959,-0.079,-0.1715,0.2331,-0.0513,-0.1679,0.2212,0.0513,-0.1624,0.2285,0.0915,-0.1543,0.2158,0.032,-0.0373,0.0533,-0.0448,-0.241,0.2611,0.0448,-0.2404,0.2699,-0.032,-0.0226,0.0545,0.0513,-0.1679,0.2212,-0.0513,-0.1624,0.2285,-0.0212,-0.1954,0.2367,-0.0224,-0.2339,0.2661,-0.0241,-0.2587,0.2702,-0.0175,-0.039,0.0714,0.0175,-0.0252,0.0729,0.0597,-0.0615,0.1371,0.0693,-0.0879,0.1669,0.0775,-0.1176,0.1911,-0.0597,-0.0502,0.1398,-0.0693,-0.0785,0.171,-0.0775,-0.1099,0.1959,-0.0693,-0.0879,0.1669,-0.0597,-0.0615,0.1371,-0.0525,-0.0454,0.1049,0.0693,-0.0785,0.171,0.0597,-0.0502,0.1398,0.0525,-0.0331,0.1066,-0.0189,-0.0664,0.1415,-0.0201,-0.098,0.1739,-0.021,-0.1335,0.2009,0.0189,-0.0546,0.1448,0.0201,-0.0886,0.1789,0.021,-0.1265,0.207,-0.0838,-0.0991,0.1799,-0.073,-0.0695,0.1514,-0.0625,-0.0418,0.1214,-0.0377,-0.0541,0.1233,-0.0427,-0.0774,0.1553,-0.0478,-0.1099,0.1845,0.0377,-0.0406,0.1256,0.0427,-0.0656,0.1592,0.0478,-0.1008,0.19,0.0625,-0.0486,0.1203,0.073,-0.0695,0.1514,0.0838,-0.0941,0.1824,0.0478,-0.1099,0.1845,0.0427,-0.0774,0.1553,0.0377,-0.0541,0.1233,-0.0478,-0.1008,0.19,-0.0427,-0.0656,0.1592,-0.0377,-0.0406,0.1256,-0.079,-0.1759,0.2265,0.079,-0.1715,0.2331,0.0696,-0.2163,0.2486,-0.0696,-0.2142,0.2566,-0.0224,-0.2348,0.2568,-0.0212,-0.1922,0.2447,-0.0493,-0.2055,0.242,-0.0493,-0.2022,0.2506,0.086,-0.1938,0.2382,-0.086,-0.1938,0.2382,0.0493,-0.2055,0.242,0.0493,-0.2022,0.2506,0.0073,-0.0373,0.0533,0.0098,-0.2542,0.2665,0.0098,-0.2546,0.2738,0.0073,-0.0256,0.0543,-0.0072,-0.0555,0.1253,-0.0071,-0.0815,0.1593,0.0069,-0.1182,0.1902,0.0072,-0.0449,0.1273,0.0071,-0.0725,0.1626,-0.0069,-0.1115,0.195,0.0074,-0.2182,0.2491,-0.0074,-0.2165,0.2565,0.0212,-0.1954,0.2367,0.0224,-0.2339,0.2661,0.0241,-0.2587,0.2702,0.0175,-0.039,0.0714,-0.0175,-0.0252,0.0729,0.0189,-0.0664,0.1415,0.0201,-0.098,0.1739,0.021,-0.1335,0.2009,-0.0189,-0.0546,0.1448,-0.0201,-0.0886,0.1789,-0.021,-0.1265,0.207,0.0224,-0.2348,0.2568,0.0212,-0.1922,0.2447,-0.0073,-0.0373,0.0533,-0.0098,-0.2542,0.2665,-0.0098,-0.2546,0.2738,-0.0073,-0.0256,0.0543,0.0072,-0.0555,0.1253,0.0071,-0.0815,0.1593,-0.0069,-0.1182,0.1902,-0.0072,-0.0449,0.1273,-0.0071,-0.0725,0.1626,0.0069,-0.1115,0.195,-0.0074,-0.2182,0.2491,0.0074,-0.2165,0.2565,0,-0.1987,0.2385,0,-0.238,0.2654,0,-0.2628,0.271,0,-0.039,0.0716,-0,-0.029,0.0727,0,-0.0671,0.1422,0,-0.0996,0.1751,0,-0.1361,0.2026,0,-0.0585,0.1447,0,-0.0928,0.1788,0,-0.1311,0.2071,0,-0.2384,0.2584,0,-0.1966,0.2445,0.0655,-0.233,0.2649,-0.0655,-0.2338,0.26,0.0506,-0.0263,0.0542,-0.0506,-0.0263,0.0542,0.0915,-0.151,0.2191,-0.0241,-0.259,0.2753,-0.0838,-0.0941,0.1824,-0.073,-0.0635,0.1532,-0.0625,-0.0486,0.1203,0.0625,-0.0418,0.1214,0.073,-0.0635,0.1532,0.0838,-0.0991,0.1799,0.086,-0.1917,0.2422,-0.086,-0.1917,0.2422,0.0241,-0.259,0.2753,0,-0.2632,0.2747,-0.0455,-0.2506,0.2699,0.0795,-0.2155,0.2528,-0.0683,-0.0541,0.1361,0.0796,-0.081,0.1671,-0.0911,-0.1722,0.2291,0.0455,-0.2506,0.2699,-0.0893,-0.1115,0.192,-0.0796,-0.081,0.1671,-0.0541,-0.0314,0.0707,0.0541,-0.0314,0.0707,0.0683,-0.0541,0.1361,0.0893,-0.1115,0.192,0.0911,-0.1722,0.2291,-0.0795,-0.2155,0.2528,-0.0105,-0.2647,0.2739,0.0105,-0.2647,0.2739,0.0525,-0.0454,0.1049,-0.0525,-0.0331,0.1066,-0.0181,-0.0475,0.1072,0.0181,-0.0342,0.1092,-0.0477,-0.0379,0.0707,0.0477,-0.0252,0.072,0.0181,-0.0475,0.1072,-0.0181,-0.0342,0.1092,0,-0.0476,0.1076,0,-0.038,0.1091,-0.0598,-0.0384,0.1038,0.0598,-0.0384,0.1038,-0.0562,-0.0308,0.088,-0.0347,-0.0421,0.0889,0.0347,-0.0277,0.0902,0.0562,-0.038,0.0874,0.0347,-0.0421,0.0889,-0.0347,-0.0277,0.0902,-0.0073,-0.0424,0.0899,0.0073,-0.0309,0.091,0.0073,-0.0424,0.0899,-0.0073,-0.0309,0.091,-0.0562,-0.038,0.0874,0.0562,-0.0308,0.088,-0.0798,-0.1358,0.2035,0.0798,-0.1358,0.2035,0.0799,-0.1298,0.2094,-0.0799,-0.1298,0.2094,-0.0212,-0.1554,0.2145,0.0212,-0.1506,0.2218,0.0212,-0.1554,0.2145,-0.0212,-0.1506,0.2218,0,-0.1587,0.2164,0,-0.1554,0.2218,0.0922,-0.1305,0.2052,-0.0922,-0.1305,0.2052,-0.0915,-0.1543,0.2158,0.0067,-0.1808,0.229,-0.0067,-0.1774,0.2354,-0.0067,-0.1808,0.229,0.0067,-0.1774,0.2354,-0.0915,-0.151,0.2191],"name":"animation_000013"},{"vertices":[-0.0611,-0.25,0.2087,0.0611,-0.25,0.2087,-0.0453,-0.0364,0.0536,0.0453,-0.0364,0.0536,-0.0611,-0.2521,0.216,0.0611,-0.2521,0.216,-0.0453,-0.0235,0.0541,0.0453,-0.0235,0.0541,-0.0803,-0.168,0.1971,0.0803,-0.1647,0.2045,-0.0172,-0.0373,0.0536,-0.0234,-0.2716,0.2076,-0.0234,-0.2755,0.2153,-0.0172,-0.0234,0.0541,0.0555,-0.0515,0.1211,0.0645,-0.075,0.1499,0.0738,-0.1077,0.174,-0.0555,-0.0396,0.1236,-0.0645,-0.0649,0.154,-0.0738,-0.1,0.1797,-0.0738,-0.1077,0.174,-0.0645,-0.075,0.1499,-0.0555,-0.0515,0.1211,0.0738,-0.1,0.1797,0.0645,-0.0649,0.154,0.0555,-0.0396,0.1236,0.0185,-0.0547,0.1242,0.0195,-0.0827,0.1551,-0.0206,-0.1219,0.1802,-0.0185,-0.0421,0.1272,-0.0195,-0.0722,0.16,0.0206,-0.1147,0.187,-0.0758,-0.2108,0.2054,0.0758,-0.2104,0.2134,0.0758,-0.2108,0.2054,-0.0758,-0.2104,0.2134,-0.0215,-0.232,0.207,0.0215,-0.2333,0.2159,0.0172,-0.0373,0.0536,0.0234,-0.2716,0.2076,0.0234,-0.2755,0.2153,0.0172,-0.0234,0.0541,0.0213,-0.1902,0.2016,-0.0213,-0.1883,0.2101,-0.0185,-0.0547,0.1242,-0.0195,-0.0827,0.1551,0.0206,-0.1219,0.1802,0.0185,-0.0421,0.1272,0.0195,-0.0722,0.16,-0.0206,-0.1147,0.187,0.0215,-0.232,0.207,-0.0215,-0.2333,0.2159,0,-0.0373,0.0536,0,-0.2758,0.2071,0,-0.2789,0.2127,-0,-0.0271,0.054,0,-0.0551,0.1247,0,-0.0838,0.156,0,-0.1242,0.1813,0,-0.0459,0.1269,0,-0.0763,0.1596,0,-0.1191,0.1864,0,-0.2357,0.2074,0,-0.2369,0.2139,0.0663,-0.2568,0.2126,-0.0663,-0.2568,0.2126,0.0512,-0.03,0.0539,-0.0512,-0.03,0.0539,-0.0927,-0.164,0.2003,-0.0244,-0.2845,0.2106,-0.0849,-0.1014,0.1755,-0.0739,-0.0678,0.15,-0.0633,-0.0441,0.12,0.0633,-0.0441,0.12,0.0739,-0.0678,0.15,0.0849,-0.1014,0.1755,0.0871,-0.2099,0.2094,-0.0871,-0.2099,0.2094,0.0244,-0.2845,0.2106,0,-0.2883,0.2088,0.0501,-0.0396,0.0882,-0.0501,-0.0269,0.0892,-0.0178,-0.041,0.0898,0.0178,-0.0273,0.091,-0.0501,-0.0396,0.0882,0.0501,-0.0269,0.0892,0.0178,-0.041,0.0898,-0.0178,-0.0273,0.091,0,-0.041,0.0901,-0,-0.031,0.0909,-0.0569,-0.033,0.0874,0.0569,-0.033,0.0874,0.0803,-0.168,0.1971,-0.0803,-0.1647,0.2045,-0.0213,-0.1902,0.2016,0.0213,-0.1883,0.2101,0,-0.1938,0.2025,0,-0.1927,0.2087,0.0927,-0.164,0.2003,-0.0468,-0.2433,0.2072,-0.0468,-0.2457,0.2166,-0.0449,-0.2707,0.2097,0.0785,-0.2328,0.2094,-0.0674,-0.0581,0.135,-0.0453,-0.0968,0.1655,0.0453,-0.087,0.1716,0.0786,-0.087,0.1625,-0.0899,-0.1854,0.2028,0.0507,-0.199,0.2028,0.0468,-0.2457,0.2166,0.0449,-0.2707,0.2097,0.04,-0.0649,0.138,-0.04,-0.0525,0.1421,-0.0882,-0.1195,0.1825,-0.0786,-0.087,0.1625,-0.059,-0.0339,0.1051,-0.036,-0.0457,0.1062,-0.04,-0.0649,0.138,-0.0498,-0.1325,0.1852,0.036,-0.0317,0.1083,0.04,-0.0525,0.1421,0.0498,-0.1257,0.1927,0.059,-0.041,0.1041,0.0674,-0.0581,0.135,0.0882,-0.1156,0.1861,0.0498,-0.1325,0.1852,0.0453,-0.0968,0.1655,0.036,-0.0457,0.1062,-0.0498,-0.1257,0.1927,-0.0453,-0.087,0.1716,-0.036,-0.0317,0.1083,-0.0507,-0.199,0.2028,-0.0507,-0.1977,0.2118,0.0899,-0.1854,0.2028,-0.0785,-0.2328,0.2094,0.0468,-0.2433,0.2072,0.0507,-0.1977,0.2118,-0.0069,-0.2138,0.2053,-0.0085,-0.2605,0.2149,-0.0103,-0.285,0.2079,-0.0073,-0.0383,0.0719,0.0073,-0.0267,0.0727,-0.0071,-0.0677,0.1407,-0.007,-0.1035,0.1696,-0.0068,-0.144,0.1897,0.0071,-0.058,0.1442,0.007,-0.0962,0.1747,0.0068,-0.1395,0.196,-0.0085,-0.2576,0.2074,-0.0069,-0.2138,0.2126,0.0069,-0.2138,0.2053,0.0085,-0.2605,0.2149,0.0103,-0.285,0.2079,0.0073,-0.0383,0.0719,-0.0073,-0.0267,0.0727,0.0071,-0.0677,0.1407,0.007,-0.1035,0.1696,0.0068,-0.144,0.1897,-0.0071,-0.058,0.1442,-0.007,-0.0962,0.1747,-0.0068,-0.1395,0.196,0.0085,-0.2576,0.2074,0.0069,-0.2138,0.2126,-0.0449,-0.2728,0.2144,0.0785,-0.2333,0.2141,-0.0674,-0.0517,0.137,0.0786,-0.0818,0.1653,-0.0899,-0.1841,0.2072,0.0449,-0.2728,0.2144,-0.0882,-0.1156,0.1861,-0.0786,-0.0818,0.1653,-0.0534,-0.0345,0.0707,0.0534,-0.0271,0.0712,0.0674,-0.0517,0.137,0.0882,-0.1195,0.1825,0.0899,-0.1841,0.2072,-0.0785,-0.2333,0.2141,-0.0103,-0.2872,0.2116,0.0103,-0.2872,0.2116,-0.0534,-0.0271,0.0712,-0.0334,-0.0383,0.0714,0.0334,-0.0236,0.0723,0.0534,-0.0345,0.0707,0.0334,-0.0383,0.0714,-0.0334,-0.0236,0.0723,-0.0073,-0.0464,0.1076,0.0073,-0.0353,0.1094,0.0073,-0.0464,0.1076,-0.0073,-0.0353,0.1094,-0.059,-0.041,0.1041,0.059,-0.0339,0.1051,-0.0511,-0.1548,0.1929,0.0512,-0.1507,0.2013,0.091,-0.14,0.1909,-0.091,-0.14,0.1909,0.0511,-0.1548,0.1929,-0.0512,-0.1507,0.2013,0.0068,-0.1692,0.1971,-0.0068,-0.167,0.2041,-0.0068,-0.1692,0.1971,0.0068,-0.167,0.2041,0.091,-0.1373,0.1949,-0.091,-0.1373,0.1949,-0.0696,-0.2337,0.2076,-0.032,-0.0373,0.0536,0.0477,-0.0373,0.071,0.0448,-0.2613,0.2082,-0.0448,-0.2646,0.2164,0.0696,-0.235,0.2158,0.032,-0.0226,0.0542,-0.0477,-0.0245,0.0718,0.0655,-0.2543,0.2103,-0.0655,-0.2557,0.215,0.0506,-0.0336,0.0537,-0.0506,-0.0336,0.0537,-0.0775,-0.1235,0.1822,0.079,-0.1882,0.2016,0.0775,-0.1169,0.1886,-0.079,-0.1863,0.2093,-0.0513,-0.1791,0.1991,0.0513,-0.1761,0.2077,0.0915,-0.1645,0.198,0.032,-0.0373,0.0536,-0.0448,-0.2613,0.2082,0.0448,-0.2646,0.2164,-0.032,-0.0226,0.0542,0.0513,-0.1791,0.1991,-0.0513,-0.1761,0.2077,-0.0212,-0.2101,0.2047,-0.0224,-0.257,0.2163,-0.0241,-0.2812,0.2086,-0.0175,-0.0383,0.0718,0.0175,-0.0245,0.0727,0.0597,-0.0618,0.1359,0.0693,-0.091,0.1627,0.0775,-0.1235,0.1822,-0.0597,-0.0508,0.1394,-0.0693,-0.0821,0.1678,-0.0775,-0.1169,0.1886,-0.0693,-0.091,0.1627,-0.0597,-0.0618,0.1359,-0.0525,-0.0442,0.105,0.0693,-0.0821,0.1678,0.0597,-0.0508,0.1394,0.0525,-0.0319,0.1067,-0.0189,-0.067,0.14,-0.0201,-0.1018,0.1686,-0.021,-0.1411,0.1886,0.0189,-0.0554,0.1441,0.0201,-0.0929,0.1745,0.021,-0.1354,0.196,-0.0838,-0.1037,0.174,-0.073,-0.0711,0.1492,-0.0625,-0.0412,0.1214,-0.0377,-0.0536,0.1227,-0.0427,-0.0793,0.1524,-0.0478,-0.1151,0.1769,0.0377,-0.0402,0.1257,0.0427,-0.068,0.1574,0.0478,-0.1069,0.1838,0.0625,-0.0479,0.12,0.073,-0.0711,0.1492,0.0838,-0.0992,0.1772,0.0478,-0.1151,0.1769,0.0427,-0.0793,0.1524,0.0377,-0.0536,0.1227,-0.0478,-0.1069,0.1838,-0.0427,-0.068,0.1574,-0.0377,-0.0402,0.1257,-0.079,-0.1882,0.2016,0.079,-0.1863,0.2093,0.0696,-0.2337,0.2076,-0.0696,-0.235,0.2158,-0.0224,-0.2538,0.2074,-0.0212,-0.2098,0.2133,-0.0493,-0.2211,0.2059,-0.0493,-0.2216,0.2151,0.086,-0.2089,0.207,-0.086,-0.2089,0.207,0.0493,-0.2211,0.2059,0.0493,-0.2216,0.2151,0.0073,-0.0373,0.0536,0.0098,-0.2755,0.2072,0.0098,-0.279,0.2137,0.0073,-0.0256,0.054,-0.0072,-0.0551,0.1247,-0.0071,-0.0838,0.156,0.0069,-0.1242,0.1813,0.0072,-0.0445,0.1272,0.0071,-0.0752,0.1602,-0.0069,-0.1183,0.1871,0.0074,-0.2357,0.2074,-0.0074,-0.237,0.2148,0.0212,-0.2101,0.2047,0.0224,-0.257,0.2163,0.0241,-0.2812,0.2086,0.0175,-0.0383,0.0718,-0.0175,-0.0245,0.0727,0.0189,-0.067,0.14,0.0201,-0.1018,0.1686,0.021,-0.1411,0.1886,-0.0189,-0.0554,0.1441,-0.0201,-0.0929,0.1745,-0.021,-0.1354,0.196,0.0224,-0.2538,0.2074,0.0212,-0.2098,0.2133,-0.0073,-0.0373,0.0536,-0.0098,-0.2755,0.2072,-0.0098,-0.279,0.2137,-0.0073,-0.0256,0.054,0.0072,-0.0551,0.1247,0.0071,-0.0838,0.156,-0.0069,-0.1242,0.1813,-0.0072,-0.0445,0.1272,-0.0071,-0.0752,0.1602,0.0069,-0.1183,0.1871,-0.0074,-0.2357,0.2074,0.0074,-0.237,0.2148,0,-0.2138,0.2053,0,-0.2604,0.2139,0,-0.2852,0.2076,0,-0.0383,0.0719,-0,-0.0282,0.0726,0,-0.0677,0.1407,0,-0.1035,0.1696,0,-0.144,0.1897,0,-0.0593,0.1437,0,-0.0971,0.174,0,-0.14,0.1952,0,-0.2578,0.2074,0,-0.2138,0.2116,0.0655,-0.2557,0.215,-0.0655,-0.2543,0.2103,0.0506,-0.0263,0.054,-0.0506,-0.0263,0.054,0.0915,-0.1623,0.2022,-0.0241,-0.2836,0.2131,-0.0838,-0.0992,0.1772,-0.073,-0.0652,0.1516,-0.0625,-0.0479,0.12,0.0625,-0.0412,0.1214,0.073,-0.0652,0.1516,0.0838,-0.1037,0.174,0.086,-0.2085,0.2115,-0.086,-0.2085,0.2115,0.0241,-0.2836,0.2131,0,-0.2872,0.2108,-0.0455,-0.2737,0.2119,0.0795,-0.2346,0.2118,-0.0683,-0.0544,0.1354,0.0796,-0.0842,0.1636,-0.0911,-0.1856,0.2052,0.0455,-0.2737,0.2119,-0.0893,-0.1177,0.1844,-0.0796,-0.0842,0.1636,-0.0541,-0.0308,0.0707,0.0541,-0.0308,0.0707,0.0683,-0.0544,0.1354,0.0893,-0.1177,0.1844,0.0911,-0.1856,0.2052,-0.0795,-0.2346,0.2118,-0.0105,-0.2882,0.2094,0.0105,-0.2882,0.2094,0.0525,-0.0442,0.105,-0.0525,-0.0319,0.1067,-0.0181,-0.0463,0.1073,0.0181,-0.033,0.1094,-0.0477,-0.0373,0.071,0.0477,-0.0245,0.0718,0.0181,-0.0463,0.1073,-0.0181,-0.033,0.1094,0,-0.0464,0.1076,0,-0.0368,0.1092,-0.0598,-0.0372,0.1039,0.0598,-0.0372,0.1039,-0.0562,-0.0294,0.0881,-0.0347,-0.0408,0.0891,0.0347,-0.0263,0.0903,0.0562,-0.0367,0.0875,0.0347,-0.0408,0.0891,-0.0347,-0.0263,0.0903,-0.0073,-0.041,0.0901,0.0073,-0.0296,0.0911,0.0073,-0.041,0.0901,-0.0073,-0.0296,0.0911,-0.0562,-0.0367,0.0875,0.0562,-0.0294,0.0881,-0.0798,-0.1439,0.1902,0.0798,-0.1439,0.1902,0.0799,-0.1395,0.1974,-0.0799,-0.1395,0.1974,-0.0212,-0.1656,0.1961,0.0212,-0.1627,0.2043,0.0212,-0.1656,0.1961,-0.0212,-0.1627,0.2043,0,-0.1692,0.1971,0,-0.1673,0.2032,0.0922,-0.1392,0.1931,-0.0922,-0.1392,0.1931,-0.0915,-0.1645,0.198,0.0067,-0.1938,0.2025,-0.0067,-0.1926,0.2096,-0.0067,-0.1938,0.2025,0.0067,-0.1926,0.2096,-0.0915,-0.1623,0.2022],"name":"animation_000014"},{"vertices":[-0.0611,-0.2547,0.1592,0.0611,-0.2547,0.1592,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2597,0.1649,0.0611,-0.2597,0.1649,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1747,0.1773,0.0803,-0.1737,0.1854,-0.0172,-0.0373,0.0538,-0.0234,-0.2738,0.149,-0.0234,-0.2806,0.1543,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1116,0.167,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1116,0.167,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1711,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1204,0.1789,-0.0758,-0.2177,0.172,0.0758,-0.2204,0.1795,0.0758,-0.2177,0.172,-0.0758,-0.2204,0.1795,-0.0215,-0.2378,0.1653,0.0215,-0.2424,0.1729,0.0172,-0.0373,0.0538,0.0234,-0.2738,0.149,0.0234,-0.2806,0.1543,0.0172,-0.0234,0.0538,0.0213,-0.1971,0.1749,-0.0213,-0.1979,0.1835,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1711,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1204,0.1789,0.0215,-0.2378,0.1653,-0.0215,-0.2424,0.1729,0,-0.0373,0.0538,0,-0.2774,0.1468,0,-0.2825,0.1506,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.129,0.1719,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1246,0.1776,0,-0.2414,0.1642,0,-0.245,0.1697,0.0663,-0.2626,0.1598,-0.0663,-0.2626,0.1598,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1718,0.1816,-0.0244,-0.2867,0.1462,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2184,0.176,-0.0871,-0.2184,0.176,0.0244,-0.2867,0.1462,0,-0.2894,0.143,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1747,0.1773,-0.0803,-0.1737,0.1854,-0.0213,-0.1971,0.1749,0.0213,-0.1979,0.1835,0,-0.2009,0.1746,0,-0.2017,0.1809,0.0927,-0.1718,0.1816,-0.0468,-0.2482,0.1609,-0.0468,-0.2541,0.1685,-0.0449,-0.2739,0.1514,0.0785,-0.2394,0.1672,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1929,0.1775,0.0507,-0.2058,0.1731,0.0468,-0.2541,0.1685,0.0449,-0.2739,0.1514,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1244,0.1739,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1377,0.1739,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1326,0.1826,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1213,0.1782,0.0498,-0.1377,0.1739,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1326,0.1826,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2058,0.1731,-0.0507,-0.2074,0.1819,0.0899,-0.1929,0.1775,-0.0785,-0.2394,0.1672,0.0468,-0.2482,0.1609,0.0507,-0.2074,0.1819,-0.0069,-0.2205,0.1706,-0.0085,-0.267,0.1609,-0.0103,-0.286,0.1436,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1499,0.1761,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1467,0.1832,-0.0085,-0.2614,0.1553,-0.0069,-0.2229,0.1775,0.0069,-0.2205,0.1706,0.0085,-0.267,0.1609,0.0103,-0.286,0.1436,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1499,0.1761,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1467,0.1832,0.0085,-0.2614,0.1553,0.0069,-0.2229,0.1775,-0.0449,-0.2778,0.1547,0.0785,-0.2419,0.1712,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1931,0.1821,0.0449,-0.2778,0.1547,-0.0882,-0.1213,0.1782,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1244,0.1739,0.0899,-0.1931,0.1821,-0.0785,-0.2419,0.1712,-0.0103,-0.2896,0.146,0.0103,-0.2896,0.146,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.161,0.1761,0.0512,-0.159,0.1852,0.091,-0.1462,0.1776,-0.091,-0.1462,0.1776,0.0511,-0.161,0.1761,-0.0512,-0.159,0.1852,0.0068,-0.176,0.1768,-0.0068,-0.1755,0.1841,-0.0068,-0.176,0.1768,0.0068,-0.1755,0.1841,0.091,-0.1445,0.1822,-0.091,-0.1445,0.1822,-0.0696,-0.2396,0.1652,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2647,0.1539,-0.0448,-0.2711,0.1599,0.0696,-0.2441,0.1721,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2593,0.1588,-0.0655,-0.2626,0.1625,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1283,0.1728,0.079,-0.1952,0.1754,0.0775,-0.1231,0.1804,-0.079,-0.1958,0.1833,-0.0513,-0.1858,0.1758,0.0513,-0.1856,0.185,0.0915,-0.1715,0.1793,0.032,-0.0373,0.0538,-0.0448,-0.2647,0.1539,0.0448,-0.2711,0.1599,-0.032,-0.0226,0.0538,0.0513,-0.1858,0.1758,-0.0513,-0.1856,0.185,-0.0212,-0.2168,0.1712,-0.0224,-0.2643,0.1636,-0.0241,-0.2829,0.1459,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1283,0.1728,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1231,0.1804,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1468,0.1755,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1427,0.184,-0.0838,-0.1076,0.1676,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1688,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1122,0.1768,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1715,0.0478,-0.1194,0.1688,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1122,0.1768,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1952,0.1754,0.079,-0.1958,0.1833,0.0696,-0.2396,0.1652,-0.0696,-0.2441,0.1721,-0.0224,-0.2579,0.1568,-0.0212,-0.2193,0.1795,-0.0493,-0.2274,0.1685,-0.0493,-0.2313,0.1768,0.086,-0.2165,0.1742,-0.086,-0.2165,0.1742,0.0493,-0.2274,0.1685,0.0493,-0.2313,0.1768,0.0073,-0.0373,0.0538,0.0098,-0.2772,0.147,0.0098,-0.2831,0.1514,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.129,0.1719,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.124,0.1785,0.0074,-0.2413,0.1642,-0.0074,-0.2455,0.1705,0.0212,-0.2168,0.1712,0.0224,-0.2643,0.1636,0.0241,-0.2829,0.1459,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1468,0.1755,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1427,0.184,0.0224,-0.2579,0.1568,0.0212,-0.2193,0.1795,-0.0073,-0.0373,0.0538,-0.0098,-0.2772,0.147,-0.0098,-0.2831,0.1514,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.129,0.1719,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.124,0.1785,-0.0074,-0.2413,0.1642,0.0074,-0.2455,0.1705,0,-0.2205,0.1706,0,-0.2665,0.1601,0,-0.2861,0.1432,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1499,0.1761,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.1471,0.1822,0,-0.2615,0.1552,0,-0.2226,0.1766,0.0655,-0.2626,0.1625,-0.0655,-0.2593,0.1588,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1708,0.1839,-0.0241,-0.287,0.1488,-0.0838,-0.1036,0.1715,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1076,0.1676,0.086,-0.2179,0.1785,-0.086,-0.2179,0.1785,0.0241,-0.287,0.1488,0,-0.2892,0.1453,-0.0455,-0.2776,0.152,0.0795,-0.2421,0.1686,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1939,0.1797,0.0455,-0.2776,0.152,-0.0893,-0.1231,0.1761,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1231,0.1761,0.0911,-0.1939,0.1797,-0.0795,-0.2421,0.1686,-0.0105,-0.2896,0.1436,0.0105,-0.2896,0.1436,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1497,0.1761,0.0798,-0.1497,0.1761,0.0799,-0.1472,0.1841,-0.0799,-0.1472,0.1841,-0.0212,-0.1723,0.1766,0.0212,-0.1714,0.1853,0.0212,-0.1723,0.1766,-0.0212,-0.1714,0.1853,0,-0.176,0.1768,0,-0.1756,0.1832,0.0922,-0.1459,0.18,-0.0922,-0.1459,0.18,-0.0915,-0.1715,0.1793,0.0067,-0.2009,0.1746,-0.0067,-0.2018,0.1818,-0.0067,-0.2009,0.1746,0.0067,-0.2018,0.1818,-0.0915,-0.1708,0.1839],"name":"animation_000015"},{"vertices":[-0.0611,-0.2557,0.1631,0.0611,-0.2557,0.1631,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2603,0.1691,0.0611,-0.2603,0.1691,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1747,0.1777,0.0803,-0.1735,0.1858,-0.0172,-0.0373,0.0538,-0.0234,-0.2754,0.1542,-0.0234,-0.2819,0.16,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1116,0.167,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1116,0.167,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1711,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1204,0.1789,-0.0758,-0.218,0.1737,0.0758,-0.2203,0.1814,0.0758,-0.218,0.1737,-0.0758,-0.2203,0.1814,-0.0215,-0.2384,0.1681,0.0215,-0.2426,0.176,0.0172,-0.0373,0.0538,0.0234,-0.2754,0.1542,0.0234,-0.2819,0.16,0.0172,-0.0234,0.0538,0.0213,-0.1972,0.1761,-0.0213,-0.1978,0.1847,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1711,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1204,0.1789,0.0215,-0.2384,0.1681,-0.0215,-0.2426,0.176,0,-0.0373,0.0538,0,-0.2792,0.1522,0,-0.284,0.1563,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.129,0.1719,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1246,0.1776,0,-0.242,0.1672,0,-0.2453,0.1728,0.0663,-0.2635,0.1643,-0.0663,-0.2635,0.1643,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1717,0.1819,-0.0244,-0.2885,0.1523,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2185,0.1778,-0.0871,-0.2185,0.1778,0.0244,-0.2885,0.1523,0,-0.2914,0.1493,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1747,0.1777,-0.0803,-0.1735,0.1858,-0.0213,-0.1972,0.1761,0.0213,-0.1978,0.1847,0,-0.201,0.1759,0,-0.2017,0.1821,0.0927,-0.1717,0.1819,-0.0468,-0.249,0.1643,-0.0468,-0.2545,0.1722,-0.0449,-0.2753,0.1566,0.0785,-0.2399,0.1701,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1929,0.1785,0.0507,-0.206,0.1745,0.0468,-0.2545,0.1722,0.0449,-0.2753,0.1566,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1244,0.1738,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1377,0.1739,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1325,0.1826,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1213,0.178,0.0498,-0.1377,0.1739,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1325,0.1826,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.206,0.1745,-0.0507,-0.2074,0.1834,0.0899,-0.1929,0.1785,-0.0785,-0.2399,0.1701,0.0468,-0.249,0.1643,0.0507,-0.2074,0.1834,-0.0069,-0.2208,0.1726,-0.0085,-0.2678,0.1654,-0.0103,-0.288,0.1496,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1499,0.1761,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1466,0.1832,-0.0085,-0.2625,0.1595,-0.0069,-0.223,0.1795,0.0069,-0.2208,0.1726,0.0085,-0.2678,0.1654,0.0103,-0.288,0.1496,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1499,0.1761,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1466,0.1832,0.0085,-0.2625,0.1595,0.0069,-0.223,0.1795,-0.0449,-0.279,0.1601,0.0785,-0.2421,0.1742,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.193,0.1831,0.0449,-0.279,0.1601,-0.0882,-0.1213,0.178,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1244,0.1738,0.0899,-0.193,0.1831,-0.0785,-0.2421,0.1742,-0.0103,-0.2914,0.1522,0.0103,-0.2914,0.1522,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.161,0.1763,0.0512,-0.1589,0.1855,0.091,-0.1462,0.1777,-0.091,-0.1462,0.1777,0.0511,-0.161,0.1763,-0.0512,-0.1589,0.1855,0.0068,-0.1761,0.1773,-0.0068,-0.1755,0.1846,-0.0068,-0.1761,0.1773,0.0068,-0.1755,0.1846,0.091,-0.1445,0.1822,-0.091,-0.1445,0.1822,-0.0696,-0.2402,0.1681,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.266,0.1585,-0.0448,-0.2721,0.1649,0.0696,-0.2443,0.1753,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2603,0.1631,-0.0655,-0.2633,0.1669,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1283,0.1727,0.079,-0.1953,0.1765,0.0775,-0.1231,0.1802,-0.079,-0.1957,0.1844,-0.0513,-0.1859,0.1766,0.0513,-0.1854,0.1858,0.0915,-0.1715,0.1796,0.032,-0.0373,0.0538,-0.0448,-0.266,0.1585,0.0448,-0.2721,0.1649,-0.032,-0.0226,0.0538,0.0513,-0.1859,0.1766,-0.0513,-0.1854,0.1858,-0.0212,-0.2171,0.173,-0.0224,-0.265,0.168,-0.0241,-0.2847,0.1517,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1283,0.1727,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1231,0.1802,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1468,0.1756,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1427,0.184,-0.0838,-0.1076,0.1676,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1688,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1122,0.1768,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1715,0.0478,-0.1194,0.1688,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1122,0.1768,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1953,0.1765,0.079,-0.1957,0.1844,0.0696,-0.2402,0.1681,-0.0696,-0.2443,0.1753,-0.0224,-0.259,0.1608,-0.0212,-0.2193,0.1814,-0.0493,-0.2278,0.1707,-0.0493,-0.2313,0.1792,0.086,-0.2167,0.1758,-0.086,-0.2167,0.1758,0.0493,-0.2278,0.1707,0.0493,-0.2313,0.1792,0.0073,-0.0373,0.0538,0.0098,-0.2789,0.1524,0.0098,-0.2845,0.1572,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.129,0.1719,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.124,0.1785,0.0074,-0.242,0.1672,-0.0074,-0.2458,0.1737,0.0212,-0.2171,0.173,0.0224,-0.265,0.168,0.0241,-0.2847,0.1517,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1468,0.1756,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1427,0.184,0.0224,-0.259,0.1608,0.0212,-0.2193,0.1814,-0.0073,-0.0373,0.0538,-0.0098,-0.2789,0.1524,-0.0098,-0.2845,0.1572,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.129,0.1719,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.124,0.1785,-0.0074,-0.242,0.1672,0.0074,-0.2458,0.1737,0,-0.2208,0.1726,0,-0.2673,0.1646,0,-0.2881,0.1492,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1499,0.1761,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.1471,0.1823,0,-0.2627,0.1594,0,-0.2227,0.1786,0.0655,-0.2633,0.1669,-0.0655,-0.2603,0.1631,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1706,0.1842,-0.0241,-0.2886,0.1549,-0.0838,-0.1036,0.1715,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1076,0.1676,0.086,-0.2178,0.1802,-0.086,-0.2178,0.1802,0.0241,-0.2886,0.1549,0,-0.2911,0.1515,-0.0455,-0.279,0.1574,0.0795,-0.2425,0.1717,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1939,0.1807,0.0455,-0.279,0.1574,-0.0893,-0.1231,0.176,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1231,0.176,0.0911,-0.1939,0.1807,-0.0795,-0.2425,0.1717,-0.0105,-0.2915,0.1498,0.0105,-0.2915,0.1498,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1498,0.1762,0.0798,-0.1498,0.1762,0.0799,-0.1471,0.1841,-0.0799,-0.1471,0.1841,-0.0212,-0.1723,0.1771,0.0212,-0.1713,0.1858,0.0212,-0.1723,0.1771,-0.0212,-0.1713,0.1858,0,-0.1761,0.1773,0,-0.1756,0.1836,0.0922,-0.1459,0.18,-0.0922,-0.1459,0.18,-0.0915,-0.1715,0.1796,0.0067,-0.201,0.1759,-0.0067,-0.2017,0.1831,-0.0067,-0.201,0.1759,0.0067,-0.2017,0.1831,-0.0915,-0.1706,0.1842],"name":"animation_000016"},{"vertices":[-0.0611,-0.2565,0.167,0.0611,-0.2565,0.167,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2608,0.1733,0.0611,-0.2608,0.1733,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1748,0.1782,0.0803,-0.1733,0.1862,-0.0172,-0.0373,0.0538,-0.0234,-0.2768,0.1594,-0.0234,-0.2828,0.1657,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1116,0.167,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1116,0.167,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1712,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1204,0.1789,-0.0758,-0.2182,0.1754,0.0758,-0.2201,0.1832,0.0758,-0.2182,0.1754,-0.0758,-0.2201,0.1832,-0.0215,-0.2389,0.1709,0.0215,-0.2427,0.179,0.0172,-0.0373,0.0538,0.0234,-0.2768,0.1594,0.0234,-0.2828,0.1657,0.0172,-0.0234,0.0538,0.0213,-0.1974,0.1772,-0.0213,-0.1976,0.1858,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1712,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1204,0.1789,0.0215,-0.2389,0.1709,-0.0215,-0.2427,0.179,0,-0.0373,0.0538,0,-0.2807,0.1577,0,-0.2853,0.1622,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.129,0.1719,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1246,0.1776,0,-0.2426,0.1702,0,-0.2456,0.176,0.0663,-0.2642,0.1687,-0.0663,-0.2642,0.1687,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1717,0.1823,-0.0244,-0.29,0.1584,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2185,0.1795,-0.0871,-0.2185,0.1795,0.0244,-0.29,0.1584,0,-0.2931,0.1556,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1748,0.1782,-0.0803,-0.1733,0.1862,-0.0213,-0.1974,0.1772,0.0213,-0.1976,0.1858,0,-0.2012,0.1771,0,-0.2016,0.1834,0.0927,-0.1717,0.1823,-0.0468,-0.2497,0.1678,-0.0468,-0.2548,0.176,-0.0449,-0.2765,0.1618,0.0785,-0.2403,0.173,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.193,0.1795,0.0507,-0.2062,0.1759,0.0468,-0.2548,0.176,0.0449,-0.2765,0.1618,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1245,0.1737,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1378,0.1738,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1325,0.1825,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1213,0.1779,0.0498,-0.1378,0.1738,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1325,0.1825,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2062,0.1759,-0.0507,-0.2072,0.1849,0.0899,-0.193,0.1795,-0.0785,-0.2403,0.173,0.0468,-0.2497,0.1678,0.0507,-0.2072,0.1849,-0.0069,-0.2211,0.1745,-0.0085,-0.2685,0.17,-0.0103,-0.2896,0.1557,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1499,0.1762,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1466,0.1832,-0.0085,-0.2635,0.1637,-0.0069,-0.223,0.1816,0.0069,-0.2211,0.1745,0.0085,-0.2685,0.17,0.0103,-0.2896,0.1557,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1499,0.1762,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1466,0.1832,0.0085,-0.2635,0.1637,0.0069,-0.223,0.1816,-0.0449,-0.28,0.1657,0.0785,-0.2422,0.1772,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1929,0.1841,0.0449,-0.28,0.1657,-0.0882,-0.1213,0.1779,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1245,0.1737,0.0899,-0.1929,0.1841,-0.0785,-0.2422,0.1772,-0.0103,-0.2929,0.1586,0.0103,-0.2929,0.1586,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.1611,0.1766,0.0512,-0.1589,0.1857,0.091,-0.1462,0.1777,-0.091,-0.1462,0.1777,0.0511,-0.1611,0.1766,-0.0512,-0.1589,0.1857,0.0068,-0.1761,0.1778,-0.0068,-0.1754,0.1851,-0.0068,-0.1761,0.1778,0.0068,-0.1754,0.1851,0.091,-0.1444,0.1822,-0.091,-0.1444,0.1822,-0.0696,-0.2407,0.171,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2671,0.1631,-0.0448,-0.2727,0.17,0.0696,-0.2443,0.1784,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2611,0.1673,-0.0655,-0.2639,0.1714,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1284,0.1726,0.079,-0.1954,0.1775,0.0775,-0.1231,0.1801,-0.079,-0.1955,0.1855,-0.0513,-0.186,0.1774,0.0513,-0.1853,0.1865,0.0915,-0.1716,0.18,0.032,-0.0373,0.0538,-0.0448,-0.2671,0.1631,0.0448,-0.2727,0.17,-0.032,-0.0226,0.0538,0.0513,-0.186,0.1774,-0.0513,-0.1853,0.1865,-0.0212,-0.2173,0.1749,-0.0224,-0.2655,0.1724,-0.0241,-0.2862,0.1576,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1284,0.1726,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1231,0.1801,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1469,0.1756,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1427,0.184,-0.0838,-0.1076,0.1676,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1689,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1122,0.1768,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1715,0.0478,-0.1194,0.1689,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1122,0.1768,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1954,0.1775,0.079,-0.1955,0.1855,0.0696,-0.2407,0.171,-0.0696,-0.2443,0.1784,-0.0224,-0.2599,0.1648,-0.0212,-0.2193,0.1833,-0.0493,-0.2282,0.1729,-0.0493,-0.2312,0.1816,0.086,-0.2168,0.1775,-0.086,-0.2168,0.1775,0.0493,-0.2282,0.1729,0.0493,-0.2312,0.1816,0.0073,-0.0373,0.0538,0.0098,-0.2804,0.1579,0.0098,-0.2857,0.1631,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.129,0.1719,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.124,0.1785,0.0074,-0.2425,0.1702,-0.0074,-0.246,0.1769,0.0212,-0.2173,0.1749,0.0224,-0.2655,0.1724,0.0241,-0.2862,0.1576,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1469,0.1756,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1427,0.184,0.0224,-0.2599,0.1648,0.0212,-0.2193,0.1833,-0.0073,-0.0373,0.0538,-0.0098,-0.2804,0.1579,-0.0098,-0.2857,0.1631,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.129,0.1719,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.124,0.1785,-0.0074,-0.2425,0.1702,0.0074,-0.246,0.1769,0,-0.2211,0.1745,0,-0.268,0.1691,0,-0.2898,0.1554,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1499,0.1762,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.147,0.1823,0,-0.2637,0.1637,0,-0.2227,0.1807,0.0655,-0.2639,0.1714,-0.0655,-0.2611,0.1673,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1705,0.1846,-0.0241,-0.2899,0.1611,-0.0838,-0.1036,0.1715,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1076,0.1676,0.086,-0.2177,0.1819,-0.086,-0.2177,0.1819,0.0241,-0.2899,0.1611,0,-0.2926,0.1578,-0.0455,-0.2801,0.1629,0.0795,-0.2428,0.1747,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1938,0.1817,0.0455,-0.2801,0.1629,-0.0893,-0.1231,0.1758,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1231,0.1758,0.0911,-0.1938,0.1817,-0.0795,-0.2428,0.1747,-0.0105,-0.2931,0.1562,0.0105,-0.2931,0.1562,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1499,0.1763,0.0798,-0.1499,0.1763,0.0799,-0.1471,0.1842,-0.0799,-0.1471,0.1842,-0.0212,-0.1724,0.1775,0.0212,-0.1712,0.1862,0.0212,-0.1724,0.1775,-0.0212,-0.1712,0.1862,0,-0.1761,0.1778,0,-0.1755,0.1841,0.0922,-0.1459,0.18,-0.0922,-0.1459,0.18,-0.0915,-0.1716,0.18,0.0067,-0.2012,0.1771,-0.0067,-0.2016,0.1843,-0.0067,-0.2012,0.1771,0.0067,-0.2016,0.1843,-0.0915,-0.1705,0.1846],"name":"animation_000017"},{"vertices":[-0.0611,-0.2572,0.171,0.0611,-0.2572,0.171,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.261,0.1776,0.0611,-0.261,0.1776,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1749,0.1786,0.0803,-0.1732,0.1866,-0.0172,-0.0373,0.0538,-0.0234,-0.2779,0.1648,-0.0234,-0.2835,0.1714,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1116,0.167,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1116,0.167,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1712,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1204,0.1789,-0.0758,-0.2184,0.1771,0.0758,-0.2198,0.185,0.0758,-0.2184,0.1771,-0.0758,-0.2198,0.185,-0.0215,-0.2393,0.1737,0.0215,-0.2426,0.182,0.0172,-0.0373,0.0538,0.0234,-0.2779,0.1648,0.0234,-0.2835,0.1714,0.0172,-0.0234,0.0538,0.0213,-0.1975,0.1783,-0.0213,-0.1974,0.1869,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1712,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1204,0.1789,0.0215,-0.2393,0.1737,-0.0215,-0.2426,0.182,0,-0.0373,0.0538,0,-0.2819,0.1634,0,-0.2862,0.1681,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.129,0.1719,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1246,0.1776,0,-0.243,0.1732,0,-0.2457,0.1792,0.0663,-0.2647,0.1732,-0.0663,-0.2647,0.1732,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1716,0.1826,-0.0244,-0.2911,0.1647,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2184,0.1812,-0.0871,-0.2184,0.1812,0.0244,-0.2911,0.1647,0,-0.2944,0.1621,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1749,0.1786,-0.0803,-0.1732,0.1866,-0.0213,-0.1975,0.1783,0.0213,-0.1974,0.1869,0,-0.2013,0.1783,0,-0.2015,0.1846,0.0927,-0.1716,0.1826,-0.0468,-0.2503,0.1712,-0.0468,-0.2548,0.1798,-0.0449,-0.2775,0.1672,0.0785,-0.2406,0.1759,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.193,0.1805,0.0507,-0.2063,0.1774,0.0468,-0.2548,0.1798,0.0449,-0.2775,0.1672,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1245,0.1735,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1378,0.1738,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1325,0.1824,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1213,0.1777,0.0498,-0.1378,0.1738,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1325,0.1824,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2063,0.1774,-0.0507,-0.2071,0.1864,0.0899,-0.193,0.1805,-0.0785,-0.2406,0.1759,0.0468,-0.2503,0.1712,0.0507,-0.2071,0.1864,-0.0069,-0.2213,0.1765,-0.0085,-0.2689,0.1746,-0.0103,-0.291,0.1619,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1499,0.1763,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1466,0.1833,-0.0085,-0.2643,0.1681,-0.0069,-0.2229,0.1836,0.0069,-0.2213,0.1765,0.0085,-0.2689,0.1746,0.0103,-0.291,0.1619,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1499,0.1763,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1466,0.1833,0.0085,-0.2643,0.1681,0.0069,-0.2229,0.1836,-0.0449,-0.2807,0.1712,0.0785,-0.2423,0.1803,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1928,0.185,0.0449,-0.2807,0.1712,-0.0882,-0.1213,0.1777,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1245,0.1735,0.0899,-0.1928,0.185,-0.0785,-0.2423,0.1803,-0.0103,-0.294,0.165,0.0103,-0.294,0.165,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.1611,0.1769,0.0512,-0.1588,0.186,0.091,-0.1463,0.1778,-0.091,-0.1463,0.1778,0.0511,-0.1611,0.1769,-0.0512,-0.1588,0.186,0.0068,-0.1762,0.1783,-0.0068,-0.1753,0.1856,-0.0068,-0.1762,0.1783,0.0068,-0.1753,0.1856,0.091,-0.1444,0.1823,-0.091,-0.1444,0.1823,-0.0696,-0.2411,0.1739,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.268,0.1678,-0.0448,-0.2731,0.175,0.0696,-0.2443,0.1815,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2617,0.1716,-0.0655,-0.2642,0.1758,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1284,0.1725,0.079,-0.1955,0.1786,0.0775,-0.1231,0.1799,-0.079,-0.1954,0.1866,-0.0513,-0.1861,0.1782,0.0513,-0.1851,0.1873,0.0915,-0.1716,0.1803,0.032,-0.0373,0.0538,-0.0448,-0.268,0.1678,0.0448,-0.2731,0.175,-0.032,-0.0226,0.0538,0.0513,-0.1861,0.1782,-0.0513,-0.1851,0.1873,-0.0212,-0.2175,0.1767,-0.0224,-0.2658,0.1768,-0.0241,-0.2874,0.1636,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1284,0.1725,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1231,0.1799,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1469,0.1756,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1426,0.184,-0.0838,-0.1076,0.1676,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1689,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1122,0.1769,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1715,0.0478,-0.1194,0.1689,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1122,0.1769,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1955,0.1786,0.079,-0.1954,0.1866,0.0696,-0.2411,0.1739,-0.0696,-0.2443,0.1815,-0.0224,-0.2606,0.1689,-0.0212,-0.2192,0.1852,-0.0493,-0.2285,0.1752,-0.0493,-0.2311,0.184,0.086,-0.2169,0.1791,-0.086,-0.2169,0.1791,0.0493,-0.2285,0.1752,0.0493,-0.2311,0.184,0.0073,-0.0373,0.0538,0.0098,-0.2816,0.1635,0.0098,-0.2865,0.169,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.129,0.1719,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.124,0.1785,0.0074,-0.243,0.1732,-0.0074,-0.246,0.1801,0.0212,-0.2175,0.1767,0.0224,-0.2658,0.1768,0.0241,-0.2874,0.1636,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1469,0.1756,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1426,0.184,0.0224,-0.2606,0.1689,0.0212,-0.2192,0.1852,-0.0073,-0.0373,0.0538,-0.0098,-0.2816,0.1635,-0.0098,-0.2865,0.169,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.129,0.1719,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.124,0.1785,-0.0074,-0.243,0.1732,0.0074,-0.246,0.1801,0,-0.2213,0.1765,0,-0.2685,0.1737,0,-0.2911,0.1616,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1499,0.1763,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.147,0.1824,0,-0.2645,0.168,0,-0.2227,0.1827,0.0655,-0.2642,0.1758,-0.0655,-0.2617,0.1716,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1704,0.1849,-0.0241,-0.2909,0.1673,-0.0838,-0.1036,0.1715,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1076,0.1676,0.086,-0.2175,0.1836,-0.086,-0.2175,0.1836,0.0241,-0.2909,0.1673,0,-0.2938,0.1642,-0.0455,-0.281,0.1685,0.0795,-0.243,0.1778,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1938,0.1827,0.0455,-0.281,0.1685,-0.0893,-0.1231,0.1756,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1231,0.1756,0.0911,-0.1938,0.1827,-0.0795,-0.243,0.1778,-0.0105,-0.2944,0.1626,0.0105,-0.2944,0.1626,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1499,0.1764,0.0798,-0.1499,0.1764,0.0799,-0.147,0.1842,-0.0799,-0.147,0.1842,-0.0212,-0.1724,0.178,0.0212,-0.1711,0.1866,0.0212,-0.1724,0.178,-0.0212,-0.1711,0.1866,0,-0.1762,0.1783,0,-0.1754,0.1846,0.0922,-0.1459,0.1801,-0.0922,-0.1459,0.1801,-0.0915,-0.1716,0.1803,0.0067,-0.2013,0.1783,-0.0067,-0.2015,0.1856,-0.0067,-0.2013,0.1783,0.0067,-0.2015,0.1856,-0.0915,-0.1704,0.1849],"name":"animation_000018"},{"vertices":[-0.0611,-0.2577,0.1751,0.0611,-0.2577,0.1751,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.261,0.1819,0.0611,-0.261,0.1819,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.175,0.1791,0.0803,-0.173,0.187,-0.0172,-0.0373,0.0538,-0.0234,-0.2788,0.1702,-0.0234,-0.2839,0.1772,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1116,0.167,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1116,0.167,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1712,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1204,0.1789,-0.0758,-0.2185,0.1789,0.0758,-0.2196,0.1868,0.0758,-0.2185,0.1789,-0.0758,-0.2196,0.1868,-0.0215,-0.2396,0.1766,0.0215,-0.2425,0.185,0.0172,-0.0373,0.0538,0.0234,-0.2788,0.1702,0.0234,-0.2839,0.1772,0.0172,-0.0234,0.0538,0.0213,-0.1975,0.1794,-0.0213,-0.1973,0.1881,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1712,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1204,0.1789,0.0215,-0.2396,0.1766,-0.0215,-0.2425,0.185,0,-0.0373,0.0538,0,-0.2828,0.1691,0,-0.2868,0.1741,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.129,0.1719,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1246,0.1776,0,-0.2433,0.1763,0,-0.2457,0.1824,0.0663,-0.2651,0.1778,-0.0663,-0.2651,0.1778,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1716,0.183,-0.0244,-0.292,0.171,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2184,0.1829,-0.0871,-0.2184,0.1829,0.0244,-0.292,0.171,0,-0.2954,0.1686,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.175,0.1791,-0.0803,-0.173,0.187,-0.0213,-0.1975,0.1794,0.0213,-0.1973,0.1881,0,-0.2013,0.1796,0,-0.2014,0.1859,0.0927,-0.1716,0.183,-0.0468,-0.2508,0.1748,-0.0468,-0.2548,0.1835,-0.0449,-0.2782,0.1726,0.0785,-0.2408,0.1788,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1931,0.1815,0.0507,-0.2064,0.1789,0.0468,-0.2548,0.1835,0.0449,-0.2782,0.1726,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1246,0.1734,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1379,0.1738,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1325,0.1823,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1213,0.1775,0.0498,-0.1379,0.1738,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1325,0.1823,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2064,0.1789,-0.0507,-0.2069,0.1879,0.0899,-0.1931,0.1815,-0.0785,-0.2408,0.1788,0.0468,-0.2508,0.1748,0.0507,-0.2069,0.1879,-0.0069,-0.2214,0.1785,-0.0085,-0.2691,0.1792,-0.0103,-0.292,0.1682,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.15,0.1763,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1466,0.1833,-0.0085,-0.2649,0.1724,-0.0069,-0.2228,0.1857,0.0069,-0.2214,0.1785,0.0085,-0.2691,0.1792,0.0103,-0.292,0.1682,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.15,0.1763,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1466,0.1833,0.0085,-0.2649,0.1724,0.0069,-0.2228,0.1857,-0.0449,-0.2811,0.1768,0.0785,-0.2422,0.1833,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1926,0.186,0.0449,-0.2811,0.1768,-0.0882,-0.1213,0.1775,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1246,0.1734,0.0899,-0.1926,0.186,-0.0785,-0.2422,0.1833,-0.0103,-0.2948,0.1715,0.0103,-0.2948,0.1715,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.1612,0.1772,0.0512,-0.1587,0.1862,0.091,-0.1463,0.1778,-0.091,-0.1463,0.1778,0.0511,-0.1612,0.1772,-0.0512,-0.1587,0.1862,0.0068,-0.1762,0.1788,-0.0068,-0.1752,0.1861,-0.0068,-0.1762,0.1788,0.0068,-0.1752,0.1861,0.091,-0.1444,0.1823,-0.091,-0.1444,0.1823,-0.0696,-0.2414,0.1769,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2687,0.1726,-0.0448,-0.2733,0.1801,0.0696,-0.2441,0.1847,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2621,0.1759,-0.0655,-0.2644,0.1803,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1285,0.1724,0.079,-0.1956,0.1797,0.0775,-0.1231,0.1798,-0.079,-0.1952,0.1876,-0.0513,-0.1862,0.179,0.0513,-0.1849,0.188,0.0915,-0.1716,0.1807,0.032,-0.0373,0.0538,-0.0448,-0.2687,0.1726,0.0448,-0.2733,0.1801,-0.032,-0.0226,0.0538,0.0513,-0.1862,0.179,-0.0513,-0.1849,0.188,-0.0212,-0.2177,0.1786,-0.0224,-0.2659,0.1812,-0.0241,-0.2884,0.1696,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1285,0.1724,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1231,0.1798,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1469,0.1757,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1426,0.184,-0.0838,-0.1076,0.1676,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1689,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1122,0.1769,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1715,0.0478,-0.1194,0.1689,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1122,0.1769,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1956,0.1797,0.079,-0.1952,0.1876,0.0696,-0.2414,0.1769,-0.0696,-0.2441,0.1847,-0.0224,-0.2612,0.1731,-0.0212,-0.219,0.1871,-0.0493,-0.2287,0.1775,-0.0493,-0.2308,0.1864,0.086,-0.2169,0.1808,-0.086,-0.2169,0.1808,0.0493,-0.2287,0.1775,0.0493,-0.2308,0.1864,0.0073,-0.0373,0.0538,0.0098,-0.2825,0.1692,0.0098,-0.2871,0.175,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.129,0.1719,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.124,0.1785,0.0074,-0.2433,0.1763,-0.0074,-0.246,0.1833,0.0212,-0.2177,0.1786,0.0224,-0.2659,0.1812,0.0241,-0.2884,0.1696,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1469,0.1757,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1426,0.184,0.0224,-0.2612,0.1731,0.0212,-0.219,0.1871,-0.0073,-0.0373,0.0538,-0.0098,-0.2825,0.1692,-0.0098,-0.2871,0.175,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.129,0.1719,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.124,0.1785,-0.0074,-0.2433,0.1763,0.0074,-0.246,0.1833,0,-0.2214,0.1785,0,-0.2688,0.1783,0,-0.2922,0.1679,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.15,0.1763,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.147,0.1824,0,-0.2651,0.1723,0,-0.2226,0.1847,0.0655,-0.2644,0.1803,-0.0655,-0.2621,0.1759,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1703,0.1852,-0.0241,-0.2916,0.1736,-0.0838,-0.1036,0.1715,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1076,0.1676,0.086,-0.2173,0.1853,-0.086,-0.2173,0.1853,0.0241,-0.2916,0.1736,0,-0.2946,0.1707,-0.0455,-0.2816,0.1741,0.0795,-0.2431,0.1808,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1937,0.1837,0.0455,-0.2816,0.1741,-0.0893,-0.1232,0.1755,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1232,0.1755,0.0911,-0.1937,0.1837,-0.0795,-0.2431,0.1808,-0.0105,-0.2954,0.1692,0.0105,-0.2954,0.1692,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.15,0.1765,0.0798,-0.15,0.1765,0.0799,-0.1469,0.1843,-0.0799,-0.1469,0.1843,-0.0212,-0.1724,0.1784,0.0212,-0.171,0.187,0.0212,-0.1724,0.1784,-0.0212,-0.171,0.187,0,-0.1762,0.1788,0,-0.1754,0.1851,0.0922,-0.1459,0.1801,-0.0922,-0.1459,0.1801,-0.0915,-0.1716,0.1807,0.0067,-0.2013,0.1796,-0.0067,-0.2014,0.1868,-0.0067,-0.2013,0.1796,0.0067,-0.2014,0.1868,-0.0915,-0.1703,0.1852],"name":"animation_000019"},{"vertices":[-0.0611,-0.258,0.1791,0.0611,-0.258,0.1791,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2609,0.1861,0.0611,-0.2609,0.1861,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.175,0.1795,0.0803,-0.1728,0.1873,-0.0172,-0.0373,0.0538,-0.0234,-0.2794,0.1757,-0.0234,-0.284,0.183,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1116,0.167,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1116,0.167,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1712,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1204,0.1789,-0.0758,-0.2187,0.1806,0.0758,-0.2193,0.1886,0.0758,-0.2187,0.1806,-0.0758,-0.2193,0.1886,-0.0215,-0.2398,0.1795,0.0215,-0.2423,0.188,0.0172,-0.0373,0.0538,0.0234,-0.2794,0.1757,0.0234,-0.284,0.183,0.0172,-0.0234,0.0538,0.0213,-0.1976,0.1806,-0.0213,-0.197,0.1892,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1712,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1204,0.1789,0.0215,-0.2398,0.1795,-0.0215,-0.2423,0.188,0,-0.0373,0.0538,0,-0.2835,0.1748,0,-0.2871,0.1801,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.129,0.1719,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1246,0.1777,0,-0.2436,0.1793,0,-0.2456,0.1856,0.0663,-0.2652,0.1823,-0.0663,-0.2652,0.1823,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1715,0.1833,-0.0244,-0.2925,0.1773,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2183,0.1847,-0.0871,-0.2183,0.1847,0.0244,-0.2925,0.1773,0,-0.2961,0.1752,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.175,0.1795,-0.0803,-0.1728,0.1873,-0.0213,-0.1976,0.1806,0.0213,-0.197,0.1892,0,-0.2014,0.1808,0,-0.2012,0.1871,0.0927,-0.1715,0.1833,-0.0468,-0.2511,0.1783,-0.0468,-0.2546,0.1873,-0.0449,-0.2786,0.178,0.0785,-0.2409,0.1817,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1931,0.1825,0.0507,-0.2065,0.1803,0.0468,-0.2546,0.1873,0.0449,-0.2786,0.178,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1246,0.1732,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1379,0.1737,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1325,0.1823,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1214,0.1774,0.0498,-0.1379,0.1737,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1325,0.1823,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2065,0.1803,-0.0507,-0.2066,0.1894,0.0899,-0.1931,0.1825,-0.0785,-0.2409,0.1817,0.0468,-0.2511,0.1783,0.0507,-0.2066,0.1894,-0.0069,-0.2215,0.1805,-0.0085,-0.2691,0.1838,-0.0103,-0.2927,0.1746,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.15,0.1764,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1465,0.1834,-0.0085,-0.2654,0.1768,-0.0069,-0.2226,0.1877,0.0069,-0.2215,0.1805,0.0085,-0.2691,0.1838,0.0103,-0.2927,0.1746,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.15,0.1764,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1465,0.1834,0.0085,-0.2654,0.1768,0.0069,-0.2226,0.1877,-0.0449,-0.2813,0.1824,0.0785,-0.242,0.1863,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1925,0.187,0.0449,-0.2813,0.1824,-0.0882,-0.1214,0.1774,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1246,0.1732,0.0899,-0.1925,0.187,-0.0785,-0.242,0.1863,-0.0103,-0.2953,0.178,0.0103,-0.2953,0.178,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.1612,0.1774,0.0512,-0.1586,0.1864,0.091,-0.1463,0.1779,-0.091,-0.1463,0.1779,0.0511,-0.1612,0.1774,-0.0512,-0.1586,0.1864,0.0068,-0.1762,0.1793,-0.0068,-0.1751,0.1866,-0.0068,-0.1762,0.1793,0.0068,-0.1751,0.1866,0.091,-0.1443,0.1823,-0.091,-0.1443,0.1823,-0.0696,-0.2416,0.1798,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2691,0.1774,-0.0448,-0.2733,0.1852,0.0696,-0.2439,0.1878,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2624,0.1803,-0.0655,-0.2643,0.1848,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1285,0.1723,0.079,-0.1957,0.1808,0.0775,-0.1231,0.1796,-0.079,-0.1949,0.1887,-0.0513,-0.1862,0.1797,0.0513,-0.1847,0.1888,0.0915,-0.1716,0.181,0.032,-0.0373,0.0538,-0.0448,-0.2691,0.1774,0.0448,-0.2733,0.1852,-0.032,-0.0226,0.0538,0.0513,-0.1862,0.1797,-0.0513,-0.1847,0.1888,-0.0212,-0.2177,0.1805,-0.0224,-0.2658,0.1856,-0.0241,-0.289,0.1758,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1285,0.1723,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1231,0.1796,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.147,0.1757,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1426,0.184,-0.0838,-0.1076,0.1676,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1689,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1122,0.1769,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1715,0.0478,-0.1194,0.1689,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1122,0.1769,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1957,0.1808,0.079,-0.1949,0.1887,0.0696,-0.2416,0.1798,-0.0696,-0.2439,0.1878,-0.0224,-0.2616,0.1772,-0.0212,-0.2188,0.1891,-0.0493,-0.2289,0.1798,-0.0493,-0.2305,0.1888,0.086,-0.217,0.1824,-0.086,-0.217,0.1824,0.0493,-0.2289,0.1798,0.0493,-0.2305,0.1888,0.0073,-0.0373,0.0538,0.0098,-0.2832,0.1749,0.0098,-0.2873,0.181,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.129,0.1719,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.124,0.1785,0.0074,-0.2435,0.1793,-0.0074,-0.2458,0.1865,0.0212,-0.2177,0.1805,0.0224,-0.2658,0.1856,0.0241,-0.289,0.1758,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.147,0.1757,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1426,0.184,0.0224,-0.2616,0.1772,0.0212,-0.2188,0.1891,-0.0073,-0.0373,0.0538,-0.0098,-0.2832,0.1749,-0.0098,-0.2873,0.181,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.129,0.1719,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.124,0.1785,-0.0074,-0.2435,0.1793,0.0074,-0.2458,0.1865,0,-0.2215,0.1805,0,-0.2688,0.1829,0,-0.2929,0.1743,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.15,0.1764,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.147,0.1825,0,-0.2656,0.1767,0,-0.2225,0.1868,0.0655,-0.2643,0.1848,-0.0655,-0.2624,0.1803,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1702,0.1855,-0.0241,-0.2919,0.1799,-0.0838,-0.1036,0.1715,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1076,0.1676,0.086,-0.2171,0.187,-0.086,-0.2171,0.187,0.0241,-0.2919,0.1799,0,-0.2952,0.1772,-0.0455,-0.2819,0.1798,0.0795,-0.243,0.1839,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1937,0.1848,0.0455,-0.2819,0.1798,-0.0893,-0.1232,0.1753,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1232,0.1753,0.0911,-0.1937,0.1848,-0.0795,-0.243,0.1839,-0.0105,-0.296,0.1757,0.0105,-0.296,0.1757,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.15,0.1766,0.0798,-0.15,0.1766,0.0799,-0.1469,0.1843,-0.0799,-0.1469,0.1843,-0.0212,-0.1725,0.1788,0.0212,-0.1709,0.1875,0.0212,-0.1725,0.1788,-0.0212,-0.1709,0.1875,0,-0.1762,0.1793,0,-0.1753,0.1856,0.0922,-0.1459,0.1802,-0.0922,-0.1459,0.1802,-0.0915,-0.1716,0.181,0.0067,-0.2014,0.1808,-0.0067,-0.2012,0.1881,-0.0067,-0.2014,0.1808,0.0067,-0.2012,0.1881,-0.0915,-0.1702,0.1855],"name":"animation_000020"},{"vertices":[-0.0611,-0.2578,0.179,0.0611,-0.2578,0.179,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2608,0.186,0.0611,-0.2608,0.186,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1749,0.1802,0.0803,-0.1727,0.188,-0.0172,-0.0373,0.0538,-0.0234,-0.2791,0.1752,-0.0234,-0.2839,0.1824,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1116,0.1671,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1116,0.1671,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1713,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1203,0.179,-0.0758,-0.2185,0.1812,0.0758,-0.2192,0.1891,0.0758,-0.2185,0.1812,-0.0758,-0.2192,0.1891,-0.0215,-0.2396,0.1797,0.0215,-0.2422,0.1883,0.0172,-0.0373,0.0538,0.0234,-0.2791,0.1752,0.0234,-0.2839,0.1824,0.0172,-0.0234,0.0538,0.0213,-0.1974,0.1812,-0.0213,-0.1969,0.1898,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1713,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1203,0.179,0.0215,-0.2396,0.1797,-0.0215,-0.2422,0.1883,0,-0.0373,0.0538,0,-0.2831,0.1742,0,-0.2869,0.1794,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.129,0.1721,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1246,0.1778,0,-0.2433,0.1795,0,-0.2455,0.1858,0.0663,-0.265,0.1821,-0.0663,-0.265,0.1821,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1714,0.184,-0.0244,-0.2922,0.1765,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2181,0.1853,-0.0871,-0.2181,0.1853,0.0244,-0.2922,0.1765,0,-0.2957,0.1743,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1749,0.1802,-0.0803,-0.1727,0.188,-0.0213,-0.1974,0.1812,0.0213,-0.1969,0.1898,0,-0.2012,0.1815,0,-0.2011,0.1878,0.0927,-0.1714,0.184,-0.0468,-0.2509,0.1784,-0.0468,-0.2545,0.1873,-0.0449,-0.2784,0.1775,0.0785,-0.2407,0.182,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1929,0.1831,0.0507,-0.2064,0.1809,0.0468,-0.2545,0.1873,0.0449,-0.2784,0.1775,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1246,0.1734,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1379,0.174,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1323,0.1825,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1213,0.1776,0.0498,-0.1379,0.174,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1323,0.1825,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2064,0.1809,-0.0507,-0.2065,0.19,0.0899,-0.1929,0.1831,-0.0785,-0.2407,0.182,0.0468,-0.2509,0.1784,0.0507,-0.2065,0.19,-0.0069,-0.2213,0.181,-0.0085,-0.269,0.1836,-0.0103,-0.2923,0.1738,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1499,0.1768,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1464,0.1837,-0.0085,-0.2651,0.1766,-0.0069,-0.2225,0.1882,0.0069,-0.2213,0.181,0.0085,-0.269,0.1836,0.0103,-0.2923,0.1738,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1499,0.1768,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1464,0.1837,0.0085,-0.2651,0.1766,0.0069,-0.2225,0.1882,-0.0449,-0.2811,0.1818,0.0785,-0.2419,0.1865,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1923,0.1876,0.0449,-0.2811,0.1818,-0.0882,-0.1213,0.1776,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1246,0.1734,0.0899,-0.1923,0.1876,-0.0785,-0.2419,0.1865,-0.0103,-0.295,0.1772,0.0103,-0.295,0.1772,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.1611,0.1779,0.0512,-0.1584,0.1869,0.091,-0.1462,0.1783,-0.091,-0.1462,0.1783,0.0511,-0.1611,0.1779,-0.0512,-0.1584,0.1869,0.0068,-0.1761,0.1799,-0.0068,-0.175,0.1871,-0.0068,-0.1761,0.1799,0.0068,-0.175,0.1871,0.091,-0.1442,0.1827,-0.091,-0.1442,0.1827,-0.0696,-0.2414,0.1801,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2689,0.1771,-0.0448,-0.2732,0.1848,0.0696,-0.2438,0.188,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2622,0.1801,-0.0655,-0.2642,0.1846,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1285,0.1725,0.079,-0.1955,0.1814,0.0775,-0.123,0.1798,-0.079,-0.1948,0.1893,-0.0513,-0.1861,0.1804,0.0513,-0.1845,0.1894,0.0915,-0.1715,0.1817,0.032,-0.0373,0.0538,-0.0448,-0.2689,0.1771,0.0448,-0.2732,0.1848,-0.032,-0.0226,0.0538,0.0513,-0.1861,0.1804,-0.0513,-0.1845,0.1894,-0.0212,-0.2176,0.181,-0.0224,-0.2656,0.1855,-0.0241,-0.2887,0.175,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1285,0.1725,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.123,0.1798,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1469,0.1761,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1424,0.1843,-0.0838,-0.1077,0.1676,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1689,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1122,0.1769,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1715,0.0478,-0.1194,0.1689,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1122,0.1769,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1955,0.1814,0.079,-0.1948,0.1893,0.0696,-0.2414,0.1801,-0.0696,-0.2438,0.188,-0.0224,-0.2613,0.1771,-0.0212,-0.2187,0.1896,-0.0493,-0.2287,0.1802,-0.0493,-0.2305,0.1892,0.086,-0.2168,0.183,-0.086,-0.2168,0.183,0.0493,-0.2287,0.1802,0.0493,-0.2305,0.1892,0.0073,-0.0373,0.0538,0.0098,-0.2829,0.1743,0.0098,-0.2871,0.1803,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.129,0.1721,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.1239,0.1786,0.0074,-0.2433,0.1796,-0.0074,-0.2457,0.1867,0.0212,-0.2176,0.181,0.0224,-0.2656,0.1855,0.0241,-0.2887,0.175,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1469,0.1761,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1424,0.1843,0.0224,-0.2613,0.1771,0.0212,-0.2187,0.1896,-0.0073,-0.0373,0.0538,-0.0098,-0.2829,0.1743,-0.0098,-0.2871,0.1803,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.129,0.1721,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.1239,0.1786,-0.0074,-0.2433,0.1796,0.0074,-0.2457,0.1867,0,-0.2213,0.181,0,-0.2687,0.1826,0,-0.2925,0.1734,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1499,0.1768,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.1469,0.1828,0,-0.2653,0.1766,0,-0.2223,0.1873,0.0655,-0.2642,0.1846,-0.0655,-0.2622,0.1801,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1701,0.1861,-0.0241,-0.2917,0.1791,-0.0838,-0.1036,0.1715,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1077,0.1676,0.086,-0.217,0.1876,-0.086,-0.217,0.1876,0.0241,-0.2917,0.1791,0,-0.2949,0.1764,-0.0455,-0.2817,0.1792,0.0795,-0.2429,0.1841,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1935,0.1854,0.0455,-0.2817,0.1792,-0.0893,-0.1231,0.1755,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1231,0.1755,0.0911,-0.1935,0.1854,-0.0795,-0.2429,0.1841,-0.0105,-0.2957,0.1749,0.0105,-0.2957,0.1749,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1499,0.177,0.0798,-0.1499,0.177,0.0799,-0.1467,0.1848,-0.0799,-0.1467,0.1848,-0.0212,-0.1723,0.1794,0.0212,-0.1707,0.188,0.0212,-0.1723,0.1794,-0.0212,-0.1707,0.188,0,-0.1761,0.1799,0,-0.1751,0.1862,0.0922,-0.1457,0.1806,-0.0922,-0.1457,0.1806,-0.0915,-0.1715,0.1817,0.0067,-0.2012,0.1815,-0.0067,-0.2011,0.1887,-0.0067,-0.2012,0.1815,0.0067,-0.2011,0.1887,-0.0915,-0.1701,0.1861],"name":"animation_000021"},{"vertices":[-0.0611,-0.2575,0.1789,0.0611,-0.2575,0.1789,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2607,0.1858,0.0611,-0.2607,0.1858,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1747,0.1808,0.0803,-0.1725,0.1887,-0.0172,-0.0373,0.0538,-0.0234,-0.2787,0.1746,-0.0234,-0.2837,0.1817,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1117,0.1671,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1117,0.1671,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1714,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1203,0.1791,-0.0758,-0.2183,0.1818,0.0758,-0.2191,0.1897,0.0758,-0.2183,0.1818,-0.0758,-0.2191,0.1897,-0.0215,-0.2394,0.18,0.0215,-0.2421,0.1885,0.0172,-0.0373,0.0538,0.0234,-0.2787,0.1746,0.0234,-0.2837,0.1817,0.0172,-0.0234,0.0538,0.0213,-0.1973,0.1818,-0.0213,-0.1968,0.1904,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1714,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1203,0.1791,0.0215,-0.2394,0.18,-0.0215,-0.2421,0.1885,0,-0.0373,0.0538,0,-0.2828,0.1736,0,-0.2866,0.1787,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.129,0.1722,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1245,0.1778,0,-0.2431,0.1798,0,-0.2453,0.186,0.0663,-0.2648,0.1818,-0.0663,-0.2648,0.1818,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1712,0.1846,-0.0244,-0.2919,0.1757,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.218,0.1858,-0.0871,-0.218,0.1858,0.0244,-0.2919,0.1757,0,-0.2954,0.1734,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1747,0.1808,-0.0803,-0.1725,0.1887,-0.0213,-0.1973,0.1818,0.0213,-0.1968,0.1904,0,-0.2011,0.1821,0,-0.2009,0.1884,0.0927,-0.1712,0.1846,-0.0468,-0.2506,0.1785,-0.0468,-0.2544,0.1873,-0.0449,-0.2781,0.1769,0.0785,-0.2405,0.1822,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1928,0.1837,0.0507,-0.2062,0.1815,0.0468,-0.2544,0.1873,0.0449,-0.2781,0.1769,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1245,0.1737,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1378,0.1743,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1322,0.1828,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1212,0.1778,0.0498,-0.1378,0.1743,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1322,0.1828,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2062,0.1815,-0.0507,-0.2064,0.1905,0.0899,-0.1928,0.1837,-0.0785,-0.2405,0.1822,0.0468,-0.2506,0.1785,0.0507,-0.2064,0.1905,-0.0069,-0.2212,0.1815,-0.0085,-0.2688,0.1834,-0.0103,-0.292,0.173,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1498,0.1772,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1463,0.1841,-0.0085,-0.2648,0.1765,-0.0069,-0.2224,0.1887,0.0069,-0.2212,0.1815,0.0085,-0.2688,0.1834,0.0103,-0.292,0.173,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1498,0.1772,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1463,0.1841,0.0085,-0.2648,0.1765,0.0069,-0.2224,0.1887,-0.0449,-0.2809,0.1813,0.0785,-0.2418,0.1868,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1922,0.1883,0.0449,-0.2809,0.1813,-0.0882,-0.1212,0.1778,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1245,0.1737,0.0899,-0.1922,0.1883,-0.0785,-0.2418,0.1868,-0.0103,-0.2947,0.1763,0.0103,-0.2947,0.1763,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.161,0.1784,0.0512,-0.1583,0.1874,0.091,-0.1461,0.1787,-0.091,-0.1461,0.1787,0.0511,-0.161,0.1784,-0.0512,-0.1583,0.1874,0.0068,-0.176,0.1805,-0.0068,-0.1748,0.1877,-0.0068,-0.176,0.1805,0.0068,-0.1748,0.1877,0.091,-0.1441,0.1831,-0.091,-0.1441,0.1831,-0.0696,-0.2412,0.1803,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2686,0.1768,-0.0448,-0.273,0.1844,0.0696,-0.2437,0.1882,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2619,0.1799,-0.0655,-0.2641,0.1844,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1284,0.1728,0.079,-0.1954,0.182,0.0775,-0.1229,0.18,-0.079,-0.1947,0.1899,-0.0513,-0.1859,0.181,0.0513,-0.1844,0.19,0.0915,-0.1713,0.1823,0.032,-0.0373,0.0538,-0.0448,-0.2686,0.1768,0.0448,-0.273,0.1844,-0.032,-0.0226,0.0538,0.0513,-0.1859,0.181,-0.0513,-0.1844,0.19,-0.0212,-0.2174,0.1815,-0.0224,-0.2655,0.1853,-0.0241,-0.2883,0.1743,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1284,0.1728,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1229,0.18,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1468,0.1765,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1423,0.1846,-0.0838,-0.1077,0.1676,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.169,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1121,0.1769,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1715,0.0478,-0.1194,0.169,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1121,0.1769,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1954,0.182,0.079,-0.1947,0.1899,0.0696,-0.2412,0.1803,-0.0696,-0.2437,0.1882,-0.0224,-0.2611,0.177,-0.0212,-0.2185,0.1901,-0.0493,-0.2285,0.1806,-0.0493,-0.2304,0.1896,0.086,-0.2166,0.1836,-0.086,-0.2166,0.1836,0.0493,-0.2285,0.1806,0.0493,-0.2304,0.1896,0.0073,-0.0373,0.0538,0.0098,-0.2825,0.1737,0.0098,-0.2869,0.1796,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.129,0.1722,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.1239,0.1787,0.0074,-0.2431,0.1798,-0.0074,-0.2456,0.1869,0.0212,-0.2174,0.1815,0.0224,-0.2655,0.1853,0.0241,-0.2883,0.1743,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1468,0.1765,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1423,0.1846,0.0224,-0.2611,0.177,0.0212,-0.2185,0.1901,-0.0073,-0.0373,0.0538,-0.0098,-0.2825,0.1737,-0.0098,-0.2869,0.1796,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.129,0.1722,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.1239,0.1787,-0.0074,-0.2431,0.1798,0.0074,-0.2456,0.1869,0,-0.2212,0.1815,0,-0.2685,0.1824,0,-0.2922,0.1726,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1498,0.1772,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.1467,0.1832,0,-0.265,0.1764,0,-0.2222,0.1878,0.0655,-0.2641,0.1844,-0.0655,-0.2619,0.1799,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1699,0.1868,-0.0241,-0.2914,0.1783,-0.0838,-0.1036,0.1715,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1077,0.1676,0.086,-0.2169,0.1882,-0.086,-0.2169,0.1882,0.0241,-0.2914,0.1783,0,-0.2946,0.1755,-0.0455,-0.2815,0.1786,0.0795,-0.2427,0.1843,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1934,0.186,0.0455,-0.2815,0.1786,-0.0893,-0.1231,0.1757,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1231,0.1757,0.0911,-0.1934,0.186,-0.0795,-0.2427,0.1843,-0.0105,-0.2954,0.174,0.0105,-0.2954,0.174,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1498,0.1774,0.0798,-0.1498,0.1774,0.0799,-0.1466,0.1852,-0.0799,-0.1466,0.1852,-0.0212,-0.1722,0.18,0.0212,-0.1705,0.1886,0.0212,-0.1722,0.18,-0.0212,-0.1705,0.1886,0,-0.176,0.1805,0,-0.175,0.1868,0.0922,-0.1456,0.181,-0.0922,-0.1456,0.181,-0.0915,-0.1713,0.1823,0.0067,-0.2011,0.1821,-0.0067,-0.2009,0.1893,-0.0067,-0.2011,0.1821,0.0067,-0.2009,0.1893,-0.0915,-0.1699,0.1868],"name":"animation_000022"},{"vertices":[-0.0611,-0.2572,0.1788,0.0611,-0.2572,0.1788,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2606,0.1857,0.0611,-0.2606,0.1857,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1746,0.1815,0.0803,-0.1724,0.1893,-0.0172,-0.0373,0.0538,-0.0234,-0.2784,0.1741,-0.0234,-0.2835,0.1811,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1117,0.1671,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1048,0.1738,-0.0738,-0.1117,0.1671,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1048,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1266,0.1715,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1202,0.1792,-0.0758,-0.2181,0.1823,0.0758,-0.219,0.1903,0.0758,-0.2181,0.1823,-0.0758,-0.219,0.1903,-0.0215,-0.2392,0.1803,0.0215,-0.242,0.1888,0.0172,-0.0373,0.0538,0.0234,-0.2784,0.1741,0.0234,-0.2835,0.1811,0.0172,-0.0234,0.0538,0.0213,-0.1971,0.1824,-0.0213,-0.1966,0.191,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1266,0.1715,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1202,0.1792,0.0215,-0.2392,0.1803,-0.0215,-0.242,0.1888,0,-0.0373,0.0538,0,-0.2824,0.1729,0,-0.2863,0.178,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.1289,0.1723,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1245,0.1779,0,-0.2429,0.18,0,-0.2452,0.1862,0.0663,-0.2646,0.1816,-0.0663,-0.2646,0.1816,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1711,0.1853,-0.0244,-0.2915,0.1749,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2179,0.1864,-0.0871,-0.2179,0.1864,0.0244,-0.2915,0.1749,0,-0.295,0.1726,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1746,0.1815,-0.0803,-0.1724,0.1893,-0.0213,-0.1971,0.1824,0.0213,-0.1966,0.191,0,-0.2009,0.1827,0,-0.2008,0.189,0.0927,-0.1711,0.1853,-0.0468,-0.2504,0.1785,-0.0468,-0.2543,0.1873,-0.0449,-0.2778,0.1764,0.0785,-0.2404,0.1825,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1926,0.1844,0.0507,-0.206,0.182,0.0468,-0.2543,0.1873,0.0449,-0.2778,0.1764,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1245,0.1739,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1377,0.1746,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1321,0.1831,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1211,0.1779,0.0498,-0.1377,0.1746,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1321,0.1831,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.206,0.182,-0.0507,-0.2063,0.1911,0.0899,-0.1926,0.1844,-0.0785,-0.2404,0.1825,0.0468,-0.2504,0.1785,0.0507,-0.2063,0.1911,-0.0069,-0.221,0.182,-0.0085,-0.2686,0.1831,-0.0103,-0.2916,0.1722,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1498,0.1775,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1461,0.1844,-0.0085,-0.2645,0.1763,-0.0069,-0.2222,0.1892,0.0069,-0.221,0.182,0.0085,-0.2686,0.1831,0.0103,-0.2916,0.1722,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1498,0.1775,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1461,0.1844,0.0085,-0.2645,0.1763,0.0069,-0.2222,0.1892,-0.0449,-0.2807,0.1807,0.0785,-0.2417,0.187,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.192,0.1889,0.0449,-0.2807,0.1807,-0.0882,-0.1211,0.1779,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1245,0.1739,0.0899,-0.192,0.1889,-0.0785,-0.2417,0.187,-0.0103,-0.2944,0.1754,0.0103,-0.2944,0.1754,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.1609,0.1789,0.0512,-0.1581,0.1879,0.091,-0.146,0.1791,-0.091,-0.146,0.1791,0.0511,-0.1609,0.1789,-0.0512,-0.1581,0.1879,0.0068,-0.1758,0.1811,-0.0068,-0.1747,0.1883,-0.0068,-0.1758,0.1811,0.0068,-0.1747,0.1883,0.091,-0.1439,0.1835,-0.091,-0.1439,0.1835,-0.0696,-0.241,0.1806,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2683,0.1764,-0.0448,-0.2729,0.184,0.0696,-0.2436,0.1884,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2617,0.1797,-0.0655,-0.2639,0.1841,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1284,0.173,0.079,-0.1952,0.1826,0.0775,-0.1228,0.1802,-0.079,-0.1946,0.1906,-0.0513,-0.1858,0.1817,0.0513,-0.1843,0.1907,0.0915,-0.1712,0.183,0.032,-0.0373,0.0538,-0.0448,-0.2683,0.1764,0.0448,-0.2729,0.184,-0.032,-0.0226,0.0538,0.0513,-0.1858,0.1817,-0.0513,-0.1843,0.1907,-0.0212,-0.2172,0.182,-0.0224,-0.2654,0.1851,-0.0241,-0.2879,0.1736,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1284,0.173,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1228,0.1802,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1468,0.1768,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1422,0.185,-0.0838,-0.1077,0.1677,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1691,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.1121,0.177,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1714,0.0478,-0.1194,0.1691,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.1121,0.177,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1952,0.1826,0.079,-0.1946,0.1906,0.0696,-0.241,0.1806,-0.0696,-0.2436,0.1884,-0.0224,-0.2608,0.1769,-0.0212,-0.2184,0.1906,-0.0493,-0.2283,0.1811,-0.0493,-0.2303,0.19,0.086,-0.2164,0.1842,-0.086,-0.2164,0.1842,0.0493,-0.2283,0.1811,0.0493,-0.2303,0.1901,0.0073,-0.0373,0.0538,0.0098,-0.2821,0.1731,0.0098,-0.2866,0.1789,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.1289,0.1723,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.1238,0.1788,0.0074,-0.2429,0.18,-0.0074,-0.2455,0.1871,0.0212,-0.2172,0.182,0.0224,-0.2654,0.1851,0.0241,-0.2879,0.1736,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1468,0.1768,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1422,0.185,0.0224,-0.2608,0.1769,0.0212,-0.2184,0.1906,-0.0073,-0.0373,0.0538,-0.0098,-0.2821,0.1731,-0.0098,-0.2866,0.1789,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.1289,0.1723,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.1238,0.1788,-0.0074,-0.2429,0.18,0.0074,-0.2455,0.1871,0,-0.221,0.182,0,-0.2683,0.1822,0,-0.2918,0.1718,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1498,0.1775,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.1466,0.1835,0,-0.2647,0.1762,0,-0.2221,0.1883,0.0655,-0.2639,0.1841,-0.0655,-0.2617,0.1797,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1697,0.1875,-0.0241,-0.2911,0.1775,-0.0838,-0.1036,0.1714,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1077,0.1677,0.086,-0.2168,0.1888,-0.086,-0.2168,0.1888,0.0241,-0.2911,0.1775,0,-0.2942,0.1747,-0.0455,-0.2812,0.178,0.0795,-0.2426,0.1845,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1932,0.1866,0.0455,-0.2812,0.178,-0.0893,-0.123,0.1759,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.123,0.1759,0.0911,-0.1932,0.1866,-0.0795,-0.2426,0.1845,-0.0105,-0.295,0.1731,0.0105,-0.295,0.1731,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1497,0.1778,0.0798,-0.1497,0.1778,0.0799,-0.1464,0.1856,-0.0799,-0.1464,0.1856,-0.0212,-0.1721,0.1805,0.0212,-0.1704,0.1891,0.0212,-0.1721,0.1805,-0.0212,-0.1704,0.1891,0,-0.1758,0.1811,0,-0.1748,0.1874,0.0922,-0.1455,0.1814,-0.0922,-0.1455,0.1814,-0.0915,-0.1712,0.183,0.0067,-0.2009,0.1827,-0.0067,-0.2008,0.1899,-0.0067,-0.2009,0.1827,0.0067,-0.2008,0.1899,-0.0915,-0.1697,0.1875],"name":"animation_000023"},{"vertices":[-0.0611,-0.257,0.1788,0.0611,-0.257,0.1788,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2604,0.1855,0.0611,-0.2604,0.1855,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1744,0.1821,0.0803,-0.1722,0.19,-0.0172,-0.0373,0.0538,-0.0234,-0.278,0.1736,-0.0234,-0.2832,0.1805,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1117,0.1671,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1047,0.1738,-0.0738,-0.1117,0.1671,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1047,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1265,0.1716,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1202,0.1792,-0.0758,-0.2179,0.1829,0.0758,-0.2189,0.1908,0.0758,-0.2179,0.1829,-0.0758,-0.2189,0.1908,-0.0215,-0.2389,0.1806,0.0215,-0.2419,0.189,0.0172,-0.0373,0.0538,0.0234,-0.278,0.1736,0.0234,-0.2832,0.1805,0.0172,-0.0234,0.0538,0.0213,-0.1969,0.1831,-0.0213,-0.1965,0.1917,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1265,0.1716,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1202,0.1792,0.0215,-0.2389,0.1806,-0.0215,-0.2419,0.189,0,-0.0373,0.0538,0,-0.282,0.1723,0,-0.286,0.1773,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.1289,0.1724,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1244,0.178,0,-0.2427,0.1802,0,-0.2451,0.1864,0.0663,-0.2644,0.1813,-0.0663,-0.2644,0.1813,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1709,0.1859,-0.0244,-0.2912,0.1741,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2177,0.187,-0.0871,-0.2177,0.187,0.0244,-0.2912,0.1741,0,-0.2946,0.1717,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1744,0.1821,-0.0803,-0.1722,0.19,-0.0213,-0.1969,0.1831,0.0213,-0.1965,0.1917,0,-0.2007,0.1833,0,-0.2006,0.1896,0.0927,-0.1709,0.1859,-0.0468,-0.2501,0.1786,-0.0468,-0.2542,0.1874,-0.0449,-0.2774,0.1759,0.0785,-0.2402,0.1828,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1924,0.185,0.0507,-0.2058,0.1826,0.0468,-0.2542,0.1874,0.0449,-0.2774,0.1759,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1244,0.1741,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1377,0.1749,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.132,0.1833,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.121,0.1781,0.0498,-0.1377,0.1749,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.132,0.1833,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2058,0.1826,-0.0507,-0.2061,0.1917,0.0899,-0.1924,0.185,-0.0785,-0.2402,0.1828,0.0468,-0.2501,0.1786,0.0507,-0.2061,0.1917,-0.0069,-0.2208,0.1825,-0.0085,-0.2684,0.1829,-0.0103,-0.2911,0.1714,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1497,0.1779,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.146,0.1848,-0.0085,-0.2642,0.1761,-0.0069,-0.2221,0.1897,0.0069,-0.2208,0.1825,0.0085,-0.2684,0.1829,0.0103,-0.2911,0.1714,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1497,0.1779,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.146,0.1848,0.0085,-0.2642,0.1761,0.0069,-0.2221,0.1897,-0.0449,-0.2804,0.1801,0.0785,-0.2416,0.1872,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1919,0.1895,0.0449,-0.2804,0.1801,-0.0882,-0.121,0.1781,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1244,0.1741,0.0899,-0.1919,0.1895,-0.0785,-0.2416,0.1872,-0.0103,-0.294,0.1746,0.0103,-0.294,0.1746,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.1608,0.1794,0.0512,-0.1579,0.1883,0.091,-0.1459,0.1795,-0.091,-0.1459,0.1795,0.0511,-0.1608,0.1794,-0.0512,-0.1579,0.1883,0.0068,-0.1757,0.1817,-0.0068,-0.1745,0.1889,-0.0068,-0.1757,0.1817,0.0068,-0.1745,0.1889,0.091,-0.1438,0.1839,-0.091,-0.1438,0.1839,-0.0696,-0.2407,0.1808,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2679,0.1761,-0.0448,-0.2727,0.1836,0.0696,-0.2435,0.1886,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2614,0.1796,-0.0655,-0.2638,0.1839,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1283,0.1732,0.079,-0.195,0.1833,0.0775,-0.1227,0.1804,-0.079,-0.1944,0.1912,-0.0513,-0.1856,0.1823,0.0513,-0.1841,0.1913,0.0915,-0.171,0.1836,0.032,-0.0373,0.0538,-0.0448,-0.2679,0.1761,0.0448,-0.2727,0.1836,-0.032,-0.0226,0.0538,0.0513,-0.1856,0.1823,-0.0513,-0.1841,0.1913,-0.0212,-0.2171,0.1825,-0.0224,-0.2652,0.185,-0.0241,-0.2875,0.1728,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1283,0.1732,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1227,0.1804,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1467,0.1772,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.142,0.1853,-0.0838,-0.1077,0.1677,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1692,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.112,0.177,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1714,0.0478,-0.1194,0.1692,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.112,0.177,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.195,0.1833,0.079,-0.1944,0.1912,0.0696,-0.2407,0.1808,-0.0696,-0.2435,0.1886,-0.0224,-0.2605,0.1768,-0.0212,-0.2183,0.1911,-0.0493,-0.228,0.1815,-0.0493,-0.2302,0.1905,0.086,-0.2163,0.1848,-0.086,-0.2163,0.1848,0.0493,-0.228,0.1815,0.0493,-0.2302,0.1905,0.0073,-0.0373,0.0538,0.0098,-0.2817,0.1725,0.0098,-0.2863,0.1782,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.1289,0.1724,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.1238,0.1789,0.0074,-0.2426,0.1802,-0.0074,-0.2454,0.1873,0.0212,-0.2171,0.1825,0.0224,-0.2652,0.185,0.0241,-0.2875,0.1728,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1467,0.1772,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.142,0.1853,0.0224,-0.2605,0.1768,0.0212,-0.2183,0.1911,-0.0073,-0.0373,0.0538,-0.0098,-0.2817,0.1725,-0.0098,-0.2863,0.1782,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.1289,0.1724,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.1238,0.1789,-0.0074,-0.2426,0.1802,0.0074,-0.2454,0.1873,0,-0.2208,0.1825,0,-0.2681,0.182,0,-0.2913,0.171,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1497,0.1779,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.1465,0.1839,0,-0.2644,0.1761,0,-0.2219,0.1888,0.0655,-0.2638,0.1839,-0.0655,-0.2614,0.1796,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1696,0.1881,-0.0241,-0.2908,0.1767,-0.0838,-0.1036,0.1714,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1077,0.1677,0.086,-0.2167,0.1893,-0.086,-0.2167,0.1893,0.0241,-0.2908,0.1767,0,-0.2938,0.1738,-0.0455,-0.2809,0.1774,0.0795,-0.2424,0.1848,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.193,0.1873,0.0455,-0.2809,0.1774,-0.0893,-0.1229,0.1761,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1229,0.1761,0.0911,-0.193,0.1873,-0.0795,-0.2424,0.1848,-0.0105,-0.2946,0.1722,0.0105,-0.2946,0.1722,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1496,0.1783,0.0798,-0.1496,0.1783,0.0799,-0.1463,0.186,-0.0799,-0.1463,0.186,-0.0212,-0.172,0.1811,0.0212,-0.1702,0.1897,0.0212,-0.172,0.1811,-0.0212,-0.1702,0.1897,0,-0.1757,0.1817,0,-0.1746,0.1879,0.0922,-0.1454,0.1818,-0.0922,-0.1454,0.1818,-0.0915,-0.171,0.1836,0.0067,-0.2007,0.1833,-0.0067,-0.2006,0.1905,-0.0067,-0.2007,0.1833,0.0067,-0.2006,0.1905,-0.0915,-0.1696,0.1881],"name":"animation_000024"},{"vertices":[-0.0611,-0.2567,0.1787,0.0611,-0.2567,0.1787,-0.0453,-0.0364,0.0538,0.0453,-0.0364,0.0538,-0.0611,-0.2602,0.1854,0.0611,-0.2602,0.1854,-0.0453,-0.0235,0.0538,0.0453,-0.0235,0.0538,-0.0803,-0.1742,0.1828,0.0803,-0.1721,0.1906,-0.0172,-0.0373,0.0538,-0.0234,-0.2776,0.1731,-0.0234,-0.283,0.1798,-0.0172,-0.0234,0.0538,0.0555,-0.0508,0.1205,0.0645,-0.0764,0.1472,0.0738,-0.1117,0.1672,-0.0555,-0.0391,0.1236,-0.0645,-0.0667,0.1523,-0.0738,-0.1047,0.1738,-0.0738,-0.1117,0.1672,-0.0645,-0.0764,0.1472,-0.0555,-0.0508,0.1205,0.0738,-0.1047,0.1738,0.0645,-0.0667,0.1523,0.0555,-0.0391,0.1236,0.0185,-0.0542,0.1235,0.0195,-0.0846,0.1516,-0.0206,-0.1265,0.1717,-0.0185,-0.0417,0.1271,-0.0195,-0.0746,0.1575,0.0206,-0.1201,0.1793,-0.0758,-0.2177,0.1835,0.0758,-0.2189,0.1914,0.0758,-0.2177,0.1835,-0.0758,-0.2189,0.1914,-0.0215,-0.2387,0.1809,0.0215,-0.2418,0.1892,0.0172,-0.0373,0.0538,0.0234,-0.2776,0.1731,0.0234,-0.283,0.1798,0.0172,-0.0234,0.0538,0.0213,-0.1968,0.1837,-0.0213,-0.1963,0.1923,-0.0185,-0.0542,0.1235,-0.0195,-0.0846,0.1516,0.0206,-0.1265,0.1717,0.0185,-0.0417,0.1271,0.0195,-0.0746,0.1575,-0.0206,-0.1201,0.1793,0.0215,-0.2387,0.1809,-0.0215,-0.2418,0.1892,0,-0.0373,0.0538,0,-0.2815,0.1717,0,-0.2857,0.1766,-0,-0.0272,0.0538,0,-0.0546,0.124,0,-0.0858,0.1524,0,-0.1289,0.1725,0,-0.0455,0.1266,0,-0.0786,0.1567,0,-0.1244,0.1781,0,-0.2424,0.1805,0,-0.2449,0.1865,0.0663,-0.2641,0.1811,-0.0663,-0.2641,0.1811,0.0512,-0.03,0.0538,-0.0512,-0.03,0.0538,-0.0927,-0.1708,0.1866,-0.0244,-0.2908,0.1733,-0.0849,-0.1056,0.1695,-0.0739,-0.0692,0.148,-0.0633,-0.0434,0.1198,0.0633,-0.0434,0.1198,0.0739,-0.0692,0.148,0.0849,-0.1056,0.1695,0.0871,-0.2176,0.1876,-0.0871,-0.2176,0.1876,0.0244,-0.2908,0.1733,0,-0.2941,0.1708,0.0501,-0.0383,0.0884,-0.0501,-0.0256,0.0892,-0.0178,-0.0396,0.09,0.0178,-0.0259,0.091,-0.0501,-0.0383,0.0884,0.0501,-0.0256,0.0892,0.0178,-0.0396,0.09,-0.0178,-0.0259,0.091,0,-0.0397,0.0902,-0,-0.0297,0.091,-0.0569,-0.0316,0.0874,0.0569,-0.0316,0.0874,0.0803,-0.1742,0.1828,-0.0803,-0.1721,0.1906,-0.0213,-0.1968,0.1837,0.0213,-0.1963,0.1923,0,-0.2006,0.1839,0,-0.2005,0.1902,0.0927,-0.1708,0.1866,-0.0468,-0.2498,0.1787,-0.0468,-0.254,0.1874,-0.0449,-0.2771,0.1754,0.0785,-0.2399,0.183,-0.0674,-0.0582,0.134,-0.0453,-0.0997,0.1604,0.0453,-0.0906,0.1674,0.0786,-0.0897,0.1583,-0.0899,-0.1922,0.1856,0.0507,-0.2057,0.1832,0.0468,-0.254,0.1874,0.0449,-0.2771,0.1754,0.04,-0.0653,0.1365,-0.04,-0.0531,0.1414,-0.0882,-0.1243,0.1743,-0.0786,-0.0897,0.1583,-0.059,-0.0327,0.1051,-0.036,-0.0445,0.1062,-0.04,-0.0653,0.1365,-0.0498,-0.1376,0.1752,0.036,-0.0305,0.1084,0.04,-0.0531,0.1414,0.0498,-0.1318,0.1836,0.059,-0.0397,0.1041,0.0674,-0.0582,0.134,0.0882,-0.1209,0.1783,0.0498,-0.1376,0.1752,0.0453,-0.0997,0.1604,0.036,-0.0445,0.1062,-0.0498,-0.1318,0.1836,-0.0453,-0.0906,0.1674,-0.036,-0.0305,0.1084,-0.0507,-0.2057,0.1832,-0.0507,-0.206,0.1922,0.0899,-0.1922,0.1856,-0.0785,-0.2399,0.183,0.0468,-0.2498,0.1787,0.0507,-0.206,0.1922,-0.0069,-0.2206,0.183,-0.0085,-0.2682,0.1827,-0.0103,-0.2907,0.1706,-0.0073,-0.0376,0.0722,0.0073,-0.026,0.0725,-0.0071,-0.0682,0.139,-0.007,-0.1068,0.1637,-0.0068,-0.1496,0.1783,0.0071,-0.0588,0.1431,0.007,-0.1001,0.1695,0.0068,-0.1459,0.1851,-0.0085,-0.2639,0.176,-0.0069,-0.2219,0.1902,0.0069,-0.2206,0.183,0.0085,-0.2682,0.1827,0.0103,-0.2907,0.1706,0.0073,-0.0376,0.0722,-0.0073,-0.026,0.0725,0.0071,-0.0682,0.139,0.007,-0.1068,0.1637,0.0068,-0.1496,0.1783,-0.0071,-0.0588,0.1431,-0.007,-0.1001,0.1695,-0.0068,-0.1459,0.1851,0.0085,-0.2639,0.176,0.0069,-0.2219,0.1902,-0.0449,-0.2802,0.1795,0.0785,-0.2414,0.1875,-0.0674,-0.052,0.1363,0.0786,-0.0848,0.1617,-0.0899,-0.1917,0.1901,0.0449,-0.2802,0.1795,-0.0882,-0.1209,0.1783,-0.0786,-0.0848,0.1617,-0.0534,-0.0338,0.0708,0.0534,-0.0265,0.071,0.0674,-0.052,0.1363,0.0882,-0.1243,0.1743,0.0899,-0.1917,0.1901,-0.0785,-0.2414,0.1875,-0.0103,-0.2936,0.1737,0.0103,-0.2936,0.1737,-0.0534,-0.0265,0.071,-0.0334,-0.0375,0.0717,0.0334,-0.0229,0.0721,0.0534,-0.0338,0.0708,0.0334,-0.0375,0.0717,-0.0334,-0.0229,0.0721,-0.0073,-0.0452,0.1076,0.0073,-0.0341,0.1095,0.0073,-0.0452,0.1076,-0.0073,-0.0341,0.1095,-0.059,-0.0397,0.1041,0.059,-0.0327,0.1051,-0.0511,-0.1607,0.1799,0.0512,-0.1577,0.1888,0.091,-0.1458,0.1799,-0.091,-0.1458,0.1799,0.0511,-0.1607,0.1799,-0.0512,-0.1577,0.1888,0.0068,-0.1756,0.1822,-0.0068,-0.1743,0.1895,-0.0068,-0.1756,0.1822,0.0068,-0.1743,0.1895,0.091,-0.1436,0.1842,-0.091,-0.1436,0.1842,-0.0696,-0.2405,0.1811,-0.032,-0.0373,0.0538,0.0477,-0.0366,0.0712,0.0448,-0.2676,0.1758,-0.0448,-0.2725,0.1831,0.0696,-0.2434,0.1888,0.032,-0.0226,0.0538,-0.0477,-0.0238,0.0715,0.0655,-0.2611,0.1794,-0.0655,-0.2636,0.1837,0.0506,-0.0336,0.0538,-0.0506,-0.0336,0.0538,-0.0775,-0.1283,0.1735,0.079,-0.1948,0.1839,0.0775,-0.1226,0.1806,-0.079,-0.1943,0.1918,-0.0513,-0.1854,0.1829,0.0513,-0.1839,0.192,0.0915,-0.1708,0.1843,0.032,-0.0373,0.0538,-0.0448,-0.2676,0.1758,0.0448,-0.2725,0.1831,-0.032,-0.0226,0.0538,0.0513,-0.1854,0.1829,-0.0513,-0.1839,0.192,-0.0212,-0.2169,0.183,-0.0224,-0.265,0.1848,-0.0241,-0.2871,0.1721,-0.0175,-0.0376,0.0721,0.0175,-0.0237,0.0724,0.0597,-0.062,0.1346,0.0693,-0.0937,0.1582,0.0775,-0.1283,0.1735,-0.0597,-0.0512,0.1388,-0.0693,-0.0853,0.1642,-0.0775,-0.1226,0.1806,-0.0693,-0.0937,0.1582,-0.0597,-0.062,0.1346,-0.0525,-0.0429,0.105,0.0693,-0.0853,0.1642,0.0597,-0.0512,0.1388,0.0525,-0.0306,0.1068,-0.0189,-0.0675,0.1384,-0.0201,-0.105,0.1629,-0.021,-0.1466,0.1775,0.0189,-0.0561,0.1432,0.0201,-0.0968,0.1698,0.021,-0.1419,0.1856,-0.0838,-0.1077,0.1677,-0.073,-0.0725,0.1469,-0.0625,-0.0405,0.1214,-0.0377,-0.053,0.1221,-0.0427,-0.0809,0.1493,-0.0478,-0.1194,0.1692,0.0377,-0.0398,0.1257,0.0427,-0.0702,0.1553,0.0478,-0.112,0.177,0.0625,-0.0472,0.1197,0.073,-0.0725,0.1469,0.0838,-0.1036,0.1714,0.0478,-0.1194,0.1692,0.0427,-0.0809,0.1493,0.0377,-0.053,0.1221,-0.0478,-0.112,0.177,-0.0427,-0.0702,0.1553,-0.0377,-0.0398,0.1257,-0.079,-0.1948,0.1839,0.079,-0.1943,0.1918,0.0696,-0.2405,0.1811,-0.0696,-0.2434,0.1888,-0.0224,-0.2602,0.1767,-0.0212,-0.2181,0.1916,-0.0493,-0.2278,0.1819,-0.0493,-0.2301,0.1909,0.086,-0.2161,0.1854,-0.086,-0.2161,0.1854,0.0493,-0.2278,0.1819,0.0493,-0.2301,0.1909,0.0073,-0.0373,0.0538,0.0098,-0.2813,0.1719,0.0098,-0.286,0.1775,0.0073,-0.0256,0.0538,-0.0072,-0.0546,0.124,-0.0071,-0.0858,0.1524,0.0069,-0.1289,0.1725,0.0072,-0.0442,0.127,0.0071,-0.0775,0.1574,-0.0069,-0.1237,0.179,0.0074,-0.2424,0.1805,-0.0074,-0.2452,0.1875,0.0212,-0.2169,0.183,0.0224,-0.265,0.1848,0.0241,-0.2871,0.1721,0.0175,-0.0376,0.0721,-0.0175,-0.0237,0.0724,0.0189,-0.0675,0.1384,0.0201,-0.105,0.1629,0.021,-0.1466,0.1775,-0.0189,-0.0561,0.1432,-0.0201,-0.0968,0.1698,-0.021,-0.1419,0.1856,0.0224,-0.2602,0.1767,0.0212,-0.2181,0.1916,-0.0073,-0.0373,0.0538,-0.0098,-0.2813,0.1719,-0.0098,-0.286,0.1775,-0.0073,-0.0256,0.0538,0.0072,-0.0546,0.124,0.0071,-0.0858,0.1524,-0.0069,-0.1289,0.1725,-0.0072,-0.0442,0.127,-0.0071,-0.0775,0.1574,0.0069,-0.1237,0.179,-0.0074,-0.2424,0.1805,0.0074,-0.2452,0.1875,0,-0.2206,0.183,0,-0.2679,0.1817,0,-0.2909,0.1702,0,-0.0376,0.0722,-0,-0.0275,0.0725,0,-0.0682,0.139,0,-0.1068,0.1637,0,-0.1496,0.1783,0,-0.06,0.1426,0,-0.1009,0.1688,0,-0.1464,0.1843,0,-0.2641,0.1759,0,-0.2218,0.1892,0.0655,-0.2636,0.1837,-0.0655,-0.2611,0.1794,0.0506,-0.0263,0.0538,-0.0506,-0.0263,0.0538,0.0915,-0.1694,0.1888,-0.0241,-0.2904,0.1759,-0.0838,-0.1036,0.1714,-0.073,-0.0669,0.1498,-0.0625,-0.0472,0.1197,0.0625,-0.0405,0.1214,0.073,-0.0669,0.1498,0.0838,-0.1077,0.1677,0.086,-0.2166,0.1899,-0.086,-0.2166,0.1899,0.0241,-0.2904,0.1759,0,-0.2934,0.173,-0.0455,-0.2805,0.1769,0.0795,-0.2422,0.185,-0.0683,-0.0546,0.1346,0.0796,-0.087,0.1598,-0.0911,-0.1929,0.1879,0.0455,-0.2805,0.1769,-0.0893,-0.1228,0.1763,-0.0796,-0.087,0.1598,-0.0541,-0.0301,0.0707,0.0541,-0.0301,0.0707,0.0683,-0.0546,0.1346,0.0893,-0.1228,0.1763,0.0911,-0.1929,0.1879,-0.0795,-0.2422,0.185,-0.0105,-0.2941,0.1714,0.0105,-0.2941,0.1714,0.0525,-0.0429,0.105,-0.0525,-0.0306,0.1068,-0.0181,-0.045,0.1073,0.0181,-0.0318,0.1094,-0.0477,-0.0366,0.0712,0.0477,-0.0238,0.0715,0.0181,-0.045,0.1073,-0.0181,-0.0318,0.1094,0,-0.0452,0.1076,0,-0.0355,0.1092,-0.0598,-0.0359,0.104,0.0598,-0.0359,0.104,-0.0562,-0.0281,0.0881,-0.0347,-0.0394,0.0892,0.0347,-0.0249,0.0902,0.0562,-0.0353,0.0876,0.0347,-0.0394,0.0892,-0.0347,-0.0249,0.0902,-0.0073,-0.0397,0.0902,0.0073,-0.0282,0.0911,0.0073,-0.0397,0.0902,-0.0073,-0.0282,0.0911,-0.0562,-0.0353,0.0876,0.0562,-0.0281,0.0881,-0.0798,-0.1495,0.1787,0.0798,-0.1495,0.1787,0.0799,-0.1461,0.1864,-0.0799,-0.1461,0.1864,-0.0212,-0.1718,0.1817,0.0212,-0.17,0.1902,0.0212,-0.1718,0.1817,-0.0212,-0.17,0.1902,0,-0.1756,0.1822,0,-0.1745,0.1885,0.0922,-0.1452,0.1822,-0.0922,-0.1452,0.1822,-0.0915,-0.1708,0.1843,0.0067,-0.2006,0.1839,-0.0067,-0.2004,0.1912,-0.0067,-0.2006,0.1839,0.0067,-0.2004,0.1912,-0.0915,-0.1694,0.1888],"name":"animation_000025"}],"skinWeights":[1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,0.5,0.5,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.25,0.75,0.25,1,0,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,1,0,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,1,0,1,0,1,0,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,1,0,1,0,1,0,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,1,0,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,1,0,0.5,0.375,0.75,0.25,1,0,1,0,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,1,0,1,0,1,0,1,0,0.75,0.25,1,0,1,0,1,0,1,0,1,0,1,0,0.5,0.375,0.75,0.25,0.5,0.375,0.75,0.25,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.75,0.25,0.75,0.25,1,0,1,0,1,0,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.25,0.75,0.25,1,0,1,0,1,0,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,1,0,1,0,1,0,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.25,0.75,0.25,1,0,1,0,1,0,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,1,0,1,0,1,0,1,0,0.5,0.5,1,0,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0,1,0,1,0,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,1,0,0.5,0.375,0.75,0.25,1,0,1,0,0.75,0.25,0.5,0.375,0.75,0.25,0.75,0.25,1,0,1,0,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,1,0,1,0,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.75,0.25,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5],"influencesPerVertex":2,"faces":[41,0,203,99,223,0,1,2,3,0,1,2,3,41,203,32,275,99,1,4,5,2,1,4,5,2,41,36,273,99,275,6,7,2,5,6,7,2,5,41,273,11,223,99,7,8,3,2,7,8,3,2,41,4,207,100,272,9,10,11,12,9,10,11,12,41,207,12,229,100,10,13,14,11,10,13,14,11,41,51,276,100,229,15,16,11,14,15,16,11,14,41,276,35,272,100,16,17,12,11,16,17,12,11,41,0,223,101,332,18,19,20,21,0,3,18,19,41,223,11,230,101,19,22,23,20,3,8,20,18,41,69,347,101,230,24,25,20,23,21,22,18,20,41,347,65,332,101,25,26,21,20,22,23,19,18,41,1,271,102,211,27,28,29,30,24,25,26,27,41,271,34,277,102,28,31,32,29,25,28,29,26,41,76,348,102,277,33,34,29,32,30,31,26,29,41,348,64,211,102,34,35,30,29,31,32,27,26,41,22,240,103,339,36,37,38,39,33,34,35,36,41,240,21,252,103,37,40,41,38,34,37,38,35,41,71,349,103,252,42,43,38,41,39,40,35,38,41,349,72,339,103,43,44,39,38,40,41,36,35,41,20,239,104,256,45,46,47,48,42,43,44,45,41,239,21,255,104,46,49,50,47,43,37,46,44,41,45,246,104,255,51,52,47,50,47,48,44,46,41,246,28,256,104,52,53,48,47,48,49,45,44,41,23,242,105,259,54,55,56,57,50,51,52,53,41,242,24,258,105,55,58,59,56,51,54,55,52,41,48,249,105,258,60,61,56,59,56,57,52,55,41,249,31,259,105,61,62,57,56,57,58,53,52,41,16,234,106,342,63,64,65,66,59,60,61,62,41,234,15,261,106,64,67,68,65,60,63,64,61,41,74,350,106,261,69,70,65,68,65,66,61,64,41,350,75,342,106,70,71,66,65,66,67,62,61,41,8,269,107,399,72,73,74,75,68,69,70,71,41,269,32,278,107,73,76,77,74,69,4,72,70,41,77,351,107,278,78,79,74,77,73,74,70,72,41,351,68,399,107,79,80,75,74,74,75,71,70,41,42,226,108,293,81,82,83,84,76,77,78,79,41,226,92,216,108,82,85,86,83,77,80,81,78,41,34,279,108,216,87,88,83,86,28,82,78,81,41,279,50,293,108,88,89,84,83,82,83,79,78,41,40,224,109,294,90,91,92,93,84,85,86,87,41,224,5,208,109,91,94,95,92,85,88,89,86,41,33,280,109,208,96,97,92,95,90,91,86,89,41,280,37,294,109,97,98,93,92,91,92,87,86,41,39,206,110,295,99,100,101,102,93,94,95,96,41,206,1,211,110,100,27,30,101,94,24,27,95,41,64,352,110,211,35,103,101,30,32,97,95,27,41,352,78,295,110,103,104,102,101,97,98,96,95,41,14,233,111,265,105,106,107,108,99,100,101,102,41,233,15,264,111,106,109,110,107,100,63,103,101,41,27,298,111,264,111,112,107,110,104,105,101,103,41,298,26,265,111,112,113,108,107,105,106,102,101,41,17,236,112,268,114,115,116,117,107,108,109,110,41,236,18,267,112,115,118,119,116,108,111,112,109,41,30,301,112,267,120,121,116,119,113,114,109,112,41,301,29,268,112,121,122,117,116,114,115,110,109,41,20,215,113,251,123,124,125,126,42,116,117,118,41,215,387,194,113,124,127,128,125,116,119,120,117,41,113,194,398,353,125,128,129,130,117,120,121,122,41,353,70,251,113,130,131,126,125,122,123,118,117,41,21,239,114,252,40,132,133,41,37,43,124,38,41,239,20,251,114,132,123,126,133,43,42,118,124,41,70,354,114,251,131,134,133,126,123,125,124,118,41,354,71,252,114,134,42,41,133,125,39,38,124,41,17,364,115,253,114,135,136,137,107,126,127,128,41,364,81,375,115,135,138,139,136,126,129,130,127,41,90,373,115,375,140,141,136,139,131,132,127,130,41,373,72,253,115,141,44,137,136,132,41,128,127,41,22,241,116,254,142,143,144,145,33,133,134,135,41,241,84,376,116,143,146,147,144,133,136,137,134,41,82,365,116,376,148,149,144,147,138,139,134,137,41,365,44,254,116,149,150,145,144,139,140,135,134,41,21,240,117,255,49,151,152,50,37,34,141,46,41,240,22,254,117,151,142,145,152,34,33,135,141,41,44,245,117,254,150,153,152,145,140,142,141,135,41,245,45,255,117,153,51,50,152,142,47,46,141,41,28,247,118,256,53,154,155,48,49,143,144,45,41,247,391,191,118,154,156,157,155,143,145,146,144,41,118,191,387,215,155,157,158,159,144,146,119,116,41,215,20,256,118,159,45,48,155,116,42,45,144,41,25,244,119,257,160,161,162,163,147,148,149,150,41,244,85,377,119,161,164,165,162,148,151,152,149,41,83,366,119,377,166,167,162,165,153,154,149,152,41,366,47,257,119,167,168,163,162,154,155,150,149,41,24,243,120,258,58,169,170,59,54,156,157,55,41,243,25,257,120,169,160,163,170,156,147,150,157,41,47,248,120,257,168,171,170,163,155,158,157,150,41,248,48,258,120,171,60,59,170,158,56,55,157,41,31,250,121,259,62,172,173,57,58,159,160,53,41,250,392,192,121,172,174,175,173,159,161,162,160,41,121,192,389,217,173,175,176,177,160,162,163,164,41,217,23,259,121,177,54,57,173,164,50,53,160,41,14,363,122,260,178,179,180,181,99,165,166,167,41,363,80,378,122,179,182,183,180,165,168,169,166,41,91,374,122,378,184,185,180,183,170,171,166,169,41,374,73,260,122,185,186,181,180,171,172,167,166,41,15,233,123,261,67,187,188,68,63,100,173,64,41,233,14,260,123,187,178,181,188,100,99,167,173,41,73,357,123,260,186,189,188,181,172,174,173,167,41,357,74,261,123,189,69,68,188,174,65,64,173,41,23,217,124,262,54,177,190,191,50,164,175,176,41,217,389,201,124,177,176,192,190,164,163,177,175,41,124,201,397,358,190,192,193,194,175,177,178,179,41,358,75,262,124,194,71,191,190,179,67,176,175,41,16,235,125,263,195,196,197,198,59,180,181,182,41,235,388,195,125,196,199,200,197,180,183,184,181,41,125,195,393,300,197,200,201,202,181,184,185,186,41,300,46,263,125,202,203,198,197,186,187,182,181,41,15,234,126,264,109,204,205,110,63,60,188,103,41,234,16,263,126,204,195,198,205,60,59,182,188,41,46,299,126,263,203,206,205,198,187,189,188,182,41,299,27,264,126,206,111,110,205,189,104,103,188,41,26,369,127,265,113,207,208,108,106,190,191,102,41,369,86,379,127,207,209,210,208,190,192,193,191,41,80,363,127,379,211,212,208,210,168,165,191,193,41,363,14,265,127,212,105,108,208,165,99,102,191,41,19,238,128,266,213,214,215,216,194,195,196,197,41,238,390,196,128,214,217,218,215,195,198,199,196,41,128,196,394,303,215,218,219,220,196,199,200,201,41,303,49,266,128,220,221,216,215,201,202,197,196,41,18,237,129,267,118,222,223,119,111,203,204,112,41,237,19,266,129,222,213,216,223,203,194,197,204,41,49,302,129,266,221,224,223,216,202,205,204,197,41,302,30,267,129,224,120,119,223,205,113,112,204,41,29,370,130,268,122,225,226,117,115,206,207,110,41,370,87,380,130,225,227,228,226,206,208,209,207,41,81,364,130,380,138,135,226,228,129,126,207,209,41,364,17,268,130,135,114,117,226,126,107,110,207,41,32,269,131,275,4,229,230,5,4,69,210,5,41,269,8,219,131,229,231,232,230,69,68,211,210,41,94,228,131,219,233,234,230,232,212,213,210,211,41,228,36,275,131,234,6,5,230,213,6,5,210,41,51,274,132,276,15,235,236,16,15,214,215,16,41,274,43,227,132,235,237,238,236,214,216,217,215,41,93,218,132,227,239,240,236,238,218,219,215,217,41,218,35,276,132,240,17,16,236,219,17,16,215,41,34,216,133,277,31,241,242,32,28,81,220,29,41,216,92,221,133,241,243,244,242,81,80,221,220,41,98,359,133,221,245,246,242,244,222,223,220,221,41,359,76,277,133,246,33,32,242,223,30,29,220,41,32,203,134,278,76,247,248,77,4,1,224,72,41,203,0,332,134,247,18,21,248,1,0,19,224,41,65,360,134,332,26,249,248,21,23,225,224,19,41,360,77,278,134,249,78,77,248,225,73,72,224,41,34,271,135,279,87,250,251,88,28,25,226,82,41,271,1,206,135,250,252,253,251,25,24,94,226,41,39,304,135,206,254,255,251,253,93,227,226,94,41,304,50,279,135,255,89,88,251,227,83,82,226,41,33,270,136,280,96,256,257,97,90,228,229,91,41,270,9,220,136,256,258,259,257,228,230,231,229,41,95,305,136,220,260,261,257,259,232,233,229,231,41,305,37,280,136,261,98,97,257,233,92,91,229,41,94,402,137,228,233,262,263,234,212,234,235,213,41,402,96,318,137,262,264,265,263,234,236,237,235,41,62,316,137,318,266,267,263,265,238,239,235,237,41,316,36,228,137,267,6,234,263,239,6,213,235,41,12,308,138,229,13,268,269,14,13,240,241,14,41,308,54,319,138,268,270,271,269,240,242,243,241,41,63,292,138,319,272,273,269,271,244,245,241,243,41,292,51,229,138,273,15,14,269,245,15,14,241,41,11,307,139,230,22,274,275,23,8,246,247,20,41,307,53,320,139,274,276,277,275,246,248,249,247,41,79,361,139,320,278,279,275,277,250,251,247,249,41,361,69,230,139,279,24,23,275,251,21,20,247,41,10,306,140,231,280,281,282,283,252,253,254,255,41,306,52,321,140,281,284,285,282,253,256,257,254,41,88,381,140,321,286,287,282,285,258,259,254,257,41,381,82,231,140,287,148,283,282,259,138,255,254,41,41,284,141,232,288,289,290,291,260,261,262,263,41,284,55,322,141,289,292,293,290,261,264,265,262,41,89,382,141,322,294,295,290,293,266,267,262,265,41,382,83,232,141,295,166,291,290,267,153,263,262,41,44,285,142,245,150,296,297,153,140,268,269,142,41,285,56,323,142,296,298,299,297,268,270,271,269,41,57,286,142,323,300,301,297,299,272,273,269,271,41,286,45,245,142,301,51,153,297,273,47,142,269,41,45,286,143,246,51,301,302,52,47,273,274,48,41,286,57,324,143,301,300,303,302,273,272,275,274,41,58,312,143,324,304,305,302,303,276,277,274,275,41,312,28,246,143,305,53,52,302,277,49,48,274,41,28,312,144,247,53,305,306,154,49,277,278,143,41,312,58,325,144,305,304,307,306,277,276,279,278,41,395,199,144,325,308,309,306,307,280,281,278,279,41,199,391,247,144,309,156,154,306,281,145,143,278,41,47,288,145,248,168,310,311,171,155,282,283,158,41,288,59,326,145,310,312,313,311,282,284,285,283,41,60,289,145,326,314,315,311,313,286,287,283,285,41,289,48,248,145,315,60,171,311,287,56,158,283,41,48,289,146,249,60,315,316,61,56,287,288,57,41,289,60,327,146,315,314,317,316,287,286,289,288,41,61,315,146,327,318,319,316,317,290,291,288,289,41,315,31,249,146,319,62,61,316,291,58,57,288,41,31,315,147,250,62,319,320,172,58,291,292,159,41,315,61,328,147,319,318,321,320,291,290,293,292,41,396,200,147,328,322,323,320,321,294,295,292,293,41,200,392,250,147,323,174,172,320,295,161,159,292,41,36,316,148,273,6,267,324,7,6,239,296,7,41,316,62,329,148,267,266,325,324,239,238,297,296,41,53,307,148,329,326,327,324,325,248,246,296,297,41,307,11,273,148,327,8,7,324,246,8,7,296,41,51,292,149,274,15,273,328,235,15,245,298,214,41,292,63,330,149,273,272,329,328,245,244,299,298,41,97,401,149,330,330,331,328,329,300,301,298,299,41,401,43,274,149,331,237,235,328,301,216,214,298,41,96,400,150,318,264,332,333,265,236,302,303,237,41,400,42,293,150,332,81,84,333,302,76,79,303,41,50,291,150,293,89,334,333,84,83,304,303,79,41,291,62,318,150,334,266,265,333,304,238,237,303,41,54,283,151,319,270,335,336,271,242,305,306,243,41,283,40,294,151,335,90,93,336,305,84,87,306,41,37,317,151,294,98,337,336,93,92,307,306,87,41,317,63,319,151,337,272,271,336,307,244,243,306,41,53,282,152,320,276,338,339,277,248,308,309,249,41,282,39,295,152,338,99,102,339,308,93,96,309,41,78,362,152,295,104,340,339,102,98,310,309,96,41,362,79,320,152,340,278,277,339,310,250,249,309,41,52,281,153,321,284,341,342,285,256,311,312,257,41,281,38,296,153,341,343,344,342,311,313,314,312,41,86,383,153,296,209,345,342,344,192,315,312,314,41,383,88,321,153,345,286,285,342,315,258,257,312,41,55,309,154,322,292,346,347,293,264,316,317,265,41,309,13,297,154,346,348,349,347,316,318,319,317,41,87,384,154,297,227,350,347,349,208,320,317,319,41,384,89,322,154,350,294,293,347,320,266,265,317,41,56,310,155,323,298,351,352,299,270,321,322,271,41,310,26,298,155,351,113,112,352,321,106,105,322,41,27,311,155,298,111,353,352,112,104,323,322,105,41,311,57,323,155,353,300,299,352,323,272,271,322,41,57,311,156,324,300,353,354,303,272,323,324,275,41,311,27,299,156,353,111,206,354,323,104,189,324,41,46,287,156,299,203,355,354,206,187,325,324,189,41,287,58,324,156,355,304,303,354,325,276,275,324,41,58,287,157,325,304,355,356,307,276,325,326,279,41,287,46,300,157,355,203,202,356,325,187,186,326,41,393,197,157,300,201,357,356,202,185,327,326,186,41,197,395,325,157,357,308,307,356,327,280,279,326,41,59,313,158,326,312,358,359,313,284,328,329,285,41,313,29,301,158,358,122,121,359,328,115,114,329,41,30,314,158,301,120,360,359,121,113,330,329,114,41,314,60,326,158,360,314,313,359,330,286,285,329,41,60,314,159,327,314,360,361,317,286,330,331,289,41,314,30,302,159,360,120,224,361,330,113,205,331,41,49,290,159,302,221,362,361,224,202,332,331,205,41,290,61,327,159,362,318,317,361,332,290,289,331,41,61,290,160,328,318,362,363,321,290,332,333,293,41,290,49,303,160,362,221,220,363,332,202,201,333,41,394,198,160,303,219,364,363,220,200,334,333,201,41,198,396,328,160,364,322,321,363,334,294,293,333,41,62,291,161,329,266,334,365,325,238,304,335,297,41,291,50,304,161,334,89,255,365,304,83,227,335,41,39,282,161,304,254,366,365,255,93,308,335,227,41,282,53,329,161,366,326,325,365,308,248,297,335,41,63,317,162,330,272,337,367,329,244,307,336,299,41,317,37,305,162,337,98,261,367,307,92,233,336,41,95,403,162,305,260,368,367,261,232,337,336,233,41,403,97,330,162,368,330,329,367,337,300,299,336,41,69,336,163,347,24,369,370,25,21,338,339,22,41,336,12,207,163,369,13,10,370,338,13,10,339,41,4,212,163,207,9,371,370,10,9,340,339,10,41,212,65,347,163,371,26,25,370,340,23,22,339,41,76,343,164,348,33,372,373,34,30,341,342,31,41,343,33,208,164,372,96,95,373,341,90,89,342,41,5,331,164,208,94,374,373,95,88,343,342,89,41,331,64,348,164,374,35,34,373,343,32,31,342,41,71,338,165,349,42,375,376,43,39,344,345,40,41,338,18,236,165,375,118,115,376,344,111,108,345,41,17,253,165,236,114,137,376,115,107,128,345,108,41,253,72,349,165,137,44,43,376,128,41,40,345,41,74,341,166,350,69,377,378,70,65,346,347,66,41,341,24,242,166,377,58,55,378,346,54,51,347,41,23,262,166,242,54,191,378,55,50,176,347,51,41,262,75,350,166,191,71,70,378,176,67,66,347,41,77,344,167,351,78,379,380,79,73,348,349,74,41,344,35,218,167,379,17,240,380,348,17,219,349,41,93,404,167,218,239,381,380,240,218,350,349,219,41,404,68,351,167,381,80,79,380,350,75,74,349,41,64,331,168,352,35,374,382,103,32,343,351,97,41,331,5,224,168,374,94,91,382,343,88,85,351,41,40,345,168,224,90,383,382,91,84,352,351,85,41,345,78,352,168,383,104,103,382,352,98,97,351,41,398,202,169,353,129,384,385,130,121,353,354,122,41,202,390,238,169,384,217,214,385,353,198,195,354,41,19,337,169,238,213,386,385,214,194,355,354,195,41,337,70,353,169,386,131,130,385,355,123,122,354,41,70,337,170,354,131,386,387,134,123,355,356,125,41,337,19,237,170,386,213,222,387,355,194,203,356,41,18,338,170,237,118,375,387,222,111,344,356,203,41,338,71,354,170,375,42,134,387,344,39,125,356,41,67,214,171,355,388,389,390,391,357,358,359,360,41,214,2,367,171,389,392,393,390,358,361,362,359,41,84,385,171,367,394,395,390,393,136,363,359,362,41,385,90,355,171,395,140,391,390,363,131,360,359,41,66,333,172,356,396,397,398,399,364,365,366,367,41,333,7,368,172,397,400,401,398,365,368,369,366,41,85,386,172,368,164,402,398,401,151,370,366,369,41,386,91,356,172,402,184,399,398,370,170,367,366,41,73,340,173,357,186,403,404,189,172,371,372,174,41,340,25,243,173,403,160,169,404,371,147,156,372,41,24,341,173,243,58,377,404,169,54,346,372,156,41,341,74,357,173,377,69,189,404,346,65,174,372,41,397,193,174,358,193,405,406,194,178,373,374,179,41,193,388,235,174,405,407,408,406,373,183,180,374,41,16,342,174,235,63,66,406,408,59,62,374,180,41,342,75,358,174,66,71,194,406,62,67,179,374,41,98,335,175,359,245,409,410,246,222,375,376,223,41,335,9,270,175,409,258,256,410,375,230,228,376,41,33,343,175,270,96,372,410,256,90,341,376,228,41,343,76,359,175,372,33,246,410,341,30,223,376,41,65,212,176,360,26,371,411,249,23,340,377,225,41,212,4,272,176,371,9,12,411,340,9,12,377,41,35,344,176,272,17,379,411,12,17,348,377,12,41,344,77,360,176,379,78,249,411,348,73,225,377,41,79,346,177,361,278,412,413,279,250,378,379,251,41,346,54,308,177,412,270,268,413,378,242,240,379,41,12,336,177,308,13,369,413,268,13,338,379,240,41,336,69,361,177,369,24,279,413,338,21,251,379,41,78,345,178,362,104,383,414,340,98,352,380,310,41,345,40,283,178,383,90,335,414,352,84,305,380,41,54,346,178,283,270,412,414,335,242,378,380,305,41,346,79,362,178,412,278,340,414,378,250,310,380,41,81,210,179,375,138,415,416,139,129,381,382,130,41,210,6,334,179,415,417,418,416,381,383,384,382,41,67,355,179,334,388,391,416,418,357,360,382,384,41,355,90,375,179,391,140,139,416,360,131,130,382,41,84,367,180,376,146,419,420,147,136,362,385,137,41,367,2,204,180,419,421,422,420,362,361,386,385,41,10,231,180,204,280,283,420,422,252,255,385,386,41,231,82,376,180,283,148,147,420,255,138,137,385,41,85,368,181,377,164,401,423,165,151,369,387,152,41,368,7,209,181,401,400,424,423,369,368,388,387,41,41,232,181,209,288,291,423,424,260,263,387,388,41,232,83,377,181,291,166,165,423,263,153,152,387,41,80,205,182,378,182,425,426,183,168,389,390,169,41,205,3,213,182,425,427,428,426,389,391,392,390,41,66,356,182,213,396,399,426,428,364,367,390,392,41,356,91,378,182,399,184,183,426,367,170,169,390,41,86,296,183,379,209,344,429,210,192,314,393,193,41,296,38,222,183,344,343,430,429,314,313,394,393,41,3,205,183,222,431,432,429,430,391,389,393,394,41,205,80,379,183,432,211,210,429,389,168,193,393,41,87,297,184,380,227,349,433,228,208,319,395,209,41,297,13,225,184,349,348,434,433,319,318,396,395,41,6,210,184,225,417,415,433,434,383,381,395,396,41,210,81,380,184,415,138,228,433,381,129,209,395,41,88,371,185,381,286,435,436,287,258,397,398,259,41,371,56,285,185,435,298,296,436,397,270,268,398,41,44,365,185,285,150,149,436,296,140,139,398,268,41,365,82,381,185,149,148,287,436,139,138,259,398,41,89,372,186,382,294,437,438,295,266,399,400,267,41,372,59,288,186,437,312,310,438,399,284,282,400,41,47,366,186,288,168,167,438,310,155,154,400,282,41,366,83,382,186,167,166,295,438,154,153,267,400,41,86,369,187,383,209,207,439,345,192,190,401,315,41,369,26,310,187,207,113,351,439,190,106,321,401,41,56,371,187,310,298,435,439,351,270,397,401,321,41,371,88,383,187,435,286,345,439,397,258,315,401,41,87,370,188,384,227,225,440,350,208,206,402,320,41,370,29,313,188,225,122,358,440,206,115,328,402,41,59,372,188,313,312,437,440,358,284,399,402,328,41,372,89,384,188,437,294,350,440,399,266,320,402,41,84,241,189,385,394,441,442,395,136,133,403,363,41,241,22,339,189,441,36,39,442,133,33,36,403,41,72,373,189,339,44,141,442,39,41,132,403,36,41,373,90,385,189,141,140,395,442,132,131,363,403,41,85,244,190,386,164,161,443,402,151,148,404,370,41,244,25,340,190,161,160,403,443,148,147,371,404,41,73,374,190,340,186,185,443,403,172,171,404,371,41,374,91,386,190,185,184,402,443,171,170,370,404,41,8,387,191,219,231,158,157,232,68,119,146,211,41,391,94,219,191,156,233,232,157,145,212,211,146,41,9,389,192,220,258,176,175,259,230,163,162,231,41,392,95,220,192,174,260,259,175,161,232,231,162,41,92,388,193,221,243,407,405,244,80,183,373,221,41,397,98,221,193,193,245,244,405,178,222,221,373,41,387,8,399,194,127,72,75,128,119,68,71,120,41,68,398,194,399,80,129,128,75,75,121,120,71,41,42,393,195,226,81,201,200,82,76,185,184,77,41,388,92,226,195,199,85,82,200,183,80,77,184,41,43,394,196,227,237,219,218,238,216,200,199,217,41,390,93,227,196,217,239,238,218,198,218,217,199,41,393,42,400,197,201,81,332,357,185,76,302,327,41,96,395,197,400,264,308,357,332,236,280,327,302,41,394,43,401,198,219,237,331,364,200,216,301,334,41,97,396,198,401,330,322,364,331,300,294,334,301,41,395,96,402,199,308,264,262,309,280,236,234,281,41,94,391,199,402,233,156,309,262,212,145,281,234,41,396,97,403,200,322,330,368,323,294,300,337,295,41,95,392,200,403,260,174,323,368,232,161,295,337,41,98,397,201,335,245,193,192,409,222,178,177,375,41,389,9,335,201,176,258,409,192,163,230,375,177,41,398,68,404,202,129,80,381,384,121,75,350,353,41,93,390,202,404,239,217,384,381,218,198,353,350],"metadata":{"vertices":405,"version":3,"uvs":1,"type":"Geometry","generator":"io_three","morphTargets":26,"faces":392,"normals":405,"bones":8},"normals":[-0.1339,-0.1315,-0.9822,-0.1265,-0.1252,-0.984,-0.0274,-0.0572,-0.998,-0.0915,-0.1063,-0.9901,-0.1105,-0.1529,-0.982,-0.0129,-0.1023,-0.9947,0.0085,-0.0672,-0.9977,-0.0042,-0.0186,-0.9998,-0.0544,-0.0656,-0.9963,-0.1097,-0.0788,0.9908,-0.0621,-0.1193,0.9909,-0.0103,0.0162,0.9998,-0.1076,0.0089,0.9941,0.0171,-0.1579,0.9873,0.0515,-0.0147,0.9985,0.0497,0.0659,0.9966,-0.0026,0.099,0.9951,-0.0935,0.1082,0.9897,-0.2619,-0.3399,-0.9032,-0.4098,-0.337,-0.8476,-0.1724,-0.3054,-0.9365,-0.3502,-0.8875,-0.2995,-0.533,-0.8121,-0.2372,-0.7371,-0.6624,-0.134,0.1339,-0.1315,-0.9822,0.1265,-0.1252,-0.984,0.5253,-0.2744,-0.8054,0.4098,-0.337,-0.8476,0.1105,-0.1529,-0.982,0.5741,-0.2383,-0.7833,0.9708,-0.2391,0.0195,0.9033,-0.4272,-0.0403,0.7371,-0.6624,-0.134,-0.1892,-0.8284,-0.5271,-0.161,-0.7345,-0.6592,-0.6433,-0.469,-0.6051,-0.6928,-0.5325,-0.4863,-0.1391,-0.6407,-0.7551,-0.6164,-0.4027,-0.6767,-0.9614,0.1224,-0.2463,-0.9625,0.0979,-0.2531,-0.9746,0.0688,-0.2128,-0.1156,-0.4799,-0.8697,-0.1257,-0.5584,-0.8199,-0.0259,-0.5609,-0.8274,-0.024,-0.4761,-0.879,-0.0269,-0.6525,-0.7573,-0.0063,-0.6384,-0.7696,-0.0063,-0.5424,-0.8401,-0.0045,-0.4539,-0.891,0.0847,0.5192,0.8504,0.1009,0.6017,0.7923,-0.0101,0.5616,0.8273,-0.0104,0.4769,0.8789,0.1238,0.6888,0.7143,-0.0078,0.6523,0.7579,-0.0861,0.6313,0.7707,-0.0771,0.5374,0.8397,-0.0689,0.45,0.8903,0.1156,-0.4799,-0.8697,0.1257,-0.5584,-0.8199,0.6006,-0.3461,-0.7207,0.5932,-0.286,-0.7525,0.1391,-0.6407,-0.7551,0.6164,-0.4027,-0.6767,0.9614,0.1224,-0.2463,0.9653,0.1399,-0.2204,0.9696,0.1584,-0.1863,-0.0933,-0.243,-0.9655,-0.0982,-0.1976,-0.9753,-0.5895,-0.2251,-0.7757,-0.5986,-0.2176,-0.7709,-0.5741,-0.2383,-0.7833,-0.9708,-0.2391,0.0195,-0.9923,-0.1197,0.0317,-0.9993,-0.0317,0.0185,-0.011,-0.1897,-0.9817,0.0063,-0.2166,-0.9762,0.009,-0.1624,-0.9867,-0.0092,-0.1334,-0.991,0.0933,-0.243,-0.9655,0.0982,-0.1976,-0.9753,0.0129,-0.1023,-0.9947,-0.0085,-0.0672,-0.9977,-0.0171,-0.1579,0.9873,0.0621,-0.1193,0.9909,0.0103,0.0162,0.9998,-0.0515,-0.0147,0.9985,0.1097,-0.0788,0.9908,0.1076,0.0089,0.9941,0.0935,0.1082,0.9897,0.0026,0.099,0.9951,-0.0497,0.0659,0.9966,0.0544,-0.0656,-0.9963,0.0915,-0.1063,-0.9901,0.2619,-0.3399,-0.9032,0.1724,-0.3054,-0.9365,0.533,-0.8121,-0.2372,0.3502,-0.8875,-0.2995,0.1892,-0.8284,-0.5271,0.161,-0.7345,-0.6592,0.0309,-0.7541,-0.6559,0.0333,-0.8535,-0.5199,0.0269,-0.6525,-0.7573,0.0063,-0.6384,-0.7696,0.008,-0.7442,-0.6679,0.0072,-0.8468,-0.5318,-0.1693,0.868,0.4668,-0.1461,0.783,0.6045,0.008,0.7544,0.6564,0.0064,0.8541,0.5201,-0.1238,0.6888,0.7143,0.0078,0.6523,0.7579,0.0861,0.6313,0.7707,0.0993,0.7358,0.6699,0.1115,0.8379,0.5342,-0.1051,-0.3911,-0.9143,-0.6022,-0.2395,-0.7616,-0.5932,-0.286,-0.7525,-0.0962,-0.3078,-0.9466,-0.6042,-0.2215,-0.7654,-0.9982,0.0538,-0.0255,-0.985,0.1312,-0.1116,-0.9696,0.1584,-0.1863,-0.6006,-0.3461,-0.7207,-0.9653,0.1399,-0.2204,-0.1961,0.9291,0.3134,-0.7356,0.6692,0.1043,-0.7096,0.6754,0.2007,-0.2239,0.9594,0.1712,-0.7604,0.6494,0.0101,-0.9868,0.0248,-0.1602,-0.9844,0.0419,-0.171,-0.219,-0.9031,-0.3694,-0.0344,-0.9325,-0.3595,-0.0333,-0.8535,-0.5199,-0.2397,-0.9428,-0.2315,-0.0339,-0.9763,-0.2137,-0.0031,-0.976,-0.2176,-0.0054,-0.9296,-0.3684,-0.0072,-0.8468,-0.5318,-0.0309,-0.7541,-0.6559,-0.008,-0.7442,-0.6679,0.003,-0.35,-0.9367,-0.0159,-0.3771,-0.926,0.0082,-0.2607,-0.9654,-0.0089,-0.2867,-0.958,0.1693,0.868,0.4668,0.1961,0.9291,0.3134,-0.0024,0.9322,0.3619,-0.0064,0.8541,0.5201,0.2239,0.9594,0.1712,0.0022,0.9766,0.215,-0.1279,0.9662,0.2235,-0.1211,0.9196,0.3738,-0.1115,0.8379,0.5342,0.1461,0.783,0.6045,-0.008,0.7544,0.6564,-0.0993,0.7358,0.6699,-0.0562,0.3482,0.9357,-0.0033,0.3783,0.9257,-0.0477,0.2585,0.9648,0.0039,0.2856,0.9583,0.0816,0.3176,0.9447,0.081,0.4202,0.9038,0.219,-0.9031,-0.3694,0.7438,-0.5725,-0.3448,0.6928,-0.5325,-0.4863,0.2397,-0.9428,-0.2315,0.772,-0.5867,-0.2445,0.9868,0.0248,-0.1602,0.9844,0.0419,-0.171,0.9746,0.0688,-0.2128,0.6433,-0.469,-0.6051,0.9625,0.0979,-0.2531,0.6321,0.4361,0.6405,0.6393,0.5223,0.5643,0.607,0.3104,0.7316,0.9982,0.0538,-0.0255,0.985,0.1312,-0.1116,0.1051,-0.3911,-0.9143,0.0159,-0.3771,-0.926,0.024,-0.4761,-0.879,0.0962,-0.3078,-0.9466,0.0089,-0.2867,-0.958,-0.0082,-0.2607,-0.9654,-0.003,-0.35,-0.9367,0.0045,-0.4539,-0.891,0.0259,-0.5609,-0.8274,0.0063,-0.5424,-0.8401,0.0054,-0.9296,-0.3684,0.0344,-0.9325,-0.3595,0.0031,-0.976,-0.2176,0.0339,-0.9763,-0.2137,-0.0847,0.5192,0.8504,-0.081,0.4202,0.9038,0.0033,0.3783,0.9257,0.0104,0.4769,0.8789,-0.0815,0.3176,0.9447,-0.0039,0.2856,0.9583,0.0477,0.2585,0.9648,0.0562,0.3482,0.9357,0.0689,0.45,0.8903,-0.1009,0.6017,0.7923,0.0101,0.5616,0.8273,0.0771,0.5374,0.8397,0.1211,0.9196,0.3738,0.0024,0.9322,0.3619,0.1279,0.9662,0.2235,-0.0022,0.9766,0.215,-0.009,-0.1624,-0.9867,-0.0063,-0.2166,-0.9762,0.011,-0.1897,-0.9817,0.0092,-0.1334,-0.991,0.0468,0.1328,0.99,-0.0044,0.1608,0.987,0.0439,0.188,0.9812,-0.007,0.2146,0.9767,-0.0839,0.2371,0.9678,-0.0852,0.1781,0.9803,0.5895,-0.2251,-0.7757,0.5986,-0.2176,-0.7709,0.9993,-0.0317,0.0185,0.9923,-0.1197,0.0317,-0.5253,-0.2744,-0.8054,-0.9033,-0.4272,-0.0403,0.0274,-0.0572,-0.998,0.0042,-0.0186,-0.9998,0.0852,0.1781,0.9803,0.0044,0.1608,0.987,0.0839,0.2371,0.9678,0.007,0.2146,0.9767,-0.0439,0.188,0.9812,-0.0468,0.1328,0.99,0.0061,-0.1751,-0.9845,0.005,-0.1186,-0.9929,0,-0.1755,-0.9845,0,-0.1173,-0.9931,0,-0.0486,-0.9988,0.0041,-0.0488,-0.9988,0.0804,-0.1665,0.9827,0.1028,-0.0344,0.9941,0,-0.1549,0.9879,0,-0.0338,0.9994,0,0.0473,0.9989,0.1083,0.0455,0.993,-0.0281,-0.0355,-0.999,-0.0834,-0.2682,-0.9597,0,-0.0228,-0.9997,0,-0.238,-0.9713,0,-0.9355,-0.3532,-0.1351,-0.9362,-0.3243,-0.001,-0.9984,-0.0564,-0.0003,-0.9984,-0.0573,-0.0005,-0.9948,-0.1021,-0.0016,-0.9949,-0.1007,0,-0.9983,-0.0575,0,-0.9948,-0.1022,0,-0.9752,-0.221,-0.001,-0.9753,-0.2209,-0.137,0.9888,0.0588,-0.2114,0.9757,0.0577,-0.2094,0.9723,0.1039,-0.1336,0.9854,0.1054,0,0.9983,0.0582,0,0.9944,0.1054,0,0.9737,0.2277,-0.2033,0.9534,0.2228,-0.0024,-0.8423,-0.539,-0.0026,-0.738,-0.6748,0,-0.8424,-0.5389,0,-0.7381,-0.6747,0,-0.6307,-0.776,-0.0018,-0.6301,-0.7765,-0.0017,-0.5321,-0.8466,0,-0.5321,-0.8467,0,-0.4424,-0.8968,-0.0006,-0.4415,-0.8972,0.0027,-0.3353,-0.9421,0,-0.3365,-0.9416,0,-0.2476,-0.9688,0.0047,-0.247,-0.969,-0.1795,0.8252,0.5356,-0.1634,0.7238,0.6703,0,0.8374,0.5465,0,0.7325,0.6807,0,0.6245,0.781,-0.1479,0.6189,0.7714,-0.1364,0.5244,0.8405,0,0.5284,0.849,0,0.439,0.8985,-0.1275,0.4356,0.891,-0.1179,0.3319,0.9359,0,0.3345,0.9424,0,0.2461,0.9692,-0.1127,0.2438,0.9633,-0.003,0.0025,-1,0,0.0073,-1,0.1102,0.1166,0.987,0,0.1163,0.9932,0,0.174,0.9847,0.1102,0.1723,0.9789,-0.0061,-0.1751,-0.9845,-0.005,-0.1186,-0.9929,-0.0041,-0.0488,-0.9988,-0.0804,-0.1665,0.9827,-0.1028,-0.0344,0.9941,-0.1083,0.0455,0.993,0.0281,-0.0355,-0.999,0.0834,-0.2682,-0.9597,0.1351,-0.9362,-0.3243,0.0003,-0.9984,-0.0573,0.0005,-0.9948,-0.1021,0.001,-0.9984,-0.0564,0.0016,-0.9949,-0.1007,0.001,-0.9753,-0.2209,0.2114,0.9757,0.0577,0.2094,0.9723,0.1039,0.137,0.9888,0.0588,0.1336,0.9854,0.1054,0.2033,0.9534,0.2228,0.0024,-0.8423,-0.539,0.0026,-0.738,-0.6748,0.0018,-0.6301,-0.7765,0.0017,-0.5321,-0.8466,0.0006,-0.4415,-0.8972,-0.0027,-0.3353,-0.9421,-0.0047,-0.247,-0.969,0.1795,0.8252,0.5356,0.1634,0.7238,0.6703,0.1479,0.6189,0.7714,0.1364,0.5244,0.8405,0.1275,0.4356,0.891,0.1179,0.3319,0.9359,0.1127,0.2438,0.9633,0.003,0.0025,-1,-0.1102,0.1166,0.987,-0.1102,0.1723,0.9789,-0.1828,-0.6471,0.7402,-0.3321,-0.5648,0.7555,-0.4788,-0.3938,0.7846,0.5711,-0.002,0.8209,0.5562,-0.165,0.8145,0.4788,-0.3938,0.7846,-0.6783,0.6185,0.3966,-0.6931,0.6576,0.2952,0.6783,0.6185,0.3966,0.66,0.5717,0.4873,-0.5711,-0.002,0.8209,-0.5751,0.1058,0.8112,-0.5868,0.1973,0.7853,0.3321,-0.5648,0.7555,0.1828,-0.6471,0.7402,-0.607,0.3104,0.7316,-0.6321,0.4361,0.6405,-0.6393,0.5223,0.5643,-0.66,0.5717,0.4873,-0.9864,0.0097,-0.1636,-0.778,-0.6084,-0.1564,-0.7885,-0.5869,-0.1837,-0.9864,0.0156,-0.1632,-0.2475,-0.965,-0.0861,-0.2561,-0.958,-0.1287,-0.772,-0.5867,-0.2445,0.9864,0.0097,-0.1636,0.7733,0.6272,-0.0922,0.7778,0.6251,-0.0651,0.9864,0.0156,-0.1632,0.2422,0.9701,0.0166,0.2468,0.9672,0.0595,0.7604,0.6494,0.0101,0.7096,0.6754,0.2007,0.6931,0.6576,0.2952,0.6042,-0.2215,-0.7654,0.6022,-0.2395,-0.7616,0.5868,0.1973,0.7853,0.5751,0.1058,0.8112,-0.5562,-0.165,0.8145,0,-0.6312,0.7756,-0.0207,-0.6624,0.7488,0.0207,-0.6624,0.7488,-0.2468,0.9672,0.0595,-0.7778,0.6251,-0.0651,-0.2422,0.9701,0.0166,-0.7733,0.6272,-0.0922,-0.0343,-0.9943,-0.1011,-0.033,-0.9978,-0.0579,0.0054,0.995,0.0994,0.0041,0.9985,0.0534,0.2561,-0.958,-0.1287,0.7885,-0.5869,-0.1837,0.2475,-0.965,-0.0861,0.778,-0.6084,-0.1564,0.0343,-0.9943,-0.1011,0.033,-0.9978,-0.0579,-0.0054,0.995,0.0994,-0.0041,0.9985,0.0534,0,-0.9273,-0.3743,-0.0018,-0.9274,-0.3741,0,0.9239,0.3825,-0.1935,0.9069,0.3742,0.0018,-0.9274,-0.3741,0.1935,0.9069,0.3742,-0.7438,-0.5725,-0.3448,0.7356,0.6692,0.1043],"skinIndices":[7,0,7,0,0,0,0,0,7,0,7,0,0,0,0,0,5,6,5,6,0,0,7,0,7,0,0,0,1,2,2,3,3,4,1,2,2,3,3,4,3,4,2,3,1,2,3,4,2,3,1,2,1,2,2,3,3,4,1,2,2,3,3,4,6,7,6,7,6,7,6,7,6,7,6,7,0,0,7,0,7,0,0,0,5,6,5,6,1,2,2,3,3,4,1,2,2,3,3,4,6,7,6,7,0,0,7,0,7,0,0,0,1,2,2,3,3,4,1,2,2,3,3,4,6,7,6,7,7,0,7,0,0,0,0,0,5,6,7,0,3,4,2,3,1,2,1,2,2,3,3,4,6,7,6,7,7,0,7,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,5,6,5,6,5,6,5,6,5,6,5,6,5,6,7,6,7,6,7,0,7,6,2,1,3,2,3,2,3,2,6,5,6,5,7,6,7,0,2,1,2,1,4,5,3,2,1,0,1,0,2,1,4,5,1,0,2,1,4,5,1,0,2,1,4,5,4,5,3,2,1,0,4,5,3,2,1,0,6,5,6,5,6,5,7,6,7,6,6,5,6,5,7,6,7,0,0,0,0,0,2,1,3,2,4,5,2,1,3,2,4,5,7,6,6,5,6,5,7,6,7,0,0,0,0,0,2,1,3,2,4,5,2,1,3,2,4,5,7,6,6,5,7,0,7,6,2,1,3,2,6,5,7,0,4,5,3,2,0,0,0,0,2,1,4,5,6,5,7,6,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,7,6,0,0,0,0,7,0,7,0,7,6,0,0,0,0,7,0,7,0,0,0,0,0,4,5,6,5,4,5,6,5,5,6,5,6,5,6,0,0,7,0,7,0,0,0,5,6,5,6,6,5,7,6,7,0,0,0,0,0,2,1,3,2,4,5,2,1,3,2,4,5,3,2,2,1,1,0,3,2,2,1,1,0,2,1,3,2,4,5,2,1,3,2,4,5,3,4,2,3,1,2,1,2,2,3,3,4,1,2,2,3,3,4,1,2,2,3,3,4,3,4,2,3,1,2,3,4,2,3,1,2,6,5,6,5,7,6,7,6,7,6,6,5,6,7,6,7,6,7,6,7,6,7,6,7,0,0,7,0,7,0,0,0,1,2,2,3,3,4,1,2,2,3,3,4,6,7,6,7,6,5,7,6,7,0,0,0,0,0,2,1,3,2,4,5,2,1,3,2,4,5,7,6,6,5,0,0,7,0,7,0,0,0,1,2,2,3,3,4,1,2,2,3,3,4,6,7,6,7,6,5,7,6,7,0,0,0,0,0,2,1,3,2,4,5,2,1,3,2,4,5,7,6,6,5,7,0,7,0,0,0,0,0,5,6,7,0,3,4,2,3,1,2,1,2,2,3,3,4,6,7,6,7,7,0,7,0,7,0,7,6,2,1,3,2,6,5,7,0,4,5,3,2,0,0,0,0,2,1,4,5,6,5,7,6,7,0,7,0,1,0,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,6,5,6,5,6,5,6,5,6,5,6]} \ No newline at end of file diff --git a/filters/dog/models/dog/flex_ears.jpg b/filters/dog/models/dog/flex_ears.jpg new file mode 100644 index 0000000..080d5b8 Binary files /dev/null and b/filters/dog/models/dog/flex_ears.jpg differ diff --git a/filters/dog/models/dog/flex_ears_1024.jpg b/filters/dog/models/dog/flex_ears_1024.jpg new file mode 100644 index 0000000..080d5b8 Binary files /dev/null and b/filters/dog/models/dog/flex_ears_1024.jpg differ diff --git a/filters/dog/models/dog/flex_ears_256.jpg b/filters/dog/models/dog/flex_ears_256.jpg new file mode 100644 index 0000000..f1a9756 Binary files /dev/null and b/filters/dog/models/dog/flex_ears_256.jpg differ diff --git a/filters/dog/models/dog/flex_nose.png b/filters/dog/models/dog/flex_nose.png new file mode 100644 index 0000000..6a6d676 Binary files /dev/null and b/filters/dog/models/dog/flex_nose.png differ diff --git a/filters/dog/models/dog/flex_tongue.png b/filters/dog/models/dog/flex_tongue.png new file mode 100644 index 0000000..496aa5a Binary files /dev/null and b/filters/dog/models/dog/flex_tongue.png differ diff --git a/filters/dog/models/dog/flex_tongue_1024.png b/filters/dog/models/dog/flex_tongue_1024.png new file mode 100644 index 0000000..496aa5a Binary files /dev/null and b/filters/dog/models/dog/flex_tongue_1024.png differ diff --git a/filters/dog/models/dog/flex_tongue_256.png b/filters/dog/models/dog/flex_tongue_256.png new file mode 100644 index 0000000..1a7cce6 Binary files /dev/null and b/filters/dog/models/dog/flex_tongue_256.png differ diff --git a/filters/dog/models/dog/normal_ears.jpg b/filters/dog/models/dog/normal_ears.jpg new file mode 100644 index 0000000..478751e Binary files /dev/null and b/filters/dog/models/dog/normal_ears.jpg differ diff --git a/filters/dog/models/dog/normal_nose.jpg b/filters/dog/models/dog/normal_nose.jpg new file mode 100644 index 0000000..9087913 Binary files /dev/null and b/filters/dog/models/dog/normal_nose.jpg differ diff --git a/filters/dog/models/dog/texture_ears.jpg b/filters/dog/models/dog/texture_ears.jpg new file mode 100644 index 0000000..285310c Binary files /dev/null and b/filters/dog/models/dog/texture_ears.jpg differ diff --git a/filters/dog/models/dog/texture_nose.jpg b/filters/dog/models/dog/texture_nose.jpg new file mode 100644 index 0000000..1ebbcae Binary files /dev/null and b/filters/dog/models/dog/texture_nose.jpg differ diff --git a/filters/dog/models/dog/tongue_alpha.jpg b/filters/dog/models/dog/tongue_alpha.jpg new file mode 100644 index 0000000..9faf842 Binary files /dev/null and b/filters/dog/models/dog/tongue_alpha.jpg differ diff --git a/filters/dog/models/dog/tongue_alpha_1024.jpg b/filters/dog/models/dog/tongue_alpha_1024.jpg new file mode 100644 index 0000000..9faf842 Binary files /dev/null and b/filters/dog/models/dog/tongue_alpha_1024.jpg differ diff --git a/filters/dog/models/dog/tongue_alpha_256.jpg b/filters/dog/models/dog/tongue_alpha_256.jpg new file mode 100644 index 0000000..e688d85 Binary files /dev/null and b/filters/dog/models/dog/tongue_alpha_256.jpg differ diff --git a/index.html b/index.html index b26fa93..66a6838 100644 --- a/index.html +++ b/index.html @@ -54,7 +54,7 @@ transition: opacity .1s linear; } - + diff --git a/main.css b/main.css index 0052e98..5dbddd7 100644 --- a/main.css +++ b/main.css @@ -3349,7 +3349,9 @@ input:checked + .slider:before { content: "\f00c"; } .la-exclamation:before { content: "\f12a"; } - +.la-chevron-down:before { + content: "\f078"; } + @media (prefers-color-scheme: dark) { :root { --color-mode: dark; diff --git a/media/camera_inkscape.svg b/media/camera_inkscape.svg new file mode 100644 index 0000000..9406f32 --- /dev/null +++ b/media/camera_inkscape.svg @@ -0,0 +1,73 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/media/grid_inkscape.svg b/media/grid_inkscape.svg new file mode 100644 index 0000000..3a434d2 --- /dev/null +++ b/media/grid_inkscape.svg @@ -0,0 +1,88 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/media/monitor_inkscape.svg b/media/monitor_inkscape.svg new file mode 100644 index 0000000..716f2ee --- /dev/null +++ b/media/monitor_inkscape.svg @@ -0,0 +1,79 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/media/plane_inkscape.svg b/media/plane_inkscape.svg new file mode 100644 index 0000000..8e357e6 --- /dev/null +++ b/media/plane_inkscape.svg @@ -0,0 +1,69 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/media/vdoNinja_logo_full.png b/media/vdoNinja_logo_full.png new file mode 100644 index 0000000..09f509c Binary files /dev/null and b/media/vdoNinja_logo_full.png differ diff --git a/speedtest.css b/speedtest.css index c708f2d..afc5c11 100644 --- a/speedtest.css +++ b/speedtest.css @@ -218,9 +218,9 @@ ol { margin:auto; } - } +} - #statsdiv {display: none;} +#statsdiv {display: none;} \ No newline at end of file diff --git a/translations/cs.json b/translations/cs.json index 97a7e03..56584d1 100644 --- a/translations/cs.json +++ b/translations/cs.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS.Ninja ", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Připojit se s názvem místnosti zde", diff --git a/translations/de.json b/translations/de.json index e71e681..d746111 100644 --- a/translations/de.json +++ b/translations/de.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS Ninja", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Raum über Namen betreten", diff --git a/translations/default.json b/translations/default.json new file mode 100644 index 0000000..bc5d832 --- /dev/null +++ b/translations/default.json @@ -0,0 +1,50 @@ +{ + "logo-header": "OBS.Ninja ", + "GO": "GO", + "copy-this-url": "Copy this URL into an OBS \"Browser Source\"", + "you-are-in-the-control-center": "You are in the room's control center", + "joining-room": "You are joining room", + "add-group-chat": "Add Group Chat to OBS", + "rooms-allow-for": "Rooms allow for simplified group-chat and the advanced management of multiple streams at once.", + "room-name": "Room Name", + "enter-the-rooms-control": "Enter the Room's Control Center", + "show-tips": "Show me some tips..", + "added-notes": "\nAdded Notes:\n
  • Anyone can enter a room if they know the name, so keep it unique
  • \n
  • Invite only guests to the room you trust.
  • \n
  • iOS devices will share just their audio with other guests; this is mainly a hardware limitation
  • \n
  • The \"Recording\" option is considered experimental.
  • \n", + "back": "Back", + "add-your-camera": "Add your Camera to OBS", + "waiting-for-camera": "Waiting for Camera to Load", + "video-source": "Video source", + "max-resolution": "1080p (hi-def)", + "balanced": "720p (balanced)", + "smooth-cool": "360p (smooth)", + "select-audio-source": "Select Audio Source", + "no-audio": "No Audio", + "remote-screenshare-obs": "Remote Screenshare into OBS", + "note-share-audio": "\nnote: Do not forget to click \"Share audio\" in Chrome.
    (Firefox does not support audio sharing.)", + "select-screen-to-share": "SELECT SCREEN TO SHARE", + "audio-sources": "Audio Sources", + "create-reusable-invite": "Create Reusable Invite", + "here-you-can-pre-generate": "Here you can pre-generate a reusable Browser Source link and a related guest invite link.", + "generate-invite-link": "GENERATE THE INVITE LINK", + "advanced-paramaters": "Advanced Options:", + "unlock-video-bitrate": "Unlock Video Bitrate (20mbps)", + "force-vp9-video-codec": "Force VP9 Video Codec (less artifacting)", + "enable-stereo-and-pro": "Enable Stereo and Pro HD Audio", + "video-resolution": "Video Resolution: ", + "high-security-mode": "High Security Mode", + "hide-screen-share": "Hide Screenshare Option", + "allow-remote-control": "Remote Control Camera Zoom (android)", + "add-the-guest-to-a-room": " Add the guest to a room:", + "invite-group-chat-type": "This room guest can:", + "can-see-and-hear": "Can see and hear the group chat", + "can-hear-only": "Can only hear the group chat", + "cant-see-or-hear": "Cannot hear or see the group chat", + "info-blob": "\n

    What is OBS.Ninja


    \n
  • 100% free; no downloads; no personal data collection; no sign-in
  • \n
  • Bring video from your smartphone, computer, or friends directly into your OBS video stream
  • \n
  • We use cutting edge Peer-to-Peer forwarding technology that offers privacy and ultra-low latency
  • \n
    \n
  • Youtube video Demoing it here
  • \n
    \nKnown issues:
    \n
  • MacOS users need to use OBS v23 or resort to Window Capturing a browser with OBS v25
  • \n
  • Some users will have \"pixelation\" problems with videos. Adding &codec=vp9 to the OBS links will often correct it.
  • \n
    \n", + "remote-control-for-obs": "Remote Control for OBS", + "add-to-group": "Add to Group Scene", + "mute": "Mute", + "record": "Record", + "volume": "Volume", + "open-in-new-tab": "Open in new Tab", + "copy-to-clipboard": "Copy to Clipboard" +} \ No newline at end of file diff --git a/translations/es.json b/translations/es.json index b4fc6bf..f143ce5 100644 --- a/translations/es.json +++ b/translations/es.json @@ -150,7 +150,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "copy-this-url": "Copia esta URL como fuente \"Navegador\" de OBS", @@ -327,7 +328,17 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "join-room-with-mic": "Join room with Microphone", + "join-room-with-camera": "Join Room with Camera", + "share-screen-with-room": "Screenshare with Room", + "share-your-mic": "Share your Microphone", + "share-your-camera": "Share your Camera", + "share-your-screen": "Share your Screen", + "click-start-to-join": "Click Start to Join", + "waiting-for-mic-to-load": "Waiting for mic to load", + "waiting-for-camera-to-load": "Waiting for Camera to load" }, "placeholders": { "join-by-room-name-here": "Unirse por Nombre de Sala aquí", diff --git a/translations/fr.json b/translations/fr.json index 8b78175..6ab5088 100644 --- a/translations/fr.json +++ b/translations/fr.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS.Ninja ", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Rejoindre via le nom de salle ici", diff --git a/translations/it.json b/translations/it.json index efc951a..5fd1169 100644 --- a/translations/it.json +++ b/translations/it.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS.Ninja ", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Join by Room Name here", diff --git a/translations/ja.json b/translations/ja.json index 74051df..9950fac 100644 --- a/translations/ja.json +++ b/translations/ja.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS.Ninja ", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Join by Room Name here", diff --git a/translations/nl.json b/translations/nl.json index df477fe..e5d9d7b 100644 --- a/translations/nl.json +++ b/translations/nl.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS Ninja", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Ga binnen met een kamer naam", diff --git a/translations/pig.json b/translations/pig.json index 2a5850a..6dd52e8 100644 --- a/translations/pig.json +++ b/translations/pig.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS Ninja - Pig Latin", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Erehay ouyay ancay epray-enerategay", diff --git a/translations/pt.json b/translations/pt.json index 11f945a..118e749 100644 --- a/translations/pt.json +++ b/translations/pt.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS.Ninja ", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Introduza aqui numa sala pelo seu nome", diff --git a/translations/ru.json b/translations/ru.json index 635eb43..74a6c87 100644 --- a/translations/ru.json +++ b/translations/ru.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS.Ninja (RU)", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Join by Room Name here", diff --git a/translations/tr.json b/translations/tr.json index 8337246..06841c9 100644 --- a/translations/tr.json +++ b/translations/tr.json @@ -164,7 +164,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "OBS.Ninja ", @@ -354,7 +355,9 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "waiting-for-mic-to-load": "Waiting for mic to load" }, "placeholders": { "join-by-room-name-here": "Join by Room Name here", diff --git a/translations/translate.js b/translations/translate.js index 217fd23..43873c8 100644 --- a/translations/translate.js +++ b/translations/translate.js @@ -69,10 +69,11 @@ function updateTranslation(filename) { // updates the website with a specific tr } const updateList = [ + "blank", // must be first + "en", "cs", + "cn", "de", - "en", - "cn", "es", "fr", "it", @@ -82,8 +83,7 @@ const updateList = [ "pt", "ru", "tr", - "uk", - "blank" + "uk" ]; // list of languages to update. Update this if you add a new language. const allItems = document.querySelectorAll('[data-translate]'); @@ -129,6 +129,21 @@ for (const i in updateList) { const key = ele.dataset.translate;//.replace(/[\W]+/g, "-").toLowerCase(); newTrans[key] = ele.innerHTML; }); + if (lang == "blank" || lang == "en"){ + console.log(newTrans); + + for (var key in newTrans) { + if (!(key in defaultTrans)){ + defaultTrans[key] = newTrans[key]; + } + } + } else { + for (var key in defaultTrans){ + if (!(key in newTrans)){ + newTrans[key] = defaultTrans[key] + } + } + } const newTransTitles = suceess[1].titles; //const allTitles = document.querySelectorAll('[title]'); @@ -136,6 +151,19 @@ for (const i in updateList) { const key = ele.dataset.key; newTransTitles[key] = ele.title; }); + if (lang == "blank" || lang == "en"){ + for (var key in newTransTitles) { + if (!(key in defaultTransTitles)){ + defaultTransTitles[key] = newTransTitles[key]; + } + } + } else { + for (var key in defaultTransTitles){ + if (!(key in newTransTitles)){ + newTransTitles[key] = defaultTransTitles[key] + } + } + } const newPlaceholders = suceess[1].placeholders; // const allPlaceholders = document.querySelectorAll('[placeholder]'); @@ -143,6 +171,19 @@ for (const i in updateList) { const key = ele.dataset.key; newPlaceholders[key] = ele.placeholder; }); + if (lang == "blank" || lang == "en"){ + for (var key in newPlaceholders) { + if (!(key in defaultTransPlaceholders)){ + defaultTransPlaceholders[key] = newPlaceholders[key]; + } + } + } else { + for (var key in defaultTransPlaceholders){ + if (!(key in newPlaceholders)){ + newPlaceholders[key] = defaultTransPlaceholders[key] + } + } + } var miscellaneous = {}; if ("miscellaneous" in suceess[1]){ diff --git a/translations/uk.json b/translations/uk.json index 97431ad..9538bc7 100644 --- a/translations/uk.json +++ b/translations/uk.json @@ -156,7 +156,8 @@ "the-camera-will-load-in-a-default-safe-mode-that-may-work-if-other-modes-fail-": "The camera will load in a default safe-mode that may work if other modes fail.", "disable-animated-transitions-during-video-mixing": "Disable animated transitions during video mixing", "allow-the-guest-to-select-a-file-to-upload-to-the-director-once-shared-it-will-show-in-the-chat-as-a-download-link-": "Allow the guest to select a file to upload to the director. Once shared, it will show in the chat as a download link.", - "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees" + "set-a-countdown-timer-that-this-guest-sees": "Set a countdown timer that this guest sees", + "enter-a-room-name-to-quick-join": "Enter a room name to quick join" }, "innerHTML": { "logo-header": "\n\t\t\t\t\tOBS.Ninja \n\t\t\t\t", @@ -335,7 +336,17 @@ "mirror-video": "Mirror", "toggle-control-video": "Toggle control bar", "picture-in-picture": "Picture-in-picture", - "chrome-cast": "Cast.." + "chrome-cast": "Cast..", + "join-room": "Join room", + "join-room-with-mic": "Join room with Microphone", + "join-room-with-camera": "Join Room with Camera", + "share-screen-with-room": "Screenshare with Room", + "share-your-mic": "Share your Microphone", + "share-your-camera": "Share your Camera", + "share-your-screen": "Share your Screen", + "click-start-to-join": "Click Start to Join", + "waiting-for-mic-to-load": "Waiting for mic to load", + "waiting-for-camera-to-load": "Waiting for Camera to load" }, "placeholders": { "join-by-room-name-here": "приєднано до кімнати тут ",