diff --git a/build/three.js b/build/three.js index 5b5f3f0d1d273fdef63ce8660b5a8f3d23a80c33..ba07a4c80c3db1a4665b3831a6ab448c2b43c1b1 100644 --- a/build/three.js +++ b/build/three.js @@ -15514,43 +15514,46 @@ } - Camera.prototype = Object.create( Object3D.prototype ); - Camera.prototype.constructor = Camera; + Camera.prototype = Object.assign( Object.create( Object3D.prototype ), { - Camera.prototype.isCamera = true; + constructor: Camera, - Camera.prototype.getWorldDirection = function () { + isCamera: true, - var quaternion = new Quaternion(); + copy: function ( source ) { - return function getWorldDirection( optionalTarget ) { + Object3D.prototype.copy.call( this, source ); - var result = optionalTarget || new Vector3(); + this.matrixWorldInverse.copy( source.matrixWorldInverse ); + this.projectionMatrix.copy( source.projectionMatrix ); - this.getWorldQuaternion( quaternion ); + return this; - return result.set( 0, 0, - 1 ).applyQuaternion( quaternion ); + }, - }; + getWorldDirection: function () { - }(); + var quaternion = new Quaternion(); + + return function getWorldDirection( optionalTarget ) { - Camera.prototype.clone = function () { + var result = optionalTarget || new Vector3(); + + this.getWorldQuaternion( quaternion ); - return new this.constructor().copy( this ); + return result.set( 0, 0, - 1 ).applyQuaternion( quaternion ); - }; + }; - Camera.prototype.copy = function ( source ) { + }(), - Object3D.prototype.copy.call( this, source ); + clone: function () { - this.matrixWorldInverse.copy( source.matrixWorldInverse ); - this.projectionMatrix.copy( source.projectionMatrix ); + return new this.constructor().copy( this ); - return this; + } - }; + } ); /** * @author mrdoob / http://mrdoob.com/ @@ -15711,7 +15714,7 @@ }, - clearViewOffset: function() { + clearViewOffset: function () { this.view = null; this.updateProjectionMatrix(); @@ -20815,6 +20818,8 @@ // update camera matrices and frustum + camera.onBeforeRender( _this ); + if ( camera.parent === null ) camera.updateMatrixWorld(); camera.matrixWorldInverse.getInverse( camera.matrixWorld ); @@ -20963,6 +20968,7 @@ // opaque pass (front-to-back order) state.setBlending( NoBlending ); + if ( opaqueObjects.length ) renderObjects( opaqueObjects, scene, camera ); // transparent pass (back-to-front order) @@ -20990,6 +20996,14 @@ state.buffers.depth.setMask( true ); state.buffers.color.setMask( true ); + if ( camera.isArrayCamera && camera.enabled ) { + + _this.setScissorTest( false ); + + } + + camera.onAfterRender( _this ); + // _gl.finish(); }; @@ -21156,22 +21170,30 @@ object.onBeforeRender( _this, scene, camera, geometry, material, group ); - object.modelViewMatrix.multiplyMatrices( camera.matrixWorldInverse, object.matrixWorld ); - object.normalMatrix.getNormalMatrix( object.modelViewMatrix ); + if ( camera.isArrayCamera && camera.enabled ) { - if ( object.isImmediateRenderObject ) { + var cameras = camera.cameras; - state.setMaterial( material ); + for ( var j = 0, jl = cameras.length; j < jl; j ++ ) { - var program = setProgram( camera, scene.fog, material, object ); + var camera2 = cameras[ j ]; + var bounds = camera2.bounds; + _this.setViewport( + bounds.x * _width * _pixelRatio, bounds.y * _height * _pixelRatio, + bounds.z * _width * _pixelRatio, bounds.w * _height * _pixelRatio + ); + _this.setScissor( + bounds.x * _width * _pixelRatio, bounds.y * _height * _pixelRatio, + bounds.z * _width * _pixelRatio, bounds.w * _height * _pixelRatio + ); + _this.setScissorTest( true ); + renderObject( object, scene, camera2, geometry, material, group ); - _currentGeometryProgram = ''; - - renderObjectImmediate( object, program, material ); + } } else { - _this.renderBufferDirect( camera, scene.fog, geometry, material, object, group ); + renderObject( object, scene, camera, geometry, material, group ); } @@ -21181,6 +21203,29 @@ } + function renderObject( object, scene, camera, geometry, material, group ) { + + object.modelViewMatrix.multiplyMatrices( camera.matrixWorldInverse, object.matrixWorld ); + object.normalMatrix.getNormalMatrix( object.modelViewMatrix ); + + if ( object.isImmediateRenderObject ) { + + state.setMaterial( material ); + + var program = setProgram( camera, scene.fog, material, object ); + + _currentGeometryProgram = ''; + + renderObjectImmediate( object, program, material ); + + } else { + + _this.renderBufferDirect( camera, scene.fog, geometry, material, object, group ); + + } + + } + function initMaterial( material, fog, object ) { var materialProperties = properties.get( material ); @@ -35715,6 +35760,27 @@ CubeCamera.prototype = Object.create( Object3D.prototype ); CubeCamera.prototype.constructor = CubeCamera; + /** + * @author mrdoob / http://mrdoob.com/ + */ + + function ArrayCamera( array ) { + + PerspectiveCamera.call( this ); + + this.enabled = false; + this.cameras = array || []; + + } + + ArrayCamera.prototype = Object.assign( Object.create( PerspectiveCamera.prototype ), { + + constructor: ArrayCamera, + + isArrayCamera: true + + } ); + /** * @author mrdoob / http://mrdoob.com/ */ @@ -39483,6 +39549,7 @@ if ( this.autoStart && ! this.running ) { this.start(); + return 0; } @@ -43110,6 +43177,7 @@ exports.PerspectiveCamera = PerspectiveCamera; exports.OrthographicCamera = OrthographicCamera; exports.CubeCamera = CubeCamera; + exports.ArrayCamera = ArrayCamera; exports.Camera = Camera; exports.AudioListener = AudioListener; exports.PositionalAudio = PositionalAudio; diff --git a/build/three.min.js b/build/three.min.js index d2b654bf7155adf416acbbc2cef1093a76e34c33..5e04a115274ae3488415893d3993526c8c2db10c 100644 --- a/build/three.min.js +++ b/build/three.min.js @@ -1,315 +1,316 @@ // threejs.org/license -(function(l,Aa){"object"===typeof exports&&"undefined"!==typeof module?Aa(exports):"function"===typeof define&&define.amd?define(["exports"],Aa):Aa(l.THREE=l.THREE||{})})(this,function(l){function Aa(){}function F(a,b){this.x=a||0;this.y=b||0}function Z(a,b,c,d,e,f,g,h,k,m){Object.defineProperty(this,"id",{value:cf++});this.uuid=Y.generateUUID();this.name="";this.image=void 0!==a?a:Z.DEFAULT_IMAGE;this.mipmaps=[];this.mapping=void 0!==b?b:Z.DEFAULT_MAPPING;this.wrapS=void 0!==c?c:1001;this.wrapT= -void 0!==d?d:1001;this.magFilter=void 0!==e?e:1006;this.minFilter=void 0!==f?f:1008;this.anisotropy=void 0!==k?k:1;this.format=void 0!==g?g:1023;this.type=void 0!==h?h:1009;this.offset=new F(0,0);this.repeat=new F(1,1);this.generateMipmaps=!0;this.premultiplyAlpha=!1;this.flipY=!0;this.unpackAlignment=4;this.encoding=void 0!==m?m:3E3;this.version=0;this.onUpdate=null}function ia(a,b,c,d){this.x=a||0;this.y=b||0;this.z=c||0;this.w=void 0!==d?d:1}function Ab(a,b,c){this.uuid=Y.generateUUID();this.width= -a;this.height=b;this.scissor=new ia(0,0,a,b);this.scissorTest=!1;this.viewport=new ia(0,0,a,b);c=c||{};void 0===c.minFilter&&(c.minFilter=1006);this.texture=new Z(void 0,void 0,c.wrapS,c.wrapT,c.magFilter,c.minFilter,c.format,c.type,c.anisotropy,c.encoding);this.depthBuffer=void 0!==c.depthBuffer?c.depthBuffer:!0;this.stencilBuffer=void 0!==c.stencilBuffer?c.stencilBuffer:!0;this.depthTexture=void 0!==c.depthTexture?c.depthTexture:null}function Bb(a,b,c){Ab.call(this,a,b,c);this.activeMipMapLevel= -this.activeCubeFace=0}function oa(a,b,c,d){this._x=a||0;this._y=b||0;this._z=c||0;this._w=void 0!==d?d:1}function p(a,b,c){this.x=a||0;this.y=b||0;this.z=c||0}function S(){this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];0=d||0 0 ) {\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\nfloat fogFactor = 0.0;\nif ( fogType == 1 ) {\nfogFactor = smoothstep( fogNear, fogFar, depth );\n} else {\nconst float LOG2 = 1.442695;\nfogFactor = exp2( - fogDensity * fogDensity * depth * depth * LOG2 );\nfogFactor = 1.0 - clamp( fogFactor, 0.0, 1.0 );\n}\ngl_FragColor = mix( gl_FragColor, vec4( fogColor, gl_FragColor.w ), fogFactor );\n}\n}"].join("\n")); -v.compileShader(P);v.compileShader(N);v.attachShader(ja,P);v.attachShader(ja,N);v.linkProgram(ja);A=ja;y=v.getAttribLocation(A,"position");w=v.getAttribLocation(A,"uv");c=v.getUniformLocation(A,"uvOffset");d=v.getUniformLocation(A,"uvScale");e=v.getUniformLocation(A,"rotation");f=v.getUniformLocation(A,"scale");g=v.getUniformLocation(A,"color");h=v.getUniformLocation(A,"map");k=v.getUniformLocation(A,"opacity");m=v.getUniformLocation(A,"modelViewMatrix");u=v.getUniformLocation(A,"projectionMatrix"); -q=v.getUniformLocation(A,"fogType");n=v.getUniformLocation(A,"fogDensity");r=v.getUniformLocation(A,"fogNear");l=v.getUniformLocation(A,"fogFar");t=v.getUniformLocation(A,"fogColor");x=v.getUniformLocation(A,"alphaTest");ja=document.createElementNS("http://www.w3.org/1999/xhtml","canvas");ja.width=8;ja.height=8;P=ja.getContext("2d");P.fillStyle="white";P.fillRect(0,0,8,8);aa=new Z(ja);aa.needsUpdate=!0}v.useProgram(A);O.initAttributes();O.enableAttribute(y);O.enableAttribute(w);O.disableUnusedAttributes(); -O.disable(v.CULL_FACE);O.enable(v.BLEND);v.bindBuffer(v.ARRAY_BUFFER,M);v.vertexAttribPointer(y,2,v.FLOAT,!1,16,0);v.vertexAttribPointer(w,2,v.FLOAT,!1,16,8);v.bindBuffer(v.ELEMENT_ARRAY_BUFFER,D);v.uniformMatrix4fv(u,!1,F.projectionMatrix.elements);O.activeTexture(v.TEXTURE0);v.uniform1i(h,0);P=ja=0;(N=p.fog)?(v.uniform3f(t,N.color.r,N.color.g,N.color.b),N.isFog?(v.uniform1f(r,N.near),v.uniform1f(l,N.far),v.uniform1i(q,1),P=ja=1):N.isFogExp2&&(v.uniform1f(n,N.density),v.uniform1i(q,2),P=ja=2)):(v.uniform1i(q, -0),P=ja=0);for(var N=0,X=b.length;N=d||0 0 ) {\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\nfloat fogFactor = 0.0;\nif ( fogType == 1 ) {\nfogFactor = smoothstep( fogNear, fogFar, depth );\n} else {\nconst float LOG2 = 1.442695;\nfogFactor = exp2( - fogDensity * fogDensity * depth * depth * LOG2 );\nfogFactor = 1.0 - clamp( fogFactor, 0.0, 1.0 );\n}\ngl_FragColor = mix( gl_FragColor, vec4( fogColor, gl_FragColor.w ), fogFactor );\n}\n}"].join("\n")); +w.compileShader(Q);w.compileShader(O);w.attachShader(ja,Q);w.attachShader(ja,O);w.linkProgram(ja);G=ja;x=w.getAttribLocation(G,"position");v=w.getAttribLocation(G,"uv");c=w.getUniformLocation(G,"uvOffset");d=w.getUniformLocation(G,"uvScale");e=w.getUniformLocation(G,"rotation");f=w.getUniformLocation(G,"scale");g=w.getUniformLocation(G,"color");h=w.getUniformLocation(G,"map");k=w.getUniformLocation(G,"opacity");m=w.getUniformLocation(G,"modelViewMatrix");r=w.getUniformLocation(G,"projectionMatrix"); +q=w.getUniformLocation(G,"fogType");n=w.getUniformLocation(G,"fogDensity");u=w.getUniformLocation(G,"fogNear");l=w.getUniformLocation(G,"fogFar");t=w.getUniformLocation(G,"fogColor");z=w.getUniformLocation(G,"alphaTest");ja=document.createElementNS("http://www.w3.org/1999/xhtml","canvas");ja.width=8;ja.height=8;Q=ja.getContext("2d");Q.fillStyle="white";Q.fillRect(0,0,8,8);aa=new ca(ja);aa.needsUpdate=!0}w.useProgram(G);N.initAttributes();N.enableAttribute(x);N.enableAttribute(v);N.disableUnusedAttributes(); +N.disable(w.CULL_FACE);N.enable(w.BLEND);w.bindBuffer(w.ARRAY_BUFFER,C);w.vertexAttribPointer(x,2,w.FLOAT,!1,16,0);w.vertexAttribPointer(v,2,w.FLOAT,!1,16,8);w.bindBuffer(w.ELEMENT_ARRAY_BUFFER,F);w.uniformMatrix4fv(r,!1,D.projectionMatrix.elements);N.activeTexture(w.TEXTURE0);w.uniform1i(h,0);Q=ja=0;(O=p.fog)?(w.uniform3f(t,O.color.r,O.color.g,O.color.b),O.isFog?(w.uniform1f(u,O.near),w.uniform1f(l,O.far),w.uniform1i(q,1),Q=ja=1):O.isFogExp2&&(w.uniform1f(n,O.density),w.uniform1i(q,2),Q=ja=2)):(w.uniform1i(q, +0),Q=ja=0);for(var O=0,W=b.length;Oc&&(c=a[b]);return c}function L(){Object.defineProperty(this,"id",{value:Rd++});this.uuid=Y.generateUUID();this.name="";this.type="Geometry";this.vertices=[];this.colors=[];this.faces=[];this.faceVertexUvs=[[]];this.morphTargets=[];this.morphNormals=[];this.skinWeights=[];this.skinIndices=[];this.lineDistances=[];this.boundingSphere=this.boundingBox=null;this.groupsNeedUpdate=this.lineDistancesNeedUpdate=this.colorsNeedUpdate=this.normalsNeedUpdate= -this.uvsNeedUpdate=this.verticesNeedUpdate=this.elementsNeedUpdate=!1}function J(){Object.defineProperty(this,"id",{value:Rd++});this.uuid=Y.generateUUID();this.name="";this.type="BufferGeometry";this.index=null;this.attributes={};this.morphAttributes={};this.groups=[];this.boundingSphere=this.boundingBox=null;this.drawRange={start:0,count:Infinity}}function ya(a,b){C.call(this);this.type="Mesh";this.geometry=void 0!==a?a:new J;this.material=void 0!==b?b:new Ga({color:16777215*Math.random()});this.drawMode= -0;this.updateMorphTargets()}function Eb(a,b,c,d,e,f){L.call(this);this.type="BoxGeometry";this.parameters={width:a,height:b,depth:c,widthSegments:d,heightSegments:e,depthSegments:f};this.fromBufferGeometry(new ib(a,b,c,d,e,f));this.mergeVertices()}function ib(a,b,c,d,e,f){function g(a,b,c,d,e,f,g,l,M,D,A){var aa=f/M,ba=g/D,I=f/2,pa=g/2,F=l/2;g=M+1;var E=D+1,C=f=0,P,N,X=new p;for(N=0;Nc&&(c=a[b]);return c}function P(){Object.defineProperty(this,"id",{value:Qd++});this.uuid=Y.generateUUID();this.name="";this.type="Geometry";this.vertices=[];this.colors=[];this.faces=[];this.faceVertexUvs=[[]];this.morphTargets=[];this.morphNormals=[];this.skinWeights=[];this.skinIndices=[];this.lineDistances=[];this.boundingSphere=this.boundingBox=null;this.groupsNeedUpdate=this.lineDistancesNeedUpdate=this.colorsNeedUpdate=this.normalsNeedUpdate= +this.uvsNeedUpdate=this.verticesNeedUpdate=this.elementsNeedUpdate=!1}function H(){Object.defineProperty(this,"id",{value:Qd++});this.uuid=Y.generateUUID();this.name="";this.type="BufferGeometry";this.index=null;this.attributes={};this.morphAttributes={};this.groups=[];this.boundingSphere=this.boundingBox=null;this.drawRange={start:0,count:Infinity}}function wa(a,b){B.call(this);this.type="Mesh";this.geometry=void 0!==a?a:new H;this.material=void 0!==b?b:new Ha({color:16777215*Math.random()});this.drawMode= +0;this.updateMorphTargets()}function Eb(a,b,c,d,e,f){P.call(this);this.type="BoxGeometry";this.parameters={width:a,height:b,depth:c,widthSegments:d,heightSegments:e,depthSegments:f};this.fromBufferGeometry(new ib(a,b,c,d,e,f));this.mergeVertices()}function ib(a,b,c,d,e,f){function g(a,b,c,d,e,f,g,l,C,F,G){var aa=f/C,ba=g/F,ua=f/2,I=g/2,D=l/2;g=C+1;var E=F+1,B=f=0,Q,O,W=new p;for(O=0;O/g,function(a,c){var d=ca[c];if(void 0=== -d)throw Error("Can not resolve #include <"+c+">");return Td(d)})}function Me(a){return a.replace(/for \( int i \= (\d+)\; i < (\d+)\; i \+\+ \) \{([\s\S]+?)(?=\})\}/g,function(a,c,d,e){a="";for(c=parseInt(c);c/g,function(a,c){var d=U[c];if(void 0=== +d)throw Error("Can not resolve #include <"+c+">");return Sd(d)})}function Ne(a){return a.replace(/for \( int i \= (\d+)\; i < (\d+)\; i \+\+ \) \{([\s\S]+?)(?=\})\}/g,function(a,c,d,e){a="";for(c=parseInt(c);cb||a.height>b){var c=b/Math.max(a.width,a.height),d=document.createElementNS("http://www.w3.org/1999/xhtml","canvas");d.width=Math.floor(a.width*c);d.height=Math.floor(a.height*c);d.getContext("2d").drawImage(a,0,0,a.width,a.height,0,0,d.width,d.height);console.warn("THREE.WebGLRenderer: image is too big ("+ -a.width+"x"+a.height+"). Resized to "+d.width+"x"+d.height,a);return d}return a}function k(a){return Y.isPowerOfTwo(a.width)&&Y.isPowerOfTwo(a.height)}function m(b){return 1003===b||1004===b||1005===b?a.NEAREST:a.LINEAR}function u(b){b=b.target;b.removeEventListener("dispose",u);a:{var c=d.get(b);if(b.image&&c.__image__webglTextureCube)a.deleteTexture(c.__image__webglTextureCube);else{if(void 0===c.__webglInit)break a;a.deleteTexture(c.__webglTexture)}d.remove(b)}g.textures--}function q(b){b=b.target; +displacementMap:!!d.displacementMap,roughnessMap:!!d.roughnessMap,metalnessMap:!!d.metalnessMap,specularMap:!!d.specularMap,alphaMap:!!d.alphaMap,gradientMap:!!d.gradientMap,combine:d.combine,vertexColors:d.vertexColors,fog:!!k,useFog:d.fog,fogExp:k&&k.isFogExp2,flatShading:1===d.shading,sizeAttenuation:d.sizeAttenuation,logarithmicDepthBuffer:b.logarithmicDepthBuffer,skinning:d.skinning&&0b||a.height>b){var c=b/Math.max(a.width,a.height),d=document.createElementNS("http://www.w3.org/1999/xhtml","canvas");d.width=Math.floor(a.width*c);d.height=Math.floor(a.height*c);d.getContext("2d").drawImage(a,0,0,a.width,a.height,0,0,d.width,d.height);console.warn("THREE.WebGLRenderer: image is too big ("+ +a.width+"x"+a.height+"). Resized to "+d.width+"x"+d.height,a);return d}return a}function k(a){return Y.isPowerOfTwo(a.width)&&Y.isPowerOfTwo(a.height)}function m(b){return 1003===b||1004===b||1005===b?a.NEAREST:a.LINEAR}function r(b){b=b.target;b.removeEventListener("dispose",r);a:{var c=d.get(b);if(b.image&&c.__image__webglTextureCube)a.deleteTexture(c.__image__webglTextureCube);else{if(void 0===c.__webglInit)break a;a.deleteTexture(c.__webglTexture)}d.remove(b)}g.textures--}function q(b){b=b.target; b.removeEventListener("dispose",q);var c=d.get(b),e=d.get(b.texture);if(b){void 0!==e.__webglTexture&&a.deleteTexture(e.__webglTexture);b.depthTexture&&b.depthTexture.dispose();if(b.isWebGLRenderTargetCube)for(e=0;6>e;e++)a.deleteFramebuffer(c.__webglFramebuffer[e]),c.__webglDepthbuffer&&a.deleteRenderbuffer(c.__webglDepthbuffer[e]);else a.deleteFramebuffer(c.__webglFramebuffer),c.__webglDepthbuffer&&a.deleteRenderbuffer(c.__webglDepthbuffer);d.remove(b.texture);d.remove(b)}g.textures--}function n(b, -m){var n=d.get(b);if(0z;z++)t[z]=q||l?l?b.image[z].image:b.image[z]:h(b.image[z],e.maxCubemapSize);var p=k(t[0]),x=f(b.format),ba=f(b.type);r(a.TEXTURE_CUBE_MAP,b,p);for(z=0;6>z;z++)if(q)for(var I,pa=t[z].mipmaps,F=0,C=pa.length;Fu;u++)e.__webglFramebuffer[u]=a.createFramebuffer()}else e.__webglFramebuffer=a.createFramebuffer();if(h){c.bindTexture(a.TEXTURE_CUBE_MAP,f.__webglTexture);r(a.TEXTURE_CUBE_MAP,b.texture,m);for(u=0;6>u;u++)l(e.__webglFramebuffer[u], -b,a.COLOR_ATTACHMENT0,a.TEXTURE_CUBE_MAP_POSITIVE_X+u);b.texture.generateMipmaps&&m&&a.generateMipmap(a.TEXTURE_CUBE_MAP);c.bindTexture(a.TEXTURE_CUBE_MAP,null)}else c.bindTexture(a.TEXTURE_2D,f.__webglTexture),r(a.TEXTURE_2D,b.texture,m),l(e.__webglFramebuffer,b,a.COLOR_ATTACHMENT0,a.TEXTURE_2D),b.texture.generateMipmaps&&m&&a.generateMipmap(a.TEXTURE_2D),c.bindTexture(a.TEXTURE_2D,null);if(b.depthBuffer){e=d.get(b);f=!0===b.isWebGLRenderTargetCube;if(b.depthTexture){if(f)throw Error("target.depthTexture not supported in Cube render targets"); +a.RGBA4,c.width,c.height);a.bindRenderbuffer(a.RENDERBUFFER,null)}var p="undefined"!==typeof WebGL2RenderingContext&&a instanceof WebGL2RenderingContext;this.setTexture2D=n;this.setTextureCube=function(b,m){var n=d.get(b);if(6===b.image.length)if(0y;y++)t[y]=q||l?l?b.image[y].image:b.image[y]:h(b.image[y],e.maxCubemapSize);var p=k(t[0]),z=f(b.format),ba=f(b.type);u(a.TEXTURE_CUBE_MAP,b,p);for(y=0;6>y;y++)if(q)for(var ua,I=t[y].mipmaps,D=0,B=I.length;Dr;r++)e.__webglFramebuffer[r]=a.createFramebuffer()}else e.__webglFramebuffer=a.createFramebuffer();if(h){c.bindTexture(a.TEXTURE_CUBE_MAP,f.__webglTexture);u(a.TEXTURE_CUBE_MAP,b.texture,m);for(r=0;6>r;r++)l(e.__webglFramebuffer[r], +b,a.COLOR_ATTACHMENT0,a.TEXTURE_CUBE_MAP_POSITIVE_X+r);b.texture.generateMipmaps&&m&&a.generateMipmap(a.TEXTURE_CUBE_MAP);c.bindTexture(a.TEXTURE_CUBE_MAP,null)}else c.bindTexture(a.TEXTURE_2D,f.__webglTexture),u(a.TEXTURE_2D,b.texture,m),l(e.__webglFramebuffer,b,a.COLOR_ATTACHMENT0,a.TEXTURE_2D),b.texture.generateMipmaps&&m&&a.generateMipmap(a.TEXTURE_2D),c.bindTexture(a.TEXTURE_2D,null);if(b.depthBuffer){e=d.get(b);f=!0===b.isWebGLRenderTargetCube;if(b.depthTexture){if(f)throw Error("target.depthTexture not supported in Cube render targets"); if(b&&b.isWebGLRenderTargetCube)throw Error("Depth Texture with cube render targets is not supported!");a.bindFramebuffer(a.FRAMEBUFFER,e.__webglFramebuffer);if(!b.depthTexture||!b.depthTexture.isDepthTexture)throw Error("renderTarget.depthTexture must be an instance of THREE.DepthTexture");d.get(b.depthTexture).__webglTexture&&b.depthTexture.image.width===b.width&&b.depthTexture.image.height===b.height||(b.depthTexture.image.width=b.width,b.depthTexture.image.height=b.height,b.depthTexture.needsUpdate= !0);n(b.depthTexture,0);e=d.get(b.depthTexture).__webglTexture;if(1026===b.depthTexture.format)a.framebufferTexture2D(a.FRAMEBUFFER,a.DEPTH_ATTACHMENT,a.TEXTURE_2D,e,0);else if(1027===b.depthTexture.format)a.framebufferTexture2D(a.FRAMEBUFFER,a.DEPTH_STENCIL_ATTACHMENT,a.TEXTURE_2D,e,0);else throw Error("Unknown depthTexture format");}else if(f)for(e.__webglDepthbuffer=[],f=0;6>f;f++)a.bindFramebuffer(a.FRAMEBUFFER,e.__webglFramebuffer[f]),e.__webglDepthbuffer[f]=a.createRenderbuffer(),t(e.__webglDepthbuffer[f], -b);else a.bindFramebuffer(a.FRAMEBUFFER,e.__webglFramebuffer),e.__webglDepthbuffer=a.createRenderbuffer(),t(e.__webglDepthbuffer,b);a.bindFramebuffer(a.FRAMEBUFFER,null)}};this.updateRenderTargetMipmap=function(b){var e=b.texture;e.generateMipmaps&&k(b)&&1003!==e.minFilter&&1006!==e.minFilter&&(b=b&&b.isWebGLRenderTargetCube?a.TEXTURE_CUBE_MAP:a.TEXTURE_2D,e=d.get(e).__webglTexture,c.bindTexture(b,e),a.generateMipmap(b),c.bindTexture(b,null))}}function Zf(){var a={};return{get:function(b){b=b.uuid; -var c=a[b];void 0===c&&(c={},a[b]=c);return c},remove:function(b){delete a[b.uuid]},clear:function(){a={}}}}function $f(a,b,c){function d(b,c,d){var e=new Uint8Array(4),f=a.createTexture();a.bindTexture(b,f);a.texParameteri(b,a.TEXTURE_MIN_FILTER,a.NEAREST);a.texParameteri(b,a.TEXTURE_MAG_FILTER,a.NEAREST);for(b=0;b=ha.maxTextures&&console.warn("WebGLRenderer: trying to use "+a+" texture units while this GPU supports only "+ha.maxTextures);R+=1;return a};this.setTexture2D=function(){var a=!1;return function(b,c){b&&b.isWebGLRenderTarget&&(a||(console.warn("THREE.WebGLRenderer.setTexture2D: don't use render targets as textures. Use their .texture property instead."),a=!0),b=b.texture);qa.setTexture2D(b,c)}}();this.setTexture=function(){var a=!1;return function(b,c){a||(console.warn("THREE.WebGLRenderer: .setTexture is deprecated, use setTexture2D instead."), -a=!0);qa.setTexture2D(b,c)}}();this.setTextureCube=function(){var a=!1;return function(b,c){b&&b.isWebGLRenderTargetCube&&(a||(console.warn("THREE.WebGLRenderer.setTextureCube: don't use cube render targets as textures. Use their .texture property instead."),a=!0),b=b.texture);b&&b.isCubeTexture||Array.isArray(b.image)&&6===b.image.length?qa.setTextureCube(b,c):qa.setTextureCubeDynamic(b,c)}}();this.getRenderTarget=function(){return C};this.setRenderTarget=function(a){(C=a)&&void 0===ga.get(a).__webglFramebuffer&& -qa.setupRenderTarget(a);var b=a&&a.isWebGLRenderTargetCube,c;a?(c=ga.get(a),c=b?c.__webglFramebuffer[a.activeCubeFace]:c.__webglFramebuffer,X.copy(a.scissor),la=a.scissorTest,V.copy(a.viewport)):(c=null,X.copy(Q).multiplyScalar(U),la=na,V.copy(fa).multiplyScalar(U));E!==c&&(B.bindFramebuffer(B.FRAMEBUFFER,c),E=c);ea.scissor(X);ea.setScissorTest(la);ea.viewport(V);b&&(b=ga.get(a.texture),B.framebufferTexture2D(B.FRAMEBUFFER,B.COLOR_ATTACHMENT0,B.TEXTURE_CUBE_MAP_POSITIVE_X+a.activeCubeFace,b.__webglTexture, -a.activeMipMapLevel))};this.readRenderTargetPixels=function(a,b,c,d,e,f){if(!1===(a&&a.isWebGLRenderTarget))console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.");else{var g=ga.get(a).__webglFramebuffer;if(g){var h=!1;g!==E&&(B.bindFramebuffer(B.FRAMEBUFFER,g),h=!0);try{var k=a.texture,m=k.format,u=k.type;1023!==m&&l(m)!==B.getParameter(B.IMPLEMENTATION_COLOR_READ_FORMAT)?console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format."): -1009===u||l(u)===B.getParameter(B.IMPLEMENTATION_COLOR_READ_TYPE)||1015===u&&(ma.get("OES_texture_float")||ma.get("WEBGL_color_buffer_float"))||1016===u&&ma.get("EXT_color_buffer_half_float")?B.checkFramebufferStatus(B.FRAMEBUFFER)===B.FRAMEBUFFER_COMPLETE?0<=b&&b<=a.width-d&&0<=c&&c<=a.height-e&&B.readPixels(b,c,d,e,l(m),l(u),f):console.error("THREE.WebGLRenderer.readRenderTargetPixels: readPixels from renderTarget failed. Framebuffer not complete."):console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.")}finally{h&& -B.bindFramebuffer(B.FRAMEBUFFER,E)}}}}}function Gb(a,b){this.name="";this.color=new G(a);this.density=void 0!==b?b:2.5E-4}function Hb(a,b,c){this.name="";this.color=new G(a);this.near=void 0!==b?b:1;this.far=void 0!==c?c:1E3}function jd(){C.call(this);this.type="Scene";this.overrideMaterial=this.fog=this.background=null;this.autoUpdate=!0}function Xd(a,b,c,d,e){C.call(this);this.lensFlares=[];this.positionScreen=new p;this.customUpdateCallback=void 0;void 0!==a&&this.add(a,b,c,d,e)}function bb(a){W.call(this); -this.type="SpriteMaterial";this.color=new G(16777215);this.map=null;this.rotation=0;this.lights=this.fog=!1;this.setValues(a)}function wc(a){C.call(this);this.type="Sprite";this.material=void 0!==a?a:new bb}function xc(){C.call(this);this.type="LOD";Object.defineProperties(this,{levels:{enumerable:!0,value:[]}})}function yc(a,b){a=a||[];this.bones=a.slice(0);this.boneMatrices=new Float32Array(16*this.bones.length);if(void 0===b)this.calculateInverses();else if(this.bones.length===b.length)this.boneInverses= -b.slice(0);else{console.warn("THREE.Skeleton boneInverses is the wrong length.");this.boneInverses=[];for(var c=0,d=this.bones.length;c=a.HAVE_CURRENT_DATA&&(u.needsUpdate=!0)}Z.call(this,a,b,c,d,e,f,g,h,k);this.generateMipmaps=!1;var u=this;m()}function Jb(a,b,c,d,e,f,g,h,k,m,u,q){Z.call(this,null,f,g,h,k,m,d,e,u,q);this.image={width:b,height:c};this.mipmaps=a;this.generateMipmaps=this.flipY=!1}function od(a,b,c,d,e,f,g,h,k){Z.call(this,a,b,c,d,e,f,g,h,k);this.needsUpdate=!0}function Ac(a,b,c,d,e,f,g,h,k,m){m=void 0!==m?m:1026;if(1026!==m&&1027!==m)throw Error("DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat"); -void 0===c&&1026===m&&(c=1012);void 0===c&&1027===m&&(c=1020);Z.call(this,null,d,e,f,g,h,m,c,k);this.image={width:a,height:b};this.magFilter=void 0!==g?g:1003;this.minFilter=void 0!==h?h:1003;this.generateMipmaps=this.flipY=!1}function Kb(a){function b(a,b){return a-b}J.call(this);this.type="WireframeGeometry";var c=[],d,e,f,g,h=[0,0],k={},m,u=["a","b","c"];if(a&&a.isGeometry){var q=a.faces;d=0;for(f=q.length;de;e++)h[0]=n[u[e]],h[1]=n[u[(e+1)%3]],h.sort(b),m=h.toString(), -void 0===k[m]&&(k[m]={index1:h[0],index2:h[1]})}for(m in k)d=k[m],u=a.vertices[d.index1],c.push(u.x,u.y,u.z),u=a.vertices[d.index2],c.push(u.x,u.y,u.z)}else if(a&&a.isBufferGeometry){var l,u=new p;if(null!==a.index){q=a.attributes.position;n=a.index;l=a.groups;0===l.length&&(l=[{start:0,count:n.count,materialIndex:0}]);a=0;for(g=l.length;ae;e++)h[0]=n.getX(d+e),h[1]=n.getX(d+(e+1)%3),h.sort(b),m=h.toString(),void 0===k[m]&&(k[m]={index1:h[0], -index2:h[1]});for(m in k)d=k[m],u.fromBufferAttribute(q,d.index1),c.push(u.x,u.y,u.z),u.fromBufferAttribute(q,d.index2),c.push(u.x,u.y,u.z)}else for(q=a.attributes.position,d=0,f=q.count/3;de;e++)k=3*d+e,u.fromBufferAttribute(q,k),c.push(u.x,u.y,u.z),k=3*d+(e+1)%3,u.fromBufferAttribute(q,k),c.push(u.x,u.y,u.z)}this.addAttribute("position",new E(c,3))}function Bc(a,b,c){L.call(this);this.type="ParametricGeometry";this.parameters={func:a,slices:b,stacks:c};this.fromBufferGeometry(new Lb(a, -b,c));this.mergeVertices()}function Lb(a,b,c){J.call(this);this.type="ParametricBufferGeometry";this.parameters={func:a,slices:b,stacks:c};var d=[],e=[],f=[],g,h,k=b+1;for(g=0;g<=c;g++){var m=g/c;for(h=0;h<=b;h++){var u=h/b,q=a(u,m);e.push(q.x,q.y,q.z);f.push(u,m)}}for(g=0;gd&&1===a.x&&(k[b]=a.x-1);0===c.x&&0===c.z&&(k[b]=d/2/Math.PI+.5)}J.call(this);this.type="PolyhedronBufferGeometry";this.parameters={vertices:a,indices:b,radius:c,detail:d};c=c||1;var h=[],k=[];(function(a){for(var c= -new p,d=new p,g=new p,h=0;he&&(.2>b&&(k[a+0]+=1),.2>c&&(k[a+2]+=1),.2>d&&(k[a+4]+=1))})();this.addAttribute("position",new E(h,3));this.addAttribute("normal",new E(h.slice(),3));this.addAttribute("uv",new E(k,2));this.normalizeNormals()}function Dc(a,b){L.call(this);this.type="TetrahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Mb(a,b)); -this.mergeVertices()}function Mb(a,b){qa.call(this,[1,1,1,-1,-1,1,-1,1,-1,1,-1,-1],[2,1,0,0,3,2,1,3,0,2,3,1],a,b);this.type="TetrahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Ec(a,b){L.call(this);this.type="OctahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new kb(a,b));this.mergeVertices()}function kb(a,b){qa.call(this,[1,0,0,-1,0,0,0,1,0,0,-1,0,0,0,1,0,0,-1],[0,2,4,0,4,3,0,3,5,0,5,2,1,2,5,1,5,3,1,3,4,1,4,2],a,b);this.type="OctahedronBufferGeometry"; -this.parameters={radius:a,detail:b}}function Fc(a,b){L.call(this);this.type="IcosahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Nb(a,b));this.mergeVertices()}function Nb(a,b){var c=(1+Math.sqrt(5))/2;qa.call(this,[-1,c,0,1,c,0,-1,-c,0,1,-c,0,0,-1,c,0,1,c,0,-1,-c,0,1,-c,c,0,-1,c,0,1,-c,0,-1,-c,0,1],[0,11,5,0,5,1,0,1,7,0,7,10,0,10,11,1,5,9,5,11,4,11,10,2,10,7,6,7,1,8,3,9,4,3,4,2,3,2,6,3,6,8,3,8,9,4,9,5,2,4,11,6,2,10,8,6,7,9,8,1],a,b);this.type="IcosahedronBufferGeometry"; -this.parameters={radius:a,detail:b}}function Gc(a,b){L.call(this);this.type="DodecahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Ob(a,b));this.mergeVertices()}function Ob(a,b){var c=(1+Math.sqrt(5))/2,d=1/c;qa.call(this,[-1,-1,-1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,-1,1,-1,1,1,1,-1,1,1,1,0,-d,-c,0,-d,c,0,d,-c,0,d,c,-d,-c,0,-d,c,0,d,-c,0,d,c,0,-c,0,-d,c,0,-d,-c,0,d,c,0,d],[3,11,7,3,7,15,3,15,13,7,19,17,7,17,6,7,6,15,17,4,8,17,8,10,17,10,6,8,0,16,8,16,2,8,2,10,0,12,1,0,1,18, -0,18,16,6,10,2,6,2,13,6,13,15,2,16,18,2,18,3,2,3,13,18,1,9,18,9,11,18,11,3,4,14,12,4,12,0,4,0,8,11,9,5,11,5,19,11,19,7,19,5,14,19,14,4,19,4,17,1,12,14,1,14,5,1,5,9],a,b);this.type="DodecahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Hc(a,b,c,d,e,f){L.call(this);this.type="TubeGeometry";this.parameters={path:a,tubularSegments:b,radius:c,radialSegments:d,closed:e};void 0!==f&&console.warn("THREE.TubeGeometry: taper has been removed.");a=new Pb(a,b,c,d,e);this.tangents=a.tangents; -this.normals=a.normals;this.binormals=a.binormals;this.fromBufferGeometry(a);this.mergeVertices()}function Pb(a,b,c,d,e){function f(e){var f=a.getPointAt(e/b),m=g.normals[e];e=g.binormals[e];for(q=0;q<=d;q++){var u=q/d*Math.PI*2,t=Math.sin(u),u=-Math.cos(u);k.x=u*m.x+t*e.x;k.y=u*m.y+t*e.y;k.z=u*m.z+t*e.z;k.normalize();l.push(k.x,k.y,k.z);h.x=f.x+c*k.x;h.y=f.y+c*k.y;h.z=f.z+c*k.z;n.push(h.x,h.y,h.z)}}J.call(this);this.type="TubeBufferGeometry";this.parameters={path:a,tubularSegments:b,radius:c,radialSegments:d, -closed:e};b=b||64;c=c||1;d=d||8;e=e||!1;var g=a.computeFrenetFrames(b,e);this.tangents=g.tangents;this.normals=g.normals;this.binormals=g.binormals;var h=new p,k=new p,m=new F,u,q,n=[],l=[],z=[],t=[];for(u=0;up;p++)f[0]=r[k[p]],f[1]=r[k[(p+1)%3]],f.sort(c),h=f.toString(),void 0===g[h]?g[h]= -{index1:f[0],index2:f[1],face1:l,face2:void 0}:g[h].face2=l;for(h in g)if(f=g[h],void 0===f.face2||m[f.face1].normal.dot(m[f.face2].normal)<=e)k=u[f.index1],d.push(k.x,k.y,k.z),k=u[f.index2],d.push(k.x,k.y,k.z);this.addAttribute("position",new E(d,3))}function mb(a,b,c,d,e,f,g,h){L.call(this);this.type="CylinderGeometry";this.parameters={radiusTop:a,radiusBottom:b,height:c,radialSegments:d,heightSegments:e,openEnded:f,thetaStart:g,thetaLength:h};this.fromBufferGeometry(new Ua(a,b,c,d,e,f,g,h));this.mergeVertices()} -function Ua(a,b,c,d,e,f,g,h){function k(c){var e,f,k,t=new F,D=new p,A=0,aa=!0===c?a:b,ba=!0===c?1:-1;f=z;for(e=1;e<=d;e++)l.push(0,x*ba,0),n.push(0,ba,0),r.push(.5,.5),z++;k=z;for(e=0;e<=d;e++){var I=e/d*h+g,C=Math.cos(I),I=Math.sin(I);D.x=aa*I;D.y=x*ba;D.z=aa*C;l.push(D.x,D.y,D.z);n.push(0,ba,0);t.x=.5*C+.5;t.y=.5*I*ba+.5;r.push(t.x,t.y);z++}for(e=0;ethis.duration&&this.resetDuration();this.optimize()}function Ed(a){this.manager=void 0!==a?a:ua;this.textures={}}function ae(a){this.manager=void 0!==a?a:ua}function cc(){this.onLoadStart=function(){};this.onLoadProgress=function(){};this.onLoadComplete=function(){}}function be(a){"boolean"===typeof a&&(console.warn("THREE.JSONLoader: showStatus parameter has been removed from constructor."),a=void 0);this.manager=void 0!== -a?a:ua;this.withCredentials=!1}function Oe(a){this.manager=void 0!==a?a:ua;this.texturePath=""}function Pe(a,b,c,d,e){b=.5*(d-b);e=.5*(e-c);var f=a*a;return(2*c-2*d+b+e)*a*f+(-3*c+3*d-2*b-e)*f+b*a+c}function vb(a,b,c,d){var e=1-a;return e*e*b+2*(1-a)*a*c+a*a*d}function wb(a,b,c,d,e){var f=1-a,g=1-a;return f*f*f*b+3*g*g*a*c+3*(1-a)*a*a*d+a*a*a*e}function wa(){}function Qa(a,b){this.v1=a;this.v2=b}function Uc(){this.curves=[];this.autoClose=!1}function Va(a,b,c,d,e,f,g,h){this.aX=a;this.aY=b;this.xRadius= -c;this.yRadius=d;this.aStartAngle=e;this.aEndAngle=f;this.aClockwise=g;this.aRotation=h||0}function xb(a){this.points=void 0===a?[]:a}function dc(a,b,c,d){this.v0=a;this.v1=b;this.v2=c;this.v3=d}function ec(a,b,c){this.v0=a;this.v1=b;this.v2=c}function Vc(a){Uc.call(this);this.currentPoint=new F;a&&this.fromPoints(a)}function yb(){Vc.apply(this,arguments);this.holes=[]}function ce(){this.subPaths=[];this.currentPath=null}function de(a){this.data=a}function Qe(a){this.manager=void 0!==a?a:ua}function ee(a){this.manager= -void 0!==a?a:ua}function Re(){this.type="StereoCamera";this.aspect=1;this.eyeSep=.064;this.cameraL=new Ba;this.cameraL.layers.enable(1);this.cameraL.matrixAutoUpdate=!1;this.cameraR=new Ba;this.cameraR.layers.enable(2);this.cameraR.matrixAutoUpdate=!1}function Fd(a,b,c){C.call(this);this.type="CubeCamera";var d=new Ba(90,1,a,b);d.up.set(0,-1,0);d.lookAt(new p(1,0,0));this.add(d);var e=new Ba(90,1,a,b);e.up.set(0,-1,0);e.lookAt(new p(-1,0,0));this.add(e);var f=new Ba(90,1,a,b);f.up.set(0,0,1);f.lookAt(new p(0, -1,0));this.add(f);var g=new Ba(90,1,a,b);g.up.set(0,0,-1);g.lookAt(new p(0,-1,0));this.add(g);var h=new Ba(90,1,a,b);h.up.set(0,-1,0);h.lookAt(new p(0,0,1));this.add(h);var k=new Ba(90,1,a,b);k.up.set(0,-1,0);k.lookAt(new p(0,0,-1));this.add(k);this.renderTarget=new Bb(c,c,{format:1022,magFilter:1006,minFilter:1006});this.renderTarget.texture.name="CubeCamera";this.updateCubeMap=function(a,b){null===this.parent&&this.updateMatrixWorld();var c=this.renderTarget,n=c.texture.generateMipmaps;c.texture.generateMipmaps= -!1;c.activeCubeFace=0;a.render(b,d,c);c.activeCubeFace=1;a.render(b,e,c);c.activeCubeFace=2;a.render(b,f,c);c.activeCubeFace=3;a.render(b,g,c);c.activeCubeFace=4;a.render(b,h,c);c.texture.generateMipmaps=n;c.activeCubeFace=5;a.render(b,k,c);a.setRenderTarget(null)}}function fe(){C.call(this);this.type="AudioListener";this.context=ge.getContext();this.gain=this.context.createGain();this.gain.connect(this.context.destination);this.filter=null}function fc(a){C.call(this);this.type="Audio";this.context= -a.context;this.gain=this.context.createGain();this.gain.connect(a.getInput());this.autoplay=!1;this.buffer=null;this.loop=!1;this.startTime=0;this.playbackRate=1;this.isPlaying=!1;this.hasPlaybackControl=!0;this.sourceType="empty";this.filters=[]}function he(a){fc.call(this,a);this.panner=this.context.createPanner();this.panner.connect(this.gain)}function ie(a,b){this.analyser=a.context.createAnalyser();this.analyser.fftSize=void 0!==b?b:2048;this.data=new Uint8Array(this.analyser.frequencyBinCount); -a.getOutput().connect(this.analyser)}function je(a,b,c){this.binding=a;this.valueSize=c;a=Float64Array;switch(b){case "quaternion":b=this._slerp;break;case "string":case "bool":a=Array;b=this._select;break;default:b=this._lerp}this.buffer=new a(4*c);this._mixBufferRegion=b;this.referenceCount=this.useCount=this.cumulativeWeight=0}function Se(a,b,c){c=c||ha.parseTrackName(b);this._targetGroup=a;this._bindings=a.subscribe_(b,c)}function ha(a,b,c){this.path=b;this.parsedPath=c||ha.parseTrackName(b); -this.node=ha.findNode(a,this.parsedPath.nodeName)||a;this.rootNode=a}function Te(a){this.uuid=Y.generateUUID();this._objects=Array.prototype.slice.call(arguments);this.nCachedObjects_=0;var b={};this._indicesByUUID=b;for(var c=0,d=arguments.length;c!==d;++c)b[arguments[c].uuid]=c;this._paths=[];this._parsedPaths=[];this._bindings=[];this._bindingsIndicesByPath={};var e=this;this.stats={objects:{get total(){return e._objects.length},get inUse(){return this.total-e.nCachedObjects_}},get bindingsPerObject(){return e._bindings.length}}} -function Ue(a,b,c){this._mixer=a;this._clip=b;this._localRoot=c||null;a=b.tracks;b=a.length;c=Array(b);for(var d={endingStart:2400,endingEnd:2400},e=0;e!==b;++e){var f=a[e].createInterpolant(null);c[e]=f;f.settings=d}this._interpolantSettings=d;this._interpolants=c;this._propertyBindings=Array(b);this._weightInterpolant=this._timeScaleInterpolant=this._byClipCacheIndex=this._cacheIndex=null;this.loop=2201;this._loopCount=-1;this._startTime=null;this.time=0;this._effectiveWeight=this.weight=this._effectiveTimeScale= -this.timeScale=1;this.repetitions=Infinity;this.paused=!1;this.enabled=!0;this.clampWhenFinished=!1;this.zeroSlopeAtEnd=this.zeroSlopeAtStart=!0}function Ve(a){this._root=a;this._initMemoryManager();this.time=this._accuIndex=0;this.timeScale=1}function Gd(a,b){"string"===typeof a&&(console.warn("THREE.Uniform: Type parameter is no longer needed."),a=b);this.value=a}function ke(){J.call(this);this.type="InstancedBufferGeometry";this.maxInstancedCount=void 0}function le(a,b,c,d){this.uuid=Y.generateUUID(); -this.data=a;this.itemSize=b;this.offset=c;this.normalized=!0===d}function gc(a,b){this.uuid=Y.generateUUID();this.array=a;this.stride=b;this.count=void 0!==a?a.length/b:0;this.dynamic=!1;this.updateRange={offset:0,count:-1};this.onUploadCallback=function(){};this.version=0}function me(a,b,c){gc.call(this,a,b);this.meshPerAttribute=c||1}function ne(a,b,c){K.call(this,a,b);this.meshPerAttribute=c||1}function We(a,b,c,d){this.ray=new fb(a,b);this.near=c||0;this.far=d||Infinity;this.params={Mesh:{},Line:{}, -LOD:{},Points:{threshold:1},Sprite:{}};Object.defineProperties(this.params,{PointCloud:{get:function(){console.warn("THREE.Raycaster: params.PointCloud has been renamed to params.Points.");return this.Points}}})}function Xe(a,b){return a.distance-b.distance}function oe(a,b,c,d){if(!1!==a.visible&&(a.raycast(b,c),!0===d)){a=a.children;d=0;for(var e=a.length;dc;c++,d++){var e=c/32*Math.PI*2,f=d/32*Math.PI*2;b.push(Math.cos(e),Math.sin(e),1,Math.cos(f),Math.sin(f),1)}a.addAttribute("position",new E(b,3));b=new fa({fog:!1});this.cone=new U(a,b);this.add(this.cone);this.update()}function ic(a){this.bones=this.getBoneList(a);for(var b=new J,c=[],d=[],e=new G(0,0,1),f=new G(0,1,0),g=0;g -a?-1:0=na.maxTextures&&console.warn("WebGLRenderer: trying to use "+a+" texture units while this GPU supports only "+na.maxTextures);Z+=1;return a};this.setTexture2D=function(){var a=!1;return function(b,c){b&&b.isWebGLRenderTarget&& +(a||(console.warn("THREE.WebGLRenderer.setTexture2D: don't use render targets as textures. Use their .texture property instead."),a=!0),b=b.texture);qa.setTexture2D(b,c)}}();this.setTexture=function(){var a=!1;return function(b,c){a||(console.warn("THREE.WebGLRenderer: .setTexture is deprecated, use setTexture2D instead."),a=!0);qa.setTexture2D(b,c)}}();this.setTextureCube=function(){var a=!1;return function(b,c){b&&b.isWebGLRenderTargetCube&&(a||(console.warn("THREE.WebGLRenderer.setTextureCube: don't use cube render targets as textures. Use their .texture property instead."), +a=!0),b=b.texture);b&&b.isCubeTexture||Array.isArray(b.image)&&6===b.image.length?qa.setTextureCube(b,c):qa.setTextureCubeDynamic(b,c)}}();this.getRenderTarget=function(){return E};this.setRenderTarget=function(a){(E=a)&&void 0===ha.get(a).__webglFramebuffer&&qa.setupRenderTarget(a);var b=a&&a.isWebGLRenderTargetCube,c;a?(c=ha.get(a),c=b?c.__webglFramebuffer[a.activeCubeFace]:c.__webglFramebuffer,ka.copy(a.scissor),V=a.scissorTest,R.copy(a.viewport)):(c=null,ka.copy(fa).multiplyScalar(M),V=oa,R.copy(la).multiplyScalar(M)); +P!==c&&(A.bindFramebuffer(A.FRAMEBUFFER,c),P=c);ea.scissor(ka);ea.setScissorTest(V);ea.viewport(R);b&&(b=ha.get(a.texture),A.framebufferTexture2D(A.FRAMEBUFFER,A.COLOR_ATTACHMENT0,A.TEXTURE_CUBE_MAP_POSITIVE_X+a.activeCubeFace,b.__webglTexture,a.activeMipMapLevel))};this.readRenderTargetPixels=function(a,b,c,d,e,f){if(!1===(a&&a.isWebGLRenderTarget))console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.");else{var g=ha.get(a).__webglFramebuffer;if(g){var h= +!1;g!==P&&(A.bindFramebuffer(A.FRAMEBUFFER,g),h=!0);try{var m=a.texture,k=m.format,r=m.type;1023!==k&&y(k)!==A.getParameter(A.IMPLEMENTATION_COLOR_READ_FORMAT)?console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format."):1009===r||y(r)===A.getParameter(A.IMPLEMENTATION_COLOR_READ_TYPE)||1015===r&&(ma.get("OES_texture_float")||ma.get("WEBGL_color_buffer_float"))||1016===r&&ma.get("EXT_color_buffer_half_float")?A.checkFramebufferStatus(A.FRAMEBUFFER)=== +A.FRAMEBUFFER_COMPLETE?0<=b&&b<=a.width-d&&0<=c&&c<=a.height-e&&A.readPixels(b,c,d,e,y(k),y(r),f):console.error("THREE.WebGLRenderer.readRenderTargetPixels: readPixels from renderTarget failed. Framebuffer not complete."):console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.")}finally{h&&A.bindFramebuffer(A.FRAMEBUFFER,P)}}}}}function Gb(a,b){this.name="";this.color=new L(a);this.density=void 0!==b?b:2.5E-4}function Hb(a, +b,c){this.name="";this.color=new L(a);this.near=void 0!==b?b:1;this.far=void 0!==c?c:1E3}function id(){B.call(this);this.type="Scene";this.overrideMaterial=this.fog=this.background=null;this.autoUpdate=!0}function Xd(a,b,c,d,e){B.call(this);this.lensFlares=[];this.positionScreen=new p;this.customUpdateCallback=void 0;void 0!==a&&this.add(a,b,c,d,e)}function bb(a){K.call(this);this.type="SpriteMaterial";this.color=new L(16777215);this.map=null;this.rotation=0;this.lights=this.fog=!1;this.setValues(a)} +function wc(a){B.call(this);this.type="Sprite";this.material=void 0!==a?a:new bb}function xc(){B.call(this);this.type="LOD";Object.defineProperties(this,{levels:{enumerable:!0,value:[]}})}function yc(a,b){a=a||[];this.bones=a.slice(0);this.boneMatrices=new Float32Array(16*this.bones.length);if(void 0===b)this.calculateInverses();else if(this.bones.length===b.length)this.boneInverses=b.slice(0);else{console.warn("THREE.Skeleton boneInverses is the wrong length.");this.boneInverses=[];for(var c=0,d= +this.bones.length;c=a.HAVE_CURRENT_DATA&&(r.needsUpdate=!0)}ca.call(this, +a,b,c,d,e,f,g,h,k);this.generateMipmaps=!1;var r=this;m()}function Jb(a,b,c,d,e,f,g,h,k,m,r,q){ca.call(this,null,f,g,h,k,m,d,e,r,q);this.image={width:b,height:c};this.mipmaps=a;this.generateMipmaps=this.flipY=!1}function nd(a,b,c,d,e,f,g,h,k){ca.call(this,a,b,c,d,e,f,g,h,k);this.needsUpdate=!0}function Ac(a,b,c,d,e,f,g,h,k,m){m=void 0!==m?m:1026;if(1026!==m&&1027!==m)throw Error("DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat");void 0===c&&1026===m&&(c=1012);void 0=== +c&&1027===m&&(c=1020);ca.call(this,null,d,e,f,g,h,m,c,k);this.image={width:a,height:b};this.magFilter=void 0!==g?g:1003;this.minFilter=void 0!==h?h:1003;this.generateMipmaps=this.flipY=!1}function Kb(a){function b(a,b){return a-b}H.call(this);this.type="WireframeGeometry";var c=[],d,e,f,g,h=[0,0],k={},m,r=["a","b","c"];if(a&&a.isGeometry){var q=a.faces;d=0;for(f=q.length;de;e++)h[0]=n[r[e]],h[1]=n[r[(e+1)%3]],h.sort(b),m=h.toString(),void 0===k[m]&&(k[m]={index1:h[0], +index2:h[1]})}for(m in k)d=k[m],r=a.vertices[d.index1],c.push(r.x,r.y,r.z),r=a.vertices[d.index2],c.push(r.x,r.y,r.z)}else if(a&&a.isBufferGeometry){var l,r=new p;if(null!==a.index){q=a.attributes.position;n=a.index;l=a.groups;0===l.length&&(l=[{start:0,count:n.count,materialIndex:0}]);a=0;for(g=l.length;ae;e++)h[0]=n.getX(d+e),h[1]=n.getX(d+(e+1)%3),h.sort(b),m=h.toString(),void 0===k[m]&&(k[m]={index1:h[0],index2:h[1]});for(m in k)d= +k[m],r.fromBufferAttribute(q,d.index1),c.push(r.x,r.y,r.z),r.fromBufferAttribute(q,d.index2),c.push(r.x,r.y,r.z)}else for(q=a.attributes.position,d=0,f=q.count/3;de;e++)k=3*d+e,r.fromBufferAttribute(q,k),c.push(r.x,r.y,r.z),k=3*d+(e+1)%3,r.fromBufferAttribute(q,k),c.push(r.x,r.y,r.z)}this.addAttribute("position",new E(c,3))}function Bc(a,b,c){P.call(this);this.type="ParametricGeometry";this.parameters={func:a,slices:b,stacks:c};this.fromBufferGeometry(new Lb(a,b,c));this.mergeVertices()} +function Lb(a,b,c){H.call(this);this.type="ParametricBufferGeometry";this.parameters={func:a,slices:b,stacks:c};var d=[],e=[],f=[],g,h,k=b+1;for(g=0;g<=c;g++){var m=g/c;for(h=0;h<=b;h++){var r=h/b,q=a(r,m);e.push(q.x,q.y,q.z);f.push(r,m)}}for(g=0;gd&&1===a.x&&(k[b]=a.x-1);0===c.x&&0===c.z&&(k[b]=d/2/Math.PI+.5)}H.call(this);this.type="PolyhedronBufferGeometry";this.parameters={vertices:a,indices:b,radius:c,detail:d};c=c||1;var h=[],k=[];(function(a){for(var c=new p,d=new p, +g=new p,h=0;he&&(.2>b&&(k[a+0]+=1),.2>c&&(k[a+2]+=1),.2>d&&(k[a+4]+=1))})();this.addAttribute("position",new E(h,3));this.addAttribute("normal",new E(h.slice(),3));this.addAttribute("uv",new E(k,2));this.normalizeNormals()}function Dc(a,b){P.call(this);this.type="TetrahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Mb(a,b)); +this.mergeVertices()}function Mb(a,b){na.call(this,[1,1,1,-1,-1,1,-1,1,-1,1,-1,-1],[2,1,0,0,3,2,1,3,0,2,3,1],a,b);this.type="TetrahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Ec(a,b){P.call(this);this.type="OctahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new kb(a,b));this.mergeVertices()}function kb(a,b){na.call(this,[1,0,0,-1,0,0,0,1,0,0,-1,0,0,0,1,0,0,-1],[0,2,4,0,4,3,0,3,5,0,5,2,1,2,5,1,5,3,1,3,4,1,4,2],a,b);this.type="OctahedronBufferGeometry"; +this.parameters={radius:a,detail:b}}function Fc(a,b){P.call(this);this.type="IcosahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Nb(a,b));this.mergeVertices()}function Nb(a,b){var c=(1+Math.sqrt(5))/2;na.call(this,[-1,c,0,1,c,0,-1,-c,0,1,-c,0,0,-1,c,0,1,c,0,-1,-c,0,1,-c,c,0,-1,c,0,1,-c,0,-1,-c,0,1],[0,11,5,0,5,1,0,1,7,0,7,10,0,10,11,1,5,9,5,11,4,11,10,2,10,7,6,7,1,8,3,9,4,3,4,2,3,2,6,3,6,8,3,8,9,4,9,5,2,4,11,6,2,10,8,6,7,9,8,1],a,b);this.type="IcosahedronBufferGeometry"; +this.parameters={radius:a,detail:b}}function Gc(a,b){P.call(this);this.type="DodecahedronGeometry";this.parameters={radius:a,detail:b};this.fromBufferGeometry(new Ob(a,b));this.mergeVertices()}function Ob(a,b){var c=(1+Math.sqrt(5))/2,d=1/c;na.call(this,[-1,-1,-1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,-1,1,-1,1,1,1,-1,1,1,1,0,-d,-c,0,-d,c,0,d,-c,0,d,c,-d,-c,0,-d,c,0,d,-c,0,d,c,0,-c,0,-d,c,0,-d,-c,0,d,c,0,d],[3,11,7,3,7,15,3,15,13,7,19,17,7,17,6,7,6,15,17,4,8,17,8,10,17,10,6,8,0,16,8,16,2,8,2,10,0,12,1,0,1,18, +0,18,16,6,10,2,6,2,13,6,13,15,2,16,18,2,18,3,2,3,13,18,1,9,18,9,11,18,11,3,4,14,12,4,12,0,4,0,8,11,9,5,11,5,19,11,19,7,19,5,14,19,14,4,19,4,17,1,12,14,1,14,5,1,5,9],a,b);this.type="DodecahedronBufferGeometry";this.parameters={radius:a,detail:b}}function Hc(a,b,c,d,e,f){P.call(this);this.type="TubeGeometry";this.parameters={path:a,tubularSegments:b,radius:c,radialSegments:d,closed:e};void 0!==f&&console.warn("THREE.TubeGeometry: taper has been removed.");a=new Pb(a,b,c,d,e);this.tangents=a.tangents; +this.normals=a.normals;this.binormals=a.binormals;this.fromBufferGeometry(a);this.mergeVertices()}function Pb(a,b,c,d,e){function f(e){var f=a.getPointAt(e/b),m=g.normals[e];e=g.binormals[e];for(q=0;q<=d;q++){var r=q/d*Math.PI*2,t=Math.sin(r),r=-Math.cos(r);k.x=r*m.x+t*e.x;k.y=r*m.y+t*e.y;k.z=r*m.z+t*e.z;k.normalize();l.push(k.x,k.y,k.z);h.x=f.x+c*k.x;h.y=f.y+c*k.y;h.z=f.z+c*k.z;n.push(h.x,h.y,h.z)}}H.call(this);this.type="TubeBufferGeometry";this.parameters={path:a,tubularSegments:b,radius:c,radialSegments:d, +closed:e};b=b||64;c=c||1;d=d||8;e=e||!1;var g=a.computeFrenetFrames(b,e);this.tangents=g.tangents;this.normals=g.normals;this.binormals=g.binormals;var h=new p,k=new p,m=new D,r,q,n=[],l=[],y=[],t=[];for(r=0;ry;y++)f[0]=u[k[y]],f[1]=u[k[(y+1)%3]],f.sort(c),h=f.toString(),void 0===g[h]?g[h]= +{index1:f[0],index2:f[1],face1:l,face2:void 0}:g[h].face2=l;for(h in g)if(f=g[h],void 0===f.face2||m[f.face1].normal.dot(m[f.face2].normal)<=e)k=r[f.index1],d.push(k.x,k.y,k.z),k=r[f.index2],d.push(k.x,k.y,k.z);this.addAttribute("position",new E(d,3))}function mb(a,b,c,d,e,f,g,h){P.call(this);this.type="CylinderGeometry";this.parameters={radiusTop:a,radiusBottom:b,height:c,radialSegments:d,heightSegments:e,openEnded:f,thetaStart:g,thetaLength:h};this.fromBufferGeometry(new Ua(a,b,c,d,e,f,g,h));this.mergeVertices()} +function Ua(a,b,c,d,e,f,g,h){function k(c){var e,f,k,t=new D,F=new p,G=0,aa=!0===c?a:b,ba=!0===c?1:-1;f=y;for(e=1;e<=d;e++)l.push(0,z*ba,0),n.push(0,ba,0),u.push(.5,.5),y++;k=y;for(e=0;e<=d;e++){var B=e/d*h+g,I=Math.cos(B),B=Math.sin(B);F.x=aa*B;F.y=z*ba;F.z=aa*I;l.push(F.x,F.y,F.z);n.push(0,ba,0);t.x=.5*I+.5;t.y=.5*B*ba+.5;u.push(t.x,t.y);y++}for(e=0;ethis.duration&&this.resetDuration();this.optimize()}function Dd(a){this.manager=void 0!==a?a:za;this.textures={}}function ae(a){this.manager=void 0!==a?a:za}function cc(){this.onLoadStart=function(){};this.onLoadProgress=function(){};this.onLoadComplete=function(){}}function be(a){"boolean"===typeof a&&(console.warn("THREE.JSONLoader: showStatus parameter has been removed from constructor."),a=void 0);this.manager=void 0!== +a?a:za;this.withCredentials=!1}function Pe(a){this.manager=void 0!==a?a:za;this.texturePath=""}function Qe(a,b,c,d,e){b=.5*(d-b);e=.5*(e-c);var f=a*a;return(2*c-2*d+b+e)*a*f+(-3*c+3*d-2*b-e)*f+b*a+c}function vb(a,b,c,d){var e=1-a;return e*e*b+2*(1-a)*a*c+a*a*d}function wb(a,b,c,d,e){var f=1-a,g=1-a;return f*f*f*b+3*g*g*a*c+3*(1-a)*a*a*d+a*a*a*e}function ha(){}function Qa(a,b){this.v1=a;this.v2=b}function Uc(){this.curves=[];this.autoClose=!1}function Va(a,b,c,d,e,f,g,h){this.aX=a;this.aY=b;this.xRadius= +c;this.yRadius=d;this.aStartAngle=e;this.aEndAngle=f;this.aClockwise=g;this.aRotation=h||0}function xb(a){this.points=void 0===a?[]:a}function dc(a,b,c,d){this.v0=a;this.v1=b;this.v2=c;this.v3=d}function ec(a,b,c){this.v0=a;this.v1=b;this.v2=c}function Vc(a){Uc.call(this);this.currentPoint=new D;a&&this.fromPoints(a)}function yb(){Vc.apply(this,arguments);this.holes=[]}function ce(){this.subPaths=[];this.currentPath=null}function de(a){this.data=a}function Re(a){this.manager=void 0!==a?a:za}function ee(a){this.manager= +void 0!==a?a:za}function Se(){this.type="StereoCamera";this.aspect=1;this.eyeSep=.064;this.cameraL=new xa;this.cameraL.layers.enable(1);this.cameraL.matrixAutoUpdate=!1;this.cameraR=new xa;this.cameraR.layers.enable(2);this.cameraR.matrixAutoUpdate=!1}function Ed(a,b,c){B.call(this);this.type="CubeCamera";var d=new xa(90,1,a,b);d.up.set(0,-1,0);d.lookAt(new p(1,0,0));this.add(d);var e=new xa(90,1,a,b);e.up.set(0,-1,0);e.lookAt(new p(-1,0,0));this.add(e);var f=new xa(90,1,a,b);f.up.set(0,0,1);f.lookAt(new p(0, +1,0));this.add(f);var g=new xa(90,1,a,b);g.up.set(0,0,-1);g.lookAt(new p(0,-1,0));this.add(g);var h=new xa(90,1,a,b);h.up.set(0,-1,0);h.lookAt(new p(0,0,1));this.add(h);var k=new xa(90,1,a,b);k.up.set(0,-1,0);k.lookAt(new p(0,0,-1));this.add(k);this.renderTarget=new Bb(c,c,{format:1022,magFilter:1006,minFilter:1006});this.renderTarget.texture.name="CubeCamera";this.updateCubeMap=function(a,b){null===this.parent&&this.updateMatrixWorld();var c=this.renderTarget,n=c.texture.generateMipmaps;c.texture.generateMipmaps= +!1;c.activeCubeFace=0;a.render(b,d,c);c.activeCubeFace=1;a.render(b,e,c);c.activeCubeFace=2;a.render(b,f,c);c.activeCubeFace=3;a.render(b,g,c);c.activeCubeFace=4;a.render(b,h,c);c.texture.generateMipmaps=n;c.activeCubeFace=5;a.render(b,k,c);a.setRenderTarget(null)}}function fe(a){xa.call(this);this.enabled=!1;this.cameras=a||[]}function ge(){B.call(this);this.type="AudioListener";this.context=he.getContext();this.gain=this.context.createGain();this.gain.connect(this.context.destination);this.filter= +null}function fc(a){B.call(this);this.type="Audio";this.context=a.context;this.gain=this.context.createGain();this.gain.connect(a.getInput());this.autoplay=!1;this.buffer=null;this.loop=!1;this.startTime=0;this.playbackRate=1;this.isPlaying=!1;this.hasPlaybackControl=!0;this.sourceType="empty";this.filters=[]}function ie(a){fc.call(this,a);this.panner=this.context.createPanner();this.panner.connect(this.gain)}function je(a,b){this.analyser=a.context.createAnalyser();this.analyser.fftSize=void 0!== +b?b:2048;this.data=new Uint8Array(this.analyser.frequencyBinCount);a.getOutput().connect(this.analyser)}function ke(a,b,c){this.binding=a;this.valueSize=c;a=Float64Array;switch(b){case "quaternion":b=this._slerp;break;case "string":case "bool":a=Array;b=this._select;break;default:b=this._lerp}this.buffer=new a(4*c);this._mixBufferRegion=b;this.referenceCount=this.useCount=this.cumulativeWeight=0}function Te(a,b,c){c=c||ia.parseTrackName(b);this._targetGroup=a;this._bindings=a.subscribe_(b,c)}function ia(a, +b,c){this.path=b;this.parsedPath=c||ia.parseTrackName(b);this.node=ia.findNode(a,this.parsedPath.nodeName)||a;this.rootNode=a}function Ue(a){this.uuid=Y.generateUUID();this._objects=Array.prototype.slice.call(arguments);this.nCachedObjects_=0;var b={};this._indicesByUUID=b;for(var c=0,d=arguments.length;c!==d;++c)b[arguments[c].uuid]=c;this._paths=[];this._parsedPaths=[];this._bindings=[];this._bindingsIndicesByPath={};var e=this;this.stats={objects:{get total(){return e._objects.length},get inUse(){return this.total- +e.nCachedObjects_}},get bindingsPerObject(){return e._bindings.length}}}function Ve(a,b,c){this._mixer=a;this._clip=b;this._localRoot=c||null;a=b.tracks;b=a.length;c=Array(b);for(var d={endingStart:2400,endingEnd:2400},e=0;e!==b;++e){var f=a[e].createInterpolant(null);c[e]=f;f.settings=d}this._interpolantSettings=d;this._interpolants=c;this._propertyBindings=Array(b);this._weightInterpolant=this._timeScaleInterpolant=this._byClipCacheIndex=this._cacheIndex=null;this.loop=2201;this._loopCount=-1;this._startTime= +null;this.time=0;this._effectiveWeight=this.weight=this._effectiveTimeScale=this.timeScale=1;this.repetitions=Infinity;this.paused=!1;this.enabled=!0;this.clampWhenFinished=!1;this.zeroSlopeAtEnd=this.zeroSlopeAtStart=!0}function We(a){this._root=a;this._initMemoryManager();this.time=this._accuIndex=0;this.timeScale=1}function Fd(a,b){"string"===typeof a&&(console.warn("THREE.Uniform: Type parameter is no longer needed."),a=b);this.value=a}function le(){H.call(this);this.type="InstancedBufferGeometry"; +this.maxInstancedCount=void 0}function me(a,b,c,d){this.uuid=Y.generateUUID();this.data=a;this.itemSize=b;this.offset=c;this.normalized=!0===d}function gc(a,b){this.uuid=Y.generateUUID();this.array=a;this.stride=b;this.count=void 0!==a?a.length/b:0;this.dynamic=!1;this.updateRange={offset:0,count:-1};this.onUploadCallback=function(){};this.version=0}function ne(a,b,c){gc.call(this,a,b);this.meshPerAttribute=c||1}function oe(a,b,c){Z.call(this,a,b);this.meshPerAttribute=c||1}function Xe(a,b,c,d){this.ray= +new fb(a,b);this.near=c||0;this.far=d||Infinity;this.params={Mesh:{},Line:{},LOD:{},Points:{threshold:1},Sprite:{}};Object.defineProperties(this.params,{PointCloud:{get:function(){console.warn("THREE.Raycaster: params.PointCloud has been renamed to params.Points.");return this.Points}}})}function Ye(a,b){return a.distance-b.distance}function pe(a,b,c,d){if(!1!==a.visible&&(a.raycast(b,c),!0===d)){a=a.children;d=0;for(var e=a.length;dc;c++,d++){var e=c/32*Math.PI*2,f=d/32*Math.PI*2;b.push(Math.cos(e),Math.sin(e),1,Math.cos(f),Math.sin(f),1)}a.addAttribute("position",new E(b,3));b=new oa({fog:!1});this.cone=new X(a,b);this.add(this.cone);this.update()}function ic(a){this.bones=this.getBoneList(a);for(var b=new H,c=[],d=[],e=new L(0,0,1),f=new L(0,1,0),g=0;ga?-1:0e;e++)8===e||13===e||18===e||23===e?b[e]="-":14===e?b[e]="4":(2>=c&&(c=33554432+16777216*Math.random()|0),d=c&15,c>>=4,b[e]=a[19===e?d& 3|8:d]);return b.join("")}}(),clamp:function(a,b,c){return Math.max(b,Math.min(c,a))},euclideanModulo:function(a,b){return(a%b+b)%b},mapLinear:function(a,b,c,d,e){return d+(a-b)*(e-d)/(c-b)},lerp:function(a,b,c){return(1-c)*a+c*b},smoothstep:function(a,b,c){if(a<=b)return 0;if(a>=c)return 1;a=(a-b)/(c-b);return a*a*(3-2*a)},smootherstep:function(a,b,c){if(a<=b)return 0;if(a>=c)return 1;a=(a-b)/(c-b);return a*a*a*(a*(6*a-15)+10)},randInt:function(a,b){return a+Math.floor(Math.random()*(b-a+1))},randFloat:function(a, -b){return a+Math.random()*(b-a)},randFloatSpread:function(a){return a*(.5-Math.random())},degToRad:function(a){return a*Y.DEG2RAD},radToDeg:function(a){return a*Y.RAD2DEG},isPowerOfTwo:function(a){return 0===(a&a-1)&&0!==a},nearestPowerOfTwo:function(a){return Math.pow(2,Math.round(Math.log(a)/Math.LN2))},nextPowerOfTwo:function(a){a--;a|=a>>1;a|=a>>2;a|=a>>4;a|=a>>8;a|=a>>16;a++;return a}};Object.defineProperties(F.prototype,{width:{get:function(){return this.x},set:function(a){this.x=a}},height:{get:function(){return this.y}, -set:function(a){this.y=a}}});Object.assign(F.prototype,{isVector2:!0,set:function(a,b){this.x=a;this.y=b;return this},setScalar:function(a){this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;default:throw Error("index is out of range: "+ +b){return a+Math.random()*(b-a)},randFloatSpread:function(a){return a*(.5-Math.random())},degToRad:function(a){return a*Y.DEG2RAD},radToDeg:function(a){return a*Y.RAD2DEG},isPowerOfTwo:function(a){return 0===(a&a-1)&&0!==a},nearestPowerOfTwo:function(a){return Math.pow(2,Math.round(Math.log(a)/Math.LN2))},nextPowerOfTwo:function(a){a--;a|=a>>1;a|=a>>2;a|=a>>4;a|=a>>8;a|=a>>16;a++;return a}};Object.defineProperties(D.prototype,{width:{get:function(){return this.x},set:function(a){this.x=a}},height:{get:function(){return this.y}, +set:function(a){this.y=a}}});Object.assign(D.prototype,{isVector2:!0,set:function(a,b){this.x=a;this.y=b;return this},setScalar:function(a){this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;default:throw Error("index is out of range: "+ a);}},clone:function(){return new this.constructor(this.x,this.y)},copy:function(a){this.x=a.x;this.y=a.y;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector2: .add() now only accepts one argument. Use .addVectors( a, b ) instead."),this.addVectors(a,b);this.x+=a.x;this.y+=a.y;return this},addScalar:function(a){this.x+=a;this.y+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;return this}, sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector2: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;return this},subScalar:function(a){this.x-=a;this.y-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;return this},multiply:function(a){this.x*=a.x;this.y*=a.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},divide:function(a){this.x/=a.x;this.y/=a.y;return this},divideScalar:function(a){return this.multiplyScalar(1/ -a)},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));return this},clampScalar:function(){var a=new F,b=new F;return function(c,d){a.set(c,c);b.set(d,d);return this.clamp(a,b)}}(),clampLength:function(a,b){var c=this.length();return this.multiplyScalar(Math.max(a,Math.min(b,c))/ +a)},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));return this},clampScalar:function(){var a=new D,b=new D;return function(c,d){a.set(c,c);b.set(d,d);return this.clamp(a,b)}}(),clampLength:function(a,b){var c=this.length();return this.multiplyScalar(Math.max(a,Math.min(b,c))/ c)},floor:function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);return this},ceil:function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);return this},round:function(){this.x=Math.round(this.x);this.y=Math.round(this.y);return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x);this.y=0>this.y?Math.ceil(this.y):Math.floor(this.y);return this},negate:function(){this.x=-this.x;this.y=-this.y;return this},dot:function(a){return this.x*a.x+this.y*a.y},lengthSq:function(){return this.x* this.x+this.y*this.y},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},lengthManhattan:function(){return Math.abs(this.x)+Math.abs(this.y)},normalize:function(){return this.divideScalar(this.length())},angle:function(){var a=Math.atan2(this.y,this.x);0>a&&(a+=2*Math.PI);return a},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(a){var b=this.x-a.x;a=this.y-a.y;return b*b+a*a},distanceToManhattan:function(a){return Math.abs(this.x-a.x)+ Math.abs(this.y-a.y)},setLength:function(a){return this.multiplyScalar(a/this.length())},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;return this},lerpVectors:function(a,b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)},equals:function(a){return a.x===this.x&&a.y===this.y},fromArray:function(a,b){void 0===b&&(b=0);this.x=a[b];this.y=a[b+1];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;return a},fromBufferAttribute:function(a, -b,c){void 0!==c&&console.warn("THREE.Vector2: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b);return this},rotateAround:function(a,b){var c=Math.cos(b),d=Math.sin(b),e=this.x-a.x,f=this.y-a.y;this.x=e*c-f*d+a.x;this.y=e*d+f*c+a.y;return this}});var cf=0;Z.DEFAULT_IMAGE=void 0;Z.DEFAULT_MAPPING=300;Object.defineProperty(Z.prototype,"needsUpdate",{set:function(a){!0===a&&this.version++}});Object.assign(Z.prototype,Aa.prototype,{constructor:Z,isTexture:!0,clone:function(){return(new this.constructor).copy(this)}, -copy:function(a){this.name=a.name;this.image=a.image;this.mipmaps=a.mipmaps.slice(0);this.mapping=a.mapping;this.wrapS=a.wrapS;this.wrapT=a.wrapT;this.magFilter=a.magFilter;this.minFilter=a.minFilter;this.anisotropy=a.anisotropy;this.format=a.format;this.type=a.type;this.offset.copy(a.offset);this.repeat.copy(a.repeat);this.generateMipmaps=a.generateMipmaps;this.premultiplyAlpha=a.premultiplyAlpha;this.flipY=a.flipY;this.unpackAlignment=a.unpackAlignment;this.encoding=a.encoding;return this},toJSON:function(a){if(void 0!== -a.textures[this.uuid])return a.textures[this.uuid];var b={metadata:{version:4.4,type:"Texture",generator:"Texture.toJSON"},uuid:this.uuid,name:this.name,mapping:this.mapping,repeat:[this.repeat.x,this.repeat.y],offset:[this.offset.x,this.offset.y],wrap:[this.wrapS,this.wrapT],minFilter:this.minFilter,magFilter:this.magFilter,anisotropy:this.anisotropy,flipY:this.flipY};if(void 0!==this.image){var c=this.image;void 0===c.uuid&&(c.uuid=Y.generateUUID());if(void 0===a.images[c.uuid]){var d=a.images, -e=c.uuid,f=c.uuid,g;void 0!==c.toDataURL?g=c:(g=document.createElementNS("http://www.w3.org/1999/xhtml","canvas"),g.width=c.width,g.height=c.height,g.getContext("2d").drawImage(c,0,0,c.width,c.height));g=2048 -a.x||1a.x?0:1;break;case 1002:a.x=1===Math.abs(Math.floor(a.x)%2)?Math.ceil(a.x)-a.x:a.x-Math.floor(a.x)}if(0>a.y||1a.y?0:1;break;case 1002:a.y=1===Math.abs(Math.floor(a.y)%2)?Math.ceil(a.y)-a.y:a.y-Math.floor(a.y)}this.flipY&&(a.y=1-a.y)}}});Object.assign(ia.prototype,{isVector4:!0,set:function(a,b,c,d){this.x=a;this.y=b;this.z=c;this.w=d;return this}, -setScalar:function(a){this.w=this.z=this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setZ:function(a){this.z=a;return this},setW:function(a){this.w=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;case 2:this.z=b;break;case 3:this.w=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;case 2:return this.z; -case 3:return this.w;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x,this.y,this.z,this.w)},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;this.w=void 0!==a.w?a.w:1;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector4: .add() now only accepts one argument. Use .addVectors( a, b ) instead."),this.addVectors(a,b);this.x+=a.x;this.y+=a.y;this.z+=a.z;this.w+=a.w;return this},addScalar:function(a){this.x+=a;this.y+=a; -this.z+=a;this.w+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;this.w=a.w+b.w;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;this.z+=a.z*b;this.w+=a.w*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector4: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;this.z-=a.z;this.w-=a.w;return this},subScalar:function(a){this.x-=a;this.y-=a;this.z-= -a;this.w-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;this.w=a.w-b.w;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;this.w*=a;return this},applyMatrix4:function(a){var b=this.x,c=this.y,d=this.z,e=this.w;a=a.elements;this.x=a[0]*b+a[4]*c+a[8]*d+a[12]*e;this.y=a[1]*b+a[5]*c+a[9]*d+a[13]*e;this.z=a[2]*b+a[6]*c+a[10]*d+a[14]*e;this.w=a[3]*b+a[7]*c+a[11]*d+a[15]*e;return this},divideScalar:function(a){return this.multiplyScalar(1/a)},setAxisAngleFromQuaternion:function(a){this.w= -2*Math.acos(a.w);var b=Math.sqrt(1-a.w*a.w);1E-4>b?(this.x=1,this.z=this.y=0):(this.x=a.x/b,this.y=a.y/b,this.z=a.z/b);return this},setAxisAngleFromRotationMatrix:function(a){var b,c,d;a=a.elements;var e=a[0];d=a[4];var f=a[8],g=a[1],h=a[5],k=a[9];c=a[2];b=a[6];var m=a[10];if(.01>Math.abs(d-g)&&.01>Math.abs(f-c)&&.01>Math.abs(k-b)){if(.1>Math.abs(d+g)&&.1>Math.abs(f+c)&&.1>Math.abs(k+b)&&.1>Math.abs(e+h+m-3))return this.set(1,0,0,0),this;a=Math.PI;e=(e+1)/2;h=(h+1)/2;m=(m+1)/2;d=(d+g)/4;f=(f+c)/4; -k=(k+b)/4;e>h&&e>m?.01>e?(b=0,d=c=.707106781):(b=Math.sqrt(e),c=d/b,d=f/b):h>m?.01>h?(b=.707106781,c=0,d=.707106781):(c=Math.sqrt(h),b=d/c,d=k/c):.01>m?(c=b=.707106781,d=0):(d=Math.sqrt(m),b=f/d,c=k/d);this.set(b,c,d,a);return this}a=Math.sqrt((b-k)*(b-k)+(f-c)*(f-c)+(g-d)*(g-d));.001>Math.abs(a)&&(a=1);this.x=(b-k)/a;this.y=(f-c)/a;this.z=(g-d)/a;this.w=Math.acos((e+h+m-1)/2);return this},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);this.z=Math.min(this.z,a.z);this.w=Math.min(this.w, -a.w);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);this.z=Math.max(this.z,a.z);this.w=Math.max(this.w,a.w);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));this.z=Math.max(a.z,Math.min(b.z,this.z));this.w=Math.max(a.w,Math.min(b.w,this.w));return this},clampScalar:function(){var a=new ia,b=new ia;return function(c,d){a.set(c,c,c,c);b.set(d,d,d,d);return this.clamp(a,b)}}(),floor:function(){this.x= -Math.floor(this.x);this.y=Math.floor(this.y);this.z=Math.floor(this.z);this.w=Math.floor(this.w);return this},ceil:function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);this.z=Math.ceil(this.z);this.w=Math.ceil(this.w);return this},round:function(){this.x=Math.round(this.x);this.y=Math.round(this.y);this.z=Math.round(this.z);this.w=Math.round(this.w);return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x);this.y=0>this.y?Math.ceil(this.y):Math.floor(this.y); -this.z=0>this.z?Math.ceil(this.z):Math.floor(this.z);this.w=0>this.w?Math.ceil(this.w):Math.floor(this.w);return this},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;this.w=-this.w;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z+this.w*a.w},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)},lengthManhattan:function(){return Math.abs(this.x)+ -Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)},normalize:function(){return this.divideScalar(this.length())},setLength:function(a){return this.multiplyScalar(a/this.length())},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;this.w+=(a.w-this.w)*b;return this},lerpVectors:function(a,b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)},equals:function(a){return a.x===this.x&&a.y===this.y&&a.z===this.z&&a.w===this.w},fromArray:function(a,b){void 0=== -b&&(b=0);this.x=a[b];this.y=a[b+1];this.z=a[b+2];this.w=a[b+3];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;a[b+2]=this.z;a[b+3]=this.w;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector4: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b);this.z=a.getZ(b);this.w=a.getW(b);return this}});Object.assign(Ab.prototype,Aa.prototype,{isWebGLRenderTarget:!0,setSize:function(a,b){if(this.width!== -a||this.height!==b)this.width=a,this.height=b,this.dispose();this.viewport.set(0,0,a,b);this.scissor.set(0,0,a,b)},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.width=a.width;this.height=a.height;this.viewport.copy(a.viewport);this.texture=a.texture.clone();this.depthBuffer=a.depthBuffer;this.stencilBuffer=a.stencilBuffer;this.depthTexture=a.depthTexture;return this},dispose:function(){this.dispatchEvent({type:"dispose"})}});Bb.prototype=Object.create(Ab.prototype); -Bb.prototype.constructor=Bb;Bb.prototype.isWebGLRenderTargetCube=!0;Object.assign(oa,{slerp:function(a,b,c,d){return c.copy(a).slerp(b,d)},slerpFlat:function(a,b,c,d,e,f,g){var h=c[d+0],k=c[d+1],m=c[d+2];c=c[d+3];d=e[f+0];var u=e[f+1],l=e[f+2];e=e[f+3];if(c!==e||h!==d||k!==u||m!==l){f=1-g;var n=h*d+k*u+m*l+c*e,r=0<=n?1:-1,p=1-n*n;p>Number.EPSILON&&(p=Math.sqrt(p),n=Math.atan2(p,n*r),f=Math.sin(f*n)/p,g=Math.sin(g*n)/p);r*=g;h=h*f+d*r;k=k*f+u*r;m=m*f+l*r;c=c*f+e*r;f===1-g&&(g=1/Math.sqrt(h*h+k*k+m* -m+c*c),h*=g,k*=g,m*=g,c*=g)}a[b]=h;a[b+1]=k;a[b+2]=m;a[b+3]=c}});Object.defineProperties(oa.prototype,{x:{get:function(){return this._x},set:function(a){this._x=a;this.onChangeCallback()}},y:{get:function(){return this._y},set:function(a){this._y=a;this.onChangeCallback()}},z:{get:function(){return this._z},set:function(a){this._z=a;this.onChangeCallback()}},w:{get:function(){return this._w},set:function(a){this._w=a;this.onChangeCallback()}}});Object.assign(oa.prototype,{set:function(a,b,c,d){this._x= -a;this._y=b;this._z=c;this._w=d;this.onChangeCallback();return this},clone:function(){return new this.constructor(this._x,this._y,this._z,this._w)},copy:function(a){this._x=a.x;this._y=a.y;this._z=a.z;this._w=a.w;this.onChangeCallback();return this},setFromEuler:function(a,b){if(!1===(a&&a.isEuler))throw Error("THREE.Quaternion: .setFromEuler() now expects an Euler rotation rather than a Vector3 and order.");var c=a._x,d=a._y,e=a._z,f=a.order,g=Math.cos,h=Math.sin,k=g(c/2),m=g(d/2),g=g(e/2),c=h(c/ -2),d=h(d/2),e=h(e/2);"XYZ"===f?(this._x=c*m*g+k*d*e,this._y=k*d*g-c*m*e,this._z=k*m*e+c*d*g,this._w=k*m*g-c*d*e):"YXZ"===f?(this._x=c*m*g+k*d*e,this._y=k*d*g-c*m*e,this._z=k*m*e-c*d*g,this._w=k*m*g+c*d*e):"ZXY"===f?(this._x=c*m*g-k*d*e,this._y=k*d*g+c*m*e,this._z=k*m*e+c*d*g,this._w=k*m*g-c*d*e):"ZYX"===f?(this._x=c*m*g-k*d*e,this._y=k*d*g+c*m*e,this._z=k*m*e-c*d*g,this._w=k*m*g+c*d*e):"YZX"===f?(this._x=c*m*g+k*d*e,this._y=k*d*g+c*m*e,this._z=k*m*e-c*d*g,this._w=k*m*g-c*d*e):"XZY"===f&&(this._x= -c*m*g-k*d*e,this._y=k*d*g-c*m*e,this._z=k*m*e+c*d*g,this._w=k*m*g+c*d*e);if(!1!==b)this.onChangeCallback();return this},setFromAxisAngle:function(a,b){var c=b/2,d=Math.sin(c);this._x=a.x*d;this._y=a.y*d;this._z=a.z*d;this._w=Math.cos(c);this.onChangeCallback();return this},setFromRotationMatrix:function(a){var b=a.elements,c=b[0];a=b[4];var d=b[8],e=b[1],f=b[5],g=b[9],h=b[2],k=b[6],b=b[10],m=c+f+b;0f&&c>b?(c= -2*Math.sqrt(1+c-f-b),this._w=(k-g)/c,this._x=.25*c,this._y=(a+e)/c,this._z=(d+h)/c):f>b?(c=2*Math.sqrt(1+f-c-b),this._w=(d-h)/c,this._x=(a+e)/c,this._y=.25*c,this._z=(g+k)/c):(c=2*Math.sqrt(1+b-c-f),this._w=(e-a)/c,this._x=(d+h)/c,this._y=(g+k)/c,this._z=.25*c);this.onChangeCallback();return this},setFromUnitVectors:function(){var a=new p,b;return function(c,d){void 0===a&&(a=new p);b=c.dot(d)+1;1E-6>b?(b=0,Math.abs(c.x)>Math.abs(c.z)?a.set(-c.y,c.x,0):a.set(0,-c.z,c.y)):a.crossVectors(c,d);this._x= -a.x;this._y=a.y;this._z=a.z;this._w=b;return this.normalize()}}(),inverse:function(){return this.conjugate().normalize()},conjugate:function(){this._x*=-1;this._y*=-1;this._z*=-1;this.onChangeCallback();return this},dot:function(a){return this._x*a._x+this._y*a._y+this._z*a._z+this._w*a._w},lengthSq:function(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w},length:function(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)},normalize:function(){var a= -this.length();0===a?(this._z=this._y=this._x=0,this._w=1):(a=1/a,this._x*=a,this._y*=a,this._z*=a,this._w*=a);this.onChangeCallback();return this},multiply:function(a,b){return void 0!==b?(console.warn("THREE.Quaternion: .multiply() now only accepts one argument. Use .multiplyQuaternions( a, b ) instead."),this.multiplyQuaternions(a,b)):this.multiplyQuaternions(this,a)},premultiply:function(a){return this.multiplyQuaternions(a,this)},multiplyQuaternions:function(a,b){var c=a._x,d=a._y,e=a._z,f=a._w, -g=b._x,h=b._y,k=b._z,m=b._w;this._x=c*m+f*g+d*k-e*h;this._y=d*m+f*h+e*g-c*k;this._z=e*m+f*k+c*h-d*g;this._w=f*m-c*g-d*h-e*k;this.onChangeCallback();return this},slerp:function(a,b){if(0===b)return this;if(1===b)return this.copy(a);var c=this._x,d=this._y,e=this._z,f=this._w,g=f*a._w+c*a._x+d*a._y+e*a._z;0>g?(this._w=-a._w,this._x=-a._x,this._y=-a._y,this._z=-a._z,g=-g):this.copy(a);if(1<=g)return this._w=f,this._x=c,this._y=d,this._z=e,this;var h=Math.sqrt(1-g*g);if(.001>Math.abs(h))return this._w= -.5*(f+this._w),this._x=.5*(c+this._x),this._y=.5*(d+this._y),this._z=.5*(e+this._z),this;var k=Math.atan2(h,g),g=Math.sin((1-b)*k)/h,h=Math.sin(b*k)/h;this._w=f*g+this._w*h;this._x=c*g+this._x*h;this._y=d*g+this._y*h;this._z=e*g+this._z*h;this.onChangeCallback();return this},equals:function(a){return a._x===this._x&&a._y===this._y&&a._z===this._z&&a._w===this._w},fromArray:function(a,b){void 0===b&&(b=0);this._x=a[b];this._y=a[b+1];this._z=a[b+2];this._w=a[b+3];this.onChangeCallback();return this}, -toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this._x;a[b+1]=this._y;a[b+2]=this._z;a[b+3]=this._w;return a},onChange:function(a){this.onChangeCallback=a;return this},onChangeCallback:function(){}});Object.assign(p.prototype,{isVector3:!0,set:function(a,b,c){this.x=a;this.y=b;this.z=c;return this},setScalar:function(a){this.z=this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setZ:function(a){this.z=a;return this},setComponent:function(a, -b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;case 2:this.z=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x,this.y,this.z)},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .add() now only accepts one argument. Use .addVectors( a, b ) instead."), +b,c){void 0!==c&&console.warn("THREE.Vector2: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b);return this},rotateAround:function(a,b){var c=Math.cos(b),d=Math.sin(b),e=this.x-a.x,f=this.y-a.y;this.x=e*c-f*d+a.x;this.y=e*d+f*c+a.y;return this}});var df=0;ca.DEFAULT_IMAGE=void 0;ca.DEFAULT_MAPPING=300;Object.defineProperty(ca.prototype,"needsUpdate",{set:function(a){!0===a&&this.version++}});Object.assign(ca.prototype,qa.prototype,{constructor:ca,isTexture:!0, +clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.name=a.name;this.image=a.image;this.mipmaps=a.mipmaps.slice(0);this.mapping=a.mapping;this.wrapS=a.wrapS;this.wrapT=a.wrapT;this.magFilter=a.magFilter;this.minFilter=a.minFilter;this.anisotropy=a.anisotropy;this.format=a.format;this.type=a.type;this.offset.copy(a.offset);this.repeat.copy(a.repeat);this.generateMipmaps=a.generateMipmaps;this.premultiplyAlpha=a.premultiplyAlpha;this.flipY=a.flipY;this.unpackAlignment=a.unpackAlignment; +this.encoding=a.encoding;return this},toJSON:function(a){if(void 0!==a.textures[this.uuid])return a.textures[this.uuid];var b={metadata:{version:4.4,type:"Texture",generator:"Texture.toJSON"},uuid:this.uuid,name:this.name,mapping:this.mapping,repeat:[this.repeat.x,this.repeat.y],offset:[this.offset.x,this.offset.y],wrap:[this.wrapS,this.wrapT],minFilter:this.minFilter,magFilter:this.magFilter,anisotropy:this.anisotropy,flipY:this.flipY};if(void 0!==this.image){var c=this.image;void 0===c.uuid&&(c.uuid= +Y.generateUUID());if(void 0===a.images[c.uuid]){var d=a.images,e=c.uuid,f=c.uuid,g;void 0!==c.toDataURL?g=c:(g=document.createElementNS("http://www.w3.org/1999/xhtml","canvas"),g.width=c.width,g.height=c.height,g.getContext("2d").drawImage(c,0,0,c.width,c.height));g=2048a.x||1a.x?0:1;break;case 1002:a.x=1===Math.abs(Math.floor(a.x)%2)?Math.ceil(a.x)-a.x:a.x-Math.floor(a.x)}if(0>a.y||1a.y?0:1;break;case 1002:a.y=1===Math.abs(Math.floor(a.y)%2)?Math.ceil(a.y)-a.y:a.y-Math.floor(a.y)}this.flipY&&(a.y=1-a.y)}}});Object.assign(ga.prototype,{isVector4:!0,set:function(a, +b,c,d){this.x=a;this.y=b;this.z=c;this.w=d;return this},setScalar:function(a){this.w=this.z=this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setZ:function(a){this.z=a;return this},setW:function(a){this.w=a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;case 2:this.z=b;break;case 3:this.w=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x; +case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x,this.y,this.z,this.w)},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;this.w=void 0!==a.w?a.w:1;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector4: .add() now only accepts one argument. Use .addVectors( a, b ) instead."),this.addVectors(a,b);this.x+=a.x;this.y+=a.y;this.z+=a.z;this.w+=a.w;return this}, +addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;this.w+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;this.w=a.w+b.w;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;this.z+=a.z*b;this.w+=a.w*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector4: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;this.z-=a.z;this.w-=a.w;return this},subScalar:function(a){this.x-= +a;this.y-=a;this.z-=a;this.w-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;this.w=a.w-b.w;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;this.w*=a;return this},applyMatrix4:function(a){var b=this.x,c=this.y,d=this.z,e=this.w;a=a.elements;this.x=a[0]*b+a[4]*c+a[8]*d+a[12]*e;this.y=a[1]*b+a[5]*c+a[9]*d+a[13]*e;this.z=a[2]*b+a[6]*c+a[10]*d+a[14]*e;this.w=a[3]*b+a[7]*c+a[11]*d+a[15]*e;return this},divideScalar:function(a){return this.multiplyScalar(1/ +a)},setAxisAngleFromQuaternion:function(a){this.w=2*Math.acos(a.w);var b=Math.sqrt(1-a.w*a.w);1E-4>b?(this.x=1,this.z=this.y=0):(this.x=a.x/b,this.y=a.y/b,this.z=a.z/b);return this},setAxisAngleFromRotationMatrix:function(a){var b,c,d;a=a.elements;var e=a[0];d=a[4];var f=a[8],g=a[1],h=a[5],k=a[9];c=a[2];b=a[6];var m=a[10];if(.01>Math.abs(d-g)&&.01>Math.abs(f-c)&&.01>Math.abs(k-b)){if(.1>Math.abs(d+g)&&.1>Math.abs(f+c)&&.1>Math.abs(k+b)&&.1>Math.abs(e+h+m-3))return this.set(1,0,0,0),this;a=Math.PI; +e=(e+1)/2;h=(h+1)/2;m=(m+1)/2;d=(d+g)/4;f=(f+c)/4;k=(k+b)/4;e>h&&e>m?.01>e?(b=0,d=c=.707106781):(b=Math.sqrt(e),c=d/b,d=f/b):h>m?.01>h?(b=.707106781,c=0,d=.707106781):(c=Math.sqrt(h),b=d/c,d=k/c):.01>m?(c=b=.707106781,d=0):(d=Math.sqrt(m),b=f/d,c=k/d);this.set(b,c,d,a);return this}a=Math.sqrt((b-k)*(b-k)+(f-c)*(f-c)+(g-d)*(g-d));.001>Math.abs(a)&&(a=1);this.x=(b-k)/a;this.y=(f-c)/a;this.z=(g-d)/a;this.w=Math.acos((e+h+m-1)/2);return this},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y, +a.y);this.z=Math.min(this.z,a.z);this.w=Math.min(this.w,a.w);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);this.z=Math.max(this.z,a.z);this.w=Math.max(this.w,a.w);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));this.z=Math.max(a.z,Math.min(b.z,this.z));this.w=Math.max(a.w,Math.min(b.w,this.w));return this},clampScalar:function(){var a=new ga,b=new ga;return function(c,d){a.set(c,c,c,c);b.set(d, +d,d,d);return this.clamp(a,b)}}(),floor:function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);this.z=Math.floor(this.z);this.w=Math.floor(this.w);return this},ceil:function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);this.z=Math.ceil(this.z);this.w=Math.ceil(this.w);return this},round:function(){this.x=Math.round(this.x);this.y=Math.round(this.y);this.z=Math.round(this.z);this.w=Math.round(this.w);return this},roundToZero:function(){this.x=0>this.x?Math.ceil(this.x):Math.floor(this.x); +this.y=0>this.y?Math.ceil(this.y):Math.floor(this.y);this.z=0>this.z?Math.ceil(this.z):Math.floor(this.z);this.w=0>this.w?Math.ceil(this.w):Math.floor(this.w);return this},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;this.w=-this.w;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z+this.w*a.w},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)}, +lengthManhattan:function(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)},normalize:function(){return this.divideScalar(this.length())},setLength:function(a){return this.multiplyScalar(a/this.length())},lerp:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;this.w+=(a.w-this.w)*b;return this},lerpVectors:function(a,b,c){return this.subVectors(b,a).multiplyScalar(c).add(a)},equals:function(a){return a.x===this.x&&a.y===this.y&&a.z===this.z&& +a.w===this.w},fromArray:function(a,b){void 0===b&&(b=0);this.x=a[b];this.y=a[b+1];this.z=a[b+2];this.w=a[b+3];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;a[b+2]=this.z;a[b+3]=this.w;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector4: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b);this.z=a.getZ(b);this.w=a.getW(b);return this}});Object.assign(Ab.prototype,qa.prototype, +{isWebGLRenderTarget:!0,setSize:function(a,b){if(this.width!==a||this.height!==b)this.width=a,this.height=b,this.dispose();this.viewport.set(0,0,a,b);this.scissor.set(0,0,a,b)},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.width=a.width;this.height=a.height;this.viewport.copy(a.viewport);this.texture=a.texture.clone();this.depthBuffer=a.depthBuffer;this.stencilBuffer=a.stencilBuffer;this.depthTexture=a.depthTexture;return this},dispose:function(){this.dispatchEvent({type:"dispose"})}}); +Bb.prototype=Object.create(Ab.prototype);Bb.prototype.constructor=Bb;Bb.prototype.isWebGLRenderTargetCube=!0;Object.assign(la,{slerp:function(a,b,c,d){return c.copy(a).slerp(b,d)},slerpFlat:function(a,b,c,d,e,f,g){var h=c[d+0],k=c[d+1],m=c[d+2];c=c[d+3];d=e[f+0];var r=e[f+1],l=e[f+2];e=e[f+3];if(c!==e||h!==d||k!==r||m!==l){f=1-g;var n=h*d+k*r+m*l+c*e,u=0<=n?1:-1,y=1-n*n;y>Number.EPSILON&&(y=Math.sqrt(y),n=Math.atan2(y,n*u),f=Math.sin(f*n)/y,g=Math.sin(g*n)/y);u*=g;h=h*f+d*u;k=k*f+r*u;m=m*f+l*u;c= +c*f+e*u;f===1-g&&(g=1/Math.sqrt(h*h+k*k+m*m+c*c),h*=g,k*=g,m*=g,c*=g)}a[b]=h;a[b+1]=k;a[b+2]=m;a[b+3]=c}});Object.defineProperties(la.prototype,{x:{get:function(){return this._x},set:function(a){this._x=a;this.onChangeCallback()}},y:{get:function(){return this._y},set:function(a){this._y=a;this.onChangeCallback()}},z:{get:function(){return this._z},set:function(a){this._z=a;this.onChangeCallback()}},w:{get:function(){return this._w},set:function(a){this._w=a;this.onChangeCallback()}}});Object.assign(la.prototype, +{set:function(a,b,c,d){this._x=a;this._y=b;this._z=c;this._w=d;this.onChangeCallback();return this},clone:function(){return new this.constructor(this._x,this._y,this._z,this._w)},copy:function(a){this._x=a.x;this._y=a.y;this._z=a.z;this._w=a.w;this.onChangeCallback();return this},setFromEuler:function(a,b){if(!1===(a&&a.isEuler))throw Error("THREE.Quaternion: .setFromEuler() now expects an Euler rotation rather than a Vector3 and order.");var c=a._x,d=a._y,e=a._z,f=a.order,g=Math.cos,h=Math.sin,k= +g(c/2),m=g(d/2),g=g(e/2),c=h(c/2),d=h(d/2),e=h(e/2);"XYZ"===f?(this._x=c*m*g+k*d*e,this._y=k*d*g-c*m*e,this._z=k*m*e+c*d*g,this._w=k*m*g-c*d*e):"YXZ"===f?(this._x=c*m*g+k*d*e,this._y=k*d*g-c*m*e,this._z=k*m*e-c*d*g,this._w=k*m*g+c*d*e):"ZXY"===f?(this._x=c*m*g-k*d*e,this._y=k*d*g+c*m*e,this._z=k*m*e+c*d*g,this._w=k*m*g-c*d*e):"ZYX"===f?(this._x=c*m*g-k*d*e,this._y=k*d*g+c*m*e,this._z=k*m*e-c*d*g,this._w=k*m*g+c*d*e):"YZX"===f?(this._x=c*m*g+k*d*e,this._y=k*d*g+c*m*e,this._z=k*m*e-c*d*g,this._w=k* +m*g-c*d*e):"XZY"===f&&(this._x=c*m*g-k*d*e,this._y=k*d*g-c*m*e,this._z=k*m*e+c*d*g,this._w=k*m*g+c*d*e);if(!1!==b)this.onChangeCallback();return this},setFromAxisAngle:function(a,b){var c=b/2,d=Math.sin(c);this._x=a.x*d;this._y=a.y*d;this._z=a.z*d;this._w=Math.cos(c);this.onChangeCallback();return this},setFromRotationMatrix:function(a){var b=a.elements,c=b[0];a=b[4];var d=b[8],e=b[1],f=b[5],g=b[9],h=b[2],k=b[6],b=b[10],m=c+f+b;0f&&c>b?(c=2*Math.sqrt(1+c-f-b),this._w=(k-g)/c,this._x=.25*c,this._y=(a+e)/c,this._z=(d+h)/c):f>b?(c=2*Math.sqrt(1+f-c-b),this._w=(d-h)/c,this._x=(a+e)/c,this._y=.25*c,this._z=(g+k)/c):(c=2*Math.sqrt(1+b-c-f),this._w=(e-a)/c,this._x=(d+h)/c,this._y=(g+k)/c,this._z=.25*c);this.onChangeCallback();return this},setFromUnitVectors:function(){var a=new p,b;return function(c,d){void 0===a&&(a=new p);b=c.dot(d)+1;1E-6>b?(b=0,Math.abs(c.x)>Math.abs(c.z)?a.set(-c.y,c.x,0):a.set(0,-c.z, +c.y)):a.crossVectors(c,d);this._x=a.x;this._y=a.y;this._z=a.z;this._w=b;return this.normalize()}}(),inverse:function(){return this.conjugate().normalize()},conjugate:function(){this._x*=-1;this._y*=-1;this._z*=-1;this.onChangeCallback();return this},dot:function(a){return this._x*a._x+this._y*a._y+this._z*a._z+this._w*a._w},lengthSq:function(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w},length:function(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+ +this._w*this._w)},normalize:function(){var a=this.length();0===a?(this._z=this._y=this._x=0,this._w=1):(a=1/a,this._x*=a,this._y*=a,this._z*=a,this._w*=a);this.onChangeCallback();return this},multiply:function(a,b){return void 0!==b?(console.warn("THREE.Quaternion: .multiply() now only accepts one argument. Use .multiplyQuaternions( a, b ) instead."),this.multiplyQuaternions(a,b)):this.multiplyQuaternions(this,a)},premultiply:function(a){return this.multiplyQuaternions(a,this)},multiplyQuaternions:function(a, +b){var c=a._x,d=a._y,e=a._z,f=a._w,g=b._x,h=b._y,k=b._z,m=b._w;this._x=c*m+f*g+d*k-e*h;this._y=d*m+f*h+e*g-c*k;this._z=e*m+f*k+c*h-d*g;this._w=f*m-c*g-d*h-e*k;this.onChangeCallback();return this},slerp:function(a,b){if(0===b)return this;if(1===b)return this.copy(a);var c=this._x,d=this._y,e=this._z,f=this._w,g=f*a._w+c*a._x+d*a._y+e*a._z;0>g?(this._w=-a._w,this._x=-a._x,this._y=-a._y,this._z=-a._z,g=-g):this.copy(a);if(1<=g)return this._w=f,this._x=c,this._y=d,this._z=e,this;var h=Math.sqrt(1-g*g); +if(.001>Math.abs(h))return this._w=.5*(f+this._w),this._x=.5*(c+this._x),this._y=.5*(d+this._y),this._z=.5*(e+this._z),this;var k=Math.atan2(h,g),g=Math.sin((1-b)*k)/h,h=Math.sin(b*k)/h;this._w=f*g+this._w*h;this._x=c*g+this._x*h;this._y=d*g+this._y*h;this._z=e*g+this._z*h;this.onChangeCallback();return this},equals:function(a){return a._x===this._x&&a._y===this._y&&a._z===this._z&&a._w===this._w},fromArray:function(a,b){void 0===b&&(b=0);this._x=a[b];this._y=a[b+1];this._z=a[b+2];this._w=a[b+3]; +this.onChangeCallback();return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this._x;a[b+1]=this._y;a[b+2]=this._z;a[b+3]=this._w;return a},onChange:function(a){this.onChangeCallback=a;return this},onChangeCallback:function(){}});Object.assign(p.prototype,{isVector3:!0,set:function(a,b,c){this.x=a;this.y=b;this.z=c;return this},setScalar:function(a){this.z=this.y=this.x=a;return this},setX:function(a){this.x=a;return this},setY:function(a){this.y=a;return this},setZ:function(a){this.z= +a;return this},setComponent:function(a,b){switch(a){case 0:this.x=b;break;case 1:this.y=b;break;case 2:this.z=b;break;default:throw Error("index is out of range: "+a);}return this},getComponent:function(a){switch(a){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw Error("index is out of range: "+a);}},clone:function(){return new this.constructor(this.x,this.y,this.z)},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .add() now only accepts one argument. Use .addVectors( a, b ) instead."), this.addVectors(a,b);this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},addVectors:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;return this},addScaledVector:function(a,b){this.x+=a.x*b;this.y+=a.y*b;this.z+=a.z*b;return this},sub:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .sub() now only accepts one argument. Use .subVectors( a, b ) instead."),this.subVectors(a,b);this.x-=a.x;this.y-=a.y;this.z-=a.z; return this},subScalar:function(a){this.x-=a;this.y-=a;this.z-=a;return this},subVectors:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;return this},multiply:function(a,b){if(void 0!==b)return console.warn("THREE.Vector3: .multiply() now only accepts one argument. Use .multiplyVectors( a, b ) instead."),this.multiplyVectors(a,b);this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},multiplyVectors:function(a,b){this.x=a.x* -b.x;this.y=a.y*b.y;this.z=a.z*b.z;return this},applyEuler:function(){var a=new oa;return function(b){!1===(b&&b.isEuler)&&console.error("THREE.Vector3: .applyEuler() now expects an Euler rotation rather than a Vector3 and order.");return this.applyQuaternion(a.setFromEuler(b))}}(),applyAxisAngle:function(){var a=new oa;return function(b,c){return this.applyQuaternion(a.setFromAxisAngle(b,c))}}(),applyMatrix3:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;this.x=a[0]*b+a[3]*c+a[6]*d;this.y= +b.x;this.y=a.y*b.y;this.z=a.z*b.z;return this},applyEuler:function(){var a=new la;return function(b){!1===(b&&b.isEuler)&&console.error("THREE.Vector3: .applyEuler() now expects an Euler rotation rather than a Vector3 and order.");return this.applyQuaternion(a.setFromEuler(b))}}(),applyAxisAngle:function(){var a=new la;return function(b,c){return this.applyQuaternion(a.setFromAxisAngle(b,c))}}(),applyMatrix3:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;this.x=a[0]*b+a[3]*c+a[6]*d;this.y= a[1]*b+a[4]*c+a[7]*d;this.z=a[2]*b+a[5]*c+a[8]*d;return this},applyMatrix4:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;this.x=a[0]*b+a[4]*c+a[8]*d+a[12];this.y=a[1]*b+a[5]*c+a[9]*d+a[13];this.z=a[2]*b+a[6]*c+a[10]*d+a[14];return this.divideScalar(a[3]*b+a[7]*c+a[11]*d+a[15])},applyQuaternion:function(a){var b=this.x,c=this.y,d=this.z,e=a.x,f=a.y,g=a.z;a=a.w;var h=a*b+f*d-g*c,k=a*c+g*b-e*d,m=a*d+e*c-f*b,b=-e*b-f*c-g*d;this.x=h*a+b*-e+k*-g-m*-f;this.y=k*a+b*-f+m*-e-h*-g;this.z=m*a+b*-g+ h*-f-k*-e;return this},project:function(){var a=new S;return function(b){a.multiplyMatrices(b.projectionMatrix,a.getInverse(b.matrixWorld));return this.applyMatrix4(a)}}(),unproject:function(){var a=new S;return function(b){a.multiplyMatrices(b.matrixWorld,a.getInverse(b.projectionMatrix));return this.applyMatrix4(a)}}(),transformDirection:function(a){var b=this.x,c=this.y,d=this.z;a=a.elements;this.x=a[0]*b+a[4]*c+a[8]*d;this.y=a[1]*b+a[5]*c+a[9]*d;this.z=a[2]*b+a[6]*c+a[10]*d;return this.normalize()}, divide:function(a){this.x/=a.x;this.y/=a.y;this.z/=a.z;return this},divideScalar:function(a){return this.multiplyScalar(1/a)},min:function(a){this.x=Math.min(this.x,a.x);this.y=Math.min(this.y,a.y);this.z=Math.min(this.z,a.z);return this},max:function(a){this.x=Math.max(this.x,a.x);this.y=Math.max(this.y,a.y);this.z=Math.max(this.z,a.z);return this},clamp:function(a,b){this.x=Math.max(a.x,Math.min(b.x,this.x));this.y=Math.max(a.y,Math.min(b.y,this.y));this.z=Math.max(a.z,Math.min(b.z,this.z));return this}, @@ -320,44 +321,44 @@ this.crossVectors(a,b);var c=this.x,d=this.y,e=this.z;this.x=d*a.z-e*a.y;this.y= this.dot(b)))}}(),angleTo:function(a){a=this.dot(a)/Math.sqrt(this.lengthSq()*a.lengthSq());return Math.acos(Y.clamp(a,-1,1))},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(a){var b=this.x-a.x,c=this.y-a.y;a=this.z-a.z;return b*b+c*c+a*a},distanceToManhattan:function(a){return Math.abs(this.x-a.x)+Math.abs(this.y-a.y)+Math.abs(this.z-a.z)},setFromSpherical:function(a){var b=Math.sin(a.phi)*a.radius;this.x=b*Math.sin(a.theta);this.y=Math.cos(a.phi)* a.radius;this.z=b*Math.cos(a.theta);return this},setFromCylindrical:function(a){this.x=a.radius*Math.sin(a.theta);this.y=a.y;this.z=a.radius*Math.cos(a.theta);return this},setFromMatrixPosition:function(a){return this.setFromMatrixColumn(a,3)},setFromMatrixScale:function(a){var b=this.setFromMatrixColumn(a,0).length(),c=this.setFromMatrixColumn(a,1).length();a=this.setFromMatrixColumn(a,2).length();this.x=b;this.y=c;this.z=a;return this},setFromMatrixColumn:function(a,b){return this.fromArray(a.elements, 4*b)},equals:function(a){return a.x===this.x&&a.y===this.y&&a.z===this.z},fromArray:function(a,b){void 0===b&&(b=0);this.x=a[b];this.y=a[b+1];this.z=a[b+2];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this.x;a[b+1]=this.y;a[b+2]=this.z;return a},fromBufferAttribute:function(a,b,c){void 0!==c&&console.warn("THREE.Vector3: offset has been removed from .fromBufferAttribute().");this.x=a.getX(b);this.y=a.getY(b);this.z=a.getZ(b);return this}});Object.assign(S.prototype, -{isMatrix4:!0,set:function(a,b,c,d,e,f,g,h,k,m,l,q,n,r,p,t){var x=this.elements;x[0]=a;x[4]=b;x[8]=c;x[12]=d;x[1]=e;x[5]=f;x[9]=g;x[13]=h;x[2]=k;x[6]=m;x[10]=l;x[14]=q;x[3]=n;x[7]=r;x[11]=p;x[15]=t;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},clone:function(){return(new S).fromArray(this.elements)},copy:function(a){var b=this.elements;a=a.elements;for(var c=0;16>c;c++)b[c]=a[c];return this},copyPosition:function(a){var b=this.elements;a=a.elements;b[12]= +{isMatrix4:!0,set:function(a,b,c,d,e,f,g,h,k,m,r,l,n,u,y,t){var p=this.elements;p[0]=a;p[4]=b;p[8]=c;p[12]=d;p[1]=e;p[5]=f;p[9]=g;p[13]=h;p[2]=k;p[6]=m;p[10]=r;p[14]=l;p[3]=n;p[7]=u;p[11]=y;p[15]=t;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},clone:function(){return(new S).fromArray(this.elements)},copy:function(a){var b=this.elements;a=a.elements;for(var c=0;16>c;c++)b[c]=a[c];return this},copyPosition:function(a){var b=this.elements;a=a.elements;b[12]= a[12];b[13]=a[13];b[14]=a[14];return this},extractBasis:function(a,b,c){a.setFromMatrixColumn(this,0);b.setFromMatrixColumn(this,1);c.setFromMatrixColumn(this,2);return this},makeBasis:function(a,b,c){this.set(a.x,b.x,c.x,0,a.y,b.y,c.y,0,a.z,b.z,c.z,0,0,0,0,1);return this},extractRotation:function(){var a=new p;return function(b){var c=this.elements,d=b.elements,e=1/a.setFromMatrixColumn(b,0).length(),f=1/a.setFromMatrixColumn(b,1).length();b=1/a.setFromMatrixColumn(b,2).length();c[0]=d[0]*e;c[1]= -d[1]*e;c[2]=d[2]*e;c[4]=d[4]*f;c[5]=d[5]*f;c[6]=d[6]*f;c[8]=d[8]*b;c[9]=d[9]*b;c[10]=d[10]*b;return this}}(),makeRotationFromEuler:function(a){!1===(a&&a.isEuler)&&console.error("THREE.Matrix: .makeRotationFromEuler() now expects a Euler rotation rather than a Vector3 and order.");var b=this.elements,c=a.x,d=a.y,e=a.z,f=Math.cos(c),c=Math.sin(c),g=Math.cos(d),d=Math.sin(d),h=Math.cos(e),e=Math.sin(e);if("XYZ"===a.order){a=f*h;var k=f*e,m=c*h,l=c*e;b[0]=g*h;b[4]=-g*e;b[8]=d;b[1]=k+m*d;b[5]=a-l*d;b[9]= --c*g;b[2]=l-a*d;b[6]=m+k*d;b[10]=f*g}else"YXZ"===a.order?(a=g*h,k=g*e,m=d*h,l=d*e,b[0]=a+l*c,b[4]=m*c-k,b[8]=f*d,b[1]=f*e,b[5]=f*h,b[9]=-c,b[2]=k*c-m,b[6]=l+a*c,b[10]=f*g):"ZXY"===a.order?(a=g*h,k=g*e,m=d*h,l=d*e,b[0]=a-l*c,b[4]=-f*e,b[8]=m+k*c,b[1]=k+m*c,b[5]=f*h,b[9]=l-a*c,b[2]=-f*d,b[6]=c,b[10]=f*g):"ZYX"===a.order?(a=f*h,k=f*e,m=c*h,l=c*e,b[0]=g*h,b[4]=m*d-k,b[8]=a*d+l,b[1]=g*e,b[5]=l*d+a,b[9]=k*d-m,b[2]=-d,b[6]=c*g,b[10]=f*g):"YZX"===a.order?(a=f*g,k=f*d,m=c*g,l=c*d,b[0]=g*h,b[4]=l-a*e,b[8]= -m*e+k,b[1]=e,b[5]=f*h,b[9]=-c*h,b[2]=-d*h,b[6]=k*e+m,b[10]=a-l*e):"XZY"===a.order&&(a=f*g,k=f*d,m=c*g,l=c*d,b[0]=g*h,b[4]=-e,b[8]=d*h,b[1]=a*e+l,b[5]=f*h,b[9]=k*e-m,b[2]=m*e-k,b[6]=c*h,b[10]=l*e+a);b[3]=0;b[7]=0;b[11]=0;b[12]=0;b[13]=0;b[14]=0;b[15]=1;return this},makeRotationFromQuaternion:function(a){var b=this.elements,c=a.x,d=a.y,e=a.z,f=a.w,g=c+c,h=d+d,k=e+e;a=c*g;var m=c*h,c=c*k,l=d*h,d=d*k,e=e*k,g=f*g,h=f*h,f=f*k;b[0]=1-(l+e);b[4]=m-f;b[8]=c+h;b[1]=m+f;b[5]=1-(a+e);b[9]=d-g;b[2]=c-h;b[6]=d+ -g;b[10]=1-(a+l);b[3]=0;b[7]=0;b[11]=0;b[12]=0;b[13]=0;b[14]=0;b[15]=1;return this},lookAt:function(){var a=new p,b=new p,c=new p;return function(d,e,f){var g=this.elements;c.subVectors(d,e);0===c.lengthSq()&&(c.z=1);c.normalize();a.crossVectors(f,c);0===a.lengthSq()&&(c.z+=1E-4,a.crossVectors(f,c));a.normalize();b.crossVectors(c,a);g[0]=a.x;g[4]=b.x;g[8]=c.x;g[1]=a.y;g[5]=b.y;g[9]=c.y;g[2]=a.z;g[6]=b.z;g[10]=c.z;return this}}(),multiply:function(a,b){return void 0!==b?(console.warn("THREE.Matrix4: .multiply() now only accepts one argument. Use .multiplyMatrices( a, b ) instead."), -this.multiplyMatrices(a,b)):this.multiplyMatrices(this,a)},premultiply:function(a){return this.multiplyMatrices(a,this)},multiplyMatrices:function(a,b){var c=a.elements,d=b.elements,e=this.elements,f=c[0],g=c[4],h=c[8],k=c[12],m=c[1],l=c[5],q=c[9],n=c[13],r=c[2],p=c[6],t=c[10],x=c[14],y=c[3],w=c[7],H=c[11],c=c[15],v=d[0],O=d[4],M=d[8],D=d[12],A=d[1],aa=d[5],F=d[9],I=d[13],C=d[2],E=d[6],J=d[10],G=d[14],P=d[3],N=d[7],X=d[11],d=d[15];e[0]=f*v+g*A+h*C+k*P;e[4]=f*O+g*aa+h*E+k*N;e[8]=f*M+g*F+h*J+k*X;e[12]= -f*D+g*I+h*G+k*d;e[1]=m*v+l*A+q*C+n*P;e[5]=m*O+l*aa+q*E+n*N;e[9]=m*M+l*F+q*J+n*X;e[13]=m*D+l*I+q*G+n*d;e[2]=r*v+p*A+t*C+x*P;e[6]=r*O+p*aa+t*E+x*N;e[10]=r*M+p*F+t*J+x*X;e[14]=r*D+p*I+t*G+x*d;e[3]=y*v+w*A+H*C+c*P;e[7]=y*O+w*aa+H*E+c*N;e[11]=y*M+w*F+H*J+c*X;e[15]=y*D+w*I+H*G+c*d;return this},multiplyScalar:function(a){var b=this.elements;b[0]*=a;b[4]*=a;b[8]*=a;b[12]*=a;b[1]*=a;b[5]*=a;b[9]*=a;b[13]*=a;b[2]*=a;b[6]*=a;b[10]*=a;b[14]*=a;b[3]*=a;b[7]*=a;b[11]*=a;b[15]*=a;return this},applyToBufferAttribute:function(){var a= -new p;return function(b){for(var c=0,d=b.count;cthis.determinant()&&(g=-g);c.x=f[12];c.y=f[13];c.z=f[14];for(c=0;16>c;c++)b.elements[c]=this.elements[c];c=1/g;var f=1/h,m=1/k;b.elements[0]*=c;b.elements[1]*=c;b.elements[2]*=c;b.elements[4]*= f;b.elements[5]*=f;b.elements[6]*=f;b.elements[8]*=m;b.elements[9]*=m;b.elements[10]*=m;d.setFromRotationMatrix(b);e.x=g;e.y=h;e.z=k;return this}}(),makePerspective:function(a,b,c,d,e,f){void 0===f&&console.warn("THREE.Matrix4: .makePerspective() has been redefined and has a new signature. Please check the docs.");var g=this.elements;g[0]=2*e/(b-a);g[4]=0;g[8]=(b+a)/(b-a);g[12]=0;g[1]=0;g[5]=2*e/(c-d);g[9]=(c+d)/(c-d);g[13]=0;g[2]=0;g[6]=0;g[10]=-(f+e)/(f-e);g[14]=-2*f*e/(f-e);g[3]=0;g[7]=0;g[11]= -1;g[15]=0;return this},makeOrthographic:function(a,b,c,d,e,f){var g=this.elements,h=1/(b-a),k=1/(c-d),m=1/(f-e);g[0]=2*h;g[4]=0;g[8]=0;g[12]=-((b+a)*h);g[1]=0;g[5]=2*k;g[9]=0;g[13]=-((c+d)*k);g[2]=0;g[6]=0;g[10]=-2*m;g[14]=-((f+e)*m);g[3]=0;g[7]=0;g[11]=0;g[15]=1;return this},equals:function(a){var b=this.elements;a=a.elements;for(var c=0;16>c;c++)if(b[c]!==a[c])return!1;return!0},fromArray:function(a,b){void 0===b&&(b=0);for(var c=0;16>c;c++)this.elements[c]=a[c+b];return this},toArray:function(a, -b){void 0===a&&(a=[]);void 0===b&&(b=0);var c=this.elements;a[b]=c[0];a[b+1]=c[1];a[b+2]=c[2];a[b+3]=c[3];a[b+4]=c[4];a[b+5]=c[5];a[b+6]=c[6];a[b+7]=c[7];a[b+8]=c[8];a[b+9]=c[9];a[b+10]=c[10];a[b+11]=c[11];a[b+12]=c[12];a[b+13]=c[13];a[b+14]=c[14];a[b+15]=c[15];return a}});db.prototype=Object.create(Z.prototype);db.prototype.constructor=db;db.prototype.isDataTexture=!0;Xa.prototype=Object.create(Z.prototype);Xa.prototype.constructor=Xa;Xa.prototype.isCubeTexture=!0;Object.defineProperty(Xa.prototype, -"images",{get:function(){return this.image},set:function(a){this.image=a}});var Be=new Z,Ce=new Xa,we=[],ye=[],Ae=new Float32Array(16),ze=new Float32Array(9);Ge.prototype.setValue=function(a,b){for(var c=this.seq,d=0,e=c.length;d!==e;++d){var f=c[d];f.setValue(a,b[f.id])}};var Nd=/([\w\d_]+)(\])?(\[|\.)?/g;Ya.prototype.setValue=function(a,b,c){b=this.map[b];void 0!==b&&b.setValue(a,c,this.renderer)};Ya.prototype.set=function(a,b,c){var d=this.map[c];void 0!==d&&d.setValue(a,b[c],this.renderer)};Ya.prototype.setOptional= -function(a,b,c){b=b[c];void 0!==b&&this.setValue(a,c,b)};Ya.upload=function(a,b,c,d){for(var e=0,f=b.length;e!==f;++e){var g=b[e],h=c[g.id];!1!==h.needsUpdate&&g.setValue(a,h.value,d)}};Ya.seqWithValue=function(a,b){for(var c=[],d=0,e=a.length;d!==e;++d){var f=a[d];f.id in b&&c.push(f)}return c};var eg={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231, -cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539, -deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536, -lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154, -mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,red:16711680,rosybrown:12357519,royalblue:4286945, -saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Object.assign(G.prototype,{isColor:!0,r:1,g:1,b:1,set:function(a){a&&a.isColor? -this.copy(a):"number"===typeof a?this.setHex(a):"string"===typeof a&&this.setStyle(a);return this},setScalar:function(a){this.b=this.g=this.r=a;return this},setHex:function(a){a=Math.floor(a);this.r=(a>>16&255)/255;this.g=(a>>8&255)/255;this.b=(a&255)/255;return this},setRGB:function(a,b,c){this.r=a;this.g=b;this.b=c;return this},setHSL:function(){function a(a,c,d){0>d&&(d+=1);1d?c:d<2/3?a+6*(c-a)*(2/3-d):a}return function(b,c,d){b=Y.euclideanModulo(b,1);c=Y.clamp(c, -0,1);d=Y.clamp(d,0,1);0===c?this.r=this.g=this.b=d:(c=.5>=d?d*(1+c):d+c-d*c,d=2*d-c,this.r=a(d,c,b+1/3),this.g=a(d,c,b),this.b=a(d,c,b-1/3));return this}}(),setStyle:function(a){function b(b){void 0!==b&&1>parseFloat(b)&&console.warn("THREE.Color: Alpha component of "+a+" will be ignored.")}var c;if(c=/^((?:rgb|hsl)a?)\(\s*([^\)]*)\)/.exec(a)){var d=c[2];switch(c[1]){case "rgb":case "rgba":if(c=/^(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d))return this.r=Math.min(255,parseInt(c[1], -10))/255,this.g=Math.min(255,parseInt(c[2],10))/255,this.b=Math.min(255,parseInt(c[3],10))/255,b(c[5]),this;if(c=/^(\d+)\%\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d))return this.r=Math.min(100,parseInt(c[1],10))/100,this.g=Math.min(100,parseInt(c[2],10))/100,this.b=Math.min(100,parseInt(c[3],10))/100,b(c[5]),this;break;case "hsl":case "hsla":if(c=/^([0-9]*\.?[0-9]+)\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d)){var d=parseFloat(c[1])/360,e=parseInt(c[2], -10)/100,f=parseInt(c[3],10)/100;b(c[5]);return this.setHSL(d,e,f)}}}else if(c=/^\#([A-Fa-f0-9]+)$/.exec(a)){c=c[1];d=c.length;if(3===d)return this.r=parseInt(c.charAt(0)+c.charAt(0),16)/255,this.g=parseInt(c.charAt(1)+c.charAt(1),16)/255,this.b=parseInt(c.charAt(2)+c.charAt(2),16)/255,this;if(6===d)return this.r=parseInt(c.charAt(0)+c.charAt(1),16)/255,this.g=parseInt(c.charAt(2)+c.charAt(3),16)/255,this.b=parseInt(c.charAt(4)+c.charAt(5),16)/255,this}a&&0>16&255)/255;this.g=(a>>8&255)/255;this.b=(a&255)/255;return this},setRGB:function(a,b,c){this.r=a;this.g=b;this.b=c;return this},setHSL:function(){function a(a,c,d){0>d&&(d+=1);1d?c:d<2/3?a+6*(c-a)*(2/3-d):a}return function(b, +c,d){b=Y.euclideanModulo(b,1);c=Y.clamp(c,0,1);d=Y.clamp(d,0,1);0===c?this.r=this.g=this.b=d:(c=.5>=d?d*(1+c):d+c-d*c,d=2*d-c,this.r=a(d,c,b+1/3),this.g=a(d,c,b),this.b=a(d,c,b-1/3));return this}}(),setStyle:function(a){function b(b){void 0!==b&&1>parseFloat(b)&&console.warn("THREE.Color: Alpha component of "+a+" will be ignored.")}var c;if(c=/^((?:rgb|hsl)a?)\(\s*([^\)]*)\)/.exec(a)){var d=c[2];switch(c[1]){case "rgb":case "rgba":if(c=/^(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d))return this.r= +Math.min(255,parseInt(c[1],10))/255,this.g=Math.min(255,parseInt(c[2],10))/255,this.b=Math.min(255,parseInt(c[3],10))/255,b(c[5]),this;if(c=/^(\d+)\%\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d))return this.r=Math.min(100,parseInt(c[1],10))/100,this.g=Math.min(100,parseInt(c[2],10))/100,this.b=Math.min(100,parseInt(c[3],10))/100,b(c[5]),this;break;case "hsl":case "hsla":if(c=/^([0-9]*\.?[0-9]+)\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(,\s*([0-9]*\.?[0-9]+)\s*)?$/.exec(d)){var d=parseFloat(c[1])/ +360,e=parseInt(c[2],10)/100,f=parseInt(c[3],10)/100;b(c[5]);return this.setHSL(d,e,f)}}}else if(c=/^\#([A-Fa-f0-9]+)$/.exec(a)){c=c[1];d=c.length;if(3===d)return this.r=parseInt(c.charAt(0)+c.charAt(0),16)/255,this.g=parseInt(c.charAt(1)+c.charAt(1),16)/255,this.b=parseInt(c.charAt(2)+c.charAt(2),16)/255,this;if(6===d)return this.r=parseInt(c.charAt(0)+c.charAt(1),16)/255,this.g=parseInt(c.charAt(2)+c.charAt(3),16)/255,this.b=parseInt(c.charAt(4)+c.charAt(5),16)/255,this}a&&0=h?k/(e+f): k/(2-e-f);switch(e){case b:g=(c-d)/k+(c 0.0 ) {\n#if defined ( PHYSICALLY_CORRECT_LIGHTS )\n\t\t\tfloat distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 );\n\t\t\tfloat maxDistanceCutoffFactor = pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) );\n\t\t\treturn distanceFalloff * maxDistanceCutoffFactor;\n#else\n\t\t\treturn pow( saturate( -lightDistance / cutoffDistance + 1.0 ), decayExponent );\n#endif\n\t\t}\n\t\treturn 1.0;\n}\nvec3 BRDF_Diffuse_Lambert( const in vec3 diffuseColor ) {\n\treturn RECIPROCAL_PI * diffuseColor;\n}\nvec3 F_Schlick( const in vec3 specularColor, const in float dotLH ) {\n\tfloat fresnel = exp2( ( -5.55473 * dotLH - 6.98316 ) * dotLH );\n\treturn ( 1.0 - specularColor ) * fresnel + specularColor;\n}\nfloat G_GGX_Smith( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gl = dotNL + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\tfloat gv = dotNV + sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\treturn 1.0 / ( gl * gv );\n}\nfloat G_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) {\n\tfloat a2 = pow2( alpha );\n\tfloat gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) );\n\tfloat gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) );\n\treturn 0.5 / max( gv + gl, EPSILON );\n}\nfloat D_GGX( const in float alpha, const in float dotNH ) {\n\tfloat a2 = pow2( alpha );\n\tfloat denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0;\n\treturn RECIPROCAL_PI * a2 / pow2( denom );\n}\nvec3 BRDF_Specular_GGX( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat alpha = pow2( roughness );\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNL = saturate( dot( geometry.normal, incidentLight.direction ) );\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_GGX_SmithCorrelated( alpha, dotNL, dotNV );\n\tfloat D = D_GGX( alpha, dotNH );\n\treturn F * ( G * D );\n}\nvec2 ltcTextureCoords( const in GeometricContext geometry, const in float roughness ) {\n\tconst float LUT_SIZE = 64.0;\n\tconst float LUT_SCALE = (LUT_SIZE - 1.0)/LUT_SIZE;\n\tconst float LUT_BIAS = 0.5/LUT_SIZE;\n\tvec3 N = geometry.normal;\n\tvec3 V = geometry.viewDir;\n\tvec3 P = geometry.position;\n\tfloat theta = acos( dot( N, V ) );\n\tvec2 uv = vec2(\n\t\tsqrt( saturate( roughness ) ),\n\t\tsaturate( theta / ( 0.5 * PI ) ) );\n\tuv = uv * LUT_SCALE + LUT_BIAS;\n\treturn uv;\n}\nvoid clipQuadToHorizon( inout vec3 L[5], out int n ) {\n\tint config = 0;\n\tif ( L[0].z > 0.0 ) config += 1;\n\tif ( L[1].z > 0.0 ) config += 2;\n\tif ( L[2].z > 0.0 ) config += 4;\n\tif ( L[3].z > 0.0 ) config += 8;\n\tn = 0;\n\tif ( config == 0 ) {\n\t} else if ( config == 1 ) {\n\t\tn = 3;\n\t\tL[1] = -L[1].z * L[0] + L[0].z * L[1];\n\t\tL[2] = -L[3].z * L[0] + L[0].z * L[3];\n\t} else if ( config == 2 ) {\n\t\tn = 3;\n\t\tL[0] = -L[0].z * L[1] + L[1].z * L[0];\n\t\tL[2] = -L[2].z * L[1] + L[1].z * L[2];\n\t} else if ( config == 3 ) {\n\t\tn = 4;\n\t\tL[2] = -L[2].z * L[1] + L[1].z * L[2];\n\t\tL[3] = -L[3].z * L[0] + L[0].z * L[3];\n\t} else if ( config == 4 ) {\n\t\tn = 3;\n\t\tL[0] = -L[3].z * L[2] + L[2].z * L[3];\n\t\tL[1] = -L[1].z * L[2] + L[2].z * L[1];\n\t} else if ( config == 5 ) {\n\t\tn = 0;\n\t} else if ( config == 6 ) {\n\t\tn = 4;\n\t\tL[0] = -L[0].z * L[1] + L[1].z * L[0];\n\t\tL[3] = -L[3].z * L[2] + L[2].z * L[3];\n\t} else if ( config == 7 ) {\n\t\tn = 5;\n\t\tL[4] = -L[3].z * L[0] + L[0].z * L[3];\n\t\tL[3] = -L[3].z * L[2] + L[2].z * L[3];\n\t} else if ( config == 8 ) {\n\t\tn = 3;\n\t\tL[0] = -L[0].z * L[3] + L[3].z * L[0];\n\t\tL[1] = -L[2].z * L[3] + L[3].z * L[2];\n\t\tL[2] = L[3];\n\t} else if ( config == 9 ) {\n\t\tn = 4;\n\t\tL[1] = -L[1].z * L[0] + L[0].z * L[1];\n\t\tL[2] = -L[2].z * L[3] + L[3].z * L[2];\n\t} else if ( config == 10 ) {\n\t\tn = 0;\n\t} else if ( config == 11 ) {\n\t\tn = 5;\n\t\tL[4] = L[3];\n\t\tL[3] = -L[2].z * L[3] + L[3].z * L[2];\n\t\tL[2] = -L[2].z * L[1] + L[1].z * L[2];\n\t} else if ( config == 12 ) {\n\t\tn = 4;\n\t\tL[1] = -L[1].z * L[2] + L[2].z * L[1];\n\t\tL[0] = -L[0].z * L[3] + L[3].z * L[0];\n\t} else if ( config == 13 ) {\n\t\tn = 5;\n\t\tL[4] = L[3];\n\t\tL[3] = L[2];\n\t\tL[2] = -L[1].z * L[2] + L[2].z * L[1];\n\t\tL[1] = -L[1].z * L[0] + L[0].z * L[1];\n\t} else if ( config == 14 ) {\n\t\tn = 5;\n\t\tL[4] = -L[0].z * L[3] + L[3].z * L[0];\n\t\tL[0] = -L[0].z * L[1] + L[1].z * L[0];\n\t} else if ( config == 15 ) {\n\t\tn = 4;\n\t}\n\tif ( n == 3 )\n\t\tL[3] = L[0];\n\tif ( n == 4 )\n\t\tL[4] = L[0];\n}\nfloat integrateLtcBrdfOverRectEdge( vec3 v1, vec3 v2 ) {\n\tfloat cosTheta = dot( v1, v2 );\n\tfloat theta = acos( cosTheta );\n\tfloat res = cross( v1, v2 ).z * ( ( theta > 0.001 ) ? theta / sin( theta ) : 1.0 );\n\treturn res;\n}\nvoid initRectPoints( const in vec3 pos, const in vec3 halfWidth, const in vec3 halfHeight, out vec3 rectPoints[4] ) {\n\trectPoints[0] = pos - halfWidth - halfHeight;\n\trectPoints[1] = pos + halfWidth - halfHeight;\n\trectPoints[2] = pos + halfWidth + halfHeight;\n\trectPoints[3] = pos - halfWidth + halfHeight;\n}\nvec3 integrateLtcBrdfOverRect( const in GeometricContext geometry, const in mat3 brdfMat, const in vec3 rectPoints[4] ) {\n\tvec3 N = geometry.normal;\n\tvec3 V = geometry.viewDir;\n\tvec3 P = geometry.position;\n\tvec3 T1, T2;\n\tT1 = normalize(V - N * dot( V, N ));\n\tT2 = - cross( N, T1 );\n\tmat3 brdfWrtSurface = brdfMat * transpose( mat3( T1, T2, N ) );\n\tvec3 clippedRect[5];\n\tclippedRect[0] = brdfWrtSurface * ( rectPoints[0] - P );\n\tclippedRect[1] = brdfWrtSurface * ( rectPoints[1] - P );\n\tclippedRect[2] = brdfWrtSurface * ( rectPoints[2] - P );\n\tclippedRect[3] = brdfWrtSurface * ( rectPoints[3] - P );\n\tint n;\n\tclipQuadToHorizon(clippedRect, n);\n\tif ( n == 0 )\n\t\treturn vec3( 0, 0, 0 );\n\tclippedRect[0] = normalize( clippedRect[0] );\n\tclippedRect[1] = normalize( clippedRect[1] );\n\tclippedRect[2] = normalize( clippedRect[2] );\n\tclippedRect[3] = normalize( clippedRect[3] );\n\tclippedRect[4] = normalize( clippedRect[4] );\n\tfloat sum = 0.0;\n\tsum += integrateLtcBrdfOverRectEdge( clippedRect[0], clippedRect[1] );\n\tsum += integrateLtcBrdfOverRectEdge( clippedRect[1], clippedRect[2] );\n\tsum += integrateLtcBrdfOverRectEdge( clippedRect[2], clippedRect[3] );\n\tif (n >= 4)\n\t\tsum += integrateLtcBrdfOverRectEdge( clippedRect[3], clippedRect[4] );\n\tif (n == 5)\n\t\tsum += integrateLtcBrdfOverRectEdge( clippedRect[4], clippedRect[0] );\n\tsum = max( 0.0, sum );\n\tvec3 Lo_i = vec3( sum, sum, sum );\n\treturn Lo_i;\n}\nvec3 Rect_Area_Light_Specular_Reflectance(\n\t\tconst in GeometricContext geometry,\n\t\tconst in vec3 lightPos, const in vec3 lightHalfWidth, const in vec3 lightHalfHeight,\n\t\tconst in float roughness,\n\t\tconst in sampler2D ltcMat, const in sampler2D ltcMag ) {\n\tvec3 rectPoints[4];\n\tinitRectPoints( lightPos, lightHalfWidth, lightHalfHeight, rectPoints );\n\tvec2 uv = ltcTextureCoords( geometry, roughness );\n\tvec4 brdfLtcApproxParams, t;\n\tbrdfLtcApproxParams = texture2D( ltcMat, uv );\n\tt = texture2D( ltcMat, uv );\n\tfloat brdfLtcScalar = texture2D( ltcMag, uv ).a;\n\tmat3 brdfLtcApproxMat = mat3(\n\t\tvec3( 1, 0, t.y ),\n\t\tvec3( 0, t.z, 0 ),\n\t\tvec3( t.w, 0, t.x )\n\t);\n\tvec3 specularReflectance = integrateLtcBrdfOverRect( geometry, brdfLtcApproxMat, rectPoints );\n\tspecularReflectance *= brdfLtcScalar;\n\treturn specularReflectance;\n}\nvec3 Rect_Area_Light_Diffuse_Reflectance(\n\t\tconst in GeometricContext geometry,\n\t\tconst in vec3 lightPos, const in vec3 lightHalfWidth, const in vec3 lightHalfHeight ) {\n\tvec3 rectPoints[4];\n\tinitRectPoints( lightPos, lightHalfWidth, lightHalfHeight, rectPoints );\n\tmat3 diffuseBrdfMat = mat3(1);\n\tvec3 diffuseReflectance = integrateLtcBrdfOverRect( geometry, diffuseBrdfMat, rectPoints );\n\treturn diffuseReflectance;\n}\nvec3 BRDF_Specular_GGX_Environment( const in GeometricContext geometry, const in vec3 specularColor, const in float roughness ) {\n\tfloat dotNV = saturate( dot( geometry.normal, geometry.viewDir ) );\n\tconst vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 );\n\tconst vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 );\n\tvec4 r = roughness * c0 + c1;\n\tfloat a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y;\n\tvec2 AB = vec2( -1.04, 1.04 ) * a004 + r.zw;\n\treturn specularColor * AB.x + AB.y;\n}\nfloat G_BlinnPhong_Implicit( ) {\n\treturn 0.25;\n}\nfloat D_BlinnPhong( const in float shininess, const in float dotNH ) {\n\treturn RECIPROCAL_PI * ( shininess * 0.5 + 1.0 ) * pow( dotNH, shininess );\n}\nvec3 BRDF_Specular_BlinnPhong( const in IncidentLight incidentLight, const in GeometricContext geometry, const in vec3 specularColor, const in float shininess ) {\n\tvec3 halfDir = normalize( incidentLight.direction + geometry.viewDir );\n\tfloat dotNH = saturate( dot( geometry.normal, halfDir ) );\n\tfloat dotLH = saturate( dot( incidentLight.direction, halfDir ) );\n\tvec3 F = F_Schlick( specularColor, dotLH );\n\tfloat G = G_BlinnPhong_Implicit( );\n\tfloat D = D_BlinnPhong( shininess, dotNH );\n\treturn F * ( G * D );\n}\nfloat GGXRoughnessToBlinnExponent( const in float ggxRoughness ) {\n\treturn ( 2.0 / pow2( ggxRoughness + 0.0001 ) - 2.0 );\n}\nfloat BlinnExponentToGGXRoughness( const in float blinnExponent ) {\n\treturn sqrt( 2.0 / ( blinnExponent + 2.0 ) );\n}\n", bumpmap_pars_fragment:"#ifdef USE_BUMPMAP\n\tuniform sampler2D bumpMap;\n\tuniform float bumpScale;\n\tvec2 dHdxy_fwd() {\n\t\tvec2 dSTdx = dFdx( vUv );\n\t\tvec2 dSTdy = dFdy( vUv );\n\t\tfloat Hll = bumpScale * texture2D( bumpMap, vUv ).x;\n\t\tfloat dBx = bumpScale * texture2D( bumpMap, vUv + dSTdx ).x - Hll;\n\t\tfloat dBy = bumpScale * texture2D( bumpMap, vUv + dSTdy ).x - Hll;\n\t\treturn vec2( dBx, dBy );\n\t}\n\tvec3 perturbNormalArb( vec3 surf_pos, vec3 surf_norm, vec2 dHdxy ) {\n\t\tvec3 vSigmaX = dFdx( surf_pos );\n\t\tvec3 vSigmaY = dFdy( surf_pos );\n\t\tvec3 vN = surf_norm;\n\t\tvec3 R1 = cross( vSigmaY, vN );\n\t\tvec3 R2 = cross( vN, vSigmaX );\n\t\tfloat fDet = dot( vSigmaX, R1 );\n\t\tvec3 vGrad = sign( fDet ) * ( dHdxy.x * R1 + dHdxy.y * R2 );\n\t\treturn normalize( abs( fDet ) * surf_norm - vGrad );\n\t}\n#endif\n", @@ -414,55 +415,55 @@ normal_frag:"#define NORMAL\nuniform float opacity;\n#if defined( FLAT_SHADED ) normal_vert:"#define NORMAL\n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP )\n\tvarying vec3 vViewPosition;\n#endif\n#ifndef FLAT_SHADED\n\tvarying vec3 vNormal;\n#endif\n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n#ifndef FLAT_SHADED\n\tvNormal = normalize( transformedNormal );\n#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP )\n\tvViewPosition = - mvPosition.xyz;\n#endif\n}\n", points_frag:"uniform vec3 diffuse;\nuniform float opacity;\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\tvec3 outgoingLight = vec3( 0.0 );\n\tvec4 diffuseColor = vec4( diffuse, opacity );\n\t#include \n\t#include \n\t#include \n\t#include \n\toutgoingLight = diffuseColor.rgb;\n\tgl_FragColor = vec4( outgoingLight, diffuseColor.a );\n\t#include \n\t#include \n\t#include \n\t#include \n}\n", points_vert:"uniform float size;\nuniform float scale;\n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\t#include \n\t#include \n\t#include \n\t#ifdef USE_SIZEATTENUATION\n\t\tgl_PointSize = size * ( scale / - mvPosition.z );\n\t#else\n\t\tgl_PointSize = size;\n\t#endif\n\t#include \n\t#include \n\t#include \n\t#include \n\t#include \n}\n", -shadow_frag:"uniform float opacity;\n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\tgl_FragColor = vec4( 0.0, 0.0, 0.0, opacity * ( 1.0 - getShadowMask() ) );\n}\n",shadow_vert:"#include \nvoid main() {\n\t#include \n\t#include \n\t#include \n\t#include \n}\n"},$a={basic:{uniforms:Fa.merge([T.common, -T.aomap,T.lightmap,T.fog]),vertexShader:ca.meshbasic_vert,fragmentShader:ca.meshbasic_frag},lambert:{uniforms:Fa.merge([T.common,T.aomap,T.lightmap,T.emissivemap,T.fog,T.lights,{emissive:{value:new G(0)}}]),vertexShader:ca.meshlambert_vert,fragmentShader:ca.meshlambert_frag},phong:{uniforms:Fa.merge([T.common,T.aomap,T.lightmap,T.emissivemap,T.bumpmap,T.normalmap,T.displacementmap,T.gradientmap,T.fog,T.lights,{emissive:{value:new G(0)},specular:{value:new G(1118481)},shininess:{value:30}}]),vertexShader:ca.meshphong_vert, -fragmentShader:ca.meshphong_frag},standard:{uniforms:Fa.merge([T.common,T.aomap,T.lightmap,T.emissivemap,T.bumpmap,T.normalmap,T.displacementmap,T.roughnessmap,T.metalnessmap,T.fog,T.lights,{emissive:{value:new G(0)},roughness:{value:.5},metalness:{value:0},envMapIntensity:{value:1}}]),vertexShader:ca.meshphysical_vert,fragmentShader:ca.meshphysical_frag},points:{uniforms:Fa.merge([T.points,T.fog]),vertexShader:ca.points_vert,fragmentShader:ca.points_frag},dashed:{uniforms:Fa.merge([T.common,T.fog, -{scale:{value:1},dashSize:{value:1},totalSize:{value:2}}]),vertexShader:ca.linedashed_vert,fragmentShader:ca.linedashed_frag},depth:{uniforms:Fa.merge([T.common,T.displacementmap]),vertexShader:ca.depth_vert,fragmentShader:ca.depth_frag},normal:{uniforms:Fa.merge([T.common,T.bumpmap,T.normalmap,T.displacementmap,{opacity:{value:1}}]),vertexShader:ca.normal_vert,fragmentShader:ca.normal_frag},cube:{uniforms:{tCube:{value:null},tFlip:{value:-1},opacity:{value:1}},vertexShader:ca.cube_vert,fragmentShader:ca.cube_frag}, -equirect:{uniforms:{tEquirect:{value:null},tFlip:{value:-1}},vertexShader:ca.equirect_vert,fragmentShader:ca.equirect_frag},distanceRGBA:{uniforms:{lightPos:{value:new p}},vertexShader:ca.distanceRGBA_vert,fragmentShader:ca.distanceRGBA_frag}};$a.physical={uniforms:Fa.merge([$a.standard.uniforms,{clearCoat:{value:0},clearCoatRoughness:{value:0}}]),vertexShader:ca.meshphysical_vert,fragmentShader:ca.meshphysical_frag};Object.assign(ed.prototype,{set:function(a,b){this.min.copy(a);this.max.copy(b); -return this},setFromPoints:function(a){this.makeEmpty();for(var b=0,c=a.length;bthis.max.x||a.ythis.max.y?!1:!0},containsBox:function(a){return this.min.x<=a.min.x&&a.max.x<=this.max.x&&this.min.y<=a.min.y&&a.max.y<=this.max.y},getParameter:function(a,b){return(b||new F).set((a.x-this.min.x)/(this.max.x-this.min.x),(a.y-this.min.y)/(this.max.y-this.min.y))},intersectsBox:function(a){return a.max.xthis.max.x||a.max.ythis.max.y?!1:!0},clampPoint:function(a, -b){return(b||new F).copy(a).clamp(this.min,this.max)},distanceToPoint:function(){var a=new F;return function(b){return a.copy(b).clamp(this.min,this.max).sub(b).length()}}(),intersect:function(a){this.min.max(a.min);this.max.min(a.max);return this},union:function(a){this.min.min(a.min);this.max.max(a.max);return this},translate:function(a){this.min.add(a);this.max.add(a);return this},equals:function(a){return a.min.equals(this.min)&&a.max.equals(this.max)}});var Ef=0;Object.defineProperty(W.prototype, -"needsUpdate",{get:function(){return this._needsUpdate},set:function(a){!0===a&&this.update();this._needsUpdate=a}});Object.assign(W.prototype,Aa.prototype,{isMaterial:!0,setValues:function(a){if(void 0!==a)for(var b in a){var c=a[b];if(void 0===c)console.warn("THREE.Material: '"+b+"' parameter is undefined.");else{var d=this[b];void 0===d?console.warn("THREE."+this.type+": '"+b+"' is not a property of this material."):d&&d.isColor?d.set(c):d&&d.isVector3&&c&&c.isVector3?d.copy(c):this[b]="overdraw"=== -b?Number(c):c}}},toJSON:function(a){function b(a){var b=[],c;for(c in a){var d=a[c];delete d.metadata;b.push(d)}return b}var c=void 0===a;c&&(a={textures:{},images:{}});var d={metadata:{version:4.4,type:"Material",generator:"Material.toJSON"}};d.uuid=this.uuid;d.type=this.type;""!==this.name&&(d.name=this.name);this.color&&this.color.isColor&&(d.color=this.color.getHex());void 0!==this.roughness&&(d.roughness=this.roughness);void 0!==this.metalness&&(d.metalness=this.metalness);this.emissive&&this.emissive.isColor&& -(d.emissive=this.emissive.getHex());this.specular&&this.specular.isColor&&(d.specular=this.specular.getHex());void 0!==this.shininess&&(d.shininess=this.shininess);void 0!==this.clearCoat&&(d.clearCoat=this.clearCoat);void 0!==this.clearCoatRoughness&&(d.clearCoatRoughness=this.clearCoatRoughness);this.map&&this.map.isTexture&&(d.map=this.map.toJSON(a).uuid);this.alphaMap&&this.alphaMap.isTexture&&(d.alphaMap=this.alphaMap.toJSON(a).uuid);this.lightMap&&this.lightMap.isTexture&&(d.lightMap=this.lightMap.toJSON(a).uuid); -this.bumpMap&&this.bumpMap.isTexture&&(d.bumpMap=this.bumpMap.toJSON(a).uuid,d.bumpScale=this.bumpScale);this.normalMap&&this.normalMap.isTexture&&(d.normalMap=this.normalMap.toJSON(a).uuid,d.normalScale=this.normalScale.toArray());this.displacementMap&&this.displacementMap.isTexture&&(d.displacementMap=this.displacementMap.toJSON(a).uuid,d.displacementScale=this.displacementScale,d.displacementBias=this.displacementBias);this.roughnessMap&&this.roughnessMap.isTexture&&(d.roughnessMap=this.roughnessMap.toJSON(a).uuid); +shadow_frag:"uniform float opacity;\n#include \n#include \n#include \n#include \n#include \n#include \nvoid main() {\n\tgl_FragColor = vec4( 0.0, 0.0, 0.0, opacity * ( 1.0 - getShadowMask() ) );\n}\n",shadow_vert:"#include \nvoid main() {\n\t#include \n\t#include \n\t#include \n\t#include \n}\n"},$a={basic:{uniforms:Ga.merge([T.common, +T.aomap,T.lightmap,T.fog]),vertexShader:U.meshbasic_vert,fragmentShader:U.meshbasic_frag},lambert:{uniforms:Ga.merge([T.common,T.aomap,T.lightmap,T.emissivemap,T.fog,T.lights,{emissive:{value:new L(0)}}]),vertexShader:U.meshlambert_vert,fragmentShader:U.meshlambert_frag},phong:{uniforms:Ga.merge([T.common,T.aomap,T.lightmap,T.emissivemap,T.bumpmap,T.normalmap,T.displacementmap,T.gradientmap,T.fog,T.lights,{emissive:{value:new L(0)},specular:{value:new L(1118481)},shininess:{value:30}}]),vertexShader:U.meshphong_vert, +fragmentShader:U.meshphong_frag},standard:{uniforms:Ga.merge([T.common,T.aomap,T.lightmap,T.emissivemap,T.bumpmap,T.normalmap,T.displacementmap,T.roughnessmap,T.metalnessmap,T.fog,T.lights,{emissive:{value:new L(0)},roughness:{value:.5},metalness:{value:0},envMapIntensity:{value:1}}]),vertexShader:U.meshphysical_vert,fragmentShader:U.meshphysical_frag},points:{uniforms:Ga.merge([T.points,T.fog]),vertexShader:U.points_vert,fragmentShader:U.points_frag},dashed:{uniforms:Ga.merge([T.common,T.fog,{scale:{value:1}, +dashSize:{value:1},totalSize:{value:2}}]),vertexShader:U.linedashed_vert,fragmentShader:U.linedashed_frag},depth:{uniforms:Ga.merge([T.common,T.displacementmap]),vertexShader:U.depth_vert,fragmentShader:U.depth_frag},normal:{uniforms:Ga.merge([T.common,T.bumpmap,T.normalmap,T.displacementmap,{opacity:{value:1}}]),vertexShader:U.normal_vert,fragmentShader:U.normal_frag},cube:{uniforms:{tCube:{value:null},tFlip:{value:-1},opacity:{value:1}},vertexShader:U.cube_vert,fragmentShader:U.cube_frag},equirect:{uniforms:{tEquirect:{value:null}, +tFlip:{value:-1}},vertexShader:U.equirect_vert,fragmentShader:U.equirect_frag},distanceRGBA:{uniforms:{lightPos:{value:new p}},vertexShader:U.distanceRGBA_vert,fragmentShader:U.distanceRGBA_frag}};$a.physical={uniforms:Ga.merge([$a.standard.uniforms,{clearCoat:{value:0},clearCoatRoughness:{value:0}}]),vertexShader:U.meshphysical_vert,fragmentShader:U.meshphysical_frag};Object.assign(ed.prototype,{set:function(a,b){this.min.copy(a);this.max.copy(b);return this},setFromPoints:function(a){this.makeEmpty(); +for(var b=0,c=a.length;bthis.max.x||a.ythis.max.y?!1:!0},containsBox:function(a){return this.min.x<=a.min.x&&a.max.x<=this.max.x&&this.min.y<=a.min.y&&a.max.y<=this.max.y},getParameter:function(a,b){return(b||new D).set((a.x-this.min.x)/(this.max.x-this.min.x),(a.y-this.min.y)/(this.max.y-this.min.y))},intersectsBox:function(a){return a.max.xthis.max.x||a.max.ythis.max.y?!1:!0},clampPoint:function(a,b){return(b||new D).copy(a).clamp(this.min,this.max)}, +distanceToPoint:function(){var a=new D;return function(b){return a.copy(b).clamp(this.min,this.max).sub(b).length()}}(),intersect:function(a){this.min.max(a.min);this.max.min(a.max);return this},union:function(a){this.min.min(a.min);this.max.max(a.max);return this},translate:function(a){this.min.add(a);this.max.add(a);return this},equals:function(a){return a.min.equals(this.min)&&a.max.equals(this.max)}});var Ff=0;Object.defineProperty(K.prototype,"needsUpdate",{get:function(){return this._needsUpdate}, +set:function(a){!0===a&&this.update();this._needsUpdate=a}});Object.assign(K.prototype,qa.prototype,{isMaterial:!0,setValues:function(a){if(void 0!==a)for(var b in a){var c=a[b];if(void 0===c)console.warn("THREE.Material: '"+b+"' parameter is undefined.");else{var d=this[b];void 0===d?console.warn("THREE."+this.type+": '"+b+"' is not a property of this material."):d&&d.isColor?d.set(c):d&&d.isVector3&&c&&c.isVector3?d.copy(c):this[b]="overdraw"===b?Number(c):c}}},toJSON:function(a){function b(a){var b= +[],c;for(c in a){var d=a[c];delete d.metadata;b.push(d)}return b}var c=void 0===a;c&&(a={textures:{},images:{}});var d={metadata:{version:4.4,type:"Material",generator:"Material.toJSON"}};d.uuid=this.uuid;d.type=this.type;""!==this.name&&(d.name=this.name);this.color&&this.color.isColor&&(d.color=this.color.getHex());void 0!==this.roughness&&(d.roughness=this.roughness);void 0!==this.metalness&&(d.metalness=this.metalness);this.emissive&&this.emissive.isColor&&(d.emissive=this.emissive.getHex()); +this.specular&&this.specular.isColor&&(d.specular=this.specular.getHex());void 0!==this.shininess&&(d.shininess=this.shininess);void 0!==this.clearCoat&&(d.clearCoat=this.clearCoat);void 0!==this.clearCoatRoughness&&(d.clearCoatRoughness=this.clearCoatRoughness);this.map&&this.map.isTexture&&(d.map=this.map.toJSON(a).uuid);this.alphaMap&&this.alphaMap.isTexture&&(d.alphaMap=this.alphaMap.toJSON(a).uuid);this.lightMap&&this.lightMap.isTexture&&(d.lightMap=this.lightMap.toJSON(a).uuid);this.bumpMap&& +this.bumpMap.isTexture&&(d.bumpMap=this.bumpMap.toJSON(a).uuid,d.bumpScale=this.bumpScale);this.normalMap&&this.normalMap.isTexture&&(d.normalMap=this.normalMap.toJSON(a).uuid,d.normalScale=this.normalScale.toArray());this.displacementMap&&this.displacementMap.isTexture&&(d.displacementMap=this.displacementMap.toJSON(a).uuid,d.displacementScale=this.displacementScale,d.displacementBias=this.displacementBias);this.roughnessMap&&this.roughnessMap.isTexture&&(d.roughnessMap=this.roughnessMap.toJSON(a).uuid); this.metalnessMap&&this.metalnessMap.isTexture&&(d.metalnessMap=this.metalnessMap.toJSON(a).uuid);this.emissiveMap&&this.emissiveMap.isTexture&&(d.emissiveMap=this.emissiveMap.toJSON(a).uuid);this.specularMap&&this.specularMap.isTexture&&(d.specularMap=this.specularMap.toJSON(a).uuid);this.envMap&&this.envMap.isTexture&&(d.envMap=this.envMap.toJSON(a).uuid,d.reflectivity=this.reflectivity);this.gradientMap&&this.gradientMap.isTexture&&(d.gradientMap=this.gradientMap.toJSON(a).uuid);void 0!==this.size&& (d.size=this.size);void 0!==this.sizeAttenuation&&(d.sizeAttenuation=this.sizeAttenuation);1!==this.blending&&(d.blending=this.blending);2!==this.shading&&(d.shading=this.shading);0!==this.side&&(d.side=this.side);0!==this.vertexColors&&(d.vertexColors=this.vertexColors);1>this.opacity&&(d.opacity=this.opacity);!0===this.transparent&&(d.transparent=this.transparent);d.depthFunc=this.depthFunc;d.depthTest=this.depthTest;d.depthWrite=this.depthWrite;0e&&(e=m);l>f&&(f=l);q>g&&(g=q)}this.min.set(b,c,d);this.max.set(e,f,g);return this},setFromBufferAttribute:function(a){for(var b=Infinity,c=Infinity,d=Infinity,e=-Infinity,f=-Infinity,g=-Infinity,h=0,k=a.count;he&&(e=m);l>f&&(f=l);q>g&&(g=q)}this.min.set(b,c,d);this.max.set(e,f,g);return this}, +Infinity,e=-Infinity,f=-Infinity,g=-Infinity,h=0,k=a.length;he&&(e=m);r>f&&(f=r);l>g&&(g=l)}this.min.set(b,c,d);this.max.set(e,f,g);return this},setFromBufferAttribute:function(a){for(var b=Infinity,c=Infinity,d=Infinity,e=-Infinity,f=-Infinity,g=-Infinity,h=0,k=a.count;he&&(e=m);r>f&&(f=r);l>g&&(g=l)}this.min.set(b,c,d);this.max.set(e,f,g);return this}, setFromPoints:function(a){this.makeEmpty();for(var b=0,c=a.length;bthis.max.x||a.ythis.max.y||a.zthis.max.z?!1:!0},containsBox:function(a){return this.min.x<=a.min.x&&a.max.x<=this.max.x&&this.min.y<=a.min.y&&a.max.y<=this.max.y&&this.min.z<=a.min.z&&a.max.z<=this.max.z},getParameter:function(a,b){return(b||new p).set((a.x-this.min.x)/(this.max.x-this.min.x),(a.y-this.min.y)/(this.max.y-this.min.y),(a.z-this.min.z)/ (this.max.z-this.min.z))},intersectsBox:function(a){return a.max.xthis.max.x||a.max.ythis.max.y||a.max.zthis.max.z?!1:!0},intersectsSphere:function(){var a=new p;return function(b){this.clampPoint(b.center,a);return a.distanceToSquared(b.center)<=b.radius*b.radius}}(),intersectsPlane:function(a){var b,c;0=a.constant},clampPoint:function(a,b){return(b||new p).copy(a).clamp(this.min,this.max)},distanceToPoint:function(){var a=new p;return function(b){return a.copy(b).clamp(this.min,this.max).sub(b).length()}}(),getBoundingSphere:function(){var a=new p;return function(b){b= -b||new Ia;this.getCenter(b.center);b.radius=.5*this.getSize(a).length();return b}}(),intersect:function(a){this.min.max(a.min);this.max.min(a.max);this.isEmpty()&&this.makeEmpty();return this},union:function(a){this.min.min(a.min);this.max.max(a.max);return this},applyMatrix4:function(){var a=[new p,new p,new p,new p,new p,new p,new p,new p];return function(b){if(this.isEmpty())return this;a[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(b);a[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(b); +b||new Ba;this.getCenter(b.center);b.radius=.5*this.getSize(a).length();return b}}(),intersect:function(a){this.min.max(a.min);this.max.min(a.max);this.isEmpty()&&this.makeEmpty();return this},union:function(a){this.min.min(a.min);this.max.max(a.max);return this},applyMatrix4:function(){var a=[new p,new p,new p,new p,new p,new p,new p,new p];return function(b){if(this.isEmpty())return this;a[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(b);a[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(b); a[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(b);a[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(b);a[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(b);a[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(b);a[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(b);a[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(b);this.setFromPoints(a);return this}}(),translate:function(a){this.min.add(a);this.max.add(a);return this},equals:function(a){return a.min.equals(this.min)&& -a.max.equals(this.max)}});Object.assign(Ia.prototype,{set:function(a,b){this.center.copy(a);this.radius=b;return this},setFromPoints:function(){var a=new Ra;return function(b,c){var d=this.center;void 0!==c?d.copy(c):a.setFromPoints(b).getCenter(d);for(var e=0,f=0,g=b.length;f=this.radius},containsPoint:function(a){return a.distanceToSquared(this.center)<=this.radius*this.radius},distanceToPoint:function(a){return a.distanceTo(this.center)-this.radius},intersectsSphere:function(a){var b=this.radius+a.radius;return a.center.distanceToSquared(this.center)<=b*b},intersectsBox:function(a){return a.intersectsSphere(this)},intersectsPlane:function(a){return Math.abs(this.center.dot(a.normal)-a.constant)<=this.radius},clampPoint:function(a,b){var c= this.center.distanceToSquared(a),d=b||new p;d.copy(a);c>this.radius*this.radius&&(d.sub(this.center).normalize(),d.multiplyScalar(this.radius).add(this.center));return d},getBoundingBox:function(a){a=a||new Ra;a.set(this.center,this.center);a.expandByScalar(this.radius);return a},applyMatrix4:function(a){this.center.applyMatrix4(a);this.radius*=a.getMaxScaleOnAxis();return this},translate:function(a){this.center.add(a);return this},equals:function(a){return a.center.equals(this.center)&&a.radius=== -this.radius}});Object.assign(Ja.prototype,{isMatrix3:!0,set:function(a,b,c,d,e,f,g,h,k){var m=this.elements;m[0]=a;m[1]=d;m[2]=g;m[3]=b;m[4]=e;m[5]=h;m[6]=c;m[7]=f;m[8]=k;return this},identity:function(){this.set(1,0,0,0,1,0,0,0,1);return this},clone:function(){return(new this.constructor).fromArray(this.elements)},copy:function(a){var b=this.elements;a=a.elements;for(var c=0;9>c;c++)b[c]=a[c];return this},setFromMatrix4:function(a){a=a.elements;this.set(a[0],a[4],a[8],a[1],a[5],a[9],a[2],a[6],a[10]); +this.radius}});Object.assign(Fa.prototype,{isMatrix3:!0,set:function(a,b,c,d,e,f,g,h,k){var m=this.elements;m[0]=a;m[1]=d;m[2]=g;m[3]=b;m[4]=e;m[5]=h;m[6]=c;m[7]=f;m[8]=k;return this},identity:function(){this.set(1,0,0,0,1,0,0,0,1);return this},clone:function(){return(new this.constructor).fromArray(this.elements)},copy:function(a){var b=this.elements;a=a.elements;for(var c=0;9>c;c++)b[c]=a[c];return this},setFromMatrix4:function(a){a=a.elements;this.set(a[0],a[4],a[8],a[1],a[5],a[9],a[2],a[6],a[10]); return this},applyToBufferAttribute:function(){var a=new p;return function(b){for(var c=0,d=b.count;cc;c++)this.elements[c]=a[c+b];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);var c=this.elements;a[b]=c[0];a[b+1]=c[1];a[b+2]=c[2];a[b+3]=c[3];a[b+4]=c[4];a[b+5]=c[5];a[b+6]=c[6];a[b+7]=c[7];a[b+8]=c[8];return a}});Object.assign(xa.prototype,{set:function(a,b){this.normal.copy(a);this.constant=b;return this},setComponents:function(a,b,c,d){this.normal.set(a,b,c);this.constant=d;return this},setFromNormalAndCoplanarPoint:function(a,b){this.normal.copy(a);this.constant= +for(var c=0;9>c;c++)this.elements[c]=a[c+b];return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);var c=this.elements;a[b]=c[0];a[b+1]=c[1];a[b+2]=c[2];a[b+3]=c[3];a[b+4]=c[4];a[b+5]=c[5];a[b+6]=c[6];a[b+7]=c[7];a[b+8]=c[8];return a}});Object.assign(va.prototype,{set:function(a,b){this.normal.copy(a);this.constant=b;return this},setComponents:function(a,b,c,d){this.normal.set(a,b,c);this.constant=d;return this},setFromNormalAndCoplanarPoint:function(a,b){this.normal.copy(a);this.constant= -b.dot(this.normal);return this},setFromCoplanarPoints:function(){var a=new p,b=new p;return function(c,d,e){d=a.subVectors(e,d).cross(b.subVectors(c,d)).normalize();this.setFromNormalAndCoplanarPoint(d,c);return this}}(),clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.normal.copy(a.normal);this.constant=a.constant;return this},normalize:function(){var a=1/this.normal.length();this.normal.multiplyScalar(a);this.constant*=a;return this},negate:function(){this.constant*= -1;this.normal.negate();return this},distanceToPoint:function(a){return this.normal.dot(a)+this.constant},distanceToSphere:function(a){return this.distanceToPoint(a.center)-a.radius},projectPoint:function(a,b){return this.orthoPoint(a,b).sub(a).negate()},orthoPoint:function(a,b){var c=this.distanceToPoint(a);return(b||new p).copy(this.normal).multiplyScalar(c)},intersectLine:function(){var a=new p;return function(b,c){var d=c||new p,e=b.delta(a),f=this.normal.dot(e);if(0===f){if(0===this.distanceToPoint(b.start))return d.copy(b.start)}else return f= --(b.start.dot(this.normal)+this.constant)/f,0>f||1b&&0a&&0f||1b&&0a&&0c;c++)b[c].copy(a.planes[c]);return this},setFromMatrix:function(a){var b=this.planes,c=a.elements;a=c[0];var d=c[1],e=c[2],f=c[3],g=c[4],h=c[5],k=c[6],m=c[7],l=c[8],q=c[9],n=c[10],r=c[11],p=c[12],t=c[13],x=c[14],c=c[15];b[0].setComponents(f-a,m-g,r-l,c-p).normalize();b[1].setComponents(f+a,m+g,r+l,c+p).normalize();b[2].setComponents(f+d,m+h,r+q,c+t).normalize();b[3].setComponents(f-d,m-h,r-q,c-t).normalize();b[4].setComponents(f-e,m-k,r-n,c-x).normalize(); -b[5].setComponents(f+e,m+k,r+n,c+x).normalize();return this},intersectsObject:function(){var a=new Ia;return function(b){var c=b.geometry;null===c.boundingSphere&&c.computeBoundingSphere();a.copy(c.boundingSphere).applyMatrix4(b.matrixWorld);return this.intersectsSphere(a)}}(),intersectsSprite:function(){var a=new Ia;return function(b){a.center.set(0,0,0);a.radius=.7071067811865476;a.applyMatrix4(b.matrixWorld);return this.intersectsSphere(a)}}(),intersectsSphere:function(a){var b=this.planes,c=a.center; +copy:function(a){for(var b=this.planes,c=0;6>c;c++)b[c].copy(a.planes[c]);return this},setFromMatrix:function(a){var b=this.planes,c=a.elements;a=c[0];var d=c[1],e=c[2],f=c[3],g=c[4],h=c[5],k=c[6],m=c[7],l=c[8],q=c[9],n=c[10],u=c[11],p=c[12],t=c[13],z=c[14],c=c[15];b[0].setComponents(f-a,m-g,u-l,c-p).normalize();b[1].setComponents(f+a,m+g,u+l,c+p).normalize();b[2].setComponents(f+d,m+h,u+q,c+t).normalize();b[3].setComponents(f-d,m-h,u-q,c-t).normalize();b[4].setComponents(f-e,m-k,u-n,c-z).normalize(); +b[5].setComponents(f+e,m+k,u+n,c+z).normalize();return this},intersectsObject:function(){var a=new Ba;return function(b){var c=b.geometry;null===c.boundingSphere&&c.computeBoundingSphere();a.copy(c.boundingSphere).applyMatrix4(b.matrixWorld);return this.intersectsSphere(a)}}(),intersectsSprite:function(){var a=new Ba;return function(b){a.center.set(0,0,0);a.radius=.7071067811865476;a.applyMatrix4(b.matrixWorld);return this.intersectsSphere(a)}}(),intersectsSphere:function(a){var b=this.planes,c=a.center; a=-a.radius;for(var d=0;6>d;d++)if(b[d].distanceToPoint(c)e;e++){var f=d[e];a.x=0g&&0>f)return!1}return!0}}(),containsPoint:function(a){for(var b= this.planes,c=0;6>c;c++)if(0>b[c].distanceToPoint(a))return!1;return!0}});Object.assign(fb.prototype,{set:function(a,b){this.origin.copy(a);this.direction.copy(b);return this},clone:function(){return(new this.constructor).copy(this)},copy:function(a){this.origin.copy(a.origin);this.direction.copy(a.direction);return this},at:function(a,b){return(b||new p).copy(this.direction).multiplyScalar(a).add(this.origin)},lookAt:function(a){this.direction.copy(a).sub(this.origin).normalize();return this},recast:function(){var a= new p;return function(b){this.origin.copy(this.at(b,a));return this}}(),closestPointToPoint:function(a,b){var c=b||new p;c.subVectors(a,this.origin);var d=c.dot(this.direction);return 0>d?c.copy(this.origin):c.copy(this.direction).multiplyScalar(d).add(this.origin)},distanceToPoint:function(a){return Math.sqrt(this.distanceSqToPoint(a))},distanceSqToPoint:function(){var a=new p;return function(b){var c=a.subVectors(b,this.origin).dot(this.direction);if(0>c)return this.origin.distanceToSquared(b); -a.copy(this.direction).multiplyScalar(c).add(this.origin);return a.distanceToSquared(b)}}(),distanceSqToSegment:function(){var a=new p,b=new p,c=new p;return function(d,e,f,g){a.copy(d).add(e).multiplyScalar(.5);b.copy(e).sub(d).normalize();c.copy(this.origin).sub(a);var h=.5*d.distanceTo(e),k=-this.direction.dot(b),m=c.dot(this.direction),l=-c.dot(b),q=c.lengthSq(),n=Math.abs(1-k*k),r;0=-r?e<=r?(h=1/n,d*=h,e*=h,k=d*(d+k*e+2*m)+e*(k*d+e+2*l)+q):(e=h,d=Math.max(0,-(k* -e+m)),k=-d*d+e*(e+2*l)+q):(e=-h,d=Math.max(0,-(k*e+m)),k=-d*d+e*(e+2*l)+q):e<=-r?(d=Math.max(0,-(-k*h+m)),e=0=-u?e<=u?(h=1/n,d*=h,e*=h,k=d*(d+k*e+2*m)+e*(k*d+e+2*l)+q):(e=h,d=Math.max(0,-(k* +e+m)),k=-d*d+e*(e+2*l)+q):(e=-h,d=Math.max(0,-(k*e+m)),k=-d*d+e*(e+2*l)+q):e<=-u?(d=Math.max(0,-(-k*h+m)),e=0f)return null;f=Math.sqrt(f-e);e=d-f;d+=f;return 0>e&&0>d?null:0>e?this.at(d,c):this.at(e,c)}}(),intersectsSphere:function(a){return this.distanceToPoint(a.center)<=a.radius},distanceToPlane:function(a){var b=a.normal.dot(this.direction);if(0===b)return 0===a.distanceToPoint(this.origin)?0:null;a=-(this.origin.dot(a.normal)+a.constant)/b;return 0<=a?a:null},intersectPlane:function(a, b){var c=this.distanceToPlane(a);return null===c?null:this.at(c,b)},intersectsPlane:function(a){var b=a.distanceToPoint(this.origin);return 0===b||0>a.normal.dot(this.direction)*b?!0:!1},intersectBox:function(a,b){var c,d,e,f,g;d=1/this.direction.x;f=1/this.direction.y;g=1/this.direction.z;var h=this.origin;0<=d?(c=(a.min.x-h.x)*d,d*=a.max.x-h.x):(c=(a.max.x-h.x)*d,d*=a.min.x-h.x);0<=f?(e=(a.min.y-h.y)*f,f*=a.max.y-h.y):(e=(a.max.y-h.y)*f,f*=a.min.y-h.y);if(c>f||e>d)return null;if(e>c||c!==c)c=e; if(fg||e>d)return null;if(e>c||c!==c)c=e;if(gd?null:this.at(0<=c?c:d,b)},intersectsBox:function(){var a=new p;return function(b){return null!==this.intersectBox(b,a)}}(),intersectTriangle:function(){var a=new p,b=new p,c=new p,d=new p;return function(e,f,g,h,k){b.subVectors(f,e);c.subVectors(g,e);d.crossVectors(b,c);f=this.direction.dot(d);if(0f)h= @@ -471,15 +472,15 @@ if(fMath.abs(g)? (this._x=Math.atan2(-m,e),this._z=Math.atan2(-f,a)):(this._x=Math.atan2(q,k),this._z=0)):"YXZ"===b?(this._x=Math.asin(-d(m,-1,1)),.99999>Math.abs(m)?(this._y=Math.atan2(g,e),this._z=Math.atan2(h,k)):(this._y=Math.atan2(-l,a),this._z=0)):"ZXY"===b?(this._x=Math.asin(d(q,-1,1)),.99999>Math.abs(q)?(this._y=Math.atan2(-l,e),this._z=Math.atan2(-f,k)):(this._y=0,this._z=Math.atan2(h,a))):"ZYX"===b?(this._y=Math.asin(-d(l,-1,1)),.99999>Math.abs(l)?(this._x=Math.atan2(q,e),this._z=Math.atan2(h,a)):(this._x= 0,this._z=Math.atan2(-f,k))):"YZX"===b?(this._z=Math.asin(d(h,-1,1)),.99999>Math.abs(h)?(this._x=Math.atan2(-m,k),this._y=Math.atan2(-l,a)):(this._x=0,this._y=Math.atan2(g,e))):"XZY"===b?(this._z=Math.asin(-d(f,-1,1)),.99999>Math.abs(f)?(this._x=Math.atan2(q,k),this._y=Math.atan2(g,a)):(this._x=Math.atan2(-m,e),this._y=0)):console.warn("THREE.Euler: .setFromRotationMatrix() given unsupported order: "+b);this._order=b;if(!1!==c)this.onChangeCallback();return this},setFromQuaternion:function(){var a= -new S;return function(b,c,d){a.makeRotationFromQuaternion(b);return this.setFromRotationMatrix(a,c,d)}}(),setFromVector3:function(a,b){return this.set(a.x,a.y,a.z,b||this._order)},reorder:function(){var a=new oa;return function(b){a.setFromEuler(this);return this.setFromQuaternion(a,b)}}(),equals:function(a){return a._x===this._x&&a._y===this._y&&a._z===this._z&&a._order===this._order},fromArray:function(a){this._x=a[0];this._y=a[1];this._z=a[2];void 0!==a[3]&&(this._order=a[3]);this.onChangeCallback(); -return this},toArray:function(a,b){void 0===a&&(a=[]);void 0===b&&(b=0);a[b]=this._x;a[b+1]=this._y;a[b+2]=this._z;a[b+3]=this._order;return a},toVector3:function(a){return a?a.set(this._x,this._y,this._z):new p(this._x,this._y,this._z)},onChange:function(a){this.onChangeCallback=a;return this},onChangeCallback:function(){}});Object.assign(Pd.prototype,{set:function(a){this.mask=1<=b.x+b.y}}()});Object.assign(Sa.prototype,{set:function(a,b,c){this.a.copy(a);this.b.copy(b);this.c.copy(c);return this},setFromPointsAndIndices:function(a,b,c,d){this.a.copy(a[b]);this.b.copy(a[c]);this.c.copy(a[d]);return this},clone:function(){return(new this.constructor).copy(this)}, -copy:function(a){this.a.copy(a.a);this.b.copy(a.b);this.c.copy(a.c);return this},area:function(){var a=new p,b=new p;return function(){a.subVectors(this.c,this.b);b.subVectors(this.a,this.b);return.5*a.cross(b).length()}}(),midpoint:function(a){return(a||new p).addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)},normal:function(a){return Sa.normal(this.a,this.b,this.c,a)},plane:function(a){return(a||new xa).setFromCoplanarPoints(this.a,this.b,this.c)},barycoordFromPoint:function(a,b){return Sa.barycoordFromPoint(a, -this.a,this.b,this.c,b)},containsPoint:function(a){return Sa.containsPoint(a,this.a,this.b,this.c)},closestPointToPoint:function(){var a=new xa,b=[new Db,new Db,new Db],c=new p,d=new p;return function(e,f){var g=f||new p,h=Infinity;a.setFromCoplanarPoints(this.a,this.b,this.c);a.projectPoint(e,c);if(!0===this.containsPoint(c))g.copy(c);else{b[0].set(this.a,this.b);b[1].set(this.b,this.c);b[2].set(this.c,this.a);for(var k=0;kd;d++)if(e[d]===e[(d+1)%3]){a.push(f);break}for(f=a.length-1;0<=f;f--)for(e=a[f],this.faces.splice(e,1),c=0,g=this.faceVertexUvs.length;cb.far?null:{distance:c,point:y.clone(),object:a}}function c(c,d,e,f,m,l,u,q){g.fromBufferAttribute(f,l);h.fromBufferAttribute(f,u);k.fromBufferAttribute(f,q);if(c=b(c,d,e,g,h,k,x))m&&(n.fromBufferAttribute(m,l),r.fromBufferAttribute(m,u),z.fromBufferAttribute(m,q),c.uv=a(x,g,h,k,n,r,z)),c.face=new Ta(l,u,q,Sa.normal(g, -h,k)),c.faceIndex=l;return c}var d=new S,e=new fb,f=new Ia,g=new p,h=new p,k=new p,m=new p,l=new p,q=new p,n=new F,r=new F,z=new F,t=new p,x=new p,y=new p;return function(p,t){var v=this.geometry,y=this.material,M=this.matrixWorld;if(void 0!==y&&(null===v.boundingSphere&&v.computeBoundingSphere(),f.copy(v.boundingSphere),f.applyMatrix4(M),!1!==p.ray.intersectsSphere(f)&&(d.getInverse(M),e.copy(p.ray).applyMatrix4(d),null===v.boundingBox||!1!==e.intersectsBox(v.boundingBox)))){var D;if(v.isBufferGeometry){var A, -F,y=v.index,C=v.attributes.position,M=v.attributes.uv,I,E;if(null!==y)for(I=0,E=y.count;If||(f=d.ray.origin.distanceTo(a),fd.far||e.push({distance:f,point:a.clone(),face:null,object:this}))}}(),clone:function(){return(new this.constructor(this.material)).copy(this)}}); -xc.prototype=Object.assign(Object.create(C.prototype),{constructor:xc,copy:function(a){C.prototype.copy.call(this,a,!1);a=a.levels;for(var b=0,c=a.length;bb.far?null:{distance:c,point:x.clone(),object:a}}function c(c,d,e,f,m,l,r,q){g.fromBufferAttribute(f,l);h.fromBufferAttribute(f,r);k.fromBufferAttribute(f,q);if(c=b(c,d,e,g,h,k,z))m&&(n.fromBufferAttribute(m,l),u.fromBufferAttribute(m,r),y.fromBufferAttribute(m,q),c.uv=a(z,g,h,k,n,u,y)),c.face=new Ta(l,r,q,Sa.normal(g, +h,k)),c.faceIndex=l;return c}var d=new S,e=new fb,f=new Ba,g=new p,h=new p,k=new p,m=new p,l=new p,q=new p,n=new D,u=new D,y=new D,t=new p,z=new p,x=new p;return function(t,p){var w=this.geometry,x=this.material,C=this.matrixWorld;if(void 0!==x&&(null===w.boundingSphere&&w.computeBoundingSphere(),f.copy(w.boundingSphere),f.applyMatrix4(C),!1!==t.ray.intersectsSphere(f)&&(d.getInverse(C),e.copy(t.ray).applyMatrix4(d),null===w.boundingBox||!1!==e.intersectsBox(w.boundingBox)))){var F;if(w.isBufferGeometry){var G, +D,x=w.index,B=w.attributes.position,C=w.attributes.uv,E,I;if(null!==x)for(E=0,I=x.count;Ef||(f=d.ray.origin.distanceTo(a),fd.far||e.push({distance:f,point:a.clone(),face:null,object:this}))}}(),clone:function(){return(new this.constructor(this.material)).copy(this)}}); +xc.prototype=Object.assign(Object.create(B.prototype),{constructor:xc,copy:function(a){B.prototype.copy.call(this,a,!1);a=a.levels;for(var b=0,c=a.length;b=d[e].distance)d[e-1].object.visible=!1,d[e].object.visible=!0;else break; -for(;ef||(l.applyMatrix4(this.matrixWorld),t=d.ray.origin.distanceTo(l),td.far||e.push({distance:t,point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}else for(g=0,z=r.length/3-1;gf||(l.applyMatrix4(this.matrixWorld),t=d.ray.origin.distanceTo(l),td.far||e.push({distance:t,point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}else if(g.isGeometry)for(k=g.vertices,m=k.length,g=0;gf||(l.applyMatrix4(this.matrixWorld),t=d.ray.origin.distanceTo(l),td.far||e.push({distance:t,point:h.clone().applyMatrix4(this.matrixWorld), -index:g,face:null,faceIndex:null,object:this}))}}}(),clone:function(){return(new this.constructor(this.geometry,this.material)).copy(this)}});U.prototype=Object.assign(Object.create(Da.prototype),{constructor:U,isLineSegments:!0});md.prototype=Object.assign(Object.create(Da.prototype),{constructor:md,isLineLoop:!0});za.prototype=Object.create(W.prototype);za.prototype.constructor=za;za.prototype.isPointsMaterial=!0;za.prototype.copy=function(a){W.prototype.copy.call(this,a);this.color.copy(a.color); -this.map=a.map;this.size=a.size;this.sizeAttenuation=a.sizeAttenuation;return this};Ib.prototype=Object.assign(Object.create(C.prototype),{constructor:Ib,isPoints:!0,raycast:function(){var a=new S,b=new fb,c=new Ia;return function(d,e){function f(a,c){var f=b.distanceSqToPoint(a);if(fd.far||e.push({distance:m,distanceToRay:Math.sqrt(f),point:h.clone(),index:c,face:null,object:g})}}var g=this,h=this.geometry, -k=this.matrixWorld,m=d.params.Points.threshold;null===h.boundingSphere&&h.computeBoundingSphere();c.copy(h.boundingSphere);c.applyMatrix4(k);c.radius+=m;if(!1!==d.ray.intersectsSphere(c)){a.getInverse(k);b.copy(d.ray).applyMatrix4(a);var m=m/((this.scale.x+this.scale.y+this.scale.z)/3),l=m*m,m=new p;if(h.isBufferGeometry){var q=h.index,h=h.attributes.position.array;if(null!==q)for(var n=q.array,q=0,r=n.length;qc)return null;var d=[],e=[],f=[],g,h,k;if(0=m--){console.warn("THREE.ShapeUtils: Unable to triangulate polygon! in triangulate()");break}g=h;c<=g&&(g=0);h=g+1;c<=h&&(h=0);k=h+1;c<=k&&(k=0);var l;a:{var q,n,p,z,t,x,y,w;q=a[e[g]].x;n=a[e[g]].y;p=a[e[h]].x;z=a[e[h]].y;t=a[e[k]].x;x=a[e[k]].y;if(0>=(p-q)*(x-n)-(z-n)*(t-q))l=!1;else{var H,v,O,F,D,A,C,E,I,J;H=t-p;v=x-z;O=q-t;F=n-x;D=p-q;A=z-n; -for(l=0;l=-Number.EPSILON&&E>=-Number.EPSILON&&C>=-Number.EPSILON)){l=!1;break a}l=!0}}if(l){d.push([a[e[g]],a[e[h]],a[e[k]]]);f.push([e[g],e[h],e[k]]);g=h;for(k=h+1;kNumber.EPSILON){if(0q||q>u)return[];k=m*l-k*n;if(0>k||k>u)return[]}else{if(0c?[]:k===c?f?[]:[g]:a<=c?[g,h]:[g,m]}function f(a,b,c,d){var e=b.x-a.x,f=b.y-a.y;b=c.x-a.x; +b;if(this.geometry&&this.geometry.isGeometry)for(b=0;bf||(l.applyMatrix4(this.matrixWorld),t=d.ray.origin.distanceTo(l),td.far||e.push({distance:t,point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}else for(g=0,y=u.length/3-1;gf||(l.applyMatrix4(this.matrixWorld),t=d.ray.origin.distanceTo(l),td.far||e.push({distance:t,point:h.clone().applyMatrix4(this.matrixWorld),index:g,face:null,faceIndex:null,object:this}))}else if(g.isGeometry)for(k=g.vertices,m=k.length,g=0;gf||(l.applyMatrix4(this.matrixWorld),t=d.ray.origin.distanceTo(l),td.far||e.push({distance:t,point:h.clone().applyMatrix4(this.matrixWorld), +index:g,face:null,faceIndex:null,object:this}))}}}(),clone:function(){return(new this.constructor(this.geometry,this.material)).copy(this)}});X.prototype=Object.assign(Object.create(Ja.prototype),{constructor:X,isLineSegments:!0});ld.prototype=Object.assign(Object.create(Ja.prototype),{constructor:ld,isLineLoop:!0});Ka.prototype=Object.create(K.prototype);Ka.prototype.constructor=Ka;Ka.prototype.isPointsMaterial=!0;Ka.prototype.copy=function(a){K.prototype.copy.call(this,a);this.color.copy(a.color); +this.map=a.map;this.size=a.size;this.sizeAttenuation=a.sizeAttenuation;return this};Ib.prototype=Object.assign(Object.create(B.prototype),{constructor:Ib,isPoints:!0,raycast:function(){var a=new S,b=new fb,c=new Ba;return function(d,e){function f(a,c){var f=b.distanceSqToPoint(a);if(fd.far||e.push({distance:m,distanceToRay:Math.sqrt(f),point:h.clone(),index:c,face:null,object:g})}}var g=this,h=this.geometry, +k=this.matrixWorld,m=d.params.Points.threshold;null===h.boundingSphere&&h.computeBoundingSphere();c.copy(h.boundingSphere);c.applyMatrix4(k);c.radius+=m;if(!1!==d.ray.intersectsSphere(c)){a.getInverse(k);b.copy(d.ray).applyMatrix4(a);var m=m/((this.scale.x+this.scale.y+this.scale.z)/3),l=m*m,m=new p;if(h.isBufferGeometry){var q=h.index,h=h.attributes.position.array;if(null!==q)for(var n=q.array,q=0,u=n.length;qc)return null;var d=[],e=[],f=[],g,h,k;if(0=m--){console.warn("THREE.ShapeUtils: Unable to triangulate polygon! in triangulate()");break}g=h;c<=g&&(g=0);h=g+1;c<=h&&(h=0);k=h+1;c<=k&&(k=0);var l;a:{var q,n,u,p,t,z,x,v;q=a[e[g]].x;n=a[e[g]].y;u=a[e[h]].x;p=a[e[h]].y;t=a[e[k]].x;z=a[e[k]].y;if(0>=(u-q)*(z-n)-(p-n)*(t-q))l=!1;else{var J,w,N,C,F,G,D,E,B,I;J=t-u;w=z-p;N=q-t;C=n-z;F=u-q;G=p-n; +for(l=0;l=-Number.EPSILON&&E>=-Number.EPSILON&&D>=-Number.EPSILON)){l=!1;break a}l=!0}}if(l){d.push([a[e[g]],a[e[h]],a[e[k]]]);f.push([e[g],e[h],e[k]]);g=h;for(k=h+1;kNumber.EPSILON){if(0q||q>r)return[];k=m*l-k*n;if(0>k||k>r)return[]}else{if(0c?[]:k===c?f?[]:[g]:a<=c?[g,h]:[g,m]}function f(a,b,c,d){var e=b.x-a.x,f=b.y-a.y;b=c.x-a.x; c=c.y-a.y;var g=d.x-a.x;d=d.y-a.y;a=e*c-f*b;e=e*d-f*g;return Math.abs(a)>Number.EPSILON?(b=g*c-d*b,0e&&(e=d);var g=a+1;g>d&&(g=0);d=f(h[a],h[e],h[g],k[b]);if(!d)return!1;d=k.length- -1;e=b-1;0>e&&(e=d);g=b+1;g>d&&(g=0);return(d=f(k[b],k[e],k[g],h[a]))?!0:!1}function d(a,b){var c,f;for(c=0;cL){console.log("Infinite Loop! Holes left:"+ -m.length+", Probably Hole outside Shape!");break}for(n=C;nk;k++)l=m[k].x+":"+m[k].y,l=q[l],void 0!== -l&&(m[k]=l);return n.concat()},isClockWise:function(a){return 0>ta.area(a)}};cb.prototype=Object.create(L.prototype);cb.prototype.constructor=cb;sa.prototype=Object.create(J.prototype);sa.prototype.constructor=sa;sa.prototype.getArrays=function(){var a=this.getAttribute("position"),a=a?Array.prototype.slice.call(a.array):[],b=this.getAttribute("uv"),b=b?Array.prototype.slice.call(b.array):[],c=this.index,c=c?Array.prototype.slice.call(c.array):[];return{position:a,uv:b,index:c}};sa.prototype.addShapeList= -function(a,b){var c=a.length;b.arrays=this.getArrays();for(var d=0;dNumber.EPSILON){var k= -Math.sqrt(h),m=Math.sqrt(d*d+g*g),h=b.x-f/k;b=b.y+e/k;g=((c.x-g/m-h)*g-(c.y+d/m-b)*d)/(e*g-f*d);d=h+e*g-a.x;e=b+f*g-a.y;f=d*d+e*e;if(2>=f)return new F(d,e);f=Math.sqrt(f/2)}else a=!1,e>Number.EPSILON?d>Number.EPSILON&&(a=!0):e<-Number.EPSILON?d<-Number.EPSILON&&(a=!0):Math.sign(f)===Math.sign(g)&&(a=!0),a?(d=-f,f=Math.sqrt(h)):(d=e,e=f,f=Math.sqrt(h/2));return new F(d/f,e/f)}function e(a,b){var c,d;for(Q=a.length;0<=--Q;){c=Q;d=Q-1;0>d&&(d=a.length-1);var e,f=H+2*x;for(e=0;eMath.abs(g-k)?[new F(a,1-c),new F(h, -1-d),new F(m,1-e),new F(q,1-b)]:[new F(g,1-c),new F(k,1-d),new F(l,1-e),new F(n,1-b)]}};Kc.prototype=Object.create(L.prototype);Kc.prototype.constructor=Kc;Sb.prototype=Object.create(sa.prototype);Sb.prototype.constructor=Sb;Lc.prototype=Object.create(L.prototype);Lc.prototype.constructor=Lc;lb.prototype=Object.create(J.prototype);lb.prototype.constructor=lb;Mc.prototype=Object.create(L.prototype);Mc.prototype.constructor=Mc;Tb.prototype=Object.create(J.prototype);Tb.prototype.constructor=Tb;Nc.prototype= -Object.create(L.prototype);Nc.prototype.constructor=Nc;Ub.prototype=Object.create(J.prototype);Ub.prototype.constructor=Ub;Vb.prototype=Object.create(L.prototype);Vb.prototype.constructor=Vb;Wb.prototype=Object.create(J.prototype);Wb.prototype.constructor=Wb;Xb.prototype=Object.create(J.prototype);Xb.prototype.constructor=Xb;mb.prototype=Object.create(L.prototype);mb.prototype.constructor=mb;Ua.prototype=Object.create(J.prototype);Ua.prototype.constructor=Ua;Oc.prototype=Object.create(mb.prototype); -Oc.prototype.constructor=Oc;Pc.prototype=Object.create(Ua.prototype);Pc.prototype.constructor=Pc;Qc.prototype=Object.create(L.prototype);Qc.prototype.constructor=Qc;Yb.prototype=Object.create(J.prototype);Yb.prototype.constructor=Yb;var Oa=Object.freeze({WireframeGeometry:Kb,ParametricGeometry:Bc,ParametricBufferGeometry:Lb,TetrahedronGeometry:Dc,TetrahedronBufferGeometry:Mb,OctahedronGeometry:Ec,OctahedronBufferGeometry:kb,IcosahedronGeometry:Fc,IcosahedronBufferGeometry:Nb,DodecahedronGeometry:Gc, -DodecahedronBufferGeometry:Ob,PolyhedronGeometry:Cc,PolyhedronBufferGeometry:qa,TubeGeometry:Hc,TubeBufferGeometry:Pb,TorusKnotGeometry:Ic,TorusKnotBufferGeometry:Qb,TorusGeometry:Jc,TorusBufferGeometry:Rb,TextGeometry:Kc,TextBufferGeometry:Sb,SphereGeometry:Lc,SphereBufferGeometry:lb,RingGeometry:Mc,RingBufferGeometry:Tb,PlaneGeometry:uc,PlaneBufferGeometry:jb,LatheGeometry:Nc,LatheBufferGeometry:Ub,ShapeGeometry:Vb,ShapeBufferGeometry:Wb,ExtrudeGeometry:cb,ExtrudeBufferGeometry:sa,EdgesGeometry:Xb, -ConeGeometry:Oc,ConeBufferGeometry:Pc,CylinderGeometry:mb,CylinderBufferGeometry:Ua,CircleGeometry:Qc,CircleBufferGeometry:Yb,BoxGeometry:Eb,BoxBufferGeometry:ib});Zb.prototype=Object.create(Ca.prototype);Zb.prototype.constructor=Zb;Zb.prototype.isShadowMaterial=!0;$b.prototype=Object.create(Ca.prototype);$b.prototype.constructor=$b;$b.prototype.isRawShaderMaterial=!0;Pa.prototype=Object.create(W.prototype);Pa.prototype.constructor=Pa;Pa.prototype.isMeshStandardMaterial=!0;Pa.prototype.copy=function(a){W.prototype.copy.call(this, +1;e=b-1;0>e&&(e=d);g=b+1;g>d&&(g=0);return(d=f(k[b],k[e],k[g],h[a]))?!0:!1}function d(a,b){var c,f;for(c=0;cP){console.log("Infinite Loop! Holes left:"+ +m.length+", Probably Hole outside Shape!");break}for(n=E;nk;k++)l=m[k].x+":"+m[k].y,l=q[l],void 0!== +l&&(m[k]=l);return n.concat()},isClockWise:function(a){return 0>ya.area(a)}};cb.prototype=Object.create(P.prototype);cb.prototype.constructor=cb;Ea.prototype=Object.create(H.prototype);Ea.prototype.constructor=Ea;Ea.prototype.getArrays=function(){var a=this.getAttribute("position"),a=a?Array.prototype.slice.call(a.array):[],b=this.getAttribute("uv"),b=b?Array.prototype.slice.call(b.array):[],c=this.index,c=c?Array.prototype.slice.call(c.array):[];return{position:a,uv:b,index:c}};Ea.prototype.addShapeList= +function(a,b){var c=a.length;b.arrays=this.getArrays();for(var d=0;dNumber.EPSILON){var k= +Math.sqrt(h),m=Math.sqrt(d*d+g*g),h=b.x-f/k;b=b.y+e/k;g=((c.x-g/m-h)*g-(c.y+d/m-b)*d)/(e*g-f*d);d=h+e*g-a.x;e=b+f*g-a.y;f=d*d+e*e;if(2>=f)return new D(d,e);f=Math.sqrt(f/2)}else a=!1,e>Number.EPSILON?d>Number.EPSILON&&(a=!0):e<-Number.EPSILON?d<-Number.EPSILON&&(a=!0):Math.sign(f)===Math.sign(g)&&(a=!0),a?(d=-f,f=Math.sqrt(h)):(d=e,e=f,f=Math.sqrt(h/2));return new D(d/f,e/f)}function e(a,b){var c,d;for(M=a.length;0<=--M;){c=M;d=M-1;0>d&&(d=a.length-1);var e,f=J+2*z;for(e=0;eMath.abs(g-k)?[new D(a,1-c),new D(h, +1-d),new D(m,1-e),new D(q,1-b)]:[new D(g,1-c),new D(k,1-d),new D(l,1-e),new D(n,1-b)]}};Kc.prototype=Object.create(P.prototype);Kc.prototype.constructor=Kc;Sb.prototype=Object.create(Ea.prototype);Sb.prototype.constructor=Sb;Lc.prototype=Object.create(P.prototype);Lc.prototype.constructor=Lc;lb.prototype=Object.create(H.prototype);lb.prototype.constructor=lb;Mc.prototype=Object.create(P.prototype);Mc.prototype.constructor=Mc;Tb.prototype=Object.create(H.prototype);Tb.prototype.constructor=Tb;Nc.prototype= +Object.create(P.prototype);Nc.prototype.constructor=Nc;Ub.prototype=Object.create(H.prototype);Ub.prototype.constructor=Ub;Vb.prototype=Object.create(P.prototype);Vb.prototype.constructor=Vb;Wb.prototype=Object.create(H.prototype);Wb.prototype.constructor=Wb;Xb.prototype=Object.create(H.prototype);Xb.prototype.constructor=Xb;mb.prototype=Object.create(P.prototype);mb.prototype.constructor=mb;Ua.prototype=Object.create(H.prototype);Ua.prototype.constructor=Ua;Oc.prototype=Object.create(mb.prototype); +Oc.prototype.constructor=Oc;Pc.prototype=Object.create(Ua.prototype);Pc.prototype.constructor=Pc;Qc.prototype=Object.create(P.prototype);Qc.prototype.constructor=Qc;Yb.prototype=Object.create(H.prototype);Yb.prototype.constructor=Yb;var La=Object.freeze({WireframeGeometry:Kb,ParametricGeometry:Bc,ParametricBufferGeometry:Lb,TetrahedronGeometry:Dc,TetrahedronBufferGeometry:Mb,OctahedronGeometry:Ec,OctahedronBufferGeometry:kb,IcosahedronGeometry:Fc,IcosahedronBufferGeometry:Nb,DodecahedronGeometry:Gc, +DodecahedronBufferGeometry:Ob,PolyhedronGeometry:Cc,PolyhedronBufferGeometry:na,TubeGeometry:Hc,TubeBufferGeometry:Pb,TorusKnotGeometry:Ic,TorusKnotBufferGeometry:Qb,TorusGeometry:Jc,TorusBufferGeometry:Rb,TextGeometry:Kc,TextBufferGeometry:Sb,SphereGeometry:Lc,SphereBufferGeometry:lb,RingGeometry:Mc,RingBufferGeometry:Tb,PlaneGeometry:uc,PlaneBufferGeometry:jb,LatheGeometry:Nc,LatheBufferGeometry:Ub,ShapeGeometry:Vb,ShapeBufferGeometry:Wb,ExtrudeGeometry:cb,ExtrudeBufferGeometry:Ea,EdgesGeometry:Xb, +ConeGeometry:Oc,ConeBufferGeometry:Pc,CylinderGeometry:mb,CylinderBufferGeometry:Ua,CircleGeometry:Qc,CircleBufferGeometry:Yb,BoxGeometry:Eb,BoxBufferGeometry:ib});Zb.prototype=Object.create(Da.prototype);Zb.prototype.constructor=Zb;Zb.prototype.isShadowMaterial=!0;$b.prototype=Object.create(Da.prototype);$b.prototype.constructor=$b;$b.prototype.isRawShaderMaterial=!0;Pa.prototype=Object.create(K.prototype);Pa.prototype.constructor=Pa;Pa.prototype.isMeshStandardMaterial=!0;Pa.prototype.copy=function(a){K.prototype.copy.call(this, a);this.defines={STANDARD:""};this.color.copy(a.color);this.roughness=a.roughness;this.metalness=a.metalness;this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity=a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive);this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap; this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.roughnessMap=a.roughnessMap;this.metalnessMap=a.metalnessMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.envMapIntensity=a.envMapIntensity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals= -a.morphNormals;return this};nb.prototype=Object.create(Pa.prototype);nb.prototype.constructor=nb;nb.prototype.isMeshPhysicalMaterial=!0;nb.prototype.copy=function(a){Pa.prototype.copy.call(this,a);this.defines={PHYSICAL:""};this.reflectivity=a.reflectivity;this.clearCoat=a.clearCoat;this.clearCoatRoughness=a.clearCoatRoughness;return this};Ha.prototype=Object.create(W.prototype);Ha.prototype.constructor=Ha;Ha.prototype.isMeshPhongMaterial=!0;Ha.prototype.copy=function(a){W.prototype.copy.call(this, +a.morphNormals;return this};nb.prototype=Object.create(Pa.prototype);nb.prototype.constructor=nb;nb.prototype.isMeshPhysicalMaterial=!0;nb.prototype.copy=function(a){Pa.prototype.copy.call(this,a);this.defines={PHYSICAL:""};this.reflectivity=a.reflectivity;this.clearCoat=a.clearCoat;this.clearCoatRoughness=a.clearCoatRoughness;return this};ra.prototype=Object.create(K.prototype);ra.prototype.constructor=ra;ra.prototype.isMeshPhongMaterial=!0;ra.prototype.copy=function(a){K.prototype.copy.call(this, a);this.color.copy(a.color);this.specular.copy(a.specular);this.shininess=a.shininess;this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity=a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive);this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap;this.displacementScale= a.displacementScale;this.displacementBias=a.displacementBias;this.specularMap=a.specularMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.combine=a.combine;this.reflectivity=a.reflectivity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};ob.prototype= -Object.create(Ha.prototype);ob.prototype.constructor=ob;ob.prototype.isMeshToonMaterial=!0;ob.prototype.copy=function(a){Ha.prototype.copy.call(this,a);this.gradientMap=a.gradientMap;return this};pb.prototype=Object.create(W.prototype);pb.prototype.constructor=pb;pb.prototype.isMeshNormalMaterial=!0;pb.prototype.copy=function(a){W.prototype.copy.call(this,a);this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap; -this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};qb.prototype=Object.create(W.prototype);qb.prototype.constructor=qb;qb.prototype.isMeshLambertMaterial=!0;qb.prototype.copy=function(a){W.prototype.copy.call(this,a);this.color.copy(a.color);this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity= +Object.create(ra.prototype);ob.prototype.constructor=ob;ob.prototype.isMeshToonMaterial=!0;ob.prototype.copy=function(a){ra.prototype.copy.call(this,a);this.gradientMap=a.gradientMap;return this};pb.prototype=Object.create(K.prototype);pb.prototype.constructor=pb;pb.prototype.isMeshNormalMaterial=!0;pb.prototype.copy=function(a){K.prototype.copy.call(this,a);this.bumpMap=a.bumpMap;this.bumpScale=a.bumpScale;this.normalMap=a.normalMap;this.normalScale.copy(a.normalScale);this.displacementMap=a.displacementMap; +this.displacementScale=a.displacementScale;this.displacementBias=a.displacementBias;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};qb.prototype=Object.create(K.prototype);qb.prototype.constructor=qb;qb.prototype.isMeshLambertMaterial=!0;qb.prototype.copy=function(a){K.prototype.copy.call(this,a);this.color.copy(a.color);this.map=a.map;this.lightMap=a.lightMap;this.lightMapIntensity= a.lightMapIntensity;this.aoMap=a.aoMap;this.aoMapIntensity=a.aoMapIntensity;this.emissive.copy(a.emissive);this.emissiveMap=a.emissiveMap;this.emissiveIntensity=a.emissiveIntensity;this.specularMap=a.specularMap;this.alphaMap=a.alphaMap;this.envMap=a.envMap;this.combine=a.combine;this.reflectivity=a.reflectivity;this.refractionRatio=a.refractionRatio;this.wireframe=a.wireframe;this.wireframeLinewidth=a.wireframeLinewidth;this.wireframeLinecap=a.wireframeLinecap;this.wireframeLinejoin=a.wireframeLinejoin; -this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};rb.prototype=Object.create(W.prototype);rb.prototype.constructor=rb;rb.prototype.isLineDashedMaterial=!0;rb.prototype.copy=function(a){W.prototype.copy.call(this,a);this.color.copy(a.color);this.linewidth=a.linewidth;this.scale=a.scale;this.dashSize=a.dashSize;this.gapSize=a.gapSize;return this};var fg=Object.freeze({ShadowMaterial:Zb,SpriteMaterial:bb,RawShaderMaterial:$b,ShaderMaterial:Ca,PointsMaterial:za, -MeshPhysicalMaterial:nb,MeshStandardMaterial:Pa,MeshPhongMaterial:Ha,MeshToonMaterial:ob,MeshNormalMaterial:pb,MeshLambertMaterial:qb,MeshDepthMaterial:Za,MeshBasicMaterial:Ga,LineDashedMaterial:rb,LineBasicMaterial:fa,Material:W}),dd={enabled:!1,files:{},add:function(a,b){!1!==this.enabled&&(this.files[a]=b)},get:function(a){if(!1!==this.enabled)return this.files[a]},remove:function(a){delete this.files[a]},clear:function(){this.files={}}},ua=new Yd;Object.assign(Ka.prototype,{load:function(a,b, +this.skinning=a.skinning;this.morphTargets=a.morphTargets;this.morphNormals=a.morphNormals;return this};rb.prototype=Object.create(K.prototype);rb.prototype.constructor=rb;rb.prototype.isLineDashedMaterial=!0;rb.prototype.copy=function(a){K.prototype.copy.call(this,a);this.color.copy(a.color);this.linewidth=a.linewidth;this.scale=a.scale;this.dashSize=a.dashSize;this.gapSize=a.gapSize;return this};var gg=Object.freeze({ShadowMaterial:Zb,SpriteMaterial:bb,RawShaderMaterial:$b,ShaderMaterial:Da,PointsMaterial:Ka, +MeshPhysicalMaterial:nb,MeshStandardMaterial:Pa,MeshPhongMaterial:ra,MeshToonMaterial:ob,MeshNormalMaterial:pb,MeshLambertMaterial:qb,MeshDepthMaterial:Za,MeshBasicMaterial:Ha,LineDashedMaterial:rb,LineBasicMaterial:oa,Material:K}),dd={enabled:!1,files:{},add:function(a,b){!1!==this.enabled&&(this.files[a]=b)},get:function(a){if(!1!==this.enabled)return this.files[a]},remove:function(a){delete this.files[a]},clear:function(){this.files={}}},za=new Yd;Object.assign(sa.prototype,{load:function(a,b, c,d){void 0===a&&(a="");void 0!==this.path&&(a=this.path+a);var e=this,f=dd.get(a);if(void 0!==f)return e.manager.itemStart(a),setTimeout(function(){b&&b(f);e.manager.itemEnd(a)},0),f;var g=a.match(/^data:(.*?)(;base64)?,(.*)$/);if(g){var h=g[1],k=!!g[2],g=g[3],g=window.decodeURIComponent(g);k&&(g=window.atob(g));try{var m,l=(this.responseType||"").toLowerCase();switch(l){case "arraybuffer":case "blob":m=new ArrayBuffer(g.length);for(var q=new Uint8Array(m),k=0;k=e)break a;else{f=b[1];a=e)break b}d=c;c=0}}for(;c>>1,ab;)--f;++f;if(0!==e||f!==d)e>=f&&(f=Math.max(f,1),e=f-1),d=this.getValueSize(),this.times=ka.arraySlice(c,e,f),this.values=ka.arraySlice(this.values,e*d,f*d);return this},validate:function(){var a=!0,b=this.getValueSize();0!==b-Math.floor(b)&&(console.error("invalid value size in track",this),a=!1);var c=this.times,b=this.values,d=c.length;0===d&&(console.error("track is empty", -this),a=!1);for(var e=null,f=0;f!==d;f++){var g=c[f];if("number"===typeof g&&isNaN(g)){console.error("time is not a valid number",this,f,g);a=!1;break}if(null!==e&&e>g){console.error("out of order keys",this,f,g,e);a=!1;break}e=g}if(void 0!==b&&ka.isTypedArray(b))for(f=0,c=b.length;f!==c;++f)if(d=b[f],isNaN(d)){console.error("value is not a valid number",this,f,d);a=!1;break}return a},optimize:function(){for(var a=this.times,b=this.values,c=this.getValueSize(),d=2302===this.getInterpolation(),e=1, -f=a.length-1,g=1;gb;)--f;++f;if(0!==e||f!==d)e>=f&&(f=Math.max(f,1),e=f-1),d=this.getValueSize(),this.times=ta.arraySlice(c,e,f),this.values=ta.arraySlice(this.values,e*d,f*d);return this},validate:function(){var a=!0,b=this.getValueSize();0!==b-Math.floor(b)&&(console.error("invalid value size in track",this),a=!1);var c=this.times,b=this.values,d=c.length;0===d&&(console.error("track is empty", +this),a=!1);for(var e=null,f=0;f!==d;f++){var g=c[f];if("number"===typeof g&&isNaN(g)){console.error("time is not a valid number",this,f,g);a=!1;break}if(null!==e&&e>g){console.error("out of order keys",this,f,g,e);a=!1;break}e=g}if(void 0!==b&&ta.isTypedArray(b))for(f=0,c=b.length;f!==c;++f)if(d=b[f],isNaN(d)){console.error("value is not a valid number",this,f,d);a=!1;break}return a},optimize:function(){for(var a=this.times,b=this.values,c=this.getValueSize(),d=2302===this.getInterpolation(),e=1, +f=a.length-1,g=1;gm.opacity&&(m.transparent=!0);d.setTextures(k);return d.parse(m)}}()});Object.assign(be.prototype, -{load:function(a,b,c,d){var e=this,f=this.texturePath&&"string"===typeof this.texturePath?this.texturePath:cc.prototype.extractUrlBase(a),g=new Ka(this.manager);g.setWithCredentials(this.withCredentials);g.load(a,function(c){c=JSON.parse(c);var d=c.metadata;if(void 0!==d&&(d=d.type,void 0!==d)){if("object"===d.toLowerCase()){console.error("THREE.JSONLoader: "+a+" should be loaded with THREE.ObjectLoader instead.");return}if("scene"===d.toLowerCase()){console.error("THREE.JSONLoader: "+a+" should be loaded with THREE.SceneLoader instead."); -return}}c=e.parse(c,f);b(c.geometry,c.materials)},c,d)},setTexturePath:function(a){this.texturePath=a},parse:function(){return function(a,b){void 0!==a.data&&(a=a.data);a.scale=void 0!==a.scale?1/a.scale:1;var c=new L,d=a,e,f,g,h,k,m,l,q,n,r,z,t,x,y,w=d.faces;n=d.vertices;var C=d.normals,v=d.colors;m=d.scale;var E=0;if(void 0!==d.uvs){for(e=0;ef;f++)q=w[h++],y=x[2*q],q=x[2*q+1],y=new F(y,q),2!==f&&c.faceVertexUvs[e][g].push(y),0!==f&&c.faceVertexUvs[e][g+1].push(y);l&&(l=3*w[h++],r.normal.set(C[l++],C[l++],C[l]), -t.normal.copy(r.normal));if(z)for(e=0;4>e;e++)l=3*w[h++],z=new p(C[l++],C[l++],C[l]),2!==e&&r.vertexNormals.push(z),0!==e&&t.vertexNormals.push(z);m&&(m=w[h++],m=v[m],r.color.setHex(m),t.color.setHex(m));if(n)for(e=0;4>e;e++)m=w[h++],m=v[m],2!==e&&r.vertexColors.push(new G(m)),0!==e&&t.vertexColors.push(new G(m));c.faces.push(r);c.faces.push(t)}else{r=new Ta;r.a=w[h++];r.b=w[h++];r.c=w[h++];g&&(g=w[h++],r.materialIndex=g);g=c.faces.length;if(e)for(e=0;ef;f++)q=w[h++],y=x[2*q],q=x[2*q+1],y=new F(y,q),c.faceVertexUvs[e][g].push(y);l&&(l=3*w[h++],r.normal.set(C[l++],C[l++],C[l]));if(z)for(e=0;3>e;e++)l=3*w[h++],z=new p(C[l++],C[l++],C[l]),r.vertexNormals.push(z);m&&(m=w[h++],r.color.setHex(v[m]));if(n)for(e=0;3>e;e++)m=w[h++],r.vertexColors.push(new G(v[m]));c.faces.push(r)}d=a;h=void 0!==d.influencesPerVertex?d.influencesPerVertex:2;if(d.skinWeights)for(k=0,w=d.skinWeights.length;kf;f++)q=v[h++],x=z[2*q],q=z[2*q+1],x=new D(x,q),2!==f&&c.faceVertexUvs[e][g].push(x),0!==f&&c.faceVertexUvs[e][g+1].push(x);l&&(l=3*v[h++],u.normal.set(B[l++],B[l++],B[l]), +t.normal.copy(u.normal));if(y)for(e=0;4>e;e++)l=3*v[h++],y=new p(B[l++],B[l++],B[l]),2!==e&&u.vertexNormals.push(y),0!==e&&t.vertexNormals.push(y);m&&(m=v[h++],m=w[m],u.color.setHex(m),t.color.setHex(m));if(n)for(e=0;4>e;e++)m=v[h++],m=w[m],2!==e&&u.vertexColors.push(new L(m)),0!==e&&t.vertexColors.push(new L(m));c.faces.push(u);c.faces.push(t)}else{u=new Ta;u.a=v[h++];u.b=v[h++];u.c=v[h++];g&&(g=v[h++],u.materialIndex=g);g=c.faces.length;if(e)for(e=0;ef;f++)q=v[h++],x=z[2*q],q=z[2*q+1],x=new D(x,q),c.faceVertexUvs[e][g].push(x);l&&(l=3*v[h++],u.normal.set(B[l++],B[l++],B[l]));if(y)for(e=0;3>e;e++)l=3*v[h++],y=new p(B[l++],B[l++],B[l]),u.vertexNormals.push(y);m&&(m=v[h++],u.color.setHex(w[m]));if(n)for(e=0;3>e;e++)m=v[h++],u.vertexColors.push(new L(w[m]));c.faces.push(u)}d=a;h=void 0!==d.influencesPerVertex?d.influencesPerVertex:2;if(d.skinWeights)for(k=0,v=d.skinWeights.length;kk)g=d+1;else if(0b&&(b=0);1Number.EPSILON&&(g.normalize(),c=Math.acos(Y.clamp(d[k-1].dot(d[k]),-1,1)),e[k].applyMatrix4(h.makeRotationAxis(g,c))),f[k].crossVectors(d[k],e[k]);if(!0===b)for(c=Math.acos(Y.clamp(e[0].dot(e[a]),-1,1)),c/=a,0=b)return b=c[a]-b,a=this.curves[a],c=a.getLength(),a.getPointAt(0===c?0:1-b/c);a++}return null},getLength:function(){var a=this.getCurveLengths(); +(c=-c),k=1;k<=a;k++)e[k].applyMatrix4(h.makeRotationAxis(d[k],c*k)),f[k].crossVectors(d[k],e[k]);return{tangents:d,normals:e,binormals:f}}});Qa.prototype=Object.create(ha.prototype);Qa.prototype.constructor=Qa;Qa.prototype.isLineCurve=!0;Qa.prototype.getPoint=function(a){if(1===a)return this.v2.clone();var b=this.v2.clone().sub(this.v1);b.multiplyScalar(a).add(this.v1);return b};Qa.prototype.getPointAt=function(a){return this.getPoint(a)};Qa.prototype.getTangent=function(a){return this.v2.clone().sub(this.v1).normalize()}; +Uc.prototype=Object.assign(Object.create(ha.prototype),{constructor:Uc,add:function(a){this.curves.push(a)},closePath:function(){var a=this.curves[0].getPoint(0),b=this.curves[this.curves.length-1].getPoint(1);a.equals(b)||this.curves.push(new Qa(b,a))},getPoint:function(a){var b=a*this.getLength(),c=this.getCurveLengths();for(a=0;a=b)return b=c[a]-b,a=this.curves[a],c=a.getLength(),a.getPointAt(0===c?0:1-b/c);a++}return null},getLength:function(){var a=this.getCurveLengths(); return a[a.length-1]},updateArcLengths:function(){this.needsUpdate=!0;this.cacheLengths=null;this.getLengths()},getCurveLengths:function(){if(this.cacheLengths&&this.cacheLengths.length===this.curves.length)return this.cacheLengths;for(var a=[],b=0,c=0,d=this.curves.length;cc;)c+=b;for(;c>b;)c-=b;cb.length-2?b.length-1:a+1],b=b[a>b.length-3?b.length-1:a+2];return new F(Pe(c,d.x,e.x,f.x,b.x),Pe(c,d.y,e.y,f.y,b.y))};dc.prototype= -Object.create(wa.prototype);dc.prototype.constructor=dc;dc.prototype.getPoint=function(a){var b=this.v0,c=this.v1,d=this.v2,e=this.v3;return new F(wb(a,b.x,c.x,d.x,e.x),wb(a,b.y,c.y,d.y,e.y))};ec.prototype=Object.create(wa.prototype);ec.prototype.constructor=ec;ec.prototype.getPoint=function(a){var b=this.v0,c=this.v1,d=this.v2;return new F(vb(a,b.x,c.x,d.x),vb(a,b.y,c.y,d.y))};var se=Object.assign(Object.create(Uc.prototype),{fromPoints:function(a){this.moveTo(a[0].x,a[0].y);for(var b=1,c=a.length;b< -c;b++)this.lineTo(a[b].x,a[b].y)},moveTo:function(a,b){this.currentPoint.set(a,b)},lineTo:function(a,b){var c=new Qa(this.currentPoint.clone(),new F(a,b));this.curves.push(c);this.currentPoint.set(a,b)},quadraticCurveTo:function(a,b,c,d){a=new ec(this.currentPoint.clone(),new F(a,b),new F(c,d));this.curves.push(a);this.currentPoint.set(c,d)},bezierCurveTo:function(a,b,c,d,e,f){a=new dc(this.currentPoint.clone(),new F(a,b),new F(c,d),new F(e,f));this.curves.push(a);this.currentPoint.set(e,f)},splineThru:function(a){var b= +new P,c=0,d=a.length;cc;)c+=b;for(;c>b;)c-=b;cb.length-2?b.length-1:a+1],b=b[a>b.length-3?b.length-1:a+2];return new D(Qe(c,d.x,e.x,f.x,b.x),Qe(c,d.y,e.y,f.y,b.y))};dc.prototype= +Object.create(ha.prototype);dc.prototype.constructor=dc;dc.prototype.getPoint=function(a){var b=this.v0,c=this.v1,d=this.v2,e=this.v3;return new D(wb(a,b.x,c.x,d.x,e.x),wb(a,b.y,c.y,d.y,e.y))};ec.prototype=Object.create(ha.prototype);ec.prototype.constructor=ec;ec.prototype.getPoint=function(a){var b=this.v0,c=this.v1,d=this.v2;return new D(vb(a,b.x,c.x,d.x),vb(a,b.y,c.y,d.y))};var te=Object.assign(Object.create(Uc.prototype),{fromPoints:function(a){this.moveTo(a[0].x,a[0].y);for(var b=1,c=a.length;b< +c;b++)this.lineTo(a[b].x,a[b].y)},moveTo:function(a,b){this.currentPoint.set(a,b)},lineTo:function(a,b){var c=new Qa(this.currentPoint.clone(),new D(a,b));this.curves.push(c);this.currentPoint.set(a,b)},quadraticCurveTo:function(a,b,c,d){a=new ec(this.currentPoint.clone(),new D(a,b),new D(c,d));this.curves.push(a);this.currentPoint.set(c,d)},bezierCurveTo:function(a,b,c,d,e,f){a=new dc(this.currentPoint.clone(),new D(a,b),new D(c,d),new D(e,f));this.curves.push(a);this.currentPoint.set(e,f)},splineThru:function(a){var b= [this.currentPoint.clone()].concat(a),b=new xb(b);this.curves.push(b);this.currentPoint.copy(a[a.length-1])},arc:function(a,b,c,d,e,f){this.absarc(a+this.currentPoint.x,b+this.currentPoint.y,c,d,e,f)},absarc:function(a,b,c,d,e,f){this.absellipse(a,b,c,c,d,e,f)},ellipse:function(a,b,c,d,e,f,g,h){this.absellipse(a+this.currentPoint.x,b+this.currentPoint.y,c,d,e,f,g,h)},absellipse:function(a,b,c,d,e,f,g,h){a=new Va(a,b,c,d,e,f,g,h);0Number.EPSILON){if(0>l&&(g=b[f],k=-k,h=b[e],l=-l),!(a.yh.y))if(a.y===g.y){if(a.x===g.x)return!0}else{e=l*(a.x-g.x)-k*(a.y-g.y);if(0===e)return!0;0>e||(d=!d)}}else if(a.y===g.y&&(h.x<=a.x&&a.x<=g.x||g.x<=a.x&&a.x<=h.x))return!0}return d}var e=ta.isClockWise,f=this.subPaths;if(0===f.length)return[];if(!0===b)return c(f);var g,h,k,l=[];if(1===f.length)return h=f[0],k=new yb,k.curves=h.curves,l.push(k),l;var p=!e(f[0].getPoints()), -p=a?!p:p;k=[];var q=[],n=[],r=0,z;q[r]=void 0;n[r]=[];for(var t=0,x=f.length;td&&this._mixBufferRegion(c,a,3*b,1-d,b);for(var d=b,f=b+b;d!==f;++d)if(c[d]!==c[d+b]){e.setValue(c,a);break}},saveOriginalState:function(){var a=this.buffer,b=this.valueSize,c=3*b;this.binding.getValue(a,c);for(var d=b;d!==c;++d)a[d]=a[c+d%b];this.cumulativeWeight=0},restoreOriginalState:function(){this.binding.setValue(this.buffer,3*this.valueSize)},_select:function(a,b,c,d,e){if(.5<=d)for(d= -0;d!==e;++d)a[b+d]=a[c+d]},_slerp:function(a,b,c,d){oa.slerpFlat(a,b,a,b,a,c,d)},_lerp:function(a,b,c,d,e){for(var f=1-d,g=0;g!==e;++g){var h=b+g;a[h]=a[h]*f+a[c+g]*d}}});Object.assign(Se.prototype,{getValue:function(a,b){this.bind();var c=this._bindings[this._targetGroup.nCachedObjects_];void 0!==c&&c.getValue(a,b)},setValue:function(a,b){for(var c=this._bindings,d=this._targetGroup.nCachedObjects_,e=c.length;d!==e;++d)c[d].setValue(a,b)},bind:function(){for(var a=this._bindings,b=this._targetGroup.nCachedObjects_, -c=a.length;b!==c;++b)a[b].bind()},unbind:function(){for(var a=this._bindings,b=this._targetGroup.nCachedObjects_,c=a.length;b!==c;++b)a[b].unbind()}});Object.assign(ha,{Composite:Se,create:function(a,b,c){return a&&a.isAnimationObjectGroup?new ha.Composite(a,b,c):new ha(a,b,c)},parseTrackName:function(){var a=new RegExp("^"+/((?:[\w-]+[\/:])*)/.source+/([\w-\.]+)?/.source+/(?:\.([\w-]+)(?:\[(.+)\])?)?/.source+/\.([\w-]+)(?:\[(.+)\])?/.source+"$"),b=["material","materials","bones"];return function(c){var d= -a.exec(c);if(!d)throw Error("PropertyBinding: Cannot parse trackName: "+c);var d={nodeName:d[2],objectName:d[3],objectIndex:d[4],propertyName:d[5],propertyIndex:d[6]},e=d.nodeName&&d.nodeName.lastIndexOf(".");if(void 0!==e&&-1!==e){var f=d.nodeName.substring(e+1);-1!==b.indexOf(f)&&(d.nodeName=d.nodeName.substring(0,e),d.objectName=f)}if(null===d.propertyName||0===d.propertyName.length)throw Error("PropertyBinding: can not parse propertyName from trackName: "+c);return d}}(),findNode:function(a,b){if(!b|| -""===b||"root"===b||"."===b||-1===b||b===a.name||b===a.uuid)return a;if(a.skeleton){var c=function(a){for(var c=0;c=c){var q=c++,n=b[q];d[n.uuid]=p;b[p]=n;d[l]=q;b[q]=k;k=0;for(l=f;k!==l;++k){var n=e[k],r=n[p];n[p]=n[q];n[q]=r}}}this.nCachedObjects_=c},uncache:function(a){for(var b=this._objects,c=b.length,d=this.nCachedObjects_,e=this._indicesByUUID,f=this._bindings,g=f.length,h=0,k=arguments.length;h!==k;++h){var l=arguments[h].uuid,p=e[l];if(void 0!== -p)if(delete e[l],pb||0===c)return;this._startTime=null;b*=c}b*=this._updateTimeScale(a);c=this._updateTime(b);a=this._updateWeight(a);if(0c.parameterPositions[1]&& -(this.stopFading(),0===d&&(this.enabled=!1))}}return this._effectiveWeight=b},_updateTimeScale:function(a){var b=0;if(!this.paused){var b=this.timeScale,c=this._timeScaleInterpolant;if(null!==c){var d=c.evaluate(a)[0],b=b*d;a>c.parameterPositions[1]&&(this.stopWarping(),0===b?this.paused=!0:this.timeScale=b)}}return this._effectiveTimeScale=b},_updateTime:function(a){var b=this.time+a;if(0===a)return b;var c=this._clip.duration,d=this.loop,e=this._loopCount;if(2200===d)a:{if(-1===e&&(this._loopCount= -0,this._setEndings(!0,!0,!1)),b>=c)b=c;else if(0>b)b=0;else break a;this.clampWhenFinished?this.paused=!0:this.enabled=!1;this._mixer.dispatchEvent({type:"finished",action:this,direction:0>a?-1:1})}else{d=2202===d;-1===e&&(0<=a?(e=0,this._setEndings(!0,0===this.repetitions,d)):this._setEndings(0===this.repetitions,!0,d));if(b>=c||0>b){var f=Math.floor(b/c),b=b-c*f,e=e+Math.abs(f),g=this.repetitions-e;0>g?(this.clampWhenFinished?this.paused=!0:this.enabled=!1,b=0a,this._setEndings(a,!a,d)):this._setEndings(!1,!1,d),this._loopCount=e,this._mixer.dispatchEvent({type:"loop",action:this,loopDelta:f}))}if(d&&1===(e&1))return this.time=b,c-b}return this.time=b},_setEndings:function(a,b,c){var d=this._interpolantSettings;c?(d.endingStart=2401,d.endingEnd=2401):(d.endingStart=a?this.zeroSlopeAtStart?2401:2400:2402,d.endingEnd=b?this.zeroSlopeAtEnd?2401:2400:2402)},_scheduleFading:function(a,b,c){var d=this._mixer,e=d.time, -f=this._weightInterpolant;null===f&&(this._weightInterpolant=f=d._lendControlInterpolant());d=f.parameterPositions;f=f.sampleValues;d[0]=e;f[0]=b;d[1]=e+a;f[1]=c;return this}});Object.assign(Ve.prototype,Aa.prototype,{_bindAction:function(a,b){var c=a._localRoot||this._root,d=a._clip.tracks,e=d.length,f=a._propertyBindings,g=a._interpolants,h=c.uuid,k=this._bindingsByRootAndName,l=k[h];void 0===l&&(l={},k[h]=l);for(k=0;k!==e;++k){var p=d[k],q=p.name,n=l[q];if(void 0===n){n=f[k];if(void 0!==n){null=== -n._cacheIndex&&(++n.referenceCount,this._addInactiveBinding(n,h,q));continue}n=new je(ha.create(c,q,b&&b._propertyBindings[k].binding.parsedPath),p.ValueTypeName,p.getValueSize());++n.referenceCount;this._addInactiveBinding(n,h,q)}f[k]=n;g[k].resultBuffer=n.buffer}},_activateAction:function(a){if(!this._isActiveAction(a)){if(null===a._cacheIndex){var b=(a._localRoot||this._root).uuid,c=a._clip.uuid,d=this._actionsByClip[c];this._bindAction(a,d&&d.knownActions[0]);this._addInactiveAction(a,c,b)}b= -a._propertyBindings;c=0;for(d=b.length;c!==d;++c){var e=b[c];0===e.useCount++&&(this._lendBinding(e),e.saveOriginalState())}this._lendAction(a)}},_deactivateAction:function(a){if(this._isActiveAction(a)){for(var b=a._propertyBindings,c=0,d=b.length;c!==d;++c){var e=b[c];0===--e.useCount&&(e.restoreOriginalState(),this._takeBackBinding(e))}this._takeBackAction(a)}},_initMemoryManager:function(){this._actions=[];this._nActiveActions=0;this._actionsByClip={};this._bindings=[];this._nActiveBindings=0; -this._bindingsByRootAndName={};this._controlInterpolants=[];this._nActiveControlInterpolants=0;var a=this;this.stats={actions:{get total(){return a._actions.length},get inUse(){return a._nActiveActions}},bindings:{get total(){return a._bindings.length},get inUse(){return a._nActiveBindings}},controlInterpolants:{get total(){return a._controlInterpolants.length},get inUse(){return a._nActiveControlInterpolants}}}},_isActiveAction:function(a){a=a._cacheIndex;return null!==a&&ah.end&&(h.end=f);c||(c=k)}}for(k in d)h=d[k],this.createAnimation(k,h.start,h.end,a);this.firstAnimation=c};ra.prototype.setAnimationDirectionForward=function(a){if(a=this.animationsMap[a])a.direction=1,a.directionBackwards=!1};ra.prototype.setAnimationDirectionBackward=function(a){if(a=this.animationsMap[a])a.direction=-1,a.directionBackwards=!0};ra.prototype.setAnimationFPS= -function(a,b){var c=this.animationsMap[a];c&&(c.fps=b,c.duration=(c.end-c.start)/c.fps)};ra.prototype.setAnimationDuration=function(a,b){var c=this.animationsMap[a];c&&(c.duration=b,c.fps=(c.end-c.start)/c.duration)};ra.prototype.setAnimationWeight=function(a,b){var c=this.animationsMap[a];c&&(c.weight=b)};ra.prototype.setAnimationTime=function(a,b){var c=this.animationsMap[a];c&&(c.time=b)};ra.prototype.getAnimationTime=function(a){var b=0;if(a=this.animationsMap[a])b=a.time;return b};ra.prototype.getAnimationDuration= -function(a){var b=-1;if(a=this.animationsMap[a])b=a.duration;return b};ra.prototype.playAnimation=function(a){var b=this.animationsMap[a];b?(b.time=0,b.active=!0):console.warn("THREE.MorphBlendMesh: animation["+a+"] undefined in .playAnimation()")};ra.prototype.stopAnimation=function(a){if(a=this.animationsMap[a])a.active=!1};ra.prototype.update=function(a){for(var b=0,c=this.animationsList.length;b -d.duration||0>d.time)d.direction*=-1,d.time>d.duration&&(d.time=d.duration,d.directionBackwards=!0),0>d.time&&(d.time=0,d.directionBackwards=!1)}else d.time%=d.duration,0>d.time&&(d.time+=d.duration);var f=d.start+Y.clamp(Math.floor(d.time/e),0,d.length-1),g=d.weight;f!==d.currentFrame&&(this.morphTargetInfluences[d.lastFrame]=0,this.morphTargetInfluences[d.currentFrame]=1*g,this.morphTargetInfluences[f]=0,d.lastFrame=d.currentFrame,d.currentFrame=f);e=d.time%e/e;d.directionBackwards&&(e=1-e);d.currentFrame!== -d.lastFrame?(this.morphTargetInfluences[d.currentFrame]=e*g,this.morphTargetInfluences[d.lastFrame]=(1-e)*g):this.morphTargetInfluences[d.currentFrame]=g}}};Wc.prototype=Object.create(C.prototype);Wc.prototype.constructor=Wc;Wc.prototype.isImmediateRenderObject=!0;Xc.prototype=Object.create(U.prototype);Xc.prototype.constructor=Xc;Xc.prototype.update=function(){var a=new p,b=new p,c=new Ja;return function(){var d=["a","b","c"];this.object.updateMatrixWorld(!0);c.getNormalMatrix(this.object.matrixWorld); -var e=this.object.matrixWorld,f=this.geometry.attributes.position,g=this.object.geometry;if(g&&g.isGeometry)for(var h=g.vertices,k=g.faces,l=g=0,p=k.length;lc.y?this.quaternion.set(1, -0,0,0):(a.set(c.z,0,-c.x).normalize(),b=Math.acos(c.y),this.quaternion.setFromAxisAngle(a,b))}}();zb.prototype.setLength=function(a,b,c){void 0===b&&(b=.2*a);void 0===c&&(c=.2*b);this.line.scale.set(1,Math.max(0,a-b),1);this.line.updateMatrix();this.cone.scale.set(c,b,c);this.cone.position.y=a;this.cone.updateMatrix()};zb.prototype.setColor=function(a){this.line.material.color.copy(a);this.cone.material.color.copy(a)};Jd.prototype=Object.create(U.prototype);Jd.prototype.constructor=Jd;var Md=new p, -te=new qe,ue=new qe,ve=new qe;La.prototype=Object.create(wa.prototype);La.prototype.constructor=La;La.prototype.getPoint=function(a){var b=this.points,c=b.length;2>c&&console.log("duh, you need at least 2 points");a*=c-(this.closed?0:1);var d=Math.floor(a);a-=d;this.closed?d+=0d&&(d=1);1E-4>c&&(c=d);1E-4>h&&(h=d);te.initNonuniformCatmullRom(e.x,f.x,g.x,b.x,c,d,h);ue.initNonuniformCatmullRom(e.y,f.y,g.y,b.y,c,d,h);ve.initNonuniformCatmullRom(e.z,f.z,g.z,b.z,c,d,h)}else"catmullrom"===this.type&&(c=void 0!==this.tension?this.tension: -.5,te.initCatmullRom(e.x,f.x,g.x,b.x,c),ue.initCatmullRom(e.y,f.y,g.y,b.y,c),ve.initCatmullRom(e.z,f.z,g.z,b.z,c));return new p(te.calc(a),ue.calc(a),ve.calc(a))};ad.prototype=Object.create(wa.prototype);ad.prototype.constructor=ad;ad.prototype.getPoint=function(a){var b=this.v0,c=this.v1,d=this.v2,e=this.v3;return new p(wb(a,b.x,c.x,d.x,e.x),wb(a,b.y,c.y,d.y,e.y),wb(a,b.z,c.z,d.z,e.z))};bd.prototype=Object.create(wa.prototype);bd.prototype.constructor=bd;bd.prototype.getPoint=function(a){var b=this.v0, -c=this.v1,d=this.v2;return new p(vb(a,b.x,c.x,d.x),vb(a,b.y,c.y,d.y),vb(a,b.z,c.z,d.z))};cd.prototype=Object.create(wa.prototype);cd.prototype.constructor=cd;cd.prototype.getPoint=function(a){if(1===a)return this.v2.clone();var b=new p;b.subVectors(this.v2,this.v1);b.multiplyScalar(a);b.add(this.v1);return b};Kd.prototype=Object.create(Va.prototype);Kd.prototype.constructor=Kd;wa.create=function(a,b){console.log("THREE.Curve.create() has been deprecated");a.prototype=Object.create(wa.prototype);a.prototype.constructor= -a;a.prototype.getPoint=b;return a};af.prototype=Object.create(La.prototype);bf.prototype=Object.create(La.prototype);re.prototype=Object.create(La.prototype);Object.assign(re.prototype,{initFromArray:function(a){console.error("THREE.Spline: .initFromArray() has been removed.")},getControlPointsArray:function(a){console.error("THREE.Spline: .getControlPointsArray() has been removed.")},reparametrizeByArcLength:function(a){console.error("THREE.Spline: .reparametrizeByArcLength() has been removed.")}}); -Yc.prototype.setColors=function(){console.error("THREE.GridHelper: setColors() has been deprecated, pass them in the constructor instead.")};Object.assign(ed.prototype,{center:function(a){console.warn("THREE.Box2: .center() has been renamed to .getCenter().");return this.getCenter(a)},empty:function(){console.warn("THREE.Box2: .empty() has been renamed to .isEmpty().");return this.isEmpty()},isIntersectionBox:function(a){console.warn("THREE.Box2: .isIntersectionBox() has been renamed to .intersectsBox()."); -return this.intersectsBox(a)},size:function(a){console.warn("THREE.Box2: .size() has been renamed to .getSize().");return this.getSize(a)}});Object.assign(Ra.prototype,{center:function(a){console.warn("THREE.Box3: .center() has been renamed to .getCenter().");return this.getCenter(a)},empty:function(){console.warn("THREE.Box3: .empty() has been renamed to .isEmpty().");return this.isEmpty()},isIntersectionBox:function(a){console.warn("THREE.Box3: .isIntersectionBox() has been renamed to .intersectsBox()."); -return this.intersectsBox(a)},isIntersectionSphere:function(a){console.warn("THREE.Box3: .isIntersectionSphere() has been renamed to .intersectsSphere().");return this.intersectsSphere(a)},size:function(a){console.warn("THREE.Box3: .size() has been renamed to .getSize().");return this.getSize(a)}});Db.prototype.center=function(a){console.warn("THREE.Line3: .center() has been renamed to .getCenter().");return this.getCenter(a)};Y.random16=function(){console.warn("THREE.Math.random16() has been deprecated. Use Math.random() instead."); -return Math.random()};Object.assign(Ja.prototype,{flattenToArrayOffset:function(a,b){console.warn("THREE.Matrix3: .flattenToArrayOffset() has been deprecated. Use .toArray() instead.");return this.toArray(a,b)},multiplyVector3:function(a){console.warn("THREE.Matrix3: .multiplyVector3() has been removed. Use vector.applyMatrix3( matrix ) instead.");return a.applyMatrix3(this)},multiplyVector3Array:function(a){console.warn("THREE.Matrix3: .multiplyVector3Array() has been renamed. Use matrix.applyToVector3Array( array ) instead."); -return this.applyToVector3Array(a)},applyToBuffer:function(a,b,c){console.warn("THREE.Matrix3: .applyToBuffer() has been removed. Use matrix.applyToBufferAttribute( attribute ) instead.");return this.applyToBufferAttribute(a)},applyToVector3Array:function(a,b,c){console.error("THREE.Matrix3: .applyToVector3Array() has been removed.")}});Object.assign(S.prototype,{extractPosition:function(a){console.warn("THREE.Matrix4: .extractPosition() has been renamed to .copyPosition().");return this.copyPosition(a)}, -flattenToArrayOffset:function(a,b){console.warn("THREE.Matrix4: .flattenToArrayOffset() has been deprecated. Use .toArray() instead.");return this.toArray(a,b)},getPosition:function(){var a;return function(){void 0===a&&(a=new p);console.warn("THREE.Matrix4: .getPosition() has been removed. Use Vector3.setFromMatrixPosition( matrix ) instead.");return a.setFromMatrixColumn(this,3)}}(),setRotationFromQuaternion:function(a){console.warn("THREE.Matrix4: .setRotationFromQuaternion() has been renamed to .makeRotationFromQuaternion()."); -return this.makeRotationFromQuaternion(a)},multiplyToArray:function(){console.warn("THREE.Matrix4: .multiplyToArray() has been removed.")},multiplyVector3:function(a){console.warn("THREE.Matrix4: .multiplyVector3() has been removed. Use vector.applyMatrix4( matrix ) instead.");return a.applyMatrix4(this)},multiplyVector4:function(a){console.warn("THREE.Matrix4: .multiplyVector4() has been removed. Use vector.applyMatrix4( matrix ) instead.");return a.applyMatrix4(this)},multiplyVector3Array:function(a){console.warn("THREE.Matrix4: .multiplyVector3Array() has been renamed. Use matrix.applyToVector3Array( array ) instead."); -return this.applyToVector3Array(a)},rotateAxis:function(a){console.warn("THREE.Matrix4: .rotateAxis() has been removed. Use Vector3.transformDirection( matrix ) instead.");a.transformDirection(this)},crossVector:function(a){console.warn("THREE.Matrix4: .crossVector() has been removed. Use vector.applyMatrix4( matrix ) instead.");return a.applyMatrix4(this)},translate:function(){console.error("THREE.Matrix4: .translate() has been removed.")},rotateX:function(){console.error("THREE.Matrix4: .rotateX() has been removed.")}, -rotateY:function(){console.error("THREE.Matrix4: .rotateY() has been removed.")},rotateZ:function(){console.error("THREE.Matrix4: .rotateZ() has been removed.")},rotateByAxis:function(){console.error("THREE.Matrix4: .rotateByAxis() has been removed.")},applyToBuffer:function(a,b,c){console.warn("THREE.Matrix4: .applyToBuffer() has been removed. Use matrix.applyToBufferAttribute( attribute ) instead.");return this.applyToBufferAttribute(a)},applyToVector3Array:function(a,b,c){console.error("THREE.Matrix4: .applyToVector3Array() has been removed.")}, -makeFrustum:function(a,b,c,d,e,f){console.warn("THREE.Matrix4: .makeFrustum() has been removed. Use .makePerspective( left, right, top, bottom, near, far ) instead.");return this.makePerspective(a,b,d,c,e,f)}});xa.prototype.isIntersectionLine=function(a){console.warn("THREE.Plane: .isIntersectionLine() has been renamed to .intersectsLine().");return this.intersectsLine(a)};oa.prototype.multiplyVector3=function(a){console.warn("THREE.Quaternion: .multiplyVector3() has been removed. Use is now vector.applyQuaternion( quaternion ) instead."); -return a.applyQuaternion(this)};Object.assign(fb.prototype,{isIntersectionBox:function(a){console.warn("THREE.Ray: .isIntersectionBox() has been renamed to .intersectsBox().");return this.intersectsBox(a)},isIntersectionPlane:function(a){console.warn("THREE.Ray: .isIntersectionPlane() has been renamed to .intersectsPlane().");return this.intersectsPlane(a)},isIntersectionSphere:function(a){console.warn("THREE.Ray: .isIntersectionSphere() has been renamed to .intersectsSphere().");return this.intersectsSphere(a)}}); -Object.assign(yb.prototype,{extrude:function(a){console.warn("THREE.Shape: .extrude() has been removed. Use ExtrudeGeometry() instead.");return new cb(this,a)},makeGeometry:function(a){console.warn("THREE.Shape: .makeGeometry() has been removed. Use ShapeGeometry() instead.");return new Vb(this,a)}});Object.assign(F.prototype,{fromAttribute:function(a,b,c){console.error("THREE.Vector2: .fromAttribute() has been renamed to .fromBufferAttribute().");return this.fromBufferAttribute(a,b,c)}});Object.assign(p.prototype, -{setEulerFromRotationMatrix:function(){console.error("THREE.Vector3: .setEulerFromRotationMatrix() has been removed. Use Euler.setFromRotationMatrix() instead.")},setEulerFromQuaternion:function(){console.error("THREE.Vector3: .setEulerFromQuaternion() has been removed. Use Euler.setFromQuaternion() instead.")},getPositionFromMatrix:function(a){console.warn("THREE.Vector3: .getPositionFromMatrix() has been renamed to .setFromMatrixPosition().");return this.setFromMatrixPosition(a)},getScaleFromMatrix:function(a){console.warn("THREE.Vector3: .getScaleFromMatrix() has been renamed to .setFromMatrixScale()."); -return this.setFromMatrixScale(a)},getColumnFromMatrix:function(a,b){console.warn("THREE.Vector3: .getColumnFromMatrix() has been renamed to .setFromMatrixColumn().");return this.setFromMatrixColumn(b,a)},applyProjection:function(a){console.warn("THREE.Vector3: .applyProjection() has been removed. Use .applyMatrix4( m ) instead.");return this.applyMatrix4(a)},fromAttribute:function(a,b,c){console.error("THREE.Vector3: .fromAttribute() has been renamed to .fromBufferAttribute().");return this.fromBufferAttribute(a, -b,c)}});Object.assign(ia.prototype,{fromAttribute:function(a,b,c){console.error("THREE.Vector4: .fromAttribute() has been renamed to .fromBufferAttribute().");return this.fromBufferAttribute(a,b,c)}});L.prototype.computeTangents=function(){console.warn("THREE.Geometry: .computeTangents() has been removed.")};Object.assign(C.prototype,{getChildByName:function(a){console.warn("THREE.Object3D: .getChildByName() has been renamed to .getObjectByName().");return this.getObjectByName(a)},renderDepth:function(){console.warn("THREE.Object3D: .renderDepth has been removed. Use .renderOrder, instead.")}, -translate:function(a,b){console.warn("THREE.Object3D: .translate() has been removed. Use .translateOnAxis( axis, distance ) instead.");return this.translateOnAxis(b,a)}});Object.defineProperties(C.prototype,{eulerOrder:{get:function(){console.warn("THREE.Object3D: .eulerOrder is now .rotation.order.");return this.rotation.order},set:function(a){console.warn("THREE.Object3D: .eulerOrder is now .rotation.order.");this.rotation.order=a}},useQuaternion:{get:function(){console.warn("THREE.Object3D: .useQuaternion has been removed. The library now uses quaternions by default.")}, +d=!1,e=c-1,f=0;fNumber.EPSILON){if(0>m&&(g=b[f],k=-k,h=b[e],m=-m),!(a.yh.y))if(a.y===g.y){if(a.x===g.x)return!0}else{e=m*(a.x-g.x)-k*(a.y-g.y);if(0===e)return!0;0>e||(d=!d)}}else if(a.y===g.y&&(h.x<=a.x&&a.x<=g.x||g.x<=a.x&&a.x<=h.x))return!0}return d}var e=ya.isClockWise,f=this.subPaths;if(0===f.length)return[];if(!0===b)return c(f);var g,h,k,m=[];if(1===f.length)return h=f[0],k=new yb,k.curves=h.curves,m.push(k),m;var l=!e(f[0].getPoints()), +l=a?!l:l;k=[];var q=[],n=[],p=0,y;q[p]=void 0;n[p]=[];for(var t=0,z=f.length;td&&this._mixBufferRegion(c,a,3*b,1-d,b);for(var d=b,f=b+b;d!==f;++d)if(c[d]!==c[d+b]){e.setValue(c,a);break}},saveOriginalState:function(){var a= +this.buffer,b=this.valueSize,c=3*b;this.binding.getValue(a,c);for(var d=b;d!==c;++d)a[d]=a[c+d%b];this.cumulativeWeight=0},restoreOriginalState:function(){this.binding.setValue(this.buffer,3*this.valueSize)},_select:function(a,b,c,d,e){if(.5<=d)for(d=0;d!==e;++d)a[b+d]=a[c+d]},_slerp:function(a,b,c,d){la.slerpFlat(a,b,a,b,a,c,d)},_lerp:function(a,b,c,d,e){for(var f=1-d,g=0;g!==e;++g){var h=b+g;a[h]=a[h]*f+a[c+g]*d}}});Object.assign(Te.prototype,{getValue:function(a,b){this.bind();var c=this._bindings[this._targetGroup.nCachedObjects_]; +void 0!==c&&c.getValue(a,b)},setValue:function(a,b){for(var c=this._bindings,d=this._targetGroup.nCachedObjects_,e=c.length;d!==e;++d)c[d].setValue(a,b)},bind:function(){for(var a=this._bindings,b=this._targetGroup.nCachedObjects_,c=a.length;b!==c;++b)a[b].bind()},unbind:function(){for(var a=this._bindings,b=this._targetGroup.nCachedObjects_,c=a.length;b!==c;++b)a[b].unbind()}});Object.assign(ia,{Composite:Te,create:function(a,b,c){return a&&a.isAnimationObjectGroup?new ia.Composite(a,b,c):new ia(a, +b,c)},parseTrackName:function(){var a=new RegExp("^"+/((?:[\w-]+[\/:])*)/.source+/([\w-\.]+)?/.source+/(?:\.([\w-]+)(?:\[(.+)\])?)?/.source+/\.([\w-]+)(?:\[(.+)\])?/.source+"$"),b=["material","materials","bones"];return function(c){var d=a.exec(c);if(!d)throw Error("PropertyBinding: Cannot parse trackName: "+c);var d={nodeName:d[2],objectName:d[3],objectIndex:d[4],propertyName:d[5],propertyIndex:d[6]},e=d.nodeName&&d.nodeName.lastIndexOf(".");if(void 0!==e&&-1!==e){var f=d.nodeName.substring(e+1); +-1!==b.indexOf(f)&&(d.nodeName=d.nodeName.substring(0,e),d.objectName=f)}if(null===d.propertyName||0===d.propertyName.length)throw Error("PropertyBinding: can not parse propertyName from trackName: "+c);return d}}(),findNode:function(a,b){if(!b||""===b||"root"===b||"."===b||-1===b||b===a.name||b===a.uuid)return a;if(a.skeleton){var c=function(a){for(var c=0;c=c){var p=c++,n=b[p];d[n.uuid]=l;b[l]=n;d[m]=p;b[p]=k;k=0;for(m=f;k!==m;++k){var n=e[k],u=n[l];n[l]=n[p];n[p]=u}}}this.nCachedObjects_=c},uncache:function(a){for(var b=this._objects,c=b.length,d=this.nCachedObjects_,e=this._indicesByUUID,f=this._bindings,g=f.length,h=0,k=arguments.length;h!==k;++h){var m=arguments[h].uuid,l=e[m];if(void 0!==l)if(delete e[m],lb||0===c)return; +this._startTime=null;b*=c}b*=this._updateTimeScale(a);c=this._updateTime(b);a=this._updateWeight(a);if(0c.parameterPositions[1]&&(this.stopFading(),0===d&&(this.enabled=!1))}}return this._effectiveWeight=b},_updateTimeScale:function(a){var b= +0;if(!this.paused){var b=this.timeScale,c=this._timeScaleInterpolant;if(null!==c){var d=c.evaluate(a)[0],b=b*d;a>c.parameterPositions[1]&&(this.stopWarping(),0===b?this.paused=!0:this.timeScale=b)}}return this._effectiveTimeScale=b},_updateTime:function(a){var b=this.time+a;if(0===a)return b;var c=this._clip.duration,d=this.loop,e=this._loopCount;if(2200===d)a:{if(-1===e&&(this._loopCount=0,this._setEndings(!0,!0,!1)),b>=c)b=c;else if(0>b)b=0;else break a;this.clampWhenFinished?this.paused=!0:this.enabled= +!1;this._mixer.dispatchEvent({type:"finished",action:this,direction:0>a?-1:1})}else{d=2202===d;-1===e&&(0<=a?(e=0,this._setEndings(!0,0===this.repetitions,d)):this._setEndings(0===this.repetitions,!0,d));if(b>=c||0>b){var f=Math.floor(b/c),b=b-c*f,e=e+Math.abs(f),g=this.repetitions-e;0>g?(this.clampWhenFinished?this.paused=!0:this.enabled=!1,b=0a,this._setEndings(a,!a,d)):this._setEndings(!1,!1,d),this._loopCount= +e,this._mixer.dispatchEvent({type:"loop",action:this,loopDelta:f}))}if(d&&1===(e&1))return this.time=b,c-b}return this.time=b},_setEndings:function(a,b,c){var d=this._interpolantSettings;c?(d.endingStart=2401,d.endingEnd=2401):(d.endingStart=a?this.zeroSlopeAtStart?2401:2400:2402,d.endingEnd=b?this.zeroSlopeAtEnd?2401:2400:2402)},_scheduleFading:function(a,b,c){var d=this._mixer,e=d.time,f=this._weightInterpolant;null===f&&(this._weightInterpolant=f=d._lendControlInterpolant());d=f.parameterPositions; +f=f.sampleValues;d[0]=e;f[0]=b;d[1]=e+a;f[1]=c;return this}});Object.assign(We.prototype,qa.prototype,{_bindAction:function(a,b){var c=a._localRoot||this._root,d=a._clip.tracks,e=d.length,f=a._propertyBindings,g=a._interpolants,h=c.uuid,k=this._bindingsByRootAndName,l=k[h];void 0===l&&(l={},k[h]=l);for(k=0;k!==e;++k){var p=d[k],q=p.name,n=l[q];if(void 0===n){n=f[k];if(void 0!==n){null===n._cacheIndex&&(++n.referenceCount,this._addInactiveBinding(n,h,q));continue}n=new ke(ia.create(c,q,b&&b._propertyBindings[k].binding.parsedPath), +p.ValueTypeName,p.getValueSize());++n.referenceCount;this._addInactiveBinding(n,h,q)}f[k]=n;g[k].resultBuffer=n.buffer}},_activateAction:function(a){if(!this._isActiveAction(a)){if(null===a._cacheIndex){var b=(a._localRoot||this._root).uuid,c=a._clip.uuid,d=this._actionsByClip[c];this._bindAction(a,d&&d.knownActions[0]);this._addInactiveAction(a,c,b)}b=a._propertyBindings;c=0;for(d=b.length;c!==d;++c){var e=b[c];0===e.useCount++&&(this._lendBinding(e),e.saveOriginalState())}this._lendAction(a)}}, +_deactivateAction:function(a){if(this._isActiveAction(a)){for(var b=a._propertyBindings,c=0,d=b.length;c!==d;++c){var e=b[c];0===--e.useCount&&(e.restoreOriginalState(),this._takeBackBinding(e))}this._takeBackAction(a)}},_initMemoryManager:function(){this._actions=[];this._nActiveActions=0;this._actionsByClip={};this._bindings=[];this._nActiveBindings=0;this._bindingsByRootAndName={};this._controlInterpolants=[];this._nActiveControlInterpolants=0;var a=this;this.stats={actions:{get total(){return a._actions.length}, +get inUse(){return a._nActiveActions}},bindings:{get total(){return a._bindings.length},get inUse(){return a._nActiveBindings}},controlInterpolants:{get total(){return a._controlInterpolants.length},get inUse(){return a._nActiveControlInterpolants}}}},_isActiveAction:function(a){a=a._cacheIndex;return null!==a&&ah.end&&(h.end=f);c||(c=k)}}for(k in d)h=d[k],this.createAnimation(k,h.start,h.end,a);this.firstAnimation=c};pa.prototype.setAnimationDirectionForward=function(a){if(a=this.animationsMap[a])a.direction=1,a.directionBackwards=!1};pa.prototype.setAnimationDirectionBackward=function(a){if(a=this.animationsMap[a])a.direction=-1,a.directionBackwards=!0};pa.prototype.setAnimationFPS=function(a,b){var c=this.animationsMap[a];c&&(c.fps=b,c.duration=(c.end-c.start)/c.fps)};pa.prototype.setAnimationDuration= +function(a,b){var c=this.animationsMap[a];c&&(c.duration=b,c.fps=(c.end-c.start)/c.duration)};pa.prototype.setAnimationWeight=function(a,b){var c=this.animationsMap[a];c&&(c.weight=b)};pa.prototype.setAnimationTime=function(a,b){var c=this.animationsMap[a];c&&(c.time=b)};pa.prototype.getAnimationTime=function(a){var b=0;if(a=this.animationsMap[a])b=a.time;return b};pa.prototype.getAnimationDuration=function(a){var b=-1;if(a=this.animationsMap[a])b=a.duration;return b};pa.prototype.playAnimation=function(a){var b= +this.animationsMap[a];b?(b.time=0,b.active=!0):console.warn("THREE.MorphBlendMesh: animation["+a+"] undefined in .playAnimation()")};pa.prototype.stopAnimation=function(a){if(a=this.animationsMap[a])a.active=!1};pa.prototype.update=function(a){for(var b=0,c=this.animationsList.length;bd.duration||0>d.time)d.direction*=-1,d.time>d.duration&&(d.time=d.duration,d.directionBackwards= +!0),0>d.time&&(d.time=0,d.directionBackwards=!1)}else d.time%=d.duration,0>d.time&&(d.time+=d.duration);var f=d.start+Y.clamp(Math.floor(d.time/e),0,d.length-1),g=d.weight;f!==d.currentFrame&&(this.morphTargetInfluences[d.lastFrame]=0,this.morphTargetInfluences[d.currentFrame]=1*g,this.morphTargetInfluences[f]=0,d.lastFrame=d.currentFrame,d.currentFrame=f);e=d.time%e/e;d.directionBackwards&&(e=1-e);d.currentFrame!==d.lastFrame?(this.morphTargetInfluences[d.currentFrame]=e*g,this.morphTargetInfluences[d.lastFrame]= +(1-e)*g):this.morphTargetInfluences[d.currentFrame]=g}}};Wc.prototype=Object.create(B.prototype);Wc.prototype.constructor=Wc;Wc.prototype.isImmediateRenderObject=!0;Xc.prototype=Object.create(X.prototype);Xc.prototype.constructor=Xc;Xc.prototype.update=function(){var a=new p,b=new p,c=new Fa;return function(){var d=["a","b","c"];this.object.updateMatrixWorld(!0);c.getNormalMatrix(this.object.matrixWorld);var e=this.object.matrixWorld,f=this.geometry.attributes.position,g=this.object.geometry;if(g&& +g.isGeometry)for(var h=g.vertices,k=g.faces,l=g=0,p=k.length;lc.y?this.quaternion.set(1,0,0,0):(a.set(c.z,0,-c.x).normalize(),b=Math.acos(c.y),this.quaternion.setFromAxisAngle(a,b))}}();zb.prototype.setLength= +function(a,b,c){void 0===b&&(b=.2*a);void 0===c&&(c=.2*b);this.line.scale.set(1,Math.max(0,a-b),1);this.line.updateMatrix();this.cone.scale.set(c,b,c);this.cone.position.y=a;this.cone.updateMatrix()};zb.prototype.setColor=function(a){this.line.material.color.copy(a);this.cone.material.color.copy(a)};Id.prototype=Object.create(X.prototype);Id.prototype.constructor=Id;var Ld=new p,ue=new re,ve=new re,we=new re;Ia.prototype=Object.create(ha.prototype);Ia.prototype.constructor=Ia;Ia.prototype.getPoint= +function(a){var b=this.points,c=b.length;2>c&&console.log("duh, you need at least 2 points");a*=c-(this.closed?0:1);var d=Math.floor(a);a-=d;this.closed?d+=0d&&(d=1);1E-4>c&&(c=d);1E-4>h&&(h=d);ue.initNonuniformCatmullRom(e.x,f.x,g.x,b.x,c,d,h);ve.initNonuniformCatmullRom(e.y,f.y,g.y,b.y,c,d,h);we.initNonuniformCatmullRom(e.z,f.z,g.z,b.z,c,d,h)}else"catmullrom"===this.type&&(c=void 0!==this.tension?this.tension:.5,ue.initCatmullRom(e.x,f.x,g.x,b.x,c),ve.initCatmullRom(e.y,f.y,g.y,b.y,c),we.initCatmullRom(e.z,f.z,g.z,b.z, +c));return new p(ue.calc(a),ve.calc(a),we.calc(a))};ad.prototype=Object.create(ha.prototype);ad.prototype.constructor=ad;ad.prototype.getPoint=function(a){var b=this.v0,c=this.v1,d=this.v2,e=this.v3;return new p(wb(a,b.x,c.x,d.x,e.x),wb(a,b.y,c.y,d.y,e.y),wb(a,b.z,c.z,d.z,e.z))};bd.prototype=Object.create(ha.prototype);bd.prototype.constructor=bd;bd.prototype.getPoint=function(a){var b=this.v0,c=this.v1,d=this.v2;return new p(vb(a,b.x,c.x,d.x),vb(a,b.y,c.y,d.y),vb(a,b.z,c.z,d.z))};cd.prototype=Object.create(ha.prototype); +cd.prototype.constructor=cd;cd.prototype.getPoint=function(a){if(1===a)return this.v2.clone();var b=new p;b.subVectors(this.v2,this.v1);b.multiplyScalar(a);b.add(this.v1);return b};Jd.prototype=Object.create(Va.prototype);Jd.prototype.constructor=Jd;ha.create=function(a,b){console.log("THREE.Curve.create() has been deprecated");a.prototype=Object.create(ha.prototype);a.prototype.constructor=a;a.prototype.getPoint=b;return a};bf.prototype=Object.create(Ia.prototype);cf.prototype=Object.create(Ia.prototype); +se.prototype=Object.create(Ia.prototype);Object.assign(se.prototype,{initFromArray:function(a){console.error("THREE.Spline: .initFromArray() has been removed.")},getControlPointsArray:function(a){console.error("THREE.Spline: .getControlPointsArray() has been removed.")},reparametrizeByArcLength:function(a){console.error("THREE.Spline: .reparametrizeByArcLength() has been removed.")}});Yc.prototype.setColors=function(){console.error("THREE.GridHelper: setColors() has been deprecated, pass them in the constructor instead.")}; +Object.assign(ed.prototype,{center:function(a){console.warn("THREE.Box2: .center() has been renamed to .getCenter().");return this.getCenter(a)},empty:function(){console.warn("THREE.Box2: .empty() has been renamed to .isEmpty().");return this.isEmpty()},isIntersectionBox:function(a){console.warn("THREE.Box2: .isIntersectionBox() has been renamed to .intersectsBox().");return this.intersectsBox(a)},size:function(a){console.warn("THREE.Box2: .size() has been renamed to .getSize().");return this.getSize(a)}}); +Object.assign(Ra.prototype,{center:function(a){console.warn("THREE.Box3: .center() has been renamed to .getCenter().");return this.getCenter(a)},empty:function(){console.warn("THREE.Box3: .empty() has been renamed to .isEmpty().");return this.isEmpty()},isIntersectionBox:function(a){console.warn("THREE.Box3: .isIntersectionBox() has been renamed to .intersectsBox().");return this.intersectsBox(a)},isIntersectionSphere:function(a){console.warn("THREE.Box3: .isIntersectionSphere() has been renamed to .intersectsSphere()."); +return this.intersectsSphere(a)},size:function(a){console.warn("THREE.Box3: .size() has been renamed to .getSize().");return this.getSize(a)}});Db.prototype.center=function(a){console.warn("THREE.Line3: .center() has been renamed to .getCenter().");return this.getCenter(a)};Y.random16=function(){console.warn("THREE.Math.random16() has been deprecated. Use Math.random() instead.");return Math.random()};Object.assign(Fa.prototype,{flattenToArrayOffset:function(a,b){console.warn("THREE.Matrix3: .flattenToArrayOffset() has been deprecated. Use .toArray() instead."); +return this.toArray(a,b)},multiplyVector3:function(a){console.warn("THREE.Matrix3: .multiplyVector3() has been removed. Use vector.applyMatrix3( matrix ) instead.");return a.applyMatrix3(this)},multiplyVector3Array:function(a){console.warn("THREE.Matrix3: .multiplyVector3Array() has been renamed. Use matrix.applyToVector3Array( array ) instead.");return this.applyToVector3Array(a)},applyToBuffer:function(a,b,c){console.warn("THREE.Matrix3: .applyToBuffer() has been removed. Use matrix.applyToBufferAttribute( attribute ) instead."); +return this.applyToBufferAttribute(a)},applyToVector3Array:function(a,b,c){console.error("THREE.Matrix3: .applyToVector3Array() has been removed.")}});Object.assign(S.prototype,{extractPosition:function(a){console.warn("THREE.Matrix4: .extractPosition() has been renamed to .copyPosition().");return this.copyPosition(a)},flattenToArrayOffset:function(a,b){console.warn("THREE.Matrix4: .flattenToArrayOffset() has been deprecated. Use .toArray() instead.");return this.toArray(a,b)},getPosition:function(){var a; +return function(){void 0===a&&(a=new p);console.warn("THREE.Matrix4: .getPosition() has been removed. Use Vector3.setFromMatrixPosition( matrix ) instead.");return a.setFromMatrixColumn(this,3)}}(),setRotationFromQuaternion:function(a){console.warn("THREE.Matrix4: .setRotationFromQuaternion() has been renamed to .makeRotationFromQuaternion().");return this.makeRotationFromQuaternion(a)},multiplyToArray:function(){console.warn("THREE.Matrix4: .multiplyToArray() has been removed.")},multiplyVector3:function(a){console.warn("THREE.Matrix4: .multiplyVector3() has been removed. Use vector.applyMatrix4( matrix ) instead."); +return a.applyMatrix4(this)},multiplyVector4:function(a){console.warn("THREE.Matrix4: .multiplyVector4() has been removed. Use vector.applyMatrix4( matrix ) instead.");return a.applyMatrix4(this)},multiplyVector3Array:function(a){console.warn("THREE.Matrix4: .multiplyVector3Array() has been renamed. Use matrix.applyToVector3Array( array ) instead.");return this.applyToVector3Array(a)},rotateAxis:function(a){console.warn("THREE.Matrix4: .rotateAxis() has been removed. Use Vector3.transformDirection( matrix ) instead."); +a.transformDirection(this)},crossVector:function(a){console.warn("THREE.Matrix4: .crossVector() has been removed. Use vector.applyMatrix4( matrix ) instead.");return a.applyMatrix4(this)},translate:function(){console.error("THREE.Matrix4: .translate() has been removed.")},rotateX:function(){console.error("THREE.Matrix4: .rotateX() has been removed.")},rotateY:function(){console.error("THREE.Matrix4: .rotateY() has been removed.")},rotateZ:function(){console.error("THREE.Matrix4: .rotateZ() has been removed.")}, +rotateByAxis:function(){console.error("THREE.Matrix4: .rotateByAxis() has been removed.")},applyToBuffer:function(a,b,c){console.warn("THREE.Matrix4: .applyToBuffer() has been removed. Use matrix.applyToBufferAttribute( attribute ) instead.");return this.applyToBufferAttribute(a)},applyToVector3Array:function(a,b,c){console.error("THREE.Matrix4: .applyToVector3Array() has been removed.")},makeFrustum:function(a,b,c,d,e,f){console.warn("THREE.Matrix4: .makeFrustum() has been removed. Use .makePerspective( left, right, top, bottom, near, far ) instead."); +return this.makePerspective(a,b,d,c,e,f)}});va.prototype.isIntersectionLine=function(a){console.warn("THREE.Plane: .isIntersectionLine() has been renamed to .intersectsLine().");return this.intersectsLine(a)};la.prototype.multiplyVector3=function(a){console.warn("THREE.Quaternion: .multiplyVector3() has been removed. Use is now vector.applyQuaternion( quaternion ) instead.");return a.applyQuaternion(this)};Object.assign(fb.prototype,{isIntersectionBox:function(a){console.warn("THREE.Ray: .isIntersectionBox() has been renamed to .intersectsBox()."); +return this.intersectsBox(a)},isIntersectionPlane:function(a){console.warn("THREE.Ray: .isIntersectionPlane() has been renamed to .intersectsPlane().");return this.intersectsPlane(a)},isIntersectionSphere:function(a){console.warn("THREE.Ray: .isIntersectionSphere() has been renamed to .intersectsSphere().");return this.intersectsSphere(a)}});Object.assign(yb.prototype,{extrude:function(a){console.warn("THREE.Shape: .extrude() has been removed. Use ExtrudeGeometry() instead.");return new cb(this,a)}, +makeGeometry:function(a){console.warn("THREE.Shape: .makeGeometry() has been removed. Use ShapeGeometry() instead.");return new Vb(this,a)}});Object.assign(D.prototype,{fromAttribute:function(a,b,c){console.error("THREE.Vector2: .fromAttribute() has been renamed to .fromBufferAttribute().");return this.fromBufferAttribute(a,b,c)}});Object.assign(p.prototype,{setEulerFromRotationMatrix:function(){console.error("THREE.Vector3: .setEulerFromRotationMatrix() has been removed. Use Euler.setFromRotationMatrix() instead.")}, +setEulerFromQuaternion:function(){console.error("THREE.Vector3: .setEulerFromQuaternion() has been removed. Use Euler.setFromQuaternion() instead.")},getPositionFromMatrix:function(a){console.warn("THREE.Vector3: .getPositionFromMatrix() has been renamed to .setFromMatrixPosition().");return this.setFromMatrixPosition(a)},getScaleFromMatrix:function(a){console.warn("THREE.Vector3: .getScaleFromMatrix() has been renamed to .setFromMatrixScale().");return this.setFromMatrixScale(a)},getColumnFromMatrix:function(a, +b){console.warn("THREE.Vector3: .getColumnFromMatrix() has been renamed to .setFromMatrixColumn().");return this.setFromMatrixColumn(b,a)},applyProjection:function(a){console.warn("THREE.Vector3: .applyProjection() has been removed. Use .applyMatrix4( m ) instead.");return this.applyMatrix4(a)},fromAttribute:function(a,b,c){console.error("THREE.Vector3: .fromAttribute() has been renamed to .fromBufferAttribute().");return this.fromBufferAttribute(a,b,c)}});Object.assign(ga.prototype,{fromAttribute:function(a, +b,c){console.error("THREE.Vector4: .fromAttribute() has been renamed to .fromBufferAttribute().");return this.fromBufferAttribute(a,b,c)}});P.prototype.computeTangents=function(){console.warn("THREE.Geometry: .computeTangents() has been removed.")};Object.assign(B.prototype,{getChildByName:function(a){console.warn("THREE.Object3D: .getChildByName() has been renamed to .getObjectByName().");return this.getObjectByName(a)},renderDepth:function(){console.warn("THREE.Object3D: .renderDepth has been removed. Use .renderOrder, instead.")}, +translate:function(a,b){console.warn("THREE.Object3D: .translate() has been removed. Use .translateOnAxis( axis, distance ) instead.");return this.translateOnAxis(b,a)}});Object.defineProperties(B.prototype,{eulerOrder:{get:function(){console.warn("THREE.Object3D: .eulerOrder is now .rotation.order.");return this.rotation.order},set:function(a){console.warn("THREE.Object3D: .eulerOrder is now .rotation.order.");this.rotation.order=a}},useQuaternion:{get:function(){console.warn("THREE.Object3D: .useQuaternion has been removed. The library now uses quaternions by default.")}, set:function(){console.warn("THREE.Object3D: .useQuaternion has been removed. The library now uses quaternions by default.")}}});Object.defineProperties(xc.prototype,{objects:{get:function(){console.warn("THREE.LOD: .objects has been renamed to .levels.");return this.levels}}});Object.defineProperty(yc.prototype,"useVertexTexture",{get:function(){console.warn("THREE.Skeleton: useVertexTexture has been removed.")},set:function(){console.warn("THREE.Skeleton: useVertexTexture has been removed.")}}); -Ba.prototype.setLens=function(a,b){console.warn("THREE.PerspectiveCamera.setLens is deprecated. Use .setFocalLength and .filmGauge for a photographic setup.");void 0!==b&&(this.filmGauge=b);this.setFocalLength(a)};Object.defineProperties(na.prototype,{onlyShadow:{set:function(){console.warn("THREE.Light: .onlyShadow has been removed.")}},shadowCameraFov:{set:function(a){console.warn("THREE.Light: .shadowCameraFov is now .shadow.camera.fov.");this.shadow.camera.fov=a}},shadowCameraLeft:{set:function(a){console.warn("THREE.Light: .shadowCameraLeft is now .shadow.camera.left."); +xa.prototype.setLens=function(a,b){console.warn("THREE.PerspectiveCamera.setLens is deprecated. Use .setFocalLength and .filmGauge for a photographic setup.");void 0!==b&&(this.filmGauge=b);this.setFocalLength(a)};Object.defineProperties(fa.prototype,{onlyShadow:{set:function(){console.warn("THREE.Light: .onlyShadow has been removed.")}},shadowCameraFov:{set:function(a){console.warn("THREE.Light: .shadowCameraFov is now .shadow.camera.fov.");this.shadow.camera.fov=a}},shadowCameraLeft:{set:function(a){console.warn("THREE.Light: .shadowCameraLeft is now .shadow.camera.left."); this.shadow.camera.left=a}},shadowCameraRight:{set:function(a){console.warn("THREE.Light: .shadowCameraRight is now .shadow.camera.right.");this.shadow.camera.right=a}},shadowCameraTop:{set:function(a){console.warn("THREE.Light: .shadowCameraTop is now .shadow.camera.top.");this.shadow.camera.top=a}},shadowCameraBottom:{set:function(a){console.warn("THREE.Light: .shadowCameraBottom is now .shadow.camera.bottom.");this.shadow.camera.bottom=a}},shadowCameraNear:{set:function(a){console.warn("THREE.Light: .shadowCameraNear is now .shadow.camera.near."); this.shadow.camera.near=a}},shadowCameraFar:{set:function(a){console.warn("THREE.Light: .shadowCameraFar is now .shadow.camera.far.");this.shadow.camera.far=a}},shadowCameraVisible:{set:function(){console.warn("THREE.Light: .shadowCameraVisible has been removed. Use new THREE.CameraHelper( light.shadow.camera ) instead.")}},shadowBias:{set:function(a){console.warn("THREE.Light: .shadowBias is now .shadow.bias.");this.shadow.bias=a}},shadowDarkness:{set:function(){console.warn("THREE.Light: .shadowDarkness has been removed.")}}, -shadowMapWidth:{set:function(a){console.warn("THREE.Light: .shadowMapWidth is now .shadow.mapSize.width.");this.shadow.mapSize.width=a}},shadowMapHeight:{set:function(a){console.warn("THREE.Light: .shadowMapHeight is now .shadow.mapSize.height.");this.shadow.mapSize.height=a}}});Object.defineProperties(K.prototype,{length:{get:function(){console.warn("THREE.BufferAttribute: .length has been deprecated. Use .count instead.");return this.array.length}}});Object.assign(J.prototype,{addIndex:function(a){console.warn("THREE.BufferGeometry: .addIndex() has been renamed to .setIndex()."); +shadowMapWidth:{set:function(a){console.warn("THREE.Light: .shadowMapWidth is now .shadow.mapSize.width.");this.shadow.mapSize.width=a}},shadowMapHeight:{set:function(a){console.warn("THREE.Light: .shadowMapHeight is now .shadow.mapSize.height.");this.shadow.mapSize.height=a}}});Object.defineProperties(Z.prototype,{length:{get:function(){console.warn("THREE.BufferAttribute: .length has been deprecated. Use .count instead.");return this.array.length}}});Object.assign(H.prototype,{addIndex:function(a){console.warn("THREE.BufferGeometry: .addIndex() has been renamed to .setIndex()."); this.setIndex(a)},addDrawCall:function(a,b,c){void 0!==c&&console.warn("THREE.BufferGeometry: .addDrawCall() no longer supports indexOffset.");console.warn("THREE.BufferGeometry: .addDrawCall() is now .addGroup().");this.addGroup(a,b)},clearDrawCalls:function(){console.warn("THREE.BufferGeometry: .clearDrawCalls() is now .clearGroups().");this.clearGroups()},computeTangents:function(){console.warn("THREE.BufferGeometry: .computeTangents() has been removed.")},computeOffsets:function(){console.warn("THREE.BufferGeometry: .computeOffsets() has been removed.")}}); -Object.defineProperties(J.prototype,{drawcalls:{get:function(){console.error("THREE.BufferGeometry: .drawcalls has been renamed to .groups.");return this.groups}},offsets:{get:function(){console.warn("THREE.BufferGeometry: .offsets has been renamed to .groups.");return this.groups}}});Object.defineProperties(Gd.prototype,{dynamic:{set:function(){console.warn("THREE.Uniform: .dynamic has been removed. Use object.onBeforeRender() instead.")}},onUpdate:{value:function(){console.warn("THREE.Uniform: .onUpdate() has been removed. Use object.onBeforeRender() instead."); -return this}}});Object.defineProperties(W.prototype,{wrapAround:{get:function(){console.warn("THREE.Material: .wrapAround has been removed.")},set:function(){console.warn("THREE.Material: .wrapAround has been removed.")}},wrapRGB:{get:function(){console.warn("THREE.Material: .wrapRGB has been removed.");return new G}}});Object.defineProperties(Ha.prototype,{metal:{get:function(){console.warn("THREE.MeshPhongMaterial: .metal has been removed. Use THREE.MeshStandardMaterial instead.");return!1},set:function(){console.warn("THREE.MeshPhongMaterial: .metal has been removed. Use THREE.MeshStandardMaterial instead")}}}); -Object.defineProperties(Ca.prototype,{derivatives:{get:function(){console.warn("THREE.ShaderMaterial: .derivatives has been moved to .extensions.derivatives.");return this.extensions.derivatives},set:function(a){console.warn("THREE. ShaderMaterial: .derivatives has been moved to .extensions.derivatives.");this.extensions.derivatives=a}}});Object.assign(Wd.prototype,{getCurrentRenderTarget:function(){console.warn("THREE.WebGLRenderer: .getCurrentRenderTarget() is now .getRenderTarget().");return this.getRenderTarget()}, +Object.defineProperties(H.prototype,{drawcalls:{get:function(){console.error("THREE.BufferGeometry: .drawcalls has been renamed to .groups.");return this.groups}},offsets:{get:function(){console.warn("THREE.BufferGeometry: .offsets has been renamed to .groups.");return this.groups}}});Object.defineProperties(Fd.prototype,{dynamic:{set:function(){console.warn("THREE.Uniform: .dynamic has been removed. Use object.onBeforeRender() instead.")}},onUpdate:{value:function(){console.warn("THREE.Uniform: .onUpdate() has been removed. Use object.onBeforeRender() instead."); +return this}}});Object.defineProperties(K.prototype,{wrapAround:{get:function(){console.warn("THREE.Material: .wrapAround has been removed.")},set:function(){console.warn("THREE.Material: .wrapAround has been removed.")}},wrapRGB:{get:function(){console.warn("THREE.Material: .wrapRGB has been removed.");return new L}}});Object.defineProperties(ra.prototype,{metal:{get:function(){console.warn("THREE.MeshPhongMaterial: .metal has been removed. Use THREE.MeshStandardMaterial instead.");return!1},set:function(){console.warn("THREE.MeshPhongMaterial: .metal has been removed. Use THREE.MeshStandardMaterial instead")}}}); +Object.defineProperties(Da.prototype,{derivatives:{get:function(){console.warn("THREE.ShaderMaterial: .derivatives has been moved to .extensions.derivatives.");return this.extensions.derivatives},set:function(a){console.warn("THREE. ShaderMaterial: .derivatives has been moved to .extensions.derivatives.");this.extensions.derivatives=a}}});Object.assign(Vd.prototype,{getCurrentRenderTarget:function(){console.warn("THREE.WebGLRenderer: .getCurrentRenderTarget() is now .getRenderTarget().");return this.getRenderTarget()}, supportsFloatTextures:function(){console.warn("THREE.WebGLRenderer: .supportsFloatTextures() is now .extensions.get( 'OES_texture_float' ).");return this.extensions.get("OES_texture_float")},supportsHalfFloatTextures:function(){console.warn("THREE.WebGLRenderer: .supportsHalfFloatTextures() is now .extensions.get( 'OES_texture_half_float' ).");return this.extensions.get("OES_texture_half_float")},supportsStandardDerivatives:function(){console.warn("THREE.WebGLRenderer: .supportsStandardDerivatives() is now .extensions.get( 'OES_standard_derivatives' )."); return this.extensions.get("OES_standard_derivatives")},supportsCompressedTextureS3TC:function(){console.warn("THREE.WebGLRenderer: .supportsCompressedTextureS3TC() is now .extensions.get( 'WEBGL_compressed_texture_s3tc' ).");return this.extensions.get("WEBGL_compressed_texture_s3tc")},supportsCompressedTexturePVRTC:function(){console.warn("THREE.WebGLRenderer: .supportsCompressedTexturePVRTC() is now .extensions.get( 'WEBGL_compressed_texture_pvrtc' ).");return this.extensions.get("WEBGL_compressed_texture_pvrtc")}, supportsBlendMinMax:function(){console.warn("THREE.WebGLRenderer: .supportsBlendMinMax() is now .extensions.get( 'EXT_blend_minmax' ).");return this.extensions.get("EXT_blend_minmax")},supportsVertexTextures:function(){console.warn("THREE.WebGLRenderer: .supportsVertexTextures() is now .capabilities.vertexTextures.");return this.capabilities.vertexTextures},supportsInstancedArrays:function(){console.warn("THREE.WebGLRenderer: .supportsInstancedArrays() is now .extensions.get( 'ANGLE_instanced_arrays' )."); return this.extensions.get("ANGLE_instanced_arrays")},enableScissorTest:function(a){console.warn("THREE.WebGLRenderer: .enableScissorTest() is now .setScissorTest().");this.setScissorTest(a)},initMaterial:function(){console.warn("THREE.WebGLRenderer: .initMaterial() has been removed.")},addPrePlugin:function(){console.warn("THREE.WebGLRenderer: .addPrePlugin() has been removed.")},addPostPlugin:function(){console.warn("THREE.WebGLRenderer: .addPostPlugin() has been removed.")},updateShadowMap:function(){console.warn("THREE.WebGLRenderer: .updateShadowMap() has been removed.")}}); -Object.defineProperties(Wd.prototype,{shadowMapEnabled:{get:function(){return this.shadowMap.enabled},set:function(a){console.warn("THREE.WebGLRenderer: .shadowMapEnabled is now .shadowMap.enabled.");this.shadowMap.enabled=a}},shadowMapType:{get:function(){return this.shadowMap.type},set:function(a){console.warn("THREE.WebGLRenderer: .shadowMapType is now .shadowMap.type.");this.shadowMap.type=a}},shadowMapCullFace:{get:function(){return this.shadowMap.cullFace},set:function(a){console.warn("THREE.WebGLRenderer: .shadowMapCullFace is now .shadowMap.cullFace."); -this.shadowMap.cullFace=a}}});Object.defineProperties(He.prototype,{cullFace:{get:function(){return this.renderReverseSided?2:1},set:function(a){a=1!==a;console.warn("WebGLRenderer: .shadowMap.cullFace is deprecated. Set .shadowMap.renderReverseSided to "+a+".");this.renderReverseSided=a}}});Object.defineProperties(Ab.prototype,{wrapS:{get:function(){console.warn("THREE.WebGLRenderTarget: .wrapS is now .texture.wrapS.");return this.texture.wrapS},set:function(a){console.warn("THREE.WebGLRenderTarget: .wrapS is now .texture.wrapS."); +Object.defineProperties(Vd.prototype,{shadowMapEnabled:{get:function(){return this.shadowMap.enabled},set:function(a){console.warn("THREE.WebGLRenderer: .shadowMapEnabled is now .shadowMap.enabled.");this.shadowMap.enabled=a}},shadowMapType:{get:function(){return this.shadowMap.type},set:function(a){console.warn("THREE.WebGLRenderer: .shadowMapType is now .shadowMap.type.");this.shadowMap.type=a}},shadowMapCullFace:{get:function(){return this.shadowMap.cullFace},set:function(a){console.warn("THREE.WebGLRenderer: .shadowMapCullFace is now .shadowMap.cullFace."); +this.shadowMap.cullFace=a}}});Object.defineProperties(Ie.prototype,{cullFace:{get:function(){return this.renderReverseSided?2:1},set:function(a){a=1!==a;console.warn("WebGLRenderer: .shadowMap.cullFace is deprecated. Set .shadowMap.renderReverseSided to "+a+".");this.renderReverseSided=a}}});Object.defineProperties(Ab.prototype,{wrapS:{get:function(){console.warn("THREE.WebGLRenderTarget: .wrapS is now .texture.wrapS.");return this.texture.wrapS},set:function(a){console.warn("THREE.WebGLRenderTarget: .wrapS is now .texture.wrapS."); this.texture.wrapS=a}},wrapT:{get:function(){console.warn("THREE.WebGLRenderTarget: .wrapT is now .texture.wrapT.");return this.texture.wrapT},set:function(a){console.warn("THREE.WebGLRenderTarget: .wrapT is now .texture.wrapT.");this.texture.wrapT=a}},magFilter:{get:function(){console.warn("THREE.WebGLRenderTarget: .magFilter is now .texture.magFilter.");return this.texture.magFilter},set:function(a){console.warn("THREE.WebGLRenderTarget: .magFilter is now .texture.magFilter.");this.texture.magFilter= a}},minFilter:{get:function(){console.warn("THREE.WebGLRenderTarget: .minFilter is now .texture.minFilter.");return this.texture.minFilter},set:function(a){console.warn("THREE.WebGLRenderTarget: .minFilter is now .texture.minFilter.");this.texture.minFilter=a}},anisotropy:{get:function(){console.warn("THREE.WebGLRenderTarget: .anisotropy is now .texture.anisotropy.");return this.texture.anisotropy},set:function(a){console.warn("THREE.WebGLRenderTarget: .anisotropy is now .texture.anisotropy.");this.texture.anisotropy= a}},offset:{get:function(){console.warn("THREE.WebGLRenderTarget: .offset is now .texture.offset.");return this.texture.offset},set:function(a){console.warn("THREE.WebGLRenderTarget: .offset is now .texture.offset.");this.texture.offset=a}},repeat:{get:function(){console.warn("THREE.WebGLRenderTarget: .repeat is now .texture.repeat.");return this.texture.repeat},set:function(a){console.warn("THREE.WebGLRenderTarget: .repeat is now .texture.repeat.");this.texture.repeat=a}},format:{get:function(){console.warn("THREE.WebGLRenderTarget: .format is now .texture.format."); return this.texture.format},set:function(a){console.warn("THREE.WebGLRenderTarget: .format is now .texture.format.");this.texture.format=a}},type:{get:function(){console.warn("THREE.WebGLRenderTarget: .type is now .texture.type.");return this.texture.type},set:function(a){console.warn("THREE.WebGLRenderTarget: .type is now .texture.type.");this.texture.type=a}},generateMipmaps:{get:function(){console.warn("THREE.WebGLRenderTarget: .generateMipmaps is now .texture.generateMipmaps.");return this.texture.generateMipmaps}, -set:function(a){console.warn("THREE.WebGLRenderTarget: .generateMipmaps is now .texture.generateMipmaps.");this.texture.generateMipmaps=a}}});fc.prototype.load=function(a){console.warn("THREE.Audio: .load has been deprecated. Use THREE.AudioLoader instead.");var b=this;(new ee).load(a,function(a){b.setBuffer(a)});return this};ie.prototype.getData=function(){console.warn("THREE.AudioAnalyser: .getData() is now .getFrequencyData().");return this.getFrequencyData()};l.WebGLRenderTargetCube=Bb;l.WebGLRenderTarget= -Ab;l.WebGLRenderer=Wd;l.ShaderLib=$a;l.UniformsLib=T;l.UniformsUtils=Fa;l.ShaderChunk=ca;l.FogExp2=Gb;l.Fog=Hb;l.Scene=jd;l.LensFlare=Xd;l.Sprite=wc;l.LOD=xc;l.SkinnedMesh=ld;l.Skeleton=yc;l.Bone=kd;l.Mesh=ya;l.LineSegments=U;l.LineLoop=md;l.Line=Da;l.Points=Ib;l.Group=zc;l.VideoTexture=nd;l.DataTexture=db;l.CompressedTexture=Jb;l.CubeTexture=Xa;l.CanvasTexture=od;l.DepthTexture=Ac;l.Texture=Z;l.CompressedTextureLoader=Ne;l.DataTextureLoader=Zd;l.CubeTextureLoader=$d;l.TextureLoader=pd;l.ObjectLoader= -Oe;l.MaterialLoader=Ed;l.BufferGeometryLoader=ae;l.DefaultLoadingManager=ua;l.LoadingManager=Yd;l.JSONLoader=be;l.ImageLoader=Rc;l.FontLoader=Qe;l.FileLoader=Ka;l.Loader=cc;l.Cache=dd;l.AudioLoader=ee;l.SpotLightShadow=rd;l.SpotLight=sd;l.PointLight=td;l.RectAreaLight=xd;l.HemisphereLight=qd;l.DirectionalLightShadow=ud;l.DirectionalLight=vd;l.AmbientLight=wd;l.LightShadow=sb;l.Light=na;l.StereoCamera=Re;l.PerspectiveCamera=Ba;l.OrthographicCamera=Fb;l.CubeCamera=Fd;l.Camera=ga;l.AudioListener=fe; -l.PositionalAudio=he;l.AudioContext=ge;l.AudioAnalyser=ie;l.Audio=fc;l.VectorKeyframeTrack=ac;l.StringKeyframeTrack=Bd;l.QuaternionKeyframeTrack=Tc;l.NumberKeyframeTrack=bc;l.ColorKeyframeTrack=Dd;l.BooleanKeyframeTrack=Cd;l.PropertyMixer=je;l.PropertyBinding=ha;l.KeyframeTrack=ub;l.AnimationUtils=ka;l.AnimationObjectGroup=Te;l.AnimationMixer=Ve;l.AnimationClip=Ea;l.Uniform=Gd;l.InstancedBufferGeometry=ke;l.BufferGeometry=J;l.GeometryIdCount=function(){return Rd++};l.Geometry=L;l.InterleavedBufferAttribute= -le;l.InstancedInterleavedBuffer=me;l.InterleavedBuffer=gc;l.InstancedBufferAttribute=ne;l.Face3=Ta;l.Object3D=C;l.Raycaster=We;l.Layers=Pd;l.EventDispatcher=Aa;l.Clock=Ye;l.QuaternionLinearInterpolant=Ad;l.LinearInterpolant=Sc;l.DiscreteInterpolant=zd;l.CubicInterpolant=yd;l.Interpolant=va;l.Triangle=Sa;l.Math=Y;l.Spherical=Ze;l.Cylindrical=$e;l.Plane=xa;l.Frustum=fd;l.Sphere=Ia;l.Ray=fb;l.Matrix4=S;l.Matrix3=Ja;l.Box3=Ra;l.Box2=ed;l.Line3=Db;l.Euler=ab;l.Vector4=ia;l.Vector3=p;l.Vector2=F;l.Quaternion= -oa;l.Color=G;l.MorphBlendMesh=ra;l.ImmediateRenderObject=Wc;l.VertexNormalsHelper=Xc;l.SpotLightHelper=hc;l.SkeletonHelper=ic;l.PointLightHelper=jc;l.RectAreaLightHelper=kc;l.HemisphereLightHelper=lc;l.GridHelper=Yc;l.PolarGridHelper=Hd;l.FaceNormalsHelper=Zc;l.DirectionalLightHelper=mc;l.CameraHelper=$c;l.BoxHelper=nc;l.ArrowHelper=zb;l.AxisHelper=Jd;l.CatmullRomCurve3=La;l.CubicBezierCurve3=ad;l.QuadraticBezierCurve3=bd;l.LineCurve3=cd;l.ArcCurve=Kd;l.EllipseCurve=Va;l.SplineCurve=xb;l.CubicBezierCurve= -dc;l.QuadraticBezierCurve=ec;l.LineCurve=Qa;l.Shape=yb;l.Path=Vc;l.ShapePath=ce;l.Font=de;l.CurvePath=Uc;l.Curve=wa;l.ShapeUtils=ta;l.SceneUtils={createMultiMaterialObject:function(a,b){for(var c=new zc,d=0,e=b.length;d + + + + + + + + + + [page:BufferGeometry] → + +

[name]

+ +
Creates extruded BufferGeometry from a path shape.
+ + + + + +

Example

+ + + + var length = 12, width = 8; + + var shape = new THREE.Shape(); + shape.moveTo( 0,0 ); + shape.lineTo( 0, width ); + shape.lineTo( length, width ); + shape.lineTo( length, 0 ); + shape.lineTo( 0, 0 ); + + var extrudeSettings = { + steps: 2, + amount: 16, + bevelEnabled: true, + bevelThickness: 1, + bevelSize: 1, + bevelSegments: 1 + }; + + var geometry = new THREE.ExtrudeBufferGeometry( shape, extrudeSettings ); + var material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } ); + var mesh = new THREE.Mesh( geometry, material ) ; + scene.add( mesh ); + + + +

Constructor

+ + +

[name]([page:Array shapes], [page:Object options])

+
+ shapes — Shape or an array of shapes.
+ options — Object that can contain the following parameters. + +
    +
  • curveSegments — int. Number of points on the curves. Default is 12.
  • +
  • steps — int. Number of points used for subdividing segments along the depth of the extruded spline. Default is 1.
  • +
  • amount — int. Depth to extrude the shape. Default is 100.
  • +
  • bevelEnabled — bool. Apply beveling to the shape. Default is true.
  • +
  • bevelThickness — float. How deep into the original shape the bevel goes. Default is 6.
  • +
  • bevelSize — float. Distance from the shape outline that the bevel extends. Default is bevelThickness - 2.
  • +
  • bevelSegments — int. Number of bevel layers. Default is 3.
  • +
  • extrudePath — THREE.CurvePath. A 3D spline path along which the shape should be extruded (creates Frames if frames aren't defined).
  • +
  • frames — An instance of THREE.TubeGeometry.FrenetFrames containing arrays of tangents, normals, binormals for each step along the extrudePath.
  • +
  • UVGenerator — Object. object that provides UV generator functions
  • +
+ +
+
+ This object extrudes a 2D shape to a 3D geometry. +
+ +
+ When creating a Mesh with this geometry, if you'd like to have a separate material used for its face + and its extruded sides, you can use an instance of THREE.MultiMaterial. The first material will be + applied to the face; the second material will be applied to the sides. +
+ + +

Properties

+ + +

Methods

+ +

[method:null addShapeList]([page:Array shapes], [page:Object options])

+
+ shapes — An Array of shapes to add.
+ options — Object that can contain the following parameters. +
    +
  • curveSegments — int. Number of points on the curves. Default is 12.
  • +
  • steps — int. Number of points used for subdividing segments along the depth of the extruded spline. Default is 1.
  • +
  • amount — int. Depth to extrude the shape. Default is 100.
  • +
  • bevelEnabled — bool. Apply beveling to the shape. Default is true.
  • +
  • bevelThickness — float. How deep into the original shape the bevel goes. Default is 6.
  • +
  • bevelSize — float. Distance from the shape outline that the bevel extends. Default is bevelThickness - 2.
  • +
  • bevelSegments — int. Number of bevel layers. Default is 3.
  • +
  • extrudePath — THREE.CurvePath. A 3D spline path along which the shape should be extruded (creates Frames if frames aren't defined).
  • +
  • frames — An instance of THREE.TubeGeometry.FrenetFrames containing arrays of tangents, normals, binormals for each step along the extrudePath.
  • +
  • UVGenerator — Object. object that provides UV generator functions
  • +
+
+
Adds the shapes to the list to extrude.
+ +

[method:null addShape]([page:Shape shape], [page:Object options])

+
+ shape — A shape to add.
+ options — Object that can contain the following parameters. +
    +
  • curveSegments — int. Number of points on the curves. Default is 12.
  • +
  • steps — int. Number of points used for subdividing segments along the depth of the extruded spline. Default is 1.
  • +
  • amount — int. Depth to extrude the shape. Default is 100.
  • +
  • bevelEnabled — bool. Apply beveling to the shape. Default is true.
  • +
  • bevelThickness — float. How deep into the original shape the bevel goes. Default is 6.
  • +
  • bevelSize — float. Distance from the shape outline that the bevel extends. Default is bevelThickness - 2.
  • +
  • bevelSegments — int. Number of bevel layers. Default is 3.
  • +
  • extrudePath — THREE.CurvePath. A 3D spline path along which the shape should be extruded (creates Frames if frames aren't defined).
  • +
  • frames — An instance of THREE.TubeGeometry.FrenetFrames containing arrays of tangents, normals, binormals for each step along the extrudePath.
  • +
  • UVGenerator — Object. object that provides UV generator functions
  • +
+
+
Add the shape to the list to extrude.
+ + +

Source

+ + [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] + + diff --git a/docs/api/materials/MeshPhongMaterial.html b/docs/api/materials/MeshPhongMaterial.html index b0ad30fa59c7c77c567f92bdde683c7825fcedd0..782835e177ff2c40c6f738093ccef15d09c01903 100644 --- a/docs/api/materials/MeshPhongMaterial.html +++ b/docs/api/materials/MeshPhongMaterial.html @@ -15,7 +15,7 @@
A material for shiny surfaces with specular highlights.

- The uses a non-physically based [link:https://en.wikipedia.org/wiki/LBlinn-Phong_shading_model Blinn-Phong] + The uses a non-physically based [link:https://en.wikipedia.org/wiki/Blinn-Phong_shading_model Blinn-Phong] model for calculating reflectance. Unlike the Lambertian model used in the [page:MeshLambertMaterial] this can simulate shiny surfaces with specular highlights (such as varnished wood).

diff --git a/docs/examples/loaders/GLTFLoader.html b/docs/examples/loaders/GLTF2Loader.html similarity index 69% rename from docs/examples/loaders/GLTFLoader.html rename to docs/examples/loaders/GLTF2Loader.html index af8bb3e142424722555a2f56ada6f2675b1c6b8e..54b1fd913e33ffd4c36f9b9208f3fc1cd0d784c3 100644 --- a/docs/examples/loaders/GLTFLoader.html +++ b/docs/examples/loaders/GLTF2Loader.html @@ -12,22 +12,41 @@

[name]

- A loader for loading a *gltf* resource in JSON format. + A loader for *glTF* 2.0 resources.

- The glTF file format is a JSON file format to enable rapid delivery and loading of 3D content. + glTF (GL Transmission Format) is an open format + specification for efficient delivery and loading of 3D content. Assets may be provided either + in JSON (.gltf) or binary (.glb) format. External files store textures (.jpg, .png, ...) and + additional binary data (.bin). A glTF asset may deliver one or more scenes, including meshes, + materials, textures, shaders, skins, skeletons, animations, lights, and/or cameras. Morph target + animations are not yet finalized in the + glTF specification.
-

Notes

+

Extensions

- When using custom shaders provided within a glTF file [page:THREE.GLTFLoader.Shaders] should be updated on each render loop. See [example:webgl_loader_gltf] demo source code for example usage. + GLTF2Loader supports the following glTF extensions:
+ +

Example

// Instantiate a loader - var loader = new THREE.GLTFLoader(); + var loader = new THREE.GLTF2Loader(); // Load a glTF resource loader.load( 'models/gltf/duck/duck.gltf', function ( gltf ) { @@ -40,7 +59,7 @@ } ); - [example:webgl_loader_gltf] + [example:webgl_loader_gltf2]

Constructor

@@ -88,11 +107,11 @@ [page:String path] — The base path from which to find subsequent glTF resources such as textures, GLSL shaders and .bin data files.
- Parse a glTF-based JSON structure and fire [page:Function callback] when complete. The argument to [page:Function callback] will be an [page:object] that contains loaded parts: .[page:Scene scene], .[page:Array cameras], .[page:Array animations] and .[page:Array shaders] + Parse a glTF-based JSON structure and fire [page:Function callback] when complete. The argument to [page:Function callback] will be an [page:object] that contains loaded parts: .[page:Scene scene], .[page:Array scenes], .[page:Array cameras], and .[page:Array animations].

Source

- [link:https://github.com/mrdoob/three.js/blob/master/examples/js/loaders/GLTFLoader.js examples/js/loaders/GLTFLoader.js] + [link:https://github.com/mrdoob/three.js/blob/master/examples/js/loaders/GLTF2Loader.js examples/js/loaders/GLTF2Loader.js] diff --git a/docs/list.js b/docs/list.js index 141bb24e1ee54a6227737d7ccec6a3bea57c4cec..5ba0f6e45527fb8fc4f8484d3c1e15b4464c8fe7 100644 --- a/docs/list.js +++ b/docs/list.js @@ -145,6 +145,7 @@ var list = { [ "DodecahedronGeometry", "api/geometries/DodecahedronGeometry" ], [ "EdgesGeometry", "api/geometries/EdgesGeometry" ], [ "ExtrudeGeometry", "api/geometries/ExtrudeGeometry" ], + [ "ExtrudeBufferGeometry", "api/geometries/ExtrudeBufferGeometry" ], [ "IcosahedronBufferGeometry", "api/geometries/IcosahedronBufferGeometry" ], [ "IcosahedronGeometry", "api/geometries/IcosahedronGeometry" ], [ "LatheBufferGeometry", "api/geometries/LatheBufferGeometry" ], @@ -339,7 +340,7 @@ var list = { "Loaders": [ [ "BabylonLoader", "examples/loaders/BabylonLoader" ], [ "ColladaLoader", "examples/loaders/ColladaLoader" ], - [ "GLTFLoader", "examples/loaders/GLTFLoader" ], + [ "GLTF2Loader", "examples/loaders/GLTF2Loader" ], [ "MTLLoader", "examples/loaders/MTLLoader" ], [ "OBJLoader", "examples/loaders/OBJLoader" ], [ "PCDLoader", "examples/loaders/PCDLoader" ], diff --git a/docs/manual/introduction/FAQ.html b/docs/manual/introduction/FAQ.html index d00d8ae1a1972268a188b38e367a8b76001d1019..f90529277b474167f26eb2b060bf813d334522b5 100644 --- a/docs/manual/introduction/FAQ.html +++ b/docs/manual/introduction/FAQ.html @@ -32,7 +32,7 @@ TODO The key equation to solving this is this formula for the visible height at a given distance: - s + visible_height = 2 * Math.tan( ( Math.PI / 180 ) * camera.fov / 2 ) * distance_from_camera; If we increase the window height by a certain percentage, then what we want is the visible height at all distances diff --git a/docs/manual/introduction/How-to-update-things.html b/docs/manual/introduction/How-to-update-things.html index ca9357ad9d479544a352da6c66e6137338d978ce..b937c2fd18670db44ccbc69247af06f80f88e2df 100644 --- a/docs/manual/introduction/How-to-update-things.html +++ b/docs/manual/introduction/How-to-update-things.html @@ -49,7 +49,7 @@ object.updateMatrix(); You can however update the content of buffers.

- This means that if you know an attribute of you BufferGeometry will grow, say the number of vertices, + This means that if you know an attribute of your BufferGeometry will grow, say the number of vertices, you must pre-allocate a buffer large enough to hold any new vertices that may be created. Of course, this also means that there will be a maximum size for your BufferGeometry - there is no way to create a BufferGeometry that can efficiently be extended indefinitely. @@ -127,10 +127,10 @@ line.geometry.attributes.position.needsUpdate = true; // required after the firs

[page:Geometry]

- The following flag control updating of various geometry attributes. Set flags only + The following flags control updating of various geometry attributes. Set flags only for attributes that you need to update, updates are costly. Once buffers change, these flags reset automatically back to false. You need to keep setting them to - true if you wanna keep updating buffers. Note that this applies only to [page:Geometry] + true if you want to keep updating buffers. Note that this applies only to [page:Geometry] and not to [page:BufferGeometry].

diff --git a/docs/scenes/js/geometry.js b/docs/scenes/js/geometry.js index 8313a9859232d0c22a4773ab2a4d00ac5a701b9c..d1222fcf02426c98996cfd092d54f38279100ded 100644 --- a/docs/scenes/js/geometry.js +++ b/docs/scenes/js/geometry.js @@ -1300,6 +1300,46 @@ var guis = { generateGeometry(); + }, + + ExtrudeBufferGeometry: function( mesh ) { + + var data = { + steps: 2, + amount: 16, + bevelEnabled: true, + bevelThickness: 1, + bevelSize: 1, + bevelSegments: 1 + }; + + var length = 12, width = 8; + + var shape = new THREE.Shape(); + shape.moveTo( 0,0 ); + shape.lineTo( 0, width ); + shape.lineTo( length, width ); + shape.lineTo( length, 0 ); + shape.lineTo( 0, 0 ); + + function generateGeometry() { + + updateGroupGeometry( mesh, + new THREE.ExtrudeBufferGeometry( shape, data ) + ); + + } + + var folder = gui.addFolder( 'THREE.ExtrudeGeometry' ); + + folder.add( data, 'steps', 1, 10 ).step( 1 ).onChange( generateGeometry ); + folder.add( data, 'amount', 1, 20 ).step( 1 ).onChange( generateGeometry ); + folder.add( data, 'bevelThickness', 1, 5 ).step( 1 ).onChange( generateGeometry ); + folder.add( data, 'bevelSize', 1, 5 ).step( 1 ).onChange( generateGeometry ); + folder.add( data, 'bevelSegments', 1, 5 ).step( 1 ).onChange( generateGeometry ); + + generateGeometry(); + } }; diff --git a/editor/js/Sidebar.Script.js b/editor/js/Sidebar.Script.js index f1f3fc933d5185aef765dec575382a4b96cf6089..e1698e8cbc74acef023ec142997d39d72d975bf6 100644 --- a/editor/js/Sidebar.Script.js +++ b/editor/js/Sidebar.Script.js @@ -102,7 +102,7 @@ Sidebar.Script = function ( editor ) { signals.objectSelected.add( function ( object ) { - if ( object !== null ) { + if ( object !== null && editor.camera !== object ) { container.setDisplay( 'block' ); diff --git a/examples/files.js b/examples/files.js index 7969f56cbb759ce0c65ca86ab878bd11b4297340..4e16c55c281c630f74cbdd5307fdbfaa5896c6d5 100644 --- a/examples/files.js +++ b/examples/files.js @@ -89,6 +89,7 @@ var files = { "webgl_loader_ctm_materials", "webgl_loader_fbx", "webgl_loader_gltf", + "webgl_loader_gltf2", "webgl_loader_json_blender", "webgl_loader_json_claraio", "webgl_loader_json_objconverter", @@ -117,6 +118,7 @@ var files = { "webgl_loader_utf8", "webgl_loader_vrml", "webgl_loader_vtk", + "webgl_loader_x", "webgl_lod", "webgl_marchingcubes", "webgl_materials", diff --git a/examples/js/controls/VRControls.js b/examples/js/controls/VRControls.js index 6eecd608a10ac1578639a788bbc6fbdc6c3def0c..5d94a9b7d107949a9712f5a5ff63a06f729cdb3e 100644 --- a/examples/js/controls/VRControls.js +++ b/examples/js/controls/VRControls.js @@ -37,7 +37,7 @@ THREE.VRControls = function ( object, onError ) { if ( navigator.getVRDisplays ) { - navigator.getVRDisplays().then( gotVRDisplays ).catch ( function () { + navigator.getVRDisplays().then( gotVRDisplays ).catch( function () { console.warn( 'THREE.VRControls: Unable to get VR Displays' ); diff --git a/examples/js/loaders/XLoader.js b/examples/js/loaders/XLoader.js new file mode 100644 index 0000000000000000000000000000000000000000..e44ea5eb29f9ba5d031e4c8c88a3aefb72e4e8be --- /dev/null +++ b/examples/js/loaders/XLoader.js @@ -0,0 +1,1100 @@ + +/** + * @author Jey-en https://github.com/adrs2002 + * + * this loader repo -> https://github.com/adrs2002/threeXLoader + * + * This loader is load model (and animation) from .X file format. (for old DirectX). + * ! this version are load from TEXT format .X only ! not a Binary. + * + * Support + * - mesh + * - texture + * - normal / uv + * - material + * - skinning + * + * Not Support + * - template + * - material(ditail) + * - morph + * - scene + */ + +var XfileLoadMode$1 = XfileLoadMode = { + none: -1, + Element: 1, + FrameTransformMatrix_Read: 3, + Mesh: 5, + Vartex_init: 10, + Vartex_Read: 11, + Index_init: 20, + index_Read: 21, + Uv_init: 30, + Uv_Read: 31, + Normal_V_init: 40, + Normal_V_Read: 41, + Normal_I_init: 42, + Normal_I_Read: 43, + Mat_Face_init: 101, + Mat_Face_len_Read: 102, + Mat_Face_Set: 103, + Mat_Set: 111, + Mat_Set_Texture: 121, + Mat_Set_LightTex: 122, + Mat_Set_EmissiveTex: 123, + Mat_Set_BumpTex: 124, + Mat_Set_NormalTex: 125, + Mat_Set_EnvTex: 126, + Weit_init: 201, + Weit_IndexLength: 202, + Weit_Read_Index: 203, + Weit_Read_Value: 204, + Weit_Read_Matrx: 205, + Anim_init: 1001, + Anim_Reading: 1002, + Anim_KeyValueTypeRead: 1003, + Anim_KeyValueLength: 1004, + Anime_ReadKeyFrame: 1005 +}; + +var classCallCheck = function (instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +}; + +var createClass = function () { + function defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + return function (Constructor, protoProps, staticProps) { + if (protoProps) defineProperties(Constructor.prototype, protoProps); + if (staticProps) defineProperties(Constructor, staticProps); + return Constructor; + }; +}(); + +var XAnimationObj = function () { + function XAnimationObj() { + classCallCheck(this, XAnimationObj); + + this.fps = 30; + this.name = 'xanimation'; + this.length = 0; + this.hierarchy = []; + } + + createClass(XAnimationObj, [{ + key: 'make', + value: function make(XAnimationInfoArray, mesh) { + var keys = Object.keys(XAnimationInfoArray); + var hierarchy_tmp = []; + for (var i = 0; i < keys.length; i++) { + var bone = null; + var parent = -1; + var baseIndex = -1; + for (var m = 0; m < mesh.skeleton.bones.length; m++) { + if (mesh.skeleton.bones[m].name == XAnimationInfoArray[keys[i]].boneName) { + bone = XAnimationInfoArray[keys[i]].boneName; + parent = mesh.skeleton.bones[m].parent.name; + baseIndex = m; + break; + } + } + hierarchy_tmp[baseIndex] = this.makeBonekeys(XAnimationInfoArray[keys[i]], bone, parent); + } + var keys2 = Object.keys(hierarchy_tmp); + for (var _i = 0; _i < keys2.length; _i++) { + this.hierarchy.push(hierarchy_tmp[_i]); + var parentId = -1; + for (var _m = 0; _m < this.hierarchy.length; _m++) { + if (_i != _m && this.hierarchy[_i].parent === this.hierarchy[_m].name) { + parentId = _m; + break; + } + } + this.hierarchy[_i].parent = parentId; + } + } + }, { + key: 'makeBonekeys', + value: function makeBonekeys(XAnimationInfo, bone, parent) { + var refObj = {}; + refObj.name = bone; + refObj.parent = parent; + refObj.keys = []; + for (var i = 0; i < XAnimationInfo.keyFrames.length; i++) { + var keyframe = {}; + keyframe.time = XAnimationInfo.keyFrames[i].time * this.fps; + keyframe.matrix = XAnimationInfo.keyFrames[i].matrix; + keyframe.pos = new THREE.Vector3().setFromMatrixPosition(keyframe.matrix); + keyframe.rot = new THREE.Quaternion().setFromRotationMatrix(keyframe.matrix); + keyframe.scl = new THREE.Vector3().setFromMatrixScale(keyframe.matrix); + refObj.keys.push(keyframe); + } + return refObj; + } + }]); + return XAnimationObj; +}(); + +var Xdata = function Xdata() { + classCallCheck(this, Xdata); + + this.FrameInfo = []; + this.FrameInfo_Raw = []; + this.AnimationSetInfo = []; + this.AnimTicksPerSecond = 60; + this.XAnimationObj = null; +}; + +var XboneInf = function XboneInf() { + classCallCheck(this, XboneInf); + + this.boneName = ""; + this.BoneIndex = 0; + this.Indeces = []; + this.Weights = []; + this.initMatrix = null; + this.OffsetMatrix = null; +}; + +var XAnimationInfo$1 = XAnimationInfo = function XAnimationInfo() { + this.animeName = ""; + this.boneName = ""; + this.targetBone = null; + this.frameStartLv = 0; + this.keyFrames = []; + this.InverseMx = null; +}; + +var XFrameInfo$1 = XFrameInfo = function XFrameInfo() { + this.Mesh = null; + this.Geometry = null; + this.FrameName = ""; + this.ParentName = ""; + this.frameStartLv = 0; + this.FrameTransformMatrix = null; + this.children = []; + this.BoneInfs = []; + this.VertexSetedBoneCount = []; + this.Materials = []; +}; + +var XKeyFrameInfo = function XKeyFrameInfo() { + classCallCheck(this, XKeyFrameInfo); + + this.index = 0; + this.Frame = 0; + this.time = 0.0; + this.matrix = null; +}; + +THREE.XLoader = function () { + function XLoader(manager, Texloader, _zflg) { + classCallCheck(this, XLoader); + + this.manager = manager !== undefined ? manager : new THREE.LoadingManager(); + this.Texloader = Texloader !== undefined ? Texloader : new THREE.TextureLoader(); + this.zflg = _zflg === undefined ? false : _zflg; + this.url = ""; + this.baseDir = ""; + this.nowReadMode = XfileLoadMode$1.none; + this.nowAnimationKeyType = 4; + this.tgtLength = 0; + this.nowReaded = 0; + this.elementLv = 0; + this.geoStartLv = Number.MAX_VALUE; + this.frameStartLv = Number.MAX_VALUE; + this.matReadLine = 0; + this.putMatLength = 0; + this.nowMat = null; + this.BoneInf = new XboneInf(); + this.tmpUvArray = []; + this.normalVectors = []; + this.facesNormal = []; + this.nowFrameName = ""; + this.nowAnimationSetName = ""; + this.frameHierarchie = []; + this.endLineCount = 0; + this.geometry = null; + this.loadingXdata = null; + this.lines = null; + this.keyInfo = null; + this.animeKeyNames = null; + this.data = null; + this.onLoad = null; + } + + createClass(XLoader, [{ + key: 'load', + value: function load(_arg, onLoad, onProgress, onError) { + var _this = this; + + var loader = new THREE.FileLoader(this.manager); + loader.setResponseType('arraybuffer'); + for (var i = 0; i < _arg.length; i++) { + switch (i) { + case 0: + this.url = _arg[i];break; + case 1: + this.zflg = _arg[i];break; + } + } + loader.load(this.url, function (response) { + _this.parse(response, onLoad); + }, onProgress, onError); + } + }, { + key: 'isBinary', + value: function isBinary(binData) { + var reader = new DataView(binData); + var face_size = 32 / 8 * 3 + 32 / 8 * 3 * 3 + 16 / 8; + var n_faces = reader.getUint32(80, true); + var expect = 80 + 32 / 8 + n_faces * face_size; + if (expect === reader.byteLength) { + return true; + } + var fileLength = reader.byteLength; + for (var index = 0; index < fileLength; index++) { + if (reader.getUint8(index, false) > 127) { + return true; + } + } + return false; + } + }, { + key: 'ensureBinary', + value: function ensureBinary(buf) { + if (typeof buf === "string") { + var array_buffer = new Uint8Array(buf.length); + for (var i = 0; i < buf.length; i++) { + array_buffer[i] = buf.charCodeAt(i) & 0xff; + } + return array_buffer.buffer || array_buffer; + } else { + return buf; + } + } + }, { + key: 'ensureString', + value: function ensureString(buf) { + if (typeof buf !== "string") { + var array_buffer = new Uint8Array(buf); + var str = ''; + for (var i = 0; i < buf.byteLength; i++) { + str += String.fromCharCode(array_buffer[i]); + } + return str; + } else { + return buf; + } + } + }, { + key: 'parse', + value: function parse(data, onLoad) { + var binData = this.ensureBinary(data); + this.data = this.ensureString(data); + this.onLoad = onLoad; + return this.isBinary(binData) ? this.parseBinary(binData) : this.parseASCII(); + } + }, { + key: 'parseBinary', + value: function parseBinary(data) { + return parseASCII(String.fromCharCode.apply(null, data)); + } + }, { + key: 'parseASCII', + value: function parseASCII() { + var baseDir = ""; + if (this.url.lastIndexOf("/") > 0) { + this.baseDir = this.url.substr(0, this.url.lastIndexOf("/") + 1); + } + this.loadingXdata = new Xdata(); + this.lines = this.data.split("\n"); + this.mainloop(); + } + }, { + key: 'mainloop', + value: function mainloop() { + var _this2 = this; + + var EndFlg = false; + for (var i = 0; i < 100; i++) { + this.lineRead(this.lines[this.endLineCount].trim()); + this.endLineCount++; + if (this.endLineCount >= this.lines.length - 1) { + EndFlg = true; + this.readFinalize(); + setTimeout(function () { + _this2.animationFinalize(); + }, 1); + break; + } + } + if (!EndFlg) { + setTimeout(function () { + _this2.mainloop(); + }, 1); + } + } + }, { + key: 'lineRead', + value: function lineRead(line) { + if (line.indexOf("template ") > -1) { + return; + } + if (line.length === 0) { + return; + } + if (line.indexOf("{") > -1) { + this.elementLv++; + } + if (line.indexOf("AnimTicksPerSecond") > -1) { + var findA = line.indexOf("{"); + this.loadingXdata.AnimTicksPerSecond = parseInt(line.substr(findA + 1, line.indexOf(";") - findA + 1), 10); + } + if (line.indexOf("}") > -1) { + if (this.elementLv < 1 || this.nowFrameName === "") { + this.elementLv = 0;return; + } + this.endElement(); + return; + } + if (line.indexOf("Frame ") > -1) { + this.beginFrame(line); + return; + } + if (line.indexOf("FrameTransformMatrix") > -1) { + this.nowReadMode = XfileLoadMode$1.FrameTransformMatrix_Read; + return; + } + if (this.nowReadMode === XfileLoadMode$1.FrameTransformMatrix_Read) { + var data = line.split(","); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameTransformMatrix = new THREE.Matrix4(); + this.ParseMatrixData(this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameTransformMatrix, data); + this.nowReadMode = XfileLoadMode$1.Element; + return; + } + if (line.indexOf("Mesh ") > -1) { + this.beginReadMesh(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Vartex_init) { + this.readVertexCount(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Vartex_Read) { + if (this.readVertex(line)) { + return; + } + } + if (this.nowReadMode === XfileLoadMode$1.Index_init) { + this.readIndexLength(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.index_Read) { + if (this.readVertexIndex(line)) { + return; + } + } + if (line.indexOf("MeshNormals ") > -1) { + this.beginMeshNormal(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Normal_V_init) { + this.readMeshNormalCount(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Normal_V_Read) { + if (this.readMeshNormalVertex(line)) { + return; + } + } + if (this.nowReadMode === XfileLoadMode$1.Normal_I_init) { + this.readMeshNormalIndexCount(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Normal_I_Read) { + if (this.readMeshNormalIndex(line)) { + return; + } + } + if (line.indexOf("MeshTextureCoords ") > -1) { + this.nowReadMode = XfileLoadMode$1.Uv_init;return; + } + if (this.nowReadMode === XfileLoadMode$1.Uv_init) { + this.readUvInit(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Uv_Read) { + if (this.readUv(line)) { + return; + } + } + if (line.indexOf("MeshMaterialList ") > -1) { + this.nowReadMode = XfileLoadMode$1.Mat_Face_init; + return; + } + if (this.nowReadMode === XfileLoadMode$1.Mat_Face_init) { + this.nowReadMode = XfileLoadMode$1.Mat_Face_len_Read; + return; + } + if (this.nowReadMode === XfileLoadMode$1.Mat_Face_len_Read) { + this.readMatrixSetLength(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Mat_Face_Set) { + if (this.readMaterialBind(line)) { + return; + } + } + if (line.indexOf("Material ") > -1) { + this.readMaterialInit(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Mat_Set) { + this.readandSetMaterial(line);return; + } + if (this.nowReadMode >= XfileLoadMode$1.Mat_Set_Texture && this.nowReadMode < XfileLoadMode$1.Weit_init) { + this.readandSetMaterialTexture(line);return; + } + if (line.indexOf("SkinWeights ") > -1 && this.nowReadMode >= XfileLoadMode$1.Element) { + this.readBoneInit(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Weit_init) { + this.readBoneName(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Weit_IndexLength) { + this.readBoneVertexLength(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Weit_Read_Index) { + this.readandSetBoneVertex(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Weit_Read_Value) { + this.readandSetBoneWeightValue(line);return; + } + if (this.nowReadMode === XfileLoadMode$1.Weit_Read_Matrx) { + this.readandSetBoneOffsetMatrixValue(line);return; + } + if (line.indexOf("AnimationSet ") > -1) { + this.readandCreateAnimationSet(line);return; + } + if (line.indexOf("Animation ") > -1 && this.nowReadMode === XfileLoadMode$1.Anim_init) { + this.readAndCreateAnimation(line);return; + } + if (line.indexOf("AnimationKey ") > -1) { + this.nowReadMode = XfileLoadMode$1.Anim_KeyValueTypeRead;return; + } + if (this.nowReadMode === XfileLoadMode$1.Anim_KeyValueTypeRead) { + this.nowAnimationKeyType = parseInt(line.substr(0, line.length - 1), 10); + this.nowReadMode = XfileLoadMode$1.Anim_KeyValueLength; + return; + } + if (this.nowReadMode === XfileLoadMode$1.Anim_KeyValueLength) { + this.tgtLength = parseInt(line.substr(0, line.length - 1), 10); + this.nowReaded = 0; + this.nowReadMode = XfileLoadMode$1.Anime_ReadKeyFrame; + return; + } + if (this.nowReadMode === XfileLoadMode$1.Anime_ReadKeyFrame) { + this.readAnimationKeyFrame(line);return; + } + } + }, { + key: 'endElement', + value: function endElement(line) { + if (this.nowReadMode < XfileLoadMode$1.Anim_init && this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameStartLv === this.elementLv && this.nowReadMode > XfileLoadMode$1.none) { + if (this.frameHierarchie.length > 0) { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].children = []; + var keys = Object.keys(this.loadingXdata.FrameInfo_Raw); + for (var m = 0; m < keys.length; m++) { + if (this.loadingXdata.FrameInfo_Raw[keys[m]].ParentName === this.nowFrameName) { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].children.push(keys[m]); + } + } + this.frameHierarchie.pop(); + } + this.MakeOutputGeometry(this.nowFrameName, this.zflg); + this.frameStartLv = this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameStartLv; + if (this.frameHierarchie.length > 0) { + this.nowFrameName = this.frameHierarchie[this.frameHierarchie.length - 1]; + this.frameStartLv = this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameStartLv; + } else { + this.nowFrameName = ""; + } + } + if (this.nowReadMode === XfileLoadMode$1.Mat_Set) { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Materials.push(this.nowMat); + this.nowReadMode = XfileLoadMode$1.Element; + } + this.elementLv--; + } + }, { + key: 'beginFrame', + value: function beginFrame(line) { + this.frameStartLv = this.elementLv; + this.nowReadMode = XfileLoadMode$1.Element; + this.nowFrameName = line.substr(6, line.length - 8); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName] = new XFrameInfo$1(); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameName = this.nowFrameName; + if (this.frameHierarchie.length > 0) { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].ParentName = this.frameHierarchie[this.frameHierarchie.length - 1]; + } + this.frameHierarchie.push(this.nowFrameName); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameStartLv = this.frameStartLv; + } + }, { + key: 'beginReadMesh', + value: function beginReadMesh(line) { + if (this.nowFrameName === "") { + this.frameStartLv = this.elementLv; + this.nowFrameName = line.substr(5, line.length - 6); + if (this.nowFrameName === "") { + this.nowFrameName = "mesh_" + this.loadingXdata.FrameInfo_Raw.length; + } + this.loadingXdata.FrameInfo_Raw[this.nowFrameName] = new XFrameInfo$1(); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameName = this.nowFrameName; + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].FrameStartLv = this.frameStartLv; + } + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry = new THREE.Geometry(); + this.geoStartLv = this.elementLv; + this.nowReadMode = XfileLoadMode$1.Vartex_init; + Bones = []; + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Materials = []; + } + }, { + key: 'readVertexCount', + value: function readVertexCount(line) { + this.nowReadMode = XfileLoadMode$1.Vartex_Read; + this.tgtLength = parseInt(line.substr(0, line.length - 1), 10); + this.nowReaded = 0; + } + }, { + key: 'readVertex', + value: function readVertex(line) { + var data = line.substr(0, line.length - 2).split(";"); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.vertices.push(new THREE.Vector3(parseFloat(data[0]), parseFloat(data[1]), parseFloat(data[2]))); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.skinIndices.push(new THREE.Vector4(0, 0, 0, 0)); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.skinWeights.push(new THREE.Vector4(1, 0, 0, 0)); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].VertexSetedBoneCount.push(0); + this.nowReaded++; + if (this.nowReaded >= this.tgtLength) { + this.nowReadMode = XfileLoadMode$1.Index_init; + return true; + } + return false; + } + }, { + key: 'readIndexLength', + value: function readIndexLength(line) { + this.nowReadMode = XfileLoadMode$1.index_Read; + this.tgtLength = parseInt(line.substr(0, line.length - 1), 10); + this.nowReaded = 0; + } + }, { + key: 'readVertexIndex', + value: function readVertexIndex(line) { + var data = line.substr(2, line.length - 4).split(","); + if (this.zflg) { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces.push(new THREE.Face3(parseInt(data[2], 10), parseInt(data[1], 10), parseInt(data[0], 10), new THREE.Vector3(1, 1, 1).normalize())); + } else { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces.push(new THREE.Face3(parseInt(data[0], 10), parseInt(data[1], 10), parseInt(data[2], 10), new THREE.Vector3(1, 1, 1).normalize())); + } + this.nowReaded++; + if (this.nowReaded >= this.tgtLength) { + this.nowReadMode = XfileLoadMode$1.Element; + return true; + } + return false; + } + }, { + key: 'beginMeshNormal', + value: function beginMeshNormal(line) { + this.nowReadMode = XfileLoadMode$1.Normal_V_init; + this.normalVectors = []; + this.facesNormal = []; + } + }, { + key: 'readMeshNormalCount', + value: function readMeshNormalCount(line) { + this.nowReadMode = XfileLoadMode$1.Normal_V_Read; + this.tgtLength = parseInt(line.substr(0, line.length - 1), 10); + this.nowReaded = 0; + } + }, { + key: 'readMeshNormalVertex', + value: function readMeshNormalVertex(line) { + var data = line.split(";"); + this.normalVectors.push([parseFloat(data[0]), parseFloat(data[1]), parseFloat(data[2])]); + this.nowReaded++; + if (this.nowReaded >= this.tgtLength) { + this.nowReadMode = XfileLoadMode$1.Normal_I_init; + return true; + } + return false; + } + }, { + key: 'readMeshNormalIndexCount', + value: function readMeshNormalIndexCount(line) { + this.nowReadMode = XfileLoadMode$1.Normal_I_Read; + this.tgtLength = parseInt(line.substr(0, line.length - 1), 10); + this.nowReaded = 0; + } + }, { + key: 'readMeshNormalIndex', + value: function readMeshNormalIndex(line) { + var data = line.substr(2, line.length - 4).split(","); + var nowID = parseInt(data[0], 10); + var v1 = new THREE.Vector3(this.normalVectors[nowID][0], this.normalVectors[nowID][1], this.normalVectors[nowID][2]); + nowID = parseInt(data[1], 10); + var v2 = new THREE.Vector3(this.normalVectors[nowID][0], this.normalVectors[nowID][1], this.normalVectors[nowID][2]); + nowID = parseInt(data[2], 10); + var v3 = new THREE.Vector3(this.normalVectors[nowID][0], this.normalVectors[nowID][1], this.normalVectors[nowID][2]); + if (this.zflg) { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces[this.nowReaded].vertexNormals = [v3, v2, v1]; + } else { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces[this.nowReaded].vertexNormals = [v1, v2, v3]; + } + this.facesNormal.push(v1.normalize()); + this.nowReaded++; + if (this.nowReaded >= this.tgtLength) { + this.nowReadMode = XfileLoadMode$1.Element; + return true; + } + return false; + } + }, { + key: 'readUvInit', + value: function readUvInit(line) { + this.nowReadMode = XfileLoadMode$1.Uv_Read; + this.tgtLength = parseInt(line.substr(0, line.length - 1), 10); + this.nowReaded = 0; + this.tmpUvArray = []; + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faceVertexUvs[0] = []; + } + }, { + key: 'readUv', + value: function readUv(line) { + var data = line.split(";"); + if (THREE.XLoader.IsUvYReverse) { + this.tmpUvArray.push(new THREE.Vector2(parseFloat(data[0]), 1 - parseFloat(data[1]))); + } else { + this.tmpUvArray.push(new THREE.Vector2(parseFloat(data[0]), parseFloat(data[1]))); + } + this.nowReaded++; + if (this.nowReaded >= this.tgtLength) { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faceVertexUvs[0] = []; + for (var m = 0; m < this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces.length; m++) { + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faceVertexUvs[0][m] = []; + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faceVertexUvs[0][m].push(this.tmpUvArray[this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces[m].a]); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faceVertexUvs[0][m].push(this.tmpUvArray[this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces[m].b]); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faceVertexUvs[0][m].push(this.tmpUvArray[this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces[m].c]); + } + this.nowReadMode = XfileLoadMode$1.Element; + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.uvsNeedUpdate = true; + return true; + } + return false; + } + }, { + key: 'readMatrixSetLength', + value: function readMatrixSetLength(line) { + this.nowReadMode = XfileLoadMode$1.Mat_Face_Set; + this.tgtLength = parseInt(line.substr(0, line.length - 1), 10); + this.nowReaded = 0; + } + }, { + key: 'readMaterialBind', + value: function readMaterialBind(line) { + var data = line.split(","); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].Geometry.faces[this.nowReaded].materialIndex = parseInt(data[0]); + this.nowReaded++; + if (this.nowReaded >= this.tgtLength) { + this.nowReadMode = XfileLoadMode$1.Element; + return true; + } + return false; + } + }, { + key: 'readMaterialInit', + value: function readMaterialInit(line) { + this.nowReadMode = XfileLoadMode$1.Mat_Set; + this.matReadLine = 0; + this.nowMat = new THREE.MeshPhongMaterial({ color: Math.random() * 0xffffff }); + var matName = line.substr(9, line.length - 10); + if (matName !== "") { + this.nowMat.name = matName; + } + if (this.zflg) { + this.nowMat.side = THREE.BackSide; + } else { + this.nowMat.side = THREE.FrontSide; + } + this.nowMat.side = THREE.FrontSide; + } + }, { + key: 'readandSetMaterial', + value: function readandSetMaterial(line) { + var data = line.split(";"); + this.matReadLine++; + switch (this.matReadLine) { + case 1: + this.nowMat.color.r = data[0]; + this.nowMat.color.g = data[1]; + this.nowMat.color.b = data[2]; + break; + case 2: + this.nowMat.shininess = data[0]; + break; + case 3: + this.nowMat.specular.r = data[0]; + this.nowMat.specular.g = data[1]; + this.nowMat.specular.b = data[2]; + break; + case 4: + this.nowMat.emissive.r = data[0]; + this.nowMat.emissive.g = data[1]; + this.nowMat.emissive.b = data[2]; + break; + } + if (line.indexOf("TextureFilename") > -1) { + this.nowReadMode = XfileLoadMode$1.Mat_Set_Texture; + } else if (line.indexOf("BumpMapFilename") > -1) { + this.nowReadMode = XfileLoadMode$1.Mat_Set_BumpTex; + this.nowMat.bumpScale = 0.05; + } else if (line.indexOf("NormalMapFilename") > -1) { + this.nowReadMode = XfileLoadMode$1.Mat_Set_NormalTex; + this.nowMat.normalScale = new THREE.Vector2(2, 2); + } else if (line.indexOf("EmissiveMapFilename") > -1) { + this.nowReadMode = XfileLoadMode$1.Mat_Set_EmissiveTex; + } else if (line.indexOf("LightMapFilename") > -1) { + this.nowReadMode = XfileLoadMode$1.Mat_Set_LightTex; + } + } + }, { + key: 'readandSetMaterialTexture', + value: function readandSetMaterialTexture(line) { + var data = line.substr(1, line.length - 3); + if (data != undefined && data.length > 0) { + switch (this.nowReadMode) { + case XfileLoadMode$1.Mat_Set_Texture: + this.nowMat.map = this.Texloader.load(this.baseDir + data); + break; + case XfileLoadMode$1.Mat_Set_BumpTex: + this.nowMat.bumpMap = this.Texloader.load(this.baseDir + data); + break; + case XfileLoadMode$1.Mat_Set_NormalTex: + this.nowMat.normalMap = this.Texloader.load(this.baseDir + data); + break; + case XfileLoadMode$1.Mat_Set_EmissiveTex: + this.nowMat.emissiveMap = this.Texloader.load(this.baseDir + data); + break; + case XfileLoadMode$1.Mat_Set_LightTex: + this.nowMat.lightMap = this.Texloader.load(this.baseDir + data); + break; + case XfileLoadMode$1.Mat_Set_EnvTex: + this.nowMat.envMap = this.Texloader.load(this.baseDir + data); + break; + } + } + this.nowReadMode = XfileLoadMode$1.Mat_Set; + this.endLineCount++; + this.elementLv--; + } + }, { + key: 'readBoneInit', + value: function readBoneInit(line) { + this.nowReadMode = XfileLoadMode$1.Weit_init; + this.BoneInf = new XboneInf(); + } + }, { + key: 'readBoneName', + value: function readBoneName(line) { + this.nowReadMode = XfileLoadMode$1.Weit_IndexLength; + this.BoneInf.boneName = line.substr(1, line.length - 3); + this.BoneInf.BoneIndex = this.loadingXdata.FrameInfo_Raw[this.nowFrameName].BoneInfs.length; + this.nowReaded = 0; + } + }, { + key: 'readBoneVertexLength', + value: function readBoneVertexLength(line) { + this.nowReadMode = XfileLoadMode$1.Weit_Read_Index; + this.tgtLength = parseInt(line.substr(0, line.length - 1), 10); + this.nowReaded = 0; + } + }, { + key: 'readandSetBoneVertex', + value: function readandSetBoneVertex(line) { + this.BoneInf.Indeces.push(parseInt(line.substr(0, line.length - 1), 10)); + this.nowReaded++; + if (this.nowReaded >= this.tgtLength || line.indexOf(";") > -1) { + this.nowReadMode = XfileLoadMode$1.Weit_Read_Value; + this.nowReaded = 0; + } + } + }, { + key: 'readandSetBoneWeightValue', + value: function readandSetBoneWeightValue(line) { + var nowVal = parseFloat(line.substr(0, line.length - 1)); + this.BoneInf.Weights.push(nowVal); + this.nowReaded++; + if (this.nowReaded >= this.tgtLength || line.indexOf(";") > -1) { + this.nowReadMode = XfileLoadMode$1.Weit_Read_Matrx; + } + } + }, { + key: 'readandSetBoneOffsetMatrixValue', + value: function readandSetBoneOffsetMatrixValue(line) { + var data = line.split(","); + this.BoneInf.initMatrix = new THREE.Matrix4(); + this.ParseMatrixData(this.BoneInf.initMatrix, data); + this.BoneInf.OffsetMatrix = new THREE.Matrix4(); + this.BoneInf.OffsetMatrix.getInverse(this.BoneInf.initMatrix); + this.loadingXdata.FrameInfo_Raw[this.nowFrameName].BoneInfs.push(this.BoneInf); + this.nowReadMode = XfileLoadMode$1.Element; + } + }, { + key: 'readandCreateAnimationSet', + value: function readandCreateAnimationSet(line) { + this.frameStartLv = this.elementLv; + this.nowReadMode = XfileLoadMode$1.Anim_init; + this.nowAnimationSetName = line.substr(13, line.length - 14).trim(); + this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName] = []; + } + }, { + key: 'readAndCreateAnimation', + value: function readAndCreateAnimation(line) { + this.nowFrameName = line.substr(10, line.length - 11).trim(); + this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName] = new XAnimationInfo$1(); + this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName].animeName = this.nowFrameName; + this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName].FrameStartLv = this.frameStartLv; + while (true) { + this.endLineCount++; + line = this.lines[this.endLineCount].trim(); + if (line.indexOf("{") > -1 && line.indexOf("}") > -1) { + this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName].boneName = line.replace(/{/g, "").replace(/}/g, "").trim(); + break; + } + } + } + }, { + key: 'readAnimationKeyFrame', + value: function readAnimationKeyFrame(line) { + this.keyInfo = null; + var data = line.split(";"); + var nowKeyframe = parseInt(data[0], 10); + var frameFound = false; + var tmpM = new THREE.Matrix4(); + if (this.nowAnimationKeyType != 4) { + for (var mm = 0; mm < this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName].keyFrames.length; mm++) { + if (this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName].keyFrames[mm].Frame === nowKeyframe) { + this.keyInfo = this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName].keyFrames[mm]; + frameFound = true; + break; + } + } + } + if (!frameFound) { + this.keyInfo = new XKeyFrameInfo(); + this.keyInfo.matrix = new THREE.Matrix4(); + this.keyInfo.Frame = nowKeyframe; + } + var data2 = data[2].split(","); + switch (this.nowAnimationKeyType) { + case 0: + tmpM.makeRotationFromQuaternion(new THREE.Quaternion(parseFloat(data2[0]), parseFloat(data2[1]), parseFloat(data2[2]))); + this.keyInfo.matrix.multiply(tmpM); + break; + case 1: + tmpM.makeScale(parseFloat(data2[0]), parseFloat(data2[1]), parseFloat(data2[2])); + this.keyInfo.matrix.multiply(tmpM); + break; + case 2: + tmpM.makeTranslation(parseFloat(data2[0]), parseFloat(data2[1]), parseFloat(data2[2])); + this.keyInfo.matrix.multiply(tmpM); + break; + case 4: + this.ParseMatrixData(this.keyInfo.matrix, data2); + break; + } + if (!frameFound) { + this.keyInfo.index = this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName].keyFrames.length; + this.keyInfo.time = /*1.0 / this.loadingXdata.AnimTicksPerSecond * */this.keyInfo.Frame; + this.loadingXdata.AnimationSetInfo[this.nowAnimationSetName][this.nowFrameName].keyFrames.push(this.keyInfo); + } + this.nowReaded++; + if (this.nowReaded >= this.tgtLength || line.indexOf(";;;") > -1) { + this.nowReadMode = XfileLoadMode$1.Anim_init; + } + } + }, { + key: 'readFinalize', + value: function readFinalize() { + this.loadingXdata.FrameInfo = []; + var keys = Object.keys(this.loadingXdata.FrameInfo_Raw); + for (var i = 0; i < keys.length; i++) { + if (this.loadingXdata.FrameInfo_Raw[keys[i]].Mesh != null) { + this.loadingXdata.FrameInfo.push(this.loadingXdata.FrameInfo_Raw[keys[i]].Mesh); + } + } + if (this.loadingXdata.FrameInfo != null & this.loadingXdata.FrameInfo.length > 0) { + for (var _i = 0; _i < this.loadingXdata.FrameInfo.length; _i++) { + if (this.loadingXdata.FrameInfo[_i].parent == null) { + this.loadingXdata.FrameInfo[_i].zflag = this.zflg; + if (this.zflg) { + this.loadingXdata.FrameInfo[_i].scale.set(-1, 1, 1); + } + } + } + } + } + }, { + key: 'ParseMatrixData', + value: function ParseMatrixData(targetMatrix, data) { + targetMatrix.set(parseFloat(data[0]), parseFloat(data[4]), parseFloat(data[8]), parseFloat(data[12]), parseFloat(data[1]), parseFloat(data[5]), parseFloat(data[9]), parseFloat(data[13]), parseFloat(data[2]), parseFloat(data[6]), parseFloat(data[10]), parseFloat(data[14]), parseFloat(data[3]), parseFloat(data[7]), parseFloat(data[11]), parseFloat(data[15])); + } + }, { + key: 'MakeOutputGeometry', + value: function MakeOutputGeometry(nowFrameName, _zflg) { + if (this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry != null) { + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.computeBoundingBox(); + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.computeBoundingSphere(); + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.verticesNeedUpdate = true; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.normalsNeedUpdate = true; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.colorsNeedUpdate = true; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.uvsNeedUpdate = true; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.groupsNeedUpdate = true; + var putBones = []; + var BoneDics = []; + var rootBone = new THREE.Bone(); + if (this.loadingXdata.FrameInfo_Raw[nowFrameName].BoneInfs != null && this.loadingXdata.FrameInfo_Raw[nowFrameName].BoneInfs.length) { + var keys = Object.keys(this.loadingXdata.FrameInfo_Raw); + var BoneDics_Name = []; + for (var m = 0; m < keys.length; m++) { + if (this.loadingXdata.FrameInfo_Raw[keys[m]].FrameStartLv <= this.loadingXdata.FrameInfo_Raw[nowFrameName].FrameStartLv && nowFrameName != keys[m]) { + continue; + } + var b = new THREE.Bone(); + b.name = keys[m]; + b.applyMatrix(this.loadingXdata.FrameInfo_Raw[keys[m]].FrameTransformMatrix); + b.matrixWorld = b.matrix; + b.FrameTransformMatrix = this.loadingXdata.FrameInfo_Raw[keys[m]].FrameTransformMatrix; + BoneDics_Name[b.name] = putBones.length; + putBones.push(b); + } + for (var _m = 0; _m < putBones.length; _m++) { + for (var dx = 0; dx < this.loadingXdata.FrameInfo_Raw[putBones[_m].name].children.length; dx++) { + var nowBoneIndex = BoneDics_Name[this.loadingXdata.FrameInfo_Raw[putBones[_m].name].children[dx]]; + if (putBones[nowBoneIndex] != null) { + putBones[_m].add(putBones[nowBoneIndex]); + } + } + } + } + var mesh = null; + var bufferGeometry = new THREE.BufferGeometry(); + if (putBones.length > 0) { + if (this.loadingXdata.FrameInfo_Raw[putBones[0].name].children.length === 0 && nowFrameName != putBones[0].name) { + putBones[0].add(putBones[1]); + putBones[0].zflag = _zflg; + } + for (var _m2 = 0; _m2 < putBones.length; _m2++) { + if (putBones[_m2].parent === null) { + putBones[_m2].zflag = _zflg; + } + for (var bi = 0; bi < this.loadingXdata.FrameInfo_Raw[nowFrameName].BoneInfs.length; bi++) { + if (putBones[_m2].name === this.loadingXdata.FrameInfo_Raw[nowFrameName].BoneInfs[bi].boneName) { + for (var vi = 0; vi < this.loadingXdata.FrameInfo_Raw[nowFrameName].BoneInfs[bi].Indeces.length; vi++) { + var nowVertexID = this.loadingXdata.FrameInfo_Raw[nowFrameName].BoneInfs[bi].Indeces[vi]; + var nowVal = this.loadingXdata.FrameInfo_Raw[nowFrameName].BoneInfs[bi].Weights[vi]; + switch (this.loadingXdata.FrameInfo_Raw[nowFrameName].VertexSetedBoneCount[nowVertexID]) { + case 0: + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.skinIndices[nowVertexID].x = _m2; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.skinWeights[nowVertexID].x = nowVal; + break; + case 1: + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.skinIndices[nowVertexID].y = _m2; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.skinWeights[nowVertexID].y = nowVal; + break; + case 2: + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.skinIndices[nowVertexID].z = _m2; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.skinWeights[nowVertexID].z = nowVal; + break; + case 3: + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.skinIndices[nowVertexID].w = _m2; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry.skinWeights[nowVertexID].w = nowVal; + break; + } + this.loadingXdata.FrameInfo_Raw[nowFrameName].VertexSetedBoneCount[nowVertexID]++; + } + } + } + } + for (var sk = 0; sk < this.loadingXdata.FrameInfo_Raw[nowFrameName].Materials.length; sk++) { + this.loadingXdata.FrameInfo_Raw[nowFrameName].Materials[sk].skinning = true; + } + mesh = new THREE.SkinnedMesh(bufferGeometry.fromGeometry(this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry), new THREE.MultiMaterial(this.loadingXdata.FrameInfo_Raw[nowFrameName].Materials)); + var skeleton = new THREE.Skeleton(putBones); + mesh.add(putBones[0]); + mesh.bind(skeleton); + } else { + mesh = new THREE.Mesh(bufferGeometry.fromGeometry(this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry), new THREE.MultiMaterial(this.loadingXdata.FrameInfo_Raw[nowFrameName].Materials)); + } + mesh.name = nowFrameName; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Mesh = mesh; + this.loadingXdata.FrameInfo_Raw[nowFrameName].Geometry = null; + } + } + }, { + key: 'animationFinalize', + value: function animationFinalize() { + this.animeKeyNames = Object.keys(this.loadingXdata.AnimationSetInfo); + if (this.animeKeyNames != null && this.animeKeyNames.length > 0) { + this.nowReaded = 0; + this.loadingXdata.XAnimationObj = []; + this.animationFinalize_step(); + } else { + this.finalproc(); + } + } + }, { + key: 'animationFinalize_step', + value: function animationFinalize_step() { + var i = this.nowReaded; + var keys = Object.keys(this.loadingXdata.FrameInfo_Raw); + var tgtModel = null; + for (var m = 0; m < this.loadingXdata.FrameInfo.length; m++) { + var keys2 = Object.keys(this.loadingXdata.AnimationSetInfo[this.animeKeyNames[i]]); + if (this.loadingXdata.AnimationSetInfo[this.animeKeyNames[i]][keys2[0]].boneName == this.loadingXdata.FrameInfo[m].name) { + tgtModel = this.loadingXdata.FrameInfo[m]; + } + } + if (tgtModel != null) { + this.loadingXdata.XAnimationObj[i] = new XAnimationObj(); + this.loadingXdata.XAnimationObj[i].fps = this.loadingXdata.AnimTicksPerSecond; + this.loadingXdata.XAnimationObj[i].name = this.animeKeyNames[i]; + this.loadingXdata.XAnimationObj[i].make(this.loadingXdata.AnimationSetInfo[this.animeKeyNames[i]], tgtModel); + } + this.nowReaded++; + if (this.nowReaded >= this.animeKeyNames.length) { + this.loadingXdata.AnimationSetInfo = null; + this.finalproc(); + } else { + this.animationFinalize_step(); + } + } + }, { + key: 'finalproc', + value: function finalproc() { + var _this3 = this; + + setTimeout(function () { + _this3.onLoad(_this3.loadingXdata); + }, 1); + } + }]); + return XLoader; +}(); + + +THREE.XLoader.IsUvYReverse = true; diff --git a/examples/js/vr/DaydreamController.js b/examples/js/vr/DaydreamController.js index cbed0b63c2fa7d5cbecc78d4fe3471b7cb5cb31a..7b3fe425f05c2d1eae9400e9faab595711b25d94 100644 --- a/examples/js/vr/DaydreamController.js +++ b/examples/js/vr/DaydreamController.js @@ -25,7 +25,7 @@ THREE.DaydreamController = function () { var gamepad = gamepads[ i ]; - if ( gamepad !== null && ( gamepad.id === 'Daydream Controller' ) ) { + if ( gamepad && ( gamepad.id === 'Daydream Controller' ) ) { return gamepad; @@ -66,7 +66,7 @@ THREE.DaydreamController = function () { // angular velocity - if ( pose.angularVelocity !== null || ! angularVelocity.equals( pose.angularVelocity ) ) { + if ( pose.angularVelocity !== null && ! angularVelocity.equals( pose.angularVelocity ) ) { angularVelocity.fromArray( pose.angularVelocity ); scope.dispatchEvent( { type: 'angularvelocitychanged', angularVelocity: angularVelocity } ); diff --git a/examples/js/vr/WebVR.js b/examples/js/vr/WebVR.js index d689be33f5e6dd9fdaea30685e9ae0af34ddcf11..ab44c9b186de33cdd5626e1b89e7b07fa65e26e7 100644 --- a/examples/js/vr/WebVR.js +++ b/examples/js/vr/WebVR.js @@ -18,6 +18,24 @@ var WEBVR = { }, + getVRDisplay: function ( onDisplay ) { + + if ( 'getVRDisplays' in navigator ) { + + navigator.getVRDisplays() + .then( function ( displays ) { + + onDisplay( displays[ 0 ] ); + + } ) + .catch( function () { + // no displays + } ); + + } + + }, + getMessage: function () { var message; @@ -65,7 +83,16 @@ var WEBVR = { }, - getButton: function ( effect ) { + getButton: function ( display, canvas ) { + + /* + if ( display instanceof VRDisplay === false ) { + + console.error( 'WebVR.getButton() now expects a VRDisplay.' ); + return; + + } + */ var button = document.createElement( 'button' ); button.style.position = 'absolute'; @@ -85,13 +112,13 @@ var WEBVR = { button.textContent = 'ENTER VR'; button.onclick = function () { - effect.isPresenting ? effect.exitPresent() : effect.requestPresent(); + display.isPresenting ? display.exitPresent() : display.requestPresent( [ { source: canvas } ] ); }; window.addEventListener( 'vrdisplaypresentchange', function () { - button.textContent = effect.isPresenting ? 'EXIT VR' : 'ENTER VR'; + button.textContent = display.isPresenting ? 'EXIT VR' : 'ENTER VR'; }, false ); diff --git a/examples/js/vr/WebVRCamera.js b/examples/js/vr/WebVRCamera.js new file mode 100644 index 0000000000000000000000000000000000000000..775d42770691a9cad2b24a6ce8fabe7f7159f403 --- /dev/null +++ b/examples/js/vr/WebVRCamera.js @@ -0,0 +1,165 @@ +/** + * @author mrdoob / http://mrdoob.com/ + */ + +THREE.WebVRCamera = function ( display, renderer ) { + + var scope = this; + + var frameData = null; + + if ( 'VRFrameData' in window ) { + + frameData = new window.VRFrameData(); + + } + + var eyeTranslationL = new THREE.Vector3(); + var eyeTranslationR = new THREE.Vector3(); + + var cameraL = new THREE.PerspectiveCamera(); + cameraL.bounds = new THREE.Vector4( 0.0, 0.0, 0.5, 1.0 ); + cameraL.layers.enable( 1 ); + + var cameraR = new THREE.PerspectiveCamera(); + cameraR.bounds = new THREE.Vector4( 0.5, 0.0, 0.5, 1.0 ); + cameraR.layers.enable( 2 ); + + // + + var currentSize, currentPixelRatio; + + function onVRDisplayPresentChange() { + + if ( display.isPresenting ) { + + var eyeParameters = display.getEyeParameters( 'left' ); + var renderWidth = eyeParameters.renderWidth; + var renderHeight = eyeParameters.renderHeight; + + currentPixelRatio = renderer.getPixelRatio(); + currentSize = renderer.getSize(); + + renderer.setPixelRatio( 1 ); + renderer.setSize( renderWidth * 2, renderHeight, false ); + + scope.enabled = true; + + } else if ( scope.enabled ) { + + scope.enabled = false; + + renderer.setPixelRatio( currentPixelRatio ); + renderer.setSize( currentSize.width, currentSize.height, true ); + + } + + } + + window.addEventListener( 'vrdisplaypresentchange', onVRDisplayPresentChange, false ); + + // + + THREE.ArrayCamera.call( this, [ cameraL, cameraR ] ); + + // + + this.onBeforeRender = function () { + + display.depthNear = scope.near; + display.depthFar = scope.far; + + display.getFrameData( frameData ); + + // + + var pose = frameData.pose; + + if ( pose.orientation !== null ) { + + scope.quaternion.fromArray( pose.orientation ); + + } + + if ( pose.position !== null ) { + + scope.position.fromArray( pose.position ); + + } else { + + scope.position.set( 0, 0, 0 ); + + } + + // + + var eyeParamsL = display.getEyeParameters( 'left' ); + var eyeParamsR = display.getEyeParameters( 'right' ); + + eyeTranslationL.fromArray( eyeParamsL.offset ); + eyeTranslationR.fromArray( eyeParamsR.offset ); + + cameraL.position.copy( scope.position ); + cameraL.quaternion.copy( scope.quaternion ); + cameraL.scale.copy( scope.scale ); + + cameraR.position.copy( scope.position ); + cameraR.quaternion.copy( scope.quaternion ); + cameraR.scale.copy( scope.scale ); + + cameraL.translateOnAxis( eyeTranslationL, cameraL.scale.x ); + cameraR.translateOnAxis( eyeTranslationR, cameraR.scale.x ); + + cameraL.updateMatrixWorld(); + cameraL.matrixWorldInverse.getInverse( cameraL.matrixWorld ); + + cameraR.updateMatrixWorld(); + cameraR.matrixWorldInverse.getInverse( cameraR.matrixWorld ); + + cameraL.projectionMatrix.elements = frameData.leftProjectionMatrix; + cameraR.projectionMatrix.elements = frameData.rightProjectionMatrix; + + // HACK @mrdoob + // Ideally we'll merge both projection matrices so we can frustum cull + + scope.projectionMatrix.copy( cameraL.projectionMatrix ); + + // + + var layers = display.getLayers(); + + if ( layers.length ) { + + var layer = layers[ 0 ]; + + if ( layer.leftBounds !== null && layer.leftBounds.length === 4 ) { + + cameraL.bounds.fromArray( layer.leftBounds ); + + } + + if ( layer.rightBounds !== null && layer.rightBounds.length === 4 ) { + + cameraR.bounds.fromArray( layer.rightBounds ); + + } + + } + + }; + + this.onAfterRender = function () { + + if ( display.isPresenting ) display.submitFrame(); + + }; + +}; + +THREE.WebVRCamera.prototype = Object.assign( Object.create( THREE.ArrayCamera.prototype ), { + + constructor: THREE.WebVRCamera, + + isWebVRCamera: true + +} ); diff --git a/examples/models/xfile/SSR06_Born2.x b/examples/models/xfile/SSR06_Born2.x new file mode 100644 index 0000000000000000000000000000000000000000..f7d26c5d961ad4f4da29223a99614c5e4b193f89 --- /dev/null +++ b/examples/models/xfile/SSR06_Born2.x @@ -0,0 +1,60392 @@ +xof 0303txt 0032 + +AnimTicksPerSecond { 30; } + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template VertexDuplicationIndices { + + DWORD nIndices; + DWORD nOriginalVertices; + array DWORD indices[nIndices]; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array FLOAT weights[nWeights]; + Matrix4x4 matrixOffset; +} + + +Frame Frame_SCENE_ROOT { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;; + } + + Frame Frame1_AllPutting_2_Layer1 { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;; + } + + Mesh Mesh_AllPutting_2 { + 6202; + -1.157854;10.366903;1.400000;, + -1.157854;10.366903;-0.100000;, + -1.157854;8.063718;-0.200000;, + -1.157854;8.063718;1.400000;, + 0.000000;8.634896;-0.380000;, + -0.753840;8.634896;-0.380000;, + -0.753840;8.634896;-1.450000;, + 0.000000;8.634896;-1.450000;, + 0.000000;8.335782;1.300000;, + 0.000000;8.335782;-1.400000;, + -0.540000;6.512889;-1.250000;, + -0.540000;5.747889;-1.250000;, + 0.000000;4.472888;-1.360000;, + 0.000000;4.472888;1.400000;, + 0.000000;11.460281;0.922292;, + 0.000000;10.728957;0.922292;, + -0.320198;10.985079;1.340562;, + 0.000000;10.957540;1.928746;, + 0.000000;10.370019;1.071678;, + 0.000000;9.564607;-0.920000;, + -0.783621;9.564607;-0.920000;, + -0.783621;10.114978;1.320000;, + 0.000000;10.114978;1.320000;, + 0.000000;10.031889;1.000000;, + 0.000000;10.031889;0.150000;, + 0.000000;8.346831;-1.092274;, + 0.000000;8.844754;-2.226006;, + 0.000000;5.122600;-1.365000;, + 0.000000;4.439500;-1.365000;, + -1.650000;0.372590;-1.341000;, + -1.650000;0.012590;-1.341000;, + 0.000000;8.377817;2.627000;, + 0.000000;8.860044;2.627000;, + 0.000000;9.017695;1.730000;, + 0.000000;8.229440;1.730000;, + -1.054643;0.540345;-0.085888;, + -1.088500;6.391939;-0.509769;, + -1.586200;4.409444;-1.192000;, + -1.586200;4.409444;-0.991000;, + -1.586200;4.409444;-0.690000;, + -1.120000;2.735444;0.089000;, + -0.580000;2.735444;0.089000;, + -1.235402;0.607264;0.837000;, + -1.354000;0.372590;-1.341000;, + -1.354000;0.012590;-1.341000;, + -1.354000;0.552590;-0.191000;, + -1.354000;1.092590;-1.341000;, + -1.120000;2.285444;0.209000;, + -2.198000;-0.032410;-2.691000;, + -2.198000;-0.032410;-2.691000;, + -2.198000;0.057590;-2.841000;, + -2.198000;0.057590;-2.841000;, + -2.198000;0.057590;-2.841000;, + -1.650000;-0.032410;-2.691000;, + -1.650000;0.057590;-2.841000;, + -1.650000;0.057590;-2.841000;, + -1.102000;-0.032410;-2.691000;, + -1.102000;-0.032410;-2.691000;, + -1.102000;0.057590;-2.841000;, + -1.102000;0.057590;-2.841000;, + -1.102000;0.057590;-2.841000;, + -0.297220;5.130789;-2.375762;, + -0.297220;5.130789;-2.375762;, + -0.355000;5.248089;-2.490761;, + -0.355000;5.248089;-2.490761;, + -0.243220;4.404039;-2.145761;, + -0.243220;4.404039;-2.145761;, + -0.243220;4.404039;-2.145761;, + 0.000000;5.248089;-2.490761;, + 0.000000;4.404039;-2.145761;, + 0.000000;4.404039;-2.145761;, + 0.000000;5.130789;-2.375762;, + -0.355000;6.604689;-2.188261;, + -0.355000;6.604689;-2.188261;, + -0.355000;6.604689;-2.188261;, + -0.355000;6.604689;-2.188261;, + -0.355000;6.533288;-2.185761;, + -0.355000;6.533288;-2.185761;, + -0.355000;6.533288;-2.185761;, + -0.355000;6.533288;-2.185761;, + 0.000000;6.533288;-2.185761;, + 0.000000;6.533288;-2.185761;, + 0.000000;6.604689;-2.188261;, + 0.000000;6.604689;-2.188261;, + -0.434700;8.568343;-2.243182;, + -0.434700;8.568343;-2.243182;, + -0.348300;8.592272;-2.323182;, + -0.348300;8.592272;-2.323182;, + -0.348300;8.592272;-2.323182;, + 0.000000;8.592272;-2.323182;, + -0.621000;8.938809;-2.187204;, + -0.621000;8.938809;-2.187204;, + -0.621000;9.443933;-2.105358;, + -0.621000;9.443933;-2.105358;, + -0.434700;8.887272;-2.277475;, + -0.434700;8.887272;-2.277475;, + -0.434700;9.518987;-2.158886;, + -0.434700;9.634454;-2.098433;, + -0.434700;9.634454;-2.098433;, + -0.434700;8.796896;-2.166006;, + -0.348300;8.844754;-2.226006;, + -0.348300;8.844754;-2.226006;, + 0.000000;8.887272;-2.277475;, + 0.000000;8.887272;-2.277475;, + 0.000000;9.518987;-2.158886;, + 0.000000;9.634454;-2.098433;, + 0.000000;9.634454;-2.098433;, + -2.090000;0.642590;-1.891000;, + -2.090000;0.642590;-1.891000;, + -2.090000;0.642590;-1.891000;, + -1.946000;0.642590;-1.891000;, + -1.946000;0.642590;-1.891000;, + -2.198000;-0.032410;-1.921000;, + -2.198000;-0.032410;-1.921000;, + -2.198000;0.597590;-1.921000;, + -2.198000;0.597590;-1.921000;, + -1.650000;0.642590;-1.891000;, + -1.650000;0.642590;-1.891000;, + -1.650000;-0.032410;-1.921000;, + -1.650000;0.597590;-1.921000;, + -1.210000;0.642590;-1.891000;, + -1.210000;0.642590;-1.891000;, + -1.210000;0.642590;-1.891000;, + -1.354000;0.642590;-1.891000;, + -1.354000;0.642590;-1.891000;, + -1.102000;-0.032410;-1.921000;, + -1.102000;-0.032410;-1.921000;, + -1.102000;0.597590;-1.921000;, + -1.102000;0.597590;-1.921000;, + -2.211500;5.076511;-1.462134;, + -2.211500;5.076511;-1.462134;, + -2.211500;5.076511;-1.462134;, + -1.650000;5.076511;-1.462134;, + -1.650000;5.076511;-1.462134;, + -1.088500;5.076511;-1.462134;, + -1.088500;5.076511;-1.462134;, + -1.088500;5.076511;-1.462134;, + -0.455220;5.130789;-1.383261;, + -0.455220;5.130789;-1.383261;, + -0.455220;5.130789;-1.383261;, + -0.455220;5.130789;-1.383261;, + -0.401220;4.404039;-1.383261;, + -0.401220;4.404039;-1.383261;, + -0.401220;4.404039;-1.383261;, + -0.540000;5.747889;-1.600000;, + -0.540000;5.747889;-1.600000;, + -0.864000;5.747889;-1.600000;, + -0.864000;5.747889;-1.600000;, + -0.864000;5.747889;-1.600000;, + -0.270000;4.472888;-1.360000;, + -0.270000;4.472888;-1.360000;, + -0.270000;5.747889;-1.600000;, + -0.270000;5.747889;-1.600000;, + -0.270000;5.747889;-1.600000;, + 0.000000;5.747889;-1.600000;, + 0.000000;5.747889;-1.600000;, + 0.000000;5.130789;-1.383261;, + 0.000000;4.404039;-1.383261;, + 0.000000;4.404039;-1.383261;, + -0.344000;4.439500;-1.365000;, + -0.344000;4.439500;-1.365000;, + -0.434000;5.122600;-1.365000;, + -0.434000;5.122600;-1.365000;, + -0.442800;7.096839;-1.498261;, + -0.442800;7.096839;-1.498261;, + -0.442800;7.096839;-1.498261;, + -0.246460;6.979538;-2.088261;, + -0.246460;6.979538;-2.088261;, + -0.246460;6.979538;-2.088261;, + -0.864000;6.512889;-1.600000;, + -0.864000;6.512889;-1.600000;, + -0.864000;6.512889;-1.600000;, + -0.540000;6.512889;-1.600000;, + -0.540000;6.512889;-1.600000;, + 0.000000;6.979538;-2.088261;, + 0.000000;6.979538;-2.088261;, + 0.000000;7.096839;-1.498261;, + 0.000000;7.096839;-1.498261;, + -1.217160;8.469534;-1.810000;, + -1.217160;8.469534;-1.810000;, + -1.490400;8.469534;-1.586000;, + -1.490400;8.469534;-1.586000;, + -1.490400;8.469534;-1.586000;, + -1.490400;8.469534;-1.586000;, + -1.490400;8.469534;-1.746000;, + -1.490400;8.469534;-1.746000;, + -1.490400;8.469534;-1.746000;, + -1.304100;8.397746;-1.570000;, + -1.304100;8.397746;-1.570000;, + -1.304100;8.397746;-1.730000;, + -1.304100;8.397746;-1.730000;, + -1.304100;8.397746;-1.730000;, + -1.403460;8.547303;-1.830000;, + -0.360180;8.335782;-1.400000;, + -0.360180;8.335782;-1.400000;, + -0.621000;8.497011;-1.571497;, + -0.621000;8.497011;-1.571497;, + -0.621000;8.497011;-1.571497;, + -0.434700;8.321987;-1.506799;, + -0.434700;8.321987;-1.506799;, + -0.434700;8.321987;-1.506799;, + -0.434700;8.210368;-1.631449;, + -0.434700;7.903518;-1.723446;, + -0.434700;7.903518;-1.723446;, + -0.434700;8.703467;-2.074645;, + -0.348300;7.831731;-1.743446;, + -0.348300;7.831731;-1.743446;, + -0.348300;7.831731;-1.743446;, + -0.348300;7.831731;-1.743446;, + -0.720360;8.469534;-1.810000;, + -0.720360;8.469534;-1.810000;, + -0.621000;8.397746;-1.570000;, + -0.621000;8.397746;-1.570000;, + -0.621000;8.397746;-1.570000;, + -0.621000;8.397746;-1.730000;, + -0.621000;8.397746;-1.730000;, + -0.621000;8.397746;-1.730000;, + -0.621000;8.397746;-1.730000;, + 0.000000;8.321987;-1.506799;, + 0.000000;8.321987;-1.506799;, + 0.000000;7.831731;-1.743446;, + 0.000000;7.831731;-1.743446;, + -1.217160;9.041694;-2.060000;, + -1.490400;9.095534;-1.850000;, + -1.490400;9.095534;-1.850000;, + -1.490400;9.095534;-1.850000;, + -1.490400;9.095534;-1.850000;, + -1.490400;9.041694;-1.990000;, + -1.490400;9.041694;-1.990000;, + -1.304100;9.191251;-1.870000;, + -1.304100;9.191251;-1.870000;, + -1.304100;9.137410;-2.010000;, + -1.304100;9.137410;-2.010000;, + -1.403460;8.945976;-2.040000;, + -0.621000;9.099913;-1.933061;, + -0.621000;9.563389;-2.052839;, + -0.621000;9.563389;-2.052839;, + -0.621000;9.370822;-1.468720;, + -0.621000;9.720506;-1.617303;, + -0.621000;9.794942;-1.642888;, + -0.621000;9.794942;-1.642888;, + -0.434700;9.875455;-1.670560;, + -0.434700;8.921729;-1.855520;, + -0.348300;8.993517;-1.835520;, + -0.720360;9.041694;-2.060000;, + -0.621000;9.191251;-1.870000;, + -0.621000;9.191251;-1.870000;, + -0.621000;9.191251;-1.870000;, + -0.621000;9.137410;-2.010000;, + -0.621000;9.137410;-2.010000;, + -0.621000;9.137410;-2.010000;, + -0.621000;9.137410;-2.010000;, + 0.000000;9.875455;-1.670560;, + -2.090000;0.372590;-1.341000;, + -2.090000;0.372590;-1.341000;, + -2.090000;1.092590;-1.341000;, + -2.090000;1.092590;-1.341000;, + -1.946000;0.372590;-1.341000;, + -2.090000;0.012590;-1.341000;, + -2.090000;0.012590;-1.341000;, + -1.946000;0.012590;-1.341000;, + -1.946000;1.092590;-1.341000;, + -2.198000;-0.032410;-0.991000;, + -2.198000;-0.032410;-0.991000;, + -2.198000;-0.032410;-0.991000;, + -2.198000;0.597590;-0.991000;, + -2.198000;0.597590;-0.991000;, + -2.198000;0.597590;-0.991000;, + -2.225000;0.870444;-1.191000;, + -2.225000;0.870444;-1.191000;, + -2.225000;0.870444;-1.191000;, + -1.650000;1.092590;-1.341000;, + -1.650000;-0.032410;-0.991000;, + -1.650000;-0.032410;-0.991000;, + -1.650000;0.597590;-0.991000;, + -1.650000;0.597590;-0.991000;, + -1.650000;0.870444;-1.191000;, + -1.650000;0.870444;-1.191000;, + -1.210000;0.372590;-1.341000;, + -1.210000;0.372590;-1.341000;, + -1.210000;1.092590;-1.341000;, + -1.210000;1.092590;-1.341000;, + -1.210000;0.012590;-1.341000;, + -1.210000;0.012590;-1.341000;, + -1.102000;-0.032410;-0.991000;, + -1.102000;-0.032410;-0.991000;, + -1.102000;-0.032410;-0.991000;, + -1.102000;0.597590;-0.991000;, + -1.102000;0.597590;-0.991000;, + -1.102000;0.597590;-0.991000;, + -1.075000;0.870444;-1.191000;, + -1.075000;0.870444;-1.191000;, + -1.075000;0.870444;-1.191000;, + -2.139500;2.834444;-1.291000;, + -2.139500;2.834444;-1.291000;, + -2.139500;2.519444;-0.991000;, + -2.139500;2.519444;-0.991000;, + -2.139500;2.519444;-0.991000;, + -2.630000;2.735444;-0.831000;, + -2.630000;2.735444;-0.831000;, + -2.630000;2.735444;-0.831000;, + -2.180000;2.735444;-0.831000;, + -2.180000;2.735444;-0.831000;, + -2.180000;2.735444;-0.831000;, + -1.650000;2.834444;-1.291000;, + -1.650000;2.519444;-0.991000;, + -1.650000;2.519444;-0.991000;, + -1.160500;2.834444;-1.291000;, + -1.160500;2.834444;-1.291000;, + -1.160500;2.519444;-0.991000;, + -1.160500;2.519444;-0.991000;, + -1.160500;2.519444;-0.991000;, + -1.120000;2.735444;-0.831000;, + -1.120000;2.735444;-0.831000;, + -1.120000;2.735444;-0.831000;, + -0.670000;2.735444;-0.831000;, + -0.670000;2.735444;-0.831000;, + -0.670000;2.735444;-0.831000;, + -2.139500;4.319444;-1.291000;, + -2.139500;4.319444;-1.291000;, + -2.139500;4.319444;-1.291000;, + -2.139500;4.319444;-1.291000;, + -2.139500;4.319444;-0.991000;, + -2.139500;4.319444;-0.991000;, + -2.630000;4.040444;-0.831000;, + -2.630000;4.040444;-0.831000;, + -2.630000;4.040444;-0.831000;, + -2.180000;4.040444;-0.831000;, + -2.180000;4.040444;-0.831000;, + -2.180000;4.040444;-0.831000;, + -1.961750;3.663552;-0.683854;, + -1.961750;3.663552;-0.683854;, + -1.961750;4.011917;-0.683854;, + -1.961750;4.011917;-0.683854;, + -1.650000;4.319444;-1.291000;, + -1.650000;4.319444;-1.291000;, + -1.650000;4.319444;-0.991000;, + -1.650000;4.319444;-0.991000;, + -1.650000;4.011917;-0.683854;, + -1.650000;4.011917;-0.683854;, + -1.650000;3.663552;-0.683854;, + -1.650000;3.663552;-0.683854;, + -1.160500;4.319444;-1.291000;, + -1.160500;4.319444;-1.291000;, + -1.160500;4.319444;-1.291000;, + -1.160500;4.319444;-1.291000;, + -1.160500;4.319444;-0.991000;, + -1.160500;4.319444;-0.991000;, + -1.120000;4.040444;-0.831000;, + -1.120000;4.040444;-0.831000;, + -1.120000;4.040444;-0.831000;, + -1.338250;3.663552;-0.683854;, + -1.338250;3.663552;-0.683854;, + -1.338250;4.011917;-0.683854;, + -1.338250;4.011917;-0.683854;, + -0.670000;4.040444;-0.831000;, + -0.670000;4.040444;-0.831000;, + -0.670000;4.040444;-0.831000;, + -2.211500;4.896544;-1.134769;, + -2.211500;4.896544;-1.134769;, + -2.211500;4.896544;-1.134769;, + -2.183926;5.309234;-0.707269;, + -2.183926;5.309234;-0.707269;, + -2.070200;4.409444;-1.192000;, + -2.070200;4.409444;-1.192000;, + -2.070200;4.409444;-0.991000;, + -2.070200;4.409444;-0.991000;, + -2.070200;4.409444;-0.690000;, + -2.070200;4.409444;-0.690000;, + -1.650000;4.898689;-1.134137;, + -1.650000;4.898689;-1.134137;, + -1.108550;5.309234;-0.707269;, + -1.108550;5.309234;-0.707269;, + -1.713800;4.409444;-1.192000;, + -1.713800;4.409444;-0.991000;, + -1.713800;4.409444;-0.690000;, + -1.088500;4.896544;-1.134769;, + -1.088500;4.896544;-1.134769;, + -1.088500;4.896544;-1.134769;, + -1.229800;4.409444;-1.192000;, + -1.229800;4.409444;-1.192000;, + -1.229800;4.409444;-0.991000;, + -1.229800;4.409444;-0.991000;, + -1.229800;4.409444;-0.690000;, + -1.229800;4.409444;-0.690000;, + -0.567000;5.248089;-1.268261;, + -0.567000;5.248089;-1.268261;, + -0.567000;5.248089;-1.268261;, + -0.567000;5.248089;-1.268261;, + -0.864000;5.747889;-1.250000;, + -0.864000;5.747889;-1.250000;, + -0.864000;5.747889;-1.200000;, + -0.864000;5.747889;-1.200000;, + -0.864000;5.747889;-1.200000;, + -0.270000;5.747889;-1.200000;, + -0.270000;5.747889;-1.200000;, + -0.270000;5.747889;-1.200000;, + -0.270000;5.747889;-1.200000;, + 0.000000;5.747889;-1.200000;, + 0.000000;5.747889;-1.200000;, + -0.270000;4.472888;-1.200000;, + 0.000000;5.248089;-1.268261;, + -2.211500;6.504799;-0.897269;, + -2.211500;6.504799;-0.897269;, + -2.211500;6.899809;-0.659769;, + -2.211500;6.899809;-0.659769;, + -2.211500;6.899809;-0.659769;, + -2.211500;6.270950;-1.294258;, + -2.211500;6.270950;-1.294258;, + -1.650000;6.899809;-0.659769;, + -1.650000;6.899809;-0.659769;, + -1.650000;6.504799;-0.897269;, + -1.650000;6.270950;-1.294258;, + -1.088500;6.504799;-0.897269;, + -1.088500;6.504799;-0.897269;, + -1.088500;6.899809;-0.659769;, + -1.088500;6.899809;-0.659769;, + -1.088500;6.899809;-0.659769;, + -1.088500;6.270950;-1.294258;, + -1.088500;6.270950;-1.294258;, + 0.000000;6.553689;-1.234434;, + 0.000000;6.553689;-1.234434;, + -0.434700;6.553689;-1.234434;, + -0.434700;6.553689;-1.234434;, + -0.434700;6.553689;-1.234434;, + 0.000000;7.226889;-0.950000;, + -0.434700;7.226889;-0.950000;, + -0.434700;7.226889;-0.950000;, + -0.567000;6.604689;-1.268261;, + -0.567000;6.604689;-1.268261;, + -0.567000;6.604689;-1.268261;, + -0.567000;6.533288;-1.268261;, + -0.567000;6.533288;-1.268261;, + -0.567000;6.533288;-1.268261;, + -0.864000;6.512889;-1.250000;, + -0.864000;6.512889;-1.250000;, + -0.864000;6.512889;-1.200000;, + -0.864000;6.512889;-1.200000;, + -0.864000;6.512889;-1.200000;, + -0.270000;6.512889;-1.200000;, + -0.270000;6.512889;-1.200000;, + -0.270000;6.512889;-1.200000;, + 0.000000;6.512889;-1.200000;, + 0.000000;6.512889;-1.200000;, + 0.000000;6.604689;-1.268261;, + 0.000000;6.533288;-1.268261;, + 0.000000;8.299889;-1.100000;, + -0.645840;8.299889;-1.100000;, + -0.621000;8.494646;-1.080509;, + -0.621000;8.494646;-1.080509;, + -0.434700;8.323646;-1.004743;, + -0.434700;8.323646;-1.004743;, + -0.434700;8.322903;-1.172274;, + -0.434700;8.322903;-1.172274;, + -0.434700;7.901668;-1.294773;, + -0.434700;7.901668;-1.294773;, + -0.434700;7.901668;-1.294773;, + -0.348300;7.829880;-1.234773;, + -0.348300;7.829880;-1.234773;, + -0.348300;8.346831;-1.092274;, + -0.348300;8.346831;-1.092274;, + 0.000000;7.829880;-1.234773;, + 0.000000;8.323646;-1.004743;, + -0.434700;9.853403;-0.652941;, + -0.434700;9.853403;-0.652941;, + -0.621000;9.772565;-0.734962;, + -0.621000;9.772565;-0.734962;, + -0.621000;9.772565;-0.734962;, + -0.434700;10.156014;-0.776952;, + -0.434700;10.156014;-0.776952;, + -0.621000;10.117581;-0.864687;, + -0.621000;10.117581;-0.864687;, + -0.621000;10.154878;-0.975241;, + -0.621000;10.154878;-0.975241;, + 0.000000;10.156014;-0.776952;, + 0.000000;10.156014;-0.776952;, + 0.000000;9.853403;-0.652941;, + 0.000000;9.853403;-0.652941;, + -0.434700;10.240253;-0.992427;, + -0.280461;11.060905;-0.923241;, + -0.280461;11.060905;-0.923241;, + -0.233382;11.060905;-1.068951;, + -0.233382;11.060905;-1.068951;, + -0.233382;11.060905;-1.068951;, + -0.233382;11.060905;-1.068951;, + -0.233382;11.029785;-1.068951;, + -0.233382;11.029785;-1.068951;, + -0.233382;11.029785;-1.068951;, + -0.233382;11.029785;-1.068951;, + -0.280461;11.029785;-0.923241;, + -0.280461;11.029785;-0.923241;, + 0.000000;11.282440;-1.066862;, + 0.000000;11.282440;-1.066862;, + -0.124377;11.282440;-1.066862;, + -0.124377;11.282440;-1.066862;, + -0.203526;11.356547;-0.927240;, + 0.000000;11.356547;-0.927240;, + -0.226140;11.261694;-1.066862;, + -0.226140;11.261694;-1.066862;, + -0.226140;11.261694;-1.066862;, + -0.282675;11.325428;-0.927240;, + -0.282675;11.325428;-0.927240;, + 0.000000;10.863811;-1.066862;, + 0.000000;10.863811;-1.066862;, + 0.000000;10.749704;-0.927240;, + -0.192219;10.749704;-0.927240;, + -0.124377;10.863811;-1.066862;, + -0.124377;10.863811;-1.066862;, + -0.282675;10.780824;-0.927240;, + -0.282675;10.780824;-0.927240;, + -0.226140;10.884558;-1.066862;, + -0.226140;10.884558;-1.066862;, + -0.226140;10.884558;-1.066862;, + 0.000000;11.232752;-1.023456;, + 0.000000;11.080467;-1.023456;, + -0.113559;11.059278;-1.023456;, + -0.113559;11.059278;-1.023456;, + -0.078358;11.232752;-1.023456;, + 0.000000;11.010952;-1.023456;, + -0.113643;11.032139;-1.023456;, + -0.113643;11.032139;-1.023456;, + -0.158298;11.060905;-1.067771;, + -0.158298;11.060905;-1.067771;, + -0.158298;11.060905;-1.067771;, + -0.158298;11.029785;-1.067771;, + -0.158298;11.029785;-1.067771;, + -0.158298;11.029785;-1.067771;, + 0.000000;10.913136;-1.023456;, + -0.078358;10.913136;-1.023456;, + 0.000000;10.240253;-0.992427;, + -2.090000;0.552590;-0.191000;, + -2.090000;0.552590;-0.191000;, + -2.090000;0.777590;-0.191000;, + -2.090000;0.777590;-0.191000;, + -2.090000;0.777590;-0.191000;, + -2.090000;0.012590;-0.491000;, + -2.090000;0.012590;-0.491000;, + -2.090000;0.012590;-0.491000;, + -1.946000;0.012590;-0.491000;, + -1.946000;0.012590;-0.491000;, + -1.946000;0.552590;-0.191000;, + -1.946000;0.777590;-0.191000;, + -1.946000;0.777590;-0.191000;, + -1.650000;0.012590;-0.491000;, + -1.650000;0.012590;-0.491000;, + -1.650000;0.552590;-0.191000;, + -1.650000;0.777590;-0.191000;, + -1.650000;0.777590;-0.191000;, + -1.210000;0.552590;-0.191000;, + -1.210000;0.552590;-0.191000;, + -1.210000;0.777590;-0.191000;, + -1.210000;0.777590;-0.191000;, + -1.210000;0.777590;-0.191000;, + -1.210000;0.012590;-0.491000;, + -1.210000;0.012590;-0.491000;, + -1.210000;0.012590;-0.491000;, + -1.354000;0.012590;-0.491000;, + -1.354000;0.012590;-0.491000;, + -1.354000;0.777590;-0.191000;, + -1.354000;0.777590;-0.191000;, + -2.720000;2.735444;0.089000;, + -2.139500;2.519444;-0.591000;, + -2.139500;2.519444;-0.591000;, + -2.139500;2.519444;-0.591000;, + -2.180000;2.150444;0.089000;, + -2.180000;2.150444;0.089000;, + -2.180000;2.150444;0.089000;, + -2.630000;2.150444;0.089000;, + -2.630000;2.150444;0.089000;, + -2.630000;2.150444;0.089000;, + -2.180000;2.735444;0.089000;, + -2.180000;2.465444;-0.591000;, + -2.180000;2.465444;-0.591000;, + -1.650000;2.519444;-0.591000;, + -1.650000;2.519444;-0.591000;, + -1.650000;2.465444;-0.591000;, + -1.160500;2.519444;-0.591000;, + -1.160500;2.519444;-0.591000;, + -1.160500;2.519444;-0.591000;, + -1.120000;2.150444;0.089000;, + -1.120000;2.150444;0.089000;, + -1.120000;2.150444;0.089000;, + -1.120000;2.465444;-0.591000;, + -1.120000;2.465444;-0.591000;, + -0.670000;2.150444;0.089000;, + -0.670000;2.150444;0.089000;, + -0.670000;2.150444;0.089000;, + -2.720000;4.040444;0.089000;, + -2.720000;4.040444;0.089000;, + -2.191610;0.736228;-0.303535;, + -2.191610;0.736228;-0.303535;, + -2.191610;0.736228;-0.303535;, + -2.191610;0.540345;-0.393688;, + -2.191610;0.540345;-0.393688;, + -2.191610;0.344462;-0.303535;, + -2.191610;0.344462;-0.303535;, + -2.191610;0.344462;-0.303535;, + -2.191610;0.263325;-0.085888;, + -2.191610;0.263325;-0.085888;, + -2.238357;0.540345;-0.085888;, + -2.041625;4.121234;-0.469769;, + -2.041625;4.121234;-0.469769;, + -2.041625;4.121234;-0.469769;, + -2.139500;4.319444;-0.591000;, + -2.139500;4.319444;-0.591000;, + -2.139500;4.319444;-0.591000;, + -2.139500;4.319444;-0.591000;, + -2.180000;4.040444;0.089000;, + -2.180000;4.040444;0.089000;, + -2.180000;3.545444;-0.591000;, + -2.180000;3.545444;-0.591000;, + -2.180000;3.545444;-0.591000;, + -1.961750;4.067234;0.059254;, + -1.961750;4.067234;0.059254;, + -1.961750;4.067234;0.059254;, + -1.961750;4.067234;-0.583346;, + -1.961750;4.067234;-0.583346;, + -1.961750;4.067234;-0.583346;, + -1.961750;3.608234;0.059254;, + -1.961750;3.608234;0.059254;, + -1.961750;3.608234;0.059254;, + -1.961750;3.034714;0.059254;, + -1.961750;3.034714;0.059254;, + -1.961750;3.608234;-0.583346;, + -1.961750;3.608234;-0.583346;, + -1.961750;3.608234;-0.583346;, + -1.961750;3.202694;-0.395133;, + -1.961750;3.202694;-0.395133;, + -1.961750;3.202694;-0.395133;, + -2.096750;3.654134;-0.583346;, + -2.096750;3.654134;-0.583346;, + -2.096750;3.654134;-0.583346;, + -2.096750;3.654134;0.059254;, + -2.096750;3.654134;0.059254;, + -2.096750;3.654134;0.059254;, + -2.096750;4.021334;0.059254;, + -2.096750;4.021334;0.059254;, + -2.096750;4.021334;0.059254;, + -2.096750;4.021334;-0.583346;, + -2.096750;4.021334;-0.583346;, + -2.096750;4.021334;-0.583346;, + -1.646500;0.736228;-0.303535;, + -1.646500;0.736228;-0.303535;, + -1.646500;0.540345;-0.393688;, + -1.646500;0.344462;-0.303535;, + -1.646500;0.344462;-0.303535;, + -1.646500;0.263325;-0.085888;, + -1.208000;4.121234;-0.469769;, + -1.208000;4.121234;-0.469769;, + -1.208000;4.121234;-0.469769;, + -1.650000;4.319444;-0.591000;, + -1.650000;4.319444;-0.591000;, + -1.650000;3.545444;-0.591000;, + -1.650000;3.545444;-0.591000;, + -1.650000;4.067234;-0.583346;, + -1.650000;4.067234;-0.583346;, + -1.650000;3.202694;-0.395133;, + -1.650000;3.202694;-0.395133;, + -1.650000;3.034714;0.059254;, + -1.650000;3.608234;-0.583346;, + -1.650000;3.608234;-0.583346;, + -1.101390;0.736228;-0.303535;, + -1.101390;0.736228;-0.303535;, + -1.101390;0.736228;-0.303535;, + -1.101390;0.540345;-0.393688;, + -1.101390;0.540345;-0.393688;, + -1.101390;0.344462;-0.303535;, + -1.101390;0.344462;-0.303535;, + -1.101390;0.344462;-0.303535;, + -1.101390;0.263325;-0.085888;, + -1.101390;0.263325;-0.085888;, + -1.160500;4.319444;-0.591000;, + -1.160500;4.319444;-0.591000;, + -1.160500;4.319444;-0.591000;, + -1.160500;4.319444;-0.591000;, + -1.120000;4.040444;0.089000;, + -1.120000;4.040444;0.089000;, + -1.120000;3.545444;-0.591000;, + -1.120000;3.545444;-0.591000;, + -1.120000;3.545444;-0.591000;, + -1.338250;4.067234;0.059254;, + -1.338250;4.067234;0.059254;, + -1.338250;4.067234;0.059254;, + -1.338250;4.067234;-0.583346;, + -1.338250;4.067234;-0.583346;, + -1.338250;4.067234;-0.583346;, + -1.338250;3.608234;0.059254;, + -1.338250;3.608234;0.059254;, + -1.338250;3.608234;0.059254;, + -1.338250;3.034714;0.059254;, + -1.338250;3.034714;0.059254;, + -1.338250;3.608234;-0.583346;, + -1.338250;3.608234;-0.583346;, + -1.338250;3.608234;-0.583346;, + -1.338250;3.202694;-0.395133;, + -1.338250;3.202694;-0.395133;, + -1.338250;3.202694;-0.395133;, + -1.203250;3.654134;-0.583346;, + -1.203250;3.654134;-0.583346;, + -1.203250;3.654134;-0.583346;, + -1.203250;3.654134;0.059254;, + -1.203250;3.654134;0.059254;, + -1.203250;3.654134;0.059254;, + -1.203250;4.021334;0.059254;, + -1.203250;4.021334;0.059254;, + -1.203250;4.021334;0.059254;, + -1.203250;4.021334;-0.583346;, + -1.203250;4.021334;-0.583346;, + -1.203250;4.021334;-0.583346;, + -0.580000;4.040444;0.089000;, + -0.580000;4.040444;0.089000;, + -2.191610;0.817365;-0.085888;, + -2.191610;0.817365;-0.085888;, + -1.961750;4.640755;0.059254;, + -1.961750;4.640755;0.059254;, + -1.961750;4.472775;-0.395133;, + -1.961750;4.472775;-0.395133;, + -1.961750;4.472775;-0.395133;, + -1.646500;0.817365;-0.085888;, + -1.650000;4.640755;0.059254;, + -1.650000;4.472775;-0.395133;, + -1.650000;4.472775;-0.395133;, + -1.101390;0.817365;-0.085888;, + -1.101390;0.817365;-0.085888;, + -1.338250;4.640755;0.059254;, + -1.338250;4.640755;0.059254;, + -1.338250;4.472775;-0.395133;, + -1.338250;4.472775;-0.395133;, + -1.338250;4.472775;-0.395133;, + -5.537655;7.308371;-0.122373;, + -5.537655;7.308371;-0.122373;, + -5.537655;7.308371;-0.122373;, + -5.737680;7.308371;-0.123683;, + -5.737680;7.308371;-0.123683;, + -5.737680;7.308371;-0.123683;, + -2.211500;6.391939;-0.509769;, + 0.000000;6.553689;-0.193089;, + -0.869400;6.553689;-0.193089;, + -0.869400;6.553689;-0.193089;, + -0.729000;7.226889;-0.250000;, + -1.157854;8.456665;-0.357500;, + -1.304100;8.392207;-0.380000;, + -1.304100;8.392207;-0.380000;, + -1.614600;8.428101;-0.460000;, + -1.614600;8.428101;-0.460000;, + -1.614600;8.428101;-0.460000;, + -1.304100;8.332384;-0.460000;, + -1.614600;8.487924;-0.380000;, + -1.614600;8.487924;-0.380000;, + -1.614600;8.487924;-0.380000;, + -1.291183;8.380595;0.035000;, + -1.291183;8.380595;0.035000;, + -1.291183;8.380595;0.035000;, + -1.206975;7.730014;-0.148713;, + -1.206975;7.730014;-0.148713;, + -1.206975;8.252790;-0.393860;, + -1.291183;8.380595;-0.380000;, + -1.291183;8.380595;-0.380000;, + -1.291183;7.708855;-0.065000;, + -1.291183;7.708855;-0.065000;, + -1.291183;7.708855;-0.065000;, + -1.291183;7.708855;-0.065000;, + 0.000000;8.299889;-0.380000;, + 0.000000;8.299889;-0.380000;, + -0.645840;8.299889;-0.380000;, + -0.645840;8.299889;-0.380000;, + -0.729000;8.335782;-0.250000;, + -0.621000;8.491881;-0.506934;, + -0.621000;8.491881;-0.506934;, + -0.621000;8.491881;-0.506934;, + -0.434700;8.325909;-0.320215;, + -0.434700;8.325909;-0.320215;, + -0.434700;8.325909;-0.320215;, + -0.434700;8.325909;-0.320215;, + -0.621000;8.392207;-0.380000;, + -0.621000;8.392207;-0.380000;, + -0.621000;8.392207;-0.380000;, + -0.621000;8.332384;-0.460000;, + -0.621000;8.332384;-0.460000;, + 0.000000;8.325909;-0.320215;, + 0.000000;8.325909;-0.320215;, + -0.701730;8.380595;0.035000;, + -0.701730;8.380595;0.035000;, + -0.701730;8.380595;0.035000;, + -0.701730;7.708855;-0.065000;, + -0.701730;7.708855;-0.065000;, + -0.701730;7.708855;-0.065000;, + -0.701730;7.708855;-0.065000;, + -0.701730;8.380595;-0.380000;, + -0.701730;8.380595;-0.380000;, + -0.785938;8.252790;-0.393860;, + -0.785938;7.730014;-0.148713;, + -0.785938;7.730014;-0.148713;, + -6.193715;8.999975;-0.085702;, + -6.193715;8.999975;-0.085702;, + -6.193715;8.999975;-0.085702;, + -6.273846;9.094374;-0.151701;, + -6.273846;9.094374;-0.151701;, + -6.273846;9.094374;-0.151701;, + -6.273846;9.094374;-0.151701;, + -6.273846;9.849567;-0.151701;, + -6.273846;9.849567;-0.151701;, + -6.273846;9.849567;-0.151701;, + -6.273846;9.849567;-0.151701;, + -6.193715;9.943968;-0.085702;, + -6.193715;9.943968;-0.085702;, + -6.193715;9.943968;-0.085702;, + -7.060897;9.725492;-0.129548;, + -7.060897;9.725492;-0.129548;, + -7.060897;9.725492;-0.129548;, + -6.982975;9.563503;-0.129548;, + -6.982975;9.563503;-0.129548;, + -6.671293;9.725492;-0.129548;, + -6.671293;9.725492;-0.129548;, + -6.671293;9.340767;-0.129548;, + -6.671293;9.340767;-0.129548;, + -6.858303;9.340767;-0.129548;, + -6.858303;9.340767;-0.129548;, + -6.858303;9.340767;-0.129548;, + -6.671293;9.563503;-0.129548;, + -6.751895;9.313591;0.542340;, + -6.751895;9.313591;0.542340;, + -6.751895;9.313591;0.542340;, + -6.912178;9.319603;0.515226;, + -6.912178;9.319603;0.515226;, + -6.912178;9.319603;0.515226;, + -6.937339;9.170279;0.515226;, + -6.937339;9.170279;0.515226;, + -6.937339;9.170279;0.515226;, + -6.916745;9.323501;0.515226;, + -6.916745;9.323501;0.515226;, + -6.916745;9.323501;0.515226;, + -7.001220;9.409288;0.515226;, + -7.001220;9.409288;0.515226;, + -7.001220;9.409288;0.515226;, + -7.095283;9.321381;0.515226;, + -7.095283;9.321381;0.515226;, + -7.095283;9.321381;0.515226;, + -6.943227;9.166967;0.515226;, + -6.943227;9.166967;0.515226;, + -6.943227;9.166967;0.515226;, + -6.993157;9.433917;0.515226;, + -6.993157;9.433917;0.515226;, + -6.993157;9.433917;0.515226;, + -7.002631;9.569713;0.515226;, + -7.002631;9.569713;0.515226;, + -7.119660;9.611607;0.515226;, + -7.119660;9.611607;0.515226;, + -7.119660;9.611607;0.515226;, + -7.100082;9.330963;0.515226;, + -7.100082;9.330963;0.515226;, + -7.100082;9.330963;0.515226;, + -5.816796;9.094374;-0.151701;, + -5.816796;9.094374;-0.151701;, + -5.781181;8.999975;-0.085701;, + -5.781181;8.999975;-0.085701;, + -5.816796;9.849567;-0.151701;, + -5.816796;9.849567;-0.151701;, + -5.781182;9.943968;-0.085701;, + -5.781182;9.943968;-0.085701;, + -5.499784;9.980371;0.045354;, + -5.499784;9.980371;0.045354;, + -5.499784;9.980371;0.045354;, + -5.499784;9.836371;0.045354;, + -5.499784;9.836371;0.045354;, + -5.499784;9.836371;0.045354;, + -5.529781;9.428371;-0.592264;, + -5.529781;9.428371;-0.592264;, + -5.729806;9.428371;-0.593574;, + -5.729806;9.428371;-0.593574;, + -5.537655;8.948371;-0.122373;, + -5.537655;8.948371;-0.122373;, + -5.737680;8.948371;-0.123683;, + -5.737680;8.948371;-0.123683;, + -5.537608;9.428371;-0.125206;, + -5.737632;9.428371;-0.126516;, + -4.021242;9.094375;0.068299;, + -4.021242;9.094375;0.068299;, + -4.021242;9.094375;0.068299;, + -4.021242;9.094375;0.068299;, + -4.326931;8.999975;-0.085701;, + -4.326931;8.999975;-0.085701;, + -4.273510;9.094375;-0.151701;, + -4.273510;9.094375;-0.151701;, + -4.439710;8.999975;-0.085701;, + -4.439710;8.999975;-0.085701;, + -5.000635;8.999975;-0.085701;, + -5.000635;9.094375;-0.151701;, + -5.000635;9.094375;-0.151701;, + -4.439710;9.094375;-0.151701;, + -4.439710;9.094375;-0.151701;, + -4.021242;9.849568;0.068299;, + -4.021242;9.849568;0.068299;, + -4.021242;9.849568;0.068299;, + -4.021242;9.849568;0.068299;, + -4.273510;9.849568;-0.151701;, + -4.273510;9.849568;-0.151701;, + -4.326931;9.943968;-0.085701;, + -4.326931;9.943968;-0.085701;, + -4.439710;9.943968;-0.085701;, + -4.439710;9.943968;-0.085701;, + -4.439710;9.849568;-0.151701;, + -4.439710;9.849568;-0.151701;, + -5.000635;9.849568;-0.151701;, + -5.000635;9.849568;-0.151701;, + -5.000635;9.943968;-0.085701;, + -4.569112;9.980371;0.038033;, + -4.569112;9.980371;0.038033;, + -4.569112;9.836371;0.038033;, + -4.569112;9.836371;0.038033;, + -4.529347;9.836371;0.038294;, + -4.529347;9.836371;0.038294;, + -4.529347;9.836371;0.038294;, + -4.529347;9.980371;0.038294;, + -4.529347;9.980371;0.038294;, + -4.529347;9.980371;0.038294;, + -3.739634;9.114357;0.049999;, + -3.739634;9.114357;0.049999;, + -3.739634;9.114357;0.049999;, + -3.739634;9.465427;0.049999;, + -3.739634;9.465427;0.049999;, + -3.739634;9.816500;0.049999;, + -3.739634;9.816500;0.049999;, + -3.739634;9.816500;0.049999;, + -6.197741;9.416677;0.121999;, + -6.197741;9.416677;0.121999;, + -6.197741;9.625625;0.121999;, + -6.197741;9.625625;0.121999;, + -6.454175;9.625625;0.121999;, + -6.454175;9.625625;0.121999;, + -6.454175;9.416677;0.121999;, + -6.454175;9.416677;0.121999;, + -3.477382;10.049524;-0.300001;, + -3.477382;10.049524;-0.300001;, + -3.477382;10.049524;0.049999;, + -3.477382;10.049524;0.049999;, + -3.477382;10.049524;0.049999;, + -3.477382;9.541996;-0.300001;, + -3.477382;9.541996;-0.300001;, + -3.477382;9.541996;0.049999;, + -3.477382;9.541996;0.049999;, + -3.308206;9.330525;-0.300001;, + -3.308206;9.330525;-0.300001;, + -3.308206;9.330525;-0.300001;, + -3.308206;9.330525;-0.300001;, + -3.308206;9.330525;0.049999;, + -3.308206;9.330525;0.049999;, + -3.308206;9.330525;0.049999;, + -3.370776;9.681329;-0.450001;, + -3.370776;9.681329;-0.450001;, + -3.308206;9.541996;0.049999;, + -3.370776;10.087790;-0.450001;, + -3.370776;10.087790;-0.450001;, + -3.308206;10.049524;0.049999;, + -3.308206;10.049524;0.049999;, + -3.347260;9.836371;0.050102;, + -3.347260;9.836371;0.050102;, + -3.347260;9.836371;0.050102;, + -3.347260;9.980371;0.050102;, + -3.347260;9.980371;0.050102;, + -3.347260;9.980371;0.050102;, + -5.498027;9.908371;-0.030170;, + -5.610232;9.972371;0.049085;, + -5.610232;9.972371;0.049085;, + -5.610232;9.972371;0.049085;, + -5.499367;10.036371;0.049811;, + -5.499367;10.036371;0.049811;, + -5.499367;10.036371;0.049811;, + -5.610232;9.844371;0.049085;, + -5.610232;9.844371;0.049085;, + -5.610232;9.844371;0.049085;, + -5.499367;9.780371;0.049811;, + -5.499367;9.780371;0.049811;, + -5.499367;9.780371;0.049811;, + -5.388502;9.844371;0.050537;, + -5.388502;9.844371;0.050537;, + -5.388502;9.844371;0.050537;, + -5.388502;9.972371;0.050537;, + -5.388502;9.972371;0.050537;, + -5.388502;9.972371;0.050537;, + -2.351901;9.114357;0.050000;, + -2.351901;9.114357;0.050000;, + -2.351901;9.114357;0.050000;, + -2.351901;9.465427;0.050000;, + -2.351901;9.465427;0.050000;, + -2.351901;9.816500;0.050000;, + -2.351901;9.816500;0.050000;, + -2.351901;9.816500;0.050000;, + -2.610355;9.541996;0.050000;, + -2.610355;9.541996;0.050000;, + -2.610355;9.541996;-0.300000;, + -2.610355;9.541996;-0.300000;, + -2.610355;9.541996;-0.300000;, + -2.737237;9.330525;-0.300000;, + -2.737237;9.330525;-0.300000;, + -2.737237;9.330525;-0.300000;, + -2.737237;9.330525;0.050000;, + -2.737237;9.330525;0.050000;, + -2.737237;9.330525;0.050000;, + -2.605451;10.087790;-0.450000;, + -2.673121;9.681329;-0.450000;, + -2.673121;9.681329;-0.450000;, + -2.610355;10.049524;0.050000;, + -2.610355;10.049524;0.050000;, + -3.221444;9.664412;-0.450001;, + -3.263738;9.504920;-0.450001;, + -3.263738;9.504920;-0.450001;, + -2.810496;9.504920;-0.450000;, + -3.221444;10.087790;-0.450001;, + -1.785622;9.541996;-0.300000;, + -1.785622;9.541996;-0.300000;, + -1.785622;9.541996;-0.300000;, + -1.785622;9.541996;0.050000;, + -1.785622;9.541996;0.050000;, + -1.574152;9.711170;-0.300000;, + -1.574152;9.711170;-0.300000;, + -1.574152;9.711170;-0.300000;, + -1.574152;9.711170;-0.300000;, + -1.574152;9.711170;0.050000;, + -1.574152;9.711170;0.050000;, + -1.574152;9.711170;0.050000;, + -1.943341;10.228918;-0.450000;, + -1.877459;9.681329;-0.450000;, + -1.877459;9.681329;-0.450000;, + -1.574152;10.218699;0.050000;, + -1.574152;10.218699;0.050000;, + -1.574152;10.218699;0.050000;, + -1.574152;10.218699;-0.300000;, + -1.574152;10.218699;-0.300000;, + -1.690794;10.228918;-0.450000;, + -1.690794;10.228918;-0.450000;, + -1.690794;9.822455;-0.450000;, + -1.690794;9.822455;-0.450000;, + -1.785622;10.218699;0.050000;, + -1.785622;10.218699;0.050000;, + -1.291183;9.629884;0.035000;, + -1.291183;9.629884;0.035000;, + -1.291183;9.629884;0.035000;, + -1.291183;9.629884;-0.380000;, + -1.291183;9.629884;-0.380000;, + -1.291183;9.629884;-0.380000;, + -1.291183;10.090521;0.035000;, + -1.291183;10.090521;0.035000;, + -1.291183;10.090521;0.035000;, + -1.206975;10.200697;-0.393860;, + -1.291183;10.090521;-0.380000;, + -1.291183;10.090521;-0.380000;, + -1.157854;9.729999;-0.357500;, + -1.304100;10.010826;-0.380000;, + -1.304100;10.010826;-0.380000;, + -1.614600;9.891180;-0.460000;, + -1.614600;9.891180;-0.460000;, + -1.614600;9.891180;-0.460000;, + -1.304100;10.010826;-0.460000;, + -1.614600;9.891180;-0.380000;, + -1.614600;9.891180;-0.380000;, + -1.614600;9.891180;-0.380000;, + -1.291183;8.914934;-0.380000;, + -1.291183;8.914934;-0.380000;, + -1.291183;8.914934;-0.380000;, + -1.291183;8.914934;0.035000;, + -1.291183;8.914934;0.035000;, + -1.291183;8.914934;0.035000;, + -0.701730;10.090521;0.035000;, + -0.701730;10.090521;0.035000;, + -0.701730;10.090521;0.035000;, + -0.701730;10.090521;-0.380000;, + -0.701730;10.090521;-0.380000;, + -0.701730;9.629884;-0.380000;, + -0.701730;9.629884;-0.380000;, + -0.701730;9.629884;-0.380000;, + -0.701730;9.629884;0.035000;, + -0.701730;9.629884;0.035000;, + -0.701730;9.629884;0.035000;, + -0.785938;10.200697;-0.393860;, + -0.324000;10.031889;0.150000;, + -0.621000;10.010826;-0.380000;, + -0.621000;10.010826;-0.380000;, + -0.621000;10.010826;-0.380000;, + -0.621000;10.010826;-0.460000;, + -0.621000;10.010826;-0.460000;, + -0.783621;10.114978;-0.154000;, + 0.000000;10.114978;-0.154000;, + -0.701730;8.914934;-0.380000;, + -0.701730;8.914934;-0.380000;, + -0.701730;8.914934;-0.380000;, + -0.701730;8.914934;0.035000;, + -0.701730;8.914934;0.035000;, + -0.701730;8.914934;0.035000;, + -5.529781;11.108371;-0.592264;, + -5.529781;11.108371;-0.592264;, + -5.529781;11.108371;-0.592264;, + -5.729806;11.108371;-0.593574;, + -5.729806;11.108371;-0.593574;, + -5.729806;11.108371;-0.593574;, + -5.737632;11.108371;-0.126516;, + -5.737632;11.108371;-0.126516;, + -5.537608;11.108371;-0.125206;, + -5.537608;11.108371;-0.125206;, + -5.537608;10.788371;-0.125206;, + -5.537608;10.788371;-0.125206;, + -5.537608;10.788371;-0.125206;, + -5.737632;10.788371;-0.126516;, + -5.737632;10.788371;-0.126516;, + -5.737632;10.788371;-0.126516;, + -5.729806;10.788371;-0.593574;, + -5.729806;10.788371;-0.593574;, + -5.529781;10.788371;-0.592264;, + -5.529781;10.788371;-0.592264;, + -5.529781;10.948371;-0.592264;, + -5.529781;10.948371;-0.592264;, + -5.537608;10.948371;-0.125206;, + -5.537608;10.948371;-0.125206;, + -5.537608;10.948371;-0.125206;, + -5.737632;10.948371;-0.126516;, + -5.737632;10.948371;-0.126516;, + -5.737632;10.948371;-0.126516;, + -5.729806;10.948371;-0.593574;, + -5.729806;10.948371;-0.593574;, + -3.477382;10.768522;0.049999;, + -3.477382;10.768522;0.049999;, + -3.477382;10.768522;-0.300001;, + -3.477382;10.768522;-0.300001;, + -3.477382;10.768522;-0.300001;, + -3.477382;10.768522;-0.300001;, + -3.308206;10.895405;0.049999;, + -3.308206;10.895405;-0.300001;, + -3.308206;10.895405;-0.300001;, + -3.308206;10.895405;-0.300001;, + -3.370776;10.653745;-0.450001;, + -3.370776;10.653745;-0.450001;, + -2.610355;10.895405;-0.300000;, + -2.610355;10.895405;-0.300000;, + -2.610355;10.895405;0.050000;, + -2.605451;10.759588;-0.450000;, + -2.605451;10.759588;-0.450000;, + -3.221444;10.759588;-0.450001;, + -3.221444;10.759588;-0.450001;, + -1.954798;10.895405;-0.300000;, + -1.954798;10.895405;-0.300000;, + -1.954798;10.895405;-0.300000;, + -1.954798;10.895405;-0.300000;, + -1.954798;10.895405;0.050000;, + -1.954798;10.895405;0.050000;, + -1.574152;10.514757;0.050000;, + -1.574152;10.514757;-0.300000;, + -1.574152;10.514757;-0.300000;, + -1.574152;10.514757;-0.300000;, + -2.026791;10.759588;-0.450000;, + -2.026791;10.759588;-0.450000;, + -1.690794;10.442054;-0.450000;, + -1.690794;10.442054;-0.450000;, + -1.206975;10.651367;-0.148713;, + -1.206975;10.651367;-0.148713;, + -1.291183;10.669608;-0.065000;, + -1.291183;10.669608;-0.065000;, + -1.291183;10.669608;-0.065000;, + -1.291183;10.669608;-0.065000;, + -0.701730;10.669608;-0.065000;, + -0.701730;10.669608;-0.065000;, + -0.701730;10.669608;-0.065000;, + -0.701730;10.669608;-0.065000;, + -0.785938;10.651367;-0.148713;, + -0.785938;10.651367;-0.148713;, + -0.384438;10.303647;-0.092313;, + -0.384438;10.303647;-0.092313;, + -0.384438;10.303647;-0.092313;, + -0.384438;10.687464;-0.005502;, + -0.384438;10.687464;-0.005502;, + -0.384438;10.687464;-0.005502;, + -0.306190;10.687464;-0.005502;, + -0.306190;10.687464;-0.005502;, + -0.306190;10.303647;-0.092313;, + -0.306190;10.303647;-0.092313;, + -0.290080;11.185386;-0.116549;, + -0.290080;11.185386;-0.116549;, + -0.290080;11.154265;-0.116549;, + -0.290080;11.154265;-0.116549;, + -0.280074;11.060905;-0.350670;, + -0.280074;11.060905;-0.350670;, + -0.280074;11.029785;-0.350670;, + -0.280074;11.029785;-0.350670;, + 0.000000;11.460281;-0.116549;, + -0.203526;11.460281;-0.116549;, + -0.282675;11.429161;-0.116549;, + -0.282675;11.429161;-0.116549;, + -0.282675;11.408415;-0.398685;, + -0.282675;11.408415;-0.398685;, + -0.203526;11.439535;-0.398685;, + 0.000000;11.439535;-0.398685;, + -0.282675;10.760077;-0.398685;, + -0.282675;10.760077;-0.398685;, + -0.192219;10.728957;-0.398685;, + -0.192219;10.728957;-0.116549;, + -0.282675;10.760077;-0.116549;, + -0.282675;10.760077;-0.116549;, + 0.000000;10.728957;-0.398685;, + 0.000000;10.728957;-0.116549;, + -0.296411;10.604476;0.095053;, + -0.296411;10.604476;0.095053;, + -0.791490;10.604476;0.095053;, + -0.791490;10.604476;0.095053;, + -0.791490;10.604476;0.095053;, + -0.791490;10.604476;0.095053;, + -0.296411;10.977919;0.095053;, + -0.296411;10.977919;0.095053;, + -0.791490;10.977919;0.095053;, + -0.791490;10.977919;0.095053;, + -0.791490;10.977919;0.095053;, + -0.791490;10.977919;0.095053;, + -0.319025;10.666717;0.040796;, + -0.723648;10.666717;0.040796;, + -0.723648;10.915678;0.040796;, + -0.319025;10.915678;0.040796;, + -0.191908;10.391821;-0.356500;, + -0.191908;10.391821;-0.356500;, + -0.191908;10.827504;-0.458200;, + -0.191908;10.827504;-0.458200;, + -0.191908;10.827504;-0.458200;, + -0.191908;10.827504;-0.458200;, + -0.118468;10.732613;-0.538774;, + -0.118468;10.732613;-0.538774;, + -0.118468;10.732613;-0.538774;, + -0.118468;10.440549;-0.470599;, + -0.118468;10.440549;-0.470599;, + -0.118468;10.440549;-0.470599;, + 0.000000;10.732613;-0.538774;, + 0.000000;10.732613;-0.538774;, + 0.000000;10.440549;-0.470599;, + 0.000000;10.440549;-0.470599;, + 0.000000;10.827504;-0.458200;, + 0.000000;10.827504;-0.458200;, + 0.000000;10.391821;-0.356500;, + -2.087155;0.022285;0.449062;, + -2.087155;0.022285;0.449062;, + -2.062198;0.686398;0.209303;, + -2.062198;0.686398;0.209303;, + -2.062198;0.686398;0.209303;, + -2.087155;0.022285;0.837000;, + -2.087155;0.022285;0.837000;, + -2.045719;1.096842;0.837000;, + -2.045719;1.096842;0.837000;, + -2.045719;1.096842;0.837000;, + -2.045719;1.096842;0.837000;, + -2.064598;0.607264;0.837000;, + -2.405000;0.645445;0.209000;, + -2.405000;0.645445;0.209000;, + -1.650000;0.686398;0.209303;, + -1.650000;0.686398;0.209303;, + -1.650000;0.022285;0.449062;, + -1.650000;0.022285;0.837000;, + -1.650000;1.096842;0.837000;, + -1.650000;0.645445;0.209000;, + -1.212845;0.022285;0.449062;, + -1.212845;0.022285;0.449062;, + -1.237802;0.686398;0.209303;, + -1.237802;0.686398;0.209303;, + -1.237802;0.686398;0.209303;, + -1.212845;0.022285;0.837000;, + -1.212845;0.022285;0.837000;, + -1.254281;1.096842;0.837000;, + -1.254281;1.096842;0.837000;, + -1.254281;1.096842;0.837000;, + -1.254281;1.096842;0.837000;, + -0.895000;0.645445;0.209000;, + -0.895000;0.645445;0.209000;, + -2.180000;2.285444;0.209000;, + -2.191610;0.736228;0.131760;, + -2.191610;0.736228;0.131760;, + -2.191610;0.736228;0.131760;, + -2.191610;0.540345;0.221912;, + -2.191610;0.540345;0.221912;, + -2.191610;0.344462;0.131760;, + -2.191610;0.344462;0.131760;, + -2.191610;0.344462;0.131760;, + -2.041625;4.121234;0.527731;, + -2.041625;4.121234;0.527731;, + -2.041625;4.121234;0.527731;, + -2.180000;3.545444;0.209000;, + -2.180000;3.545444;0.209000;, + -1.961750;4.067234;0.701854;, + -1.961750;4.067234;0.701854;, + -1.961750;3.202694;0.513641;, + -1.961750;3.202694;0.513641;, + -1.961750;3.202694;0.513641;, + -1.961750;3.608234;0.701854;, + -1.961750;3.608234;0.701854;, + -1.961750;3.608234;0.701854;, + -1.646500;0.540345;0.221912;, + -1.646500;0.736228;0.131760;, + -1.646500;0.736228;0.131760;, + -1.646500;0.344462;0.131760;, + -1.646500;0.344462;0.131760;, + -1.208000;4.121234;0.527731;, + -1.208000;4.121234;0.527731;, + -1.208000;4.121234;0.527731;, + -1.650000;3.545444;0.209000;, + -1.650000;4.067234;0.701854;, + -1.650000;3.202694;0.513641;, + -1.650000;3.202694;0.513641;, + -1.650000;3.608234;0.701854;, + -1.650000;3.608234;0.701854;, + -1.101390;0.736228;0.131760;, + -1.101390;0.736228;0.131760;, + -1.101390;0.736228;0.131760;, + -1.101390;0.540345;0.221912;, + -1.101390;0.540345;0.221912;, + -1.101390;0.344462;0.131760;, + -1.101390;0.344462;0.131760;, + -1.101390;0.344462;0.131760;, + -1.120000;3.545444;0.209000;, + -1.120000;3.545444;0.209000;, + -1.338250;4.067234;0.701854;, + -1.338250;4.067234;0.701854;, + -1.338250;3.202694;0.513641;, + -1.338250;3.202694;0.513641;, + -1.338250;3.202694;0.513641;, + -1.338250;3.608234;0.701854;, + -1.338250;3.608234;0.701854;, + -1.338250;3.608234;0.701854;, + -2.211500;4.924759;0.527731;, + -2.211500;4.924759;0.527731;, + -1.961750;4.472775;0.513641;, + -1.961750;4.472775;0.513641;, + -1.961750;4.472775;0.513641;, + -1.650000;4.924759;0.527731;, + -1.650000;4.472775;0.513641;, + -1.650000;4.472775;0.513641;, + -1.088500;4.924759;0.527731;, + -1.088500;4.924759;0.527731;, + -1.338250;4.472775;0.513641;, + -1.338250;4.472775;0.513641;, + -1.338250;4.472775;0.513641;, + -1.291183;8.380595;0.600000;, + -1.291183;8.380595;0.600000;, + -1.291183;7.708855;0.600000;, + -1.291183;7.708855;0.600000;, + -0.701730;8.380595;0.600000;, + -0.701730;8.380595;0.600000;, + -0.701730;7.708855;0.600000;, + -0.701730;7.708855;0.600000;, + -6.273846;9.094374;0.662299;, + -6.273846;9.094374;0.662299;, + -6.273846;9.094374;0.662299;, + -6.273846;9.094374;0.662299;, + -6.193715;8.999975;0.662299;, + -6.193715;8.999975;0.662299;, + -6.193715;8.999975;0.662299;, + -6.193715;8.999975;0.607299;, + -6.193715;8.999975;0.607299;, + -6.193715;8.999975;0.607299;, + -6.273846;9.094374;0.607298;, + -6.273846;9.094374;0.607298;, + -6.273846;9.094374;0.607298;, + -6.273846;9.094374;0.607298;, + -6.273846;9.849567;0.662299;, + -6.273846;9.849567;0.662299;, + -6.273846;9.849567;0.662299;, + -6.273846;9.849567;0.662299;, + -6.193715;9.943968;0.662299;, + -6.193715;9.943968;0.662299;, + -6.193715;9.943968;0.662299;, + -6.193715;9.943968;0.607299;, + -6.193715;9.943968;0.607299;, + -6.193715;9.943968;0.607299;, + -6.273846;9.849567;0.607298;, + -6.273846;9.849567;0.607298;, + -6.273846;9.849567;0.607298;, + -6.273846;9.849567;0.607298;, + -6.982975;9.563503;0.726668;, + -6.982975;9.563503;0.726668;, + -7.060897;9.725492;0.726668;, + -7.060897;9.725492;0.726668;, + -7.060897;9.725492;0.726668;, + -6.359611;9.563503;0.568268;, + -6.359611;9.563503;0.568268;, + -6.359611;9.563503;0.002452;, + -6.359611;9.563503;0.002452;, + -6.359611;9.725492;0.002452;, + -6.359611;9.725492;0.002452;, + -6.359611;9.725492;0.002452;, + -6.359611;9.725492;0.568268;, + -6.359611;9.725492;0.568268;, + -6.359611;9.725492;0.568268;, + -6.671293;9.725492;0.726668;, + -6.671293;9.725492;0.726668;, + -6.671293;9.563503;0.726668;, + -6.359611;9.340767;0.002452;, + -6.359611;9.340767;0.002452;, + -6.359611;9.340767;0.002452;, + -6.359611;9.340767;0.568268;, + -6.359611;9.340767;0.568268;, + -6.359611;9.340767;0.568268;, + -6.671293;9.340767;0.726668;, + -6.671293;9.340767;0.726668;, + -6.858303;9.340767;0.726668;, + -6.858303;9.340767;0.726668;, + -6.858303;9.340767;0.726668;, + -6.751895;9.313591;0.677907;, + -6.751895;9.313591;0.677907;, + -6.751895;9.313591;0.677907;, + -6.912178;9.319603;0.705020;, + -6.912178;9.319603;0.705020;, + -6.912178;9.319603;0.705020;, + -6.937339;9.170279;0.705020;, + -6.937339;9.170279;0.705020;, + -6.937339;9.170279;0.705020;, + -6.693048;9.269262;0.664350;, + -6.693048;9.269262;0.664350;, + -6.693048;9.269262;0.664350;, + -6.693048;9.269262;0.555896;, + -6.693048;9.269262;0.555896;, + -6.693048;9.269262;0.555896;, + -6.916745;9.323501;0.705020;, + -6.916745;9.323501;0.705020;, + -6.916745;9.323501;0.705020;, + -7.001220;9.409288;0.705020;, + -7.001220;9.409288;0.705020;, + -7.001220;9.409288;0.705020;, + -7.095283;9.321381;0.705020;, + -7.095283;9.321381;0.705020;, + -7.095283;9.321381;0.705020;, + -6.943227;9.166967;0.705020;, + -6.943227;9.166967;0.705020;, + -6.943227;9.166967;0.705020;, + -6.993157;9.433917;0.705020;, + -6.993157;9.433917;0.705020;, + -6.993157;9.433917;0.705020;, + -7.002631;9.569713;0.705020;, + -7.002631;9.569713;0.705020;, + -7.119660;9.611607;0.705020;, + -7.119660;9.611607;0.705020;, + -7.119660;9.611607;0.705020;, + -7.100082;9.330963;0.705020;, + -7.100082;9.330963;0.705020;, + -7.100082;9.330963;0.705020;, + -5.781182;8.999975;0.607299;, + -5.781182;8.999975;0.607299;, + -5.781182;8.999975;0.607299;, + -5.781182;8.999975;0.662299;, + -5.781182;8.999975;0.662299;, + -5.781182;8.999975;0.662299;, + -5.781182;9.943968;0.607299;, + -5.781182;9.943968;0.607299;, + -5.781182;9.943968;0.662299;, + -5.781182;9.943968;0.662299;, + -6.554913;9.416677;0.408793;, + -6.554913;9.416677;0.408793;, + -6.554913;9.416677;0.408793;, + -6.554913;9.625625;0.408793;, + -6.554913;9.625625;0.408793;, + -6.554913;9.625625;0.408793;, + -6.596640;9.625625;0.289999;, + -6.596640;9.625625;0.289999;, + -6.596640;9.416677;0.289999;, + -6.596640;9.416677;0.289999;, + -6.554913;9.416677;0.171205;, + -6.554913;9.416677;0.171205;, + -6.554913;9.416677;0.171205;, + -6.554913;9.625625;0.171205;, + -6.554913;9.625625;0.171205;, + -6.554913;9.625625;0.171205;, + -4.092471;8.999975;0.827299;, + -4.092471;8.999975;0.827299;, + -4.021242;9.094375;0.893299;, + -4.021242;9.094375;0.893299;, + -4.021242;9.094375;0.893299;, + -4.092471;8.999975;0.134299;, + -4.092471;8.999975;0.134299;, + -4.092471;8.999975;0.607299;, + -4.092471;8.999975;0.607299;, + -4.092471;8.999975;0.607299;, + -4.326931;8.999975;0.607299;, + -4.326931;8.999975;0.607299;, + -4.021242;9.094375;0.607299;, + -4.021242;9.094375;0.607299;, + -4.021242;9.094375;0.607299;, + -4.021242;9.094375;0.607299;, + -4.092471;8.999975;0.662299;, + -4.092471;8.999975;0.662299;, + -4.092471;8.999975;0.662299;, + -4.326931;8.999975;0.662299;, + -4.326931;8.999975;0.662299;, + -4.021242;9.094375;0.662299;, + -4.021242;9.094375;0.662299;, + -4.021242;9.094375;0.662299;, + -4.021242;9.094375;0.662299;, + -4.439710;8.999975;0.497299;, + -4.439710;8.999975;0.497299;, + -4.911600;8.999975;0.497299;, + -4.911600;8.999975;0.497299;, + -4.911600;8.999975;0.497299;, + -4.439710;8.999975;0.552299;, + -4.439710;8.999975;0.552299;, + -4.911600;8.999975;0.552299;, + -4.911600;8.999975;0.552299;, + -4.911600;8.999975;0.552299;, + -5.000635;8.999975;0.607299;, + -5.000635;8.999975;0.607299;, + -5.000635;8.999975;0.662299;, + -5.000635;8.999975;0.662299;, + -4.021242;9.849568;0.893299;, + -4.021242;9.849568;0.893299;, + -4.021242;9.849568;0.893299;, + -4.092471;9.943968;0.827299;, + -4.092471;9.943968;0.827299;, + -4.092471;9.943968;0.134299;, + -4.092471;9.943968;0.134299;, + -4.326931;9.943968;0.607299;, + -4.326931;9.943968;0.607299;, + -4.092471;9.943968;0.607299;, + -4.092471;9.943968;0.607299;, + -4.092471;9.943968;0.607299;, + -4.021242;9.849568;0.607299;, + -4.021242;9.849568;0.607299;, + -4.021242;9.849568;0.607299;, + -4.021242;9.849568;0.607299;, + -4.326931;9.943968;0.662299;, + -4.326931;9.943968;0.662299;, + -4.092471;9.943968;0.662299;, + -4.092471;9.943968;0.662299;, + -4.092471;9.943968;0.662299;, + -4.021242;9.849568;0.662299;, + -4.021242;9.849568;0.662299;, + -4.021242;9.849568;0.662299;, + -4.021242;9.849568;0.662299;, + -4.439710;9.943968;0.497299;, + -4.439710;9.943968;0.497299;, + -4.911600;9.943968;0.497299;, + -4.911600;9.943968;0.497299;, + -4.911600;9.943968;0.497299;, + -4.911600;9.943968;0.552299;, + -4.911600;9.943968;0.552299;, + -4.911600;9.943968;0.552299;, + -4.439710;9.943968;0.552299;, + -4.439710;9.943968;0.552299;, + -5.000635;9.943968;0.607299;, + -5.000635;9.943968;0.607299;, + -5.000635;9.943968;0.607299;, + -5.000635;9.943968;0.662299;, + -5.000635;9.943968;0.662299;, + -5.000635;9.943968;0.662299;, + -4.582514;9.980371;0.837847;, + -4.582514;9.980371;0.837847;, + -4.582514;9.836371;0.837847;, + -4.582514;9.836371;0.837847;, + -4.542748;9.836371;0.838107;, + -4.542748;9.836371;0.838107;, + -4.542748;9.836371;0.838107;, + -4.542748;9.980371;0.838107;, + -4.542748;9.980371;0.838107;, + -4.542748;9.980371;0.838107;, + -3.853407;9.114357;0.199999;, + -3.853407;9.114357;0.199999;, + -3.739634;9.114357;0.849999;, + -3.739634;9.114357;0.849999;, + -3.739634;9.114357;0.849999;, + -3.853407;9.114357;0.699999;, + -3.853407;9.114357;0.699999;, + -3.853407;9.465427;0.699999;, + -3.853407;9.465427;0.199999;, + -3.739634;9.465427;0.849999;, + -3.739634;9.465427;0.849999;, + -3.853407;9.816500;0.199999;, + -3.853407;9.816500;0.199999;, + -3.853407;9.816500;0.699999;, + -3.853407;9.816500;0.699999;, + -3.739634;9.816500;0.849999;, + -3.739634;9.816500;0.849999;, + -3.739634;9.816500;0.849999;, + -6.097003;9.416677;0.408793;, + -6.097003;9.416677;0.408793;, + -6.097003;9.416677;0.408793;, + -6.069272;9.416677;0.191822;, + -6.069272;9.416677;0.191822;, + -6.069272;9.625625;0.191822;, + -6.069272;9.625625;0.191822;, + -6.097003;9.625625;0.408793;, + -6.097003;9.625625;0.408793;, + -6.097003;9.625625;0.408793;, + -6.097003;9.416677;0.171205;, + -6.097003;9.416677;0.171205;, + -6.097003;9.416677;0.171205;, + -6.097003;9.625625;0.171205;, + -6.097003;9.625625;0.171205;, + -6.097003;9.625625;0.171205;, + -6.197741;9.625625;0.457999;, + -6.197741;9.625625;0.457999;, + -6.197741;9.416677;0.457999;, + -6.197741;9.416677;0.457999;, + -6.454175;9.416677;0.457999;, + -6.454175;9.416677;0.457999;, + -6.454175;9.625625;0.457999;, + -6.454175;9.625625;0.457999;, + -3.332740;9.836371;0.849896;, + -3.332740;9.836371;0.849896;, + -3.332740;9.836371;0.849896;, + -3.332740;9.980371;0.849896;, + -3.332740;9.980371;0.849896;, + -3.332740;9.980371;0.849896;, + -5.513439;10.036371;0.889615;, + -5.513439;10.036371;0.889615;, + -5.513439;10.036371;0.889615;, + -5.624304;9.972371;0.888889;, + -5.624304;9.972371;0.888889;, + -5.624304;9.972371;0.888889;, + -5.624304;9.844371;0.888889;, + -5.624304;9.844371;0.888889;, + -5.624304;9.844371;0.888889;, + -5.513439;9.780371;0.889615;, + -5.513439;9.780371;0.889615;, + -5.513439;9.780371;0.889615;, + -3.477382;10.049524;0.480000;, + -3.477382;10.049524;0.480000;, + -3.308206;10.049524;0.480000;, + -3.477382;10.049524;0.860001;, + -3.477382;10.049524;0.860001;, + -3.477382;10.049524;0.860001;, + -3.477382;9.541996;0.860001;, + -3.477382;9.541996;0.860001;, + -3.308206;9.330525;0.860001;, + -3.308206;9.330525;0.860001;, + -3.308206;9.330525;0.860001;, + -3.308206;9.541996;0.860001;, + -3.308206;10.049524;0.860001;, + -3.308206;10.049524;0.860001;, + -2.351901;9.114357;0.850000;, + -2.351901;9.114357;0.850000;, + -2.351901;9.114357;0.850000;, + -2.238127;9.114357;0.200000;, + -2.238127;9.114357;0.200000;, + -2.238127;9.114357;0.700000;, + -2.238127;9.114357;0.700000;, + -2.351901;9.465427;0.850000;, + -2.351901;9.465427;0.850000;, + -2.238127;9.465427;0.700000;, + -2.238127;9.465427;0.200000;, + -2.351901;9.816500;0.850000;, + -2.351901;9.816500;0.850000;, + -2.351901;9.816500;0.850000;, + -2.238127;9.816500;0.700000;, + -2.238127;9.816500;0.700000;, + -2.238127;9.816500;0.200000;, + -2.238127;9.816500;0.200000;, + -5.402574;9.844371;0.890341;, + -5.402574;9.844371;0.890341;, + -5.402574;9.844371;0.890341;, + -5.402574;9.972371;0.890341;, + -5.402574;9.972371;0.890341;, + -5.402574;9.972371;0.890341;, + -2.625627;9.706669;0.706400;, + -2.625627;9.706669;0.706400;, + -2.625627;9.706669;0.706400;, + -2.625627;9.706669;0.213600;, + -2.625627;9.706669;0.213600;, + -2.625627;9.706669;0.213600;, + -2.625627;9.208800;0.706400;, + -2.625627;9.208800;0.706400;, + -2.625627;9.208800;0.706400;, + -2.625627;9.208800;0.213600;, + -2.625627;9.208800;0.213600;, + -2.625627;9.208800;0.213600;, + -2.610355;10.049524;0.480000;, + -2.610355;9.541996;0.860000;, + -2.610355;9.541996;0.860000;, + -2.737237;9.330525;0.860000;, + -2.737237;9.330525;0.860000;, + -2.737237;9.330525;0.860000;, + -2.610355;10.049524;0.860000;, + -2.610355;10.049524;0.860000;, + -2.273581;10.058715;0.706400;, + -2.273581;10.058715;0.706400;, + -1.775712;10.058715;0.706400;, + -1.775712;10.058715;0.706400;, + -1.775712;10.058715;0.213600;, + -1.775712;10.058715;0.213600;, + -2.273581;10.058715;0.213600;, + -2.273581;10.058715;0.213600;, + -2.273581;8.856754;0.706400;, + -2.273581;8.856754;0.706400;, + -2.273581;8.856754;0.213600;, + -2.273581;8.856754;0.213600;, + -1.775712;8.856754;0.213600;, + -1.775712;8.856754;0.213600;, + -1.775712;8.856754;0.706400;, + -1.775712;8.856754;0.706400;, + -1.491860;10.058715;0.213600;, + -1.491860;10.058715;0.213600;, + -1.491860;10.058715;0.706400;, + -1.491860;10.058715;0.706400;, + -2.024647;9.457734;0.706400;, + -2.024647;9.457734;0.213600;, + -1.574152;10.218699;0.480000;, + -1.574152;10.218699;0.480000;, + -1.785622;10.218699;0.480000;, + -1.785622;9.541996;0.860000;, + -1.785622;9.541996;0.860000;, + -1.574152;9.711170;0.860000;, + -1.574152;9.711170;0.860000;, + -1.574152;9.711170;0.860000;, + -1.574152;10.218699;0.860000;, + -1.574152;10.218699;0.860000;, + -1.574152;10.218699;0.860000;, + -1.785622;10.218699;0.860000;, + -1.785622;10.218699;0.860000;, + -1.291183;10.090521;0.600000;, + -1.291183;10.090521;0.600000;, + -1.179814;8.968801;0.706400;, + -1.179814;8.968801;0.706400;, + -1.179814;8.968801;0.706400;, + -1.179814;8.968801;0.213600;, + -1.179814;8.968801;0.213600;, + -1.179814;8.968801;0.213600;, + -1.179814;9.706669;0.213600;, + -1.179814;9.706669;0.213600;, + -1.179814;9.706669;0.213600;, + -1.179814;9.706669;0.706400;, + -1.179814;9.706669;0.706400;, + -1.179814;9.706669;0.706400;, + -1.423666;9.208800;0.706400;, + -1.423666;9.208800;0.706400;, + -1.423666;9.208800;0.706400;, + -1.423666;9.208800;0.706400;, + -1.423666;9.706669;0.706400;, + -1.423666;9.706669;0.213600;, + -1.423666;9.208800;0.213600;, + -1.423666;9.208800;0.213600;, + -1.423666;9.208800;0.213600;, + -1.423666;9.208800;0.213600;, + -0.701730;10.090521;0.600000;, + -0.701730;10.090521;0.600000;, + -3.477382;10.768522;0.480000;, + -3.477382;10.768522;0.480000;, + -3.308206;10.895405;0.480000;, + -3.477382;10.768522;0.860001;, + -3.477382;10.768522;0.860001;, + -3.308206;10.895405;0.860001;, + -2.610355;10.895405;0.480000;, + -2.610355;10.895405;0.860000;, + -1.954798;10.895405;0.480000;, + -1.954798;10.895405;0.480000;, + -1.574152;10.514757;0.480000;, + -1.954798;10.895405;0.860000;, + -1.954798;10.895405;0.860000;, + -1.574152;10.514757;0.860000;, + -1.291183;10.669608;0.600000;, + -1.291183;10.669608;0.600000;, + -0.701730;10.669608;0.600000;, + -0.701730;10.669608;0.600000;, + -0.162000;10.592889;0.850000;, + -0.162000;10.592889;0.850000;, + -0.162000;10.592889;0.400000;, + -0.162000;10.592889;0.400000;, + -0.384438;11.237040;0.797501;, + -0.384438;11.237040;0.797501;, + -0.384438;10.687464;0.732393;, + -0.384438;10.687464;0.732393;, + -0.384438;10.687464;0.732393;, + -0.384438;10.303647;0.732393;, + -0.384438;10.303647;0.732393;, + -0.384438;11.486215;0.839315;, + -0.384438;11.486215;0.839315;, + -0.384438;11.486215;0.839315;, + -0.306190;11.559654;0.839315;, + -0.306190;11.559654;0.839315;, + 0.000000;11.559654;0.839315;, + 0.000000;11.559654;0.839315;, + -0.306190;10.687464;0.732393;, + -0.306190;10.687464;0.732393;, + 0.000000;10.687464;0.732393;, + 0.000000;10.303647;0.732393;, + 0.000000;10.303647;0.732393;, + -0.306190;10.303647;0.732393;, + -0.306190;10.303647;0.732393;, + -0.306190;10.303647;0.732393;, + -0.290080;11.185386;0.360912;, + -0.290080;11.185386;0.360912;, + -0.290080;11.154265;0.360912;, + -0.290080;11.154265;0.360912;, + -0.203526;11.460281;0.360912;, + 0.000000;11.460281;0.360912;, + -0.282675;11.429161;0.360912;, + -0.282675;11.429161;0.360912;, + -0.192219;10.728957;0.360912;, + 0.000000;10.728957;0.360912;, + -0.282675;10.760077;0.360912;, + -0.282675;10.760077;0.360912;, + -0.296411;10.604476;0.827522;, + -0.296411;10.604476;0.827522;, + -0.791490;10.604476;0.827522;, + -0.791490;10.604476;0.827522;, + -0.791490;10.604476;0.827522;, + -0.296411;10.977919;0.827522;, + -0.296411;10.977919;0.827522;, + -0.791490;10.977919;0.827522;, + -0.791490;10.977919;0.827522;, + -0.791490;10.977919;0.827522;, + 0.000000;10.592889;0.850000;, + 0.000000;10.592889;0.850000;, + 0.000000;10.592889;0.400000;, + 0.000000;10.592889;0.400000;, + -2.022394;0.022285;1.224938;, + -2.022394;0.022285;1.224938;, + -2.022394;0.022285;1.224938;, + -1.964576;0.527998;1.508697;, + -1.964576;0.527998;1.508697;, + -1.964576;0.527998;1.508697;, + -2.225000;1.050444;1.309000;, + -2.225000;1.050444;1.309000;, + -2.225000;1.050444;1.309000;, + -1.650000;0.022285;1.224938;, + -1.650000;0.022285;1.224938;, + -1.650000;0.527998;1.508697;, + -1.650000;0.527998;1.508697;, + -1.650000;1.050444;1.309000;, + -1.650000;1.050444;1.309000;, + -1.277606;0.022285;1.224938;, + -1.277606;0.022285;1.224938;, + -1.277606;0.022285;1.224938;, + -1.335424;0.527998;1.508697;, + -1.335424;0.527998;1.508697;, + -1.335424;0.527998;1.508697;, + -1.075000;1.050444;1.309000;, + -1.075000;1.050444;1.309000;, + -1.075000;1.050444;1.309000;, + -2.180000;2.735444;1.009000;, + -2.180000;2.735444;1.009000;, + -2.180000;2.735444;1.009000;, + -2.630000;2.735444;1.009000;, + -2.630000;2.735444;1.009000;, + -2.630000;2.735444;1.009000;, + -2.180000;2.465444;1.009000;, + -2.180000;2.465444;1.009000;, + -1.650000;2.465444;1.009000;, + -1.120000;2.735444;1.009000;, + -1.120000;2.735444;1.009000;, + -1.120000;2.735444;1.009000;, + -1.120000;2.465444;1.009000;, + -1.120000;2.465444;1.009000;, + -0.670000;2.735444;1.009000;, + -0.670000;2.735444;1.009000;, + -0.670000;2.735444;1.009000;, + -2.180000;4.040444;1.009000;, + -2.180000;4.040444;1.009000;, + -2.180000;4.040444;1.009000;, + -2.630000;4.040444;1.009000;, + -2.630000;4.040444;1.009000;, + -2.630000;4.040444;1.009000;, + -2.180000;3.545444;1.009000;, + -2.180000;3.545444;1.009000;, + -2.180000;3.545444;1.009000;, + -1.650000;3.545444;1.009000;, + -1.650000;3.545444;1.009000;, + -1.120000;4.040444;1.009000;, + -1.120000;4.040444;1.009000;, + -1.120000;4.040444;1.009000;, + -1.120000;3.545444;1.009000;, + -1.120000;3.545444;1.009000;, + -1.120000;3.545444;1.009000;, + -0.670000;4.040444;1.009000;, + -0.670000;4.040444;1.009000;, + -0.670000;4.040444;1.009000;, + -2.211500;4.924759;0.955231;, + -2.211500;4.924759;0.955231;, + -2.211500;4.924759;0.955231;, + -2.183926;5.309234;0.907731;, + -2.183926;5.309234;0.907731;, + -1.650000;4.924759;0.955231;, + -1.650000;4.924759;0.955231;, + -1.108550;5.309234;0.907731;, + -1.108550;5.309234;0.907731;, + -1.088500;4.924759;0.955231;, + -1.088500;4.924759;0.955231;, + -1.088500;4.924759;0.955231;, + -0.864000;5.747889;1.400000;, + -0.864000;5.747889;1.400000;, + -0.864000;5.747889;1.400000;, + -0.270000;5.747889;1.400000;, + -0.270000;5.747889;1.400000;, + -0.270000;5.747889;1.400000;, + -0.270000;5.747889;1.400000;, + 0.000000;5.747889;1.400000;, + -0.270000;4.472888;1.400000;, + -0.270000;4.472888;1.400000;, + -0.344000;4.439500;1.395000;, + -0.344000;4.439500;1.395000;, + -0.344000;4.439500;1.395000;, + 0.000000;4.439500;1.395000;, + 0.000000;4.439500;1.395000;, + -0.434000;5.122600;1.395000;, + -0.434000;5.122600;1.395000;, + -0.434000;5.122600;1.395000;, + 0.000000;5.122600;1.395000;, + 0.000000;5.122600;1.395000;, + -5.557411;7.308371;1.056685;, + -5.557411;7.308371;1.056685;, + -5.757436;7.308371;1.055375;, + -5.757436;7.308371;1.055375;, + -5.564542;7.308371;1.482253;, + -5.564542;7.308371;1.482253;, + -5.564542;7.308371;1.482253;, + -5.764566;7.308371;1.480943;, + -5.764566;7.308371;1.480943;, + -5.764566;7.308371;1.480943;, + -2.211500;6.391939;1.240231;, + -2.211500;6.391939;1.240231;, + -2.211500;6.899809;1.050231;, + -2.211500;6.899809;1.050231;, + -2.211500;6.899809;1.050231;, + -1.650000;6.391939;1.240231;, + -1.650000;6.899809;1.050231;, + -1.650000;6.899809;1.050231;, + -1.088500;6.391939;1.240231;, + -1.088500;6.391939;1.240231;, + -1.088500;6.899809;1.050231;, + -1.088500;6.899809;1.050231;, + -1.088500;6.899809;1.050231;, + 0.000000;6.553689;1.368093;, + 0.000000;6.553689;1.368093;, + -0.621000;6.553689;1.368093;, + -0.621000;6.553689;1.368093;, + -0.621000;6.553689;1.368093;, + -0.864000;6.512889;1.400000;, + -0.864000;6.512889;1.400000;, + -0.864000;6.512889;1.400000;, + -0.270000;6.512889;1.400000;, + -0.270000;6.512889;1.400000;, + -0.270000;6.512889;1.400000;, + -0.270000;6.512889;1.400000;, + 0.000000;6.512889;1.400000;, + 0.000000;6.512889;1.400000;, + -0.474000;6.505000;1.395000;, + -0.474000;6.505000;1.395000;, + -0.474000;6.505000;1.395000;, + 0.000000;6.505000;1.395000;, + 0.000000;6.505000;1.395000;, + -1.157854;8.456665;1.570000;, + -1.144800;8.335900;1.292500;, + -1.144800;8.335900;1.292500;, + -1.144800;8.417500;1.427500;, + -1.001073;8.438701;1.587800;, + -1.001073;8.438701;1.587800;, + -1.295585;8.438701;1.587800;, + -1.295585;8.438701;1.587800;, + -1.295585;8.438701;1.587800;, + -1.295585;8.438701;1.587800;, + -1.291183;8.380595;1.165000;, + -1.291183;8.380595;1.165000;, + -1.291183;8.380595;1.165000;, + -1.206975;8.252790;1.593860;, + -1.206975;7.730014;1.348713;, + -1.206975;7.730014;1.348713;, + -1.291183;8.380595;1.580000;, + -1.291183;8.380595;1.580000;, + -1.291183;7.708855;1.265000;, + -1.291183;7.708855;1.265000;, + -1.291183;7.708855;1.265000;, + -1.291183;7.708855;1.265000;, + 0.000000;7.481889;1.150000;, + -0.729000;8.335782;1.300000;, + -0.729000;8.335782;1.300000;, + -0.621000;7.481889;1.150000;, + -0.621000;7.481889;1.150000;, + -0.712800;8.335900;1.292500;, + -0.712800;8.335900;1.292500;, + 0.000000;8.335900;1.292500;, + 0.000000;8.335900;1.292500;, + 0.000000;8.417500;1.427500;, + -0.712800;8.417500;1.427500;, + -0.701730;8.380595;1.165000;, + -0.701730;8.380595;1.165000;, + -0.701730;8.380595;1.165000;, + -0.701730;8.380595;1.580000;, + -0.701730;8.380595;1.580000;, + -0.701730;7.708855;1.265000;, + -0.701730;7.708855;1.265000;, + -0.701730;7.708855;1.265000;, + -0.701730;7.708855;1.265000;, + -0.785938;8.252790;1.593860;, + -0.785938;7.730014;1.348713;, + -0.785938;7.730014;1.348713;, + -5.781182;8.999975;1.102299;, + -5.781182;8.999975;1.102299;, + -5.781182;8.999975;1.102299;, + -5.816796;9.094374;1.168299;, + -5.816796;9.094374;1.168299;, + -5.816796;9.094374;1.168299;, + -5.816796;9.094374;1.168299;, + -5.816796;9.849567;1.168299;, + -5.816796;9.849567;1.168299;, + -5.816796;9.849567;1.168299;, + -5.816796;9.849567;1.168299;, + -5.781182;9.943968;1.102299;, + -5.781182;9.943968;1.102299;, + -5.781182;9.943968;1.102299;, + -5.513186;9.980371;0.845168;, + -5.513186;9.980371;0.845168;, + -5.513186;9.980371;0.845168;, + -5.513186;9.836371;0.845168;, + -5.513186;9.836371;0.845168;, + -5.513186;9.836371;0.845168;, + -5.557411;9.428371;1.056685;, + -5.557411;8.948371;1.056685;, + -5.757436;9.428371;1.055375;, + -5.757436;8.948371;1.055375;, + -5.564542;9.428371;1.482253;, + -5.564542;9.428371;1.482253;, + -5.564542;8.948371;1.482253;, + -5.564542;8.948371;1.482253;, + -5.764566;9.428371;1.480943;, + -5.764566;9.428371;1.480943;, + -5.764566;8.948371;1.480943;, + -5.764566;8.948371;1.480943;, + -4.273510;9.094375;1.168299;, + -4.273510;9.094375;1.168299;, + -4.273510;9.094375;1.168299;, + -4.273510;9.094375;1.168299;, + -4.326932;8.999975;1.102299;, + -4.439710;9.094375;1.168299;, + -4.439710;9.094375;1.168299;, + -5.000635;9.094375;1.168299;, + -5.000635;9.094375;1.168299;, + -5.000635;8.999975;1.102299;, + -5.000635;8.999975;1.102299;, + -4.439710;8.999975;1.102299;, + -4.439710;8.999975;1.102299;, + -4.273510;9.849568;1.168299;, + -4.273510;9.849568;1.168299;, + -4.273510;9.849568;1.168299;, + -4.326932;9.943968;1.102299;, + -4.439710;9.849568;1.168299;, + -4.439710;9.849568;1.168299;, + -4.439710;9.943968;1.102299;, + -4.439710;9.943968;1.102299;, + -5.000635;9.943968;1.102299;, + -5.000635;9.943968;1.102299;, + -5.000635;9.849568;1.168299;, + -5.000635;9.849568;1.168299;, + -5.514779;9.908371;0.969597;, + -3.477382;10.049524;1.210001;, + -3.477382;10.049524;1.210001;, + -3.477382;9.541996;1.210001;, + -3.477382;9.541996;1.210001;, + -3.308206;9.330525;1.210001;, + -3.308206;9.330525;1.210001;, + -3.308206;9.330525;1.210001;, + -3.308206;9.330525;1.210001;, + -3.370776;9.681329;1.360001;, + -3.370776;9.681329;1.360001;, + -3.370776;10.087790;1.360001;, + -3.370776;10.087790;1.360001;, + -2.610355;9.541996;1.210000;, + -2.610355;9.541996;1.210000;, + -2.610355;9.541996;1.210000;, + -2.737237;9.330525;1.210000;, + -2.737237;9.330525;1.210000;, + -2.737237;9.330525;1.210000;, + -2.605451;10.087790;1.360000;, + -2.673121;9.681329;1.360000;, + -2.673121;9.681329;1.360000;, + -3.263738;9.504920;1.360001;, + -3.263738;9.504920;1.360001;, + -3.221444;9.664412;1.360001;, + -2.810496;9.504920;1.360000;, + -3.221444;10.087790;1.360001;, + -1.785622;9.541996;1.210000;, + -1.785622;9.541996;1.210000;, + -1.785622;9.541996;1.210000;, + -1.574152;9.711170;1.210000;, + -1.574152;9.711170;1.210000;, + -1.574152;9.711170;1.210000;, + -1.574152;9.711170;1.210000;, + -1.943341;10.228918;1.360000;, + -1.877459;9.681329;1.360000;, + -1.877459;9.681329;1.360000;, + -1.574152;10.218699;1.210000;, + -1.574152;10.218699;1.210000;, + -1.690794;10.228918;1.360000;, + -1.690794;10.228918;1.360000;, + -1.690794;9.822455;1.360000;, + -1.690794;9.822455;1.360000;, + -1.144800;10.003599;1.427500;, + -1.144800;10.105600;1.292500;, + -1.144800;10.105600;1.292500;, + -1.295585;9.903199;1.587800;, + -1.295585;9.903199;1.587800;, + -1.295585;9.903199;1.587800;, + -1.295585;9.903199;1.587800;, + -1.001073;9.903199;1.587800;, + -1.001073;9.903199;1.587800;, + -1.291183;9.629884;2.100000;, + -1.291183;9.629884;2.100000;, + -1.291183;9.629884;2.100000;, + -1.291183;9.629884;1.165000;, + -1.291183;9.629884;1.165000;, + -1.291183;9.629884;1.165000;, + -1.291183;10.090521;1.165000;, + -1.291183;10.090521;1.165000;, + -1.291183;10.090521;1.165000;, + -1.206975;10.200697;2.113860;, + -1.291183;10.090521;2.100000;, + -1.291183;10.090521;2.100000;, + -1.291183;8.914934;1.165000;, + -1.291183;8.914934;1.165000;, + -1.291183;8.914934;1.165000;, + -1.291183;8.914934;1.580000;, + -1.291183;8.914934;1.580000;, + -1.291183;8.914934;1.580000;, + -0.324000;10.031889;1.000000;, + 0.000000;10.003599;1.427500;, + -0.712800;10.003599;1.427500;, + -0.712800;10.105600;1.292500;, + -0.712800;10.105600;1.292500;, + 0.000000;10.105600;1.292500;, + 0.000000;10.105600;1.292500;, + -0.473000;7.990001;1.320000;, + -0.473000;7.990001;1.320000;, + -0.473000;7.990001;1.320000;, + -0.350000;7.990001;1.320000;, + -0.350000;7.990001;1.320000;, + -0.350000;7.990001;1.580000;, + -0.350000;7.990001;1.580000;, + -0.473000;7.990001;1.580000;, + -0.473000;7.990001;1.580000;, + -0.473000;9.840000;1.400000;, + -0.473000;9.840000;1.400000;, + -0.350000;9.840000;1.400000;, + -0.602000;8.120901;1.438300;, + -0.602000;9.824600;1.518300;, + -0.350000;9.716153;1.400000;, + -0.350000;9.716153;1.400000;, + -0.602000;9.714376;1.518300;, + -0.602000;9.714376;1.518300;, + -0.473000;9.716153;1.400000;, + -0.701730;10.090521;1.165000;, + -0.701730;10.090521;1.165000;, + -0.701730;10.090521;1.165000;, + -0.701730;10.090521;2.100000;, + -0.701730;10.090521;2.100000;, + -0.701730;9.629884;2.100000;, + -0.701730;9.629884;2.100000;, + -0.701730;9.629884;2.100000;, + -0.701730;9.629884;1.165000;, + -0.701730;9.629884;1.165000;, + -0.701730;9.629884;1.165000;, + -0.785938;10.200697;2.113860;, + -0.701730;8.914934;1.580000;, + -0.701730;8.914934;1.580000;, + -0.701730;8.914934;1.580000;, + -0.701730;8.914934;1.165000;, + -0.701730;8.914934;1.165000;, + -0.701730;8.914934;1.165000;, + -5.757436;10.788371;1.055375;, + -5.757436;10.788371;1.055375;, + -5.757436;10.788371;1.055375;, + -5.557411;10.788371;1.056685;, + -5.557411;10.788371;1.056685;, + -5.557411;10.788371;1.056685;, + -5.557411;11.108371;1.056685;, + -5.557411;11.108371;1.056685;, + -5.757436;11.108371;1.055375;, + -5.757436;11.108371;1.055375;, + -5.764566;11.108371;1.480943;, + -5.764566;11.108371;1.480943;, + -5.764566;11.108371;1.480943;, + -5.564542;11.108371;1.482253;, + -5.564542;11.108371;1.482253;, + -5.564542;11.108371;1.482253;, + -5.564542;10.788371;1.482253;, + -5.564542;10.788371;1.482253;, + -5.764566;10.788371;1.480943;, + -5.764566;10.788371;1.480943;, + -5.557411;10.948371;1.056685;, + -5.557411;10.948371;1.056685;, + -5.557411;10.948371;1.056685;, + -5.564542;10.948371;1.482253;, + -5.564542;10.948371;1.482253;, + -5.764566;10.948371;1.480943;, + -5.764566;10.948371;1.480943;, + -5.757436;10.948371;1.055375;, + -5.757436;10.948371;1.055375;, + -5.757436;10.948371;1.055375;, + -3.477382;10.768522;1.210001;, + -3.477382;10.768522;1.210001;, + -3.477382;10.768522;1.210001;, + -3.477382;10.768522;1.210001;, + -3.308206;10.895405;1.210001;, + -3.308206;10.895405;1.210001;, + -3.308206;10.895405;1.210001;, + -3.370776;10.653745;1.360001;, + -3.370776;10.653745;1.360001;, + -2.610355;10.895405;1.210000;, + -2.610355;10.895405;1.210000;, + -2.605451;10.759588;1.360000;, + -2.605451;10.759588;1.360000;, + -3.221444;10.759588;1.360001;, + -3.221444;10.759588;1.360001;, + -1.954798;10.895405;1.210000;, + -1.954798;10.895405;1.210000;, + -1.954798;10.895405;1.210000;, + -1.954798;10.895405;1.210000;, + -1.574152;10.514757;1.210000;, + -1.574152;10.514757;1.210000;, + -1.574152;10.514757;1.210000;, + -2.026791;10.759588;1.360000;, + -2.026791;10.759588;1.360000;, + -1.690794;10.442054;1.360000;, + -1.690794;10.442054;1.360000;, + -1.206975;10.651367;1.868713;, + -1.206975;10.651367;1.868713;, + -1.291183;10.669608;1.785000;, + -1.291183;10.669608;1.785000;, + -1.291183;10.669608;1.785000;, + -1.291183;10.669608;1.785000;, + -0.384438;11.348052;1.336887;, + -0.384438;10.811944;1.336887;, + -0.384438;10.811944;1.336887;, + -0.384438;10.811944;1.336887;, + -0.384438;11.621069;1.336887;, + -0.384438;11.621069;1.336887;, + -0.384438;10.303647;1.119859;, + -0.384438;10.303647;1.119859;, + -0.306190;11.694510;1.336887;, + 0.000000;11.694510;1.336887;, + 0.000000;10.811944;1.336887;, + 0.000000;10.811944;1.336887;, + -0.306190;10.811944;1.336887;, + -0.306190;10.811944;1.336887;, + -0.306190;10.811944;1.336887;, + 0.000000;10.303647;1.119859;, + -0.306190;10.303647;1.119859;, + -0.306190;10.303647;1.119859;, + -0.290080;11.185386;0.922292;, + -0.290080;11.185386;0.922292;, + -0.290080;11.154265;0.922292;, + -0.290080;11.154265;0.922292;, + -0.203526;11.460281;0.922292;, + -0.282675;11.429161;0.922292;, + -0.282675;11.429161;0.922292;, + -0.192219;10.728957;0.922292;, + -0.282675;10.760077;0.922292;, + -0.282675;10.760077;0.922292;, + -0.191908;10.391821;0.997700;, + -0.191908;10.391821;0.997700;, + -0.191908;10.827504;0.997700;, + -0.191908;10.827504;0.997700;, + 0.000000;10.827504;0.997700;, + 0.000000;10.391821;0.997700;, + -0.320198;10.370019;1.071678;, + -0.320198;10.370019;1.071678;, + -0.701730;10.669608;1.785000;, + -0.701730;10.669608;1.785000;, + -0.701730;10.669608;1.785000;, + -0.701730;10.669608;1.785000;, + -0.785938;10.651367;1.868713;, + -0.785938;10.651367;1.868713;, + 0.000000;5.117500;1.770000;, + -0.434000;5.117500;1.770000;, + -0.434000;5.117500;1.770000;, + -0.434000;5.117500;1.770000;, + -0.434000;5.117500;1.770000;, + -0.474000;6.403000;1.770000;, + -0.474000;6.403000;1.770000;, + 0.000000;6.403000;1.770000;, + -1.380187;8.442361;1.740032;, + -1.380187;8.442361;1.740032;, + -1.380187;8.442361;1.881088;, + -1.380187;8.442361;1.881088;, + -1.380187;8.442361;1.881088;, + -1.375398;8.500993;1.659580;, + -1.375398;8.500993;1.659580;, + -1.300374;8.378100;1.690000;, + -1.300374;8.378100;1.690000;, + -1.001073;8.378100;1.690000;, + -1.001073;8.378100;1.920000;, + -1.001073;8.378100;1.920000;, + -1.300374;8.378100;1.920000;, + -1.300374;8.378100;1.920000;, + -1.300374;8.378100;1.920000;, + -1.157854;9.729999;1.670000;, + -1.380187;9.932087;2.125760;, + -1.380187;9.932087;1.740032;, + -1.380187;9.932087;1.740032;, + -1.380187;9.193751;2.311072;, + -1.380187;9.193751;2.311072;, + -1.380187;9.786242;2.311072;, + -1.380187;9.786242;2.311072;, + -1.375398;9.853255;1.659580;, + -1.375398;9.853255;1.659580;, + -1.001073;9.165900;2.390000;, + -1.300374;9.165900;2.390000;, + -1.300374;9.165900;2.390000;, + -1.001073;9.822401;2.390000;, + -1.001073;9.822401;2.390000;, + -1.300374;9.822401;2.390000;, + -1.300374;9.822401;2.390000;, + -1.300374;9.822401;2.390000;, + -1.300374;9.822401;2.390000;, + -1.001073;9.984000;2.180000;, + -1.300374;9.984000;2.180000;, + -1.300374;9.984000;2.180000;, + -1.001073;9.984000;1.690000;, + -1.300374;9.984000;1.690000;, + -1.300374;9.984000;1.690000;, + -0.602000;8.120901;1.664500;, + -0.602000;8.120901;1.664500;, + -0.350000;9.731160;1.943483;, + -0.350000;9.731160;1.943483;, + -0.602000;9.727733;1.991131;, + -0.310000;9.017695;1.730000;, + -0.350000;8.980601;1.730000;, + -0.350000;8.980601;1.730000;, + -0.350000;8.266534;1.730000;, + -0.350000;8.266534;1.730000;, + -0.310000;8.229440;1.730000;, + -0.384438;10.811944;1.906371;, + -0.384438;10.811944;1.906371;, + -0.384438;10.811944;1.906371;, + -0.384438;11.434348;2.052865;, + -0.384438;11.434348;2.052865;, + -0.384438;11.434348;2.052865;, + -0.306190;10.811944;1.983195;, + -0.306190;10.811944;1.983195;, + -0.306190;11.507788;2.129689;, + -0.306190;11.507788;2.129689;, + -0.306190;11.507788;2.129689;, + -0.306190;11.507788;2.129689;, + 0.000000;10.811944;1.983195;, + 0.000000;10.811944;1.983195;, + 0.000000;11.507788;2.129689;, + 0.000000;11.507788;2.129689;, + -0.300186;10.544438;1.851922;, + -0.300186;10.544438;1.851922;, + -0.300186;10.957540;1.928746;, + -0.300186;10.957540;1.928746;, + 0.000000;10.544438;1.851922;, + -0.473000;10.370001;2.115000;, + -0.473000;10.370001;2.115000;, + -0.350000;10.370001;2.115000;, + -0.602000;10.285300;2.140350;, + -0.602000;10.285300;2.140350;, + -0.350000;8.929999;2.830000;, + -0.350000;8.929999;2.830000;, + -0.350000;8.929999;2.830000;, + -0.473000;8.929999;2.830000;, + -0.473000;8.929999;2.830000;, + -0.473000;8.929999;2.830000;, + -0.473000;8.929999;2.830000;, + -0.473000;9.770000;3.220000;, + -0.473000;9.770000;3.220000;, + -0.350000;9.770000;3.220000;, + -0.350000;9.770000;3.220000;, + -0.350000;9.770000;3.220000;, + -0.350000;9.770000;3.220000;, + -0.602000;9.014699;2.762400;, + -0.602000;9.014699;2.762400;, + -0.602000;9.014699;2.762400;, + -0.602000;9.762300;3.101700;, + -0.350000;9.755640;2.960000;, + -0.350000;9.755640;2.960000;, + -0.602000;9.749520;2.875500;, + -0.210000;8.377817;2.627000;, + -0.210000;8.377817;2.627000;, + -0.170000;8.452005;2.965000;, + -0.170000;8.452005;2.965000;, + -0.170000;8.452005;2.965000;, + -0.170000;8.804401;2.965000;, + -0.170000;8.804401;2.965000;, + -0.170000;8.804401;2.965000;, + -0.210000;8.860044;2.627000;, + -0.210000;8.860044;2.627000;, + 0.000000;8.452005;2.965000;, + 0.000000;8.452005;2.965000;, + 0.000000;8.804401;2.965000;, + 0.000000;8.804401;2.965000;, + -0.308518;9.017695;2.354001;, + -0.208518;8.924960;2.705000;, + -0.208518;8.924960;2.705000;, + 0.000000;8.924960;2.705000;, + 0.000000;8.924960;2.705000;, + 0.000000;9.017695;2.354001;, + -0.350000;8.979228;2.354001;, + -0.350000;8.979228;2.354001;, + -0.250000;8.886491;2.705000;, + -0.250000;8.886491;2.705000;, + -0.250000;8.886491;2.705000;, + -0.350000;8.267908;2.354001;, + -0.350000;8.267908;2.354001;, + -0.250000;8.360644;2.705000;, + -0.250000;8.360644;2.705000;, + -0.250000;8.360644;2.705000;, + -0.308518;8.229440;2.354001;, + 0.000000;8.229440;2.354001;, + 0.000000;8.322174;2.705000;, + 0.000000;8.322174;2.705000;, + -0.208518;8.322174;2.705000;, + -0.208518;8.322174;2.705000;, + 0.000000;8.887866;2.705000;, + 0.000000;8.359270;2.705000;, + -0.350000;10.300000;3.220000;, + -0.350000;10.300000;3.220000;, + -0.473000;10.300000;3.220000;, + -0.473000;10.300000;3.220000;, + -0.473000;10.300000;3.220000;, + -0.473000;10.300000;3.220000;, + -0.473000;10.370001;3.103000;, + -0.473000;10.370001;3.103000;, + -0.350000;10.370001;3.103000;, + -0.602000;10.285300;2.999910;, + -0.602000;10.285300;2.999910;, + -0.602000;10.223000;3.101700;, + -1.108750;4.035734;0.052731;, + -2.148500;4.277565;-0.215970;, + -2.148500;4.277565;-0.215970;, + -2.148500;4.277565;-0.215970;, + -2.148500;4.035734;-0.327269;, + -2.148500;4.035734;-0.327269;, + -2.148500;3.793904;-0.215970;, + -2.148500;3.793904;-0.215970;, + -2.148500;3.793904;-0.215970;, + -2.148500;3.693734;0.052731;, + -2.148500;3.693734;0.052731;, + -2.191250;4.035734;0.052731;, + -1.650000;4.277565;-0.215970;, + -1.650000;4.277565;-0.215970;, + -1.650000;4.035734;-0.327269;, + -1.650000;3.793904;-0.215970;, + -1.650000;3.793904;-0.215970;, + -1.650000;3.693734;0.052731;, + -1.151500;4.277565;-0.215970;, + -1.151500;4.277565;-0.215970;, + -1.151500;4.277565;-0.215970;, + -1.151500;4.035734;-0.327269;, + -1.151500;4.035734;-0.327269;, + -1.151500;3.793904;-0.215970;, + -1.151500;3.793904;-0.215970;, + -1.151500;3.793904;-0.215970;, + -1.151500;3.693734;0.052731;, + -1.151500;3.693734;0.052731;, + -2.148500;4.377734;0.052731;, + -2.148500;4.377734;0.052731;, + -1.650000;4.377734;0.052731;, + -1.151500;4.377734;0.052731;, + -1.151500;4.377734;0.052731;, + -2.148500;4.277565;0.321432;, + -2.148500;4.277565;0.321432;, + -2.148500;4.277565;0.321432;, + -2.148500;4.035734;0.432731;, + -2.148500;4.035734;0.432731;, + -2.148500;3.793904;0.321432;, + -2.148500;3.793904;0.321432;, + -2.148500;3.793904;0.321432;, + -1.650000;4.035734;0.432731;, + -1.650000;4.277565;0.321432;, + -1.650000;4.277565;0.321432;, + -1.650000;3.793904;0.321432;, + -1.650000;3.793904;0.321432;, + -1.151500;4.277565;0.321432;, + -1.151500;4.277565;0.321432;, + -1.151500;4.277565;0.321432;, + -1.151500;4.035734;0.432731;, + -1.151500;4.035734;0.432731;, + -1.151500;3.793904;0.321432;, + -1.151500;3.793904;0.321432;, + -1.151500;3.793904;0.321432;, + 0.000000;9.095578;3.157000;, + 0.000000;9.577806;3.157000;, + 0.000000;9.735457;2.260000;, + 0.000000;8.947201;2.260000;, + -0.310000;9.735457;2.260000;, + -0.350000;9.698363;2.260000;, + -0.350000;9.698363;2.260000;, + -0.350000;8.984295;2.260000;, + -0.350000;8.984295;2.260000;, + -0.310000;8.947201;2.260000;, + -0.210000;9.095578;3.157000;, + -0.210000;9.095578;3.157000;, + -0.170000;9.169767;3.495000;, + -0.170000;9.169767;3.495000;, + -0.170000;9.169767;3.495000;, + -0.170000;9.522163;3.495000;, + -0.170000;9.522163;3.495000;, + -0.170000;9.522163;3.495000;, + -0.210000;9.577806;3.157000;, + -0.210000;9.577806;3.157000;, + 0.000000;9.169767;3.495000;, + 0.000000;9.169767;3.495000;, + 0.000000;9.522163;3.495000;, + 0.000000;9.522163;3.495000;, + -0.308518;9.735457;2.884000;, + -0.208518;9.642721;3.235000;, + -0.208518;9.642721;3.235000;, + 0.000000;9.642721;3.235000;, + 0.000000;9.642721;3.235000;, + 0.000000;9.735457;2.884000;, + -0.350000;9.696989;2.884000;, + -0.350000;9.696989;2.884000;, + -0.250000;9.604253;3.235000;, + -0.250000;9.604253;3.235000;, + -0.250000;9.604253;3.235000;, + -0.350000;8.985670;2.884000;, + -0.350000;8.985670;2.884000;, + -0.250000;9.078405;3.235000;, + -0.250000;9.078405;3.235000;, + -0.250000;9.078405;3.235000;, + -0.308518;8.947201;2.884000;, + 0.000000;8.947201;2.884000;, + 0.000000;9.039936;3.235000;, + 0.000000;9.039936;3.235000;, + -0.208518;9.039936;3.235000;, + -0.208518;9.039936;3.235000;, + 0.000000;9.605628;3.235000;, + 0.000000;9.077031;3.235000;, + -0.706562;8.438701;1.587800;, + -0.706562;8.438701;1.587800;, + -0.706562;8.438701;1.587800;, + -0.706562;8.438701;1.587800;, + -0.706562;9.903199;1.587800;, + -0.706562;9.903199;1.587800;, + -0.706562;9.903199;1.587800;, + -0.706562;9.903199;1.587800;, + -0.621959;8.442361;1.740032;, + -0.621959;8.442361;1.740032;, + -0.621959;8.442361;1.881088;, + -0.621959;8.442361;1.881088;, + -0.621959;8.442361;1.881088;, + -0.626748;8.500993;1.659580;, + -0.626748;8.500993;1.659580;, + -0.701773;8.378100;1.690000;, + -0.701773;8.378100;1.690000;, + -0.701773;8.378100;1.920000;, + -0.701773;8.378100;1.920000;, + -0.701773;8.378100;1.920000;, + -0.621959;9.932087;2.125760;, + -0.621959;9.932087;1.740032;, + -0.621959;9.932087;1.740032;, + -0.621959;9.193751;2.311072;, + -0.621959;9.193751;2.311072;, + -0.621959;9.786242;2.311072;, + -0.621959;9.786242;2.311072;, + -0.626748;9.853255;1.659580;, + -0.626748;9.853255;1.659580;, + -0.701773;9.165900;2.390000;, + -0.701773;9.165900;2.390000;, + -0.701773;9.822401;2.390000;, + -0.701773;9.822401;2.390000;, + -0.701773;9.822401;2.390000;, + -0.701773;9.822401;2.390000;, + -0.701773;9.984000;2.180000;, + -0.701773;9.984000;2.180000;, + -0.701773;9.984000;1.690000;, + -0.701773;9.984000;1.690000;, + -6.594306;9.104997;0.024595;, + -6.594306;9.104997;0.024595;, + -6.594306;9.104997;0.024595;, + -6.561830;9.228369;-0.117754;, + -6.561830;9.228369;-0.117754;, + -6.561830;9.228369;-0.117754;, + -6.561830;9.093629;-0.249652;, + -6.561830;9.093629;-0.249652;, + -6.561830;9.093629;-0.249652;, + -6.561830;9.235703;-0.119092;, + -6.561830;9.235703;-0.119092;, + -6.561830;9.235703;-0.119092;, + -6.561830;9.385450;-0.133884;, + -6.561830;9.385450;-0.133884;, + -6.561830;9.385450;-0.133884;, + -6.561830;9.364082;-0.284082;, + -6.561830;9.364082;-0.284082;, + -6.561830;9.364082;-0.284082;, + -6.561830;9.094540;-0.257456;, + -6.561830;9.094540;-0.257456;, + -6.561830;9.094540;-0.257456;, + -6.561830;9.404812;-0.108547;, + -6.561830;9.404812;-0.108547;, + -6.561830;9.404812;-0.108547;, + -6.561830;9.551003;-0.018219;, + -6.561830;9.551003;-0.018219;, + -6.561830;9.679543;-0.094811;, + -6.561830;9.679543;-0.094811;, + -6.561830;9.679543;-0.094811;, + -6.561830;9.377419;-0.281490;, + -6.561830;9.377419;-0.281490;, + -6.561830;9.377419;-0.281490;, + -6.756689;9.104997;0.024595;, + -6.756689;9.104997;0.024595;, + -6.756689;9.104997;0.024595;, + -6.789165;9.228369;-0.117754;, + -6.789165;9.228369;-0.117754;, + -6.789165;9.228369;-0.117754;, + -6.789165;9.093629;-0.249652;, + -6.789165;9.093629;-0.249652;, + -6.789165;9.093629;-0.249652;, + -6.740450;9.016507;0.046151;, + -6.740450;9.016507;0.046151;, + -6.740450;9.016507;0.046151;, + -6.610544;9.016507;0.046151;, + -6.610544;9.016507;0.046151;, + -6.610544;9.016507;0.046151;, + -6.789165;9.235703;-0.119092;, + -6.789165;9.235703;-0.119092;, + -6.789165;9.235703;-0.119092;, + -6.789165;9.385450;-0.133884;, + -6.789165;9.385450;-0.133884;, + -6.789165;9.385450;-0.133884;, + -6.789165;9.364082;-0.284082;, + -6.789165;9.364082;-0.284082;, + -6.789165;9.364082;-0.284082;, + -6.789165;9.094540;-0.257456;, + -6.789165;9.094540;-0.257456;, + -6.789165;9.094540;-0.257456;, + -6.789165;9.404812;-0.108547;, + -6.789165;9.404812;-0.108547;, + -6.789165;9.404812;-0.108547;, + -6.789165;9.551003;-0.018219;, + -6.789165;9.551003;-0.018219;, + -6.789165;9.679543;-0.094811;, + -6.789165;9.679543;-0.094811;, + -6.789165;9.679543;-0.094811;, + -6.789165;9.377419;-0.281490;, + -6.789165;9.377419;-0.281490;, + -6.789165;9.377419;-0.281490;, + -6.728245;9.275375;0.120996;, + -6.728245;9.275375;0.120996;, + -6.728245;9.275375;0.120996;, + -6.900592;9.282207;0.093882;, + -6.900592;9.282207;0.093882;, + -6.900592;9.282207;0.093882;, + -6.927647;9.112520;0.093882;, + -6.927647;9.112520;0.093882;, + -6.927647;9.112520;0.093882;, + -6.905502;9.286638;0.093882;, + -6.905502;9.286638;0.093882;, + -6.905502;9.286638;0.093882;, + -6.996336;9.384120;0.093882;, + -6.996336;9.384120;0.093882;, + -6.996336;9.384120;0.093882;, + -7.097478;9.284227;0.093882;, + -7.097478;9.284227;0.093882;, + -7.097478;9.284227;0.093882;, + -6.933978;9.108757;0.093882;, + -6.933978;9.108757;0.093882;, + -6.933978;9.108757;0.093882;, + -6.987667;9.412109;0.093882;, + -6.987667;9.412109;0.093882;, + -6.987667;9.412109;0.093882;, + -6.997853;9.566422;0.093882;, + -6.997853;9.566422;0.093882;, + -7.123692;9.614031;0.093882;, + -7.123692;9.614031;0.093882;, + -7.123692;9.614031;0.093882;, + -7.102638;9.295116;0.093882;, + -7.102638;9.295116;0.093882;, + -7.102638;9.295116;0.093882;, + -6.728245;9.275375;0.256563;, + -6.728245;9.275375;0.256563;, + -6.728245;9.275375;0.256563;, + -6.900592;9.282207;0.283676;, + -6.900592;9.282207;0.283676;, + -6.900592;9.282207;0.283676;, + -6.927647;9.112520;0.283676;, + -6.927647;9.112520;0.283676;, + -6.927647;9.112520;0.283676;, + -6.664969;9.225002;0.243006;, + -6.664969;9.225002;0.243006;, + -6.664969;9.225002;0.243006;, + -6.664969;9.225002;0.134552;, + -6.664969;9.225002;0.134552;, + -6.664969;9.225002;0.134552;, + -6.905502;9.286638;0.283676;, + -6.905502;9.286638;0.283676;, + -6.905502;9.286638;0.283676;, + -6.996336;9.384120;0.283676;, + -6.996336;9.384120;0.283676;, + -6.996336;9.384120;0.283676;, + -7.097478;9.284227;0.283676;, + -7.097478;9.284227;0.283676;, + -7.097478;9.284227;0.283676;, + -6.933978;9.108757;0.283676;, + -6.933978;9.108757;0.283676;, + -6.933978;9.108757;0.283676;, + -6.987667;9.412109;0.283676;, + -6.987667;9.412109;0.283676;, + -6.987667;9.412109;0.283676;, + -6.997853;9.566422;0.283676;, + -6.997853;9.566422;0.283676;, + -7.123692;9.614031;0.283676;, + -7.123692;9.614031;0.283676;, + -7.123692;9.614031;0.283676;, + -7.102638;9.295116;0.283676;, + -7.102638;9.295116;0.283676;, + -7.102638;9.295116;0.283676;, + -6.751895;9.313591;0.331667;, + -6.751895;9.313591;0.331667;, + -6.751895;9.313591;0.331667;, + -6.912178;9.319603;0.304554;, + -6.912178;9.319603;0.304554;, + -6.912178;9.319603;0.304554;, + -6.937339;9.170279;0.304554;, + -6.937339;9.170279;0.304554;, + -6.937339;9.170279;0.304554;, + -6.916745;9.323501;0.304554;, + -6.916745;9.323501;0.304554;, + -6.916745;9.323501;0.304554;, + -7.001220;9.409288;0.304554;, + -7.001220;9.409288;0.304554;, + -7.001220;9.409288;0.304554;, + -7.095283;9.321381;0.304554;, + -7.095283;9.321381;0.304554;, + -7.095283;9.321381;0.304554;, + -6.943227;9.166967;0.304554;, + -6.943227;9.166967;0.304554;, + -6.943227;9.166967;0.304554;, + -6.993157;9.433917;0.304554;, + -6.993157;9.433917;0.304554;, + -6.993157;9.433917;0.304554;, + -7.002631;9.569713;0.304554;, + -7.002631;9.569713;0.304554;, + -7.119660;9.611607;0.304554;, + -7.119660;9.611607;0.304554;, + -7.119660;9.611607;0.304554;, + -7.100082;9.330963;0.304554;, + -7.100082;9.330963;0.304554;, + -7.100082;9.330963;0.304554;, + -6.751895;9.313591;0.467235;, + -6.751895;9.313591;0.467235;, + -6.751895;9.313591;0.467235;, + -6.912178;9.319603;0.494348;, + -6.912178;9.319603;0.494348;, + -6.912178;9.319603;0.494348;, + -6.937339;9.170279;0.494348;, + -6.937339;9.170279;0.494348;, + -6.937339;9.170279;0.494348;, + -6.693048;9.269262;0.453678;, + -6.693048;9.269262;0.453678;, + -6.693048;9.269262;0.453678;, + -6.693048;9.269262;0.345224;, + -6.693048;9.269262;0.345224;, + -6.693048;9.269262;0.345224;, + -6.916745;9.323501;0.494348;, + -6.916745;9.323501;0.494348;, + -6.916745;9.323501;0.494348;, + -7.001220;9.409288;0.494348;, + -7.001220;9.409288;0.494348;, + -7.001220;9.409288;0.494348;, + -7.095283;9.321381;0.494348;, + -7.095283;9.321381;0.494348;, + -7.095283;9.321381;0.494348;, + -6.943227;9.166967;0.494348;, + -6.943227;9.166967;0.494348;, + -6.943227;9.166967;0.494348;, + -6.993157;9.433917;0.494348;, + -6.993157;9.433917;0.494348;, + -6.993157;9.433917;0.494348;, + -7.002631;9.569713;0.494348;, + -7.002631;9.569713;0.494348;, + -7.119660;9.611607;0.494348;, + -7.119660;9.611607;0.494348;, + -7.119660;9.611607;0.494348;, + -7.100082;9.330963;0.494348;, + -7.100082;9.330963;0.494348;, + -7.100082;9.330963;0.494348;, + -6.728245;9.275375;-0.089676;, + -6.728245;9.275375;-0.089676;, + -6.728245;9.275375;-0.089676;, + -6.900592;9.282207;-0.116790;, + -6.900592;9.282207;-0.116790;, + -6.900592;9.282207;-0.116790;, + -6.927647;9.112520;-0.116790;, + -6.927647;9.112520;-0.116790;, + -6.927647;9.112520;-0.116790;, + -6.905502;9.286638;-0.116790;, + -6.905502;9.286638;-0.116790;, + -6.905502;9.286638;-0.116790;, + -6.996336;9.384120;-0.116790;, + -6.996336;9.384120;-0.116790;, + -6.996336;9.384120;-0.116790;, + -7.097478;9.284227;-0.116790;, + -7.097478;9.284227;-0.116790;, + -7.097478;9.284227;-0.116790;, + -6.933978;9.108757;-0.116790;, + -6.933978;9.108757;-0.116790;, + -6.933978;9.108757;-0.116790;, + -6.987667;9.412109;-0.116790;, + -6.987667;9.412109;-0.116790;, + -6.987667;9.412109;-0.116790;, + -6.997853;9.566422;-0.116790;, + -6.997853;9.566422;-0.116790;, + -7.123692;9.614031;-0.116790;, + -7.123692;9.614031;-0.116790;, + -7.123692;9.614031;-0.116790;, + -7.102638;9.295116;-0.116790;, + -7.102638;9.295116;-0.116790;, + -7.102638;9.295116;-0.116790;, + -6.728245;9.275375;0.045891;, + -6.728245;9.275375;0.045891;, + -6.728245;9.275375;0.045891;, + -6.900592;9.282207;0.073004;, + -6.900592;9.282207;0.073004;, + -6.900592;9.282207;0.073004;, + -6.927647;9.112520;0.073004;, + -6.927647;9.112520;0.073004;, + -6.927647;9.112520;0.073004;, + -6.664969;9.225002;0.032334;, + -6.664969;9.225002;0.032334;, + -6.664969;9.225002;0.032334;, + -6.664969;9.225002;-0.076120;, + -6.664969;9.225002;-0.076120;, + -6.664969;9.225002;-0.076120;, + -6.905502;9.286638;0.073004;, + -6.905502;9.286638;0.073004;, + -6.905502;9.286638;0.073004;, + -6.996336;9.384120;0.073004;, + -6.996336;9.384120;0.073004;, + -6.996336;9.384120;0.073004;, + -7.097478;9.284227;0.073004;, + -7.097478;9.284227;0.073004;, + -7.097478;9.284227;0.073004;, + -6.933978;9.108757;0.073004;, + -6.933978;9.108757;0.073004;, + -6.933978;9.108757;0.073004;, + -6.987667;9.412109;0.073004;, + -6.987667;9.412109;0.073004;, + -6.987667;9.412109;0.073004;, + -6.997853;9.566422;0.073004;, + -6.997853;9.566422;0.073004;, + -7.123692;9.614031;0.073004;, + -7.123692;9.614031;0.073004;, + -7.123692;9.614031;0.073004;, + -7.102638;9.295116;0.073004;, + -7.102638;9.295116;0.073004;, + -7.102638;9.295116;0.073004;, + -1.567670;5.483616;0.004405;, + -1.567670;5.483616;0.004405;, + -1.567670;5.404343;-0.032080;, + -1.567670;5.325069;0.004405;, + -1.567670;5.325069;0.004405;, + -1.567670;5.292233;0.092487;, + -0.832316;5.483616;0.004405;, + -0.832316;5.483616;0.004405;, + -0.832316;5.404343;-0.032080;, + -0.832316;5.325069;0.004405;, + -0.832316;5.325069;0.004405;, + -0.832316;5.292233;0.092487;, + -0.096963;5.483616;0.004405;, + -0.096963;5.483616;0.004405;, + -0.096963;5.404343;-0.032080;, + -0.096963;5.325069;0.004405;, + -0.096963;5.325069;0.004405;, + -0.096963;5.292233;0.092487;, + -1.567670;5.516453;0.092487;, + -0.832316;5.516453;0.092487;, + -0.096963;5.516453;0.092487;, + -1.567670;5.483616;0.180569;, + -1.567670;5.483616;0.180569;, + -1.567670;5.404343;0.217054;, + -1.567670;5.325069;0.180569;, + -1.567670;5.325069;0.180569;, + -0.832316;5.404343;0.217054;, + -0.832316;5.483616;0.180569;, + -0.832316;5.483616;0.180569;, + -0.832316;5.325069;0.180569;, + -0.832316;5.325069;0.180569;, + -0.096963;5.483616;0.180569;, + -0.096963;5.483616;0.180569;, + -0.096963;5.404343;0.217054;, + -0.096963;5.325069;0.180569;, + -0.096963;5.325069;0.180569;, + -1.567670;6.178721;-0.218650;, + -1.567670;6.178721;-0.218650;, + -1.567670;5.914475;-0.340266;, + -1.567670;5.650230;-0.218650;, + -1.567670;5.650230;-0.218650;, + -1.567670;5.540776;0.074957;, + -0.832316;6.178721;-0.218650;, + -0.832316;6.178721;-0.218650;, + -0.832316;5.914475;-0.340266;, + -0.832316;5.650230;-0.218650;, + -0.832316;5.650230;-0.218650;, + -0.832316;5.540776;0.074957;, + -0.096963;6.178721;-0.218650;, + -0.096963;6.178721;-0.218650;, + -0.096963;5.914475;-0.340266;, + -0.096963;5.650230;-0.218650;, + -0.096963;5.650230;-0.218650;, + -0.096963;5.540776;0.074957;, + -1.567670;6.288176;0.074957;, + -0.832316;6.288176;0.074957;, + -0.096963;6.288176;0.074957;, + -1.567670;6.178721;0.368563;, + -1.567670;6.178721;0.368563;, + -1.567670;5.914475;0.490179;, + -1.567670;5.650230;0.368563;, + -1.567670;5.650230;0.368563;, + -0.832316;5.914475;0.490179;, + -0.832316;6.178721;0.368563;, + -0.832316;6.178721;0.368563;, + -0.832316;5.650230;0.368563;, + -0.832316;5.650230;0.368563;, + -0.096963;6.178721;0.368563;, + -0.096963;6.178721;0.368563;, + -0.096963;5.914475;0.490179;, + -0.096963;5.650230;0.368563;, + -0.096963;5.650230;0.368563;, + -3.694536;9.277638;0.149999;, + -3.694536;9.277638;0.149999;, + -3.694536;9.650759;0.149999;, + -3.694536;9.650759;0.149999;, + -4.152457;9.650759;0.149999;, + -4.152457;9.650759;0.149999;, + -4.152457;9.277638;0.149999;, + -4.152457;9.277638;0.149999;, + -4.332345;9.277638;0.662131;, + -4.332345;9.277638;0.662131;, + -4.332345;9.277638;0.662131;, + -4.332345;9.650759;0.662131;, + -4.332345;9.650759;0.662131;, + -4.332345;9.650759;0.662131;, + -4.406857;9.650759;0.449999;, + -4.406857;9.650759;0.449999;, + -4.406857;9.277638;0.449999;, + -4.406857;9.277638;0.449999;, + -4.332345;9.277638;0.237867;, + -4.332345;9.277638;0.237867;, + -4.332345;9.277638;0.237867;, + -4.332345;9.650759;0.237867;, + -4.332345;9.650759;0.237867;, + -4.332345;9.650759;0.237867;, + -3.514649;9.277638;0.662131;, + -3.514649;9.277638;0.662131;, + -3.514649;9.277638;0.662131;, + -3.440137;9.277638;0.449999;, + -3.440137;9.277638;0.449999;, + -3.440137;9.650759;0.449999;, + -3.440137;9.650759;0.449999;, + -3.514649;9.650759;0.662131;, + -3.514649;9.650759;0.662131;, + -3.514649;9.650759;0.662131;, + -3.514649;9.277638;0.237867;, + -3.514649;9.277638;0.237867;, + -3.514649;9.277638;0.237867;, + -3.514649;9.650759;0.237867;, + -3.514649;9.650759;0.237867;, + -3.514649;9.650759;0.237867;, + -3.694537;9.650759;0.749999;, + -3.694537;9.650759;0.749999;, + -3.694537;9.277638;0.749999;, + -3.694537;9.277638;0.749999;, + -4.152457;9.277638;0.749999;, + -4.152457;9.277638;0.749999;, + -4.152457;9.650759;0.749999;, + -4.152457;9.650759;0.749999;, + -3.348027;9.908371;-0.050170;, + -3.460232;9.972371;0.029085;, + -3.460232;9.972371;0.029085;, + -3.460232;9.972371;0.029085;, + -3.349367;10.036371;0.029811;, + -3.349367;10.036371;0.029811;, + -3.349367;10.036371;0.029811;, + -3.460232;9.844371;0.029085;, + -3.460232;9.844371;0.029085;, + -3.460232;9.844371;0.029085;, + -3.349367;9.780371;0.029811;, + -3.349367;9.780371;0.029811;, + -3.349367;9.780371;0.029811;, + -3.238502;9.844371;0.030537;, + -3.238502;9.844371;0.030537;, + -3.238502;9.844371;0.030537;, + -3.238502;9.972371;0.030537;, + -3.238502;9.972371;0.030537;, + -3.238502;9.972371;0.030537;, + -3.363439;10.036371;0.869615;, + -3.363439;10.036371;0.869615;, + -3.363439;10.036371;0.869615;, + -3.474304;9.972371;0.868889;, + -3.474304;9.972371;0.868889;, + -3.474304;9.972371;0.868889;, + -3.474304;9.844371;0.868889;, + -3.474304;9.844371;0.868889;, + -3.474304;9.844371;0.868889;, + -3.363439;9.780371;0.869615;, + -3.363439;9.780371;0.869615;, + -3.363439;9.780371;0.869615;, + -3.252574;9.844371;0.870341;, + -3.252574;9.844371;0.870341;, + -3.252574;9.844371;0.870341;, + -3.252574;9.972371;0.870341;, + -3.252574;9.972371;0.870341;, + -3.252574;9.972371;0.870341;, + -3.364779;9.908371;0.949597;, + -4.548027;9.908371;-0.030170;, + -4.660232;9.972371;0.049085;, + -4.660232;9.972371;0.049085;, + -4.660232;9.972371;0.049085;, + -4.549367;10.036371;0.049811;, + -4.549367;10.036371;0.049811;, + -4.549367;10.036371;0.049811;, + -4.660232;9.844371;0.049085;, + -4.660232;9.844371;0.049085;, + -4.660232;9.844371;0.049085;, + -4.549367;9.780371;0.049811;, + -4.549367;9.780371;0.049811;, + -4.549367;9.780371;0.049811;, + -4.438502;9.844371;0.050537;, + -4.438502;9.844371;0.050537;, + -4.438502;9.844371;0.050537;, + -4.438502;9.972371;0.050537;, + -4.438502;9.972371;0.050537;, + -4.438502;9.972371;0.050537;, + -4.563439;10.036371;0.889615;, + -4.563439;10.036371;0.889615;, + -4.563439;10.036371;0.889615;, + -4.674304;9.972371;0.888889;, + -4.674304;9.972371;0.888889;, + -4.674304;9.972371;0.888889;, + -4.674304;9.844371;0.888889;, + -4.674304;9.844371;0.888889;, + -4.674304;9.844371;0.888889;, + -4.563439;9.780371;0.889615;, + -4.563439;9.780371;0.889615;, + -4.563439;9.780371;0.889615;, + -4.452574;9.844371;0.890341;, + -4.452574;9.844371;0.890341;, + -4.452574;9.844371;0.890341;, + -4.452574;9.972371;0.890341;, + -4.452574;9.972371;0.890341;, + -4.452574;9.972371;0.890341;, + -4.564779;9.908371;0.969597;, + 1.157854;10.366903;1.400000;, + 1.157854;10.366903;-0.100000;, + 1.157854;8.063718;-0.200000;, + 1.157854;8.063718;1.400000;, + 0.753840;8.634896;-0.380000;, + 0.753840;8.634896;-1.450000;, + 0.540000;6.512889;-1.250000;, + 0.540000;5.747889;-1.250000;, + 0.320198;10.985079;1.340562;, + 0.783621;9.564607;-0.920000;, + 0.783621;10.114978;1.320000;, + 1.650000;0.372590;-1.341000;, + 1.650000;0.012590;-1.341000;, + 1.054643;0.540345;-0.085888;, + 1.088500;6.391939;-0.509769;, + 1.586200;4.409444;-1.192000;, + 1.586200;4.409444;-0.991000;, + 1.586200;4.409444;-0.690000;, + 1.120000;2.735444;0.089000;, + 0.580000;2.735444;0.089000;, + 1.235402;0.607264;0.837000;, + 1.354000;0.372590;-1.341000;, + 1.354000;0.012590;-1.341000;, + 1.354000;0.552590;-0.191000;, + 1.354000;1.092590;-1.341000;, + 1.120000;2.285444;0.209000;, + 2.198000;-0.032410;-2.691000;, + 2.198000;-0.032410;-2.691000;, + 2.198000;0.057590;-2.841000;, + 2.198000;0.057590;-2.841000;, + 2.198000;0.057590;-2.841000;, + 1.650000;-0.032410;-2.691000;, + 1.650000;0.057590;-2.841000;, + 1.650000;0.057590;-2.841000;, + 1.102000;-0.032410;-2.691000;, + 1.102000;-0.032410;-2.691000;, + 1.102000;0.057590;-2.841000;, + 1.102000;0.057590;-2.841000;, + 1.102000;0.057590;-2.841000;, + 0.297220;5.130789;-2.375762;, + 0.297220;5.130789;-2.375762;, + 0.355000;5.248089;-2.490761;, + 0.355000;5.248089;-2.490761;, + 0.243220;4.404039;-2.145761;, + 0.243220;4.404039;-2.145761;, + 0.243220;4.404039;-2.145761;, + 0.355000;6.604689;-2.188261;, + 0.355000;6.604689;-2.188261;, + 0.355000;6.604689;-2.188261;, + 0.355000;6.604689;-2.188261;, + 0.355000;6.533288;-2.185761;, + 0.355000;6.533288;-2.185761;, + 0.355000;6.533288;-2.185761;, + 0.355000;6.533288;-2.185761;, + 0.434700;8.568343;-2.243182;, + 0.434700;8.568343;-2.243182;, + 0.348300;8.592272;-2.323182;, + 0.348300;8.592272;-2.323182;, + 0.348300;8.592272;-2.323182;, + 0.621000;8.938809;-2.187204;, + 0.621000;8.938809;-2.187204;, + 0.621000;9.443933;-2.105358;, + 0.621000;9.443933;-2.105358;, + 0.434700;8.887272;-2.277475;, + 0.434700;8.887272;-2.277475;, + 0.434700;9.518987;-2.158886;, + 0.434700;9.634454;-2.098433;, + 0.434700;9.634454;-2.098433;, + 0.434700;8.796896;-2.166006;, + 0.348300;8.844754;-2.226006;, + 0.348300;8.844754;-2.226006;, + 2.090000;0.642590;-1.891000;, + 2.090000;0.642590;-1.891000;, + 2.090000;0.642590;-1.891000;, + 1.946000;0.642590;-1.891000;, + 1.946000;0.642590;-1.891000;, + 2.198000;-0.032410;-1.921000;, + 2.198000;-0.032410;-1.921000;, + 2.198000;0.597590;-1.921000;, + 2.198000;0.597590;-1.921000;, + 1.650000;0.642590;-1.891000;, + 1.650000;0.642590;-1.891000;, + 1.650000;-0.032410;-1.921000;, + 1.650000;0.597590;-1.921000;, + 1.210000;0.642590;-1.891000;, + 1.210000;0.642590;-1.891000;, + 1.210000;0.642590;-1.891000;, + 1.354000;0.642590;-1.891000;, + 1.354000;0.642590;-1.891000;, + 1.102000;-0.032410;-1.921000;, + 1.102000;-0.032410;-1.921000;, + 1.102000;0.597590;-1.921000;, + 1.102000;0.597590;-1.921000;, + 2.211500;5.076511;-1.462134;, + 2.211500;5.076511;-1.462134;, + 2.211500;5.076511;-1.462134;, + 1.650000;5.076511;-1.462134;, + 1.650000;5.076511;-1.462134;, + 1.088500;5.076511;-1.462134;, + 1.088500;5.076511;-1.462134;, + 1.088500;5.076511;-1.462134;, + 0.455220;5.130789;-1.383261;, + 0.455220;5.130789;-1.383261;, + 0.455220;5.130789;-1.383261;, + 0.455220;5.130789;-1.383261;, + 0.401220;4.404039;-1.383261;, + 0.401220;4.404039;-1.383261;, + 0.401220;4.404039;-1.383261;, + 0.540000;5.747889;-1.600000;, + 0.540000;5.747889;-1.600000;, + 0.864000;5.747889;-1.600000;, + 0.864000;5.747889;-1.600000;, + 0.864000;5.747889;-1.600000;, + 0.270000;4.472888;-1.360000;, + 0.270000;4.472888;-1.360000;, + 0.270000;5.747889;-1.600000;, + 0.270000;5.747889;-1.600000;, + 0.270000;5.747889;-1.600000;, + 0.344000;4.439500;-1.365000;, + 0.344000;4.439500;-1.365000;, + 0.434000;5.122600;-1.365000;, + 0.434000;5.122600;-1.365000;, + 0.442800;7.096839;-1.498261;, + 0.442800;7.096839;-1.498261;, + 0.442800;7.096839;-1.498261;, + 0.246460;6.979538;-2.088261;, + 0.246460;6.979538;-2.088261;, + 0.246460;6.979538;-2.088261;, + 0.864000;6.512889;-1.600000;, + 0.864000;6.512889;-1.600000;, + 0.864000;6.512889;-1.600000;, + 0.540000;6.512889;-1.600000;, + 0.540000;6.512889;-1.600000;, + 1.217160;8.469534;-1.810000;, + 1.217160;8.469534;-1.810000;, + 1.490400;8.469534;-1.586000;, + 1.490400;8.469534;-1.586000;, + 1.490400;8.469534;-1.586000;, + 1.490400;8.469534;-1.586000;, + 1.490400;8.469534;-1.746000;, + 1.490400;8.469534;-1.746000;, + 1.490400;8.469534;-1.746000;, + 1.304100;8.397746;-1.570000;, + 1.304100;8.397746;-1.570000;, + 1.304100;8.397746;-1.730000;, + 1.304100;8.397746;-1.730000;, + 1.304100;8.397746;-1.730000;, + 1.403460;8.547303;-1.830000;, + 0.360180;8.335782;-1.400000;, + 0.360180;8.335782;-1.400000;, + 0.621000;8.497011;-1.571497;, + 0.621000;8.497011;-1.571497;, + 0.621000;8.497011;-1.571497;, + 0.434700;8.321987;-1.506799;, + 0.434700;8.321987;-1.506799;, + 0.434700;8.321987;-1.506799;, + 0.434700;8.210368;-1.631449;, + 0.434700;7.903518;-1.723446;, + 0.434700;7.903518;-1.723446;, + 0.434700;8.703467;-2.074645;, + 0.348300;7.831731;-1.743446;, + 0.348300;7.831731;-1.743446;, + 0.348300;7.831731;-1.743446;, + 0.348300;7.831731;-1.743446;, + 0.720360;8.469534;-1.810000;, + 0.720360;8.469534;-1.810000;, + 0.621000;8.397746;-1.570000;, + 0.621000;8.397746;-1.570000;, + 0.621000;8.397746;-1.570000;, + 0.621000;8.397746;-1.730000;, + 0.621000;8.397746;-1.730000;, + 0.621000;8.397746;-1.730000;, + 0.621000;8.397746;-1.730000;, + 1.217160;9.041694;-2.060000;, + 1.490400;9.095534;-1.850000;, + 1.490400;9.095534;-1.850000;, + 1.490400;9.095534;-1.850000;, + 1.490400;9.095534;-1.850000;, + 1.490400;9.041694;-1.990000;, + 1.490400;9.041694;-1.990000;, + 1.304100;9.191251;-1.870000;, + 1.304100;9.191251;-1.870000;, + 1.304100;9.137410;-2.010000;, + 1.304100;9.137410;-2.010000;, + 1.403460;8.945976;-2.040000;, + 0.621000;9.099913;-1.933061;, + 0.621000;9.563389;-2.052839;, + 0.621000;9.563389;-2.052839;, + 0.621000;9.370822;-1.468720;, + 0.621000;9.720506;-1.617303;, + 0.621000;9.794942;-1.642888;, + 0.621000;9.794942;-1.642888;, + 0.434700;9.875455;-1.670560;, + 0.434700;8.921729;-1.855520;, + 0.348300;8.993517;-1.835520;, + 0.720360;9.041694;-2.060000;, + 0.621000;9.191251;-1.870000;, + 0.621000;9.191251;-1.870000;, + 0.621000;9.191251;-1.870000;, + 0.621000;9.137410;-2.010000;, + 0.621000;9.137410;-2.010000;, + 0.621000;9.137410;-2.010000;, + 0.621000;9.137410;-2.010000;, + 2.090000;0.372590;-1.341000;, + 2.090000;0.372590;-1.341000;, + 2.090000;1.092590;-1.341000;, + 2.090000;1.092590;-1.341000;, + 1.946000;0.372590;-1.341000;, + 2.090000;0.012590;-1.341000;, + 2.090000;0.012590;-1.341000;, + 1.946000;0.012590;-1.341000;, + 1.946000;1.092590;-1.341000;, + 2.198000;-0.032410;-0.991000;, + 2.198000;-0.032410;-0.991000;, + 2.198000;-0.032410;-0.991000;, + 2.198000;0.597590;-0.991000;, + 2.198000;0.597590;-0.991000;, + 2.198000;0.597590;-0.991000;, + 2.225000;0.870444;-1.191000;, + 2.225000;0.870444;-1.191000;, + 2.225000;0.870444;-1.191000;, + 1.650000;1.092590;-1.341000;, + 1.650000;-0.032410;-0.991000;, + 1.650000;-0.032410;-0.991000;, + 1.650000;0.597590;-0.991000;, + 1.650000;0.597590;-0.991000;, + 1.650000;0.870444;-1.191000;, + 1.650000;0.870444;-1.191000;, + 1.210000;0.372590;-1.341000;, + 1.210000;0.372590;-1.341000;, + 1.210000;1.092590;-1.341000;, + 1.210000;1.092590;-1.341000;, + 1.210000;0.012590;-1.341000;, + 1.210000;0.012590;-1.341000;, + 1.102000;-0.032410;-0.991000;, + 1.102000;-0.032410;-0.991000;, + 1.102000;-0.032410;-0.991000;, + 1.102000;0.597590;-0.991000;, + 1.102000;0.597590;-0.991000;, + 1.102000;0.597590;-0.991000;, + 1.075000;0.870444;-1.191000;, + 1.075000;0.870444;-1.191000;, + 1.075000;0.870444;-1.191000;, + 2.139500;2.834444;-1.291000;, + 2.139500;2.834444;-1.291000;, + 2.139500;2.519444;-0.991000;, + 2.139500;2.519444;-0.991000;, + 2.139500;2.519444;-0.991000;, + 2.630000;2.735444;-0.831000;, + 2.630000;2.735444;-0.831000;, + 2.630000;2.735444;-0.831000;, + 2.180000;2.735444;-0.831000;, + 2.180000;2.735444;-0.831000;, + 2.180000;2.735444;-0.831000;, + 1.650000;2.834444;-1.291000;, + 1.650000;2.519444;-0.991000;, + 1.650000;2.519444;-0.991000;, + 1.160500;2.834444;-1.291000;, + 1.160500;2.834444;-1.291000;, + 1.160500;2.519444;-0.991000;, + 1.160500;2.519444;-0.991000;, + 1.160500;2.519444;-0.991000;, + 1.120000;2.735444;-0.831000;, + 1.120000;2.735444;-0.831000;, + 1.120000;2.735444;-0.831000;, + 0.670000;2.735444;-0.831000;, + 0.670000;2.735444;-0.831000;, + 0.670000;2.735444;-0.831000;, + 2.139500;4.319444;-1.291000;, + 2.139500;4.319444;-1.291000;, + 2.139500;4.319444;-1.291000;, + 2.139500;4.319444;-1.291000;, + 2.139500;4.319444;-0.991000;, + 2.139500;4.319444;-0.991000;, + 2.630000;4.040444;-0.831000;, + 2.630000;4.040444;-0.831000;, + 2.630000;4.040444;-0.831000;, + 2.180000;4.040444;-0.831000;, + 2.180000;4.040444;-0.831000;, + 2.180000;4.040444;-0.831000;, + 1.961750;3.663552;-0.683854;, + 1.961750;3.663552;-0.683854;, + 1.961750;4.011917;-0.683854;, + 1.961750;4.011917;-0.683854;, + 1.650000;4.319444;-1.291000;, + 1.650000;4.319444;-1.291000;, + 1.650000;4.319444;-0.991000;, + 1.650000;4.319444;-0.991000;, + 1.650000;4.011917;-0.683854;, + 1.650000;4.011917;-0.683854;, + 1.650000;3.663552;-0.683854;, + 1.650000;3.663552;-0.683854;, + 1.160500;4.319444;-1.291000;, + 1.160500;4.319444;-1.291000;, + 1.160500;4.319444;-1.291000;, + 1.160500;4.319444;-1.291000;, + 1.160500;4.319444;-0.991000;, + 1.160500;4.319444;-0.991000;, + 1.120000;4.040444;-0.831000;, + 1.120000;4.040444;-0.831000;, + 1.120000;4.040444;-0.831000;, + 1.338250;3.663552;-0.683854;, + 1.338250;3.663552;-0.683854;, + 1.338250;4.011917;-0.683854;, + 1.338250;4.011917;-0.683854;, + 0.670000;4.040444;-0.831000;, + 0.670000;4.040444;-0.831000;, + 0.670000;4.040444;-0.831000;, + 2.211500;4.896544;-1.134769;, + 2.211500;4.896544;-1.134769;, + 2.211500;4.896544;-1.134769;, + 2.183926;5.309234;-0.707269;, + 2.183926;5.309234;-0.707269;, + 2.070200;4.409444;-1.192000;, + 2.070200;4.409444;-1.192000;, + 2.070200;4.409444;-0.991000;, + 2.070200;4.409444;-0.991000;, + 2.070200;4.409444;-0.690000;, + 2.070200;4.409444;-0.690000;, + 1.650000;4.898689;-1.134137;, + 1.650000;4.898689;-1.134137;, + 1.108550;5.309234;-0.707269;, + 1.108550;5.309234;-0.707269;, + 1.713800;4.409444;-1.192000;, + 1.713800;4.409444;-0.991000;, + 1.713800;4.409444;-0.690000;, + 1.088500;4.896544;-1.134769;, + 1.088500;4.896544;-1.134769;, + 1.088500;4.896544;-1.134769;, + 1.229800;4.409444;-1.192000;, + 1.229800;4.409444;-1.192000;, + 1.229800;4.409444;-0.991000;, + 1.229800;4.409444;-0.991000;, + 1.229800;4.409444;-0.690000;, + 1.229800;4.409444;-0.690000;, + 0.567000;5.248089;-1.268261;, + 0.567000;5.248089;-1.268261;, + 0.567000;5.248089;-1.268261;, + 0.567000;5.248089;-1.268261;, + 0.864000;5.747889;-1.250000;, + 0.864000;5.747889;-1.250000;, + 0.864000;5.747889;-1.200000;, + 0.864000;5.747889;-1.200000;, + 0.864000;5.747889;-1.200000;, + 0.270000;5.747889;-1.200000;, + 0.270000;5.747889;-1.200000;, + 0.270000;5.747889;-1.200000;, + 0.270000;5.747889;-1.200000;, + 0.270000;4.472888;-1.200000;, + 2.211500;6.504799;-0.897269;, + 2.211500;6.504799;-0.897269;, + 2.211500;6.899809;-0.659769;, + 2.211500;6.899809;-0.659769;, + 2.211500;6.899809;-0.659769;, + 2.211500;6.270950;-1.294258;, + 2.211500;6.270950;-1.294258;, + 1.650000;6.899809;-0.659769;, + 1.650000;6.899809;-0.659769;, + 1.650000;6.504799;-0.897269;, + 1.650000;6.270950;-1.294258;, + 1.088500;6.504799;-0.897269;, + 1.088500;6.504799;-0.897269;, + 1.088500;6.899809;-0.659769;, + 1.088500;6.899809;-0.659769;, + 1.088500;6.899809;-0.659769;, + 1.088500;6.270950;-1.294258;, + 1.088500;6.270950;-1.294258;, + 0.434700;6.553689;-1.234434;, + 0.434700;6.553689;-1.234434;, + 0.434700;6.553689;-1.234434;, + 0.434700;7.226889;-0.950000;, + 0.434700;7.226889;-0.950000;, + 0.567000;6.604689;-1.268261;, + 0.567000;6.604689;-1.268261;, + 0.567000;6.604689;-1.268261;, + 0.567000;6.533288;-1.268261;, + 0.567000;6.533288;-1.268261;, + 0.567000;6.533288;-1.268261;, + 0.864000;6.512889;-1.250000;, + 0.864000;6.512889;-1.250000;, + 0.864000;6.512889;-1.200000;, + 0.864000;6.512889;-1.200000;, + 0.864000;6.512889;-1.200000;, + 0.270000;6.512889;-1.200000;, + 0.270000;6.512889;-1.200000;, + 0.270000;6.512889;-1.200000;, + 0.645840;8.299889;-1.100000;, + 0.621000;8.494646;-1.080509;, + 0.621000;8.494646;-1.080509;, + 0.434700;8.323646;-1.004743;, + 0.434700;8.323646;-1.004743;, + 0.434700;8.322903;-1.172274;, + 0.434700;8.322903;-1.172274;, + 0.434700;7.901668;-1.294773;, + 0.434700;7.901668;-1.294773;, + 0.434700;7.901668;-1.294773;, + 0.348300;7.829880;-1.234773;, + 0.348300;7.829880;-1.234773;, + 0.348300;8.346831;-1.092274;, + 0.348300;8.346831;-1.092274;, + 0.434700;9.853403;-0.652941;, + 0.434700;9.853403;-0.652941;, + 0.621000;9.772565;-0.734962;, + 0.621000;9.772565;-0.734962;, + 0.621000;9.772565;-0.734962;, + 0.434700;10.156014;-0.776952;, + 0.434700;10.156014;-0.776952;, + 0.621000;10.117581;-0.864687;, + 0.621000;10.117581;-0.864687;, + 0.621000;10.154878;-0.975241;, + 0.621000;10.154878;-0.975241;, + 0.434700;10.240253;-0.992427;, + 0.280461;11.060905;-0.923241;, + 0.280461;11.060905;-0.923241;, + 0.233382;11.060905;-1.068951;, + 0.233382;11.060905;-1.068951;, + 0.233382;11.060905;-1.068951;, + 0.233382;11.060905;-1.068951;, + 0.233382;11.029785;-1.068951;, + 0.233382;11.029785;-1.068951;, + 0.233382;11.029785;-1.068951;, + 0.233382;11.029785;-1.068951;, + 0.280461;11.029785;-0.923241;, + 0.280461;11.029785;-0.923241;, + 0.124377;11.282440;-1.066862;, + 0.124377;11.282440;-1.066862;, + 0.203526;11.356547;-0.927240;, + 0.226140;11.261694;-1.066862;, + 0.226140;11.261694;-1.066862;, + 0.226140;11.261694;-1.066862;, + 0.282675;11.325428;-0.927240;, + 0.282675;11.325428;-0.927240;, + 0.192219;10.749704;-0.927240;, + 0.124377;10.863811;-1.066862;, + 0.124377;10.863811;-1.066862;, + 0.282675;10.780824;-0.927240;, + 0.282675;10.780824;-0.927240;, + 0.226140;10.884558;-1.066862;, + 0.226140;10.884558;-1.066862;, + 0.226140;10.884558;-1.066862;, + 0.113559;11.059278;-1.023456;, + 0.113559;11.059278;-1.023456;, + 0.078358;11.232752;-1.023456;, + 0.113643;11.032139;-1.023456;, + 0.113643;11.032139;-1.023456;, + 0.158298;11.060905;-1.067771;, + 0.158298;11.060905;-1.067771;, + 0.158298;11.060905;-1.067771;, + 0.158298;11.029785;-1.067771;, + 0.158298;11.029785;-1.067771;, + 0.158298;11.029785;-1.067771;, + 0.078358;10.913136;-1.023456;, + 2.090000;0.552590;-0.191000;, + 2.090000;0.552590;-0.191000;, + 2.090000;0.777590;-0.191000;, + 2.090000;0.777590;-0.191000;, + 2.090000;0.777590;-0.191000;, + 2.090000;0.012590;-0.491000;, + 2.090000;0.012590;-0.491000;, + 2.090000;0.012590;-0.491000;, + 1.946000;0.012590;-0.491000;, + 1.946000;0.012590;-0.491000;, + 1.946000;0.552590;-0.191000;, + 1.946000;0.777590;-0.191000;, + 1.946000;0.777590;-0.191000;, + 1.650000;0.012590;-0.491000;, + 1.650000;0.012590;-0.491000;, + 1.650000;0.552590;-0.191000;, + 1.650000;0.777590;-0.191000;, + 1.650000;0.777590;-0.191000;, + 1.210000;0.552590;-0.191000;, + 1.210000;0.552590;-0.191000;, + 1.210000;0.777590;-0.191000;, + 1.210000;0.777590;-0.191000;, + 1.210000;0.777590;-0.191000;, + 1.210000;0.012590;-0.491000;, + 1.210000;0.012590;-0.491000;, + 1.210000;0.012590;-0.491000;, + 1.354000;0.012590;-0.491000;, + 1.354000;0.012590;-0.491000;, + 1.354000;0.777590;-0.191000;, + 1.354000;0.777590;-0.191000;, + 2.720000;2.735444;0.089000;, + 2.139500;2.519444;-0.591000;, + 2.139500;2.519444;-0.591000;, + 2.139500;2.519444;-0.591000;, + 2.180000;2.150444;0.089000;, + 2.180000;2.150444;0.089000;, + 2.180000;2.150444;0.089000;, + 2.630000;2.150444;0.089000;, + 2.630000;2.150444;0.089000;, + 2.630000;2.150444;0.089000;, + 2.180000;2.735444;0.089000;, + 2.180000;2.465444;-0.591000;, + 2.180000;2.465444;-0.591000;, + 1.650000;2.519444;-0.591000;, + 1.650000;2.519444;-0.591000;, + 1.650000;2.465444;-0.591000;, + 1.160500;2.519444;-0.591000;, + 1.160500;2.519444;-0.591000;, + 1.160500;2.519444;-0.591000;, + 1.120000;2.150444;0.089000;, + 1.120000;2.150444;0.089000;, + 1.120000;2.150444;0.089000;, + 1.120000;2.465444;-0.591000;, + 1.120000;2.465444;-0.591000;, + 0.670000;2.150444;0.089000;, + 0.670000;2.150444;0.089000;, + 0.670000;2.150444;0.089000;, + 2.720000;4.040444;0.089000;, + 2.720000;4.040444;0.089000;, + 2.191610;0.736228;-0.303535;, + 2.191610;0.736228;-0.303535;, + 2.191610;0.736228;-0.303535;, + 2.191610;0.540345;-0.393688;, + 2.191610;0.540345;-0.393688;, + 2.191610;0.344462;-0.303535;, + 2.191610;0.344462;-0.303535;, + 2.191610;0.344462;-0.303535;, + 2.191610;0.263325;-0.085888;, + 2.191610;0.263325;-0.085888;, + 2.238357;0.540345;-0.085888;, + 2.041625;4.121234;-0.469769;, + 2.041625;4.121234;-0.469769;, + 2.041625;4.121234;-0.469769;, + 2.139500;4.319444;-0.591000;, + 2.139500;4.319444;-0.591000;, + 2.139500;4.319444;-0.591000;, + 2.139500;4.319444;-0.591000;, + 2.180000;4.040444;0.089000;, + 2.180000;4.040444;0.089000;, + 2.180000;3.545444;-0.591000;, + 2.180000;3.545444;-0.591000;, + 2.180000;3.545444;-0.591000;, + 1.961750;4.067234;0.059254;, + 1.961750;4.067234;0.059254;, + 1.961750;4.067234;0.059254;, + 1.961750;4.067234;-0.583346;, + 1.961750;4.067234;-0.583346;, + 1.961750;4.067234;-0.583346;, + 1.961750;3.608234;0.059254;, + 1.961750;3.608234;0.059254;, + 1.961750;3.608234;0.059254;, + 1.961750;3.034714;0.059254;, + 1.961750;3.034714;0.059254;, + 1.961750;3.608234;-0.583346;, + 1.961750;3.608234;-0.583346;, + 1.961750;3.608234;-0.583346;, + 1.961750;3.202694;-0.395133;, + 1.961750;3.202694;-0.395133;, + 1.961750;3.202694;-0.395133;, + 2.096750;3.654134;-0.583346;, + 2.096750;3.654134;-0.583346;, + 2.096750;3.654134;-0.583346;, + 2.096750;3.654134;0.059254;, + 2.096750;3.654134;0.059254;, + 2.096750;3.654134;0.059254;, + 2.096750;4.021334;0.059254;, + 2.096750;4.021334;0.059254;, + 2.096750;4.021334;0.059254;, + 2.096750;4.021334;-0.583346;, + 2.096750;4.021334;-0.583346;, + 2.096750;4.021334;-0.583346;, + 1.646500;0.736228;-0.303535;, + 1.646500;0.736228;-0.303535;, + 1.646500;0.540345;-0.393688;, + 1.646500;0.344462;-0.303535;, + 1.646500;0.344462;-0.303535;, + 1.646500;0.263325;-0.085888;, + 1.208000;4.121234;-0.469769;, + 1.208000;4.121234;-0.469769;, + 1.208000;4.121234;-0.469769;, + 1.650000;4.319444;-0.591000;, + 1.650000;4.319444;-0.591000;, + 1.650000;3.545444;-0.591000;, + 1.650000;3.545444;-0.591000;, + 1.650000;4.067234;-0.583346;, + 1.650000;4.067234;-0.583346;, + 1.650000;3.202694;-0.395133;, + 1.650000;3.202694;-0.395133;, + 1.650000;3.034714;0.059254;, + 1.650000;3.608234;-0.583346;, + 1.650000;3.608234;-0.583346;, + 1.101390;0.736228;-0.303535;, + 1.101390;0.736228;-0.303535;, + 1.101390;0.736228;-0.303535;, + 1.101390;0.540345;-0.393688;, + 1.101390;0.540345;-0.393688;, + 1.101390;0.344462;-0.303535;, + 1.101390;0.344462;-0.303535;, + 1.101390;0.344462;-0.303535;, + 1.101390;0.263325;-0.085888;, + 1.101390;0.263325;-0.085888;, + 1.160500;4.319444;-0.591000;, + 1.160500;4.319444;-0.591000;, + 1.160500;4.319444;-0.591000;, + 1.160500;4.319444;-0.591000;, + 1.120000;4.040444;0.089000;, + 1.120000;4.040444;0.089000;, + 1.120000;3.545444;-0.591000;, + 1.120000;3.545444;-0.591000;, + 1.120000;3.545444;-0.591000;, + 1.338250;4.067234;0.059254;, + 1.338250;4.067234;0.059254;, + 1.338250;4.067234;0.059254;, + 1.338250;4.067234;-0.583346;, + 1.338250;4.067234;-0.583346;, + 1.338250;4.067234;-0.583346;, + 1.338250;3.608234;0.059254;, + 1.338250;3.608234;0.059254;, + 1.338250;3.608234;0.059254;, + 1.338250;3.034714;0.059254;, + 1.338250;3.034714;0.059254;, + 1.338250;3.608234;-0.583346;, + 1.338250;3.608234;-0.583346;, + 1.338250;3.608234;-0.583346;, + 1.338250;3.202694;-0.395133;, + 1.338250;3.202694;-0.395133;, + 1.338250;3.202694;-0.395133;, + 1.203250;3.654134;-0.583346;, + 1.203250;3.654134;-0.583346;, + 1.203250;3.654134;-0.583346;, + 1.203250;3.654134;0.059254;, + 1.203250;3.654134;0.059254;, + 1.203250;3.654134;0.059254;, + 1.203250;4.021334;0.059254;, + 1.203250;4.021334;0.059254;, + 1.203250;4.021334;0.059254;, + 1.203250;4.021334;-0.583346;, + 1.203250;4.021334;-0.583346;, + 1.203250;4.021334;-0.583346;, + 0.580000;4.040444;0.089000;, + 0.580000;4.040444;0.089000;, + 2.191610;0.817365;-0.085888;, + 2.191610;0.817365;-0.085888;, + 1.961750;4.640755;0.059254;, + 1.961750;4.640755;0.059254;, + 1.961750;4.472775;-0.395133;, + 1.961750;4.472775;-0.395133;, + 1.961750;4.472775;-0.395133;, + 1.646500;0.817365;-0.085888;, + 1.650000;4.640755;0.059254;, + 1.650000;4.472775;-0.395133;, + 1.650000;4.472775;-0.395133;, + 1.101390;0.817365;-0.085888;, + 1.101390;0.817365;-0.085888;, + 1.338250;4.640755;0.059254;, + 1.338250;4.640755;0.059254;, + 1.338250;4.472775;-0.395133;, + 1.338250;4.472775;-0.395133;, + 1.338250;4.472775;-0.395133;, + 5.537655;7.308371;-0.122373;, + 5.537655;7.308371;-0.122373;, + 5.537655;7.308371;-0.122373;, + 5.737680;7.308371;-0.123683;, + 5.737680;7.308371;-0.123683;, + 5.737680;7.308371;-0.123683;, + 2.211500;6.391939;-0.509769;, + 0.869400;6.553689;-0.193089;, + 0.869400;6.553689;-0.193089;, + 0.729000;7.226889;-0.250000;, + 1.157854;8.456665;-0.357500;, + 1.304100;8.392207;-0.380000;, + 1.304100;8.392207;-0.380000;, + 1.614600;8.428101;-0.460000;, + 1.614600;8.428101;-0.460000;, + 1.614600;8.428101;-0.460000;, + 1.304100;8.332384;-0.460000;, + 1.614600;8.487924;-0.380000;, + 1.614600;8.487924;-0.380000;, + 1.614600;8.487924;-0.380000;, + 1.291183;8.380595;0.035000;, + 1.291183;8.380595;0.035000;, + 1.291183;8.380595;0.035000;, + 1.206975;7.730014;-0.148713;, + 1.206975;7.730014;-0.148713;, + 1.206975;8.252790;-0.393860;, + 1.291183;8.380595;-0.380000;, + 1.291183;8.380595;-0.380000;, + 1.291183;7.708855;-0.065000;, + 1.291183;7.708855;-0.065000;, + 1.291183;7.708855;-0.065000;, + 1.291183;7.708855;-0.065000;, + 0.645840;8.299889;-0.380000;, + 0.645840;8.299889;-0.380000;, + 0.729000;8.335782;-0.250000;, + 0.621000;8.491881;-0.506934;, + 0.621000;8.491881;-0.506934;, + 0.621000;8.491881;-0.506934;, + 0.434700;8.325909;-0.320215;, + 0.434700;8.325909;-0.320215;, + 0.434700;8.325909;-0.320215;, + 0.434700;8.325909;-0.320215;, + 0.621000;8.392207;-0.380000;, + 0.621000;8.392207;-0.380000;, + 0.621000;8.392207;-0.380000;, + 0.621000;8.332384;-0.460000;, + 0.621000;8.332384;-0.460000;, + 0.701730;8.380595;0.035000;, + 0.701730;8.380595;0.035000;, + 0.701730;8.380595;0.035000;, + 0.701730;7.708855;-0.065000;, + 0.701730;7.708855;-0.065000;, + 0.701730;7.708855;-0.065000;, + 0.701730;7.708855;-0.065000;, + 0.701730;8.380595;-0.380000;, + 0.701730;8.380595;-0.380000;, + 0.785938;8.252790;-0.393860;, + 0.785938;7.730014;-0.148713;, + 0.785938;7.730014;-0.148713;, + 6.193715;8.999975;-0.085702;, + 6.193715;8.999975;-0.085702;, + 6.193715;8.999975;-0.085702;, + 6.273846;9.094374;-0.151701;, + 6.273846;9.094374;-0.151701;, + 6.273846;9.094374;-0.151701;, + 6.273846;9.094374;-0.151701;, + 6.273846;9.849567;-0.151701;, + 6.273846;9.849567;-0.151701;, + 6.273846;9.849567;-0.151701;, + 6.273846;9.849567;-0.151701;, + 6.193715;9.943968;-0.085702;, + 6.193715;9.943968;-0.085702;, + 6.193715;9.943968;-0.085702;, + 7.060897;9.725492;-0.129548;, + 7.060897;9.725492;-0.129548;, + 7.060897;9.725492;-0.129548;, + 6.982975;9.563503;-0.129548;, + 6.982975;9.563503;-0.129548;, + 6.671293;9.725492;-0.129548;, + 6.671293;9.725492;-0.129548;, + 6.671293;9.340767;-0.129548;, + 6.671293;9.340767;-0.129548;, + 6.858303;9.340767;-0.129548;, + 6.858303;9.340767;-0.129548;, + 6.858303;9.340767;-0.129548;, + 6.671293;9.563503;-0.129548;, + 6.751895;9.313591;0.542340;, + 6.751895;9.313591;0.542340;, + 6.751895;9.313591;0.542340;, + 6.912178;9.319603;0.515226;, + 6.912178;9.319603;0.515226;, + 6.912178;9.319603;0.515226;, + 6.937339;9.170279;0.515226;, + 6.937339;9.170279;0.515226;, + 6.937339;9.170279;0.515226;, + 6.916745;9.323501;0.515226;, + 6.916745;9.323501;0.515226;, + 6.916745;9.323501;0.515226;, + 7.001220;9.409288;0.515226;, + 7.001220;9.409288;0.515226;, + 7.001220;9.409288;0.515226;, + 7.095283;9.321381;0.515226;, + 7.095283;9.321381;0.515226;, + 7.095283;9.321381;0.515226;, + 6.943227;9.166967;0.515226;, + 6.943227;9.166967;0.515226;, + 6.943227;9.166967;0.515226;, + 6.993157;9.433917;0.515226;, + 6.993157;9.433917;0.515226;, + 6.993157;9.433917;0.515226;, + 7.002631;9.569713;0.515226;, + 7.002631;9.569713;0.515226;, + 7.119660;9.611607;0.515226;, + 7.119660;9.611607;0.515226;, + 7.119660;9.611607;0.515226;, + 7.100082;9.330963;0.515226;, + 7.100082;9.330963;0.515226;, + 7.100082;9.330963;0.515226;, + 5.816796;9.094374;-0.151701;, + 5.816796;9.094374;-0.151701;, + 5.781181;8.999975;-0.085701;, + 5.781181;8.999975;-0.085701;, + 5.816796;9.849567;-0.151701;, + 5.816796;9.849567;-0.151701;, + 5.781182;9.943968;-0.085701;, + 5.781182;9.943968;-0.085701;, + 5.499784;9.980371;0.045354;, + 5.499784;9.980371;0.045354;, + 5.499784;9.980371;0.045354;, + 5.499784;9.836371;0.045354;, + 5.499784;9.836371;0.045354;, + 5.499784;9.836371;0.045354;, + 5.529781;9.428371;-0.592264;, + 5.529781;9.428371;-0.592264;, + 5.729806;9.428371;-0.593574;, + 5.729806;9.428371;-0.593574;, + 5.537655;8.948371;-0.122373;, + 5.537655;8.948371;-0.122373;, + 5.737680;8.948371;-0.123683;, + 5.737680;8.948371;-0.123683;, + 5.537608;9.428371;-0.125206;, + 5.737632;9.428371;-0.126516;, + 4.021242;9.094375;0.068299;, + 4.021242;9.094375;0.068299;, + 4.021242;9.094375;0.068299;, + 4.021242;9.094375;0.068299;, + 4.326931;8.999975;-0.085701;, + 4.326931;8.999975;-0.085701;, + 4.273510;9.094375;-0.151701;, + 4.273510;9.094375;-0.151701;, + 4.439710;8.999975;-0.085701;, + 4.439710;8.999975;-0.085701;, + 5.000635;8.999975;-0.085701;, + 5.000635;9.094375;-0.151701;, + 5.000635;9.094375;-0.151701;, + 4.439710;9.094375;-0.151701;, + 4.439710;9.094375;-0.151701;, + 4.021242;9.849568;0.068299;, + 4.021242;9.849568;0.068299;, + 4.021242;9.849568;0.068299;, + 4.021242;9.849568;0.068299;, + 4.273510;9.849568;-0.151701;, + 4.273510;9.849568;-0.151701;, + 4.326931;9.943968;-0.085701;, + 4.326931;9.943968;-0.085701;, + 4.439710;9.943968;-0.085701;, + 4.439710;9.943968;-0.085701;, + 4.439710;9.849568;-0.151701;, + 4.439710;9.849568;-0.151701;, + 5.000635;9.849568;-0.151701;, + 5.000635;9.849568;-0.151701;, + 5.000635;9.943968;-0.085701;, + 4.569112;9.980371;0.038033;, + 4.569112;9.980371;0.038033;, + 4.569112;9.836371;0.038033;, + 4.569112;9.836371;0.038033;, + 4.529347;9.836371;0.038294;, + 4.529347;9.836371;0.038294;, + 4.529347;9.836371;0.038294;, + 4.529347;9.980371;0.038294;, + 4.529347;9.980371;0.038294;, + 4.529347;9.980371;0.038294;, + 3.739634;9.114357;0.049999;, + 3.739634;9.114357;0.049999;, + 3.739634;9.114357;0.049999;, + 3.739634;9.465427;0.049999;, + 3.739634;9.465427;0.049999;, + 3.739634;9.816500;0.049999;, + 3.739634;9.816500;0.049999;, + 3.739634;9.816500;0.049999;, + 6.197741;9.416677;0.121999;, + 6.197741;9.416677;0.121999;, + 6.197741;9.625625;0.121999;, + 6.197741;9.625625;0.121999;, + 6.454175;9.625625;0.121999;, + 6.454175;9.625625;0.121999;, + 6.454175;9.416677;0.121999;, + 6.454175;9.416677;0.121999;, + 3.477382;10.049524;-0.300001;, + 3.477382;10.049524;-0.300001;, + 3.477382;10.049524;0.049999;, + 3.477382;10.049524;0.049999;, + 3.477382;10.049524;0.049999;, + 3.477382;9.541996;-0.300001;, + 3.477382;9.541996;-0.300001;, + 3.477382;9.541996;0.049999;, + 3.477382;9.541996;0.049999;, + 3.308206;9.330525;-0.300001;, + 3.308206;9.330525;-0.300001;, + 3.308206;9.330525;-0.300001;, + 3.308206;9.330525;-0.300001;, + 3.308206;9.330525;0.049999;, + 3.308206;9.330525;0.049999;, + 3.308206;9.330525;0.049999;, + 3.370776;9.681329;-0.450001;, + 3.370776;9.681329;-0.450001;, + 3.308206;9.541996;0.049999;, + 3.370776;10.087790;-0.450001;, + 3.370776;10.087790;-0.450001;, + 3.308206;10.049524;0.049999;, + 3.308206;10.049524;0.049999;, + 3.347260;9.836371;0.050102;, + 3.347260;9.836371;0.050102;, + 3.347260;9.836371;0.050102;, + 3.347260;9.980371;0.050102;, + 3.347260;9.980371;0.050102;, + 3.347260;9.980371;0.050102;, + 5.498027;9.908371;-0.030170;, + 5.610232;9.972371;0.049085;, + 5.610232;9.972371;0.049085;, + 5.610232;9.972371;0.049085;, + 5.499367;10.036371;0.049811;, + 5.499367;10.036371;0.049811;, + 5.499367;10.036371;0.049811;, + 5.610232;9.844371;0.049085;, + 5.610232;9.844371;0.049085;, + 5.610232;9.844371;0.049085;, + 5.499367;9.780371;0.049811;, + 5.499367;9.780371;0.049811;, + 5.499367;9.780371;0.049811;, + 5.388502;9.844371;0.050537;, + 5.388502;9.844371;0.050537;, + 5.388502;9.844371;0.050537;, + 5.388502;9.972371;0.050537;, + 5.388502;9.972371;0.050537;, + 5.388502;9.972371;0.050537;, + 2.351901;9.114357;0.050000;, + 2.351901;9.114357;0.050000;, + 2.351901;9.114357;0.050000;, + 2.351901;9.465427;0.050000;, + 2.351901;9.465427;0.050000;, + 2.351901;9.816500;0.050000;, + 2.351901;9.816500;0.050000;, + 2.351901;9.816500;0.050000;, + 2.610355;9.541996;0.050000;, + 2.610355;9.541996;0.050000;, + 2.610355;9.541996;-0.300000;, + 2.610355;9.541996;-0.300000;, + 2.610355;9.541996;-0.300000;, + 2.737237;9.330525;-0.300000;, + 2.737237;9.330525;-0.300000;, + 2.737237;9.330525;-0.300000;, + 2.737237;9.330525;0.050000;, + 2.737237;9.330525;0.050000;, + 2.737237;9.330525;0.050000;, + 2.605451;10.087790;-0.450000;, + 2.673121;9.681329;-0.450000;, + 2.673121;9.681329;-0.450000;, + 2.610355;10.049524;0.050000;, + 2.610355;10.049524;0.050000;, + 3.221444;9.664412;-0.450001;, + 3.263738;9.504920;-0.450001;, + 3.263738;9.504920;-0.450001;, + 2.810496;9.504920;-0.450000;, + 3.221444;10.087790;-0.450001;, + 1.785622;9.541996;-0.300000;, + 1.785622;9.541996;-0.300000;, + 1.785622;9.541996;-0.300000;, + 1.785622;9.541996;0.050000;, + 1.785622;9.541996;0.050000;, + 1.574152;9.711170;-0.300000;, + 1.574152;9.711170;-0.300000;, + 1.574152;9.711170;-0.300000;, + 1.574152;9.711170;-0.300000;, + 1.574152;9.711170;0.050000;, + 1.574152;9.711170;0.050000;, + 1.574152;9.711170;0.050000;, + 1.943341;10.228918;-0.450000;, + 1.877459;9.681329;-0.450000;, + 1.877459;9.681329;-0.450000;, + 1.574152;10.218699;0.050000;, + 1.574152;10.218699;0.050000;, + 1.574152;10.218699;0.050000;, + 1.574152;10.218699;-0.300000;, + 1.574152;10.218699;-0.300000;, + 1.690794;10.228918;-0.450000;, + 1.690794;10.228918;-0.450000;, + 1.690794;9.822455;-0.450000;, + 1.690794;9.822455;-0.450000;, + 1.785622;10.218699;0.050000;, + 1.785622;10.218699;0.050000;, + 1.291183;9.629884;0.035000;, + 1.291183;9.629884;0.035000;, + 1.291183;9.629884;0.035000;, + 1.291183;9.629884;-0.380000;, + 1.291183;9.629884;-0.380000;, + 1.291183;9.629884;-0.380000;, + 1.291183;10.090521;0.035000;, + 1.291183;10.090521;0.035000;, + 1.291183;10.090521;0.035000;, + 1.206975;10.200697;-0.393860;, + 1.291183;10.090521;-0.380000;, + 1.291183;10.090521;-0.380000;, + 1.157854;9.729999;-0.357500;, + 1.304100;10.010826;-0.380000;, + 1.304100;10.010826;-0.380000;, + 1.614600;9.891180;-0.460000;, + 1.614600;9.891180;-0.460000;, + 1.614600;9.891180;-0.460000;, + 1.304100;10.010826;-0.460000;, + 1.614600;9.891180;-0.380000;, + 1.614600;9.891180;-0.380000;, + 1.614600;9.891180;-0.380000;, + 1.291183;8.914934;-0.380000;, + 1.291183;8.914934;-0.380000;, + 1.291183;8.914934;-0.380000;, + 1.291183;8.914934;0.035000;, + 1.291183;8.914934;0.035000;, + 1.291183;8.914934;0.035000;, + 0.701730;10.090521;0.035000;, + 0.701730;10.090521;0.035000;, + 0.701730;10.090521;0.035000;, + 0.701730;10.090521;-0.380000;, + 0.701730;10.090521;-0.380000;, + 0.701730;9.629884;-0.380000;, + 0.701730;9.629884;-0.380000;, + 0.701730;9.629884;-0.380000;, + 0.701730;9.629884;0.035000;, + 0.701730;9.629884;0.035000;, + 0.701730;9.629884;0.035000;, + 0.785938;10.200697;-0.393860;, + 0.324000;10.031889;0.150000;, + 0.621000;10.010826;-0.380000;, + 0.621000;10.010826;-0.380000;, + 0.621000;10.010826;-0.380000;, + 0.621000;10.010826;-0.460000;, + 0.621000;10.010826;-0.460000;, + 0.783621;10.114978;-0.154000;, + 0.701730;8.914934;-0.380000;, + 0.701730;8.914934;-0.380000;, + 0.701730;8.914934;-0.380000;, + 0.701730;8.914934;0.035000;, + 0.701730;8.914934;0.035000;, + 0.701730;8.914934;0.035000;, + 5.529781;11.108371;-0.592264;, + 5.529781;11.108371;-0.592264;, + 5.529781;11.108371;-0.592264;, + 5.729806;11.108371;-0.593574;, + 5.729806;11.108371;-0.593574;, + 5.729806;11.108371;-0.593574;, + 5.737632;11.108371;-0.126516;, + 5.737632;11.108371;-0.126516;, + 5.537608;11.108371;-0.125206;, + 5.537608;11.108371;-0.125206;, + 5.537608;10.788371;-0.125206;, + 5.537608;10.788371;-0.125206;, + 5.537608;10.788371;-0.125206;, + 5.737632;10.788371;-0.126516;, + 5.737632;10.788371;-0.126516;, + 5.737632;10.788371;-0.126516;, + 5.729806;10.788371;-0.593574;, + 5.729806;10.788371;-0.593574;, + 5.529781;10.788371;-0.592264;, + 5.529781;10.788371;-0.592264;, + 5.529781;10.948371;-0.592264;, + 5.529781;10.948371;-0.592264;, + 5.537608;10.948371;-0.125206;, + 5.537608;10.948371;-0.125206;, + 5.537608;10.948371;-0.125206;, + 5.737632;10.948371;-0.126516;, + 5.737632;10.948371;-0.126516;, + 5.737632;10.948371;-0.126516;, + 5.729806;10.948371;-0.593574;, + 5.729806;10.948371;-0.593574;, + 3.477382;10.768522;0.049999;, + 3.477382;10.768522;0.049999;, + 3.477382;10.768522;-0.300001;, + 3.477382;10.768522;-0.300001;, + 3.477382;10.768522;-0.300001;, + 3.477382;10.768522;-0.300001;, + 3.308206;10.895405;0.049999;, + 3.308206;10.895405;-0.300001;, + 3.308206;10.895405;-0.300001;, + 3.308206;10.895405;-0.300001;, + 3.370776;10.653745;-0.450001;, + 3.370776;10.653745;-0.450001;, + 2.610355;10.895405;-0.300000;, + 2.610355;10.895405;-0.300000;, + 2.610355;10.895405;0.050000;, + 2.605451;10.759588;-0.450000;, + 2.605451;10.759588;-0.450000;, + 3.221444;10.759588;-0.450001;, + 3.221444;10.759588;-0.450001;, + 1.954798;10.895405;-0.300000;, + 1.954798;10.895405;-0.300000;, + 1.954798;10.895405;-0.300000;, + 1.954798;10.895405;-0.300000;, + 1.954798;10.895405;0.050000;, + 1.954798;10.895405;0.050000;, + 1.574152;10.514757;0.050000;, + 1.574152;10.514757;-0.300000;, + 1.574152;10.514757;-0.300000;, + 1.574152;10.514757;-0.300000;, + 2.026791;10.759588;-0.450000;, + 2.026791;10.759588;-0.450000;, + 1.690794;10.442054;-0.450000;, + 1.690794;10.442054;-0.450000;, + 1.206975;10.651367;-0.148713;, + 1.206975;10.651367;-0.148713;, + 1.291183;10.669608;-0.065000;, + 1.291183;10.669608;-0.065000;, + 1.291183;10.669608;-0.065000;, + 1.291183;10.669608;-0.065000;, + 0.701730;10.669608;-0.065000;, + 0.701730;10.669608;-0.065000;, + 0.701730;10.669608;-0.065000;, + 0.701730;10.669608;-0.065000;, + 0.785938;10.651367;-0.148713;, + 0.785938;10.651367;-0.148713;, + 0.384438;10.303647;-0.092313;, + 0.384438;10.303647;-0.092313;, + 0.384438;10.303647;-0.092313;, + 0.384438;10.687464;-0.005502;, + 0.384438;10.687464;-0.005502;, + 0.384438;10.687464;-0.005502;, + 0.306190;10.687464;-0.005502;, + 0.306190;10.687464;-0.005502;, + 0.306190;10.303647;-0.092313;, + 0.306190;10.303647;-0.092313;, + 0.290080;11.185386;-0.116549;, + 0.290080;11.185386;-0.116549;, + 0.290080;11.154265;-0.116549;, + 0.290080;11.154265;-0.116549;, + 0.280074;11.060905;-0.350670;, + 0.280074;11.060905;-0.350670;, + 0.280074;11.029785;-0.350670;, + 0.280074;11.029785;-0.350670;, + 0.203526;11.460281;-0.116549;, + 0.282675;11.429161;-0.116549;, + 0.282675;11.429161;-0.116549;, + 0.282675;11.408415;-0.398685;, + 0.282675;11.408415;-0.398685;, + 0.203526;11.439535;-0.398685;, + 0.282675;10.760077;-0.398685;, + 0.282675;10.760077;-0.398685;, + 0.192219;10.728957;-0.398685;, + 0.192219;10.728957;-0.116549;, + 0.282675;10.760077;-0.116549;, + 0.282675;10.760077;-0.116549;, + 0.296411;10.604476;0.095053;, + 0.296411;10.604476;0.095053;, + 0.791490;10.604476;0.095053;, + 0.791490;10.604476;0.095053;, + 0.791490;10.604476;0.095053;, + 0.791490;10.604476;0.095053;, + 0.296411;10.977919;0.095053;, + 0.296411;10.977919;0.095053;, + 0.791490;10.977919;0.095053;, + 0.791490;10.977919;0.095053;, + 0.791490;10.977919;0.095053;, + 0.791490;10.977919;0.095053;, + 0.319025;10.666717;0.040796;, + 0.723648;10.666717;0.040796;, + 0.723648;10.915678;0.040796;, + 0.319025;10.915678;0.040796;, + 0.191908;10.391821;-0.356500;, + 0.191908;10.391821;-0.356500;, + 0.191908;10.827504;-0.458200;, + 0.191908;10.827504;-0.458200;, + 0.191908;10.827504;-0.458200;, + 0.191908;10.827504;-0.458200;, + 0.118468;10.732613;-0.538774;, + 0.118468;10.732613;-0.538774;, + 0.118468;10.732613;-0.538774;, + 0.118468;10.440549;-0.470599;, + 0.118468;10.440549;-0.470599;, + 0.118468;10.440549;-0.470599;, + 2.087155;0.022285;0.449062;, + 2.087155;0.022285;0.449062;, + 2.062198;0.686398;0.209303;, + 2.062198;0.686398;0.209303;, + 2.062198;0.686398;0.209303;, + 2.087155;0.022285;0.837000;, + 2.087155;0.022285;0.837000;, + 2.045719;1.096842;0.837000;, + 2.045719;1.096842;0.837000;, + 2.045719;1.096842;0.837000;, + 2.045719;1.096842;0.837000;, + 2.064598;0.607264;0.837000;, + 2.405000;0.645445;0.209000;, + 2.405000;0.645445;0.209000;, + 1.650000;0.686398;0.209303;, + 1.650000;0.686398;0.209303;, + 1.650000;0.022285;0.449062;, + 1.650000;0.022285;0.837000;, + 1.650000;1.096842;0.837000;, + 1.650000;0.645445;0.209000;, + 1.212845;0.022285;0.449062;, + 1.212845;0.022285;0.449062;, + 1.237802;0.686398;0.209303;, + 1.237802;0.686398;0.209303;, + 1.237802;0.686398;0.209303;, + 1.212845;0.022285;0.837000;, + 1.212845;0.022285;0.837000;, + 1.254281;1.096842;0.837000;, + 1.254281;1.096842;0.837000;, + 1.254281;1.096842;0.837000;, + 1.254281;1.096842;0.837000;, + 0.895000;0.645445;0.209000;, + 0.895000;0.645445;0.209000;, + 2.180000;2.285444;0.209000;, + 2.191610;0.736228;0.131760;, + 2.191610;0.736228;0.131760;, + 2.191610;0.736228;0.131760;, + 2.191610;0.540345;0.221912;, + 2.191610;0.540345;0.221912;, + 2.191610;0.344462;0.131760;, + 2.191610;0.344462;0.131760;, + 2.191610;0.344462;0.131760;, + 2.041625;4.121234;0.527731;, + 2.041625;4.121234;0.527731;, + 2.041625;4.121234;0.527731;, + 2.180000;3.545444;0.209000;, + 2.180000;3.545444;0.209000;, + 1.961750;4.067234;0.701854;, + 1.961750;4.067234;0.701854;, + 1.961750;3.202694;0.513641;, + 1.961750;3.202694;0.513641;, + 1.961750;3.202694;0.513641;, + 1.961750;3.608234;0.701854;, + 1.961750;3.608234;0.701854;, + 1.961750;3.608234;0.701854;, + 1.646500;0.540345;0.221912;, + 1.646500;0.736228;0.131760;, + 1.646500;0.736228;0.131760;, + 1.646500;0.344462;0.131760;, + 1.646500;0.344462;0.131760;, + 1.208000;4.121234;0.527731;, + 1.208000;4.121234;0.527731;, + 1.208000;4.121234;0.527731;, + 1.650000;3.545444;0.209000;, + 1.650000;4.067234;0.701854;, + 1.650000;3.202694;0.513641;, + 1.650000;3.202694;0.513641;, + 1.650000;3.608234;0.701854;, + 1.650000;3.608234;0.701854;, + 1.101390;0.736228;0.131760;, + 1.101390;0.736228;0.131760;, + 1.101390;0.736228;0.131760;, + 1.101390;0.540345;0.221912;, + 1.101390;0.540345;0.221912;, + 1.101390;0.344462;0.131760;, + 1.101390;0.344462;0.131760;, + 1.101390;0.344462;0.131760;, + 1.120000;3.545444;0.209000;, + 1.120000;3.545444;0.209000;, + 1.338250;4.067234;0.701854;, + 1.338250;4.067234;0.701854;, + 1.338250;3.202694;0.513641;, + 1.338250;3.202694;0.513641;, + 1.338250;3.202694;0.513641;, + 1.338250;3.608234;0.701854;, + 1.338250;3.608234;0.701854;, + 1.338250;3.608234;0.701854;, + 2.211500;4.924759;0.527731;, + 2.211500;4.924759;0.527731;, + 1.961750;4.472775;0.513641;, + 1.961750;4.472775;0.513641;, + 1.961750;4.472775;0.513641;, + 1.650000;4.924759;0.527731;, + 1.650000;4.472775;0.513641;, + 1.650000;4.472775;0.513641;, + 1.088500;4.924759;0.527731;, + 1.088500;4.924759;0.527731;, + 1.338250;4.472775;0.513641;, + 1.338250;4.472775;0.513641;, + 1.338250;4.472775;0.513641;, + 1.291183;8.380595;0.600000;, + 1.291183;8.380595;0.600000;, + 1.291183;7.708855;0.600000;, + 1.291183;7.708855;0.600000;, + 0.701730;8.380595;0.600000;, + 0.701730;8.380595;0.600000;, + 0.701730;7.708855;0.600000;, + 0.701730;7.708855;0.600000;, + 6.273846;9.094374;0.662299;, + 6.273846;9.094374;0.662299;, + 6.273846;9.094374;0.662299;, + 6.273846;9.094374;0.662299;, + 6.193715;8.999975;0.662299;, + 6.193715;8.999975;0.662299;, + 6.193715;8.999975;0.662299;, + 6.193715;8.999975;0.607299;, + 6.193715;8.999975;0.607299;, + 6.193715;8.999975;0.607299;, + 6.273846;9.094374;0.607298;, + 6.273846;9.094374;0.607298;, + 6.273846;9.094374;0.607298;, + 6.273846;9.094374;0.607298;, + 6.273846;9.849567;0.662299;, + 6.273846;9.849567;0.662299;, + 6.273846;9.849567;0.662299;, + 6.273846;9.849567;0.662299;, + 6.193715;9.943968;0.662299;, + 6.193715;9.943968;0.662299;, + 6.193715;9.943968;0.662299;, + 6.193715;9.943968;0.607299;, + 6.193715;9.943968;0.607299;, + 6.193715;9.943968;0.607299;, + 6.273846;9.849567;0.607298;, + 6.273846;9.849567;0.607298;, + 6.273846;9.849567;0.607298;, + 6.273846;9.849567;0.607298;, + 6.982975;9.563503;0.726668;, + 6.982975;9.563503;0.726668;, + 7.060897;9.725492;0.726668;, + 7.060897;9.725492;0.726668;, + 7.060897;9.725492;0.726668;, + 6.359611;9.563503;0.568268;, + 6.359611;9.563503;0.568268;, + 6.359611;9.563503;0.002452;, + 6.359611;9.563503;0.002452;, + 6.359611;9.725492;0.002452;, + 6.359611;9.725492;0.002452;, + 6.359611;9.725492;0.002452;, + 6.359611;9.725492;0.568268;, + 6.359611;9.725492;0.568268;, + 6.359611;9.725492;0.568268;, + 6.671293;9.725492;0.726668;, + 6.671293;9.725492;0.726668;, + 6.671293;9.563503;0.726668;, + 6.359611;9.340767;0.002452;, + 6.359611;9.340767;0.002452;, + 6.359611;9.340767;0.002452;, + 6.359611;9.340767;0.568268;, + 6.359611;9.340767;0.568268;, + 6.359611;9.340767;0.568268;, + 6.671293;9.340767;0.726668;, + 6.671293;9.340767;0.726668;, + 6.858303;9.340767;0.726668;, + 6.858303;9.340767;0.726668;, + 6.858303;9.340767;0.726668;, + 6.751895;9.313591;0.677907;, + 6.751895;9.313591;0.677907;, + 6.751895;9.313591;0.677907;, + 6.912178;9.319603;0.705020;, + 6.912178;9.319603;0.705020;, + 6.912178;9.319603;0.705020;, + 6.937339;9.170279;0.705020;, + 6.937339;9.170279;0.705020;, + 6.937339;9.170279;0.705020;, + 6.693048;9.269262;0.664350;, + 6.693048;9.269262;0.664350;, + 6.693048;9.269262;0.664350;, + 6.693048;9.269262;0.555896;, + 6.693048;9.269262;0.555896;, + 6.693048;9.269262;0.555896;, + 6.916745;9.323501;0.705020;, + 6.916745;9.323501;0.705020;, + 6.916745;9.323501;0.705020;, + 7.001220;9.409288;0.705020;, + 7.001220;9.409288;0.705020;, + 7.001220;9.409288;0.705020;, + 7.095283;9.321381;0.705020;, + 7.095283;9.321381;0.705020;, + 7.095283;9.321381;0.705020;, + 6.943227;9.166967;0.705020;, + 6.943227;9.166967;0.705020;, + 6.943227;9.166967;0.705020;, + 6.993157;9.433917;0.705020;, + 6.993157;9.433917;0.705020;, + 6.993157;9.433917;0.705020;, + 7.002631;9.569713;0.705020;, + 7.002631;9.569713;0.705020;, + 7.119660;9.611607;0.705020;, + 7.119660;9.611607;0.705020;, + 7.119660;9.611607;0.705020;, + 7.100082;9.330963;0.705020;, + 7.100082;9.330963;0.705020;, + 7.100082;9.330963;0.705020;, + 5.781182;8.999975;0.607299;, + 5.781182;8.999975;0.607299;, + 5.781182;8.999975;0.607299;, + 5.781182;8.999975;0.662299;, + 5.781182;8.999975;0.662299;, + 5.781182;8.999975;0.662299;, + 5.781182;9.943968;0.607299;, + 5.781182;9.943968;0.607299;, + 5.781182;9.943968;0.662299;, + 5.781182;9.943968;0.662299;, + 6.554913;9.416677;0.408793;, + 6.554913;9.416677;0.408793;, + 6.554913;9.416677;0.408793;, + 6.554913;9.625625;0.408793;, + 6.554913;9.625625;0.408793;, + 6.554913;9.625625;0.408793;, + 6.596640;9.625625;0.289999;, + 6.596640;9.625625;0.289999;, + 6.596640;9.416677;0.289999;, + 6.596640;9.416677;0.289999;, + 6.554913;9.416677;0.171205;, + 6.554913;9.416677;0.171205;, + 6.554913;9.416677;0.171205;, + 6.554913;9.625625;0.171205;, + 6.554913;9.625625;0.171205;, + 6.554913;9.625625;0.171205;, + 4.092471;8.999975;0.827299;, + 4.092471;8.999975;0.827299;, + 4.021242;9.094375;0.893299;, + 4.021242;9.094375;0.893299;, + 4.021242;9.094375;0.893299;, + 4.092471;8.999975;0.134299;, + 4.092471;8.999975;0.134299;, + 4.092471;8.999975;0.607299;, + 4.092471;8.999975;0.607299;, + 4.092471;8.999975;0.607299;, + 4.326931;8.999975;0.607299;, + 4.326931;8.999975;0.607299;, + 4.021242;9.094375;0.607299;, + 4.021242;9.094375;0.607299;, + 4.021242;9.094375;0.607299;, + 4.021242;9.094375;0.607299;, + 4.092471;8.999975;0.662299;, + 4.092471;8.999975;0.662299;, + 4.092471;8.999975;0.662299;, + 4.326931;8.999975;0.662299;, + 4.326931;8.999975;0.662299;, + 4.021242;9.094375;0.662299;, + 4.021242;9.094375;0.662299;, + 4.021242;9.094375;0.662299;, + 4.021242;9.094375;0.662299;, + 4.439710;8.999975;0.497299;, + 4.439710;8.999975;0.497299;, + 4.911600;8.999975;0.497299;, + 4.911600;8.999975;0.497299;, + 4.911600;8.999975;0.497299;, + 4.439710;8.999975;0.552299;, + 4.439710;8.999975;0.552299;, + 4.911600;8.999975;0.552299;, + 4.911600;8.999975;0.552299;, + 4.911600;8.999975;0.552299;, + 5.000635;8.999975;0.607299;, + 5.000635;8.999975;0.607299;, + 5.000635;8.999975;0.662299;, + 5.000635;8.999975;0.662299;, + 4.021242;9.849568;0.893299;, + 4.021242;9.849568;0.893299;, + 4.021242;9.849568;0.893299;, + 4.092471;9.943968;0.827299;, + 4.092471;9.943968;0.827299;, + 4.092471;9.943968;0.134299;, + 4.092471;9.943968;0.134299;, + 4.326931;9.943968;0.607299;, + 4.326931;9.943968;0.607299;, + 4.092471;9.943968;0.607299;, + 4.092471;9.943968;0.607299;, + 4.092471;9.943968;0.607299;, + 4.021242;9.849568;0.607299;, + 4.021242;9.849568;0.607299;, + 4.021242;9.849568;0.607299;, + 4.021242;9.849568;0.607299;, + 4.326931;9.943968;0.662299;, + 4.326931;9.943968;0.662299;, + 4.092471;9.943968;0.662299;, + 4.092471;9.943968;0.662299;, + 4.092471;9.943968;0.662299;, + 4.021242;9.849568;0.662299;, + 4.021242;9.849568;0.662299;, + 4.021242;9.849568;0.662299;, + 4.021242;9.849568;0.662299;, + 4.439710;9.943968;0.497299;, + 4.439710;9.943968;0.497299;, + 4.911600;9.943968;0.497299;, + 4.911600;9.943968;0.497299;, + 4.911600;9.943968;0.497299;, + 4.911600;9.943968;0.552299;, + 4.911600;9.943968;0.552299;, + 4.911600;9.943968;0.552299;, + 4.439710;9.943968;0.552299;, + 4.439710;9.943968;0.552299;, + 5.000635;9.943968;0.607299;, + 5.000635;9.943968;0.607299;, + 5.000635;9.943968;0.607299;, + 5.000635;9.943968;0.662299;, + 5.000635;9.943968;0.662299;, + 5.000635;9.943968;0.662299;, + 4.582514;9.980371;0.837847;, + 4.582514;9.980371;0.837847;, + 4.582514;9.836371;0.837847;, + 4.582514;9.836371;0.837847;, + 4.542748;9.836371;0.838107;, + 4.542748;9.836371;0.838107;, + 4.542748;9.836371;0.838107;, + 4.542748;9.980371;0.838107;, + 4.542748;9.980371;0.838107;, + 4.542748;9.980371;0.838107;, + 3.853407;9.114357;0.199999;, + 3.853407;9.114357;0.199999;, + 3.739634;9.114357;0.849999;, + 3.739634;9.114357;0.849999;, + 3.739634;9.114357;0.849999;, + 3.853407;9.114357;0.699999;, + 3.853407;9.114357;0.699999;, + 3.853407;9.465427;0.699999;, + 3.853407;9.465427;0.199999;, + 3.739634;9.465427;0.849999;, + 3.739634;9.465427;0.849999;, + 3.853407;9.816500;0.199999;, + 3.853407;9.816500;0.199999;, + 3.853407;9.816500;0.699999;, + 3.853407;9.816500;0.699999;, + 3.739634;9.816500;0.849999;, + 3.739634;9.816500;0.849999;, + 3.739634;9.816500;0.849999;, + 6.097003;9.416677;0.408793;, + 6.097003;9.416677;0.408793;, + 6.097003;9.416677;0.408793;, + 6.069272;9.416677;0.191822;, + 6.069272;9.416677;0.191822;, + 6.069272;9.625625;0.191822;, + 6.069272;9.625625;0.191822;, + 6.097003;9.625625;0.408793;, + 6.097003;9.625625;0.408793;, + 6.097003;9.625625;0.408793;, + 6.097003;9.416677;0.171205;, + 6.097003;9.416677;0.171205;, + 6.097003;9.416677;0.171205;, + 6.097003;9.625625;0.171205;, + 6.097003;9.625625;0.171205;, + 6.097003;9.625625;0.171205;, + 6.197741;9.625625;0.457999;, + 6.197741;9.625625;0.457999;, + 6.197741;9.416677;0.457999;, + 6.197741;9.416677;0.457999;, + 6.454175;9.416677;0.457999;, + 6.454175;9.416677;0.457999;, + 6.454175;9.625625;0.457999;, + 6.454175;9.625625;0.457999;, + 3.332740;9.836371;0.849896;, + 3.332740;9.836371;0.849896;, + 3.332740;9.836371;0.849896;, + 3.332740;9.980371;0.849896;, + 3.332740;9.980371;0.849896;, + 3.332740;9.980371;0.849896;, + 5.513439;10.036371;0.889615;, + 5.513439;10.036371;0.889615;, + 5.513439;10.036371;0.889615;, + 5.624304;9.972371;0.888889;, + 5.624304;9.972371;0.888889;, + 5.624304;9.972371;0.888889;, + 5.624304;9.844371;0.888889;, + 5.624304;9.844371;0.888889;, + 5.624304;9.844371;0.888889;, + 5.513439;9.780371;0.889615;, + 5.513439;9.780371;0.889615;, + 5.513439;9.780371;0.889615;, + 3.477382;10.049524;0.480000;, + 3.477382;10.049524;0.480000;, + 3.308206;10.049524;0.480000;, + 3.477382;10.049524;0.860001;, + 3.477382;10.049524;0.860001;, + 3.477382;10.049524;0.860001;, + 3.477382;9.541996;0.860001;, + 3.477382;9.541996;0.860001;, + 3.308206;9.330525;0.860001;, + 3.308206;9.330525;0.860001;, + 3.308206;9.330525;0.860001;, + 3.308206;9.541996;0.860001;, + 3.308206;10.049524;0.860001;, + 3.308206;10.049524;0.860001;, + 2.351901;9.114357;0.850000;, + 2.351901;9.114357;0.850000;, + 2.351901;9.114357;0.850000;, + 2.238127;9.114357;0.200000;, + 2.238127;9.114357;0.200000;, + 2.238127;9.114357;0.700000;, + 2.238127;9.114357;0.700000;, + 2.351901;9.465427;0.850000;, + 2.351901;9.465427;0.850000;, + 2.238127;9.465427;0.700000;, + 2.238127;9.465427;0.200000;, + 2.351901;9.816500;0.850000;, + 2.351901;9.816500;0.850000;, + 2.351901;9.816500;0.850000;, + 2.238127;9.816500;0.700000;, + 2.238127;9.816500;0.700000;, + 2.238127;9.816500;0.200000;, + 2.238127;9.816500;0.200000;, + 5.402574;9.844371;0.890341;, + 5.402574;9.844371;0.890341;, + 5.402574;9.844371;0.890341;, + 5.402574;9.972371;0.890341;, + 5.402574;9.972371;0.890341;, + 5.402574;9.972371;0.890341;, + 2.625627;9.706669;0.706400;, + 2.625627;9.706669;0.706400;, + 2.625627;9.706669;0.706400;, + 2.625627;9.706669;0.213600;, + 2.625627;9.706669;0.213600;, + 2.625627;9.706669;0.213600;, + 2.625627;9.208800;0.706400;, + 2.625627;9.208800;0.706400;, + 2.625627;9.208800;0.706400;, + 2.625627;9.208800;0.213600;, + 2.625627;9.208800;0.213600;, + 2.625627;9.208800;0.213600;, + 2.610355;10.049524;0.480000;, + 2.610355;9.541996;0.860000;, + 2.610355;9.541996;0.860000;, + 2.737237;9.330525;0.860000;, + 2.737237;9.330525;0.860000;, + 2.737237;9.330525;0.860000;, + 2.610355;10.049524;0.860000;, + 2.610355;10.049524;0.860000;, + 2.273581;10.058715;0.706400;, + 2.273581;10.058715;0.706400;, + 1.775712;10.058715;0.706400;, + 1.775712;10.058715;0.706400;, + 1.775712;10.058715;0.213600;, + 1.775712;10.058715;0.213600;, + 2.273581;10.058715;0.213600;, + 2.273581;10.058715;0.213600;, + 2.273581;8.856754;0.706400;, + 2.273581;8.856754;0.706400;, + 2.273581;8.856754;0.213600;, + 2.273581;8.856754;0.213600;, + 1.775712;8.856754;0.213600;, + 1.775712;8.856754;0.213600;, + 1.775712;8.856754;0.706400;, + 1.775712;8.856754;0.706400;, + 1.491860;10.058715;0.213600;, + 1.491860;10.058715;0.213600;, + 1.491860;10.058715;0.706400;, + 1.491860;10.058715;0.706400;, + 2.024647;9.457734;0.706400;, + 2.024647;9.457734;0.213600;, + 1.574152;10.218699;0.480000;, + 1.574152;10.218699;0.480000;, + 1.785622;10.218699;0.480000;, + 1.785622;9.541996;0.860000;, + 1.785622;9.541996;0.860000;, + 1.574152;9.711170;0.860000;, + 1.574152;9.711170;0.860000;, + 1.574152;9.711170;0.860000;, + 1.574152;10.218699;0.860000;, + 1.574152;10.218699;0.860000;, + 1.574152;10.218699;0.860000;, + 1.785622;10.218699;0.860000;, + 1.785622;10.218699;0.860000;, + 1.291183;10.090521;0.600000;, + 1.291183;10.090521;0.600000;, + 1.179814;8.968801;0.706400;, + 1.179814;8.968801;0.706400;, + 1.179814;8.968801;0.706400;, + 1.179814;8.968801;0.213600;, + 1.179814;8.968801;0.213600;, + 1.179814;8.968801;0.213600;, + 1.179814;9.706669;0.213600;, + 1.179814;9.706669;0.213600;, + 1.179814;9.706669;0.213600;, + 1.179814;9.706669;0.706400;, + 1.179814;9.706669;0.706400;, + 1.179814;9.706669;0.706400;, + 1.423666;9.208800;0.706400;, + 1.423666;9.208800;0.706400;, + 1.423666;9.208800;0.706400;, + 1.423666;9.208800;0.706400;, + 1.423666;9.706669;0.706400;, + 1.423666;9.706669;0.213600;, + 1.423666;9.208800;0.213600;, + 1.423666;9.208800;0.213600;, + 1.423666;9.208800;0.213600;, + 1.423666;9.208800;0.213600;, + 0.701730;10.090521;0.600000;, + 0.701730;10.090521;0.600000;, + 3.477382;10.768522;0.480000;, + 3.477382;10.768522;0.480000;, + 3.308206;10.895405;0.480000;, + 3.477382;10.768522;0.860001;, + 3.477382;10.768522;0.860001;, + 3.308206;10.895405;0.860001;, + 2.610355;10.895405;0.480000;, + 2.610355;10.895405;0.860000;, + 1.954798;10.895405;0.480000;, + 1.954798;10.895405;0.480000;, + 1.574152;10.514757;0.480000;, + 1.954798;10.895405;0.860000;, + 1.954798;10.895405;0.860000;, + 1.574152;10.514757;0.860000;, + 1.291183;10.669608;0.600000;, + 1.291183;10.669608;0.600000;, + 0.701730;10.669608;0.600000;, + 0.701730;10.669608;0.600000;, + 0.162000;10.592889;0.850000;, + 0.162000;10.592889;0.850000;, + 0.162000;10.592889;0.400000;, + 0.162000;10.592889;0.400000;, + 0.384438;11.237040;0.797501;, + 0.384438;11.237040;0.797501;, + 0.384438;10.687464;0.732393;, + 0.384438;10.687464;0.732393;, + 0.384438;10.687464;0.732393;, + 0.384438;10.303647;0.732393;, + 0.384438;10.303647;0.732393;, + 0.384438;11.486215;0.839315;, + 0.384438;11.486215;0.839315;, + 0.384438;11.486215;0.839315;, + 0.306190;11.559654;0.839315;, + 0.306190;11.559654;0.839315;, + 0.306190;10.687464;0.732393;, + 0.306190;10.687464;0.732393;, + 0.306190;10.303647;0.732393;, + 0.306190;10.303647;0.732393;, + 0.306190;10.303647;0.732393;, + 0.290080;11.185386;0.360912;, + 0.290080;11.185386;0.360912;, + 0.290080;11.154265;0.360912;, + 0.290080;11.154265;0.360912;, + 0.203526;11.460281;0.360912;, + 0.282675;11.429161;0.360912;, + 0.282675;11.429161;0.360912;, + 0.192219;10.728957;0.360912;, + 0.282675;10.760077;0.360912;, + 0.282675;10.760077;0.360912;, + 0.296411;10.604476;0.827522;, + 0.296411;10.604476;0.827522;, + 0.791490;10.604476;0.827522;, + 0.791490;10.604476;0.827522;, + 0.791490;10.604476;0.827522;, + 0.296411;10.977919;0.827522;, + 0.296411;10.977919;0.827522;, + 0.791490;10.977919;0.827522;, + 0.791490;10.977919;0.827522;, + 0.791490;10.977919;0.827522;, + 2.022394;0.022285;1.224938;, + 2.022394;0.022285;1.224938;, + 2.022394;0.022285;1.224938;, + 1.964576;0.527998;1.508697;, + 1.964576;0.527998;1.508697;, + 1.964576;0.527998;1.508697;, + 2.225000;1.050444;1.309000;, + 2.225000;1.050444;1.309000;, + 2.225000;1.050444;1.309000;, + 1.650000;0.022285;1.224938;, + 1.650000;0.022285;1.224938;, + 1.650000;0.527998;1.508697;, + 1.650000;0.527998;1.508697;, + 1.650000;1.050444;1.309000;, + 1.650000;1.050444;1.309000;, + 1.277606;0.022285;1.224938;, + 1.277606;0.022285;1.224938;, + 1.277606;0.022285;1.224938;, + 1.335424;0.527998;1.508697;, + 1.335424;0.527998;1.508697;, + 1.335424;0.527998;1.508697;, + 1.075000;1.050444;1.309000;, + 1.075000;1.050444;1.309000;, + 1.075000;1.050444;1.309000;, + 2.180000;2.735444;1.009000;, + 2.180000;2.735444;1.009000;, + 2.180000;2.735444;1.009000;, + 2.630000;2.735444;1.009000;, + 2.630000;2.735444;1.009000;, + 2.630000;2.735444;1.009000;, + 2.180000;2.465444;1.009000;, + 2.180000;2.465444;1.009000;, + 1.650000;2.465444;1.009000;, + 1.120000;2.735444;1.009000;, + 1.120000;2.735444;1.009000;, + 1.120000;2.735444;1.009000;, + 1.120000;2.465444;1.009000;, + 1.120000;2.465444;1.009000;, + 0.670000;2.735444;1.009000;, + 0.670000;2.735444;1.009000;, + 0.670000;2.735444;1.009000;, + 2.180000;4.040444;1.009000;, + 2.180000;4.040444;1.009000;, + 2.180000;4.040444;1.009000;, + 2.630000;4.040444;1.009000;, + 2.630000;4.040444;1.009000;, + 2.630000;4.040444;1.009000;, + 2.180000;3.545444;1.009000;, + 2.180000;3.545444;1.009000;, + 2.180000;3.545444;1.009000;, + 1.650000;3.545444;1.009000;, + 1.650000;3.545444;1.009000;, + 1.120000;4.040444;1.009000;, + 1.120000;4.040444;1.009000;, + 1.120000;4.040444;1.009000;, + 1.120000;3.545444;1.009000;, + 1.120000;3.545444;1.009000;, + 1.120000;3.545444;1.009000;, + 0.670000;4.040444;1.009000;, + 0.670000;4.040444;1.009000;, + 0.670000;4.040444;1.009000;, + 2.211500;4.924759;0.955231;, + 2.211500;4.924759;0.955231;, + 2.211500;4.924759;0.955231;, + 2.183926;5.309234;0.907731;, + 2.183926;5.309234;0.907731;, + 1.650000;4.924759;0.955231;, + 1.650000;4.924759;0.955231;, + 1.108550;5.309234;0.907731;, + 1.108550;5.309234;0.907731;, + 1.088500;4.924759;0.955231;, + 1.088500;4.924759;0.955231;, + 1.088500;4.924759;0.955231;, + 0.864000;5.747889;1.400000;, + 0.864000;5.747889;1.400000;, + 0.864000;5.747889;1.400000;, + 0.270000;5.747889;1.400000;, + 0.270000;5.747889;1.400000;, + 0.270000;5.747889;1.400000;, + 0.270000;5.747889;1.400000;, + 0.270000;4.472888;1.400000;, + 0.270000;4.472888;1.400000;, + 0.344000;4.439500;1.395000;, + 0.344000;4.439500;1.395000;, + 0.344000;4.439500;1.395000;, + 0.434000;5.122600;1.395000;, + 0.434000;5.122600;1.395000;, + 0.434000;5.122600;1.395000;, + 5.557411;7.308371;1.056685;, + 5.557411;7.308371;1.056685;, + 5.757436;7.308371;1.055375;, + 5.757436;7.308371;1.055375;, + 5.564542;7.308371;1.482253;, + 5.564542;7.308371;1.482253;, + 5.564542;7.308371;1.482253;, + 5.764566;7.308371;1.480943;, + 5.764566;7.308371;1.480943;, + 5.764566;7.308371;1.480943;, + 2.211500;6.391939;1.240231;, + 2.211500;6.391939;1.240231;, + 2.211500;6.899809;1.050231;, + 2.211500;6.899809;1.050231;, + 2.211500;6.899809;1.050231;, + 1.650000;6.391939;1.240231;, + 1.650000;6.899809;1.050231;, + 1.650000;6.899809;1.050231;, + 1.088500;6.391939;1.240231;, + 1.088500;6.391939;1.240231;, + 1.088500;6.899809;1.050231;, + 1.088500;6.899809;1.050231;, + 1.088500;6.899809;1.050231;, + 0.621000;6.553689;1.368093;, + 0.621000;6.553689;1.368093;, + 0.621000;6.553689;1.368093;, + 0.864000;6.512889;1.400000;, + 0.864000;6.512889;1.400000;, + 0.864000;6.512889;1.400000;, + 0.270000;6.512889;1.400000;, + 0.270000;6.512889;1.400000;, + 0.270000;6.512889;1.400000;, + 0.270000;6.512889;1.400000;, + 0.474000;6.505000;1.395000;, + 0.474000;6.505000;1.395000;, + 0.474000;6.505000;1.395000;, + 1.157854;8.456665;1.570000;, + 1.144800;8.335900;1.292500;, + 1.144800;8.335900;1.292500;, + 1.144800;8.417500;1.427500;, + 1.001073;8.438701;1.587800;, + 1.001073;8.438701;1.587800;, + 1.295585;8.438701;1.587800;, + 1.295585;8.438701;1.587800;, + 1.295585;8.438701;1.587800;, + 1.295585;8.438701;1.587800;, + 1.291183;8.380595;1.165000;, + 1.291183;8.380595;1.165000;, + 1.291183;8.380595;1.165000;, + 1.206975;8.252790;1.593860;, + 1.206975;7.730014;1.348713;, + 1.206975;7.730014;1.348713;, + 1.291183;8.380595;1.580000;, + 1.291183;8.380595;1.580000;, + 1.291183;7.708855;1.265000;, + 1.291183;7.708855;1.265000;, + 1.291183;7.708855;1.265000;, + 1.291183;7.708855;1.265000;, + 0.729000;8.335782;1.300000;, + 0.729000;8.335782;1.300000;, + 0.621000;7.481889;1.150000;, + 0.621000;7.481889;1.150000;, + 0.712800;8.335900;1.292500;, + 0.712800;8.335900;1.292500;, + 0.712800;8.417500;1.427500;, + 0.701730;8.380595;1.165000;, + 0.701730;8.380595;1.165000;, + 0.701730;8.380595;1.165000;, + 0.701730;8.380595;1.580000;, + 0.701730;8.380595;1.580000;, + 0.701730;7.708855;1.265000;, + 0.701730;7.708855;1.265000;, + 0.701730;7.708855;1.265000;, + 0.701730;7.708855;1.265000;, + 0.785938;8.252790;1.593860;, + 0.785938;7.730014;1.348713;, + 0.785938;7.730014;1.348713;, + 5.781182;8.999975;1.102299;, + 5.781182;8.999975;1.102299;, + 5.781182;8.999975;1.102299;, + 5.816796;9.094374;1.168299;, + 5.816796;9.094374;1.168299;, + 5.816796;9.094374;1.168299;, + 5.816796;9.094374;1.168299;, + 5.816796;9.849567;1.168299;, + 5.816796;9.849567;1.168299;, + 5.816796;9.849567;1.168299;, + 5.816796;9.849567;1.168299;, + 5.781182;9.943968;1.102299;, + 5.781182;9.943968;1.102299;, + 5.781182;9.943968;1.102299;, + 5.513186;9.980371;0.845168;, + 5.513186;9.980371;0.845168;, + 5.513186;9.980371;0.845168;, + 5.513186;9.836371;0.845168;, + 5.513186;9.836371;0.845168;, + 5.513186;9.836371;0.845168;, + 5.557411;9.428371;1.056685;, + 5.557411;8.948371;1.056685;, + 5.757436;9.428371;1.055375;, + 5.757436;8.948371;1.055375;, + 5.564542;9.428371;1.482253;, + 5.564542;9.428371;1.482253;, + 5.564542;8.948371;1.482253;, + 5.564542;8.948371;1.482253;, + 5.764566;9.428371;1.480943;, + 5.764566;9.428371;1.480943;, + 5.764566;8.948371;1.480943;, + 5.764566;8.948371;1.480943;, + 4.273510;9.094375;1.168299;, + 4.273510;9.094375;1.168299;, + 4.273510;9.094375;1.168299;, + 4.273510;9.094375;1.168299;, + 4.326932;8.999975;1.102299;, + 4.439710;9.094375;1.168299;, + 4.439710;9.094375;1.168299;, + 5.000635;9.094375;1.168299;, + 5.000635;9.094375;1.168299;, + 5.000635;8.999975;1.102299;, + 5.000635;8.999975;1.102299;, + 4.439710;8.999975;1.102299;, + 4.439710;8.999975;1.102299;, + 4.273510;9.849568;1.168299;, + 4.273510;9.849568;1.168299;, + 4.273510;9.849568;1.168299;, + 4.326932;9.943968;1.102299;, + 4.439710;9.849568;1.168299;, + 4.439710;9.849568;1.168299;, + 4.439710;9.943968;1.102299;, + 4.439710;9.943968;1.102299;, + 5.000635;9.943968;1.102299;, + 5.000635;9.943968;1.102299;, + 5.000635;9.849568;1.168299;, + 5.000635;9.849568;1.168299;, + 5.514779;9.908371;0.969597;, + 3.477382;10.049524;1.210001;, + 3.477382;10.049524;1.210001;, + 3.477382;9.541996;1.210001;, + 3.477382;9.541996;1.210001;, + 3.308206;9.330525;1.210001;, + 3.308206;9.330525;1.210001;, + 3.308206;9.330525;1.210001;, + 3.308206;9.330525;1.210001;, + 3.370776;9.681329;1.360001;, + 3.370776;9.681329;1.360001;, + 3.370776;10.087790;1.360001;, + 3.370776;10.087790;1.360001;, + 2.610355;9.541996;1.210000;, + 2.610355;9.541996;1.210000;, + 2.610355;9.541996;1.210000;, + 2.737237;9.330525;1.210000;, + 2.737237;9.330525;1.210000;, + 2.737237;9.330525;1.210000;, + 2.605451;10.087790;1.360000;, + 2.673121;9.681329;1.360000;, + 2.673121;9.681329;1.360000;, + 3.263738;9.504920;1.360001;, + 3.263738;9.504920;1.360001;, + 3.221444;9.664412;1.360001;, + 2.810496;9.504920;1.360000;, + 3.221444;10.087790;1.360001;, + 1.785622;9.541996;1.210000;, + 1.785622;9.541996;1.210000;, + 1.785622;9.541996;1.210000;, + 1.574152;9.711170;1.210000;, + 1.574152;9.711170;1.210000;, + 1.574152;9.711170;1.210000;, + 1.574152;9.711170;1.210000;, + 1.943341;10.228918;1.360000;, + 1.877459;9.681329;1.360000;, + 1.877459;9.681329;1.360000;, + 1.574152;10.218699;1.210000;, + 1.574152;10.218699;1.210000;, + 1.690794;10.228918;1.360000;, + 1.690794;10.228918;1.360000;, + 1.690794;9.822455;1.360000;, + 1.690794;9.822455;1.360000;, + 1.144800;10.003599;1.427500;, + 1.144800;10.105600;1.292500;, + 1.144800;10.105600;1.292500;, + 1.295585;9.903199;1.587800;, + 1.295585;9.903199;1.587800;, + 1.295585;9.903199;1.587800;, + 1.295585;9.903199;1.587800;, + 1.001073;9.903199;1.587800;, + 1.001073;9.903199;1.587800;, + 1.291183;9.629884;2.100000;, + 1.291183;9.629884;2.100000;, + 1.291183;9.629884;2.100000;, + 1.291183;9.629884;1.165000;, + 1.291183;9.629884;1.165000;, + 1.291183;9.629884;1.165000;, + 1.291183;10.090521;1.165000;, + 1.291183;10.090521;1.165000;, + 1.291183;10.090521;1.165000;, + 1.206975;10.200697;2.113860;, + 1.291183;10.090521;2.100000;, + 1.291183;10.090521;2.100000;, + 1.291183;8.914934;1.165000;, + 1.291183;8.914934;1.165000;, + 1.291183;8.914934;1.165000;, + 1.291183;8.914934;1.580000;, + 1.291183;8.914934;1.580000;, + 1.291183;8.914934;1.580000;, + 0.324000;10.031889;1.000000;, + 0.712800;10.003599;1.427500;, + 0.712800;10.105600;1.292500;, + 0.712800;10.105600;1.292500;, + 0.473000;7.990001;1.320000;, + 0.473000;7.990001;1.320000;, + 0.473000;7.990001;1.320000;, + 0.350000;7.990001;1.320000;, + 0.350000;7.990001;1.320000;, + 0.350000;7.990001;1.580000;, + 0.350000;7.990001;1.580000;, + 0.473000;7.990001;1.580000;, + 0.473000;7.990001;1.580000;, + 0.473000;9.840000;1.400000;, + 0.473000;9.840000;1.400000;, + 0.350000;9.840000;1.400000;, + 0.602000;8.120901;1.438300;, + 0.602000;9.824600;1.518300;, + 0.350000;9.716153;1.400000;, + 0.350000;9.716153;1.400000;, + 0.602000;9.714376;1.518300;, + 0.602000;9.714376;1.518300;, + 0.473000;9.716153;1.400000;, + 0.701730;10.090521;1.165000;, + 0.701730;10.090521;1.165000;, + 0.701730;10.090521;1.165000;, + 0.701730;10.090521;2.100000;, + 0.701730;10.090521;2.100000;, + 0.701730;9.629884;2.100000;, + 0.701730;9.629884;2.100000;, + 0.701730;9.629884;2.100000;, + 0.701730;9.629884;1.165000;, + 0.701730;9.629884;1.165000;, + 0.701730;9.629884;1.165000;, + 0.785938;10.200697;2.113860;, + 0.701730;8.914934;1.580000;, + 0.701730;8.914934;1.580000;, + 0.701730;8.914934;1.580000;, + 0.701730;8.914934;1.165000;, + 0.701730;8.914934;1.165000;, + 0.701730;8.914934;1.165000;, + 5.757436;10.788371;1.055375;, + 5.757436;10.788371;1.055375;, + 5.757436;10.788371;1.055375;, + 5.557411;10.788371;1.056685;, + 5.557411;10.788371;1.056685;, + 5.557411;10.788371;1.056685;, + 5.557411;11.108371;1.056685;, + 5.557411;11.108371;1.056685;, + 5.757436;11.108371;1.055375;, + 5.757436;11.108371;1.055375;, + 5.764566;11.108371;1.480943;, + 5.764566;11.108371;1.480943;, + 5.764566;11.108371;1.480943;, + 5.564542;11.108371;1.482253;, + 5.564542;11.108371;1.482253;, + 5.564542;11.108371;1.482253;, + 5.564542;10.788371;1.482253;, + 5.564542;10.788371;1.482253;, + 5.764566;10.788371;1.480943;, + 5.764566;10.788371;1.480943;, + 5.557411;10.948371;1.056685;, + 5.557411;10.948371;1.056685;, + 5.557411;10.948371;1.056685;, + 5.564542;10.948371;1.482253;, + 5.564542;10.948371;1.482253;, + 5.764566;10.948371;1.480943;, + 5.764566;10.948371;1.480943;, + 5.757436;10.948371;1.055375;, + 5.757436;10.948371;1.055375;, + 5.757436;10.948371;1.055375;, + 3.477382;10.768522;1.210001;, + 3.477382;10.768522;1.210001;, + 3.477382;10.768522;1.210001;, + 3.477382;10.768522;1.210001;, + 3.308206;10.895405;1.210001;, + 3.308206;10.895405;1.210001;, + 3.308206;10.895405;1.210001;, + 3.370776;10.653745;1.360001;, + 3.370776;10.653745;1.360001;, + 2.610355;10.895405;1.210000;, + 2.610355;10.895405;1.210000;, + 2.605451;10.759588;1.360000;, + 2.605451;10.759588;1.360000;, + 3.221444;10.759588;1.360001;, + 3.221444;10.759588;1.360001;, + 1.954798;10.895405;1.210000;, + 1.954798;10.895405;1.210000;, + 1.954798;10.895405;1.210000;, + 1.954798;10.895405;1.210000;, + 1.574152;10.514757;1.210000;, + 1.574152;10.514757;1.210000;, + 1.574152;10.514757;1.210000;, + 2.026791;10.759588;1.360000;, + 2.026791;10.759588;1.360000;, + 1.690794;10.442054;1.360000;, + 1.690794;10.442054;1.360000;, + 1.206975;10.651367;1.868713;, + 1.206975;10.651367;1.868713;, + 1.291183;10.669608;1.785000;, + 1.291183;10.669608;1.785000;, + 1.291183;10.669608;1.785000;, + 1.291183;10.669608;1.785000;, + 0.384438;11.348052;1.336887;, + 0.384438;10.811944;1.336887;, + 0.384438;10.811944;1.336887;, + 0.384438;10.811944;1.336887;, + 0.384438;11.621069;1.336887;, + 0.384438;11.621069;1.336887;, + 0.384438;10.303647;1.119859;, + 0.384438;10.303647;1.119859;, + 0.306190;11.694510;1.336887;, + 0.306190;10.811944;1.336887;, + 0.306190;10.811944;1.336887;, + 0.306190;10.811944;1.336887;, + 0.306190;10.303647;1.119859;, + 0.306190;10.303647;1.119859;, + 0.290080;11.185386;0.922292;, + 0.290080;11.185386;0.922292;, + 0.290080;11.154265;0.922292;, + 0.290080;11.154265;0.922292;, + 0.203526;11.460281;0.922292;, + 0.282675;11.429161;0.922292;, + 0.282675;11.429161;0.922292;, + 0.192219;10.728957;0.922292;, + 0.282675;10.760077;0.922292;, + 0.282675;10.760077;0.922292;, + 0.191908;10.391821;0.997700;, + 0.191908;10.391821;0.997700;, + 0.191908;10.827504;0.997700;, + 0.191908;10.827504;0.997700;, + 0.320198;10.370019;1.071678;, + 0.320198;10.370019;1.071678;, + 0.701730;10.669608;1.785000;, + 0.701730;10.669608;1.785000;, + 0.701730;10.669608;1.785000;, + 0.701730;10.669608;1.785000;, + 0.785938;10.651367;1.868713;, + 0.785938;10.651367;1.868713;, + 0.434000;5.117500;1.770000;, + 0.434000;5.117500;1.770000;, + 0.434000;5.117500;1.770000;, + 0.434000;5.117500;1.770000;, + 0.474000;6.403000;1.770000;, + 0.474000;6.403000;1.770000;, + 1.380187;8.442361;1.740032;, + 1.380187;8.442361;1.740032;, + 1.380187;8.442361;1.881088;, + 1.380187;8.442361;1.881088;, + 1.380187;8.442361;1.881088;, + 1.375398;8.500993;1.659580;, + 1.375398;8.500993;1.659580;, + 1.300374;8.378100;1.690000;, + 1.300374;8.378100;1.690000;, + 1.001073;8.378100;1.690000;, + 1.001073;8.378100;1.920000;, + 1.001073;8.378100;1.920000;, + 1.300374;8.378100;1.920000;, + 1.300374;8.378100;1.920000;, + 1.300374;8.378100;1.920000;, + 1.157854;9.729999;1.670000;, + 1.380187;9.932087;2.125760;, + 1.380187;9.932087;1.740032;, + 1.380187;9.932087;1.740032;, + 1.380187;9.193751;2.311072;, + 1.380187;9.193751;2.311072;, + 1.380187;9.786242;2.311072;, + 1.380187;9.786242;2.311072;, + 1.375398;9.853255;1.659580;, + 1.375398;9.853255;1.659580;, + 1.001073;9.165900;2.390000;, + 1.300374;9.165900;2.390000;, + 1.300374;9.165900;2.390000;, + 1.001073;9.822401;2.390000;, + 1.001073;9.822401;2.390000;, + 1.300374;9.822401;2.390000;, + 1.300374;9.822401;2.390000;, + 1.300374;9.822401;2.390000;, + 1.300374;9.822401;2.390000;, + 1.001073;9.984000;2.180000;, + 1.300374;9.984000;2.180000;, + 1.300374;9.984000;2.180000;, + 1.001073;9.984000;1.690000;, + 1.300374;9.984000;1.690000;, + 1.300374;9.984000;1.690000;, + 0.602000;8.120901;1.664500;, + 0.602000;8.120901;1.664500;, + 0.350000;9.731160;1.943483;, + 0.350000;9.731160;1.943483;, + 0.602000;9.727733;1.991131;, + 0.310000;9.017695;1.730000;, + 0.350000;8.980601;1.730000;, + 0.350000;8.980601;1.730000;, + 0.350000;8.266534;1.730000;, + 0.350000;8.266534;1.730000;, + 0.310000;8.229440;1.730000;, + 0.384438;10.811944;1.906371;, + 0.384438;10.811944;1.906371;, + 0.384438;10.811944;1.906371;, + 0.384438;11.434348;2.052865;, + 0.384438;11.434348;2.052865;, + 0.384438;11.434348;2.052865;, + 0.306190;10.811944;1.983195;, + 0.306190;10.811944;1.983195;, + 0.306190;11.507788;2.129689;, + 0.306190;11.507788;2.129689;, + 0.306190;11.507788;2.129689;, + 0.306190;11.507788;2.129689;, + 0.300186;10.544438;1.851922;, + 0.300186;10.544438;1.851922;, + 0.300186;10.957540;1.928746;, + 0.300186;10.957540;1.928746;, + 0.473000;10.370001;2.115000;, + 0.473000;10.370001;2.115000;, + 0.350000;10.370001;2.115000;, + 0.602000;10.285300;2.140350;, + 0.602000;10.285300;2.140350;, + 0.350000;8.929999;2.830000;, + 0.350000;8.929999;2.830000;, + 0.350000;8.929999;2.830000;, + 0.473000;8.929999;2.830000;, + 0.473000;8.929999;2.830000;, + 0.473000;8.929999;2.830000;, + 0.473000;8.929999;2.830000;, + 0.473000;9.770000;3.220000;, + 0.473000;9.770000;3.220000;, + 0.350000;9.770000;3.220000;, + 0.350000;9.770000;3.220000;, + 0.350000;9.770000;3.220000;, + 0.350000;9.770000;3.220000;, + 0.602000;9.014699;2.762400;, + 0.602000;9.014699;2.762400;, + 0.602000;9.014699;2.762400;, + 0.602000;9.762300;3.101700;, + 0.350000;9.755640;2.960000;, + 0.350000;9.755640;2.960000;, + 0.602000;9.749520;2.875500;, + 0.210000;8.377817;2.627000;, + 0.210000;8.377817;2.627000;, + 0.170000;8.452005;2.965000;, + 0.170000;8.452005;2.965000;, + 0.170000;8.452005;2.965000;, + 0.170000;8.804401;2.965000;, + 0.170000;8.804401;2.965000;, + 0.170000;8.804401;2.965000;, + 0.210000;8.860044;2.627000;, + 0.210000;8.860044;2.627000;, + 0.308518;9.017695;2.354001;, + 0.208518;8.924960;2.705000;, + 0.208518;8.924960;2.705000;, + 0.350000;8.979228;2.354001;, + 0.350000;8.979228;2.354001;, + 0.250000;8.886491;2.705000;, + 0.250000;8.886491;2.705000;, + 0.250000;8.886491;2.705000;, + 0.350000;8.267908;2.354001;, + 0.350000;8.267908;2.354001;, + 0.250000;8.360644;2.705000;, + 0.250000;8.360644;2.705000;, + 0.250000;8.360644;2.705000;, + 0.308518;8.229440;2.354001;, + 0.208518;8.322174;2.705000;, + 0.208518;8.322174;2.705000;, + 0.350000;10.300000;3.220000;, + 0.350000;10.300000;3.220000;, + 0.473000;10.300000;3.220000;, + 0.473000;10.300000;3.220000;, + 0.473000;10.300000;3.220000;, + 0.473000;10.300000;3.220000;, + 0.473000;10.370001;3.103000;, + 0.473000;10.370001;3.103000;, + 0.350000;10.370001;3.103000;, + 0.602000;10.285300;2.999910;, + 0.602000;10.285300;2.999910;, + 0.602000;10.223000;3.101700;, + 1.108750;4.035734;0.052731;, + 2.148500;4.277565;-0.215970;, + 2.148500;4.277565;-0.215970;, + 2.148500;4.277565;-0.215970;, + 2.148500;4.035734;-0.327269;, + 2.148500;4.035734;-0.327269;, + 2.148500;3.793904;-0.215970;, + 2.148500;3.793904;-0.215970;, + 2.148500;3.793904;-0.215970;, + 2.148500;3.693734;0.052731;, + 2.148500;3.693734;0.052731;, + 2.191250;4.035734;0.052731;, + 1.650000;4.277565;-0.215970;, + 1.650000;4.277565;-0.215970;, + 1.650000;4.035734;-0.327269;, + 1.650000;3.793904;-0.215970;, + 1.650000;3.793904;-0.215970;, + 1.650000;3.693734;0.052731;, + 1.151500;4.277565;-0.215970;, + 1.151500;4.277565;-0.215970;, + 1.151500;4.277565;-0.215970;, + 1.151500;4.035734;-0.327269;, + 1.151500;4.035734;-0.327269;, + 1.151500;3.793904;-0.215970;, + 1.151500;3.793904;-0.215970;, + 1.151500;3.793904;-0.215970;, + 1.151500;3.693734;0.052731;, + 1.151500;3.693734;0.052731;, + 2.148500;4.377734;0.052731;, + 2.148500;4.377734;0.052731;, + 1.650000;4.377734;0.052731;, + 1.151500;4.377734;0.052731;, + 1.151500;4.377734;0.052731;, + 2.148500;4.277565;0.321432;, + 2.148500;4.277565;0.321432;, + 2.148500;4.277565;0.321432;, + 2.148500;4.035734;0.432731;, + 2.148500;4.035734;0.432731;, + 2.148500;3.793904;0.321432;, + 2.148500;3.793904;0.321432;, + 2.148500;3.793904;0.321432;, + 1.650000;4.035734;0.432731;, + 1.650000;4.277565;0.321432;, + 1.650000;4.277565;0.321432;, + 1.650000;3.793904;0.321432;, + 1.650000;3.793904;0.321432;, + 1.151500;4.277565;0.321432;, + 1.151500;4.277565;0.321432;, + 1.151500;4.277565;0.321432;, + 1.151500;4.035734;0.432731;, + 1.151500;4.035734;0.432731;, + 1.151500;3.793904;0.321432;, + 1.151500;3.793904;0.321432;, + 1.151500;3.793904;0.321432;, + 0.310000;9.735457;2.260000;, + 0.350000;9.698363;2.260000;, + 0.350000;9.698363;2.260000;, + 0.350000;8.984295;2.260000;, + 0.350000;8.984295;2.260000;, + 0.310000;8.947201;2.260000;, + 0.210000;9.095578;3.157000;, + 0.210000;9.095578;3.157000;, + 0.170000;9.169767;3.495000;, + 0.170000;9.169767;3.495000;, + 0.170000;9.169767;3.495000;, + 0.170000;9.522163;3.495000;, + 0.170000;9.522163;3.495000;, + 0.170000;9.522163;3.495000;, + 0.210000;9.577806;3.157000;, + 0.210000;9.577806;3.157000;, + 0.308518;9.735457;2.884000;, + 0.208518;9.642721;3.235000;, + 0.208518;9.642721;3.235000;, + 0.350000;9.696989;2.884000;, + 0.350000;9.696989;2.884000;, + 0.250000;9.604253;3.235000;, + 0.250000;9.604253;3.235000;, + 0.250000;9.604253;3.235000;, + 0.350000;8.985670;2.884000;, + 0.350000;8.985670;2.884000;, + 0.250000;9.078405;3.235000;, + 0.250000;9.078405;3.235000;, + 0.250000;9.078405;3.235000;, + 0.308518;8.947201;2.884000;, + 0.208518;9.039936;3.235000;, + 0.208518;9.039936;3.235000;, + 0.706562;8.438701;1.587800;, + 0.706562;8.438701;1.587800;, + 0.706562;8.438701;1.587800;, + 0.706562;8.438701;1.587800;, + 0.706562;9.903199;1.587800;, + 0.706562;9.903199;1.587800;, + 0.706562;9.903199;1.587800;, + 0.706562;9.903199;1.587800;, + 0.621959;8.442361;1.740032;, + 0.621959;8.442361;1.740032;, + 0.621959;8.442361;1.881088;, + 0.621959;8.442361;1.881088;, + 0.621959;8.442361;1.881088;, + 0.626748;8.500993;1.659580;, + 0.626748;8.500993;1.659580;, + 0.701773;8.378100;1.690000;, + 0.701773;8.378100;1.690000;, + 0.701773;8.378100;1.920000;, + 0.701773;8.378100;1.920000;, + 0.701773;8.378100;1.920000;, + 0.621959;9.932087;2.125760;, + 0.621959;9.932087;1.740032;, + 0.621959;9.932087;1.740032;, + 0.621959;9.193751;2.311072;, + 0.621959;9.193751;2.311072;, + 0.621959;9.786242;2.311072;, + 0.621959;9.786242;2.311072;, + 0.626748;9.853255;1.659580;, + 0.626748;9.853255;1.659580;, + 0.701773;9.165900;2.390000;, + 0.701773;9.165900;2.390000;, + 0.701773;9.822401;2.390000;, + 0.701773;9.822401;2.390000;, + 0.701773;9.822401;2.390000;, + 0.701773;9.822401;2.390000;, + 0.701773;9.984000;2.180000;, + 0.701773;9.984000;2.180000;, + 0.701773;9.984000;1.690000;, + 0.701773;9.984000;1.690000;, + 6.594306;9.104997;0.024595;, + 6.594306;9.104997;0.024595;, + 6.594306;9.104997;0.024595;, + 6.561830;9.228369;-0.117754;, + 6.561830;9.228369;-0.117754;, + 6.561830;9.228369;-0.117754;, + 6.561830;9.093629;-0.249652;, + 6.561830;9.093629;-0.249652;, + 6.561830;9.093629;-0.249652;, + 6.561830;9.235703;-0.119092;, + 6.561830;9.235703;-0.119092;, + 6.561830;9.235703;-0.119092;, + 6.561830;9.385450;-0.133884;, + 6.561830;9.385450;-0.133884;, + 6.561830;9.385450;-0.133884;, + 6.561830;9.364082;-0.284082;, + 6.561830;9.364082;-0.284082;, + 6.561830;9.364082;-0.284082;, + 6.561830;9.094540;-0.257456;, + 6.561830;9.094540;-0.257456;, + 6.561830;9.094540;-0.257456;, + 6.561830;9.404812;-0.108547;, + 6.561830;9.404812;-0.108547;, + 6.561830;9.404812;-0.108547;, + 6.561830;9.551003;-0.018219;, + 6.561830;9.551003;-0.018219;, + 6.561830;9.679543;-0.094811;, + 6.561830;9.679543;-0.094811;, + 6.561830;9.679543;-0.094811;, + 6.561830;9.377419;-0.281490;, + 6.561830;9.377419;-0.281490;, + 6.561830;9.377419;-0.281490;, + 6.756689;9.104997;0.024595;, + 6.756689;9.104997;0.024595;, + 6.756689;9.104997;0.024595;, + 6.789165;9.228369;-0.117754;, + 6.789165;9.228369;-0.117754;, + 6.789165;9.228369;-0.117754;, + 6.789165;9.093629;-0.249652;, + 6.789165;9.093629;-0.249652;, + 6.789165;9.093629;-0.249652;, + 6.740450;9.016507;0.046151;, + 6.740450;9.016507;0.046151;, + 6.740450;9.016507;0.046151;, + 6.610544;9.016507;0.046151;, + 6.610544;9.016507;0.046151;, + 6.610544;9.016507;0.046151;, + 6.789165;9.235703;-0.119092;, + 6.789165;9.235703;-0.119092;, + 6.789165;9.235703;-0.119092;, + 6.789165;9.385450;-0.133884;, + 6.789165;9.385450;-0.133884;, + 6.789165;9.385450;-0.133884;, + 6.789165;9.364082;-0.284082;, + 6.789165;9.364082;-0.284082;, + 6.789165;9.364082;-0.284082;, + 6.789165;9.094540;-0.257456;, + 6.789165;9.094540;-0.257456;, + 6.789165;9.094540;-0.257456;, + 6.789165;9.404812;-0.108547;, + 6.789165;9.404812;-0.108547;, + 6.789165;9.404812;-0.108547;, + 6.789165;9.551003;-0.018219;, + 6.789165;9.551003;-0.018219;, + 6.789165;9.679543;-0.094811;, + 6.789165;9.679543;-0.094811;, + 6.789165;9.679543;-0.094811;, + 6.789165;9.377419;-0.281490;, + 6.789165;9.377419;-0.281490;, + 6.789165;9.377419;-0.281490;, + 6.728245;9.275375;0.120996;, + 6.728245;9.275375;0.120996;, + 6.728245;9.275375;0.120996;, + 6.900592;9.282207;0.093882;, + 6.900592;9.282207;0.093882;, + 6.900592;9.282207;0.093882;, + 6.927647;9.112520;0.093882;, + 6.927647;9.112520;0.093882;, + 6.927647;9.112520;0.093882;, + 6.905502;9.286638;0.093882;, + 6.905502;9.286638;0.093882;, + 6.905502;9.286638;0.093882;, + 6.996336;9.384120;0.093882;, + 6.996336;9.384120;0.093882;, + 6.996336;9.384120;0.093882;, + 7.097478;9.284227;0.093882;, + 7.097478;9.284227;0.093882;, + 7.097478;9.284227;0.093882;, + 6.933978;9.108757;0.093882;, + 6.933978;9.108757;0.093882;, + 6.933978;9.108757;0.093882;, + 6.987667;9.412109;0.093882;, + 6.987667;9.412109;0.093882;, + 6.987667;9.412109;0.093882;, + 6.997853;9.566422;0.093882;, + 6.997853;9.566422;0.093882;, + 7.123692;9.614031;0.093882;, + 7.123692;9.614031;0.093882;, + 7.123692;9.614031;0.093882;, + 7.102638;9.295116;0.093882;, + 7.102638;9.295116;0.093882;, + 7.102638;9.295116;0.093882;, + 6.728245;9.275375;0.256563;, + 6.728245;9.275375;0.256563;, + 6.728245;9.275375;0.256563;, + 6.900592;9.282207;0.283676;, + 6.900592;9.282207;0.283676;, + 6.900592;9.282207;0.283676;, + 6.927647;9.112520;0.283676;, + 6.927647;9.112520;0.283676;, + 6.927647;9.112520;0.283676;, + 6.664969;9.225002;0.243006;, + 6.664969;9.225002;0.243006;, + 6.664969;9.225002;0.243006;, + 6.664969;9.225002;0.134552;, + 6.664969;9.225002;0.134552;, + 6.664969;9.225002;0.134552;, + 6.905502;9.286638;0.283676;, + 6.905502;9.286638;0.283676;, + 6.905502;9.286638;0.283676;, + 6.996336;9.384120;0.283676;, + 6.996336;9.384120;0.283676;, + 6.996336;9.384120;0.283676;, + 7.097478;9.284227;0.283676;, + 7.097478;9.284227;0.283676;, + 7.097478;9.284227;0.283676;, + 6.933978;9.108757;0.283676;, + 6.933978;9.108757;0.283676;, + 6.933978;9.108757;0.283676;, + 6.987667;9.412109;0.283676;, + 6.987667;9.412109;0.283676;, + 6.987667;9.412109;0.283676;, + 6.997853;9.566422;0.283676;, + 6.997853;9.566422;0.283676;, + 7.123692;9.614031;0.283676;, + 7.123692;9.614031;0.283676;, + 7.123692;9.614031;0.283676;, + 7.102638;9.295116;0.283676;, + 7.102638;9.295116;0.283676;, + 7.102638;9.295116;0.283676;, + 6.751895;9.313591;0.331667;, + 6.751895;9.313591;0.331667;, + 6.751895;9.313591;0.331667;, + 6.912178;9.319603;0.304554;, + 6.912178;9.319603;0.304554;, + 6.912178;9.319603;0.304554;, + 6.937339;9.170279;0.304554;, + 6.937339;9.170279;0.304554;, + 6.937339;9.170279;0.304554;, + 6.916745;9.323501;0.304554;, + 6.916745;9.323501;0.304554;, + 6.916745;9.323501;0.304554;, + 7.001220;9.409288;0.304554;, + 7.001220;9.409288;0.304554;, + 7.001220;9.409288;0.304554;, + 7.095283;9.321381;0.304554;, + 7.095283;9.321381;0.304554;, + 7.095283;9.321381;0.304554;, + 6.943227;9.166967;0.304554;, + 6.943227;9.166967;0.304554;, + 6.943227;9.166967;0.304554;, + 6.993157;9.433917;0.304554;, + 6.993157;9.433917;0.304554;, + 6.993157;9.433917;0.304554;, + 7.002631;9.569713;0.304554;, + 7.002631;9.569713;0.304554;, + 7.119660;9.611607;0.304554;, + 7.119660;9.611607;0.304554;, + 7.119660;9.611607;0.304554;, + 7.100082;9.330963;0.304554;, + 7.100082;9.330963;0.304554;, + 7.100082;9.330963;0.304554;, + 6.751895;9.313591;0.467235;, + 6.751895;9.313591;0.467235;, + 6.751895;9.313591;0.467235;, + 6.912178;9.319603;0.494348;, + 6.912178;9.319603;0.494348;, + 6.912178;9.319603;0.494348;, + 6.937339;9.170279;0.494348;, + 6.937339;9.170279;0.494348;, + 6.937339;9.170279;0.494348;, + 6.693048;9.269262;0.453678;, + 6.693048;9.269262;0.453678;, + 6.693048;9.269262;0.453678;, + 6.693048;9.269262;0.345224;, + 6.693048;9.269262;0.345224;, + 6.693048;9.269262;0.345224;, + 6.916745;9.323501;0.494348;, + 6.916745;9.323501;0.494348;, + 6.916745;9.323501;0.494348;, + 7.001220;9.409288;0.494348;, + 7.001220;9.409288;0.494348;, + 7.001220;9.409288;0.494348;, + 7.095283;9.321381;0.494348;, + 7.095283;9.321381;0.494348;, + 7.095283;9.321381;0.494348;, + 6.943227;9.166967;0.494348;, + 6.943227;9.166967;0.494348;, + 6.943227;9.166967;0.494348;, + 6.993157;9.433917;0.494348;, + 6.993157;9.433917;0.494348;, + 6.993157;9.433917;0.494348;, + 7.002631;9.569713;0.494348;, + 7.002631;9.569713;0.494348;, + 7.119660;9.611607;0.494348;, + 7.119660;9.611607;0.494348;, + 7.119660;9.611607;0.494348;, + 7.100082;9.330963;0.494348;, + 7.100082;9.330963;0.494348;, + 7.100082;9.330963;0.494348;, + 6.728245;9.275375;-0.089676;, + 6.728245;9.275375;-0.089676;, + 6.728245;9.275375;-0.089676;, + 6.900592;9.282207;-0.116790;, + 6.900592;9.282207;-0.116790;, + 6.900592;9.282207;-0.116790;, + 6.927647;9.112520;-0.116790;, + 6.927647;9.112520;-0.116790;, + 6.927647;9.112520;-0.116790;, + 6.905502;9.286638;-0.116790;, + 6.905502;9.286638;-0.116790;, + 6.905502;9.286638;-0.116790;, + 6.996336;9.384120;-0.116790;, + 6.996336;9.384120;-0.116790;, + 6.996336;9.384120;-0.116790;, + 7.097478;9.284227;-0.116790;, + 7.097478;9.284227;-0.116790;, + 7.097478;9.284227;-0.116790;, + 6.933978;9.108757;-0.116790;, + 6.933978;9.108757;-0.116790;, + 6.933978;9.108757;-0.116790;, + 6.987667;9.412109;-0.116790;, + 6.987667;9.412109;-0.116790;, + 6.987667;9.412109;-0.116790;, + 6.997853;9.566422;-0.116790;, + 6.997853;9.566422;-0.116790;, + 7.123692;9.614031;-0.116790;, + 7.123692;9.614031;-0.116790;, + 7.123692;9.614031;-0.116790;, + 7.102638;9.295116;-0.116790;, + 7.102638;9.295116;-0.116790;, + 7.102638;9.295116;-0.116790;, + 6.728245;9.275375;0.045891;, + 6.728245;9.275375;0.045891;, + 6.728245;9.275375;0.045891;, + 6.900592;9.282207;0.073004;, + 6.900592;9.282207;0.073004;, + 6.900592;9.282207;0.073004;, + 6.927647;9.112520;0.073004;, + 6.927647;9.112520;0.073004;, + 6.927647;9.112520;0.073004;, + 6.664969;9.225002;0.032334;, + 6.664969;9.225002;0.032334;, + 6.664969;9.225002;0.032334;, + 6.664969;9.225002;-0.076120;, + 6.664969;9.225002;-0.076120;, + 6.664969;9.225002;-0.076120;, + 6.905502;9.286638;0.073004;, + 6.905502;9.286638;0.073004;, + 6.905502;9.286638;0.073004;, + 6.996336;9.384120;0.073004;, + 6.996336;9.384120;0.073004;, + 6.996336;9.384120;0.073004;, + 7.097478;9.284227;0.073004;, + 7.097478;9.284227;0.073004;, + 7.097478;9.284227;0.073004;, + 6.933978;9.108757;0.073004;, + 6.933978;9.108757;0.073004;, + 6.933978;9.108757;0.073004;, + 6.987667;9.412109;0.073004;, + 6.987667;9.412109;0.073004;, + 6.987667;9.412109;0.073004;, + 6.997853;9.566422;0.073004;, + 6.997853;9.566422;0.073004;, + 7.123692;9.614031;0.073004;, + 7.123692;9.614031;0.073004;, + 7.123692;9.614031;0.073004;, + 7.102638;9.295116;0.073004;, + 7.102638;9.295116;0.073004;, + 7.102638;9.295116;0.073004;, + 1.567670;5.483616;0.004405;, + 1.567670;5.483616;0.004405;, + 1.567670;5.404343;-0.032080;, + 1.567670;5.325069;0.004405;, + 1.567670;5.325069;0.004405;, + 1.567670;5.292233;0.092487;, + 0.832316;5.483616;0.004405;, + 0.832316;5.483616;0.004405;, + 0.832316;5.404343;-0.032080;, + 0.832316;5.325069;0.004405;, + 0.832316;5.325069;0.004405;, + 0.832316;5.292233;0.092487;, + 0.096963;5.483616;0.004405;, + 0.096963;5.483616;0.004405;, + 0.096963;5.404343;-0.032080;, + 0.096963;5.325069;0.004405;, + 0.096963;5.325069;0.004405;, + 0.096963;5.292233;0.092487;, + 1.567670;5.516453;0.092487;, + 0.832316;5.516453;0.092487;, + 0.096963;5.516453;0.092487;, + 1.567670;5.483616;0.180569;, + 1.567670;5.483616;0.180569;, + 1.567670;5.404343;0.217054;, + 1.567670;5.325069;0.180569;, + 1.567670;5.325069;0.180569;, + 0.832316;5.404343;0.217054;, + 0.832316;5.483616;0.180569;, + 0.832316;5.483616;0.180569;, + 0.832316;5.325069;0.180569;, + 0.832316;5.325069;0.180569;, + 0.096963;5.483616;0.180569;, + 0.096963;5.483616;0.180569;, + 0.096963;5.404343;0.217054;, + 0.096963;5.325069;0.180569;, + 0.096963;5.325069;0.180569;, + 1.567670;6.178721;-0.218650;, + 1.567670;6.178721;-0.218650;, + 1.567670;5.914475;-0.340266;, + 1.567670;5.650230;-0.218650;, + 1.567670;5.650230;-0.218650;, + 1.567670;5.540776;0.074957;, + 0.832316;6.178721;-0.218650;, + 0.832316;6.178721;-0.218650;, + 0.832316;5.914475;-0.340266;, + 0.832316;5.650230;-0.218650;, + 0.832316;5.650230;-0.218650;, + 0.832316;5.540776;0.074957;, + 0.096963;6.178721;-0.218650;, + 0.096963;6.178721;-0.218650;, + 0.096963;5.914475;-0.340266;, + 0.096963;5.650230;-0.218650;, + 0.096963;5.650230;-0.218650;, + 0.096963;5.540776;0.074957;, + 1.567670;6.288176;0.074957;, + 0.832316;6.288176;0.074957;, + 0.096963;6.288176;0.074957;, + 1.567670;6.178721;0.368563;, + 1.567670;6.178721;0.368563;, + 1.567670;5.914475;0.490179;, + 1.567670;5.650230;0.368563;, + 1.567670;5.650230;0.368563;, + 0.832316;5.914475;0.490179;, + 0.832316;6.178721;0.368563;, + 0.832316;6.178721;0.368563;, + 0.832316;5.650230;0.368563;, + 0.832316;5.650230;0.368563;, + 0.096963;6.178721;0.368563;, + 0.096963;6.178721;0.368563;, + 0.096963;5.914475;0.490179;, + 0.096963;5.650230;0.368563;, + 0.096963;5.650230;0.368563;, + 3.694536;9.277638;0.149999;, + 3.694536;9.277638;0.149999;, + 3.694536;9.650759;0.149999;, + 3.694536;9.650759;0.149999;, + 4.152457;9.650759;0.149999;, + 4.152457;9.650759;0.149999;, + 4.152457;9.277638;0.149999;, + 4.152457;9.277638;0.149999;, + 4.332345;9.277638;0.662131;, + 4.332345;9.277638;0.662131;, + 4.332345;9.277638;0.662131;, + 4.332345;9.650759;0.662131;, + 4.332345;9.650759;0.662131;, + 4.332345;9.650759;0.662131;, + 4.406857;9.650759;0.449999;, + 4.406857;9.650759;0.449999;, + 4.406857;9.277638;0.449999;, + 4.406857;9.277638;0.449999;, + 4.332345;9.277638;0.237867;, + 4.332345;9.277638;0.237867;, + 4.332345;9.277638;0.237867;, + 4.332345;9.650759;0.237867;, + 4.332345;9.650759;0.237867;, + 4.332345;9.650759;0.237867;, + 3.514649;9.277638;0.662131;, + 3.514649;9.277638;0.662131;, + 3.514649;9.277638;0.662131;, + 3.440137;9.277638;0.449999;, + 3.440137;9.277638;0.449999;, + 3.440137;9.650759;0.449999;, + 3.440137;9.650759;0.449999;, + 3.514649;9.650759;0.662131;, + 3.514649;9.650759;0.662131;, + 3.514649;9.650759;0.662131;, + 3.514649;9.277638;0.237867;, + 3.514649;9.277638;0.237867;, + 3.514649;9.277638;0.237867;, + 3.514649;9.650759;0.237867;, + 3.514649;9.650759;0.237867;, + 3.514649;9.650759;0.237867;, + 3.694537;9.650759;0.749999;, + 3.694537;9.650759;0.749999;, + 3.694537;9.277638;0.749999;, + 3.694537;9.277638;0.749999;, + 4.152457;9.277638;0.749999;, + 4.152457;9.277638;0.749999;, + 4.152457;9.650759;0.749999;, + 4.152457;9.650759;0.749999;, + 3.348027;9.908371;-0.050170;, + 3.460232;9.972371;0.029085;, + 3.460232;9.972371;0.029085;, + 3.460232;9.972371;0.029085;, + 3.349367;10.036371;0.029811;, + 3.349367;10.036371;0.029811;, + 3.349367;10.036371;0.029811;, + 3.460232;9.844371;0.029085;, + 3.460232;9.844371;0.029085;, + 3.460232;9.844371;0.029085;, + 3.349367;9.780371;0.029811;, + 3.349367;9.780371;0.029811;, + 3.349367;9.780371;0.029811;, + 3.238502;9.844371;0.030537;, + 3.238502;9.844371;0.030537;, + 3.238502;9.844371;0.030537;, + 3.238502;9.972371;0.030537;, + 3.238502;9.972371;0.030537;, + 3.238502;9.972371;0.030537;, + 3.363439;10.036371;0.869615;, + 3.363439;10.036371;0.869615;, + 3.363439;10.036371;0.869615;, + 3.474304;9.972371;0.868889;, + 3.474304;9.972371;0.868889;, + 3.474304;9.972371;0.868889;, + 3.474304;9.844371;0.868889;, + 3.474304;9.844371;0.868889;, + 3.474304;9.844371;0.868889;, + 3.363439;9.780371;0.869615;, + 3.363439;9.780371;0.869615;, + 3.363439;9.780371;0.869615;, + 3.252574;9.844371;0.870341;, + 3.252574;9.844371;0.870341;, + 3.252574;9.844371;0.870341;, + 3.252574;9.972371;0.870341;, + 3.252574;9.972371;0.870341;, + 3.252574;9.972371;0.870341;, + 3.364779;9.908371;0.949597;, + 4.548027;9.908371;-0.030170;, + 4.660232;9.972371;0.049085;, + 4.660232;9.972371;0.049085;, + 4.660232;9.972371;0.049085;, + 4.549367;10.036371;0.049811;, + 4.549367;10.036371;0.049811;, + 4.549367;10.036371;0.049811;, + 4.660232;9.844371;0.049085;, + 4.660232;9.844371;0.049085;, + 4.660232;9.844371;0.049085;, + 4.549367;9.780371;0.049811;, + 4.549367;9.780371;0.049811;, + 4.549367;9.780371;0.049811;, + 4.438502;9.844371;0.050537;, + 4.438502;9.844371;0.050537;, + 4.438502;9.844371;0.050537;, + 4.438502;9.972371;0.050537;, + 4.438502;9.972371;0.050537;, + 4.438502;9.972371;0.050537;, + 4.563439;10.036371;0.889615;, + 4.563439;10.036371;0.889615;, + 4.563439;10.036371;0.889615;, + 4.674304;9.972371;0.888889;, + 4.674304;9.972371;0.888889;, + 4.674304;9.972371;0.888889;, + 4.674304;9.844371;0.888889;, + 4.674304;9.844371;0.888889;, + 4.674304;9.844371;0.888889;, + 4.563439;9.780371;0.889615;, + 4.563439;9.780371;0.889615;, + 4.563439;9.780371;0.889615;, + 4.452574;9.844371;0.890341;, + 4.452574;9.844371;0.890341;, + 4.452574;9.844371;0.890341;, + 4.452574;9.972371;0.890341;, + 4.452574;9.972371;0.890341;, + 4.452574;9.972371;0.890341;, + 4.564779;9.908371;0.969597;, + -2.707828;4.823319;-0.707269;, + -2.707828;4.823319;-0.707269;, + -2.707828;5.246544;-1.134769;, + -2.707828;5.246544;-1.134769;, + -2.873270;4.936180;-0.707269;, + -2.873270;4.936180;-0.707269;, + -2.873270;4.936180;-0.707269;, + -2.873270;5.246544;-1.030269;, + -2.873270;5.246544;-1.030269;, + -2.873270;5.246544;-1.030269;, + -2.211500;4.823319;-0.707269;, + -2.211500;4.823319;-0.707269;, + -2.211500;4.823319;-0.707269;, + -2.211500;5.246544;-1.134769;, + -2.211500;5.246544;-1.134769;, + -2.211500;5.246544;-1.134769;, + -2.707828;6.629079;-0.659769;, + -2.707828;6.629079;-0.659769;, + -2.873270;6.516219;-0.612269;, + -2.873270;6.516219;-0.612269;, + -2.873270;6.516219;-0.612269;, + -2.211500;6.629079;-0.659769;, + -2.211500;6.629079;-0.659769;, + -2.211500;6.629079;-0.659769;, + -2.707828;4.823319;1.192731;, + -2.707828;4.823319;1.192731;, + -2.707828;5.133684;1.430231;, + -2.707828;5.133684;1.430231;, + -2.873270;5.133684;1.335231;, + -2.873270;5.133684;1.335231;, + -2.873270;4.936180;1.192731;, + -2.873270;4.936180;1.192731;, + -2.873270;4.936180;1.192731;, + -2.873270;4.936180;1.192731;, + -2.211500;5.133684;1.430231;, + -2.211500;5.133684;1.430231;, + -2.211500;5.133684;1.430231;, + -2.211500;4.823319;1.192731;, + -2.211500;4.823319;1.192731;, + -2.211500;4.823319;1.192731;, + -2.654750;5.518734;1.240231;, + -2.654750;5.518734;1.591731;, + -2.654750;5.518734;1.591731;, + -2.707828;6.629079;1.430231;, + -2.707828;6.629079;1.430231;, + -2.707828;6.629079;1.430231;, + -2.707828;6.629079;1.430231;, + -2.873270;6.516219;1.335231;, + -2.873270;6.516219;1.335231;, + -2.873270;6.516219;1.335231;, + -2.604665;5.639649;1.240231;, + -2.604665;5.639649;1.240231;, + -2.604665;5.639649;1.591731;, + -2.604665;5.639649;1.591731;, + -2.604665;5.639649;1.591731;, + -2.483750;5.689734;1.591731;, + -2.483750;5.689734;1.591731;, + -2.483750;5.689734;1.240231;, + -2.604665;5.397819;1.240231;, + -2.604665;5.397819;1.240231;, + -2.604665;5.397819;1.591731;, + -2.604665;5.397819;1.591731;, + -2.604665;5.397819;1.591731;, + -2.483750;5.347734;1.240231;, + -2.483750;5.347734;1.591731;, + -2.483750;5.347734;1.591731;, + -2.362835;5.397819;1.240231;, + -2.362835;5.397819;1.240231;, + -2.362835;5.397819;1.591731;, + -2.362835;5.397819;1.591731;, + -2.362835;5.397819;1.591731;, + -2.312750;5.518734;1.240231;, + -2.312750;5.518734;1.591731;, + -2.312750;5.518734;1.591731;, + -2.362835;5.639649;1.240231;, + -2.362835;5.639649;1.240231;, + -2.362835;5.639649;1.591731;, + -2.362835;5.639649;1.591731;, + -2.362835;5.639649;1.591731;, + -2.483750;5.518734;1.591731;, + -2.211500;6.629079;1.430231;, + -2.211500;6.629079;1.430231;, + -2.211500;6.629079;1.430231;, + -2.654750;6.378734;1.240231;, + -2.654750;6.378734;1.591731;, + -2.654750;6.378734;1.591731;, + -2.604665;6.499649;1.240231;, + -2.604665;6.499649;1.240231;, + -2.604665;6.499649;1.591731;, + -2.604665;6.499649;1.591731;, + -2.604665;6.499649;1.591731;, + -2.483750;6.549734;1.591731;, + -2.483750;6.549734;1.591731;, + -2.483750;6.549734;1.240231;, + -2.604665;6.257819;1.240231;, + -2.604665;6.257819;1.240231;, + -2.604665;6.257819;1.591731;, + -2.604665;6.257819;1.591731;, + -2.604665;6.257819;1.591731;, + -2.483750;6.207734;1.240231;, + -2.483750;6.207734;1.591731;, + -2.483750;6.207734;1.591731;, + -2.362835;6.257819;1.240231;, + -2.362835;6.257819;1.240231;, + -2.362835;6.257819;1.591731;, + -2.362835;6.257819;1.591731;, + -2.362835;6.257819;1.591731;, + -2.312750;6.378734;1.240231;, + -2.312750;6.378734;1.591731;, + -2.312750;6.378734;1.591731;, + -2.362835;6.499649;1.240231;, + -2.362835;6.499649;1.240231;, + -2.362835;6.499649;1.591731;, + -2.362835;6.499649;1.591731;, + -2.362835;6.499649;1.591731;, + -2.483750;6.378734;1.591731;, + -2.654750;5.948734;1.240231;, + -2.654750;5.948734;1.591731;, + -2.654750;5.948734;1.591731;, + -2.604665;6.069649;1.240231;, + -2.604665;6.069649;1.240231;, + -2.604665;6.069649;1.591731;, + -2.604665;6.069649;1.591731;, + -2.604665;6.069649;1.591731;, + -2.483750;6.119734;1.591731;, + -2.483750;6.119734;1.591731;, + -2.483750;6.119734;1.240231;, + -2.604665;5.827818;1.240231;, + -2.604665;5.827818;1.240231;, + -2.604665;5.827818;1.591731;, + -2.604665;5.827818;1.591731;, + -2.604665;5.827818;1.591731;, + -2.483750;5.777734;1.240231;, + -2.483750;5.777734;1.591731;, + -2.483750;5.777734;1.591731;, + -2.362835;5.827818;1.240231;, + -2.362835;5.827818;1.240231;, + -2.362835;5.827818;1.591731;, + -2.362835;5.827818;1.591731;, + -2.362835;5.827818;1.591731;, + -2.312750;5.948734;1.240231;, + -2.312750;5.948734;1.591731;, + -2.312750;5.948734;1.591731;, + -2.362835;6.069649;1.240231;, + -2.362835;6.069649;1.240231;, + -2.362835;6.069649;1.591731;, + -2.362835;6.069649;1.591731;, + -2.362835;6.069649;1.591731;, + -2.483750;5.948734;1.591731;, + 2.707828;4.823319;-0.707269;, + 2.707828;4.823319;-0.707269;, + 2.707828;5.246544;-1.134769;, + 2.707828;5.246544;-1.134769;, + 2.873270;4.936180;-0.707269;, + 2.873270;4.936180;-0.707269;, + 2.873270;4.936180;-0.707269;, + 2.873270;5.246544;-1.030269;, + 2.873270;5.246544;-1.030269;, + 2.873270;5.246544;-1.030269;, + 2.211500;4.823319;-0.707269;, + 2.211500;4.823319;-0.707269;, + 2.211500;4.823319;-0.707269;, + 2.211500;5.246544;-1.134769;, + 2.211500;5.246544;-1.134769;, + 2.211500;5.246544;-1.134769;, + 2.707828;6.629079;-0.659769;, + 2.707828;6.629079;-0.659769;, + 2.873270;6.516219;-0.612269;, + 2.873270;6.516219;-0.612269;, + 2.873270;6.516219;-0.612269;, + 2.211500;6.629079;-0.659769;, + 2.211500;6.629079;-0.659769;, + 2.211500;6.629079;-0.659769;, + 2.707828;4.823319;1.192731;, + 2.707828;4.823319;1.192731;, + 2.707828;5.133684;1.430231;, + 2.707828;5.133684;1.430231;, + 2.873270;5.133684;1.335231;, + 2.873270;5.133684;1.335231;, + 2.873270;4.936180;1.192731;, + 2.873270;4.936180;1.192731;, + 2.873270;4.936180;1.192731;, + 2.873270;4.936180;1.192731;, + 2.211500;5.133684;1.430231;, + 2.211500;5.133684;1.430231;, + 2.211500;5.133684;1.430231;, + 2.211500;4.823319;1.192731;, + 2.211500;4.823319;1.192731;, + 2.211500;4.823319;1.192731;, + 2.654750;5.518734;1.240231;, + 2.654750;5.518734;1.591731;, + 2.654750;5.518734;1.591731;, + 2.707828;6.629079;1.430231;, + 2.707828;6.629079;1.430231;, + 2.707828;6.629079;1.430231;, + 2.707828;6.629079;1.430231;, + 2.873270;6.516219;1.335231;, + 2.873270;6.516219;1.335231;, + 2.873270;6.516219;1.335231;, + 2.604665;5.639649;1.240231;, + 2.604665;5.639649;1.240231;, + 2.604665;5.639649;1.591731;, + 2.604665;5.639649;1.591731;, + 2.604665;5.639649;1.591731;, + 2.483750;5.689734;1.591731;, + 2.483750;5.689734;1.591731;, + 2.483750;5.689734;1.240231;, + 2.604665;5.397819;1.240231;, + 2.604665;5.397819;1.240231;, + 2.604665;5.397819;1.591731;, + 2.604665;5.397819;1.591731;, + 2.604665;5.397819;1.591731;, + 2.483750;5.347734;1.240231;, + 2.483750;5.347734;1.591731;, + 2.483750;5.347734;1.591731;, + 2.362835;5.397819;1.240231;, + 2.362835;5.397819;1.240231;, + 2.362835;5.397819;1.591731;, + 2.362835;5.397819;1.591731;, + 2.362835;5.397819;1.591731;, + 2.312750;5.518734;1.240231;, + 2.312750;5.518734;1.591731;, + 2.312750;5.518734;1.591731;, + 2.362835;5.639649;1.240231;, + 2.362835;5.639649;1.240231;, + 2.362835;5.639649;1.591731;, + 2.362835;5.639649;1.591731;, + 2.362835;5.639649;1.591731;, + 2.483750;5.518734;1.591731;, + 2.211500;6.629079;1.430231;, + 2.211500;6.629079;1.430231;, + 2.211500;6.629079;1.430231;, + 2.654750;6.378734;1.240231;, + 2.654750;6.378734;1.591731;, + 2.654750;6.378734;1.591731;, + 2.604665;6.499649;1.240231;, + 2.604665;6.499649;1.240231;, + 2.604665;6.499649;1.591731;, + 2.604665;6.499649;1.591731;, + 2.604665;6.499649;1.591731;, + 2.483750;6.549734;1.591731;, + 2.483750;6.549734;1.591731;, + 2.483750;6.549734;1.240231;, + 2.604665;6.257819;1.240231;, + 2.604665;6.257819;1.240231;, + 2.604665;6.257819;1.591731;, + 2.604665;6.257819;1.591731;, + 2.604665;6.257819;1.591731;, + 2.483750;6.207734;1.240231;, + 2.483750;6.207734;1.591731;, + 2.483750;6.207734;1.591731;, + 2.362835;6.257819;1.240231;, + 2.362835;6.257819;1.240231;, + 2.362835;6.257819;1.591731;, + 2.362835;6.257819;1.591731;, + 2.362835;6.257819;1.591731;, + 2.312750;6.378734;1.240231;, + 2.312750;6.378734;1.591731;, + 2.312750;6.378734;1.591731;, + 2.362835;6.499649;1.240231;, + 2.362835;6.499649;1.240231;, + 2.362835;6.499649;1.591731;, + 2.362835;6.499649;1.591731;, + 2.362835;6.499649;1.591731;, + 2.483750;6.378734;1.591731;, + 2.654750;5.948734;1.240231;, + 2.654750;5.948734;1.591731;, + 2.654750;5.948734;1.591731;, + 2.604665;6.069649;1.240231;, + 2.604665;6.069649;1.240231;, + 2.604665;6.069649;1.591731;, + 2.604665;6.069649;1.591731;, + 2.604665;6.069649;1.591731;, + 2.483750;6.119734;1.591731;, + 2.483750;6.119734;1.591731;, + 2.483750;6.119734;1.240231;, + 2.604665;5.827818;1.240231;, + 2.604665;5.827818;1.240231;, + 2.604665;5.827818;1.591731;, + 2.604665;5.827818;1.591731;, + 2.604665;5.827818;1.591731;, + 2.483750;5.777734;1.240231;, + 2.483750;5.777734;1.591731;, + 2.483750;5.777734;1.591731;, + 2.362835;5.827818;1.240231;, + 2.362835;5.827818;1.240231;, + 2.362835;5.827818;1.591731;, + 2.362835;5.827818;1.591731;, + 2.362835;5.827818;1.591731;, + 2.312750;5.948734;1.240231;, + 2.312750;5.948734;1.591731;, + 2.312750;5.948734;1.591731;, + 2.362835;6.069649;1.240231;, + 2.362835;6.069649;1.240231;, + 2.362835;6.069649;1.591731;, + 2.362835;6.069649;1.591731;, + 2.362835;6.069649;1.591731;, + 2.483750;5.948734;1.591731;, + 0.000000;9.716153;1.400000;, + 0.000000;9.840000;1.400000;, + -0.306190;11.237254;0.797501;, + 0.000000;11.237254;0.797501;, + 0.306190;11.237254;0.797501;, + 0.000000;9.731160;1.943483;, + 0.000000;9.755640;2.960000;, + 0.000000;9.770000;3.220000;, + 0.000000;9.770000;3.220000;, + 0.000000;10.370001;2.115000;, + 0.000000;10.370001;3.103000;, + 0.000000;10.300000;3.220000;, + 0.000000;10.300000;3.220000;; + 4816; + 3;5614,5579,5576;, + 3;1063,1747,1729;, + 3;1068,1035,1038;, + 3;1064,1705,1041;, + 3;1074,1152,1162;, + 3;1045,1042,1154;, + 3;1042,1745,1154;, + 3;1069,1046,1066;, + 3;1039,1042,1045;, + 3;1071,1043,1036;, + 3;1070,1063,1072;, + 3;1066,1044,1074;, + 3;1066,1162,1158;, + 3;1163,1155,1159;, + 3;1046,1152,1044;, + 3;1746,1160,1156;, + 3;1047,0,1;, + 3;740,2279,1047;, + 3;2,1936,740;, + 3;446,764,447;, + 3;762,5,765;, + 3;446,6,7;, + 3;420,737,422;, + 3;1958,1959,1961;, + 3;425,193,9;, + 3;426,766,194;, + 3;1917,737,736;, + 3;1962,766,739;, + 3;421,427,425;, + 3;738,426,423;, + 3;738,1962,739;, + 3;1918,1961,1919;, + 3;1075,1749,1751;, + 3;90,195,234;, + 3;90,234,92;, + 3;196,94,198;, + 3;91,96,95;, + 3;767,463,465;, + 3;466,468,470;, + 3;93,97,96;, + 3;470,478,472;, + 3;467,448,768;, + 3;237,195,448;, + 3;471,237,467;, + 3;238,234,237;, + 3;471,239,238;, + 3;238,235,92;, + 3;770,449,450;, + 3;199,449,197;, + 3;478,240,472;, + 3;241,236,240;, + 3;452,201,454;, + 3;202,454,201;, + 3;242,201,452;, + 3;84,201,204;, + 3;242,99,204;, + 3;204,99,84;, + 3;455,459,453;, + 3;456,205,457;, + 3;452,243,242;, + 3;202,86,206;, + 3;99,243,100;, + 3;84,100,87;, + 3;178,244,209;, + 3;180,227,184;, + 3;229,248,231;, + 3;245,214,249;, + 3;211,189,215;, + 3;185,187,181;, + 3;192,222,178;, + 3;228,229,231;, + 3;210,190,179;, + 3;209,250,216;, + 3;244,232,251;, + 3;178,186,192;, + 3;233,232,222;, + 3;192,227,233;, + 3;774,1048,741;, + 3;743,223,182;, + 3;1053,246,230;, + 3;1079,212,245;, + 3;777,188,213;, + 3;744,188,746;, + 3;224,1053,230;, + 3;747,1048,1054;, + 3;775,746,777;, + 3;1076,1053,1049;, + 3;776,1079,1077;, + 3;748,1050,745;, + 3;1055,1053,1051;, + 3;742,744,746;, + 3;72,163,166;, + 3;61,385,63;, + 3;65,137,61;, + 3;386,76,63;, + 3;431,73,77;, + 3;144,169,172;, + 3;173,434,10;, + 3;146,435,170;, + 3;145,389,147;, + 3;391,1922,436;, + 3;1874,394,1877;, + 3;1923,1878,1925;, + 3;1881,1926,1879;, + 3;1924,439,437;, + 3;1929,440,1927;, + 3;438,395,392;, + 3;442,395,441;, + 3;12,151,154;, + 3;400,1880,396;, + 3;13,1879,1882;, + 3;155,397,398;, + 3;149,396,152;, + 3;2214,2315,2318;, + 3;2218,2214,2318;, + 3;2214,1755,2215;, + 3;1758,2215,1755;, + 3;2218,1753,2214;, + 3;1164,1755,1167;, + 3;1760,6191,1754;, + 3;1765,6191,1763;, + 3;2219,1764,1761;, + 3;2223,1764,2222;, + 3;2319,2321,2323;, + 3;2327,2324,2321;, + 3;2224,2322,2226;, + 3;2316,2226,2322;, + 3;1754,1767,1756;, + 3;6192,1767,6191;, + 3;2329,2222,2325;, + 3;2219,2326,2222;, + 3;1770,2230,1772;, + 3;2220,1773,2231;, + 3;2216,2231,2227;, + 3;2229,2228,2230;, + 3;1168,1172,1165;, + 3;1757,1170,1169;, + 3;1759,1173,1773;, + 3;1767,1771,1774;, + 3;479,485,489;, + 3;1775,1176,1777;, + 3;2232,1777,2234;, + 3;1176,1178,1180;, + 3;479,1180,1178;, + 3;1182,1779,1780;, + 3;1184,1779,1183;, + 3;1780,2236,14;, + 3;1781,2236,1779;, + 3;15,1783,1784;, + 3;2240,1783,2239;, + 3;491,495,496;, + 3;495,497,500;, + 3;502,505,506;, + 3;508,506,505;, + 3;513,515,517;, + 3;514,519,515;, + 3;486,521,524;, + 3;527,519,518;, + 3;1186,495,500;, + 3;1189,495,1188;, + 3;1189,1183,1182;, + 3;1186,1183,1188;, + 3;1190,1193,1194;, + 3;1196,1193,1192;, + 3;1196,505,504;, + 3;1190,505,1192;, + 3;1197,1783,1193;, + 3;1785,1193,1783;, + 3;513,493,492;, + 3;520,522,516;, + 3;503,528,527;, + 3;1179,501,480;, + 3;480,498,481;, + 3;482,493,523;, + 3;523,517,515;, + 3;1174,1187,1179;, + 3;1776,1185,1174;, + 3;2233,1782,1776;, + 3;1181,1195,1177;, + 3;1177,1786,1778;, + 3;1778,2241,2235;, + 3;490,1191,1181;, + 3;487,509,490;, + 3;525,510,488;, + 3;519,507,525;, + 3;1198,1789,1200;, + 3;1787,1794,1790;, + 3;1204,1795,1792;, + 3;1210,1212,1213;, + 3;1201,1796,1206;, + 3;1199,1211,1210;, + 3;1199,1213,1205;, + 3;1213,1207,1205;, + 3;1202,1212,1211;, + 3;1214,2244,1216;, + 3;1214,1220,1223;, + 3;1221,1228,1224;, + 3;2245,1230,1217;, + 3;2242,1232,2247;, + 3;1217,2246,1230;, + 3;2242,1232,2247;, + 3;1215,1229,1232;, + 3;1231,1222,1218;, + 3;2248,2333,16;, + 3;2331,17,2334;, + 3;2249,2335,2331;, + 3;78,68,64;, + 3;82,167,174;, + 3;164,175,168;, + 3;428,176,165;, + 3;387,445,432;, + 3;401,138,156;, + 3;156,141,157;, + 3;158,66,69;, + 3;62,70,67;, + 3;64,71,62;, + 3;74,80,79;, + 3;432,444,428;, + 3;1081,19,20;, + 3;21,1082,1081;, + 3;2108,1797,1749;, + 3;24,1751,1799;, + 3;469,529,478;, + 3;771,476,463;, + 3;94,218,198;, + 3;96,102,95;, + 3;241,529,252;, + 3;458,25,459;, + 3;207,461,458;, + 3;88,220,208;, + 3;101,89,88;, + 3;464,474,468;, + 3;97,104,96;, + 3;241,105,98;, + 3;1750,1800,1752;, + 3;451,219,462;, + 3;451,779,772;, + 3;1963,1967,1968;, + 3;1968,2109,2110;, + 3;2111,2109,2113;, + 3;1964,2114,1965;, + 3;1937,1968,1939;, + 3;1939,2110,2081;, + 3;2081,2111,2082;, + 3;1938,2112,1964;, + 3;1884,2256,2257;, + 3;1931,2263,1934;, + 3;1932,2258,2261;, + 3;1889,1885,2259;, + 3;2263,2260,2256;, + 3;1935,1890,1933;, + 3;159,1889,161;, + 3;27,1891,1892;, + 3;28,1886,160;, + 3;1552,1554,1557;, + 3;916,1626,1554;, + 3;980,1631,1626;, + 3;1558,1560,1553;, + 3;1555,1559,1558;, + 3;1627,1561,1556;, + 3;1632,1633,1628;, + 3;1632,1636,1635;, + 3;1629,983,1636;, + 3;981,919,984;, + 3;917,1560,920;, + 3;1563,1567,921;, + 3;921,1637,985;, + 3;985,1640,1642;, + 3;1565,1560,1559;, + 3;1568,1559,1562;, + 3;1638,1561,1634;, + 3;1641,1633,1635;, + 3;1641,1636,1643;, + 3;1643,983,986;, + 3;987,919,922;, + 3;923,1560,1564;, + 3;1570,1575,1577;, + 3;1580,1575,1573;, + 3;1578,1588,1571;, + 3;1583,924,926;, + 3;1446,1452,1454;, + 3;1456,1452,1459;, + 3;1449,1590,1592;, + 3;1460,930,1457;, + 3;925,1591,931;, + 3;1588,1592,1590;, + 3;1586,928,1593;, + 3;926,930,929;, + 3;852,793,796;, + 3;1341,1981,1984;, + 3;2013,1462,1464;, + 3;876,880,882;, + 3;880,1469,1472;, + 3;794,1436,1348;, + 3;1351,795,1349;, + 3;877,1470,1467;, + 3;1471,1481,1473;, + 3;2017,1478,1462;, + 3;1439,1982,1345;, + 3;1437,1346,1350;, + 3;1350,1342,1352;, + 3;1483,1463,1479;, + 3;1474,1480,1471;, + 3;884,887,889;, + 3;2018,2022,2024;, + 3;1487,886,885;, + 3;1488,1494,1489;, + 3;2025,1495,1492;, + 3;852,886,854;, + 3;2020,1983,2022;, + 3;1490,1497,886;, + 3;855,1497,1436;, + 3;1496,1498,1491;, + 3;1438,1499,1440;, + 3;2023,1500,1495;, + 3;1439,2023,1982;, + 3;882,884,889;, + 3;880,1487,885;, + 3;1473,1493,1488;, + 3;1482,2025,1492;, + 3;2017,2018,2024;, + 3;856,804,858;, + 3;1355,1992,1359;, + 3;2026,1504,2029;, + 3;891,897,1506;, + 3;897,1510,1506;, + 3;805,1442,859;, + 3;1365,806,800;, + 3;892,1511,1513;, + 3;1512,1517,1519;, + 3;2029,1520,1518;, + 3;1444,1360,1993;, + 3;1443,1361,1445;, + 3;1362,1356,1361;, + 3;1522,1505,1501;, + 3;1514,1519,1523;, + 3;899,903,905;, + 3;2030,2034,2036;, + 3;1526,905,1528;, + 3;1527,1531,1534;, + 3;2032,1532,2035;, + 3;856,905,903;, + 3;2036,1994,1988;, + 3;1528,905,1536;, + 3;859,1536,905;, + 3;1533,1537,1539;, + 3;1443,1540,1538;, + 3;2035,1532,1541;, + 3;1444,2035,1541;, + 3;895,899,898;, + 3;897,1526,1508;, + 3;1509,1534,1517;, + 3;1518,2032,2029;, + 3;2029,2030,2026;, + 3;904,890,888;, + 3;901,883,890;, + 3;896,878,883;, + 3;893,1475,879;, + 3;1515,1484,1476;, + 3;1524,1465,1485;, + 3;1502,2014,1465;, + 3;2027,2019,2015;, + 3;2031,2021,2019;, + 3;2037,1985,2021;, + 3;1989,1343,1986;, + 3;1357,1353,1344;, + 3;1366,797,1354;, + 3;801,853,798;, + 3;857,888,853;, + 3;1138,1133,1142;, + 3;1009,988,990;, + 3;1009,1018,1012;, + 3;1139,1144,1145;, + 3;993,988,996;, + 3;999,1148,1021;, + 3;1022,999,1021;, + 3;1144,1027,1145;, + 3;1019,1027,1024;, + 3;1119,932,934;, + 3;937,934,932;, + 3;1148,1029,1021;, + 3;1021,1031,1022;, + 3;1033,989,1013;, + 3;1033,1020,1025;, + 3;1120,1126,1121;, + 3;1133,1126,1125;, + 3;939,941,945;, + 3;994,946,942;, + 3;948,1004,1005;, + 3;1000,1005,1004;, + 3;950,940,947;, + 3;997,950,947;, + 3;999,1136,1134;, + 3;951,1136,1008;, + 3;951,1004,948;, + 3;999,1004,1008;, + 3;940,953,935;, + 3;989,953,950;, + 3;1149,1131,1140;, + 3;1023,991,1001;, + 3;1030,1146,1028;, + 3;1150,1141,1147;, + 3;1022,1014,1010;, + 3;1032,1028,1015;, + 3;1006,938,949;, + 3;1007,943,1005;, + 3;1007,992,995;, + 3;1135,1127,1131;, + 3;1129,1128,1136;, + 3;952,1122,1130;, + 3;949,933,952;, + 3;1267,1288,1289;, + 3;711,1290,718;, + 3;589,718,641;, + 3;592,642,643;, + 3;594,643,644;, + 3;597,645,646;, + 3;1272,646,1291;, + 3;1270,1292,1288;, + 3;1273,1271,599;, + 3;598,1273,599;, + 3;598,599,595;, + 3;595,599,593;, + 3;593,599,590;, + 3;590,599,712;, + 3;1268,712,599;, + 3;1271,1268,599;, + 3;1320,735,402;, + 3;735,404,402;, + 3;1320,1904,735;, + 3;1320,1862,1904;, + 3;735,1906,404;, + 3;735,1904,1906;, + 3;358,402,129;, + 3;358,1320,402;, + 3;129,402,407;, + 3;369,359,130;, + 3;369,130,132;, + 3;1321,1867,1863;, + 3;1325,1867,1321;, + 3;1864,1909,1905;, + 3;1868,1909,1864;, + 3;1905,1910,1907;, + 3;1909,1910,1905;, + 3;405,1908,1911;, + 3;409,405,1911;, + 3;403,406,410;, + 3;411,403,410;, + 3;131,408,412;, + 3;133,131,412;, + 3;360,1325,1321;, + 3;370,1325,360;, + 3;412,408,403;, + 3;412,403,411;, + 3;1293,1869,1275;, + 3;1275,1869,1865;, + 3;647,600,371;, + 3;600,361,371;, + 3;648,372,1294;, + 3;1294,372,1870;, + 3;649,1295,601;, + 3;601,1295,1276;, + 3;602,1277,362;, + 3;1277,1866,362;, + 3;304,318,334;, + 3;373,365,374;, + 3;293,322,319;, + 3;304,295,294;, + 3;374,367,375;, + 3;296,603,322;, + 3;305,561,297;, + 3;573,604,562;, + 3;335,374,336;, + 3;320,366,363;, + 3;335,364,373;, + 3;336,375,650;, + 3;650,367,605;, + 3;323,368,366;, + 3;564,298,301;, + 3;302,324,327;, + 3;565,303,570;, + 3;303,607,570;, + 3;328,587,608;, + 3;299,588,325;, + 3;299,567,560;, + 3;565,570,1825;, + 3;570,1842,1825;, + 3;608,1845,1843;, + 3;560,1846,588;, + 3;560,567,1828;, + 3;566,1829,568;, + 3;1826,1847,1830;, + 3;1233,1247,1249;, + 3;1238,1249,1250;, + 3;1238,1810,1801;, + 3;1240,1812,1251;, + 3;1244,1234,1239;, + 3;1241,1235,1244;, + 3;1244,1802,1804;, + 3;1242,1244,1804;, + 3;1236,1251,1248;, + 3;1803,1813,1805;, + 3;107,253,255;, + 3;253,532,255;, + 3;254,110,257;, + 3;116,257,110;, + 3;535,260,538;, + 3;30,538,260;, + 3;533,540,541;, + 3;545,541,540;, + 3;534,261,256;, + 3;546,261,542;, + 3;256,111,108;, + 3;271,111,261;, + 3;539,530,536;, + 3;258,531,253;, + 3;543,540,539;, + 3;53,112,48;, + 3;53,50,54;, + 3;55,114,119;, + 3;118,262,112;, + 3;119,265,274;, + 3;272,266,263;, + 3;49,115,51;, + 3;113,267,115;, + 3;1594,1542,1544;, + 3;1595,958,1597;, + 3;1598,906,1543;, + 3;1596,908,955;, + 3;956,907,959;, + 3;2038,1600,1603;, + 3;2038,1603,1606;, + 3;2038,1606,1609;, + 3;1609,1644,2038;, + 3;1644,1647,2038;, + 3;1647,1600,2038;, + 3;961,962,965;, + 3;961,968,962;, + 3;961,971,968;, + 3;971,961,974;, + 3;974,961,977;, + 3;977,961,965;, + 3;963,1607,1604;, + 3;969,1610,1608;, + 3;972,1645,1611;, + 3;975,1648,1646;, + 3;978,1601,1649;, + 3;966,1605,1602;, + 3;1546,1995,1998;, + 3;1547,913,1549;, + 3;1550,860,1996;, + 3;1999,861,863;, + 3;1548,864,910;, + 3;911,862,914;, + 3;1089,1095,1097;, + 3;1099,2152,2155;, + 3;729,1896,732;, + 3;2158,2162,2165;, + 3;1894,1901,1896;, + 3;1105,866,868;, + 3;870,868,866;, + 3;1100,867,1107;, + 3;874,871,867;, + 3;1102,869,875;, + 3;869,872,875;, + 3;2156,874,1100;, + 3;2002,874,2001;, + 3;2153,875,2003;, + 3;872,2003,875;, + 3;2168,2001,2156;, + 3;2007,2001,2005;, + 3;2170,2003,2009;, + 3;2004,2009,2003;, + 3;2171,2006,2169;, + 3;2011,2006,2010;, + 3;730,873,870;, + 3;733,2004,872;, + 3;731,2002,1895;, + 3;1897,2012,2004;, + 3;1898,2011,1902;, + 3;1895,2007,1899;, + 3;1107,1111,1100;, + 3;1101,1114,1103;, + 3;1106,1115,1117;, + 3;1108,1118,1109;, + 3;2156,2175,2168;, + 3;2169,2177,2171;, + 3;2153,2178,2179;, + 3;2157,2180,2172;, + 3;1110,1098,1111;, + 3;1117,1096,1092;, + 3;1109,1093,1090;, + 3;2173,2166,2175;, + 3;2176,2163,2177;, + 3;2179,2164,2160;, + 3;1112,2181,1116;, + 3;1115,2160,1096;, + 3;1097,2161,2158;, + 3;1111,2159,2173;, + 3;1369,807,810;, + 3;1374,1378,1381;, + 3;1382,1386,1375;, + 3;1371,1386,1384;, + 3;1379,1385,1383;, + 3;808,1385,812;, + 3;1387,1393,814;, + 3;1395,814,1393;, + 3;1380,819,813;, + 3;811,813,819;, + 3;815,1376,1388;, + 3;1394,1375,1386;, + 3;1389,1374,1390;, + 3;1396,1386,1370;, + 3;816,819,815;, + 3;1397,810,817;, + 3;1398,823,1401;, + 3;1399,1404,1407;, + 3;1402,826,1405;, + 3;820,827,824;, + 3;1400,1410,821;, + 3;1408,828,1411;, + 3;1413,832,1416;, + 3;1414,1419,1422;, + 3;1417,835,1420;, + 3;829,836,833;, + 3;1415,838,830;, + 3;1423,837,839;, + 3;1425,844,1428;, + 3;1426,1430,1433;, + 3;1428,846,1431;, + 3;841,847,845;, + 3;1427,849,842;, + 3;1434,848,850;, + 3;927,1586,1584;, + 3;1576,1586,1579;, + 3;1584,1586,1576;, + 3;925,1581,1589;, + 3;1581,1574,1589;, + 3;1574,1572,1589;, + 3;928,1450,1593;, + 3;928,1461,1453;, + 3;928,1453,1450;, + 3;931,1591,1458;, + 3;1455,1591,1447;, + 3;1458,1591,1455;, + 3;1670,1674,1676;, + 3;1650,1676,1653;, + 3;1656,1654,1659;, + 3;1678,1660,1680;, + 3;1678,1682,1684;, + 3;1707,1713,1716;, + 3;1717,1686,1688;, + 3;1690,1672,1671;, + 3;1690,1671,1651;, + 3;1690,1651,1657;, + 3;1690,1657,1679;, + 3;1679,1685,1690;, + 3;1685,1719,1690;, + 3;1719,1723,1690;, + 3;1723,1672,1690;, + 3;1691,1675,1724;, + 3;1691,1724,1725;, + 3;1691,1725,1683;, + 3;1691,1683,1681;, + 3;1681,1661,1691;, + 3;1661,1655,1691;, + 3;1655,1677,1691;, + 3;1677,1675,1691;, + 3;1708,1726,1710;, + 3;1711,1724,1714;, + 3;1709,1723,1719;, + 3;1714,1675,1687;, + 3;1688,1674,1673;, + 3;1718,1672,1723;, + 3;2264,2280,2281;, + 3;2266,2285,2280;, + 3;2264,2287,2269;, + 3;2271,2274,2276;, + 3;2277,2289,2290;, + 3;2290,2292,2294;, + 3;2295,2298,2299;, + 3;2299,2301,2302;, + 3;2084,1940,1942;, + 3;2273,1943,1941;, + 3;2302,2088,2085;, + 3;2265,2276,2267;, + 3;2282,2300,2303;, + 3;2268,2291,2283;, + 3;2283,2296,2286;, + 3;2285,2300,2280;, + 3;2287,2303,2086;, + 3;2270,2087,1944;, + 3;2264,1945,2272;, + 3;571,1278,609;, + 3;268,1266,571;, + 3;1266,1848,1278;, + 3;1245,1831,1266;, + 3;610,575,572;, + 3;1279,652,611;, + 3;1849,1296,1279;, + 3;1832,1851,1850;, + 3;1807,1833,1832;, + 3;1246,1814,1808;, + 3;1252,269,276;, + 3;277,572,575;, + 3;612,715,615;, + 3;612,1322,713;, + 3;618,1282,1285;, + 3;618,626,621;, + 3;1285,612,618;, + 3;629,635,638;, + 3;330,639,332;, + 3;623,632,630;, + 3;619,636,633;, + 3;616,637,613;, + 3;616,333,640;, + 3;623,630,331;, + 3;714,720,716;, + 3;1280,1326,1323;, + 3;717,654,617;, + 3;622,656,658;, + 3;1283,1300,1286;, + 3;624,657,627;, + 3;332,340,330;, + 3;1287,1297,1280;, + 3;1324,719,714;, + 3;622,1298,1284;, + 3;331,659,623;, + 3;616,338,333;, + 3;1712,1720,1707;, + 3;1727,1684,1682;, + 3;2115,2120,2122;, + 3;2122,2341,2344;, + 3;2348,2399,2401;, + 3;2124,2338,2126;, + 3;2336,2407,2338;, + 3;2400,2405,2402;, + 3;2304,2345,2354;, + 3;2339,2406,2337;, + 3;2127,2123,2304;, + 3;2128,2337,2125;, + 3;2357,2403,2410;, + 3;2408,2404,2406;, + 3;2306,2118,2129;, + 3;2121,2358,2342;, + 3;2308,2409,2340;, + 3;2305,2360,2308;, + 3;2340,2131,2308;, + 3;2308,2127,2305;, + 3;2346,2350,2348;, + 3;2342,2358,2351;, + 3;2409,2357,2410;, + 3;2355,2357,2360;, + 3;2125,2132,2128;, + 3;2127,2133,2116;, + 3;2347,2357,2356;, + 3;6189,2307,2130;, + 3;6190,2338,6198;, + 3;6198,2407,6199;, + 3;6194,2359,2307;, + 3;6199,2400,6200;, + 3;6196,2399,2352;, + 3;6195,2353,2359;, + 3;2361,2366,2369;, + 3;2362,2371,2363;, + 3;2364,2373,2367;, + 3;2370,2374,32;, + 3;2375,2378,2380;, + 3;2376,2381,2383;, + 3;2309,2380,33;, + 3;2310,2375,2309;, + 3;2386,2384,2382;, + 3;2391,2393,2395;, + 3;2391,2388,2387;, + 3;2312,2382,2311;, + 3;2314,2392,2391;, + 3;2314,2387,2313;, + 3;2385,2379,2377;, + 3;2398,2396,2394;, + 3;2398,2385,2389;, + 3;934,1731,1119;, + 3;1120,1733,1125;, + 3;1125,1737,1133;, + 3;1133,1739,1142;, + 3;1143,1741,1144;, + 3;1144,1692,1024;, + 3;1694,1026,1693;, + 3;1002,1694,1662;, + 3;954,1662,1614;, + 3;936,1614,1612;, + 3;2197,1738,2191;, + 3;2065,1663,1695;, + 3;2065,1697,2068;, + 3;2198,1744,1742;, + 3;2054,1663,2051;, + 3;2057,2204,2193;, + 3;2073,2057,2058;, + 3;1744,2075,1700;, + 3;1698,2075,2069;, + 3;1734,2039,2182;, + 3;2041,1615,1618;, + 3;2204,2077,2206;, + 3;2072,2079,2077;, + 3;1703,1664,1668;, + 3;1703,1699,1696;, + 3;1735,2186,1736;, + 3;1738,2186,2191;, + 3;1618,2043,2041;, + 3;2055,1620,1665;, + 3;2047,2060,2062;, + 3;2058,2060,2063;, + 3;1623,1621,1619;, + 3;1666,1623,1664;, + 3;2057,2195,2064;, + 3;2049,2195,2189;, + 3;2049,2062,2064;, + 3;2057,2062,2058;, + 3;1619,1624,1623;, + 3;1664,1624,1668;, + 3;2205,2192,2194;, + 3;2074,2052,2066;, + 3;2078,2201,2207;, + 3;2206,2199,2204;, + 3;2073,2070,2079;, + 3;2080,2076,2078;, + 3;2061,2042,2044;, + 3;2063,2045,2056;, + 3;2063,2053,2058;, + 3;2194,2187,2196;, + 3;2189,2188,2183;, + 3;2050,2184,2040;, + 3;2048,2040,2042;, + 3;1615,1731,1613;, + 3;1735,1733,1732;, + 3;1736,1737,1733;, + 3;1738,1739,1737;, + 3;1742,1741,1740;, + 3;1744,1692,1741;, + 3;1694,1701,1704;, + 3;1669,1694,1704;, + 3;1625,1662,1669;, + 3;1616,1614,1625;, + 3;2134,2250,2137;, + 3;2134,1747,2250;, + 3;2139,2093,2142;, + 3;2135,1705,1730;, + 3;2145,2208,2099;, + 3;2100,2210,2096;, + 3;2096,1745,1706;, + 3;2140,2101,2090;, + 3;2091,2096,2094;, + 3;2143,2097,2136;, + 3;2141,2134,2137;, + 3;2138,2099,2101;, + 3;2138,2254,2145;, + 3;2255,2211,2209;, + 3;2101,2208,2212;, + 3;1746,2251,1748;, + 3;781,784,788;, + 3;781,1339,784;, + 3;1083,1060,1086;, + 3;782,1333,1337;, + 3;790,753,755;, + 3;756,758,750;, + 3;750,1335,1334;, + 3;1084,757,1057;, + 3;1058,750,1061;, + 3;1087,751,783;, + 3;1085,781,788;, + 3;789,755,757;, + 3;789,791,790;, + 3;792,759,754;, + 3;757,753,760;, + 3;1336,785,1340;, + 3;1969,1972,1974;, + 3;1969,1339,1338;, + 3;2146,2102,2105;, + 3;1970,1333,1946;, + 3;1978,1950,1979;, + 3;1952,1947,1954;, + 3;1947,1335,1954;, + 3;2147,1953,1973;, + 3;2106,1947,1952;, + 3;2149,1948,2103;, + 3;2148,1969,2150;, + 3;1973,1949,1978;, + 3;1973,1979,1975;, + 3;1980,1955,1976;, + 3;1953,1950,1949;, + 3;1336,1977,1956;, + 3;1302,1288,1305;, + 3;722,1290,1303;, + 3;661,718,722;, + 3;664,642,662;, + 3;666,643,664;, + 3;669,645,667;, + 3;1307,646,669;, + 3;1305,1292,1308;, + 3;1309,35,1306;, + 3;670,35,1309;, + 3;670,668,35;, + 3;668,665,35;, + 3;665,663,35;, + 3;663,723,35;, + 3;1304,35,723;, + 3;1306,35,1304;, + 3;1328,413,36;, + 3;36,413,415;, + 3;1328,36,1912;, + 3;1328,1912,1871;, + 3;36,415,1914;, + 3;36,1914,1912;, + 3;376,134,413;, + 3;376,413,1328;, + 3;134,418,413;, + 3;369,135,377;, + 3;369,132,135;, + 3;1329,1872,1867;, + 3;1325,1329,1867;, + 3;1873,1913,1909;, + 3;1868,1873,1909;, + 3;1913,1915,1910;, + 3;1909,1913,1910;, + 3;416,1911,1916;, + 3;409,1911,416;, + 3;414,410,417;, + 3;411,410,414;, + 3;136,412,419;, + 3;133,412,136;, + 3;378,1329,1325;, + 3;370,378,1325;, + 3;412,414,419;, + 3;412,411,414;, + 3;304,342,307;, + 3;37,381,379;, + 3;308,346,309;, + 3;304,310,306;, + 3;38,383,381;, + 3;309,671,576;, + 3;305,577,574;, + 3;573,672,651;, + 3;335,38,37;, + 3;343,382,347;, + 3;335,379,344;, + 3;337,39,38;, + 3;650,383,39;, + 3;347,384,673;, + 3;579,315,584;, + 3;312,355,316;, + 3;580,40,313;, + 3;313,675,348;, + 3;349,709,356;, + 3;317,710,41;, + 3;317,41,585;, + 3;580,1834,40;, + 3;40,1853,675;, + 3;676,1859,709;, + 3;41,1860,1839;, + 3;41,1839,585;, + 3;581,1840,1835;, + 3;1836,1861,1854;, + 3;1253,1247,1255;, + 3;1258,1249,1253;, + 3;1258,1810,1250;, + 3;1260,1812,1819;, + 3;42,1254,1256;, + 3;1261,42,1256;, + 3;42,1816,1259;, + 3;1262,1820,42;, + 3;1257,1251,1263;, + 3;1817,1813,1811;, + 3;120,280,278;, + 3;278,550,548;, + 3;279,123,121;, + 3;116,43,29;, + 3;553,44,282;, + 3;30,556,544;, + 3;551,45,549;, + 3;545,558,547;, + 3;552,46,559;, + 3;546,46,271;, + 3;281,124,46;, + 3;271,124,117;, + 3;557,549,45;, + 3;283,548,554;, + 3;543,45,545;, + 3;53,125,118;, + 3;53,58,56;, + 3;55,127,59;, + 3;118,284,273;, + 3;119,287,127;, + 3;272,288,275;, + 3;57,128,126;, + 3;126,289,285;, + 3;582,1310,47;, + 3;290,47,1264;, + 3;47,1856,1837;, + 3;1264,1837,1822;, + 3;677,575,653;, + 3;1311,652,1296;, + 3;1857,1296,1852;, + 3;1838,1851,1833;, + 3;1823,1833,1815;, + 3;1265,1814,1252;, + 3;1252,291,1265;, + 3;277,583,292;, + 3;680,726,724;, + 3;680,1330,1312;, + 3;686,1314,689;, + 3;686,694,691;, + 3;1317,680,1312;, + 3;697,703,700;, + 3;351,706,698;, + 3;692,701,687;, + 3;688,704,681;, + 3;683,705,707;, + 3;683,707,353;, + 3;692,352,699;, + 3;725,720,719;, + 3;1313,1326,1297;, + 3;727,654,721;, + 3;690,656,695;, + 3;1315,1300,1299;, + 3;693,657,660;, + 3;354,340,339;, + 3;1318,1297,1301;, + 3;1331,719,1327;, + 3;690,1298,658;, + 3;352,659,341;, + 3;683,338,655;, + 3;2444,2452,2453;, + 3;2439,2454,2441;, + 3;2412,2441,2423;, + 3;2415,2424,2425;, + 3;2417,2425,2426;, + 3;2420,2427,2428;, + 3;2449,2428,2455;, + 3;2447,2456,2452;, + 3;2450,2448,2422;, + 3;2421,2450,2422;, + 3;2421,2422,2418;, + 3;2418,2422,2416;, + 3;2416,2422,2413;, + 3;2413,2422,2440;, + 3;2445,2440,2422;, + 3;2448,2445,2422;, + 3;2457,2452,2460;, + 3;2442,2454,2458;, + 3;2429,2441,2442;, + 3;2432,2424,2430;, + 3;2434,2425,2432;, + 3;2437,2427,2435;, + 3;2462,2428,2437;, + 3;2460,2456,2463;, + 3;2464,2411,2461;, + 3;2438,2411,2464;, + 3;2438,2436,2411;, + 3;2436,2433,2411;, + 3;2433,2431,2411;, + 3;2431,2443,2411;, + 3;2459,2411,2443;, + 3;2461,2411,2459;, + 3;2475,2480,2483;, + 3;2476,2485,2477;, + 3;2478,2487,2481;, + 3;2484,2488,2466;, + 3;2489,2492,2494;, + 3;2490,2495,2497;, + 3;2469,2494,2467;, + 3;2470,2489,2469;, + 3;2500,2498,2496;, + 3;2505,2507,2509;, + 3;2505,2502,2501;, + 3;2472,2496,2471;, + 3;2474,2506,2505;, + 3;2474,2501,2473;, + 3;2499,2493,2491;, + 3;2512,2510,2508;, + 3;2512,2499,2503;, + 3;2521,2533,2523;, + 3;2523,2538,2536;, + 3;2521,2540,2534;, + 3;2528,2274,2273;, + 3;2530,2289,2275;, + 3;2542,2292,2289;, + 3;2544,2298,2293;, + 3;2548,2301,2298;, + 3;2517,1940,2089;, + 3;2273,2513,2528;, + 3;2550,2088,2301;, + 3;2522,2531,2528;, + 3;2535,2549,2533;, + 3;2524,2543,2532;, + 3;2537,2545,2543;, + 3;2538,2549,2546;, + 3;2540,2551,2534;, + 3;2526,2518,2541;, + 3;2521,2514,2527;, + 3;2584,2555,2587;, + 3;2585,2590,2593;, + 3;2588,2558,2591;, + 3;2552,2559,2556;, + 3;2586,2596,2553;, + 3;2594,2560,2597;, + 3;2599,2564,2602;, + 3;2600,2605,2608;, + 3;2603,2567,2606;, + 3;2561,2568,2565;, + 3;2601,2570,2562;, + 3;2609,2569,2571;, + 3;2611,2576,2614;, + 3;2612,2616,2619;, + 3;2614,2578,2617;, + 3;2573,2579,2577;, + 3;2613,2581,2574;, + 3;2620,2580,2582;, + 3;2654,2625,2657;, + 3;2655,2660,2663;, + 3;2658,2628,2661;, + 3;2622,2629,2626;, + 3;2656,2666,2623;, + 3;2664,2630,2667;, + 3;2669,2634,2672;, + 3;2670,2675,2678;, + 3;2673,2637,2676;, + 3;2631,2638,2635;, + 3;2671,2640,2632;, + 3;2679,2639,2641;, + 3;2681,2646,2684;, + 3;2682,2686,2689;, + 3;2684,2648,2687;, + 3;2643,2649,2647;, + 3;2683,2651,2644;, + 3;2690,2650,2652;, + 3;2724,2695,2727;, + 3;2725,2730,2733;, + 3;2728,2698,2731;, + 3;2692,2699,2696;, + 3;2726,2736,2693;, + 3;2734,2700,2737;, + 3;2739,2704,2742;, + 3;2740,2745,2748;, + 3;2743,2707,2746;, + 3;2701,2708,2705;, + 3;2741,2710,2702;, + 3;2749,2709,2711;, + 3;2751,2716,2754;, + 3;2752,2756,2759;, + 3;2754,2718,2757;, + 3;2713,2719,2717;, + 3;2753,2721,2714;, + 3;2760,2720,2722;, + 3;2794,2765,2797;, + 3;2795,2800,2803;, + 3;2798,2768,2801;, + 3;2762,2769,2766;, + 3;2796,2806,2763;, + 3;2804,2770,2807;, + 3;2809,2774,2812;, + 3;2810,2815,2818;, + 3;2813,2777,2816;, + 3;2771,2778,2775;, + 3;2811,2780,2772;, + 3;2819,2779,2781;, + 3;2821,2786,2824;, + 3;2822,2826,2829;, + 3;2824,2788,2827;, + 3;2783,2789,2787;, + 3;2823,2791,2784;, + 3;2830,2790,2792;, + 3;2853,2858,2859;, + 3;2850,2860,2851;, + 3;2832,2851,2838;, + 3;2834,2839,2840;, + 3;2835,2840,2841;, + 3;2837,2842,2843;, + 3;2856,2843,2861;, + 3;2855,2862,2858;, + 3;2863,2858,2865;, + 3;2852,2860,2864;, + 3;2844,2851,2852;, + 3;2846,2839,2845;, + 3;2847,2840,2846;, + 3;2849,2842,2848;, + 3;2866,2843,2849;, + 3;2865,2862,2867;, + 3;2889,2894,2895;, + 3;2886,2896,2887;, + 3;2868,2887,2874;, + 3;2870,2875,2876;, + 3;2871,2876,2877;, + 3;2873,2878,2879;, + 3;2892,2879,2897;, + 3;2891,2898,2894;, + 3;2899,2894,2901;, + 3;2888,2896,2900;, + 3;2880,2887,2888;, + 3;2882,2875,2881;, + 3;2883,2876,2882;, + 3;2885,2878,2884;, + 3;2902,2879,2885;, + 3;2901,2898,2903;, + 3;2928,2933,2935;, + 3;2938,2933,2931;, + 3;2936,2946,2929;, + 3;2941,2904,2906;, + 3;2912,2918,2920;, + 3;2922,2918,2925;, + 3;2915,2948,2950;, + 3;2926,2910,2923;, + 3;2905,2949,2911;, + 3;2946,2950,2948;, + 3;2944,2908,2951;, + 3;2906,2910,2909;, + 3;2907,2944,2942;, + 3;2934,2944,2937;, + 3;2942,2944,2934;, + 3;2905,2939,2947;, + 3;2939,2932,2947;, + 3;2932,2930,2947;, + 3;2908,2916,2951;, + 3;2908,2927,2919;, + 3;2908,2919,2916;, + 3;2911,2949,2924;, + 3;2921,2949,2913;, + 3;2924,2949,2921;, + 3;2989,2971,2974;, + 3;2989,2974,2977;, + 3;2989,2977,2980;, + 3;2980,2983,2989;, + 3;2983,2986,2989;, + 3;2986,2971,2989;, + 3;2952,2953,2956;, + 3;2952,2959,2953;, + 3;2952,2962,2959;, + 3;2962,2952,2965;, + 3;2965,2952,2968;, + 3;2968,2952,2956;, + 3;2954,2978,2975;, + 3;2960,2981,2979;, + 3;2963,2984,2982;, + 3;2966,2987,2985;, + 3;2969,2972,2988;, + 3;2957,2976,2973;, + 3;3027,3009,3012;, + 3;3027,3012,3015;, + 3;3027,3015,3018;, + 3;3018,3021,3027;, + 3;3021,3024,3027;, + 3;3024,3009,3027;, + 3;2990,2991,2994;, + 3;2990,2997,2991;, + 3;2990,3000,2997;, + 3;3000,2990,3003;, + 3;3003,2990,3006;, + 3;3006,2990,2994;, + 3;2992,3016,3013;, + 3;2998,3019,3017;, + 3;3001,3022,3020;, + 3;3004,3025,3023;, + 3;3007,3010,3026;, + 3;2995,3014,3011;, + 3;4008,4102,4011;, + 3;4008,4680,4102;, + 3;4013,3980,4016;, + 3;4009,4638,4662;, + 3;4019,4096,3989;, + 3;3990,4098,3986;, + 3;3986,4678,4639;, + 3;4014,3991,3983;, + 3;3984,3986,3981;, + 3;4017,3987,4010;, + 3;4015,4008,4011;, + 3;4012,3989,3991;, + 3;4012,4106,4019;, + 3;4107,4099,4097;, + 3;3991,4096,4100;, + 3;4679,4103,4681;, + 3;3992,3028,5175;, + 3;3689,5175,4847;, + 3;3030,4847,3031;, + 3;446,3711,763;, + 3;762,3032,4;, + 3;446,3033,3414;, + 3;420,3686,736;, + 3;1958,4869,8;, + 3;425,3176,3398;, + 3;3399,3713,3688;, + 3;1917,3686,4834;, + 3;4871,3713,4870;, + 3;421,3398,3395;, + 3;3687,3399,3688;, + 3;3687,4871,4835;, + 3;1918,4872,1958;, + 3;4020,4682,5015;, + 3;3087,3213,3178;, + 3;3087,3089,3213;, + 3;3179,3091,3088;, + 3;3088,3093,3090;, + 3;3714,3428,3717;, + 3;3430,3433,3429;, + 3;3090,3094,3214;, + 3;3435,3439,3434;, + 3;3431,3415,3216;, + 3;3216,3178,3213;, + 3;3436,3216,3217;, + 3;3217,3213,3089;, + 3;3436,3218,3437;, + 3;3217,3215,3218;, + 3;3718,3416,3715;, + 3;3181,3416,3417;, + 3;3439,3219,3220;, + 3;3220,3214,3095;, + 3;3419,3421,3184;, + 3;3185,3184,3421;, + 3;3221,3184,3187;, + 3;3082,3184,3185;, + 3;3221,3187,3096;, + 3;3187,3082,3096;, + 3;3422,3426,3424;, + 3;3423,3188,3186;, + 3;3419,3222,3427;, + 3;3185,3084,3083;, + 3;3096,3222,3221;, + 3;3082,3097,3096;, + 3;3161,3223,3201;, + 3;3163,3206,3202;, + 3;3208,3227,3224;, + 3;3225,3197,3194;, + 3;3195,3172,3170;, + 3;3167,3170,3172;, + 3;3175,3201,3212;, + 3;3207,3208,3203;, + 3;3192,3173,3198;, + 3;3193,3228,3223;, + 3;3223,3210,3201;, + 3;3161,3168,3174;, + 3;3212,3210,3206;, + 3;3175,3206,3168;, + 3;3721,3993,4021;, + 3;3692,3204,3995;, + 3;3998,3226,4024;, + 3;4025,3194,3724;, + 3;3725,3171,3695;, + 3;3693,3171,3164;, + 3;3205,3998,3996;, + 3;3696,3993,3690;, + 3;3722,3695,3691;, + 3;4022,3998,4024;, + 3;3723,4025,3724;, + 3;3697,3997,3999;, + 3;4000,3998,3994;, + 3;3691,3693,3698;, + 3;3074,3150,3400;, + 3;3067,3363,3129;, + 3;3071,3130,3133;, + 3;3364,3078,3403;, + 3;3404,3075,3401;, + 3;3136,3156,3138;, + 3;3159,3406,3157;, + 3;3139,3407,3367;, + 3;3137,3368,3035;, + 3;3369,4837,4796;, + 3;4797,3372,3370;, + 3;4838,4799,4798;, + 3;1881,4840,1930;, + 3;4839,3411,4841;, + 3;1929,3412,443;, + 3;3408,3373,3413;, + 3;442,3373,399;, + 3;12,3143,3141;, + 3;3376,4800,4803;, + 3;13,4801,1881;, + 3;155,3374,3144;, + 3;3142,3375,3376;, + 3;5118,5211,5119;, + 3;5122,5214,5118;, + 3;5118,4688,4686;, + 3;4691,5119,5124;, + 3;5122,4686,4693;, + 3;4108,4688,4691;, + 3;4694,6193,4696;, + 3;1765,6193,6192;, + 3;5123,4697,5126;, + 3;2223,4697,1766;, + 3;5215,5217,5212;, + 3;2327,5219,2330;, + 3;2224,5218,2328;, + 3;5213,5127,5120;, + 3;4687,4698,6193;, + 3;6192,4698,1769;, + 3;2329,5126,2223;, + 3;5123,5220,5216;, + 3;1770,5130,2229;, + 3;5125,4700,4692;, + 3;5121,5131,5125;, + 3;2229,5128,2225;, + 3;4111,4116,4114;, + 3;4689,4115,4699;, + 3;4692,4117,4109;, + 3;4698,1771,1769;, + 3;3440,3446,3442;, + 3;4703,4120,4118;, + 3;5132,4705,4703;, + 3;4120,4122,4118;, + 3;3440,4124,3450;, + 3;1182,4707,4126;, + 3;4127,4707,4708;, + 3;1780,5136,4707;, + 3;4708,5136,5137;, + 3;15,4710,5139;, + 3;5140,4710,4711;, + 3;491,3454,3452;, + 3;3454,3455,3452;, + 3;502,3460,504;, + 3;3463,3461,3465;, + 3;513,3468,514;, + 3;514,3471,518;, + 3;3447,3473,3443;, + 3;527,3471,3479;, + 3;4129,3454,4131;, + 3;1189,3454,496;, + 3;1189,4126,4131;, + 3;4129,4126,4127;, + 3;4132,4135,4134;, + 3;1196,4135,1197;, + 3;1196,3460,4134;, + 3;4132,3460,3463;, + 3;1197,4710,1784;, + 3;4711,4135,4136;, + 3;513,3453,3470;, + 3;3472,3474,3476;, + 3;503,3479,3462;, + 3;4123,3458,4130;, + 3;3441,3456,3458;, + 3;3444,3453,3457;, + 3;3475,3470,3453;, + 3;4119,4130,4128;, + 3;4704,4128,4709;, + 3;5133,4709,5138;, + 3;4125,4137,4133;, + 3;4121,4712,4137;, + 3;4706,5141,4712;, + 3;3451,4133,3464;, + 3;3448,3464,3466;, + 3;3477,3467,3462;, + 3;3471,3462,3479;, + 3;4138,4715,4713;, + 3;4714,4720,4718;, + 3;4144,4721,4146;, + 3;4150,4152,4151;, + 3;4140,4722,4716;, + 3;4139,4151,4141;, + 3;4139,4153,4150;, + 3;4153,4147,4152;, + 3;4142,4152,4148;, + 3;4154,5144,5142;, + 3;4154,4160,4156;, + 3;4161,1228,1226;, + 3;5145,1230,2246;, + 3;5143,1232,4155;, + 3;4157,2246,5145;, + 3;5143,1232,4155;, + 3;4155,1229,4163;, + 3;1231,4162,1227;, + 3;5146,5225,5223;, + 3;5224,17,2335;, + 3;5147,2335,18;, + 3;3079,68,81;, + 3;82,3153,3076;, + 3;3151,175,177;, + 3;3402,176,444;, + 3;3365,445,401;, + 3;401,3131,3366;, + 3;156,3134,3132;, + 3;158,3072,3135;, + 3;3068,70,71;, + 3;3069,71,68;, + 3;3077,80,83;, + 3;3405,444,445;, + 3;4026,19,1082;, + 3;3038,1082,22;, + 3;5015,1797,23;, + 3;24,4684,4020;, + 3;3434,529,475;, + 3;3719,476,780;, + 3;3091,218,103;, + 3;3093,102,104;, + 3;3220,529,3439;, + 3;3424,25,461;, + 3;3189,461,221;, + 3;3085,220,89;, + 3;3098,89,26;, + 3;3429,474,477;, + 3;3094,104,106;, + 3;3220,105,252;, + 3;4683,1800,1798;, + 3;3418,219,3182;, + 3;3418,779,462;, + 3;4873,1967,1966;, + 3;4875,2109,1967;, + 3;5017,2109,5016;, + 3;4874,2114,5018;, + 3;4848,4875,4873;, + 3;4850,5016,4875;, + 3;4988,5017,5016;, + 3;4849,5018,4989;, + 3;4805,2256,1887;, + 3;4844,2263,5158;, + 3;4845,5154,4808;, + 3;4808,5155,4806;, + 3;2263,5156,5158;, + 3;1935,4809,1893;, + 3;3146,4808,4806;, + 3;27,4810,3148;, + 3;28,4807,1888;, + 3;4485,4487,3861;, + 3;3861,4559,3925;, + 3;3925,4564,4562;, + 3;4490,4493,4492;, + 3;4488,4492,4494;, + 3;4560,4495,4566;, + 3;4565,4567,4568;, + 3;4565,4569,4563;, + 3;4563,3928,3926;, + 3;3927,3864,3862;, + 3;3863,4493,4486;, + 3;4496,4500,4498;, + 3;3866,4570,4500;, + 3;3930,4573,4570;, + 3;4499,4493,4497;, + 3;4501,4492,4499;, + 3;4571,4495,4502;, + 3;4574,4567,4572;, + 3;4574,4569,4568;, + 3;4575,3928,4569;, + 3;3931,3864,3929;, + 3;3867,4493,3865;, + 3;4503,4508,4506;, + 3;4513,4508,4516;, + 3;4510,4521,4519;, + 3;4517,3869,4514;, + 3;4379,4385,4382;, + 3;4389,4385,4387;, + 3;4383,4523,4380;, + 3;4392,3875,3873;, + 3;3870,4524,4522;, + 3;4521,4525,4519;, + 3;4520,3874,3871;, + 3;3872,3875,3869;, + 3;3797,3738,3799;, + 3;4274,4888,4278;, + 3;4920,4395,4924;, + 3;3821,3825,4400;, + 3;3825,4402,4400;, + 3;3739,4369,3800;, + 3;4284,3740,3741;, + 3;3822,4403,4407;, + 3;4404,4414,4411;, + 3;4924,4412,4415;, + 3;4372,4279,4889;, + 3;4370,4280,4373;, + 3;4281,4275,4280;, + 3;4416,4396,4397;, + 3;4408,4411,4417;, + 3;3829,3832,3831;, + 3;4925,4929,4927;, + 3;4420,3831,4422;, + 3;4421,4427,4425;, + 3;4931,4428,4930;, + 3;3797,3831,3832;, + 3;4927,4890,4891;, + 3;4422,3831,4430;, + 3;3800,4430,3831;, + 3;4429,4431,4432;, + 3;4371,4432,4431;, + 3;4930,4428,4433;, + 3;4372,4930,4433;, + 3;3827,3829,3826;, + 3;3825,4420,4405;, + 3;4406,4425,4414;, + 3;4415,4931,4924;, + 3;4924,4925,4921;, + 3;3801,3749,3745;, + 3;4288,4899,4895;, + 3;4933,4437,4434;, + 3;3836,3842,3840;, + 3;3842,4443,4441;, + 3;3750,4375,4295;, + 3;4298,3751,4296;, + 3;3837,4444,4439;, + 3;4445,4450,4442;, + 3;4936,4452,4437;, + 3;4377,4900,4292;, + 3;4376,4293,4297;, + 3;4297,4289,4299;, + 3;4455,4438,4453;, + 3;4446,4454,4445;, + 3;3844,3848,3846;, + 3;4937,4941,4939;, + 3;4459,3850,3845;, + 3;4460,4464,4461;, + 3;4940,4465,4467;, + 3;3801,3850,3803;, + 3;4943,4901,4941;, + 3;4462,4469,3850;, + 3;3804,4469,4375;, + 3;4466,4470,4463;, + 3;4376,4472,4378;, + 3;4942,4473,4465;, + 3;4377,4942,4900;, + 3;3840,3844,3846;, + 3;3842,4459,3845;, + 3;4442,4468,4460;, + 3;4451,4940,4467;, + 3;4936,4937,4939;, + 3;3849,3834,3847;, + 3;3847,3828,3841;, + 3;3841,3823,3838;, + 3;3839,4409,4447;, + 3;4448,4418,4456;, + 3;4457,4398,4435;, + 3;4435,4922,4934;, + 3;4935,4926,4938;, + 3;4938,4928,4944;, + 3;4944,4892,4896;, + 3;4897,4276,4290;, + 3;4291,4285,4300;, + 3;4301,3742,3746;, + 3;3747,3798,3802;, + 3;3802,3833,3849;, + 3;4082,4077,4075;, + 3;3954,3933,3957;, + 3;3954,3963,3959;, + 3;4083,4088,4086;, + 3;3938,3933,3935;, + 3;3944,4092,4078;, + 3;3967,3944,3945;, + 3;4088,3972,3969;, + 3;3964,3972,3960;, + 3;4063,3877,4065;, + 3;3882,3879,3884;, + 3;4092,3974,4094;, + 3;3966,3976,3974;, + 3;3978,3934,3947;, + 3;3978,3965,3958;, + 3;4064,4070,4069;, + 3;4077,4070,4075;, + 3;3884,3886,3882;, + 3;3939,3890,3941;, + 3;3893,3950,3949;, + 3;3945,3950,3952;, + 3;3895,3891,3885;, + 3;3942,3895,3934;, + 3;3944,4080,3953;, + 3;3896,4080,4073;, + 3;3896,3949,3953;, + 3;3944,3949,3945;, + 3;3885,3898,3895;, + 3;3934,3898,3947;, + 3;4093,4076,4079;, + 3;3968,3936,3955;, + 3;3975,4089,4095;, + 3;4094,4084,4092;, + 3;3967,3961,3976;, + 3;3977,3973,3975;, + 3;3951,3883,3887;, + 3;3952,3888,3940;, + 3;3952,3937,3945;, + 3;4079,4071,4081;, + 3;4073,4072,4066;, + 3;3897,4067,3878;, + 3;3894,3878,3883;, + 3;4200,4221,4203;, + 3;3661,4222,4201;, + 3;3539,3668,3661;, + 3;3542,3591,3540;, + 3;3544,3593,3542;, + 3;3547,3594,3545;, + 3;4205,3596,3547;, + 3;4203,4224,4206;, + 3;4207,3549,4204;, + 3;3548,3549,4207;, + 3;3548,3546,3549;, + 3;3546,3543,3549;, + 3;3543,3541,3549;, + 3;3541,3662,3549;, + 3;4202,3549,3662;, + 3;4204,3549,4202;, + 3;4253,3377,3685;, + 3;3685,3377,3379;, + 3;4253,3685,4821;, + 3;4253,4821,4784;, + 3;3685,3379,4823;, + 3;3685,4823,4821;, + 3;3336,3121,3377;, + 3;3336,3377,4253;, + 3;3121,3382,3377;, + 3;3347,3122,3337;, + 3;3347,3124,3122;, + 3;4254,4785,4789;, + 3;4258,4254,4789;, + 3;4786,4822,4826;, + 3;4790,4786,4826;, + 3;4822,4824,4827;, + 3;4826,4822,4827;, + 3;3380,4828,4825;, + 3;3384,4828,3380;, + 3;3378,3385,3381;, + 3;3386,3385,3378;, + 3;3123,3387,3383;, + 3;3125,3387,3123;, + 3;3338,4254,4258;, + 3;3348,3338,4258;, + 3;3387,3378,3383;, + 3;3387,3386,3378;, + 3;4226,4208,4791;, + 3;4208,4787,4791;, + 3;3597,3349,3550;, + 3;3550,3349,3339;, + 3;3598,4227,3350;, + 3;4227,4792,3350;, + 3;3599,3551,4228;, + 3;3551,4209,4228;, + 3;3552,3340,4210;, + 3;4210,3340,4788;, + 3;3282,3296,3271;, + 3;3351,3343,3341;, + 3;3272,3300,3273;, + 3;3282,3274,3283;, + 3;3352,3345,3343;, + 3;3273,3553,3511;, + 3;3284,3512,3523;, + 3;3524,3554,3600;, + 3;3312,3352,3351;, + 3;3297,3344,3301;, + 3;3312,3341,3298;, + 3;3314,3353,3352;, + 3;3601,3345,3353;, + 3;3301,3346,3555;, + 3;3514,3276,3517;, + 3;3279,3302,3277;, + 3;3515,3520,3280;, + 3;3280,3557,3305;, + 3;3306,3537,3303;, + 3;3278,3538,3510;, + 3;3278,3510,3518;, + 3;3515,4747,3520;, + 3;3520,4764,3557;, + 3;3558,4767,3537;, + 3;3510,4768,4750;, + 3;3510,4750,3518;, + 3;3516,4751,4748;, + 3;4749,4769,4765;, + 3;4166,4180,4168;, + 3;4171,4182,4166;, + 3;4171,4732,4183;, + 3;4173,4734,4726;, + 3;4177,4167,4169;, + 3;4174,4177,4169;, + 3;4177,4723,4172;, + 3;4175,4727,4177;, + 3;4170,4184,4176;, + 3;4724,4735,4733;, + 3;3099,3233,3231;, + 3;3231,3482,3480;, + 3;3232,3102,3100;, + 3;3108,3235,3039;, + 3;3485,3238,3236;, + 3;3040,3488,3493;, + 3;3483,3490,3481;, + 3;3495,3491,3496;, + 3;3484,3239,3492;, + 3;3497,3239,3249;, + 3;3234,3103,3239;, + 3;3249,3103,3109;, + 3;3489,3481,3490;, + 3;3237,3480,3486;, + 3;3494,3490,3495;, + 3;3059,3104,3110;, + 3;3059,3056,3054;, + 3;3060,3106,3057;, + 3;3110,3240,3250;, + 3;3111,3243,3106;, + 3;3251,3244,3252;, + 3;3055,3107,3105;, + 3;3105,3245,3241;, + 3;4527,4475,4530;, + 3;4528,3903,3900;, + 3;4531,3851,3904;, + 3;4529,3853,4477;, + 3;3901,3852,3854;, + 3;4945,4536,4533;, + 3;4945,4539,4536;, + 3;4945,4542,4539;, + 3;4542,4945,4577;, + 3;4577,4945,4580;, + 3;4580,4945,4533;, + 3;3906,3910,3907;, + 3;3906,3907,3913;, + 3;3906,3913,3916;, + 3;3916,3919,3906;, + 3;3919,3922,3906;, + 3;3922,3910,3906;, + 3;3908,4540,3914;, + 3;3915,4543,3917;, + 3;3918,4578,3920;, + 3;3921,4581,3923;, + 3;3924,4534,3911;, + 3;3912,4537,3909;, + 3;4479,4902,4482;, + 3;4480,3858,3855;, + 3;4483,3805,3859;, + 3;4905,3806,4903;, + 3;4481,3808,4906;, + 3;3856,3807,3809;, + 3;4033,4039,4036;, + 3;4043,5056,4046;, + 3;3679,4813,4811;, + 3;5062,5066,5064;, + 3;4811,4818,4815;, + 3;4049,3811,4051;, + 3;3815,3813,3817;, + 3;4044,3812,3819;, + 3;3819,3812,3816;, + 3;4047,3814,4050;, + 3;3814,3820,3818;, + 3;5059,3819,4908;, + 3;4909,3819,3816;, + 3;5057,3820,4047;, + 3;3818,4910,4911;, + 3;5072,4908,4912;, + 3;4914,4908,4909;, + 3;5074,4910,5057;, + 3;4911,4916,4918;, + 3;5075,4913,4917;, + 3;4919,4913,4915;, + 3;3680,3817,3682;, + 3;3683,4911,4814;, + 3;3681,4909,3816;, + 3;4814,4918,4819;, + 3;4816,4919,4915;, + 3;4812,4914,4909;, + 3;4052,4055,4053;, + 3;4045,4058,4056;, + 3;4050,4059,4047;, + 3;4051,4061,4049;, + 3;5059,5079,5076;, + 3;5073,5081,5080;, + 3;5057,5082,5074;, + 3;5060,5083,5058;, + 3;4053,4041,4034;, + 3;4062,4040,4059;, + 3;4054,4037,4061;, + 3;5076,5069,5063;, + 3;5080,5067,5070;, + 3;5084,5068,5082;, + 3;4057,5085,5077;, + 3;4059,5065,5084;, + 3;4042,5064,4039;, + 3;4055,5063,4041;, + 3;4302,3752,4304;, + 3;4307,4311,4309;, + 3;4314,4319,4317;, + 3;4305,4319,4303;, + 3;4312,4318,3757;, + 3;3753,4318,4306;, + 3;4320,4326,4323;, + 3;4328,3759,3761;, + 3;4313,3764,4310;, + 3;3755,3758,3754;, + 3;3760,4310,3764;, + 3;4327,4308,4324;, + 3;4321,4307,4309;, + 3;4329,4319,4327;, + 3;3762,3764,3755;, + 3;4330,3756,4302;, + 3;4331,3768,3765;, + 3;4332,4337,4334;, + 3;4335,3771,3769;, + 3;3766,3772,4343;, + 3;4333,4344,4340;, + 3;4341,3773,4338;, + 3;4346,3777,3774;, + 3;4347,4352,4349;, + 3;4350,3780,3778;, + 3;3775,3781,3783;, + 3;4348,3784,4355;, + 3;4356,3782,4353;, + 3;4358,3789,3786;, + 3;4359,4363,4361;, + 3;4362,3791,3789;, + 3;3787,3792,3794;, + 3;4360,3795,4366;, + 3;4367,3793,4364;, + 3;3871,4518,4520;, + 3;4509,4511,4520;, + 3;4518,4509,4520;, + 3;3870,4522,4515;, + 3;4515,4522,4507;, + 3;4507,4522,4504;, + 3;3874,4526,4384;, + 3;3874,4386,4393;, + 3;3874,4384,4386;, + 3;3876,4390,4524;, + 3;4388,4381,4524;, + 3;4390,4388,4524;, + 3;4603,4607,4605;, + 3;4583,4609,4603;, + 3;4589,4586,4584;, + 3;4611,4592,4590;, + 3;4611,4615,4613;, + 3;4640,4646,4643;, + 3;4649,4619,4647;, + 3;4623,4604,4606;, + 3;4623,4585,4604;, + 3;4623,4591,4585;, + 3;4623,4612,4591;, + 3;4612,4623,4617;, + 3;4617,4623,4652;, + 3;4652,4623,4656;, + 3;4656,4623,4606;, + 3;4624,4657,4608;, + 3;4624,4658,4657;, + 3;4624,4616,4658;, + 3;4624,4614,4616;, + 3;4614,4624,4593;, + 3;4593,4624,4587;, + 3;4587,4624,4610;, + 3;4610,4624,4608;, + 3;4641,4659,4653;, + 3;4644,4657,4658;, + 3;4642,4656,4650;, + 3;4648,4608,4657;, + 3;4621,4607,4619;, + 3;4650,4606,4622;, + 3;5160,5176,5162;, + 3;5162,5181,5179;, + 3;5160,5183,5177;, + 3;5167,5170,5169;, + 3;5172,5185,5171;, + 3;5186,5188,5185;, + 3;5190,5194,5189;, + 3;5195,5197,5194;, + 3;4991,4851,4995;, + 3;5169,4853,5167;, + 3;5198,4996,5197;, + 3;5161,5173,5167;, + 3;5178,5196,5176;, + 3;5163,5187,5174;, + 3;5180,5191,5187;, + 3;5181,5196,5192;, + 3;5183,5199,5177;, + 3;5165,4992,5184;, + 3;5160,4854,5166;, + 3;3521,4211,4199;, + 3;3246,4199,4178;, + 3;4199,4770,4753;, + 3;4178,4753,4729;, + 3;3559,3525,3602;, + 3;4212,3603,4229;, + 3;4771,4229,4773;, + 3;4754,4774,4755;, + 3;4730,4755,4736;, + 3;4179,4737,4185;, + 3;4185,3247,4179;, + 3;3254,3522,3248;, + 3;3562,3665,3663;, + 3;3562,4255,4213;, + 3;3568,4215,3571;, + 3;3568,3576,3573;, + 3;4218,3562,4213;, + 3;3579,3585,3582;, + 3;3308,3588,3580;, + 3;3574,3583,3569;, + 3;3570,3586,3563;, + 3;3565,3587,3589;, + 3;3565,3589,3310;, + 3;3574,3309,3581;, + 3;3664,3670,3669;, + 3;4214,4259,4230;, + 3;3666,3604,3671;, + 3;3572,3606,3577;, + 3;4216,4233,4231;, + 3;3575,3607,3609;, + 3;3311,3318,3316;, + 3;4219,4230,4234;, + 3;4256,3669,4260;, + 3;3572,4232,3608;, + 3;3309,3610,3319;, + 3;3565,3317,3605;, + 3;4643,4654,4660;, + 3;4661,4618,4655;, + 3;5019,5024,5022;, + 3;5026,5232,5024;, + 3;5239,5278,5241;, + 3;5028,5229,5227;, + 3;5227,5286,5284;, + 3;5279,5284,5286;, + 3;5200,5235,5027;, + 3;5230,5285,5287;, + 3;5031,5027,5020;, + 3;5032,5228,5230;, + 3;5248,5280,5240;, + 3;5287,5281,5289;, + 3;5202,5023,5025;, + 3;5025,5249,5202;, + 3;5204,5288,5251;, + 3;5201,5251,5245;, + 3;5231,5035,5032;, + 3;5204,5031,5035;, + 3;5236,5242,5233;, + 3;5234,5243,5249;, + 3;5288,5248,5251;, + 3;5245,5251,5248;, + 3;5029,5036,5037;, + 3;5031,5037,5036;, + 3;5237,5248,5240;, + 3;6189,5203,6194;, + 3;6190,5229,5030;, + 3;6198,5286,5229;, + 3;6194,5250,6195;, + 3;6199,5279,5286;, + 3;6196,5278,6201;, + 3;6195,5244,6197;, + 3;5252,5257,5254;, + 3;5253,2371,31;, + 3;5255,2373,2372;, + 3;5260,2374,5258;, + 3;5262,2378,5263;, + 3;5263,5265,5262;, + 3;5205,2380,5262;, + 3;5206,5262,5265;, + 3;5270,5267,5272;, + 3;5275,2393,2392;, + 3;5275,5273,5276;, + 3;5208,5266,5270;, + 3;5210,2392,34;, + 3;5210,5271,5275;, + 3;5268,2379,2397;, + 3;2398,5277,5274;, + 3;2398,5268,2397;, + 3;3879,4664,4545;, + 3;4064,4666,4665;, + 3;4069,4670,4666;, + 3;4077,4672,4670;, + 3;4086,4674,4673;, + 3;4088,4625,4674;, + 3;4627,3970,3979;, + 3;3948,4627,3979;, + 3;3899,4595,3948;, + 3;3880,4547,3899;, + 3;5101,4671,4675;, + 3;4972,4596,4958;, + 3;4972,4630,4628;, + 3;5102,4677,5105;, + 3;4961,4596,4598;, + 3;4964,5108,4979;, + 3;4980,4964,4979;, + 3;4677,4982,5105;, + 3;4631,4982,4633;, + 3;4667,4946,4548;, + 3;4948,4548,4946;, + 3;5108,4984,4979;, + 3;4979,4986,4980;, + 3;4636,4597,4629;, + 3;4636,4632,4634;, + 3;4668,5090,5086;, + 3;4671,5090,4669;, + 3;4551,4950,4553;, + 3;4962,4554,4951;, + 3;4954,4969,4967;, + 3;4965,4967,4969;, + 3;4556,4552,4555;, + 3;4599,4556,4555;, + 3;4964,5099,5097;, + 3;4956,5099,4971;, + 3;4956,4969,4954;, + 3;4964,4969,4971;, + 3;4552,4557,4549;, + 3;4597,4557,4556;, + 3;5109,5095,5103;, + 3;4981,4959,4966;, + 3;4985,5106,4983;, + 3;5110,5104,5107;, + 3;4980,4975,4973;, + 3;4987,4983,4976;, + 3;4968,4949,4955;, + 3;4970,4952,4967;, + 3;4970,4960,4963;, + 3;5098,5091,5095;, + 3;5093,5092,5099;, + 3;4957,5087,5094;, + 3;4955,4947,4957;, + 3;4548,4664,4667;, + 3;4668,4666,4669;, + 3;4669,4670,4671;, + 3;4671,4672,4675;, + 3;4676,4674,4677;, + 3;4677,4625,4633;, + 3;4627,4635,4626;, + 3;4601,4627,4595;, + 3;4558,4595,4547;, + 3;4550,4547,4546;, + 3;5038,5041,5148;, + 3;5038,4680,4663;, + 3;5043,5000,4997;, + 3;5039,4638,5003;, + 3;5049,5112,5152;, + 3;5007,5004,5114;, + 3;5004,4678,5114;, + 3;5044,5008,5042;, + 3;4998,5004,5007;, + 3;5046,5005,5001;, + 3;5045,5038,5047;, + 3;5042,5006,5049;, + 3;5042,5152,5149;, + 3;5153,5115,5150;, + 3;5008,5112,5006;, + 3;4679,5151,5116;, + 3;3726,3733,3729;, + 3;3726,4272,4270;, + 3;4027,4005,4002;, + 3;3727,4266,3699;, + 3;3735,3702,3736;, + 3;3705,3700,3707;, + 3;3700,4268,3707;, + 3;4028,3706,3734;, + 3;4003,3700,3705;, + 3;4030,3701,4006;, + 3;4029,3726,4031;, + 3;3734,3704,3735;, + 3;3734,3736,3730;, + 3;3737,3708,3731;, + 3;3706,3702,3704;, + 3;4269,3732,3709;, + 3;4876,4881,4879;, + 3;4876,4272,4881;, + 3;5050,5009,5053;, + 3;4877,4266,4271;, + 3;4885,4861,4860;, + 3;4863,4865,4857;, + 3;4857,4268,4267;, + 3;5051,4864,5012;, + 3;5013,4857,5010;, + 3;5054,4858,4878;, + 3;5052,4876,4879;, + 3;4880,4860,4864;, + 3;4880,4886,4885;, + 3;4887,4866,4862;, + 3;4864,4861,4867;, + 3;4269,4882,4273;, + 3;4235,4221,4223;, + 3;3672,4222,3668;, + 3;3611,3668,3592;, + 3;3614,3591,3593;, + 3;3616,3593,3595;, + 3;3619,3594,3596;, + 3;4240,3596,4225;, + 3;4238,4224,4221;, + 3;4241,4239,3041;, + 3;3620,4241,3041;, + 3;3620,3041,3617;, + 3;3617,3041,3615;, + 3;3615,3041,3612;, + 3;3612,3041,3673;, + 3;4236,3673,3041;, + 3;4239,4236,3041;, + 3;4261,3042,3388;, + 3;3042,3390,3388;, + 3;4261,4829,3042;, + 3;4261,4793,4829;, + 3;3042,4831,3390;, + 3;3042,4829,4831;, + 3;3354,3388,3126;, + 3;3354,4261,3388;, + 3;3126,3388,3393;, + 3;3347,3355,3127;, + 3;3347,3127,3124;, + 3;4262,4789,4794;, + 3;4258,4789,4262;, + 3;4795,4826,4830;, + 3;4790,4826,4795;, + 3;4830,4827,4832;, + 3;4826,4827,4830;, + 3;3391,4833,4828;, + 3;3384,3391,4828;, + 3;3389,3392,3385;, + 3;3386,3389,3385;, + 3;3128,3394,3387;, + 3;3125,3128,3387;, + 3;3356,4258,4262;, + 3;3348,4258,3356;, + 3;3387,3394,3389;, + 3;3387,3389,3386;, + 3;3282,3320,3313;, + 3;3043,3359,3044;, + 3;3285,3324,3321;, + 3;3282,3287,3286;, + 3;3044,3361,3045;, + 3;3288,3621,3324;, + 3;3284,3526,3289;, + 3;3524,3622,3527;, + 3;3312,3044,3315;, + 3;3322,3360,3357;, + 3;3312,3358,3043;, + 3;3315,3045,3601;, + 3;3601,3361,3623;, + 3;3325,3362,3360;, + 3;3529,3293,3290;, + 3;3291,3333,3326;, + 3;3530,3292,3046;, + 3;3292,3625,3046;, + 3;3327,3659,3626;, + 3;3294,3660,3334;, + 3;3294,3534,3047;, + 3;3530,3046,4756;, + 3;3046,4775,4756;, + 3;3626,4781,4776;, + 3;3047,4782,3660;, + 3;3047,3534,4761;, + 3;3531,4762,3535;, + 3;4757,4783,4763;, + 3;4186,4180,4182;, + 3;4191,4182,4183;, + 3;4191,4732,4738;, + 3;4193,4734,4184;, + 3;3048,4187,4192;, + 3;4194,4188,3048;, + 3;3048,4739,4741;, + 3;4195,3048,4741;, + 3;4189,4184,4181;, + 3;4740,4735,4742;, + 3;3112,3256,3258;, + 3;3256,3500,3258;, + 3;3257,3115,3049;, + 3;3108,3049,3115;, + 3;3503,3050,3506;, + 3;3040,3506,3050;, + 3;3501,3051,3508;, + 3;3495,3508,3051;, + 3;3502,3052,3259;, + 3;3497,3052,3509;, + 3;3259,3116,3113;, + 3;3249,3116,3052;, + 3;3507,3498,3504;, + 3;3260,3499,3256;, + 3;3494,3051,3507;, + 3;3059,3117,3062;, + 3;3059,3064,3061;, + 3;3060,3119,3111;, + 3;3110,3262,3117;, + 3;3111,3265,3253;, + 3;3251,3266,3263;, + 3;3063,3120,3065;, + 3;3118,3267,3120;, + 3;3532,4243,3627;, + 3;3268,3053,3532;, + 3;3053,4778,4243;, + 3;4197,4759,3053;, + 3;3628,3525,3533;, + 3;4244,3603,3629;, + 3;4779,4229,4244;, + 3;4760,4774,4780;, + 3;4744,4755,4760;, + 3;4198,4737,4745;, + 3;4185,3269,3255;, + 3;3254,3533,3525;, + 3;3630,3676,3633;, + 3;3630,4263,3674;, + 3;3636,4247,4250;, + 3;3636,3644,3639;, + 3;4250,3630,3636;, + 3;3647,3653,3656;, + 3;3329,3657,3331;, + 3;3641,3650,3648;, + 3;3637,3654,3651;, + 3;3634,3655,3631;, + 3;3634,3332,3658;, + 3;3641,3648,3330;, + 3;3675,3670,3677;, + 3;4245,4259,4264;, + 3;3678,3604,3635;, + 3;3640,3606,3608;, + 3;4248,4233,4251;, + 3;3642,3607,3645;, + 3;3331,3318,3329;, + 3;4252,4230,4245;, + 3;4265,3669,3675;, + 3;3640,4232,4249;, + 3;3330,3610,3641;, + 3;3634,3317,3332;, + 3;5323,5331,5326;, + 3;5318,5332,5324;, + 3;5291,5320,5318;, + 3;5294,5302,5292;, + 3;5296,5304,5294;, + 3;5299,5305,5297;, + 3;5328,5307,5299;, + 3;5326,5334,5329;, + 3;5330,5301,5327;, + 3;5300,5301,5330;, + 3;5300,5298,5301;, + 3;5298,5295,5301;, + 3;5295,5293,5301;, + 3;5293,5319,5301;, + 3;5325,5301,5319;, + 3;5327,5301,5325;, + 3;5336,5331,5333;, + 3;5321,5332,5320;, + 3;5308,5320,5303;, + 3;5311,5302,5304;, + 3;5313,5304,5306;, + 3;5316,5305,5307;, + 3;5341,5307,5335;, + 3;5339,5334,5331;, + 3;5342,5340,5290;, + 3;5317,5342,5290;, + 3;5317,5290,5314;, + 3;5314,5290,5312;, + 3;5312,5290,5309;, + 3;5309,5290,5322;, + 3;5337,5322,5290;, + 3;5340,5337,5290;, + 3;5350,5355,5352;, + 3;5351,2485,2465;, + 3;5353,2487,2486;, + 3;5358,2488,5356;, + 3;5360,2492,5361;, + 3;5361,5363,5360;, + 3;5344,2494,5360;, + 3;5345,5360,5363;, + 3;5368,5365,5370;, + 3;5373,2507,2506;, + 3;5373,5371,5374;, + 3;5347,5364,5368;, + 3;5349,2506,2468;, + 3;5349,5369,5373;, + 3;5366,2493,2511;, + 3;2512,5375,5372;, + 3;2512,5366,2511;, + 3;5384,5396,5397;, + 3;5386,5401,5396;, + 3;5384,5403,5389;, + 3;5391,5170,5393;, + 3;5394,5185,5405;, + 3;5405,5188,5407;, + 3;5408,5194,5411;, + 3;5411,5197,5413;, + 3;5380,4851,5376;, + 3;5169,5377,4852;, + 3;5413,4996,5381;, + 3;5385,5393,5387;, + 3;5398,5412,5414;, + 3;5388,5406,5399;, + 3;5399,5409,5402;, + 3;5401,5412,5396;, + 3;5403,5414,5382;, + 3;5390,5383,5378;, + 3;5384,5379,5392;, + 3;5447,5418,5415;, + 3;5448,5453,5450;, + 3;5451,5421,5419;, + 3;5416,5422,5459;, + 3;5449,5460,5456;, + 3;5457,5423,5454;, + 3;5462,5427,5424;, + 3;5463,5468,5465;, + 3;5466,5430,5428;, + 3;5425,5431,5433;, + 3;5464,5434,5471;, + 3;5472,5432,5469;, + 3;5474,5439,5436;, + 3;5475,5479,5477;, + 3;5478,5441,5439;, + 3;5437,5442,5444;, + 3;5476,5445,5482;, + 3;5483,5443,5480;, + 3;5517,5488,5485;, + 3;5518,5523,5520;, + 3;5521,5491,5489;, + 3;5486,5492,5529;, + 3;5519,5530,5526;, + 3;5527,5493,5524;, + 3;5532,5497,5494;, + 3;5533,5538,5535;, + 3;5536,5500,5498;, + 3;5495,5501,5503;, + 3;5534,5504,5541;, + 3;5542,5502,5539;, + 3;5544,5509,5506;, + 3;5545,5549,5547;, + 3;5548,5511,5509;, + 3;5507,5512,5514;, + 3;5546,5515,5552;, + 3;5553,5513,5550;, + 3;5587,5558,5555;, + 3;5588,5593,5590;, + 3;5591,5561,5559;, + 3;5556,5562,5599;, + 3;5589,5600,5596;, + 3;5597,5563,5594;, + 3;5602,5567,5564;, + 3;5603,5608,5605;, + 3;5606,5570,5568;, + 3;5565,5571,5573;, + 3;5604,5574,5611;, + 3;5612,5572,5609;, + 3;1063,1067,1161;, + 3;5615,5619,5617;, + 3;5618,5581,5579;, + 3;5577,5582,5584;, + 3;5616,5585,5622;, + 3;5623,5583,5620;, + 3;5657,5628,5625;, + 3;5658,5663,5660;, + 3;5661,5631,5629;, + 3;5626,5632,5669;, + 3;5659,5670,5666;, + 3;5667,5633,5664;, + 3;5672,5637,5634;, + 3;5673,5678,5675;, + 3;5676,5640,5638;, + 3;5635,5641,5643;, + 3;5674,5644,5681;, + 3;5682,5642,5679;, + 3;5684,5649,5646;, + 3;5685,5689,5687;, + 3;5688,5651,5649;, + 3;5647,5652,5654;, + 3;5686,5655,5692;, + 3;5693,5653,5690;, + 3;5716,5721,5718;, + 3;5713,5722,5717;, + 3;5695,5714,5713;, + 3;5697,5701,5696;, + 3;5698,5703,5697;, + 3;5700,5704,5699;, + 3;5719,5706,5700;, + 3;5718,5724,5720;, + 3;5726,5721,5723;, + 3;5715,5722,5714;, + 3;5707,5714,5702;, + 3;5709,5701,5703;, + 3;5710,5703,5705;, + 3;5712,5704,5706;, + 3;5729,5706,5725;, + 3;5728,5724,5721;, + 3;5752,5757,5754;, + 3;5749,5758,5753;, + 3;5731,5750,5749;, + 3;5733,5737,5732;, + 3;5734,5739,5733;, + 3;5736,5740,5735;, + 3;5755,5742,5736;, + 3;5754,5760,5756;, + 3;5762,5757,5759;, + 3;5751,5758,5750;, + 3;5743,5750,5738;, + 3;5745,5737,5739;, + 3;5746,5739,5741;, + 3;5748,5740,5742;, + 3;5765,5742,5761;, + 3;5764,5760,5757;, + 3;5791,5796,5794;, + 3;5801,5796,5804;, + 3;5798,5809,5807;, + 3;5805,5767,5802;, + 3;5775,5781,5778;, + 3;5785,5781,5783;, + 3;5779,5811,5776;, + 3;5788,5773,5771;, + 3;5768,5812,5810;, + 3;5809,5813,5807;, + 3;5808,5772,5769;, + 3;5770,5773,5767;, + 3;5769,5806,5808;, + 3;5797,5799,5808;, + 3;5806,5797,5808;, + 3;5768,5810,5803;, + 3;5803,5810,5795;, + 3;5795,5810,5792;, + 3;5772,5814,5780;, + 3;5772,5782,5789;, + 3;5772,5780,5782;, + 3;5774,5786,5812;, + 3;5784,5777,5812;, + 3;5786,5784,5812;, + 3;5852,5837,5834;, + 3;5852,5840,5837;, + 3;5852,5843,5840;, + 3;5843,5852,5846;, + 3;5846,5852,5849;, + 3;5849,5852,5834;, + 3;5815,5819,5816;, + 3;5815,5816,5822;, + 3;5815,5822,5825;, + 3;5825,5828,5815;, + 3;5828,5831,5815;, + 3;5831,5819,5815;, + 3;5817,5841,5823;, + 3;5824,5844,5826;, + 3;5827,5847,5829;, + 3;5830,5850,5832;, + 3;5833,5835,5820;, + 3;5821,5838,5818;, + 3;5890,5875,5872;, + 3;5890,5878,5875;, + 3;5890,5881,5878;, + 3;5881,5890,5884;, + 3;5884,5890,5887;, + 3;5887,5890,5872;, + 3;5853,5857,5854;, + 3;5853,5854,5860;, + 3;5853,5860,5863;, + 3;5863,5866,5853;, + 3;5866,5869,5853;, + 3;5869,5857,5853;, + 3;5855,5879,5861;, + 3;5862,5882,5864;, + 3;5865,5885,5867;, + 3;5868,5888,5870;, + 3;5871,5873,5858;, + 3;5859,5876,5856;, + 3;5941,5946,5948;, + 3;5931,5943,5942;, + 3;5949,5932,5931;, + 3;5954,5951,5950;, + 3;5954,5959,5955;, + 3;5957,5963,5960;, + 3;5962,5967,5963;, + 3;5965,5946,5968;, + 3;5969,5947,5970;, + 3;5964,5969,5970;, + 3;5961,5964,5970;, + 3;5956,5961,5970;, + 3;5956,5970,5952;, + 3;5952,5970,5933;, + 3;5933,5970,5944;, + 3;5944,5970,5947;, + 3;5901,5925,5928;, + 3;5901,5904,5925;, + 3;5925,5912,5971;, + 3;5925,5904,5912;, + 3;5902,5929,5891;, + 3;5891,5929,5915;, + 3;5930,5926,5916;, + 3;5916,5926,5917;, + 3;5927,5972,5918;, + 3;5918,5972,5934;, + 3;5913,5907,5973;, + 3;5907,5935,5973;, + 3;5905,5893,5914;, + 3;5893,5908,5914;, + 3;5903,5892,5906;, + 3;5892,5894,5906;, + 3;5895,5919,5898;, + 3;5895,5921,5919;, + 3;5919,5909,5898;, + 3;5919,5938,5909;, + 3;5892,5899,5894;, + 3;5892,5896,5899;, + 3;5916,5917,5922;, + 3;5923,5918,5920;, + 3;5891,5915,5897;, + 3;5915,5924,5897;, + 3;5893,5910,5908;, + 3;5893,5900,5910;, + 3;5939,5936,5907;, + 3;5911,5939,5907;, + 3;5920,5918,5940;, + 3;5918,5937,5940;, + 3;5977,5982,5984;, + 3;5974,5979,5978;, + 3;5985,5975,5974;, + 3;5990,5987,5986;, + 3;5990,5995,5991;, + 3;5993,5999,5996;, + 3;5998,6003,5999;, + 3;6001,5982,6004;, + 3;6005,5983,6006;, + 3;6000,6005,6006;, + 3;5997,6000,6006;, + 3;5992,5997,6006;, + 3;5992,6006,5988;, + 3;5988,6006,5976;, + 3;5976,6006,5980;, + 3;5980,6006,5983;, + 3;6010,6015,6017;, + 3;6007,6012,6011;, + 3;6018,6008,6007;, + 3;6023,6020,6019;, + 3;6023,6028,6024;, + 3;6026,6032,6029;, + 3;6031,6036,6032;, + 3;6034,6015,6037;, + 3;6038,6016,6039;, + 3;6033,6038,6039;, + 3;6030,6033,6039;, + 3;6025,6030,6039;, + 3;6025,6039,6021;, + 3;6021,6039,6009;, + 3;6009,6039,6013;, + 3;6013,6039,6016;, + 3;6090,6095,6092;, + 3;6080,6093,6081;, + 3;6098,6081,6100;, + 3;6103,6101,6104;, + 3;6103,6108,6106;, + 3;6107,6112,6111;, + 3;6111,6116,6114;, + 3;6115,6095,6097;, + 3;6117,6119,6096;, + 3;6113,6119,6117;, + 3;6109,6119,6113;, + 3;6105,6119,6109;, + 3;6105,6102,6119;, + 3;6102,6082,6119;, + 3;6082,6094,6119;, + 3;6094,6096,6119;, + 3;6050,6077,6074;, + 3;6050,6074,6053;, + 3;6074,6120,6061;, + 3;6074,6061,6053;, + 3;6051,6040,6078;, + 3;6040,6064,6078;, + 3;6079,6065,6075;, + 3;6065,6066,6075;, + 3;6076,6067,6121;, + 3;6067,6083,6121;, + 3;6062,6122,6056;, + 3;6056,6122,6084;, + 3;6054,6063,6042;, + 3;6042,6063,6057;, + 3;6052,6055,6041;, + 3;6041,6055,6043;, + 3;6044,6047,6068;, + 3;6044,6068,6070;, + 3;6068,6047,6058;, + 3;6068,6058,6087;, + 3;6041,6043,6048;, + 3;6041,6048,6045;, + 3;6065,6071,6066;, + 3;6072,6069,6067;, + 3;6040,6046,6064;, + 3;6064,6046,6073;, + 3;6042,6057,6059;, + 3;6042,6059,6049;, + 3;6088,6056,6085;, + 3;6060,6056,6088;, + 3;6069,6089,6067;, + 3;6067,6089,6086;, + 3;6126,6131,6128;, + 3;6123,6129,6124;, + 3;6134,6124,6136;, + 3;6139,6137,6140;, + 3;6139,6144,6142;, + 3;6143,6148,6147;, + 3;6147,6152,6150;, + 3;6151,6131,6133;, + 3;6153,6155,6132;, + 3;6149,6155,6153;, + 3;6145,6155,6149;, + 3;6141,6155,6145;, + 3;6141,6138,6155;, + 3;6138,6125,6155;, + 3;6125,6130,6155;, + 3;6130,6132,6155;, + 3;6159,6164,6161;, + 3;6156,6162,6157;, + 3;6167,6157,6169;, + 3;6172,6170,6173;, + 3;6172,6177,6175;, + 3;6176,6181,6180;, + 3;6180,6185,6183;, + 3;6184,6164,6166;, + 3;6186,6188,6165;, + 3;6182,6188,6186;, + 3;6178,6188,6182;, + 3;6174,6188,6178;, + 3;6174,6171,6188;, + 3;6171,6158,6188;, + 3;6158,6163,6188;, + 3;6163,6165,6188;, + 3;1063,1161,1747;, + 3;1068,1073,1035;, + 3;1064,1730,1705;, + 3;1074,1044,1152;, + 3;1042,1706,1745;, + 3;1069,1040,1046;, + 3;1039,1037,1042;, + 3;1071,1065,1043;, + 3;1070,1067,1063;, + 3;1066,1046,1044;, + 3;1066,1074,1162;, + 3;1163,1153,1155;, + 3;1046,1157,1152;, + 3;1746,1748,1160;, + 3;1047,2279,0;, + 3;740,1936,2279;, + 3;2,3,1936;, + 3;446,763,764;, + 3;762,4,5;, + 3;446,447,6;, + 3;420,736,737;, + 3;1958,8,1959;, + 3;425,427,193;, + 3;426,739,766;, + 3;1917,1920,737;, + 3;1962,1960,766;, + 3;421,424,427;, + 3;738,739,426;, + 3;738,1921,1962;, + 3;1918,1958,1961;, + 3;1075,2108,1749;, + 3;196,91,94;, + 3;91,93,96;, + 3;767,773,463;, + 3;466,464,468;, + 3;93,236,97;, + 3;470,469,478;, + 3;467,237,448;, + 3;237,234,195;, + 3;471,238,237;, + 3;238,92,234;, + 3;471,473,239;, + 3;238,239,235;, + 3;770,769,449;, + 3;199,450,449;, + 3;478,241,240;, + 3;241,98,236;, + 3;242,204,201;, + 3;84,202,201;, + 3;455,458,459;, + 3;456,203,205;, + 3;452,460,243;, + 3;202,85,86;, + 3;99,242,243;, + 3;84,99,100;, + 3;178,222,244;, + 3;180,225,227;, + 3;229,247,248;, + 3;245,212,214;, + 3;211,187,189;, + 3;185,189,187;, + 3;192,233,222;, + 3;228,226,229;, + 3;210,217,190;, + 3;209,244,250;, + 3;244,222,232;, + 3;178,191,186;, + 3;233,227,232;, + 3;192,186,227;, + 3;774,1078,1048;, + 3;743,1052,223;, + 3;1053,1080,246;, + 3;1079,778,212;, + 3;777,746,188;, + 3;744,183,188;, + 3;224,1051,1053;, + 3;747,741,1048;, + 3;775,742,746;, + 3;1076,1080,1053;, + 3;776,778,1079;, + 3;748,1056,1050;, + 3;1055,1049,1053;, + 3;742,749,744;, + 3;72,429,163;, + 3;61,139,385;, + 3;65,142,137;, + 3;386,433,76;, + 3;431,430,73;, + 3;144,148,169;, + 3;173,171,434;, + 3;146,390,435;, + 3;145,11,389;, + 3;391,1875,1922;, + 3;1874,393,394;, + 3;1923,1876,1878;, + 3;1881,1930,1926;, + 3;1924,1928,439;, + 3;1929,443,440;, + 3;438,441,395;, + 3;442,399,395;, + 3;12,150,151;, + 3;400,1883,1880;, + 3;13,1881,1879;, + 3;155,153,397;, + 3;149,400,396;, + 3;2214,2215,2315;, + 3;2214,1753,1755;, + 3;1758,2221,2215;, + 3;2218,1762,1753;, + 3;1164,1758,1755;, + 3;1760,1763,6191;, + 3;1765,6192,6191;, + 3;2219,2222,1764;, + 3;2223,1766,1764;, + 3;2319,2317,2321;, + 3;2327,2330,2324;, + 3;2224,2328,2322;, + 3;2316,2217,2226;, + 3;1754,6191,1767;, + 3;6192,1769,1767;, + 3;2329,2223,2222;, + 3;2219,2320,2326;, + 3;1770,2229,2230;, + 3;2220,1759,1773;, + 3;2216,2220,2231;, + 3;2229,2225,2228;, + 3;1168,1171,1172;, + 3;1757,1768,1170;, + 3;1759,1166,1173;, + 3;1767,1769,1771;, + 3;479,483,485;, + 3;1775,1175,1176;, + 3;2232,1775,1777;, + 3;1176,1175,1178;, + 3;479,489,1180;, + 3;1182,1183,1779;, + 3;1184,1781,1779;, + 3;1780,1779,2236;, + 3;1781,2237,2236;, + 3;15,2239,1783;, + 3;2240,1785,1783;, + 3;491,494,495;, + 3;495,494,497;, + 3;502,504,505;, + 3;508,511,506;, + 3;513,514,515;, + 3;514,518,519;, + 3;486,484,521;, + 3;527,528,519;, + 3;1186,1188,495;, + 3;1189,496,495;, + 3;1189,1188,1183;, + 3;1186,1184,1183;, + 3;1190,1192,1193;, + 3;1196,1197,1193;, + 3;1196,1192,505;, + 3;1190,508,505;, + 3;1197,1784,1783;, + 3;1785,1194,1193;, + 3;513,517,493;, + 3;520,526,522;, + 3;503,507,528;, + 3;1179,1187,501;, + 3;480,501,498;, + 3;482,499,493;, + 3;523,493,517;, + 3;1174,1185,1187;, + 3;1776,1782,1185;, + 3;2233,2238,1782;, + 3;1181,1191,1195;, + 3;1177,1195,1786;, + 3;1778,1786,2241;, + 3;490,509,1191;, + 3;487,512,509;, + 3;525,507,510;, + 3;519,528,507;, + 3;1198,1788,1789;, + 3;1787,1793,1794;, + 3;1204,1208,1795;, + 3;1210,1211,1212;, + 3;1201,1791,1796;, + 3;1199,1203,1211;, + 3;1199,1210,1213;, + 3;1213,1212,1207;, + 3;1202,1209,1212;, + 3;1214,2243,2244;, + 3;1214,1219,1220;, + 3;1221,1226,1228;, + 3;2245,2246,1230;, + 3;2242,1215,1232;, + 3;1217,2245,2246;, + 3;2242,1215,1232;, + 3;1215,1225,1229;, + 3;1231,1227,1222;, + 3;2248,2332,2333;, + 3;2331,2335,17;, + 3;2249,18,2335;, + 3;78,81,68;, + 3;82,75,167;, + 3;164,177,175;, + 3;428,444,176;, + 3;387,401,445;, + 3;401,388,138;, + 3;156,140,141;, + 3;158,143,66;, + 3;62,71,70;, + 3;64,68,71;, + 3;74,83,80;, + 3;432,445,444;, + 3;1081,1082,19;, + 3;21,22,1082;, + 3;2108,23,1797;, + 3;24,1075,1751;, + 3;469,475,529;, + 3;771,780,476;, + 3;94,103,218;, + 3;96,104,102;, + 3;241,478,529;, + 3;458,461,25;, + 3;207,221,461;, + 3;88,89,220;, + 3;101,26,89;, + 3;464,477,474;, + 3;97,106,104;, + 3;241,252,105;, + 3;1750,1798,1800;, + 3;451,200,219;, + 3;451,462,779;, + 3;1963,1966,1967;, + 3;1968,1967,2109;, + 3;2111,2110,2109;, + 3;1964,2112,2114;, + 3;1937,1963,1968;, + 3;1939,1968,2110;, + 3;2081,2110,2111;, + 3;1938,2083,2112;, + 3;1884,1887,2256;, + 3;1931,2262,2263;, + 3;1932,1889,2258;, + 3;2263,2262,2260;, + 3;1935,1893,1890;, + 3;159,1885,1889;, + 3;27,162,1891;, + 3;28,1888,1886;, + 3;1552,916,1554;, + 3;916,980,1626;, + 3;980,1630,1631;, + 3;1558,1559,1560;, + 3;1555,1562,1559;, + 3;1627,1634,1561;, + 3;1632,1635,1633;, + 3;1632,1629,1636;, + 3;1629,982,983;, + 3;981,918,919;, + 3;917,1553,1560;, + 3;1563,1566,1567;, + 3;921,1567,1637;, + 3;985,1637,1640;, + 3;1565,1564,1560;, + 3;1568,1565,1559;, + 3;1638,1569,1561;, + 3;1641,1639,1633;, + 3;1641,1635,1636;, + 3;1643,1636,983;, + 3;987,984,919;, + 3;923,920,1560;, + 3;1570,1573,1575;, + 3;1580,1585,1575;, + 3;1578,1587,1588;, + 3;1583,1582,924;, + 3;1446,1451,1452;, + 3;1456,1454,1452;, + 3;1449,1448,1590;, + 3;1460,929,930;, + 3;925,1589,1591;, + 3;1588,1587,1592;, + 3;1586,927,928;, + 3;926,924,930;, + 3;852,854,793;, + 3;1341,1347,1981;, + 3;2013,2017,1462;, + 3;876,1468,880;, + 3;880,1468,1469;, + 3;794,855,1436;, + 3;1351,799,795;, + 3;877,1477,1470;, + 3;1471,1480,1481;, + 3;2017,1482,1478;, + 3;1437,1441,1346;, + 3;1350,1346,1342;, + 3;1483,1466,1463;, + 3;1474,1486,1480;, + 3;884,886,887;, + 3;2018,2020,2022;, + 3;1487,1490,886;, + 3;1488,1493,1494;, + 3;2025,2023,1495;, + 3;852,887,886;, + 3;2020,1987,1983;, + 3;855,886,1497;, + 3;1496,1499,1498;, + 3;1438,1498,1499;, + 3;1439,1500,2023;, + 3;882,881,884;, + 3;880,1472,1487;, + 3;1473,1481,1493;, + 3;1482,2017,2025;, + 3;2017,2016,2018;, + 3;856,802,804;, + 3;1355,1990,1992;, + 3;2026,1503,1504;, + 3;891,895,897;, + 3;897,1508,1510;, + 3;805,1363,1442;, + 3;1365,1364,806;, + 3;892,1507,1511;, + 3;1512,1509,1517;, + 3;2029,1504,1520;, + 3;1443,1362,1361;, + 3;1362,1367,1356;, + 3;1522,1521,1505;, + 3;1514,1512,1519;, + 3;899,902,903;, + 3;2030,2033,2034;, + 3;1526,900,905;, + 3;1527,1529,1531;, + 3;2032,1535,1532;, + 3;856,858,905;, + 3;2036,2034,1994;, + 3;859,1442,1536;, + 3;1533,1530,1537;, + 3;1443,1445,1540;, + 3;1444,1993,2035;, + 3;895,902,899;, + 3;897,900,1526;, + 3;1509,1527,1534;, + 3;1518,1535,2032;, + 3;2029,2033,2030;, + 3;904,901,890;, + 3;901,896,883;, + 3;896,894,878;, + 3;893,1516,1475;, + 3;1515,1525,1484;, + 3;1524,1502,1465;, + 3;1502,2028,2014;, + 3;2027,2031,2019;, + 3;2031,2037,2021;, + 3;2037,1991,1985;, + 3;1989,1358,1343;, + 3;1357,1368,1353;, + 3;1366,803,797;, + 3;801,857,853;, + 3;857,904,888;, + 3;1138,1132,1133;, + 3;1009,1012,988;, + 3;1009,1016,1018;, + 3;1139,1143,1144;, + 3;993,990,988;, + 3;999,1134,1148;, + 3;1022,1000,999;, + 3;1144,1024,1027;, + 3;1019,1017,1027;, + 3;1119,1123,932;, + 3;937,939,934;, + 3;1148,1150,1029;, + 3;1021,1029,1031;, + 3;1033,1003,989;, + 3;1033,1013,1020;, + 3;1120,1125,1126;, + 3;1133,1132,1126;, + 3;939,937,941;, + 3;994,998,946;, + 3;1000,1007,1005;, + 3;997,989,950;, + 3;999,1008,1136;, + 3;951,1129,1136;, + 3;951,1008,1004;, + 3;999,1000,1004;, + 3;940,950,953;, + 3;989,1003,953;, + 3;1149,1135,1131;, + 3;1023,1011,991;, + 3;1030,1151,1146;, + 3;1150,1148,1141;, + 3;1022,1031,1014;, + 3;1032,1030,1028;, + 3;1006,944,938;, + 3;1007,995,943;, + 3;1007,1000,992;, + 3;1135,1137,1127;, + 3;1129,1124,1128;, + 3;952,933,1122;, + 3;949,938,933;, + 3;1267,1270,1288;, + 3;711,1269,1290;, + 3;589,711,718;, + 3;592,591,642;, + 3;594,592,643;, + 3;597,596,645;, + 3;1272,597,646;, + 3;1270,1274,1292;, + 3;304,294,318;, + 3;373,364,365;, + 3;293,296,322;, + 3;304,306,295;, + 3;374,365,367;, + 3;296,563,603;, + 3;305,574,561;, + 3;573,651,604;, + 3;335,373,374;, + 3;320,323,366;, + 3;335,321,364;, + 3;336,374,375;, + 3;650,375,367;, + 3;323,606,368;, + 3;564,569,298;, + 3;302,300,324;, + 3;303,329,607;, + 3;328,326,587;, + 3;299,560,588;, + 3;570,607,1842;, + 3;608,587,1845;, + 3;560,1828,1846;, + 3;566,1827,1829;, + 3;1826,1844,1847;, + 3;1233,1237,1247;, + 3;1238,1233,1249;, + 3;1238,1250,1810;, + 3;1240,1806,1812;, + 3;1244,1235,1234;, + 3;1244,1239,1802;, + 3;1236,1243,1251;, + 3;1803,1811,1813;, + 3;253,531,532;, + 3;254,109,110;, + 3;116,29,257;, + 3;535,259,260;, + 3;30,544,538;, + 3;533,530,540;, + 3;545,547,541;, + 3;534,542,261;, + 3;546,271,261;, + 3;256,261,111;, + 3;271,117,111;, + 3;539,540,530;, + 3;258,537,531;, + 3;543,545,540;, + 3;53,118,112;, + 3;53,48,50;, + 3;55,52,114;, + 3;118,273,262;, + 3;119,114,265;, + 3;272,275,266;, + 3;49,113,115;, + 3;113,264,267;, + 3;1594,1599,1542;, + 3;1595,957,958;, + 3;1598,960,906;, + 3;1596,1545,908;, + 3;956,909,907;, + 3;963,970,1607;, + 3;969,973,1610;, + 3;972,976,1645;, + 3;975,979,1648;, + 3;978,967,1601;, + 3;966,964,1605;, + 3;1546,1551,1995;, + 3;1547,912,913;, + 3;1550,915,860;, + 3;1999,1997,861;, + 3;1548,2000,864;, + 3;911,865,862;, + 3;1089,1094,1095;, + 3;1099,1104,2152;, + 3;729,1894,1896;, + 3;2158,2161,2162;, + 3;1894,1900,1901;, + 3;1105,1108,866;, + 3;870,873,868;, + 3;1100,874,867;, + 3;1102,1106,869;, + 3;2156,2001,874;, + 3;2002,871,874;, + 3;2153,1102,875;, + 3;872,2004,2003;, + 3;2168,2005,2001;, + 3;2007,2002,2001;, + 3;2170,2153,2003;, + 3;2004,2012,2009;, + 3;2171,2010,2006;, + 3;2011,2008,2006;, + 3;730,734,873;, + 3;733,1897,2004;, + 3;731,871,2002;, + 3;1897,1903,2012;, + 3;1898,2008,2011;, + 3;1895,2002,2007;, + 3;1107,1110,1111;, + 3;1101,1113,1114;, + 3;1106,1102,1115;, + 3;1108,1105,1118;, + 3;2156,2173,2175;, + 3;2169,2176,2177;, + 3;2153,2170,2178;, + 3;2157,2154,2180;, + 3;1110,1091,1098;, + 3;1117,1115,1096;, + 3;1109,1118,1093;, + 3;2173,2159,2166;, + 3;2176,2167,2163;, + 3;2179,2178,2164;, + 3;1112,2174,2181;, + 3;1115,2179,2160;, + 3;1097,1095,2161;, + 3;1111,1098,2159;, + 3;1369,1372,807;, + 3;1374,1377,1378;, + 3;1382,1384,1386;, + 3;1371,1370,1386;, + 3;1379,812,1385;, + 3;808,1373,1385;, + 3;1387,1391,1393;, + 3;1395,818,814;, + 3;1380,1376,819;, + 3;811,809,813;, + 3;815,819,1376;, + 3;1394,1392,1375;, + 3;1389,1377,1374;, + 3;1396,1394,1386;, + 3;816,811,819;, + 3;1397,1369,810;, + 3;1398,822,823;, + 3;1399,1403,1404;, + 3;1402,825,826;, + 3;820,1412,827;, + 3;1400,1409,1410;, + 3;1408,1406,828;, + 3;1413,831,832;, + 3;1414,1418,1419;, + 3;1417,834,835;, + 3;829,840,836;, + 3;1415,1424,838;, + 3;1423,1421,837;, + 3;1425,843,844;, + 3;1426,1429,1430;, + 3;1428,844,846;, + 3;841,851,847;, + 3;1427,1435,849;, + 3;1434,1432,848;, + 3;1670,1673,1674;, + 3;1650,1670,1676;, + 3;1656,1652,1654;, + 3;1678,1658,1660;, + 3;1678,1680,1682;, + 3;1707,1712,1713;, + 3;1717,1715,1686;, + 3;1708,1721,1726;, + 3;1711,1725,1724;, + 3;1709,1718,1723;, + 3;1714,1724,1675;, + 3;1688,1686,1674;, + 3;1718,1689,1672;, + 3;2264,2266,2280;, + 3;2266,2284,2285;, + 3;2264,2281,2287;, + 3;2271,2273,2274;, + 3;2277,2275,2289;, + 3;2290,2289,2292;, + 3;2295,2293,2298;, + 3;2299,2298,2301;, + 3;2084,2089,1940;, + 3;2273,2271,1943;, + 3;2302,2301,2088;, + 3;2265,2271,2276;, + 3;2282,2280,2300;, + 3;2268,2278,2291;, + 3;2283,2291,2296;, + 3;2285,2297,2300;, + 3;2287,2281,2303;, + 3;2270,2288,2087;, + 3;2264,2269,1945;, + 3;571,1266,1278;, + 3;268,1245,1266;, + 3;1266,1831,1848;, + 3;1245,1809,1831;, + 3;610,653,575;, + 3;1279,1296,652;, + 3;1849,1852,1296;, + 3;1832,1833,1851;, + 3;1807,1815,1833;, + 3;1246,1252,1814;, + 3;1252,1246,269;, + 3;277,270,572;, + 3;612,713,715;, + 3;612,1281,1322;, + 3;618,621,1282;, + 3;618,625,626;, + 3;1285,1281,612;, + 3;629,634,635;, + 3;330,631,639;, + 3;623,620,632;, + 3;619,614,636;, + 3;616,640,637;, + 3;714,719,720;, + 3;1280,1297,1326;, + 3;717,721,654;, + 3;622,628,656;, + 3;1283,1299,1300;, + 3;624,660,657;, + 3;332,339,340;, + 3;1287,1301,1297;, + 3;1324,1327,719;, + 3;622,658,1298;, + 3;331,341,659;, + 3;616,655,338;, + 3;1712,1728,1720;, + 3;1727,1722,1684;, + 3;2115,2119,2120;, + 3;2122,2120,2341;, + 3;2348,2352,2399;, + 3;2124,2336,2338;, + 3;2336,2405,2407;, + 3;2400,2407,2405;, + 3;2304,2123,2345;, + 3;2339,2408,2406;, + 3;2127,2117,2123;, + 3;2128,2339,2337;, + 3;2357,2349,2403;, + 3;2408,2410,2404;, + 3;2306,2121,2118;, + 3;2121,2306,2358;, + 3;2308,2360,2409;, + 3;2305,2355,2360;, + 3;2340,2128,2131;, + 3;2308,2131,2127;, + 3;2346,2343,2350;, + 3;2409,2360,2357;, + 3;2125,2133,2132;, + 3;2127,2132,2133;, + 3;2347,2349,2357;, + 3;6189,6194,2307;, + 3;6190,2126,2338;, + 3;6198,2338,2407;, + 3;6194,6195,2359;, + 3;6199,2407,2400;, + 3;6196,6201,2399;, + 3;6195,6197,2353;, + 3;2361,2365,2366;, + 3;2362,31,2371;, + 3;2364,2372,2373;, + 3;2370,2368,2374;, + 3;2375,2376,2378;, + 3;2376,2375,2381;, + 3;2309,2375,2380;, + 3;2310,2381,2375;, + 3;2386,2390,2384;, + 3;2391,2392,2393;, + 3;2391,2395,2388;, + 3;2312,2386,2382;, + 3;2314,34,2392;, + 3;2314,2391,2387;, + 3;2385,2397,2379;, + 3;2398,2389,2396;, + 3;2398,2397,2385;, + 3;934,1613,1731;, + 3;1120,1732,1733;, + 3;1125,1733,1737;, + 3;1133,1737,1739;, + 3;1143,1740,1741;, + 3;1144,1741,1692;, + 3;1694,1034,1026;, + 3;1002,1034,1694;, + 3;954,1002,1662;, + 3;936,954,1614;, + 3;2197,1743,1738;, + 3;2065,2051,1663;, + 3;2065,1695,1697;, + 3;2198,2202,1744;, + 3;2054,1667,1663;, + 3;2057,2072,2204;, + 3;2073,2072,2057;, + 3;1744,2202,2075;, + 3;1698,1700,2075;, + 3;1734,1615,2039;, + 3;2041,2039,1615;, + 3;2204,2072,2077;, + 3;2072,2073,2079;, + 3;1703,1696,1664;, + 3;1703,1702,1699;, + 3;1735,2185,2186;, + 3;1738,1736,2186;, + 3;1618,1622,2043;, + 3;2055,2046,1620;, + 3;2058,2062,2060;, + 3;1666,1621,1623;, + 3;2057,2193,2195;, + 3;2049,2064,2195;, + 3;2049,2047,2062;, + 3;2057,2064,2062;, + 3;1619,1617,1624;, + 3;1664,1623,1624;, + 3;2205,2200,2192;, + 3;2074,2059,2052;, + 3;2078,2076,2201;, + 3;2206,2203,2199;, + 3;2073,2067,2070;, + 3;2080,2071,2076;, + 3;2061,2048,2042;, + 3;2063,2060,2045;, + 3;2063,2056,2053;, + 3;2194,2192,2187;, + 3;2189,2195,2188;, + 3;2050,2190,2184;, + 3;2048,2050,2040;, + 3;1615,1734,1731;, + 3;1735,1736,1733;, + 3;1736,1738,1737;, + 3;1738,1743,1739;, + 3;1742,1744,1741;, + 3;1744,1700,1692;, + 3;1694,1693,1701;, + 3;1669,1662,1694;, + 3;1625,1614,1662;, + 3;1616,1612,1614;, + 3;2134,1729,1747;, + 3;2139,2092,2093;, + 3;2135,2098,1705;, + 3;2145,2254,2208;, + 3;2096,2210,1745;, + 3;2140,2138,2101;, + 3;2091,2100,2096;, + 3;2143,2095,2097;, + 3;2141,2144,2134;, + 3;2138,2145,2099;, + 3;2138,2252,2254;, + 3;2255,2253,2211;, + 3;2101,2099,2208;, + 3;1746,2213,2251;, + 3;781,1338,1339;, + 3;1083,1059,1060;, + 3;782,752,1333;, + 3;790,791,753;, + 3;750,758,1335;, + 3;1084,789,757;, + 3;1058,756,750;, + 3;1087,1062,751;, + 3;1085,1088,781;, + 3;789,790,755;, + 3;789,786,791;, + 3;792,787,759;, + 3;757,755,753;, + 3;1336,761,785;, + 3;1969,1974,1339;, + 3;2146,2151,2102;, + 3;1970,1337,1333;, + 3;1978,1949,1950;, + 3;1947,1334,1335;, + 3;2147,2107,1953;, + 3;2106,2104,1947;, + 3;2149,1971,1948;, + 3;2148,1972,1969;, + 3;1973,1953,1949;, + 3;1973,1978,1979;, + 3;1980,1951,1955;, + 3;1953,1957,1950;, + 3;1336,1340,1977;, + 3;1302,1289,1288;, + 3;722,718,1290;, + 3;661,641,718;, + 3;664,643,642;, + 3;666,644,643;, + 3;669,646,645;, + 3;1307,1291,646;, + 3;1305,1288,1292;, + 3;304,334,342;, + 3;37,38,381;, + 3;308,345,346;, + 3;304,307,310;, + 3;38,39,383;, + 3;309,346,671;, + 3;305,311,577;, + 3;573,578,672;, + 3;335,337,38;, + 3;343,380,382;, + 3;335,37,379;, + 3;337,650,39;, + 3;650,674,383;, + 3;347,382,384;, + 3;579,314,315;, + 3;312,350,355;, + 3;313,40,675;, + 3;349,676,709;, + 3;317,357,710;, + 3;40,1834,1853;, + 3;676,1855,1859;, + 3;41,710,1860;, + 3;581,586,1840;, + 3;1836,1841,1861;, + 3;1253,1249,1247;, + 3;1258,1250,1249;, + 3;1258,1818,1810;, + 3;1260,1251,1812;, + 3;42,1259,1254;, + 3;42,1820,1816;, + 3;1257,1248,1251;, + 3;1817,1821,1813;, + 3;278,280,550;, + 3;279,43,123;, + 3;116,123,43;, + 3;553,556,44;, + 3;30,44,556;, + 3;551,558,45;, + 3;545,45,558;, + 3;552,281,46;, + 3;546,559,46;, + 3;281,122,124;, + 3;271,46,124;, + 3;557,555,549;, + 3;283,278,548;, + 3;543,557,45;, + 3;53,56,125;, + 3;53,54,58;, + 3;55,119,127;, + 3;118,125,284;, + 3;119,274,287;, + 3;272,286,288;, + 3;57,60,128;, + 3;126,128,289;, + 3;582,678,1310;, + 3;290,582,47;, + 3;47,1310,1856;, + 3;1264,47,1837;, + 3;677,583,575;, + 3;1311,679,652;, + 3;1857,1311,1296;, + 3;1838,1858,1851;, + 3;1823,1838,1833;, + 3;1265,1824,1814;, + 3;1252,276,291;, + 3;277,575,583;, + 3;680,684,726;, + 3;680,724,1330;, + 3;686,1317,1314;, + 3;686,689,694;, + 3;1317,686,680;, + 3;697,708,703;, + 3;351,354,706;, + 3;692,699,701;, + 3;688,702,704;, + 3;683,682,705;, + 3;725,728,720;, + 3;1313,1332,1326;, + 3;727,685,654;, + 3;690,658,656;, + 3;1315,1319,1300;, + 3;693,696,657;, + 3;354,351,340;, + 3;1318,1313,1297;, + 3;1331,725,719;, + 3;690,1316,1298;, + 3;352,692,659;, + 3;683,353,338;, + 3;2444,2447,2452;, + 3;2439,2446,2454;, + 3;2412,2439,2441;, + 3;2415,2414,2424;, + 3;2417,2415,2425;, + 3;2420,2419,2427;, + 3;2449,2420,2428;, + 3;2447,2451,2456;, + 3;2457,2453,2452;, + 3;2442,2441,2454;, + 3;2429,2423,2441;, + 3;2432,2425,2424;, + 3;2434,2426,2425;, + 3;2437,2428,2427;, + 3;2462,2455,2428;, + 3;2460,2452,2456;, + 3;2475,2479,2480;, + 3;2476,2465,2485;, + 3;2478,2486,2487;, + 3;2484,2482,2488;, + 3;2489,2490,2492;, + 3;2490,2489,2495;, + 3;2469,2489,2494;, + 3;2470,2495,2489;, + 3;2500,2504,2498;, + 3;2505,2506,2507;, + 3;2505,2509,2502;, + 3;2472,2500,2496;, + 3;2474,2468,2506;, + 3;2474,2505,2501;, + 3;2499,2511,2493;, + 3;2512,2503,2510;, + 3;2512,2511,2499;, + 3;2521,2534,2533;, + 3;2523,2533,2538;, + 3;2521,2527,2540;, + 3;2528,2531,2274;, + 3;2530,2542,2289;, + 3;2542,2547,2292;, + 3;2544,2548,2298;, + 3;2548,2550,2301;, + 3;2517,2515,1940;, + 3;2273,1941,2513;, + 3;2550,2519,2088;, + 3;2522,2525,2531;, + 3;2535,2551,2549;, + 3;2524,2537,2543;, + 3;2537,2539,2545;, + 3;2538,2533,2549;, + 3;2540,2520,2551;, + 3;2526,2516,2518;, + 3;2521,2529,2514;, + 3;2584,2554,2555;, + 3;2585,2589,2590;, + 3;2588,2557,2558;, + 3;2552,2598,2559;, + 3;2586,2595,2596;, + 3;2594,2592,2560;, + 3;2599,2563,2564;, + 3;2600,2604,2605;, + 3;2603,2566,2567;, + 3;2561,2572,2568;, + 3;2601,2610,2570;, + 3;2609,2607,2569;, + 3;2611,2575,2576;, + 3;2612,2615,2616;, + 3;2614,2576,2578;, + 3;2573,2583,2579;, + 3;2613,2621,2581;, + 3;2620,2618,2580;, + 3;2654,2624,2625;, + 3;2655,2659,2660;, + 3;2658,2627,2628;, + 3;2622,2668,2629;, + 3;2656,2665,2666;, + 3;2664,2662,2630;, + 3;2669,2633,2634;, + 3;2670,2674,2675;, + 3;2673,2636,2637;, + 3;2631,2642,2638;, + 3;2671,2680,2640;, + 3;2679,2677,2639;, + 3;2681,2645,2646;, + 3;2682,2685,2686;, + 3;2684,2646,2648;, + 3;2643,2653,2649;, + 3;2683,2691,2651;, + 3;2690,2688,2650;, + 3;2724,2694,2695;, + 3;2725,2729,2730;, + 3;2728,2697,2698;, + 3;2692,2738,2699;, + 3;2726,2735,2736;, + 3;2734,2732,2700;, + 3;2739,2703,2704;, + 3;2740,2744,2745;, + 3;2743,2706,2707;, + 3;2701,2712,2708;, + 3;2741,2750,2710;, + 3;2749,2747,2709;, + 3;2751,2715,2716;, + 3;2752,2755,2756;, + 3;2754,2716,2718;, + 3;2713,2723,2719;, + 3;2753,2761,2721;, + 3;2760,2758,2720;, + 3;2794,2764,2765;, + 3;2795,2799,2800;, + 3;2798,2767,2768;, + 3;2762,2808,2769;, + 3;2796,2805,2806;, + 3;2804,2802,2770;, + 3;2809,2773,2774;, + 3;2810,2814,2815;, + 3;2813,2776,2777;, + 3;2771,2782,2778;, + 3;2811,2820,2780;, + 3;2819,2817,2779;, + 3;2821,2785,2786;, + 3;2822,2825,2826;, + 3;2824,2786,2788;, + 3;2783,2793,2789;, + 3;2823,2831,2791;, + 3;2830,2828,2790;, + 3;2853,2855,2858;, + 3;2850,2854,2860;, + 3;2832,2850,2851;, + 3;2834,2833,2839;, + 3;2835,2834,2840;, + 3;2837,2836,2842;, + 3;2856,2837,2843;, + 3;2855,2857,2862;, + 3;2863,2859,2858;, + 3;2852,2851,2860;, + 3;2844,2838,2851;, + 3;2846,2840,2839;, + 3;2847,2841,2840;, + 3;2849,2843,2842;, + 3;2866,2861,2843;, + 3;2865,2858,2862;, + 3;2889,2891,2894;, + 3;2886,2890,2896;, + 3;2868,2886,2887;, + 3;2870,2869,2875;, + 3;2871,2870,2876;, + 3;2873,2872,2878;, + 3;2892,2873,2879;, + 3;2891,2893,2898;, + 3;2899,2895,2894;, + 3;2888,2887,2896;, + 3;2880,2874,2887;, + 3;2882,2876,2875;, + 3;2883,2877,2876;, + 3;2885,2879,2878;, + 3;2902,2897,2879;, + 3;2901,2894,2898;, + 3;2928,2931,2933;, + 3;2938,2943,2933;, + 3;2936,2945,2946;, + 3;2941,2940,2904;, + 3;2912,2917,2918;, + 3;2922,2920,2918;, + 3;2915,2914,2948;, + 3;2926,2909,2910;, + 3;2905,2947,2949;, + 3;2946,2945,2950;, + 3;2944,2907,2908;, + 3;2906,2904,2910;, + 3;2954,2961,2978;, + 3;2960,2964,2981;, + 3;2963,2967,2984;, + 3;2966,2970,2987;, + 3;2969,2958,2972;, + 3;2957,2955,2976;, + 3;2992,2999,3016;, + 3;2998,3002,3019;, + 3;3001,3005,3022;, + 3;3004,3008,3025;, + 3;3007,2996,3010;, + 3;2995,2993,3014;, + 3;4008,4663,4680;, + 3;4013,3985,3980;, + 3;4009,3988,4638;, + 3;4019,4106,4096;, + 3;3986,4098,4678;, + 3;4014,4012,3991;, + 3;3984,3990,3986;, + 3;4017,3982,3987;, + 3;4015,4018,4008;, + 3;4012,4019,3989;, + 3;4012,4104,4106;, + 3;4107,4105,4099;, + 3;3991,3989,4096;, + 3;4679,4101,4103;, + 3;3992,3029,3028;, + 3;3689,3992,5175;, + 3;3030,3689,4847;, + 3;446,3414,3711;, + 3;762,3712,3032;, + 3;446,7,3033;, + 3;420,3396,3686;, + 3;1958,4872,4869;, + 3;425,9,3176;, + 3;3399,3177,3713;, + 3;1917,736,3686;, + 3;4871,3688,3713;, + 3;421,425,3398;, + 3;3687,3397,3399;, + 3;3687,3688,4871;, + 3;1918,4836,4872;, + 3;4020,4684,4682;, + 3;3179,3183,3091;, + 3;3088,3092,3093;, + 3;3714,3432,3428;, + 3;3430,3435,3433;, + 3;3090,3093,3094;, + 3;3435,3438,3439;, + 3;3431,3716,3415;, + 3;3216,3415,3178;, + 3;3436,3431,3216;, + 3;3217,3216,3213;, + 3;3436,3217,3218;, + 3;3217,3089,3215;, + 3;3718,3417,3416;, + 3;3181,3180,3416;, + 3;3439,3438,3219;, + 3;3220,3219,3214;, + 3;3221,3419,3184;, + 3;3082,3187,3184;, + 3;3422,3420,3426;, + 3;3423,3425,3188;, + 3;3419,3221,3222;, + 3;3185,3190,3084;, + 3;3096,3097,3222;, + 3;3082,3086,3097;, + 3;3161,3193,3223;, + 3;3163,3169,3206;, + 3;3208,3211,3227;, + 3;3225,3229,3197;, + 3;3195,3199,3172;, + 3;3167,3165,3170;, + 3;3175,3161,3201;, + 3;3207,3211,3208;, + 3;3192,3162,3173;, + 3;3193,3200,3228;, + 3;3223,3230,3210;, + 3;3161,3175,3168;, + 3;3212,3201,3210;, + 3;3175,3212,3206;, + 3;3721,3690,3993;, + 3;3692,3166,3204;, + 3;3998,3209,3226;, + 3;4025,3225,3194;, + 3;3725,3196,3171;, + 3;3693,3695,3171;, + 3;3205,3209,3998;, + 3;3696,4001,3993;, + 3;3722,3725,3695;, + 3;4022,3994,3998;, + 3;3723,4023,4025;, + 3;3697,3694,3997;, + 3;4000,3996,3998;, + 3;3691,3695,3693;, + 3;3074,3154,3150;, + 3;3067,3070,3363;, + 3;3071,3067,3130;, + 3;3364,3070,3078;, + 3;3404,3080,3075;, + 3;3136,3160,3156;, + 3;3159,3034,3406;, + 3;3139,3158,3407;, + 3;3137,3140,3368;, + 3;3369,3409,4837;, + 3;4797,4802,3372;, + 3;4838,4842,4799;, + 3;1881,4801,4840;, + 3;4839,3410,3411;, + 3;1929,4843,3412;, + 3;3408,3371,3373;, + 3;442,3413,3373;, + 3;12,154,3143;, + 3;3376,3375,4800;, + 3;13,4804,4801;, + 3;155,398,3374;, + 3;3142,3145,3375;, + 3;5118,5214,5211;, + 3;5118,5119,4688;, + 3;4691,4688,5119;, + 3;5122,5118,4686;, + 3;4108,4112,4688;, + 3;4694,4687,6193;, + 3;1765,4696,6193;, + 3;5123,4695,4697;, + 3;2223,5126,4697;, + 3;5215,5221,5217;, + 3;2327,5217,5219;, + 3;2224,5127,5218;, + 3;5213,5218,5127;, + 3;4687,4690,4698;, + 3;6192,6193,4698;, + 3;2329,5222,5126;, + 3;5123,5126,5220;, + 3;1770,4701,5130;, + 3;5125,5131,4700;, + 3;5121,5129,5131;, + 3;2229,5130,5128;, + 3;4111,4110,4116;, + 3;4689,4113,4115;, + 3;4692,4700,4117;, + 3;4698,4702,1771;, + 3;3440,3450,3446;, + 3;4703,4705,4120;, + 3;5132,5134,4705;, + 3;4120,4124,4122;, + 3;3440,4122,4124;, + 3;1182,1780,4707;, + 3;4127,4126,4707;, + 3;1780,14,5136;, + 3;4708,4707,5136;, + 3;15,1784,4710;, + 3;5140,5139,4710;, + 3;491,496,3454;, + 3;3454,3459,3455;, + 3;502,3461,3460;, + 3;3463,3460,3461;, + 3;513,3470,3468;, + 3;514,3468,3471;, + 3;3447,3478,3473;, + 3;527,518,3471;, + 3;4129,3459,3454;, + 3;1189,4131,3454;, + 3;1189,1182,4126;, + 3;4129,4131,4126;, + 3;4132,4136,4135;, + 3;1196,4134,4135;, + 3;1196,504,3460;, + 3;4132,4134,3460;, + 3;1197,4135,4710;, + 3;4711,4710,4135;, + 3;513,492,3453;, + 3;3472,3469,3474;, + 3;503,527,3479;, + 3;4123,3441,3458;, + 3;3441,3445,3456;, + 3;3444,3475,3453;, + 3;3475,3468,3470;, + 3;4119,4123,4130;, + 3;4704,4119,4128;, + 3;5133,4704,4709;, + 3;4125,4121,4137;, + 3;4121,4706,4712;, + 3;4706,5135,5141;, + 3;3451,4125,4133;, + 3;3448,3451,3464;, + 3;3477,3449,3467;, + 3;3471,3477,3462;, + 3;4138,4143,4715;, + 3;4714,4717,4720;, + 3;4144,4719,4721;, + 3;4150,4153,4152;, + 3;4140,4149,4722;, + 3;4139,4150,4151;, + 3;4139,4145,4153;, + 3;4153,4145,4147;, + 3;4142,4151,4152;, + 3;4154,4158,5144;, + 3;4154,4164,4160;, + 3;4161,4165,1228;, + 3;5145,4157,1230;, + 3;5143,2247,1232;, + 3;4157,1230,2246;, + 3;5143,2247,1232;, + 3;4155,1232,1229;, + 3;1231,4159,4162;, + 3;5146,3036,5225;, + 3;5224,5226,17;, + 3;5147,5224,2335;, + 3;3079,3069,68;, + 3;82,174,3153;, + 3;3151,3155,175;, + 3;3402,3152,176;, + 3;3365,3405,445;, + 3;401,156,3131;, + 3;156,157,3134;, + 3;158,69,3072;, + 3;3068,3073,70;, + 3;3069,3068,71;, + 3;3077,3081,80;, + 3;3405,3402,444;, + 3;4026,3037,19;, + 3;3038,4026,1082;, + 3;5015,4682,1797;, + 3;24,1799,4684;, + 3;3434,3439,529;, + 3;3719,3428,476;, + 3;3091,3183,218;, + 3;3093,3092,102;, + 3;3220,252,529;, + 3;3424,3426,25;, + 3;3189,3424,461;, + 3;3085,3191,220;, + 3;3098,3085,89;, + 3;3429,3433,474;, + 3;3094,3093,104;, + 3;3220,3095,105;, + 3;4683,4685,1800;, + 3;3418,462,219;, + 3;3418,3720,779;, + 3;4873,4875,1967;, + 3;4875,5016,2109;, + 3;5017,2113,2109;, + 3;4874,1965,2114;, + 3;4848,4850,4875;, + 3;4850,4988,5016;, + 3;4988,4990,5017;, + 3;4849,4874,5018;, + 3;4805,5157,2256;, + 3;4844,1934,2263;, + 3;4845,5159,5154;, + 3;2263,2256,5156;, + 3;1935,4846,4809;, + 3;3146,3149,4808;, + 3;27,1892,4810;, + 3;28,3147,4807;, + 3;4485,4491,4487;, + 3;3861,4487,4559;, + 3;3925,4559,4564;, + 3;4490,4486,4493;, + 3;4488,4490,4492;, + 3;4560,4489,4495;, + 3;4565,4561,4567;, + 3;4565,4568,4569;, + 3;4563,4569,3928;, + 3;3927,3929,3864;, + 3;3863,3865,4493;, + 3;4496,3866,4500;, + 3;3866,3930,4570;, + 3;3930,4576,4573;, + 3;4499,4492,4493;, + 3;4501,4494,4492;, + 3;4571,4566,4495;, + 3;4574,4568,4567;, + 3;4574,4575,4569;, + 3;4575,3932,3928;, + 3;3931,3868,3864;, + 3;3867,4497,4493;, + 3;4503,4512,4508;, + 3;4513,4506,4508;, + 3;4510,4505,4521;, + 3;4517,3872,3869;, + 3;4379,4387,4385;, + 3;4389,4394,4385;, + 3;4383,4525,4523;, + 3;4392,4391,3875;, + 3;3870,3876,4524;, + 3;4521,4523,4525;, + 3;4520,4526,3874;, + 3;3872,3873,3875;, + 3;3797,3743,3738;, + 3;4274,4893,4888;, + 3;4920,4399,4395;, + 3;3821,3827,3825;, + 3;3825,4405,4402;, + 3;3739,4282,4369;, + 3;4284,4283,3740;, + 3;3822,4401,4403;, + 3;4404,4406,4414;, + 3;4924,4395,4412;, + 3;4370,4281,4280;, + 3;4281,4286,4275;, + 3;4416,4413,4396;, + 3;4408,4404,4411;, + 3;3829,3835,3832;, + 3;4925,4932,4929;, + 3;4420,3830,3831;, + 3;4421,4423,4427;, + 3;4931,4426,4428;, + 3;3797,3799,3831;, + 3;4927,4929,4890;, + 3;3800,4369,4430;, + 3;4429,4424,4431;, + 3;4371,4374,4432;, + 3;4372,4889,4930;, + 3;3827,3835,3829;, + 3;3825,3830,4420;, + 3;4406,4421,4425;, + 3;4415,4426,4931;, + 3;4924,4932,4925;, + 3;3801,3803,3749;, + 3;4288,4294,4899;, + 3;4933,4936,4437;, + 3;3836,4440,3842;, + 3;3842,4440,4443;, + 3;3750,3804,4375;, + 3;4298,3748,3751;, + 3;3837,4449,4444;, + 3;4445,4454,4450;, + 3;4936,4451,4452;, + 3;4376,4378,4293;, + 3;4297,4293,4289;, + 3;4455,4436,4438;, + 3;4446,4458,4454;, + 3;3844,3850,3848;, + 3;4937,4943,4941;, + 3;4459,4462,3850;, + 3;4460,4468,4464;, + 3;4940,4942,4465;, + 3;3801,3848,3850;, + 3;4943,4898,4901;, + 3;3804,3850,4469;, + 3;4466,4474,4470;, + 3;4376,4471,4472;, + 3;4377,4473,4942;, + 3;3840,3843,3844;, + 3;3842,4441,4459;, + 3;4442,4450,4468;, + 3;4451,4936,4940;, + 3;4936,4933,4937;, + 3;3849,3833,3834;, + 3;3847,3834,3828;, + 3;3841,3828,3823;, + 3;3839,3824,4409;, + 3;4448,4410,4418;, + 3;4457,4419,4398;, + 3;4435,4398,4922;, + 3;4935,4923,4926;, + 3;4938,4926,4928;, + 3;4944,4928,4892;, + 3;4897,4894,4276;, + 3;4291,4277,4285;, + 3;4301,4287,3742;, + 3;3747,3744,3798;, + 3;3802,3798,3833;, + 3;4082,4087,4077;, + 3;3954,3935,3933;, + 3;3954,3957,3963;, + 3;4083,4090,4088;, + 3;3938,3943,3933;, + 3;3944,3966,4092;, + 3;3967,3966,3944;, + 3;4088,4090,3972;, + 3;3964,3969,3972;, + 3;4063,3879,3877;, + 3;3882,3877,3879;, + 3;4092,3966,3974;, + 3;3966,3967,3976;, + 3;3978,3958,3934;, + 3;3978,3971,3965;, + 3;4064,4068,4070;, + 3;4077,4069,4070;, + 3;3884,3892,3886;, + 3;3939,3889,3890;, + 3;3945,3949,3950;, + 3;3942,3891,3895;, + 3;3944,4078,4080;, + 3;3896,3953,4080;, + 3;3896,3893,3949;, + 3;3944,3953,3949;, + 3;3885,3881,3898;, + 3;3934,3895,3898;, + 3;4093,4085,4076;, + 3;3968,3946,3936;, + 3;3975,3973,4089;, + 3;4094,4091,4084;, + 3;3967,3956,3961;, + 3;3977,3962,3973;, + 3;3951,3894,3883;, + 3;3952,3950,3888;, + 3;3952,3940,3937;, + 3;4079,4076,4071;, + 3;4073,4080,4072;, + 3;3897,4074,4067;, + 3;3894,3897,3878;, + 3;4200,4223,4221;, + 3;3661,3668,4222;, + 3;3539,3592,3668;, + 3;3542,3593,3591;, + 3;3544,3595,3593;, + 3;3547,3596,3594;, + 3;4205,4225,3596;, + 3;4203,4221,4224;, + 3;3282,3313,3296;, + 3;3351,3352,3343;, + 3;3272,3299,3300;, + 3;3282,3271,3274;, + 3;3352,3353,3345;, + 3;3273,3300,3553;, + 3;3284,3275,3512;, + 3;3524,3513,3554;, + 3;3312,3314,3352;, + 3;3297,3342,3344;, + 3;3312,3351,3341;, + 3;3314,3601,3353;, + 3;3601,3556,3345;, + 3;3301,3344,3346;, + 3;3514,3281,3276;, + 3;3279,3307,3302;, + 3;3280,3520,3557;, + 3;3306,3558,3537;, + 3;3278,3304,3538;, + 3;3520,4747,4764;, + 3;3558,4766,4767;, + 3;3510,3538,4768;, + 3;3516,3519,4751;, + 3;4749,4752,4769;, + 3;4166,4182,4180;, + 3;4171,4183,4182;, + 3;4171,4725,4732;, + 3;4173,4184,4734;, + 3;4177,4172,4167;, + 3;4177,4727,4723;, + 3;4170,4181,4184;, + 3;4724,4728,4735;, + 3;3231,3233,3482;, + 3;3232,3235,3102;, + 3;3108,3102,3235;, + 3;3485,3488,3238;, + 3;3040,3238,3488;, + 3;3483,3491,3490;, + 3;3495,3490,3491;, + 3;3484,3234,3239;, + 3;3497,3492,3239;, + 3;3234,3101,3103;, + 3;3249,3239,3103;, + 3;3489,3487,3481;, + 3;3237,3231,3480;, + 3;3494,3489,3490;, + 3;3059,3054,3104;, + 3;3059,3061,3056;, + 3;3060,3111,3106;, + 3;3110,3104,3240;, + 3;3111,3253,3243;, + 3;3251,3242,3244;, + 3;3055,3058,3107;, + 3;3105,3107,3245;, + 3;4527,4478,4475;, + 3;4528,4532,3903;, + 3;4531,4476,3851;, + 3;4529,3902,3853;, + 3;3901,3905,3852;, + 3;3908,4538,4540;, + 3;3915,4541,4543;, + 3;3918,4544,4578;, + 3;3921,4579,4581;, + 3;3924,4582,4534;, + 3;3912,4535,4537;, + 3;4479,4907,4902;, + 3;4480,4484,3858;, + 3;4483,4904,3805;, + 3;4905,3810,3806;, + 3;4481,3857,3808;, + 3;3856,3860,3807;, + 3;4033,4042,4039;, + 3;4043,5061,5056;, + 3;3679,3684,4813;, + 3;5062,5071,5066;, + 3;4811,4813,4818;, + 3;4049,3813,3811;, + 3;3815,3811,3813;, + 3;4044,4052,3812;, + 3;4047,3820,3814;, + 3;5059,4044,3819;, + 3;4909,4908,3819;, + 3;5057,4910,3820;, + 3;3818,3820,4910;, + 3;5072,5059,4908;, + 3;4914,4912,4908;, + 3;5074,4916,4910;, + 3;4911,4910,4916;, + 3;5075,5073,4913;, + 3;4919,4917,4913;, + 3;3680,3815,3817;, + 3;3683,3818,4911;, + 3;3681,4812,4909;, + 3;4814,4911,4918;, + 3;4816,4820,4919;, + 3;4812,4817,4914;, + 3;4052,4044,4055;, + 3;4045,4048,4058;, + 3;4050,4062,4059;, + 3;4051,4054,4061;, + 3;5059,5072,5079;, + 3;5073,5075,5081;, + 3;5057,5084,5082;, + 3;5060,5078,5083;, + 3;4053,4055,4041;, + 3;4062,4038,4040;, + 3;4054,4035,4037;, + 3;5076,5079,5069;, + 3;5080,5081,5067;, + 3;5084,5065,5068;, + 3;4057,4060,5085;, + 3;4059,4040,5065;, + 3;4042,5062,5064;, + 3;4055,5076,5063;, + 3;4302,3756,3752;, + 3;4307,4315,4311;, + 3;4314,4308,4319;, + 3;4305,4317,4319;, + 3;4312,4316,4318;, + 3;3753,3757,4318;, + 3;4320,3759,4326;, + 3;4328,4326,3759;, + 3;4313,3758,3764;, + 3;3755,3764,3758;, + 3;3760,4322,4310;, + 3;4327,4319,4308;, + 3;4321,4325,4307;, + 3;4329,4303,4319;, + 3;3762,3760,3764;, + 3;4330,3763,3756;, + 3;4331,4336,3768;, + 3;4332,4342,4337;, + 3;4335,4339,3771;, + 3;3766,3770,3772;, + 3;4333,3767,4344;, + 3;4341,4345,3773;, + 3;4346,4351,3777;, + 3;4347,4357,4352;, + 3;4350,4354,3780;, + 3;3775,3779,3781;, + 3;4348,3776,3784;, + 3;4356,3785,3782;, + 3;4358,4362,3789;, + 3;4359,4368,4363;, + 3;4362,4365,3791;, + 3;3787,3790,3792;, + 3;4360,3788,3795;, + 3;4367,3796,3793;, + 3;4603,4609,4607;, + 3;4583,4588,4609;, + 3;4589,4594,4586;, + 3;4611,4613,4592;, + 3;4611,4618,4615;, + 3;4640,4651,4646;, + 3;4649,4621,4619;, + 3;4641,4645,4659;, + 3;4644,4648,4657;, + 3;4642,4652,4656;, + 3;4648,4620,4608;, + 3;4621,4605,4607;, + 3;4650,4656,4606;, + 3;5160,5177,5176;, + 3;5162,5176,5181;, + 3;5160,5166,5183;, + 3;5167,5173,5170;, + 3;5172,5186,5185;, + 3;5186,5193,5188;, + 3;5190,5195,5194;, + 3;5195,5198,5197;, + 3;4991,4855,4851;, + 3;5169,4852,4853;, + 3;5198,4993,4996;, + 3;5161,5164,5173;, + 3;5178,5199,5196;, + 3;5163,5180,5187;, + 3;5180,5182,5191;, + 3;5181,5176,5196;, + 3;5183,4994,5199;, + 3;5165,4856,4992;, + 3;5160,5168,4854;, + 3;3521,3560,4211;, + 3;3246,3521,4199;, + 3;4199,4211,4770;, + 3;4178,4199,4753;, + 3;3559,3522,3525;, + 3;4212,3561,3603;, + 3;4771,4212,4229;, + 3;4754,4772,4774;, + 3;4730,4754,4755;, + 3;4179,4731,4737;, + 3;4185,3255,3247;, + 3;3254,3525,3522;, + 3;3562,3566,3665;, + 3;3562,3663,4255;, + 3;3568,4218,4215;, + 3;3568,3571,3576;, + 3;4218,3568,3562;, + 3;3579,3590,3585;, + 3;3308,3311,3588;, + 3;3574,3581,3583;, + 3;3570,3584,3586;, + 3;3565,3564,3587;, + 3;3664,3667,3670;, + 3;4214,4257,4259;, + 3;3666,3567,3604;, + 3;3572,3608,3606;, + 3;4216,4220,4233;, + 3;3575,3578,3607;, + 3;3311,3308,3318;, + 3;4219,4214,4230;, + 3;4256,3664,3669;, + 3;3572,4217,4232;, + 3;3309,3574,3610;, + 3;3565,3310,3317;, + 3;4643,4640,4654;, + 3;4661,4615,4618;, + 3;5019,5026,5024;, + 3;5026,5238,5232;, + 3;5239,5282,5278;, + 3;5028,5030,5229;, + 3;5227,5229,5286;, + 3;5279,5283,5284;, + 3;5200,5246,5235;, + 3;5230,5228,5285;, + 3;5031,5200,5027;, + 3;5032,5029,5228;, + 3;5248,5289,5280;, + 3;5287,5285,5281;, + 3;5202,5033,5023;, + 3;5025,5234,5249;, + 3;5204,5231,5288;, + 3;5201,5204,5251;, + 3;5231,5204,5035;, + 3;5204,5201,5031;, + 3;5236,5239,5242;, + 3;5288,5289,5248;, + 3;5029,5032,5036;, + 3;5031,5021,5037;, + 3;5237,5247,5248;, + 3;6189,5034,5203;, + 3;6190,6198,5229;, + 3;6198,6199,5286;, + 3;6194,5203,5250;, + 3;6199,6200,5279;, + 3;6196,5241,5278;, + 3;6195,5250,5244;, + 3;5252,5261,5257;, + 3;5253,5256,2371;, + 3;5255,5259,2373;, + 3;5260,32,2374;, + 3;5262,2380,2378;, + 3;5263,5269,5265;, + 3;5205,33,2380;, + 3;5206,5205,5262;, + 3;5270,5266,5267;, + 3;5275,5276,2393;, + 3;5275,5271,5273;, + 3;5208,5207,5266;, + 3;5210,5275,2392;, + 3;5210,5209,5271;, + 3;5268,5264,2379;, + 3;2398,2394,5277;, + 3;2398,5274,5268;, + 3;3879,4063,4664;, + 3;4064,4069,4666;, + 3;4069,4077,4670;, + 3;4077,4087,4672;, + 3;4086,4088,4674;, + 3;4088,3969,4625;, + 3;4627,4626,3970;, + 3;3948,4595,4627;, + 3;3899,4547,4595;, + 3;3880,4546,4547;, + 3;5101,5096,4671;, + 3;4972,4628,4596;, + 3;4972,4977,4630;, + 3;5102,4676,4677;, + 3;4961,4958,4596;, + 3;4964,5097,5108;, + 3;4980,4965,4964;, + 3;4677,4633,4982;, + 3;4631,4978,4982;, + 3;4667,5088,4946;, + 3;4948,4551,4548;, + 3;5108,5110,4984;, + 3;4979,4984,4986;, + 3;4636,4602,4597;, + 3;4636,4629,4632;, + 3;4668,4669,5090;, + 3;4671,5096,5090;, + 3;4551,4948,4950;, + 3;4962,4600,4554;, + 3;4965,4970,4967;, + 3;4599,4597,4556;, + 3;4964,4971,5099;, + 3;4956,5093,5099;, + 3;4956,4971,4969;, + 3;4964,4965,4969;, + 3;4552,4556,4557;, + 3;4597,4602,4557;, + 3;5109,5098,5095;, + 3;4981,4974,4959;, + 3;4985,5111,5106;, + 3;5110,5108,5104;, + 3;4980,4986,4975;, + 3;4987,4985,4983;, + 3;4968,4953,4949;, + 3;4970,4963,4952;, + 3;4970,4965,4960;, + 3;5098,5100,5091;, + 3;5093,5089,5092;, + 3;4957,4947,5087;, + 3;4955,4949,4947;, + 3;4548,4545,4664;, + 3;4668,4665,4666;, + 3;4669,4666,4670;, + 3;4671,4670,4672;, + 3;4676,4673,4674;, + 3;4677,4674,4625;, + 3;4627,4637,4635;, + 3;4601,4637,4627;, + 3;4558,4601,4595;, + 3;4550,4558,4547;, + 3;5038,5148,4680;, + 3;5043,5048,5000;, + 3;5039,4662,4638;, + 3;5049,5006,5112;, + 3;5004,4639,4678;, + 3;5044,4999,5008;, + 3;4998,5002,5004;, + 3;5046,5040,5005;, + 3;5045,5041,5038;, + 3;5042,5008,5006;, + 3;5042,5049,5152;, + 3;5153,5113,5115;, + 3;5008,5117,5112;, + 3;4679,4681,5151;, + 3;3726,3729,4272;, + 3;4027,4032,4005;, + 3;3727,4271,4266;, + 3;3735,3704,3702;, + 3;3700,4267,4268;, + 3;4028,4004,3706;, + 3;4003,4007,3700;, + 3;4030,3728,3701;, + 3;4029,3733,3726;, + 3;3734,3706,3704;, + 3;3734,3735,3736;, + 3;3737,3703,3708;, + 3;3706,3710,3702;, + 3;4269,4273,3732;, + 3;4876,4270,4272;, + 3;5050,5014,5009;, + 3;4877,4859,4266;, + 3;4885,4886,4861;, + 3;4857,4865,4268;, + 3;5051,4880,4864;, + 3;5013,4863,4857;, + 3;5054,5011,4858;, + 3;5052,5055,4876;, + 3;4880,4885,4860;, + 3;4880,4883,4886;, + 3;4887,4884,4866;, + 3;4864,4860,4861;, + 3;4269,4868,4882;, + 3;4235,4238,4221;, + 3;3672,4237,4222;, + 3;3611,3672,3668;, + 3;3614,3613,3591;, + 3;3616,3614,3593;, + 3;3619,3618,3594;, + 3;4240,3619,3596;, + 3;4238,4242,4224;, + 3;3282,3286,3320;, + 3;3043,3358,3359;, + 3;3285,3288,3324;, + 3;3282,3283,3287;, + 3;3044,3359,3361;, + 3;3288,3528,3621;, + 3;3284,3523,3526;, + 3;3524,3600,3622;, + 3;3312,3043,3044;, + 3;3322,3325,3360;, + 3;3312,3323,3358;, + 3;3315,3044,3045;, + 3;3601,3045,3361;, + 3;3325,3624,3362;, + 3;3529,3536,3293;, + 3;3291,3295,3333;, + 3;3292,3328,3625;, + 3;3327,3335,3659;, + 3;3294,3047,3660;, + 3;3046,3625,4775;, + 3;3626,3659,4781;, + 3;3047,4761,4782;, + 3;3531,4758,4762;, + 3;4757,4777,4783;, + 3;4186,4190,4180;, + 3;4191,4186,4182;, + 3;4191,4183,4732;, + 3;4193,4743,4734;, + 3;3048,4188,4187;, + 3;3048,4192,4739;, + 3;4189,4196,4184;, + 3;4740,4733,4735;, + 3;3256,3499,3500;, + 3;3257,3114,3115;, + 3;3108,3039,3049;, + 3;3503,3261,3050;, + 3;3040,3493,3506;, + 3;3501,3498,3051;, + 3;3495,3496,3508;, + 3;3502,3509,3052;, + 3;3497,3249,3052;, + 3;3259,3052,3116;, + 3;3249,3109,3116;, + 3;3507,3051,3498;, + 3;3260,3505,3499;, + 3;3494,3495,3051;, + 3;3059,3110,3117;, + 3;3059,3062,3064;, + 3;3060,3066,3119;, + 3;3110,3250,3262;, + 3;3111,3119,3265;, + 3;3251,3252,3266;, + 3;3063,3118,3120;, + 3;3118,3264,3267;, + 3;3532,3053,4243;, + 3;3268,4197,3053;, + 3;3053,4759,4778;, + 3;4197,4746,4759;, + 3;3628,3602,3525;, + 3;4244,4229,3603;, + 3;4779,4773,4229;, + 3;4760,4755,4774;, + 3;4744,4736,4755;, + 3;4198,4185,4737;, + 3;4185,4198,3269;, + 3;3254,3270,3533;, + 3;3630,3674,3676;, + 3;3630,4246,4263;, + 3;3636,3639,4247;, + 3;3636,3643,3644;, + 3;4250,4246,3630;, + 3;3647,3652,3653;, + 3;3329,3649,3657;, + 3;3641,3638,3650;, + 3;3637,3632,3654;, + 3;3634,3658,3655;, + 3;3675,3669,3670;, + 3;4245,4230,4259;, + 3;3678,3671,3604;, + 3;3640,3646,3606;, + 3;4248,4231,4233;, + 3;3642,3609,3607;, + 3;3331,3316,3318;, + 3;4252,4234,4230;, + 3;4265,4260,3669;, + 3;3640,3608,4232;, + 3;3330,3319,3610;, + 3;3634,3605,3317;, + 3;5323,5333,5331;, + 3;5318,5320,5332;, + 3;5291,5303,5320;, + 3;5294,5304,5302;, + 3;5296,5306,5304;, + 3;5299,5307,5305;, + 3;5328,5335,5307;, + 3;5326,5331,5334;, + 3;5336,5339,5331;, + 3;5321,5338,5332;, + 3;5308,5321,5320;, + 3;5311,5310,5302;, + 3;5313,5311,5304;, + 3;5316,5315,5305;, + 3;5341,5316,5307;, + 3;5339,5343,5334;, + 3;5350,5359,5355;, + 3;5351,5354,2485;, + 3;5353,5357,2487;, + 3;5358,2466,2488;, + 3;5360,2494,2492;, + 3;5361,5367,5363;, + 3;5344,2467,2494;, + 3;5345,5344,5360;, + 3;5368,5364,5365;, + 3;5373,5374,2507;, + 3;5373,5369,5371;, + 3;5347,5346,5364;, + 3;5349,5373,2506;, + 3;5349,5348,5369;, + 3;5366,5362,2493;, + 3;2512,2508,5375;, + 3;2512,5372,5366;, + 3;5384,5386,5396;, + 3;5386,5400,5401;, + 3;5384,5397,5403;, + 3;5391,5169,5170;, + 3;5394,5171,5185;, + 3;5405,5185,5188;, + 3;5408,5189,5194;, + 3;5411,5194,5197;, + 3;5380,4995,4851;, + 3;5169,5391,5377;, + 3;5413,5197,4996;, + 3;5385,5391,5393;, + 3;5398,5396,5412;, + 3;5388,5395,5406;, + 3;5399,5406,5409;, + 3;5401,5410,5412;, + 3;5403,5397,5414;, + 3;5390,5404,5383;, + 3;5384,5389,5379;, + 3;5447,5452,5418;, + 3;5448,5458,5453;, + 3;5451,5455,5421;, + 3;5416,5420,5422;, + 3;5449,5417,5460;, + 3;5457,5461,5423;, + 3;5462,5467,5427;, + 3;5463,5473,5468;, + 3;5466,5470,5430;, + 3;5425,5429,5431;, + 3;5464,5426,5434;, + 3;5472,5435,5432;, + 3;5474,5478,5439;, + 3;5475,5484,5479;, + 3;5478,5481,5441;, + 3;5437,5440,5442;, + 3;5476,5438,5445;, + 3;5483,5446,5443;, + 3;5517,5522,5488;, + 3;5518,5528,5523;, + 3;5521,5525,5491;, + 3;5486,5490,5492;, + 3;5519,5487,5530;, + 3;5527,5531,5493;, + 3;5532,5537,5497;, + 3;5533,5543,5538;, + 3;5536,5540,5500;, + 3;5495,5499,5501;, + 3;5534,5496,5504;, + 3;5542,5505,5502;, + 3;5544,5548,5509;, + 3;5545,5554,5549;, + 3;5548,5551,5511;, + 3;5507,5510,5512;, + 3;5546,5508,5515;, + 3;5553,5516,5513;, + 3;5587,5592,5558;, + 3;5588,5598,5593;, + 3;5591,5595,5561;, + 3;5556,5560,5562;, + 3;5589,5557,5600;, + 3;5597,5601,5563;, + 3;5602,5607,5567;, + 3;5603,5613,5608;, + 3;5606,5610,5570;, + 3;5565,5569,5571;, + 3;5604,5566,5574;, + 3;5612,5575,5572;, + 3;5614,5618,5579;, + 3;5615,5624,5619;, + 3;5618,5621,5581;, + 3;5577,5580,5582;, + 3;5616,5578,5585;, + 3;5623,5586,5583;, + 3;5657,5662,5628;, + 3;5658,5668,5663;, + 3;5661,5665,5631;, + 3;5626,5630,5632;, + 3;5659,5627,5670;, + 3;5667,5671,5633;, + 3;5672,5677,5637;, + 3;5673,5683,5678;, + 3;5676,5680,5640;, + 3;5635,5639,5641;, + 3;5674,5636,5644;, + 3;5682,5645,5642;, + 3;5684,5688,5649;, + 3;5685,5694,5689;, + 3;5688,5691,5651;, + 3;5647,5650,5652;, + 3;5686,5648,5655;, + 3;5693,5656,5653;, + 3;5716,5723,5721;, + 3;5713,5714,5722;, + 3;5695,5702,5714;, + 3;5697,5703,5701;, + 3;5698,5705,5703;, + 3;5700,5706,5704;, + 3;5719,5725,5706;, + 3;5718,5721,5724;, + 3;5726,5728,5721;, + 3;5715,5727,5722;, + 3;5707,5715,5714;, + 3;5709,5708,5701;, + 3;5710,5709,5703;, + 3;5712,5711,5704;, + 3;5729,5712,5706;, + 3;5728,5730,5724;, + 3;5752,5759,5757;, + 3;5749,5750,5758;, + 3;5731,5738,5750;, + 3;5733,5739,5737;, + 3;5734,5741,5739;, + 3;5736,5742,5740;, + 3;5755,5761,5742;, + 3;5754,5757,5760;, + 3;5762,5764,5757;, + 3;5751,5763,5758;, + 3;5743,5751,5750;, + 3;5745,5744,5737;, + 3;5746,5745,5739;, + 3;5748,5747,5740;, + 3;5765,5748,5742;, + 3;5764,5766,5760;, + 3;5791,5800,5796;, + 3;5801,5794,5796;, + 3;5798,5793,5809;, + 3;5805,5770,5767;, + 3;5775,5783,5781;, + 3;5785,5790,5781;, + 3;5779,5813,5811;, + 3;5788,5787,5773;, + 3;5768,5774,5812;, + 3;5809,5811,5813;, + 3;5808,5814,5772;, + 3;5770,5771,5773;, + 3;5817,5839,5841;, + 3;5824,5842,5844;, + 3;5827,5845,5847;, + 3;5830,5848,5850;, + 3;5833,5851,5835;, + 3;5821,5836,5838;, + 3;5855,5877,5879;, + 3;5862,5880,5882;, + 3;5865,5883,5885;, + 3;5868,5886,5888;, + 3;5871,5889,5873;, + 3;5859,5874,5876;, + 3;5941,5945,5946;, + 3;5931,5932,5943;, + 3;5949,5953,5932;, + 3;5954,5955,5951;, + 3;5954,5958,5959;, + 3;5957,5962,5963;, + 3;5962,5966,5967;, + 3;5965,5948,5946;, + 3;5977,5981,5982;, + 3;5974,5975,5979;, + 3;5985,5989,5975;, + 3;5990,5991,5987;, + 3;5990,5994,5995;, + 3;5993,5998,5999;, + 3;5998,6002,6003;, + 3;6001,5984,5982;, + 3;6010,6014,6015;, + 3;6007,6008,6012;, + 3;6018,6022,6008;, + 3;6023,6024,6020;, + 3;6023,6027,6028;, + 3;6026,6031,6032;, + 3;6031,6035,6036;, + 3;6034,6017,6015;, + 3;6090,6097,6095;, + 3;6080,6091,6093;, + 3;6098,6080,6081;, + 3;6103,6099,6101;, + 3;6103,6104,6108;, + 3;6107,6110,6112;, + 3;6111,6112,6116;, + 3;6115,6118,6095;, + 3;6126,6133,6131;, + 3;6123,6127,6129;, + 3;6134,6123,6124;, + 3;6139,6135,6137;, + 3;6139,6140,6144;, + 3;6143,6146,6148;, + 3;6147,6148,6152;, + 3;6151,6154,6131;, + 3;6159,6166,6164;, + 3;6156,6160,6162;, + 3;6167,6156,6157;, + 3;6172,6168,6170;, + 3;6172,6173,6177;, + 3;6176,6179,6181;, + 3;6180,6181,6185;, + 3;6184,6187,6164;; + + MeshNormals { + 6202; + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.722410;-0.691465;, + 0.000000;-0.722410;-0.691465;, + 0.000000;-0.173017;0.984919;, + 0.000000;-0.376027;-0.926609;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-0.184987;-0.982741;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.999519;-0.012421;0.028413;, + 0.000000;-0.182834;0.983144;, + 0.000000;-0.975913;0.218160;, + 0.000000;0.812111;-0.583502;, + 0.000000;0.812111;-0.583502;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.258306;0.966063;, + 0.000000;0.407045;-0.913408;, + 0.000000;-0.265741;0.964045;, + 0.000000;0.359196;-0.933262;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + 0.000000;-1.000000;0.000000;, + 0.000000;-0.976749;0.214388;, + 0.000000;0.986719;0.162438;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;-0.000000;-0.000000;, + 1.000000;0.000000;0.000000;, + -0.320176;0.909831;-0.263999;, + -0.459174;0.888346;0.000000;, + -0.320176;0.909831;0.263999;, + -1.000000;0.000000;0.000000;, + 0.997088;-0.076255;0.000000;, + 0.996327;0.038419;0.076524;, + 0.000000;-0.897668;-0.440673;, + 0.000000;-1.000000;0.000000;, + 0.000000;-0.250841;0.968028;, + 0.000000;0.978200;-0.207665;, + 0.998651;0.051906;-0.001130;, + 0.000000;-0.963715;-0.266933;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.857493;-0.514495;, + -1.000000;0.000000;0.000000;, + 0.000000;0.862416;-0.506201;, + 0.000000;-0.963715;-0.266933;, + 0.000000;-0.857493;-0.514495;, + 0.000000;0.862416;-0.506201;, + 0.000000;-0.963715;-0.266933;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.857493;-0.514495;, + 0.000000;0.862416;-0.506201;, + 1.000000;0.000000;0.000000;, + -0.568003;-0.528656;-0.630789;, + -0.568003;-0.528656;-0.630789;, + -0.631424;-0.350513;-0.691696;, + -0.631424;-0.350513;-0.691696;, + -0.465679;-0.689984;-0.554135;, + -0.465679;-0.689984;-0.554135;, + -0.465679;-0.689984;-0.554135;, + 0.000000;-0.267931;-0.963438;, + 0.000000;-0.806761;-0.590877;, + 0.000000;-0.806761;-0.590877;, + 0.000000;-0.514994;-0.857194;, + -0.609822;0.175716;-0.772814;, + -0.609822;0.175716;-0.772814;, + -0.609822;0.175716;-0.772814;, + -0.609822;0.175716;-0.772814;, + -0.636200;0.063603;-0.768898;, + -0.636200;0.063603;-0.768898;, + -0.636200;0.063603;-0.768898;, + -0.636200;0.063603;-0.768898;, + 0.000000;0.098842;-0.995103;, + 0.000000;0.098842;-0.995103;, + 0.000000;0.112611;-0.993639;, + 0.000000;0.112611;-0.993639;, + -0.923416;-0.078017;-0.375788;, + -0.923416;-0.078017;-0.375788;, + -0.377631;-0.156099;-0.912704;, + -0.377631;-0.156099;-0.912704;, + -0.377631;-0.156099;-0.912704;, + 0.000000;-0.141474;-0.989942;, + -0.884679;-0.172172;-0.433244;, + -0.884679;-0.172172;-0.433244;, + -0.901160;0.122972;-0.415677;, + -0.901160;0.122972;-0.415677;, + -0.266114;-0.355012;-0.896186;, + -0.266114;-0.355012;-0.896186;, + -0.203413;0.300293;-0.931905;, + -0.214097;0.668101;-0.712603;, + -0.214097;0.668101;-0.712603;, + -0.923596;0.269341;-0.272812;, + -0.490059;0.496470;-0.716492;, + -0.490059;0.496470;-0.716492;, + 0.000000;-0.367379;-0.930071;, + 0.000000;-0.367379;-0.930071;, + 0.000000;0.327765;-0.944759;, + 0.000000;0.696186;-0.717861;, + 0.000000;0.696186;-0.717861;, + -1.000000;0.000000;0.000000;, + 0.000000;0.773957;-0.633238;, + 0.000000;-0.897668;-0.440673;, + 0.000000;-0.897668;-0.440673;, + 0.000000;0.773957;-0.633238;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.964991;-0.262282;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + 0.000000;0.773957;-0.633238;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.964991;-0.262282;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + 0.000000;0.773957;-0.633238;, + 0.000000;-0.897668;-0.440673;, + 0.000000;0.773957;-0.633238;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.964991;-0.262282;, + 1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.001183;-0.449065;-0.893498;, + 0.001183;-0.449065;-0.893498;, + 0.000000;-0.450375;-0.892840;, + 0.000000;-0.450375;-0.892840;, + 1.000000;0.000000;0.000000;, + -0.001183;-0.449065;-0.893498;, + -0.001183;-0.449065;-0.893498;, + -0.922670;-0.345728;-0.170740;, + -0.382376;-0.569938;0.727296;, + -0.783932;-0.598346;0.165629;, + 0.000000;-0.378105;0.925763;, + 0.000000;0.000000;1.000000;, + -0.643705;-0.753560;-0.133384;, + -0.643705;-0.753560;-0.133384;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.184987;-0.982741;, + 0.000000;-0.184987;-0.982741;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;-0.184987;-0.982741;, + 0.000000;1.000000;0.000000;, + 0.000000;-0.378105;0.925763;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + -0.659309;-0.751872;0.000000;, + -0.659309;-0.751872;0.000000;, + -0.991432;-0.130624;0.000000;, + 0.000000;1.000000;0.000000;, + -0.456239;0.854986;0.246667;, + -0.456239;0.854986;0.246667;, + -0.456239;0.854986;0.246667;, + -0.405203;0.686558;-0.603696;, + -0.405203;0.686558;-0.603696;, + -0.405203;0.686558;-0.603696;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.729521;-0.683958;, + 0.000000;0.729521;-0.683958;, + 0.000000;0.892165;0.451711;, + 0.000000;0.892165;0.451711;, + -0.071029;-0.568445;-0.819650;, + -0.071029;-0.568445;-0.819650;, + -0.813177;-0.579468;-0.054409;, + -0.813177;-0.579468;-0.054409;, + -0.813177;-0.579468;-0.054409;, + -0.813177;-0.579468;-0.054409;, + -0.608486;-0.622828;-0.491763;, + -0.608486;-0.622828;-0.491763;, + -0.608486;-0.622828;-0.491763;, + -0.165797;-0.985639;-0.032041;, + -0.165797;-0.985639;-0.032041;, + -0.148332;-0.907977;-0.391886;, + -0.148332;-0.907977;-0.391886;, + -0.148332;-0.907977;-0.391886;, + -0.229863;-0.512566;-0.827308;, + -0.549758;-0.282120;-0.786241;, + -0.549758;-0.282120;-0.786241;, + -0.901537;-0.408133;-0.143730;, + -0.901537;-0.408133;-0.143730;, + -0.901537;-0.408133;-0.143730;, + -0.324502;-0.896254;-0.302369;, + -0.324502;-0.896254;-0.302369;, + -0.324502;-0.896254;-0.302369;, + -1.000000;0.000000;0.000000;, + -0.913099;-0.363269;-0.185167;, + -0.913099;-0.363269;-0.185167;, + -1.000000;0.000000;0.000000;, + -0.350617;-0.836690;-0.420734;, + -0.350617;-0.836690;-0.420734;, + -0.350617;-0.836690;-0.420734;, + -0.350617;-0.836690;-0.420734;, + 0.142002;-0.523952;-0.839827;, + 0.142002;-0.523952;-0.839827;, + 0.000000;-0.999568;-0.029404;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.999568;-0.029404;, + 0.477824;-0.715291;-0.509944;, + 0.477824;-0.715291;-0.509944;, + 0.477824;-0.715291;-0.509944;, + 0.477824;-0.715291;-0.509944;, + 0.000000;-0.950866;-0.309602;, + 0.000000;-0.950866;-0.309602;, + 0.000000;-0.895357;-0.445349;, + 0.000000;-0.895357;-0.445349;, + -0.093017;-0.036036;-0.995012;, + -0.845563;0.464159;-0.263779;, + -0.845563;0.464159;-0.263779;, + -0.845563;0.464159;-0.263779;, + -0.845563;0.464159;-0.263779;, + -0.695672;0.222611;-0.682997;, + -0.695672;0.222611;-0.682997;, + -0.232657;0.873824;-0.426968;, + -0.232657;0.873824;-0.426968;, + -0.194237;0.693443;-0.693836;, + -0.194237;0.693443;-0.693836;, + -0.264427;-0.221960;-0.938516;, + -1.000000;0.000000;0.000000;, + -0.719556;0.465442;-0.515366;, + -0.719556;0.465442;-0.515366;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + -0.839393;0.476139;-0.262127;, + -0.839393;0.476139;-0.262127;, + -0.209199;0.856636;-0.471604;, + -0.924952;0.375115;0.061252;, + -0.682450;0.721378;0.117794;, + 0.152278;-0.112636;-0.981898;, + 1.000000;0.000000;0.000000;, + 0.000000;0.901820;-0.432111;, + 0.000000;0.901820;-0.432111;, + 0.000000;0.746324;-0.665583;, + 0.839416;-0.217607;-0.498024;, + 0.632618;0.043851;-0.773222;, + 0.173513;0.437151;-0.882492;, + 0.000000;0.876019;-0.482276;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + -1.000000;0.000000;0.000000;, + 0.000000;0.978200;-0.207665;, + 0.000000;-0.897668;-0.440673;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.978200;-0.207665;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + -0.657933;0.281340;-0.698550;, + 0.000000;-0.987330;-0.158678;, + -0.657933;0.281340;-0.698550;, + 0.000000;0.978200;-0.207665;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.987330;-0.158678;, + 0.000000;0.352088;-0.935967;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + 1.000000;0.000000;0.000000;, + 0.000000;0.978200;-0.207665;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.657933;0.281340;-0.698550;, + 0.000000;-0.987330;-0.158678;, + 0.657933;0.281340;-0.698550;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.371391;-0.928477;, + 0.000000;-0.919145;-0.393919;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.919145;-0.393919;, + -0.704085;-0.354065;-0.615550;, + -0.704085;-0.354065;-0.615550;, + -0.704085;-0.354065;-0.615550;, + 0.000000;-0.481363;-0.876521;, + 0.000000;-0.481363;-0.876521;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.371391;-0.928477;, + 0.000000;-0.919145;-0.393919;, + 0.000000;-0.919145;-0.393919;, + 0.000000;-0.371391;-0.928477;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.919145;-0.393919;, + 0.000000;-0.919145;-0.393919;, + 0.000000;-0.481363;-0.876521;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.481363;-0.876521;, + 0.704085;-0.354065;-0.615550;, + 0.704085;-0.354065;-0.615550;, + 0.704085;-0.354065;-0.615550;, + 0.000000;0.404553;-0.914514;, + -0.946660;0.322234;0.000000;, + -0.765120;0.576310;-0.287155;, + -0.345860;0.589303;-0.730139;, + -0.946660;0.322234;0.000000;, + -0.946660;0.322234;0.000000;, + -0.671803;0.000000;-0.740730;, + -0.671803;0.000000;-0.740730;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + -0.262974;-0.511171;-0.818259;, + -0.262974;-0.511171;-0.818259;, + -0.262974;0.511173;-0.818258;, + -0.262974;0.511173;-0.818258;, + 0.000000;0.618986;-0.785402;, + 0.000000;0.618986;-0.785402;, + 0.815811;0.578319;0.000000;, + -0.815811;0.578319;0.000000;, + 0.000000;0.508835;-0.860864;, + 0.000000;0.508835;-0.860864;, + 0.000000;-0.508833;-0.860865;, + 0.000000;-0.508833;-0.860865;, + 0.000000;0.404553;-0.914514;, + 0.765120;0.576310;-0.287155;, + 0.345860;0.589303;-0.730139;, + 0.946660;0.322234;0.000000;, + 0.946660;0.322234;0.000000;, + 0.946660;0.322234;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.262974;-0.511171;-0.818259;, + 0.262974;-0.511171;-0.818259;, + 0.262974;0.511173;-0.818258;, + 0.262974;0.511173;-0.818258;, + 0.671803;0.000000;-0.740730;, + 0.000000;1.000000;0.000000;, + 0.671803;0.000000;-0.740730;, + -1.000000;0.000000;0.000000;, + 0.002643;-0.988024;-0.154279;, + 0.002643;-0.988024;-0.154279;, + 0.000000;-0.196037;-0.980597;, + -0.992902;-0.118932;0.000000;, + -0.308346;0.914546;-0.261780;, + -0.308346;0.914546;-0.261780;, + -0.441536;0.897244;0.000000;, + -0.441536;0.897244;0.000000;, + -0.308346;0.914546;0.261780;, + -0.308346;0.914546;0.261780;, + 0.000000;-0.946157;-0.323708;, + 0.000000;-0.946157;-0.323708;, + 0.000000;-0.196037;-0.980597;, + 0.996514;-0.083420;0.000000;, + 0.320176;0.909831;-0.263999;, + 0.459174;0.888346;0.000000;, + 0.320176;0.909831;0.263999;, + 1.000000;0.000000;0.000000;, + -0.002643;-0.988024;-0.154279;, + -0.002643;-0.988024;-0.154279;, + 0.308346;0.914546;-0.261780;, + 0.308346;0.914546;-0.261780;, + 0.441536;0.897244;0.000000;, + 0.441536;0.897244;0.000000;, + 0.308346;0.914546;0.261780;, + 0.308346;0.914546;0.261780;, + -0.812034;-0.553973;0.183615;, + -0.946603;-0.281034;-0.157994;, + 0.000000;-0.378105;0.925763;, + -0.382376;-0.569938;0.727296;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.378105;0.925763;, + -1.000000;0.000000;0.000000;, + 0.000000;0.710283;-0.703916;, + -1.000000;0.000000;0.000000;, + 0.000000;0.946563;-0.322518;, + 0.000000;0.946563;-0.322518;, + -1.000000;0.000000;0.000000;, + 0.000000;0.555569;-0.831470;, + 0.000000;0.764153;-0.645035;, + 0.000000;0.764153;-0.645035;, + 0.000000;0.710283;-0.703916;, + 0.000000;0.555569;-0.831470;, + 1.000000;0.000000;0.000000;, + 0.000000;0.710283;-0.703916;, + 1.000000;0.000000;0.000000;, + 0.000000;0.946563;-0.322518;, + 0.000000;0.946563;-0.322518;, + 1.000000;0.000000;0.000000;, + 0.000000;0.555569;-0.831470;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.389197;-0.921154;, + 0.000000;-1.000000;0.000000;, + -0.542285;0.325571;-0.774552;, + -0.542285;0.325571;-0.774552;, + 0.000000;0.007127;-0.999975;, + -0.573119;0.023866;-0.819124;, + -0.573119;0.023866;-0.819124;, + 0.000000;0.216852;0.976204;, + -0.961193;0.164049;-0.221802;, + -0.961193;0.164049;-0.221802;, + -0.980187;0.000000;-0.198074;, + 0.000000;0.000000;1.000000;, + -0.980187;0.000000;-0.198074;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.216852;0.976204;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.928011;-0.372552;, + 0.000000;-0.928011;-0.372552;, + -0.915407;-0.402528;0.001330;, + -0.915407;-0.402528;0.001330;, + -0.362628;-0.931929;0.003080;, + -0.362628;-0.931929;0.003080;, + -0.932383;0.105681;0.345678;, + -0.932383;0.105681;0.345678;, + -0.939177;-0.277805;0.201919;, + -0.939177;-0.277805;0.201919;, + -0.939177;-0.277805;0.201919;, + -0.423043;-0.726679;0.541270;, + -0.423043;-0.726679;0.541270;, + -0.510845;0.042579;0.858618;, + -0.510845;0.042579;0.858618;, + 0.000000;-0.796632;0.604464;, + 0.000000;-0.999995;0.003305;, + -0.297759;0.272112;0.915038;, + -0.297759;0.272112;0.915038;, + -0.886619;0.124974;0.445295;, + -0.886619;0.124974;0.445295;, + -0.886619;0.124974;0.445295;, + -0.229087;0.702960;0.673325;, + -0.229087;0.702960;0.673325;, + -0.864236;0.368497;0.342501;, + -0.864236;0.368497;0.342501;, + -0.713439;0.698664;-0.053601;, + -0.713439;0.698664;-0.053601;, + 0.000000;0.712829;0.701337;, + 0.000000;0.712829;0.701337;, + 0.000000;0.297145;0.954832;, + 0.000000;0.297145;0.954832;, + -0.204500;0.976588;-0.066752;, + -0.987857;-0.005063;-0.155282;, + -0.987857;-0.005063;-0.155282;, + -0.582078;-0.000864;-0.813132;, + -0.582078;-0.000864;-0.813132;, + -0.582078;-0.000864;-0.813132;, + -0.582078;-0.000864;-0.813132;, + -0.581799;-0.016819;-0.813159;, + -0.581799;-0.016819;-0.813159;, + -0.581799;-0.016819;-0.813159;, + -0.581799;-0.016819;-0.813159;, + -0.987819;-0.010866;-0.155226;, + -0.987819;-0.010866;-0.155226;, + 0.000000;0.883291;-0.468826;, + 0.000000;-0.657889;-0.753115;, + 0.113771;0.245370;-0.962730;, + 0.113771;0.245370;-0.962730;, + -0.171571;0.921590;-0.348189;, + 0.000000;0.948652;-0.316321;, + -0.520068;0.319591;-0.792081;, + -0.520068;0.319591;-0.792081;, + -0.520068;0.319591;-0.792081;, + -0.800913;0.509642;-0.314332;, + -0.800913;0.509642;-0.314332;, + 0.000000;-0.774307;-0.632810;, + 0.000000;0.660625;-0.750716;, + 0.000000;-0.935118;-0.354337;, + -0.153552;-0.920031;-0.360507;, + 0.118314;-0.167948;-0.978670;, + 0.118314;-0.167948;-0.978670;, + -0.787478;-0.534510;-0.306884;, + -0.787478;-0.534510;-0.306884;, + -0.491605;-0.323829;-0.808368;, + -0.491605;-0.323829;-0.808368;, + -0.491605;-0.323829;-0.808368;, + 0.000000;-0.351344;-0.936246;, + 0.000000;0.000000;-1.000000;, + 0.379424;-0.028718;-0.924777;, + 0.379424;-0.028718;-0.924777;, + 0.261457;-0.285374;-0.922064;, + 0.000000;0.000000;-1.000000;, + 0.376619;0.054435;-0.924768;, + 0.376619;0.054435;-0.924768;, + 0.386721;-0.025977;-0.921831;, + 0.386721;-0.025977;-0.921831;, + 0.386721;-0.025977;-0.921831;, + 0.383931;0.053652;-0.921802;, + 0.383931;0.053652;-0.921802;, + 0.383931;0.053652;-0.921802;, + 0.000000;0.353047;-0.935606;, + 0.254652;0.321336;-0.912083;, + 0.000000;0.998175;-0.060396;, + 0.000000;-0.250841;0.968028;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.250841;0.968028;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.250841;0.968028;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.250841;0.968028;, + 1.000000;0.000000;0.000000;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 0.000000;-0.861871;0.507128;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + -0.997088;-0.076255;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.703016;-0.711174;0.000000;, + -0.703016;-0.711174;0.000000;, + -0.703016;-0.711174;0.000000;, + 1.000000;0.000000;0.000000;, + -0.688808;0.146582;-0.709970;, + -0.688808;0.146582;-0.709970;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.178932;-0.983862;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.688808;0.146582;-0.709970;, + 0.688808;0.146582;-0.709970;, + 0.703016;-0.711174;0.000000;, + 0.703016;-0.711174;0.000000;, + 0.703016;-0.711174;0.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + -0.673085;0.543157;-0.501933;, + -0.673085;0.543157;-0.501933;, + -0.673085;0.543157;-0.501933;, + -0.681821;-0.000000;-0.731519;, + -0.681821;-0.000000;-0.731519;, + -0.673085;-0.543157;-0.501933;, + -0.673085;-0.543157;-0.501933;, + -0.673085;-0.543157;-0.501933;, + -0.665741;-0.746183;0.000000;, + -0.665741;-0.746183;0.000000;, + -1.000000;-0.000000;-0.000000;, + -0.297521;-0.752416;-0.587666;, + -0.297521;-0.752416;-0.587666;, + -0.297521;-0.752416;-0.587666;, + -0.946660;0.322234;0.000000;, + 0.000000;0.404553;0.914514;, + -0.345860;0.589303;0.730139;, + -0.765120;0.576310;0.287155;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + -0.961703;0.274094;0.000000;, + -0.961703;0.274094;0.000000;, + 0.000000;0.000000;1.000000;, + -0.408026;0.782721;-0.469960;, + -0.408026;0.782721;-0.469960;, + -0.408026;0.782721;-0.469960;, + -0.961703;-0.274094;0.000000;, + 0.000000;0.000000;1.000000;, + -0.961703;-0.274094;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.408026;-0.782720;-0.469961;, + -0.408026;-0.782720;-0.469961;, + -0.408026;-0.782720;-0.469961;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.734960;-0.678111;, + 0.000000;-0.734960;-0.678111;, + -0.709688;-0.575075;-0.406979;, + -0.709688;-0.575075;-0.406979;, + -0.709688;-0.575075;-0.406979;, + -0.812989;-0.582279;0.000000;, + 0.000000;0.000000;1.000000;, + -0.812989;-0.582279;0.000000;, + -0.812989;0.582279;0.000000;, + 0.000000;0.000000;1.000000;, + -0.812989;0.582279;0.000000;, + -0.709688;0.575076;-0.406978;, + -0.709688;0.575076;-0.406978;, + -0.709688;0.575076;-0.406978;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + 0.525821;-0.675119;-0.517422;, + 0.525821;-0.675119;-0.517422;, + 0.525821;-0.675119;-0.517422;, + 0.000000;0.618986;0.785402;, + 0.000000;0.618986;0.785402;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.682437;-0.730944;, + 0.000000;0.682437;-0.730944;, + 0.000000;-0.734960;-0.678111;, + 0.000000;-0.734960;-0.678111;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-0.682436;-0.730946;, + 0.000000;-0.682436;-0.730946;, + 0.673085;0.543157;-0.501933;, + 0.673085;0.543157;-0.501933;, + 0.673085;0.543157;-0.501933;, + 0.681820;-0.000000;-0.731520;, + 0.681820;-0.000000;-0.731520;, + 0.673085;-0.543157;-0.501933;, + 0.673085;-0.543157;-0.501933;, + 0.673085;-0.543157;-0.501933;, + 0.665741;-0.746183;0.000000;, + 0.665741;-0.746183;0.000000;, + 0.946660;0.322234;0.000000;, + 0.000000;0.404553;0.914514;, + 0.765120;0.576310;0.287155;, + 0.345860;0.589303;0.730139;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.961703;0.274094;0.000000;, + 0.000000;0.000000;1.000000;, + 0.961703;0.274094;0.000000;, + 0.408026;0.782721;-0.469960;, + 0.408026;0.782721;-0.469960;, + 0.408026;0.782721;-0.469960;, + 0.961703;-0.274094;0.000000;, + 0.961703;-0.274094;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.408026;-0.782720;-0.469961;, + 0.408026;-0.782720;-0.469961;, + 0.408026;-0.782720;-0.469961;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.734960;-0.678111;, + 0.000000;-0.734960;-0.678111;, + 0.709688;-0.575075;-0.406979;, + 0.709688;-0.575075;-0.406979;, + 0.709688;-0.575075;-0.406979;, + 0.812989;-0.582279;0.000000;, + 0.812989;-0.582279;0.000000;, + 0.000000;0.000000;1.000000;, + 0.812989;0.582279;0.000000;, + 0.000000;0.000000;1.000000;, + 0.812989;0.582279;0.000000;, + 0.709688;0.575076;-0.406978;, + 0.709688;0.575076;-0.406978;, + 0.709688;0.575076;-0.406978;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + -0.665741;0.746183;0.000000;, + -0.665741;0.746183;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;-0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.734960;-0.678111;, + 0.000000;0.734960;-0.678111;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;-0.000000;, + 0.000000;0.734960;-0.678111;, + 0.000000;0.734960;-0.678111;, + 0.665741;0.746183;0.000000;, + 0.665741;0.746183;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;-0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.734960;-0.678111;, + 0.000000;0.734960;-0.678111;, + 0.000000;-1.000000;0.000000;, + 0.006548;0.000000;-0.999979;, + 0.999860;0.000000;0.016754;, + 0.000000;-1.000000;0.000000;, + -0.999860;0.000000;-0.016753;, + 0.006548;0.000000;-0.999979;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.974062;0.193186;-0.117820;, + -0.990365;0.035316;-0.133904;, + -1.000000;0.000000;0.000000;, + -0.067354;-0.443547;0.893716;, + -0.067354;-0.443547;0.893716;, + -0.817977;-0.560175;0.130831;, + -0.817977;-0.560175;0.130831;, + -0.817977;-0.560175;0.130831;, + -0.143343;-0.948306;0.283140;, + -0.575371;-0.360864;0.733979;, + -0.575371;-0.360864;0.733979;, + -0.575371;-0.360864;0.733979;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -0.237889;-0.660874;-0.711797;, + -0.237889;-0.660874;-0.711797;, + -0.225248;-0.235329;-0.945454;, + -0.694911;-0.059586;-0.716623;, + -0.694911;-0.059586;-0.716623;, + -0.724776;-0.636464;-0.263843;, + -0.724776;-0.636464;-0.263843;, + -0.724776;-0.636464;-0.263843;, + -0.724776;-0.636464;-0.263843;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.981599;-0.122465;-0.146514;, + -0.921060;-0.243934;0.303554;, + -0.921060;-0.243934;0.303554;, + -0.921060;-0.243934;0.303554;, + -0.590930;-0.729027;0.345429;, + -0.339709;0.184859;0.922185;, + -0.356763;-0.934190;0.003088;, + -0.591008;-0.180066;0.786312;, + 0.000000;-0.447847;0.894110;, + 0.000000;-0.447847;0.894110;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.957775;0.287517;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.999995;0.003306;, + 0.000000;0.212834;0.977088;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.724776;-0.636464;-0.263843;, + 0.724776;-0.636464;-0.263843;, + 0.724776;-0.636464;-0.263843;, + 0.724776;-0.636464;-0.263843;, + 0.694911;-0.059586;-0.716623;, + 0.694911;-0.059586;-0.716623;, + 0.225248;-0.235329;-0.945454;, + 0.237889;-0.660874;-0.711797;, + 0.237889;-0.660874;-0.711797;, + -0.306622;-0.892935;-0.329622;, + -0.306622;-0.892935;-0.329622;, + -0.306622;-0.892935;-0.329622;, + -0.328658;-0.526006;-0.784412;, + -0.938714;-0.344697;0.000000;, + 0.000000;-0.300372;-0.953822;, + -0.767964;-0.531687;-0.357126;, + -0.767968;0.531681;-0.357129;, + 0.000000;0.300367;-0.953824;, + -0.328661;0.526000;-0.784415;, + -0.938716;0.344692;0.000000;, + -0.306626;0.892932;-0.329625;, + -0.306626;0.892932;-0.329625;, + -0.306626;0.892932;-0.329625;, + -0.901160;-0.433486;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.887308;-0.461177;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.198966;0.000000;-0.980006;, + 0.000000;-1.000000;0.000000;, + 0.198966;0.000000;-0.980006;, + 0.000000;0.000000;-1.000000;, + -0.505754;-0.862678;0.000000;, + -0.505754;-0.862678;0.000000;, + 0.198966;0.000000;-0.980006;, + 0.163134;-0.084068;-0.983016;, + 0.334945;0.942238;0.000000;, + 0.334945;0.942238;0.000000;, + -0.631267;0.775565;0.000000;, + 0.163134;-0.084068;-0.983016;, + -0.631267;0.775565;0.000000;, + -0.986099;0.166158;0.000000;, + 0.356869;-0.669712;-0.651253;, + 0.356869;-0.669712;-0.651253;, + 0.000000;0.000000;-1.000000;, + 0.953833;0.300339;0.000000;, + 0.953833;0.300339;0.000000;, + 0.712537;0.701634;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.682801;0.730605;0.000000;, + -0.682801;0.730605;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.712526;-0.701646;0.000000;, + 0.985989;-0.166808;0.000000;, + -0.712526;-0.701646;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.000000;-1.000000;, + 0.933289;-0.359126;0.000000;, + 0.933289;-0.359126;0.000000;, + 0.797086;0.603866;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.337034;0.941492;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.997575;-0.069594;0.000000;, + 0.693605;-0.720355;0.000000;, + -0.997575;-0.069594;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.300371;-0.953822;, + 0.000000;-0.300371;-0.953822;, + 0.000000;-0.886849;-0.462059;, + 0.000000;-0.886849;-0.462059;, + 0.000000;0.300367;-0.953824;, + 0.000000;0.300367;-0.953824;, + -0.000000;0.886847;-0.462064;, + -0.000000;0.886847;-0.462064;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;-0.016753;, + -0.007275;0.000000;-0.999974;, + -0.999860;0.000000;-0.016753;, + 0.000000;-1.000000;0.000000;, + -0.007275;0.000000;-0.999974;, + 0.006063;-0.377782;-0.925875;, + 0.999860;0.000000;0.016754;, + 0.006063;-0.377782;-0.925875;, + -0.999860;0.000001;-0.016752;, + 0.006063;-0.377782;-0.925875;, + 0.999860;0.000000;0.016754;, + -0.999860;0.000001;-0.016753;, + 0.006063;-0.377782;-0.925875;, + 0.999860;0.000000;0.016754;, + -0.999860;0.000001;-0.016753;, + 0.845995;-0.382332;-0.371638;, + 0.845995;-0.382332;-0.371638;, + 0.845995;-0.382332;-0.371638;, + 0.845995;-0.382332;-0.371638;, + 0.128250;-0.917776;-0.375819;, + 0.128250;-0.917776;-0.375819;, + 0.315649;-0.364073;-0.876251;, + 0.315649;-0.364073;-0.876251;, + 0.000000;-0.886848;-0.462062;, + 0.000000;-0.886848;-0.462062;, + 0.000000;-0.929961;-0.367658;, + 0.000000;-0.300370;-0.953823;, + 0.000000;-0.300370;-0.953823;, + 0.000000;-0.300369;-0.953823;, + 0.000000;-0.300369;-0.953823;, + 0.845995;0.382332;-0.371638;, + 0.845995;0.382332;-0.371638;, + 0.845995;0.382332;-0.371638;, + 0.845995;0.382332;-0.371638;, + 0.315649;0.364073;-0.876251;, + 0.315649;0.364073;-0.876251;, + 0.128250;0.917776;-0.375819;, + 0.128250;0.917776;-0.375819;, + 0.000000;0.886848;-0.462062;, + 0.000000;0.886848;-0.462062;, + 0.000000;0.300369;-0.953823;, + 0.000000;0.300369;-0.953823;, + 0.000000;0.300368;-0.953823;, + 0.000000;0.300368;-0.953823;, + -0.000000;0.929961;-0.367659;, + 0.000000;1.000000;0.000000;, + 0.009877;0.000000;-0.999951;, + 0.000000;-1.000000;0.000000;, + 0.009877;0.000000;-0.999951;, + 0.000000;-1.000000;0.000000;, + -0.007275;0.000000;-0.999974;, + 0.999860;0.000000;0.016753;, + 0.999860;0.000000;0.016753;, + -0.007275;0.000000;-0.999974;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.444792;0.000000;-0.895634;, + -0.444792;0.000000;-0.895634;, + -0.444792;0.000000;-0.895634;, + -0.444792;0.000000;-0.895634;, + 0.000000;1.000000;0.000000;, + -0.444792;0.000000;-0.895634;, + -0.444792;0.000000;-0.895634;, + 0.225238;0.000000;-0.974304;, + 0.000000;-1.000000;0.000000;, + 0.225238;0.000000;-0.974304;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.225236;-0.000001;-0.974304;, + -0.225236;-0.000001;-0.974304;, + 0.000000;-1.000000;0.000000;, + -0.952657;0.000000;-0.304046;, + -0.952657;0.000000;-0.304046;, + -1.000000;0.000000;-0.000000;, + -0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + -0.897253;-0.281640;-0.340023;, + -0.897253;-0.281640;-0.340023;, + -0.943629;-0.331006;0.000000;, + -0.000000;0.000000;1.000000;, + -0.428060;-0.799374;-0.421624;, + -0.428060;-0.799374;-0.421624;, + -0.428060;-0.799374;-0.421624;, + -0.428060;-0.799374;-0.421624;, + -0.433190;-0.901303;0.000000;, + -0.433190;-0.901303;0.000000;, + -0.000000;-0.000000;1.000000;, + -0.410415;-0.110414;-0.905190;, + -0.410415;-0.110414;-0.905190;, + -0.000000;-0.000000;1.000000;, + -0.458637;0.000000;-0.888624;, + -0.458637;0.000000;-0.888624;, + -0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.009877;0.000000;-0.999951;, + 0.999835;0.000000;-0.018151;, + 0.999835;0.000000;-0.018151;, + 0.009877;0.000000;-0.999951;, + 0.000000;1.000000;0.000000;, + 0.008295;0.000000;-0.999966;, + -0.739674;0.429300;-0.518250;, + -0.739674;0.429300;-0.518250;, + -0.739674;0.429300;-0.518250;, + 0.003774;0.861001;-0.508589;, + 0.003774;0.861001;-0.508589;, + 0.003774;0.861001;-0.508589;, + -0.739674;-0.429300;-0.518250;, + -0.739674;-0.429300;-0.518250;, + -0.739674;-0.429300;-0.518250;, + 0.003774;-0.861001;-0.508589;, + 0.003774;-0.861001;-0.508589;, + 0.003774;-0.861001;-0.508589;, + 0.751445;-0.431739;-0.498932;, + 0.751445;-0.431739;-0.498932;, + 0.751445;-0.431739;-0.498932;, + 0.751445;0.431739;-0.498932;, + 0.751445;0.431739;-0.498932;, + 0.751445;0.431739;-0.498932;, + 0.000000;-1.000000;0.000000;, + 0.444792;0.000000;-0.895634;, + 0.444792;0.000000;-0.895634;, + 0.444792;0.000000;-0.895634;, + 0.444792;0.000000;-0.895634;, + 0.000000;1.000000;0.000000;, + 0.444792;0.000000;-0.895634;, + 0.444792;0.000000;-0.895634;, + 0.492699;-0.870200;0.000000;, + -0.000000;-0.000000;1.000000;, + 0.418146;-0.801329;-0.427815;, + 0.418146;-0.801329;-0.427815;, + 0.418146;-0.801329;-0.427815;, + 0.421913;-0.784056;-0.455242;, + 0.421913;-0.784056;-0.455242;, + 0.421913;-0.784056;-0.455242;, + 0.492699;-0.870200;0.000000;, + -0.000000;-0.000000;1.000000;, + 0.492699;-0.870200;0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.115463;-0.249286;-0.961522;, + 0.115463;-0.249286;-0.961522;, + 0.100988;-0.994888;0.000000;, + -0.000000;0.000000;1.000000;, + 0.000000;-0.000000;-1.000000;, + -0.179157;-0.288632;-0.940529;, + -0.179157;-0.288632;-0.940529;, + 0.191831;-0.385043;-0.902742;, + 0.000000;-0.000000;-1.000000;, + 0.292367;-0.866429;-0.404750;, + 0.292367;-0.866429;-0.404750;, + 0.292367;-0.866429;-0.404750;, + 0.331004;-0.943629;0.000000;, + -0.000000;0.000000;1.000000;, + 0.830569;-0.387539;-0.399961;, + 0.830569;-0.387539;-0.399961;, + 0.830569;-0.387539;-0.399961;, + 0.830569;-0.387539;-0.399961;, + 0.901302;-0.433191;0.000000;, + 0.901302;-0.433191;0.000000;, + -0.000000;0.000000;1.000000;, + 0.000000;0.000000;-1.000000;, + 0.109902;-0.344862;-0.932197;, + 0.109902;-0.344862;-0.932197;, + 1.000000;0.000000;0.000000;, + -0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.945889;0.000000;-0.324489;, + 0.945889;0.000000;-0.324489;, + 0.439396;0.000000;-0.898293;, + 0.439396;0.000000;-0.898293;, + 0.442680;-0.198092;-0.874525;, + 0.442680;-0.198092;-0.874525;, + -0.000000;0.000000;1.000000;, + 0.100988;-0.994888;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.222802;0.267250;-0.937516;, + -0.694990;0.067591;-0.715836;, + -0.694990;0.067591;-0.715836;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.182865;0.983138;0.000000;, + -0.841860;0.510164;-0.176079;, + -0.841860;0.510164;-0.176079;, + -0.841860;0.510164;-0.176079;, + -0.212237;0.942309;-0.258861;, + 0.000000;0.000000;1.000000;, + -0.824489;0.565879;0.000000;, + -0.824489;0.565879;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.694990;0.067591;-0.715836;, + 0.694990;0.067591;-0.715836;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.222803;0.267250;-0.937516;, + -0.643961;0.458788;-0.612232;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.965546;-0.260232;, + 0.000000;0.951870;-0.306503;, + 0.000000;0.951870;-0.306503;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.006548;0.000000;-0.999979;, + 0.999860;0.000000;0.016754;, + -0.999860;0.000000;-0.016752;, + 0.006548;0.000000;-0.999979;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;-0.016753;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;0.016754;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;0.016754;, + -0.006548;0.000000;0.999979;, + -0.999860;0.000000;-0.016753;, + -0.006548;0.000000;0.999979;, + 0.000000;1.000000;0.000000;, + 0.006548;0.000000;-0.999979;, + -0.999860;0.000000;-0.016752;, + 0.999860;0.000000;0.016754;, + 0.006548;0.000000;-0.999979;, + 0.006548;0.000000;-0.999979;, + 0.999860;0.000000;0.016754;, + 0.999860;0.000000;0.016754;, + 0.000000;-1.000000;0.000000;, + -0.006548;0.000000;0.999979;, + -0.006548;0.000000;0.999979;, + -0.999860;0.000000;-0.016753;, + 0.000000;-1.000000;0.000000;, + -0.999860;0.000000;-0.016752;, + 0.006548;0.000000;-0.999979;, + -0.894428;0.447212;-0.000000;, + -0.894428;0.447212;-0.000000;, + -0.831040;0.403243;-0.383102;, + -0.831040;0.403243;-0.383102;, + -0.831040;0.403243;-0.383102;, + -0.831040;0.403243;-0.383102;, + -0.316229;0.948683;-0.000000;, + -0.282244;0.875709;-0.391756;, + -0.282244;0.875709;-0.391756;, + -0.282244;0.875709;-0.391756;, + -0.457151;0.212943;-0.863521;, + -0.457151;0.212943;-0.863521;, + 0.000000;0.933082;-0.359664;, + 0.000000;0.933082;-0.359664;, + 0.000000;1.000000;0.000000;, + 0.000000;0.405468;-0.914109;, + 0.000000;0.405468;-0.914109;, + -0.109882;0.357779;-0.927319;, + -0.109882;0.357779;-0.927319;, + 0.349235;0.855784;-0.381665;, + 0.349235;0.855784;-0.381665;, + 0.349235;0.855784;-0.381665;, + 0.349235;0.855784;-0.381665;, + 0.382684;0.923879;0.000000;, + 0.382684;0.923879;0.000000;, + 0.923880;0.382683;0.000000;, + 0.859819;0.357289;-0.364767;, + 0.859819;0.357289;-0.364767;, + 0.859819;0.357289;-0.364767;, + 0.142369;0.355966;-0.923590;, + 0.142369;0.355966;-0.923590;, + 0.486422;0.202974;-0.849820;, + 0.486422;0.202974;-0.849820;, + -0.231732;0.696563;-0.679043;, + -0.231732;0.696563;-0.679043;, + -0.718710;0.648693;-0.250309;, + -0.718710;0.648693;-0.250309;, + -0.718710;0.648693;-0.250309;, + -0.718710;0.648693;-0.250309;, + 0.718710;0.648692;-0.250309;, + 0.718710;0.648692;-0.250309;, + 0.718710;0.648692;-0.250309;, + 0.718710;0.648692;-0.250309;, + 0.231732;0.696563;-0.679043;, + 0.231732;0.696563;-0.679043;, + -1.000000;0.000000;0.000000;, + 0.000000;0.220606;-0.975363;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.781219;-0.624257;, + 0.000000;0.781219;-0.624257;, + 0.000000;0.781219;-0.624257;, + 0.000000;0.781219;-0.624257;, + 0.000000;0.220606;-0.975363;, + 0.000000;-1.000000;0.000000;, + -0.999563;0.015174;-0.025377;, + -0.999563;0.015174;-0.025377;, + -0.999715;0.000062;-0.023881;, + -0.999715;0.000062;-0.023881;, + -0.999670;0.005731;-0.025038;, + -0.999670;0.005731;-0.025038;, + -0.999698;0.006980;-0.023542;, + -0.999698;0.006980;-0.023542;, + 0.000000;0.999327;-0.036692;, + -0.186111;0.981867;-0.036054;, + -0.817235;0.575047;-0.038051;, + -0.817235;0.575047;-0.038051;, + -0.821447;0.564406;-0.081677;, + -0.821447;0.564406;-0.081677;, + -0.185128;0.976271;-0.112354;, + 0.000000;0.993444;-0.114318;, + -0.817690;-0.575000;-0.027537;, + -0.817690;-0.575000;-0.027537;, + -0.164892;-0.986122;-0.019346;, + -0.164920;-0.986307;0.000000;, + -0.813788;-0.580936;-0.016218;, + -0.813788;-0.580936;-0.016218;, + 0.000000;-0.999808;-0.019615;, + 0.000000;-1.000000;0.000000;, + 0.417231;-0.749047;-0.514632;, + 0.417231;-0.749047;-0.514632;, + 0.000000;-0.910249;-0.414061;, + -0.901271;0.000000;-0.433257;, + -0.697396;-0.282082;-0.658839;, + -0.266525;-0.707134;-0.654925;, + 0.417231;0.749047;-0.514632;, + 0.417231;0.749047;-0.514632;, + -0.901271;0.000000;-0.433257;, + -0.266525;0.707134;-0.654925;, + 0.000000;0.910249;-0.414061;, + -0.697396;0.282082;-0.658839;, + 0.381399;-0.271517;-0.883636;, + -0.232012;-0.244096;-0.941588;, + -0.232012;0.244096;-0.941588;, + 0.381399;0.271517;-0.883636;, + -0.491030;-0.830349;-0.263459;, + -0.491030;-0.830349;-0.263459;, + -0.950288;-0.070780;-0.303222;, + 0.000000;0.960955;-0.276705;, + -0.272426;0.849198;-0.452379;, + -0.783289;0.222369;-0.580526;, + -0.326957;0.115768;-0.937921;, + -0.326957;0.115768;-0.937921;, + -0.326957;0.115768;-0.937921;, + -0.327272;-0.520278;-0.788799;, + -0.327272;-0.520278;-0.788799;, + -0.327272;-0.520278;-0.788799;, + 0.000000;0.235109;-0.971969;, + 0.000000;0.235109;-0.971969;, + 0.000000;-0.642876;-0.765970;, + 0.000000;-0.642876;-0.765970;, + 0.000000;0.960955;-0.276705;, + 0.000000;0.960955;-0.276705;, + 0.000000;-0.991073;-0.133319;, + 0.000000;-0.818404;-0.574643;, + -0.999257;0.038532;0.001036;, + -0.999257;0.038532;0.001036;, + 0.000000;0.317049;-0.948409;, + 0.000000;0.317049;-0.948409;, + 0.000000;-1.000000;0.000000;, + -0.996327;0.038419;0.076524;, + -0.511973;0.849126;0.129878;, + -0.996327;0.038420;0.076524;, + -0.863785;0.365054;0.347291;, + 0.000000;0.998092;0.061747;, + -0.996327;0.038419;0.076524;, + -0.994571;0.104035;-0.002266;, + 0.000000;-0.995327;0.096563;, + 0.000000;0.317049;-0.948409;, + 0.000000;0.317049;-0.948409;, + 0.000000;-0.818404;-0.574643;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.998092;0.061747;, + 0.000000;-0.995327;0.096563;, + 0.000000;-0.818404;-0.574643;, + 0.999257;0.038532;0.001036;, + 0.000000;0.317049;-0.948409;, + 0.999257;0.038532;0.001036;, + 0.000000;0.317049;-0.948409;, + 0.000000;-1.000000;0.000000;, + 0.996327;0.038419;0.076524;, + 0.511973;0.849126;0.129878;, + 0.996327;0.038420;0.076524;, + 0.863785;0.365054;0.347291;, + 0.000000;0.998092;0.061747;, + 0.994571;0.104035;-0.002266;, + 0.000000;-0.995327;0.096563;, + -0.998651;0.051906;-0.001130;, + -0.673085;0.543157;0.501933;, + -0.673085;0.543157;0.501933;, + -0.673085;0.543157;0.501933;, + -0.681821;-0.000000;0.731519;, + -0.681821;-0.000000;0.731519;, + -0.673085;-0.543157;0.501933;, + -0.673085;-0.543157;0.501933;, + -0.673085;-0.543157;0.501933;, + -0.599172;-0.557346;0.574768;, + -0.599172;-0.557346;0.574768;, + -0.599172;-0.557346;0.574768;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.215555;0.976492;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.734960;0.678111;, + 0.000000;-0.734960;0.678111;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.215556;0.976492;, + 0.000000;-0.215556;0.976492;, + 0.000000;-0.000000;1.000000;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.601258;-0.745604;0.287339;, + 0.601258;-0.745604;0.287339;, + 0.601258;-0.745604;0.287339;, + 0.000000;1.000000;0.000000;, + 0.000000;0.215555;0.976492;, + 0.000000;-0.734960;0.678111;, + 0.000000;-0.734960;0.678111;, + 0.000000;-0.215556;0.976492;, + 0.000000;-0.215556;0.976492;, + 0.673085;0.543157;0.501933;, + 0.673085;0.543157;0.501933;, + 0.673085;0.543157;0.501933;, + 0.681820;-0.000000;0.731520;, + 0.681820;-0.000000;0.731520;, + 0.673085;-0.543157;0.501933;, + 0.673085;-0.543157;0.501933;, + 0.673085;-0.543157;0.501933;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.215555;0.976492;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.734960;0.678111;, + 0.000000;-0.734960;0.678111;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.215556;0.976492;, + 0.000000;-0.215556;0.976492;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.999984;0.005657;, + -1.000000;0.000000;0.000000;, + 0.000000;0.734960;0.678111;, + 0.000000;0.734960;0.678111;, + 0.000000;-0.999941;0.010885;, + 0.000000;0.734960;0.678111;, + 0.000000;0.734960;0.678111;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.999984;0.005657;, + 1.000000;0.000000;0.000000;, + 0.000000;0.734960;0.678111;, + 0.000000;0.734960;0.678111;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.877728;-0.330691;0.346751;, + -0.877728;-0.330691;0.346751;, + -0.877728;-0.330691;0.346751;, + -0.877728;-0.330691;0.346751;, + -0.395322;-0.904274;0.161270;, + -0.395322;-0.904274;0.161270;, + -0.395322;-0.904274;0.161270;, + -0.420034;-0.907509;0.000000;, + -0.420034;-0.907509;0.000000;, + -0.420034;-0.907509;0.000000;, + -0.938714;-0.344697;0.000000;, + -0.938714;-0.344697;0.000000;, + -0.938714;-0.344697;0.000000;, + -0.938714;-0.344697;0.000000;, + -0.877730;0.330686;0.346752;, + -0.877730;0.330686;0.346752;, + -0.877730;0.330686;0.346752;, + -0.877730;0.330686;0.346752;, + -0.395326;0.904272;0.161272;, + -0.395326;0.904272;0.161272;, + -0.395326;0.904272;0.161272;, + -0.420038;0.907506;0.000000;, + -0.420038;0.907506;0.000000;, + -0.420038;0.907506;0.000000;, + -0.938716;0.344692;0.000000;, + -0.938716;0.344692;0.000000;, + -0.938716;0.344692;0.000000;, + -0.938716;0.344692;0.000000;, + -0.887308;-0.461177;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + -0.901160;-0.433486;0.000000;, + 0.000000;1.000000;0.000000;, + 0.852367;0.000000;0.522944;, + 0.852367;0.000000;0.522944;, + 0.833659;0.000000;-0.552279;, + 0.833659;0.000000;-0.552279;, + 0.833659;0.000000;-0.552279;, + 0.000000;1.000000;0.000000;, + 0.833659;0.000000;-0.552279;, + 0.852367;0.000000;0.522944;, + 0.852367;0.000000;0.522944;, + 0.000000;1.000000;0.000000;, + 0.232937;0.000000;0.972492;, + 0.000000;1.000000;0.000000;, + 0.232937;0.000000;0.972492;, + 0.000000;-1.000000;0.000000;, + 0.833659;0.000000;-0.552279;, + 0.833659;0.000000;-0.552279;, + 0.852367;0.000000;0.522944;, + 0.000000;-1.000000;0.000000;, + 0.852367;0.000000;0.522944;, + 0.000000;-1.000000;0.000000;, + 0.232937;0.000000;0.972492;, + -0.505754;-0.862678;0.000000;, + 0.000000;0.000000;1.000000;, + -0.505754;-0.862678;0.000000;, + 0.334945;0.942238;0.000000;, + 0.163134;-0.084065;0.983016;, + 0.334945;0.942238;0.000000;, + -0.631267;0.775565;0.000000;, + -0.631267;0.775565;0.000000;, + 0.163134;-0.084065;0.983016;, + 0.356870;-0.669711;0.651254;, + -0.986099;0.166158;0.000000;, + 0.356870;-0.669711;0.651254;, + 0.356870;-0.669711;0.651254;, + 0.356870;-0.669711;0.651254;, + 0.601679;0.798738;0.000000;, + 0.601679;0.798738;0.000000;, + 0.356869;-0.669712;-0.651253;, + 0.356869;-0.669712;-0.651253;, + 0.953833;0.300339;0.000000;, + 0.000000;0.000000;1.000000;, + 0.953833;0.300339;0.000000;, + 0.712537;0.701634;0.000000;, + -0.682801;0.730605;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + -0.682801;0.730605;0.000000;, + -0.712526;-0.701646;0.000000;, + 0.000000;0.000000;1.000000;, + -0.712526;-0.701646;0.000000;, + 0.985989;-0.166808;0.000000;, + 0.933289;-0.359126;0.000000;, + 0.000000;0.000000;1.000000;, + 0.933289;-0.359126;0.000000;, + 0.797086;0.603866;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.337034;0.941492;0.000000;, + -0.997575;-0.069594;0.000000;, + 0.000000;0.000000;1.000000;, + -0.997575;-0.069594;0.000000;, + 0.693605;-0.720355;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.747101;0.000000;0.664711;, + 0.000000;-1.000000;0.000000;, + -0.747101;0.000000;0.664711;, + -0.747101;0.000000;0.664711;, + 0.000000;1.000000;0.000000;, + -0.747101;0.000000;0.664711;, + -1.000000;-0.000001;-0.000002;, + 0.000000;1.000000;0.000000;, + -1.000000;-0.000001;-0.000002;, + 0.000000;-1.000000;0.000000;, + -0.747099;-0.000002;-0.664713;, + -0.747099;-0.000002;-0.664713;, + 0.000000;-1.000000;0.000000;, + -0.747099;-0.000002;-0.664713;, + -0.747099;-0.000002;-0.664713;, + 0.000000;1.000000;0.000000;, + 0.502197;-0.844060;0.188043;, + 0.502197;-0.844060;0.188043;, + 0.872012;-0.358050;0.333759;, + 0.872012;-0.358050;0.333759;, + 0.872012;-0.358050;0.333759;, + 0.467763;-0.861860;-0.195947;, + 0.467763;-0.861860;-0.195947;, + 0.445914;-0.895076;0.000000;, + 0.445914;-0.895076;0.000000;, + 0.445914;-0.895076;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.948223;-0.317605;0.000000;, + 0.948223;-0.317605;0.000000;, + 0.948223;-0.317605;0.000000;, + 0.948223;-0.317605;0.000000;, + 0.445914;-0.895076;0.000000;, + 0.445914;-0.895076;0.000000;, + 0.445914;-0.895076;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.948223;-0.317605;0.000000;, + 0.948223;-0.317605;0.000000;, + 0.948223;-0.317605;0.000000;, + 0.948223;-0.317605;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.872012;0.358050;0.333759;, + 0.872012;0.358050;0.333759;, + 0.872012;0.358050;0.333759;, + 0.502197;0.844060;0.188043;, + 0.502197;0.844060;0.188043;, + 0.467763;0.861860;-0.195947;, + 0.467763;0.861860;-0.195947;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.445914;0.895076;0.000000;, + 0.445914;0.895076;0.000000;, + 0.445914;0.895076;0.000000;, + 0.948223;0.317605;0.000000;, + 0.948223;0.317605;0.000000;, + 0.948223;0.317605;0.000000;, + 0.948223;0.317605;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.445914;0.895076;0.000000;, + 0.445914;0.895076;0.000000;, + 0.445914;0.895076;0.000000;, + 0.948223;0.317605;0.000000;, + 0.948223;0.317605;0.000000;, + 0.948223;0.317605;0.000000;, + 0.948223;0.317605;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.009641;0.000000;0.999954;, + 0.000000;1.000000;0.000000;, + -0.009641;0.000000;0.999954;, + 0.000000;-1.000000;0.000000;, + 0.007275;0.000000;0.999974;, + 0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + 0.999860;0.000000;0.016753;, + 0.000000;1.000000;0.000000;, + 0.007275;0.000000;0.999974;, + 0.000000;-1.000000;0.000000;, + -0.947824;0.000000;-0.318793;, + 0.000000;-1.000000;0.000000;, + -0.444793;0.000000;0.895634;, + -0.444793;0.000000;0.895634;, + 0.000000;-1.000000;0.000000;, + -0.947824;0.000000;0.318793;, + -0.947824;0.000000;0.318793;, + -0.947824;0.000000;-0.318793;, + -0.444793;0.000000;0.895634;, + -0.444793;0.000000;0.895634;, + 0.000000;1.000000;0.000000;, + -0.947824;0.000000;-0.318793;, + -0.947824;0.000000;0.318793;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.444793;0.000000;0.895634;, + -0.444793;0.000000;0.895634;, + 0.812847;0.000000;0.582477;, + 0.812847;0.000000;0.582477;, + 0.000000;-1.000000;0.000000;, + 0.920207;0.000000;-0.391432;, + 0.000000;-1.000000;0.000000;, + 0.920207;0.000000;-0.391432;, + 0.000000;1.000000;0.000000;, + 0.812847;0.000000;0.582477;, + 0.812847;0.000000;0.582477;, + 0.000000;1.000000;0.000000;, + 0.519988;0.000000;-0.854174;, + 0.000000;-1.000000;0.000000;, + 0.519988;0.000000;-0.854174;, + 0.519988;0.000000;-0.854174;, + 0.000000;1.000000;0.000000;, + 0.519988;0.000000;-0.854174;, + 0.000000;1.000000;0.000000;, + 0.225237;0.000000;0.974304;, + 0.225237;0.000000;0.974304;, + 0.000000;-1.000000;0.000000;, + -0.225237;0.000000;0.974304;, + 0.000000;-1.000000;0.000000;, + -0.225237;0.000000;0.974304;, + 0.000000;1.000000;0.000000;, + -0.009641;0.000000;0.999954;, + 0.999835;0.000000;-0.018151;, + 0.000000;-1.000000;0.000000;, + 0.999835;0.000000;-0.018151;, + 0.000000;1.000000;0.000000;, + -0.009641;0.000000;0.999954;, + -0.003775;0.861001;0.508589;, + -0.003775;0.861001;0.508589;, + -0.003775;0.861001;0.508589;, + -0.751444;0.431738;0.498932;, + -0.751444;0.431738;0.498932;, + -0.751444;0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.003775;-0.861001;0.508589;, + -0.003775;-0.861001;0.508589;, + -0.003775;-0.861001;0.508589;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.000000;0.000000;-1.000000;, + -0.943629;-0.331006;0.000000;, + -0.000000;0.000000;-1.000000;, + -0.433190;-0.901303;0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.433190;-0.901303;0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.444792;0.000000;0.895634;, + 0.444792;0.000000;0.895634;, + 0.947824;0.000000;-0.318793;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.947824;0.000000;0.318794;, + 0.444792;0.000000;0.895634;, + 0.444792;0.000000;0.895634;, + 0.947824;0.000000;0.318794;, + 0.947824;0.000000;-0.318793;, + 0.000000;1.000000;0.000000;, + 0.444792;0.000000;0.895634;, + 0.444792;0.000000;0.895634;, + 0.000000;1.000000;0.000000;, + 0.947824;0.000000;0.318794;, + 0.000000;1.000000;0.000000;, + 0.947824;0.000000;-0.318793;, + 0.739674;-0.429301;0.518250;, + 0.739674;-0.429301;0.518250;, + 0.739674;-0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + -0.923880;0.382683;0.000000;, + -0.000000;0.000000;1.000000;, + -0.923880;0.382683;0.000000;, + -0.923880;0.382683;0.000000;, + -0.923880;0.382683;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.923880;-0.382683;0.000000;, + -0.000000;-0.000000;1.000000;, + -0.923880;-0.382683;0.000000;, + -0.923880;-0.382683;0.000000;, + -0.923880;-0.382683;0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.100988;-0.994888;-0.000000;, + 0.492699;-0.870200;0.000000;, + -0.000000;-0.000000;-1.000000;, + 0.492699;-0.870200;0.000000;, + -0.000000;-0.000000;-1.000000;, + 0.492699;-0.870200;0.000000;, + -0.000000;0.000000;-1.000000;, + 0.100988;-0.994888;-0.000000;, + -0.382683;0.923880;0.000000;, + -0.000000;0.000000;1.000000;, + -0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.382683;0.923880;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.382683;-0.923880;0.000000;, + -0.000000;-0.000000;1.000000;, + -0.382683;-0.923880;0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.382683;-0.923880;0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.382683;-0.923880;0.000000;, + -0.000000;-0.000000;1.000000;, + 0.410296;0.911952;0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.410296;0.911952;0.000000;, + -0.000000;-0.000000;1.000000;, + -0.000000;-0.000000;1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000;0.000000;-0.000000;, + 0.000000;-1.000000;0.000000;, + 0.100988;-0.994888;-0.000000;, + 0.331004;-0.943629;0.000000;, + -0.000000;0.000000;-1.000000;, + 0.901302;-0.433191;-0.000000;, + 0.901302;-0.433191;-0.000000;, + -0.000000;0.000000;-1.000000;, + 1.000000;0.000000;-0.000000;, + 0.000000;-1.000000;0.000000;, + -0.000000;0.000000;-1.000000;, + -0.000000;0.000000;-1.000000;, + 0.100988;-0.994888;-0.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.922348;0.386359;0.000000;, + -0.701454;-0.712715;0.000000;, + -0.000000;0.000000;1.000000;, + -0.701454;-0.712715;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.922348;0.386359;0.000000;, + 0.934971;0.354724;0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.934971;0.354724;0.000000;, + 0.934971;0.354724;0.000000;, + 0.934971;0.354724;0.000000;, + -0.000000;-0.000000;1.000000;, + -0.000000;-0.000000;1.000000;, + 0.701454;0.712715;0.000000;, + -0.701454;-0.712715;0.000000;, + 0.707107;-0.707107;0.000000;, + -0.000000;0.000000;1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + -0.701454;-0.712715;0.000000;, + 0.707107;-0.707107;0.000000;, + 0.701454;0.712715;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.894428;0.447212;0.000000;, + -0.894428;0.447212;0.000000;, + -0.316229;0.948683;0.000000;, + -0.894428;0.447212;0.000000;, + -0.894428;0.447212;0.000000;, + -0.316229;0.948683;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.382684;0.923879;-0.000000;, + 0.382684;0.923879;-0.000000;, + 0.923880;0.382683;-0.000000;, + 0.382684;0.923879;-0.000000;, + 0.382684;0.923879;-0.000000;, + 0.923880;0.382683;-0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.467971;0.748047;0.470562;, + -0.467971;0.748047;0.470562;, + -0.448202;0.785835;-0.426119;, + -0.448202;0.785835;-0.426119;, + -0.734898;0.095942;-0.671356;, + -0.734898;0.095942;-0.671356;, + -1.000000;0.000000;0.000000;, + -0.000216;0.747545;-0.664211;, + -0.000216;0.747545;-0.664211;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.780420;0.375853;-0.499679;, + -0.780420;0.375853;-0.499679;, + -0.780420;0.375853;-0.499679;, + -0.255331;0.610630;-0.749625;, + -0.255331;0.610630;-0.749625;, + 0.000000;0.657542;-0.753418;, + 0.000000;0.657542;-0.753418;, + -0.000100;0.382250;-0.924059;, + -0.000100;0.382250;-0.924059;, + 0.000000;0.058903;-0.998264;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.999885;0.015182;0.000000;, + -0.999885;0.015182;0.000000;, + -0.999956;-0.009391;0.000000;, + -0.999956;-0.009391;0.000000;, + -0.186216;0.982509;0.000000;, + 0.000000;1.000000;0.000000;, + -0.817769;0.575546;0.000000;, + -0.817769;0.575546;0.000000;, + -0.164920;-0.986307;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.808550;-0.588427;0.000000;, + -0.808550;-0.588427;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.793192;0.608972;, + 0.000000;0.793192;0.608972;, + 0.000000;0.838762;-0.544498;, + 0.000000;0.838762;-0.544498;, + -0.486044;-0.714149;0.503739;, + -0.486044;-0.714149;0.503739;, + -0.486044;-0.714149;0.503739;, + -0.729011;0.129146;0.672209;, + -0.729011;0.129146;0.672209;, + -0.729011;0.129146;0.672209;, + -0.535202;-0.323949;0.780138;, + -0.535202;-0.323949;0.780138;, + -0.535202;-0.323949;0.780138;, + 0.000000;-0.862942;0.505302;, + 0.000000;-0.862942;0.505302;, + 0.000000;0.177449;0.984130;, + 0.000000;0.177449;0.984130;, + 0.000000;-0.483412;0.875393;, + 0.000000;-0.483412;0.875393;, + 0.486044;-0.714149;0.503739;, + 0.486044;-0.714149;0.503739;, + 0.486044;-0.714149;0.503739;, + 0.729011;0.129146;0.672209;, + 0.729011;0.129146;0.672209;, + 0.729011;0.129146;0.672209;, + 0.535202;-0.323949;0.780138;, + 0.535202;-0.323949;0.780138;, + 0.535202;-0.323949;0.780138;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.481363;0.876521;, + 0.000000;-0.481363;0.876521;, + -0.704085;-0.354065;0.615550;, + -0.704085;-0.354065;0.615550;, + -0.704085;-0.354065;0.615550;, + -0.683829;0.118010;0.720036;, + -0.683829;0.118010;0.720036;, + 0.000000;0.104270;0.994549;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.481363;0.876521;, + 0.000000;-0.481363;0.876521;, + 0.683829;0.118010;0.720036;, + 0.683829;0.118010;0.720036;, + 0.704085;-0.354065;0.615550;, + 0.704085;-0.354065;0.615550;, + 0.704085;-0.354065;0.615550;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -0.671803;0.000000;0.740730;, + -0.671803;0.000000;0.740730;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.671803;0.000000;0.740730;, + 0.671803;0.000000;0.740730;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.575435;0.817848;, + 0.000000;-0.575435;0.817848;, + 0.000000;-0.304659;0.952461;, + -0.992902;-0.118932;0.000000;, + 0.000000;-0.912569;0.408924;, + 0.000000;-0.912569;0.408924;, + 0.000000;-0.304659;0.952461;, + 0.996514;-0.083420;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.575435;0.817848;, + 0.000000;-0.575435;0.817848;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + -0.712713;-0.627305;0.313893;, + -0.712713;-0.627305;0.313893;, + -0.712713;-0.627305;0.313893;, + 0.000000;-0.861394;0.507938;, + 0.000000;-0.861394;0.507938;, + -0.995295;-0.096836;-0.003218;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + -0.999860;0.000000;-0.016753;, + -0.006548;0.000000;0.999979;, + 0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.006548;0.000000;0.999979;, + -0.999860;0.000000;-0.016753;, + -1.000000;0.000000;0.000000;, + 0.000000;0.175892;0.984409;, + -1.000000;0.000000;0.000000;, + 0.000000;0.821703;0.569915;, + 0.000000;0.821703;0.569915;, + 0.000000;-0.010682;0.999943;, + 0.000000;0.821703;0.569915;, + 0.000000;0.821703;0.569915;, + 1.000000;0.000000;0.000000;, + 0.000000;0.175892;0.984409;, + 1.000000;0.000000;0.000000;, + 0.000000;0.821703;0.569915;, + 0.000000;0.821703;0.569915;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.228734;0.973489;, + -0.623102;0.286079;0.727944;, + 0.000000;-1.000000;0.000000;, + -0.623102;0.286079;0.727944;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.964942;0.262464;, + -0.999551;-0.028922;-0.007867;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.964942;0.262464;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.855810;0.517291;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.491279;0.871002;, + 0.000000;-0.494957;-0.868917;, + 0.000000;-0.494957;-0.868917;, + -0.414336;-0.420954;-0.806922;, + -0.414336;-0.420954;-0.806922;, + -0.414336;-0.420954;-0.806922;, + -0.414336;-0.420954;-0.806922;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.225248;-0.235329;0.945454;, + -0.237889;-0.660874;0.711797;, + -0.237889;-0.660874;0.711797;, + -0.694911;-0.059586;0.716623;, + -0.694911;-0.059586;0.716623;, + -0.724776;-0.636464;0.263843;, + -0.724776;-0.636464;0.263843;, + -0.724776;-0.636464;0.263843;, + -0.724776;-0.636464;0.263843;, + 0.000000;0.028439;0.999596;, + -0.656366;-0.210294;0.724542;, + -0.656366;-0.210294;0.724542;, + -0.660218;0.043171;0.749833;, + -0.660218;0.043171;0.749833;, + 0.000000;-0.855810;0.517291;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.855810;0.517291;, + 0.000000;-0.491279;0.871002;, + 0.000000;-0.491279;0.871002;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.694911;-0.059586;0.716623;, + 0.694911;-0.059586;0.716623;, + 0.724776;-0.636464;0.263843;, + 0.724776;-0.636464;0.263843;, + 0.724776;-0.636464;0.263843;, + 0.724776;-0.636464;0.263843;, + 0.225248;-0.235329;0.945454;, + 0.237889;-0.660874;0.711797;, + 0.237889;-0.660874;0.711797;, + -0.181527;-0.897955;0.400904;, + -0.181527;-0.897955;0.400904;, + -0.181527;-0.897955;0.400904;, + -0.388340;-0.313507;0.866548;, + -0.388340;-0.313507;0.866548;, + -0.388340;-0.313507;0.866548;, + -0.388340;-0.313507;0.866548;, + -0.388341;0.313505;0.866548;, + -0.388341;0.313505;0.866548;, + -0.388341;0.313505;0.866548;, + -0.388341;0.313505;0.866548;, + -0.181529;0.897954;0.400905;, + -0.181529;0.897954;0.400905;, + -0.181529;0.897954;0.400905;, + 0.007275;0.000000;0.999974;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;-0.016753;, + 0.007275;0.000000;0.999974;, + -0.999860;0.000000;-0.016753;, + 0.000000;-1.000000;0.000000;, + 0.999860;0.000000;0.016753;, + 0.999860;0.000000;0.016753;, + -0.999860;0.000000;-0.016753;, + -0.999860;0.000000;-0.016753;, + 0.999860;0.000000;0.016753;, + -0.006548;0.000000;0.999979;, + 0.999860;0.000000;0.016753;, + -0.006548;0.000000;0.999979;, + -0.999860;0.000000;-0.016753;, + -0.006548;0.000000;0.999979;, + -0.006548;0.000000;0.999979;, + -0.999860;0.000000;-0.016753;, + 0.368706;-0.354448;0.859315;, + 0.368706;-0.354448;0.859315;, + 0.368706;-0.354448;0.859315;, + 0.368706;-0.354448;0.859315;, + 0.155472;-0.914282;0.374054;, + -0.000000;-0.300369;0.953823;, + -0.000000;-0.300369;0.953823;, + -0.000000;-0.300369;0.953823;, + -0.000000;-0.300369;0.953823;, + 0.000000;-0.929961;0.367659;, + 0.000000;-0.929961;0.367659;, + -0.000000;-0.886848;0.462062;, + -0.000000;-0.886848;0.462062;, + 0.368706;0.354448;0.859315;, + 0.368706;0.354448;0.859315;, + 0.368706;0.354448;0.859315;, + 0.155472;0.914282;0.374054;, + -0.000000;0.300369;0.953823;, + -0.000000;0.300369;0.953823;, + -0.000000;0.886848;0.462062;, + -0.000000;0.886848;0.462062;, + -0.000000;0.929961;0.367659;, + -0.000000;0.929961;0.367659;, + -0.000000;0.300369;0.953823;, + -0.000000;0.300369;0.953823;, + -0.008294;0.000000;0.999966;, + -0.952657;0.000000;0.304046;, + -0.952657;0.000000;0.304046;, + -0.897253;-0.281640;0.340023;, + -0.897253;-0.281640;0.340023;, + -0.428060;-0.799374;0.421624;, + -0.428060;-0.799374;0.421624;, + -0.428060;-0.799374;0.421624;, + -0.428060;-0.799374;0.421624;, + -0.410415;-0.110414;0.905189;, + -0.410415;-0.110414;0.905189;, + -0.458637;0.000000;0.888624;, + -0.458637;0.000000;0.888624;, + 0.418146;-0.801329;0.427815;, + 0.418146;-0.801329;0.427815;, + 0.418146;-0.801329;0.427815;, + 0.421913;-0.784056;0.455242;, + 0.421913;-0.784056;0.455242;, + 0.421913;-0.784056;0.455242;, + 0.000000;-0.000000;1.000000;, + 0.115463;-0.249286;0.961522;, + 0.115463;-0.249286;0.961522;, + -0.179157;-0.288632;0.940529;, + -0.179157;-0.288632;0.940529;, + 0.000000;0.000000;1.000000;, + 0.191832;-0.385043;0.902742;, + 0.000000;-0.000000;1.000000;, + 0.292367;-0.866429;0.404750;, + 0.292367;-0.866429;0.404750;, + 0.292367;-0.866429;0.404750;, + 0.830569;-0.387539;0.399961;, + 0.830569;-0.387539;0.399961;, + 0.830569;-0.387539;0.399961;, + 0.830569;-0.387539;0.399961;, + 0.000000;0.000000;1.000000;, + 0.109902;-0.344862;0.932197;, + 0.109902;-0.344862;0.932197;, + 0.945889;0.000000;0.324489;, + 0.945889;0.000000;0.324489;, + 0.439396;0.000000;0.898293;, + 0.439396;0.000000;0.898293;, + 0.442680;-0.198092;0.874525;, + 0.442680;-0.198092;0.874525;, + 0.000000;0.445625;0.895220;, + 0.000000;0.797864;0.602838;, + 0.000000;0.000000;-1.000000;, + -0.410381;0.364278;-0.835996;, + -0.410381;0.364278;-0.835996;, + -0.410381;0.364278;-0.835996;, + -0.410381;0.364278;-0.835996;, + 0.000000;0.435777;-0.900055;, + 0.000000;0.435777;-0.900055;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + -0.222802;0.267250;0.937516;, + -0.694989;0.067591;0.715836;, + -0.694989;0.067591;0.715836;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.656242;0.365940;0.659875;, + 0.000000;0.445625;0.895220;, + 0.000000;0.445625;0.895220;, + 0.000000;0.797864;0.602838;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.797864;0.602838;, + 0.000000;0.000000;-1.000000;, + -0.598854;-0.729241;-0.331031;, + -0.598854;-0.729241;-0.331031;, + -0.598854;-0.729241;-0.331031;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-0.948481;0.316834;, + 1.000000;0.000000;0.000000;, + -0.294926;-0.896305;0.331144;, + -0.294926;-0.896305;0.331144;, + -0.458630;0.558096;-0.691511;, + -0.458630;0.558096;-0.691511;, + 0.000000;0.803358;-0.595497;, + -0.920337;-0.258232;-0.293762;, + -0.843584;0.257465;-0.471252;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.999619;0.027602;, + -0.912505;0.010391;-0.408934;, + -0.912505;0.010391;-0.408934;, + -0.665236;0.018966;-0.746392;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.694990;0.067591;0.715836;, + 0.694990;0.067591;0.715836;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.222802;0.267250;0.937516;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;-0.016753;, + 0.006548;0.000000;-0.999979;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;0.016753;, + 0.006548;0.000000;-0.999979;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;0.016753;, + -0.999860;0.000000;-0.016754;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.006548;0.000000;0.999979;, + -0.999860;0.000000;-0.016753;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;0.016753;, + -0.006548;0.000000;0.999979;, + 0.999860;0.000000;0.016753;, + -0.006548;0.000000;0.999979;, + -0.999860;0.000000;-0.016753;, + -0.006548;0.000000;0.999979;, + 0.006548;0.000000;-0.999979;, + 0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + 0.999860;0.000000;0.016753;, + -0.006548;0.000000;0.999979;, + -0.006548;0.000000;0.999979;, + -0.999860;0.000000;-0.016753;, + -0.999860;0.000000;-0.016753;, + 0.006548;0.000000;-0.999979;, + 0.000000;-1.000000;0.000000;, + -0.831040;0.403243;0.383102;, + -0.831040;0.403243;0.383102;, + -0.831040;0.403243;0.383102;, + -0.831040;0.403243;0.383102;, + -0.282244;0.875709;0.391756;, + -0.282244;0.875709;0.391756;, + -0.282244;0.875709;0.391756;, + -0.457151;0.212943;0.863521;, + -0.457151;0.212943;0.863521;, + 0.000000;0.933082;0.359664;, + 0.000000;0.933082;0.359664;, + 0.000000;0.405468;0.914109;, + 0.000000;0.405468;0.914109;, + -0.109882;0.357779;0.927319;, + -0.109882;0.357779;0.927319;, + 0.349235;0.855784;0.381665;, + 0.349235;0.855784;0.381665;, + 0.349235;0.855784;0.381665;, + 0.349235;0.855784;0.381665;, + 0.859819;0.357289;0.364767;, + 0.859819;0.357289;0.364767;, + 0.859819;0.357289;0.364767;, + 0.142369;0.355966;0.923590;, + 0.142369;0.355966;0.923590;, + 0.486422;0.202974;0.849820;, + 0.486422;0.202974;0.849820;, + -0.231731;0.696564;0.679043;, + -0.231731;0.696564;0.679043;, + -0.718709;0.648693;0.250309;, + -0.718709;0.648693;0.250309;, + -0.718709;0.648693;0.250309;, + -0.718709;0.648693;0.250309;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + -0.919279;0.393601;-0.001941;, + -0.919279;0.393601;-0.001941;, + 0.000000;-0.834468;0.551056;, + -1.000000;0.000000;0.000000;, + -0.370322;0.928840;-0.010859;, + 0.000000;0.999861;-0.016680;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + -0.999885;0.015182;0.000000;, + -0.999885;0.015182;0.000000;, + -0.999956;-0.009391;0.000000;, + -0.999956;-0.009391;0.000000;, + -0.186216;0.982509;0.000000;, + -0.817769;0.575546;0.000000;, + -0.817769;0.575546;0.000000;, + -0.164920;-0.986307;0.000000;, + -0.808550;-0.588427;0.000000;, + -0.808550;-0.588427;0.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.999519;-0.012421;0.028413;, + 0.000000;-0.975913;0.218160;, + 0.718710;0.648693;0.250309;, + 0.718710;0.648693;0.250309;, + 0.718710;0.648693;0.250309;, + 0.718710;0.648693;0.250309;, + 0.231732;0.696564;0.679043;, + 0.231732;0.696564;0.679043;, + 0.000000;-0.249931;0.968264;, + -0.449264;-0.278514;0.848877;, + -0.996793;-0.079877;-0.004828;, + -0.879287;-0.284211;0.382202;, + 0.000000;-0.249931;0.968264;, + -0.999551;-0.028922;-0.007867;, + 0.000000;0.607263;0.794501;, + 0.000000;0.607263;0.794501;, + -0.920795;-0.364979;-0.137577;, + -0.920795;-0.364979;-0.137577;, + -0.924846;-0.329505;0.189965;, + -0.924846;-0.329505;0.189965;, + -0.924846;-0.329505;0.189965;, + -0.868861;-0.198793;-0.453389;, + -0.868861;-0.198793;-0.453389;, + -0.374350;-0.888608;-0.265025;, + -0.374350;-0.888608;-0.265025;, + 0.000000;-0.964405;-0.264430;, + 0.000000;-0.869582;0.493788;, + 0.000000;-0.869582;0.493788;, + -0.379211;-0.803330;0.459195;, + -0.379211;-0.803330;0.459195;, + -0.379211;-0.803330;0.459195;, + -1.000000;0.000000;0.000000;, + -0.910502;0.394198;0.124877;, + -0.918267;0.364101;-0.155619;, + -0.918267;0.364101;-0.155619;, + -0.852588;-0.139808;0.503535;, + -0.852588;-0.139808;0.503535;, + -0.881297;0.207501;0.424568;, + -0.881297;0.207501;0.424568;, + -0.867287;0.166714;-0.469062;, + -0.867287;0.166714;-0.469062;, + 0.000000;-0.265726;0.964049;, + -0.369966;-0.247588;0.895447;, + -0.369966;-0.247588;0.895447;, + 0.000000;0.441670;0.897178;, + 0.000000;0.441670;0.897178;, + -0.413389;0.401188;0.817410;, + -0.413389;0.401188;0.817410;, + -0.413389;0.401188;0.817410;, + -0.413389;0.401188;0.817410;, + 0.000000;0.946708;0.322092;, + -0.345924;0.891018;0.293977;, + -0.345924;0.891018;0.293977;, + 0.000000;0.944576;-0.328294;, + -0.363628;0.875934;-0.317041;, + -0.363628;0.875934;-0.317041;, + -0.892669;-0.416427;0.172425;, + -0.892669;-0.416427;0.172425;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.999666;0.025839;, + -1.000000;0.000000;0.000000;, + -0.365213;0.930924;0.000867;, + -0.916507;0.400018;0.000880;, + -0.916507;0.400018;0.000880;, + -0.916507;-0.400018;0.000881;, + -0.916507;-0.400018;0.000881;, + -0.365213;-0.930924;0.000867;, + -0.747129;-0.554595;0.366363;, + -0.747129;-0.554595;0.366363;, + -0.747129;-0.554595;0.366363;, + -0.947248;0.154288;0.280921;, + -0.947248;0.154288;0.280921;, + -0.947248;0.154288;0.280921;, + -0.196577;-0.789407;0.581544;, + -0.196577;-0.789407;0.581544;, + -0.540165;0.139016;0.829998;, + -0.313397;-0.205419;0.927138;, + -0.360386;0.905749;0.223026;, + -0.550087;0.653417;0.520048;, + 0.000000;-0.776534;0.630075;, + 0.000000;-0.776534;0.630075;, + 0.000000;0.973368;0.229249;, + 0.000000;-0.206011;0.978550;, + 0.000000;-0.694243;0.719740;, + -0.999519;-0.012421;0.028413;, + -0.999519;-0.012421;0.028413;, + 0.000000;-0.182834;0.983144;, + 0.000000;-0.694243;0.719740;, + -0.297687;0.906393;-0.299723;, + -0.297687;0.906393;-0.299723;, + 0.000000;0.949568;-0.313562;, + -0.888768;0.435110;-0.144120;, + -0.888768;0.435110;-0.144120;, + 0.000000;-0.629060;0.777357;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.629060;0.777357;, + -0.253225;-0.608206;0.752305;, + -0.253225;-0.608206;0.752305;, + -0.253225;-0.608206;0.752305;, + -0.253225;-0.608206;0.752305;, + -0.346801;-0.205807;0.915080;, + -0.346801;-0.205807;0.915080;, + 0.000000;-0.432176;0.901789;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.143364;0.989670;, + 0.000000;-0.827784;0.561046;, + -0.867484;-0.312547;0.387021;, + -0.867484;-0.312547;0.387021;, + -0.867484;-0.312547;0.387021;, + -0.909236;-0.093398;0.405669;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.999215;0.039615;, + -1.000000;0.000000;0.000000;, + -0.993070;0.000000;0.117523;, + 0.000000;-0.976749;0.214388;, + -0.515284;-0.506815;0.691102;, + -0.515284;-0.506815;0.691102;, + -0.515284;-0.506815;0.691102;, + -0.523532;0.520184;0.674777;, + -0.523532;0.520184;0.674777;, + -0.523532;0.520184;0.674777;, + -0.993070;0.000000;0.117523;, + 0.000000;0.986719;0.162438;, + 0.000000;-0.626742;0.779227;, + 0.000000;-0.626742;0.779227;, + 0.000000;0.647133;0.762377;, + 0.000000;0.647133;0.762377;, + -0.356854;0.918943;0.167923;, + -0.264647;0.688916;0.674802;, + -0.264647;0.688916;0.674802;, + 0.000000;0.610148;0.792287;, + 0.000000;0.610148;0.792287;, + 0.000000;0.991672;0.128792;, + -0.903543;0.390832;0.175672;, + -0.903543;0.390832;0.175672;, + -0.505677;0.216655;0.835075;, + -0.505677;0.216655;0.835075;, + -0.505677;0.216655;0.835075;, + -0.903542;-0.390835;0.175672;, + -0.903542;-0.390835;0.175672;, + -0.505675;-0.216658;0.835076;, + -0.505675;-0.216658;0.835076;, + -0.505675;-0.216658;0.835076;, + -0.356852;-0.918945;0.167922;, + 0.000000;-0.991672;0.128791;, + 0.000000;-0.610149;0.792287;, + 0.000000;-0.610149;0.792287;, + -0.264644;-0.688919;0.674800;, + -0.264644;-0.688919;0.674800;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.493245;0.869891;, + 0.000000;0.493245;0.869891;, + -0.415843;0.444085;0.793639;, + -0.415843;0.444085;0.793639;, + -0.415843;0.444085;0.793639;, + -0.415843;0.444085;0.793639;, + -0.342656;0.907349;0.243524;, + -0.342656;0.907349;0.243524;, + 0.000000;0.963882;0.266329;, + -0.908555;0.404498;0.104448;, + -0.908555;0.404498;0.104448;, + -0.882298;0.226639;0.412534;, + 1.000000;-0.000000;-0.000000;, + -0.689334;0.531821;-0.491919;, + -0.689334;0.531821;-0.491919;, + -0.689334;0.531821;-0.491919;, + -0.697330;-0.000000;-0.716750;, + -0.697330;-0.000000;-0.716750;, + -0.689334;-0.531822;-0.491919;, + -0.689334;-0.531822;-0.491919;, + -0.689334;-0.531822;-0.491919;, + -0.682700;-0.730699;0.000000;, + -0.682700;-0.730699;0.000000;, + -1.000000;-0.000000;-0.000000;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + 0.689334;0.531821;-0.491919;, + 0.689334;0.531821;-0.491919;, + 0.689334;0.531821;-0.491919;, + 0.697330;-0.000000;-0.716750;, + 0.697330;-0.000000;-0.716750;, + 0.689334;-0.531822;-0.491919;, + 0.689334;-0.531822;-0.491919;, + 0.689334;-0.531822;-0.491919;, + 0.682700;-0.730699;0.000000;, + 0.682700;-0.730699;0.000000;, + -0.682700;0.730699;0.000000;, + -0.682700;0.730699;0.000000;, + 0.000000;1.000000;0.000000;, + 0.682700;0.730699;0.000000;, + 0.682700;0.730699;0.000000;, + -0.689334;0.531821;0.491919;, + -0.689334;0.531821;0.491919;, + -0.689334;0.531821;0.491919;, + -0.697331;-0.000000;0.716750;, + -0.697331;-0.000000;0.716750;, + -0.689334;-0.531822;0.491919;, + -0.689334;-0.531822;0.491919;, + -0.689334;-0.531822;0.491919;, + 0.000000;-0.000000;1.000000;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.689334;0.531821;0.491919;, + 0.689334;0.531821;0.491919;, + 0.689334;0.531821;0.491919;, + 0.697331;-0.000000;0.716750;, + 0.697331;-0.000000;0.716750;, + 0.689334;-0.531822;0.491919;, + 0.689334;-0.531822;0.491919;, + 0.689334;-0.531822;0.491919;, + 0.000000;-0.976748;0.214391;, + 0.000000;0.986719;0.162435;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.365213;0.930924;0.000867;, + -0.916507;0.400018;0.000881;, + -0.916507;0.400018;0.000881;, + -0.916507;-0.400018;0.000881;, + -0.916507;-0.400018;0.000881;, + -0.365213;-0.930924;0.000867;, + -0.993070;0.000000;0.117523;, + 0.000000;-0.976748;0.214391;, + -0.515283;-0.506814;0.691102;, + -0.515283;-0.506814;0.691102;, + -0.515283;-0.506814;0.691102;, + -0.523532;0.520184;0.674776;, + -0.523532;0.520184;0.674776;, + -0.523532;0.520184;0.674776;, + -0.993070;0.000000;0.117523;, + 0.000000;0.986719;0.162435;, + 0.000000;-0.626741;0.779227;, + 0.000000;-0.626741;0.779227;, + 0.000000;0.647134;0.762376;, + 0.000000;0.647134;0.762376;, + -0.356851;0.918944;0.167924;, + -0.264643;0.688917;0.674802;, + -0.264643;0.688917;0.674802;, + 0.000000;0.610147;0.792288;, + 0.000000;0.610147;0.792288;, + 0.000000;0.991672;0.128793;, + -0.903541;0.390835;0.175673;, + -0.903541;0.390835;0.175673;, + -0.505675;0.216658;0.835076;, + -0.505675;0.216658;0.835076;, + -0.505675;0.216658;0.835076;, + -0.903543;-0.390832;0.175672;, + -0.903543;-0.390832;0.175672;, + -0.505677;-0.216655;0.835075;, + -0.505677;-0.216655;0.835075;, + -0.505677;-0.216655;0.835075;, + -0.356854;-0.918943;0.167923;, + 0.000000;-0.991672;0.128792;, + 0.000000;-0.610148;0.792287;, + 0.000000;-0.610148;0.792287;, + -0.264647;-0.688916;0.674802;, + -0.264647;-0.688916;0.674802;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.414336;-0.420954;-0.806922;, + 0.414336;-0.420954;-0.806922;, + 0.414336;-0.420954;-0.806922;, + 0.414336;-0.420954;-0.806922;, + 0.410381;0.364278;-0.835996;, + 0.410381;0.364278;-0.835996;, + 0.410381;0.364278;-0.835996;, + 0.410381;0.364278;-0.835996;, + 0.920795;-0.364979;-0.137577;, + 0.920795;-0.364979;-0.137577;, + 0.924846;-0.329505;0.189965;, + 0.924846;-0.329505;0.189965;, + 0.924846;-0.329505;0.189965;, + 0.868862;-0.198793;-0.453388;, + 0.868862;-0.198793;-0.453388;, + 0.374350;-0.888608;-0.265025;, + 0.374350;-0.888608;-0.265025;, + 0.379211;-0.803330;0.459195;, + 0.379211;-0.803330;0.459195;, + 0.379211;-0.803330;0.459195;, + 0.910502;0.394198;0.124877;, + 0.918267;0.364101;-0.155618;, + 0.918267;0.364101;-0.155618;, + 0.852588;-0.139808;0.503534;, + 0.852588;-0.139808;0.503534;, + 0.881298;0.207501;0.424568;, + 0.881298;0.207501;0.424568;, + 0.867287;0.166715;-0.469062;, + 0.867287;0.166715;-0.469062;, + 0.369966;-0.247588;0.895447;, + 0.369966;-0.247588;0.895447;, + 0.413389;0.401187;0.817410;, + 0.413389;0.401187;0.817410;, + 0.413389;0.401187;0.817410;, + 0.413389;0.401187;0.817410;, + 0.345924;0.891018;0.293977;, + 0.345924;0.891018;0.293977;, + 0.363628;0.875934;-0.317041;, + 0.363628;0.875934;-0.317041;, + 0.983435;-0.159487;0.086139;, + 0.000000;0.520825;0.853663;, + 0.000000;0.520825;0.853663;, + 0.000000;0.999161;-0.040963;, + 0.983435;-0.159487;0.086139;, + 0.000000;0.999161;-0.040963;, + 0.000000;0.699533;-0.714601;, + 0.653421;-0.748902;-0.110393;, + 0.653421;-0.748902;-0.110393;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.332036;0.943267;, + 0.000000;-0.332036;0.943267;, + 0.000000;0.098302;0.995157;, + 1.000000;0.000000;0.000000;, + 0.000000;0.990031;-0.140848;, + 0.000000;0.990031;-0.140848;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.098305;-0.995156;, + 0.000000;-0.699991;0.714152;, + 0.000000;-0.098305;-0.995156;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.832489;0.554042;, + 0.000000;-0.832489;0.554042;, + 0.000000;-0.008043;0.999968;, + 1.000000;0.000000;0.000000;, + 0.000000;0.511880;0.859057;, + 1.000000;0.000000;0.000000;, + 0.000000;0.525640;-0.850707;, + 0.000000;-0.987687;0.156440;, + 0.000000;0.525640;-0.850707;, + 1.000000;0.000000;0.000000;, + 0.000000;0.520825;0.853663;, + -0.983434;-0.159485;0.086147;, + 0.000000;0.520825;0.853663;, + 0.000000;0.999161;-0.040963;, + 0.000000;0.999161;-0.040963;, + -0.983434;-0.159485;0.086147;, + -0.653422;-0.748902;-0.110387;, + 0.000000;0.699533;-0.714601;, + -0.653422;-0.748902;-0.110387;, + -0.653422;-0.748902;-0.110387;, + -0.653422;-0.748902;-0.110387;, + 0.000000;0.236676;0.971589;, + 0.000000;0.236676;0.971589;, + 0.653421;-0.748902;-0.110393;, + 0.653421;-0.748902;-0.110393;, + 0.000000;-0.332036;0.943267;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.332036;0.943267;, + 0.000000;0.098302;0.995157;, + 0.000000;0.990031;-0.140848;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.990031;-0.140848;, + 0.000000;-0.098305;-0.995156;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.098305;-0.995156;, + 0.000000;-0.699991;0.714152;, + 0.000000;-0.832489;0.554042;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.832489;0.554042;, + 0.000000;-0.008043;0.999968;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.511880;0.859057;, + 0.000000;0.525640;-0.850707;, + -1.000000;0.000000;0.000000;, + 0.000000;0.525640;-0.850707;, + 0.000000;-0.987687;0.156440;, + 0.152110;-0.074173;-0.985576;, + 0.348514;0.937303;0.000000;, + 0.348514;0.937303;0.000000;, + -0.633860;0.773448;0.000000;, + 0.152110;-0.074173;-0.985576;, + -0.633860;0.773448;0.000000;, + -0.987527;0.157450;0.000000;, + 0.363340;-0.661392;-0.656159;, + 0.363340;-0.661392;-0.656159;, + 0.000000;0.000000;-1.000000;, + 0.956602;0.291397;0.000000;, + 0.956602;0.291397;0.000000;, + 0.731614;0.681719;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.702697;0.711489;0.000000;, + -0.702697;0.711489;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.731621;-0.681712;0.000000;, + 0.987428;-0.158070;0.000000;, + -0.731621;-0.681712;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.000000;-1.000000;, + 0.937513;-0.347951;0.000000;, + 0.937513;-0.347951;0.000000;, + 0.803579;0.595198;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.353851;0.935302;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.997828;-0.065872;0.000000;, + 0.713241;-0.700918;0.000000;, + -0.997828;-0.065872;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.348514;0.937303;0.000000;, + 0.152109;-0.074175;0.985576;, + 0.348514;0.937303;0.000000;, + -0.633860;0.773448;0.000000;, + -0.633860;0.773448;0.000000;, + 0.152109;-0.074175;0.985576;, + 0.363339;-0.661393;0.656158;, + -0.987527;0.157450;0.000000;, + 0.363339;-0.661393;0.656158;, + 0.363339;-0.661393;0.656158;, + 0.363339;-0.661393;0.656158;, + 0.622827;0.782360;0.000000;, + 0.622827;0.782360;0.000000;, + 0.363340;-0.661392;-0.656159;, + 0.363340;-0.661392;-0.656159;, + 0.956602;0.291397;0.000000;, + 0.000000;0.000000;1.000000;, + 0.956602;0.291397;0.000000;, + 0.731614;0.681719;0.000000;, + -0.702697;0.711489;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + -0.702697;0.711489;0.000000;, + -0.731621;-0.681712;0.000000;, + 0.000000;0.000000;1.000000;, + -0.731621;-0.681712;0.000000;, + 0.987428;-0.158070;0.000000;, + 0.937513;-0.347951;0.000000;, + 0.000000;0.000000;1.000000;, + 0.937513;-0.347951;0.000000;, + 0.803579;0.595198;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.353851;0.935302;0.000000;, + -0.997828;-0.065872;0.000000;, + 0.000000;0.000000;1.000000;, + -0.997828;-0.065872;0.000000;, + 0.713241;-0.700918;0.000000;, + 0.163134;-0.084068;-0.983016;, + 0.334945;0.942238;0.000000;, + 0.334945;0.942238;0.000000;, + -0.631267;0.775565;0.000000;, + 0.163134;-0.084068;-0.983016;, + -0.631267;0.775565;0.000000;, + -0.986099;0.166158;0.000000;, + 0.356869;-0.669712;-0.651253;, + 0.356869;-0.669712;-0.651253;, + 0.000000;0.000000;-1.000000;, + 0.953833;0.300339;0.000000;, + 0.953833;0.300339;0.000000;, + 0.712537;0.701634;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.682801;0.730605;0.000000;, + -0.682801;0.730605;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.712526;-0.701646;0.000000;, + 0.985989;-0.166808;0.000000;, + -0.712526;-0.701646;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.000000;-1.000000;, + 0.933289;-0.359126;0.000000;, + 0.933289;-0.359126;0.000000;, + 0.797086;0.603866;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.337034;0.941492;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.997575;-0.069594;0.000000;, + 0.693605;-0.720355;0.000000;, + -0.997575;-0.069594;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.334945;0.942238;0.000000;, + 0.163134;-0.084064;0.983016;, + 0.334945;0.942238;0.000000;, + -0.631267;0.775565;0.000000;, + -0.631267;0.775565;0.000000;, + 0.163134;-0.084064;0.983016;, + 0.356870;-0.669710;0.651254;, + -0.986099;0.166158;0.000000;, + 0.356870;-0.669710;0.651254;, + 0.356870;-0.669710;0.651254;, + 0.356870;-0.669710;0.651254;, + 0.601679;0.798738;0.000000;, + 0.601679;0.798738;0.000000;, + 0.356869;-0.669712;-0.651253;, + 0.356869;-0.669712;-0.651253;, + 0.953833;0.300339;0.000000;, + 0.000000;0.000000;1.000000;, + 0.953833;0.300339;0.000000;, + 0.712537;0.701634;0.000000;, + -0.682801;0.730605;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + -0.682801;0.730605;0.000000;, + -0.712526;-0.701646;0.000000;, + 0.000000;0.000000;1.000000;, + -0.712526;-0.701646;0.000000;, + 0.985989;-0.166808;0.000000;, + 0.933289;-0.359126;0.000000;, + 0.000000;0.000000;1.000000;, + 0.933289;-0.359126;0.000000;, + 0.797086;0.603866;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.337034;0.941492;0.000000;, + -0.997575;-0.069594;0.000000;, + 0.000000;0.000000;1.000000;, + -0.997575;-0.069594;0.000000;, + 0.693605;-0.720355;0.000000;, + 0.152109;-0.074174;-0.985576;, + 0.348514;0.937303;0.000000;, + 0.348514;0.937303;0.000000;, + -0.633860;0.773448;0.000000;, + 0.152109;-0.074174;-0.985576;, + -0.633860;0.773448;0.000000;, + -0.987527;0.157450;0.000000;, + 0.363340;-0.661393;-0.656159;, + 0.363340;-0.661393;-0.656159;, + 0.000000;0.000000;-1.000000;, + 0.956602;0.291397;0.000000;, + 0.956602;0.291397;0.000000;, + 0.731614;0.681719;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.702697;0.711489;0.000000;, + -0.702697;0.711489;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.731621;-0.681712;0.000000;, + 0.987428;-0.158070;0.000000;, + -0.731621;-0.681712;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.000000;-1.000000;, + 0.937513;-0.347951;0.000000;, + 0.937513;-0.347951;0.000000;, + 0.803579;0.595198;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.353851;0.935302;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.997828;-0.065872;0.000000;, + 0.713241;-0.700918;0.000000;, + -0.997828;-0.065872;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.348514;0.937303;0.000000;, + 0.152109;-0.074173;0.985577;, + 0.348514;0.937303;0.000000;, + -0.633860;0.773448;0.000000;, + -0.633860;0.773448;0.000000;, + 0.152109;-0.074173;0.985577;, + 0.363340;-0.661392;0.656159;, + -0.987527;0.157450;0.000000;, + 0.363340;-0.661392;0.656159;, + 0.363340;-0.661392;0.656159;, + 0.363340;-0.661392;0.656159;, + 0.622827;0.782360;0.000000;, + 0.622827;0.782360;0.000000;, + 0.363340;-0.661393;-0.656159;, + 0.363340;-0.661393;-0.656159;, + 0.956602;0.291397;0.000000;, + 0.000000;0.000000;1.000000;, + 0.956602;0.291397;0.000000;, + 0.731614;0.681719;0.000000;, + -0.702697;0.711489;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + -0.702697;0.711489;0.000000;, + -0.731621;-0.681712;0.000000;, + 0.000000;0.000000;1.000000;, + -0.731621;-0.681712;0.000000;, + 0.987428;-0.158070;0.000000;, + 0.937513;-0.347951;0.000000;, + 0.000000;0.000000;1.000000;, + 0.937513;-0.347951;0.000000;, + 0.803579;0.595198;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.353851;0.935302;0.000000;, + -0.997828;-0.065872;0.000000;, + 0.000000;0.000000;1.000000;, + -0.997828;-0.065872;0.000000;, + 0.713241;-0.700918;0.000000;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.732950;0.680283;, + 0.000000;0.732950;0.680283;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.732950;0.680283;, + 0.000000;-0.732950;0.680283;, + 0.000000;0.000000;1.000000;, + 0.000000;0.732950;0.680283;, + 0.000000;0.732950;0.680283;, + 0.000000;-0.732950;0.680283;, + 0.000000;-0.732950;0.680283;, + 0.000000;0.732950;0.680283;, + 0.000000;0.732950;0.680283;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.732950;0.680283;, + 0.000000;-0.732950;0.680283;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.000000;1.000000;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.000000;1.000000;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.000000;1.000000;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.225238;0.000000;-0.974304;, + 0.000000;-1.000000;0.000000;, + 0.225238;0.000000;-0.974304;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.225236;-0.000000;-0.974304;, + -0.225236;-0.000000;-0.974304;, + 0.000000;-1.000000;0.000000;, + -0.747100;0.000000;0.664711;, + 0.000000;-1.000000;0.000000;, + -0.747100;0.000000;0.664711;, + -0.747100;0.000000;0.664711;, + 0.000000;1.000000;0.000000;, + -0.747100;0.000000;0.664711;, + -1.000000;-0.000001;-0.000001;, + 0.000000;1.000000;0.000000;, + -1.000000;-0.000001;-0.000001;, + 0.000000;-1.000000;0.000000;, + -0.747099;-0.000001;-0.664712;, + -0.747099;-0.000001;-0.664712;, + 0.000000;-1.000000;0.000000;, + -0.747099;-0.000001;-0.664712;, + -0.747099;-0.000001;-0.664712;, + 0.000000;1.000000;0.000000;, + 0.747100;0.000000;0.664712;, + 0.747100;0.000000;0.664712;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.747100;0.000000;0.664712;, + 0.747100;0.000000;0.664712;, + 0.000000;1.000000;0.000000;, + 0.747100;0.000000;-0.664711;, + 0.000000;-1.000000;0.000000;, + 0.747100;0.000000;-0.664711;, + 0.747100;0.000000;-0.664711;, + 0.000000;1.000000;0.000000;, + 0.747100;0.000000;-0.664711;, + 0.000000;1.000000;0.000000;, + 0.225237;0.000000;0.974304;, + 0.225237;0.000000;0.974304;, + 0.000000;-1.000000;0.000000;, + -0.225237;0.000000;0.974304;, + 0.000000;-1.000000;0.000000;, + -0.225237;0.000000;0.974304;, + 0.000000;1.000000;0.000000;, + 0.008295;0.000000;-0.999966;, + -0.739674;0.429301;-0.518250;, + -0.739674;0.429301;-0.518250;, + -0.739674;0.429301;-0.518250;, + 0.003775;0.861001;-0.508589;, + 0.003775;0.861001;-0.508589;, + 0.003775;0.861001;-0.508589;, + -0.739674;-0.429301;-0.518250;, + -0.739674;-0.429301;-0.518250;, + -0.739674;-0.429301;-0.518250;, + 0.003775;-0.861001;-0.508589;, + 0.003775;-0.861001;-0.508589;, + 0.003775;-0.861001;-0.508589;, + 0.751445;-0.431738;-0.498932;, + 0.751445;-0.431738;-0.498932;, + 0.751445;-0.431738;-0.498932;, + 0.751445;0.431738;-0.498932;, + 0.751445;0.431738;-0.498932;, + 0.751445;0.431738;-0.498932;, + -0.003774;0.861001;0.508589;, + -0.003774;0.861001;0.508589;, + -0.003774;0.861001;0.508589;, + -0.751445;0.431738;0.498932;, + -0.751445;0.431738;0.498932;, + -0.751445;0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.003774;-0.861001;0.508589;, + -0.003774;-0.861001;0.508589;, + -0.003774;-0.861001;0.508589;, + 0.739674;-0.429301;0.518250;, + 0.739674;-0.429301;0.518250;, + 0.739674;-0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + -0.008295;0.000000;0.999966;, + 0.008295;0.000000;-0.999966;, + -0.739674;0.429300;-0.518250;, + -0.739674;0.429300;-0.518250;, + -0.739674;0.429300;-0.518250;, + 0.003774;0.861001;-0.508589;, + 0.003774;0.861001;-0.508589;, + 0.003774;0.861001;-0.508589;, + -0.739674;-0.429300;-0.518250;, + -0.739674;-0.429300;-0.518250;, + -0.739674;-0.429300;-0.518250;, + 0.003774;-0.861001;-0.508589;, + 0.003774;-0.861001;-0.508589;, + 0.003774;-0.861001;-0.508589;, + 0.751445;-0.431739;-0.498932;, + 0.751445;-0.431739;-0.498932;, + 0.751445;-0.431739;-0.498932;, + 0.751445;0.431739;-0.498932;, + 0.751445;0.431739;-0.498932;, + 0.751445;0.431739;-0.498932;, + -0.003775;0.861001;0.508589;, + -0.003775;0.861001;0.508589;, + -0.003775;0.861001;0.508589;, + -0.751444;0.431738;0.498932;, + -0.751444;0.431738;0.498932;, + -0.751444;0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.751445;-0.431738;0.498932;, + -0.003775;-0.861001;0.508589;, + -0.003775;-0.861001;0.508589;, + -0.003775;-0.861001;0.508589;, + 0.739674;-0.429301;0.518250;, + 0.739674;-0.429301;0.518250;, + 0.739674;-0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + 0.739674;0.429301;0.518250;, + -0.008294;0.000000;0.999966;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.722410;-0.691465;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.999519;-0.012421;0.028413;, + 0.000000;0.812111;-0.583502;, + 0.000000;1.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + 0.000000;-1.000000;0.000000;, + -1.000000;-0.000000;-0.000000;, + -1.000000;0.000000;0.000000;, + 0.320176;0.909831;-0.263999;, + 0.459174;0.888346;0.000000;, + 0.320176;0.909831;0.263999;, + 1.000000;0.000000;0.000000;, + -0.997088;-0.076255;0.000000;, + -0.996327;0.038419;0.076524;, + 0.000000;-0.897668;-0.440673;, + 0.000000;-1.000000;0.000000;, + 0.000000;-0.250841;0.968028;, + 0.000000;0.978200;-0.207665;, + -0.998651;0.051906;-0.001130;, + 0.000000;-0.963715;-0.266933;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.857493;-0.514495;, + 0.000000;0.862416;-0.506201;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.963715;-0.266933;, + 0.000000;0.862416;-0.506201;, + 0.000000;-0.857493;-0.514495;, + 0.000000;-0.963715;-0.266933;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.857493;-0.514495;, + -1.000000;0.000000;0.000000;, + 0.000000;0.862416;-0.506201;, + 0.568003;-0.528656;-0.630789;, + 0.568003;-0.528656;-0.630789;, + 0.631424;-0.350513;-0.691696;, + 0.631424;-0.350513;-0.691696;, + 0.465679;-0.689984;-0.554135;, + 0.465679;-0.689984;-0.554135;, + 0.465679;-0.689984;-0.554135;, + 0.609822;0.175716;-0.772814;, + 0.609822;0.175716;-0.772814;, + 0.609822;0.175716;-0.772814;, + 0.609822;0.175716;-0.772814;, + 0.636200;0.063603;-0.768898;, + 0.636200;0.063603;-0.768898;, + 0.636200;0.063603;-0.768898;, + 0.636200;0.063603;-0.768898;, + 0.923416;-0.078017;-0.375788;, + 0.923416;-0.078017;-0.375788;, + 0.377631;-0.156099;-0.912704;, + 0.377631;-0.156099;-0.912704;, + 0.377631;-0.156099;-0.912704;, + 0.884679;-0.172172;-0.433244;, + 0.884679;-0.172172;-0.433244;, + 0.901160;0.122972;-0.415677;, + 0.901160;0.122972;-0.415677;, + 0.266114;-0.355012;-0.896186;, + 0.266114;-0.355012;-0.896186;, + 0.203413;0.300293;-0.931905;, + 0.214097;0.668101;-0.712603;, + 0.214097;0.668101;-0.712603;, + 0.923596;0.269341;-0.272812;, + 0.490059;0.496470;-0.716492;, + 0.490059;0.496470;-0.716492;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + 0.000000;0.773957;-0.633238;, + 0.000000;-0.897668;-0.440673;, + 0.000000;0.773957;-0.633238;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.964991;-0.262282;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + 0.000000;0.773957;-0.633238;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.964991;-0.262282;, + -1.000000;0.000000;0.000000;, + 0.000000;0.773957;-0.633238;, + 0.000000;-0.897668;-0.440673;, + 0.000000;-0.897668;-0.440673;, + 0.000000;0.773957;-0.633238;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.964991;-0.262282;, + -1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + -0.001183;-0.449065;-0.893498;, + -0.001183;-0.449065;-0.893498;, + 0.000000;-0.450375;-0.892840;, + 0.000000;-0.450375;-0.892840;, + -1.000000;0.000000;0.000000;, + 0.001183;-0.449065;-0.893498;, + 0.001183;-0.449065;-0.893498;, + 0.783932;-0.598346;0.165629;, + 0.922670;-0.345728;-0.170740;, + 0.382376;-0.569938;0.727296;, + 0.000000;-0.378105;0.925763;, + 0.643705;-0.753560;-0.133384;, + 0.000000;0.000000;1.000000;, + 0.643705;-0.753560;-0.133384;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-0.184987;-0.982741;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.184987;-0.982741;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.659309;-0.751872;0.000000;, + 0.659309;-0.751872;0.000000;, + 0.000000;1.000000;0.000000;, + 0.991432;-0.130624;0.000000;, + 0.456239;0.854986;0.246667;, + 0.456239;0.854986;0.246667;, + 0.456239;0.854986;0.246667;, + 0.405203;0.686558;-0.603696;, + 0.405203;0.686558;-0.603696;, + 0.405203;0.686558;-0.603696;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.071029;-0.568445;-0.819650;, + 0.071029;-0.568445;-0.819650;, + 0.813177;-0.579468;-0.054409;, + 0.813177;-0.579468;-0.054409;, + 0.813177;-0.579468;-0.054409;, + 0.813177;-0.579468;-0.054409;, + 0.608486;-0.622828;-0.491763;, + 0.608486;-0.622828;-0.491763;, + 0.608486;-0.622828;-0.491763;, + 0.165797;-0.985639;-0.032041;, + 0.165797;-0.985639;-0.032041;, + 0.148332;-0.907977;-0.391886;, + 0.148332;-0.907977;-0.391886;, + 0.148332;-0.907977;-0.391886;, + 0.229863;-0.512566;-0.827308;, + 0.549758;-0.282120;-0.786241;, + 0.549758;-0.282120;-0.786241;, + 0.901537;-0.408133;-0.143730;, + 0.901537;-0.408133;-0.143730;, + 0.901537;-0.408133;-0.143730;, + 0.324502;-0.896254;-0.302369;, + 0.324502;-0.896254;-0.302369;, + 0.324502;-0.896254;-0.302369;, + 1.000000;0.000000;0.000000;, + 0.913099;-0.363269;-0.185167;, + 0.913099;-0.363269;-0.185167;, + 1.000000;0.000000;0.000000;, + 0.350617;-0.836690;-0.420734;, + 0.350617;-0.836690;-0.420734;, + 0.350617;-0.836690;-0.420734;, + 0.350617;-0.836690;-0.420734;, + -0.142002;-0.523952;-0.839827;, + -0.142002;-0.523952;-0.839827;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.999568;-0.029404;, + 0.000000;-0.999568;-0.029404;, + -0.477824;-0.715291;-0.509944;, + -0.477824;-0.715291;-0.509944;, + -0.477824;-0.715291;-0.509944;, + -0.477824;-0.715291;-0.509944;, + 0.093017;-0.036036;-0.995012;, + 0.845563;0.464159;-0.263779;, + 0.845563;0.464159;-0.263779;, + 0.845563;0.464159;-0.263779;, + 0.845563;0.464159;-0.263779;, + 0.695672;0.222611;-0.682997;, + 0.695672;0.222611;-0.682997;, + 0.232657;0.873824;-0.426968;, + 0.232657;0.873824;-0.426968;, + 0.194237;0.693443;-0.693836;, + 0.194237;0.693443;-0.693836;, + 0.264427;-0.221960;-0.938516;, + 1.000000;0.000000;0.000000;, + 0.719556;0.465442;-0.515366;, + 0.719556;0.465442;-0.515366;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.839393;0.476139;-0.262127;, + 0.839393;0.476139;-0.262127;, + 0.209199;0.856636;-0.471604;, + 0.924952;0.375115;0.061252;, + 0.682450;0.721378;0.117794;, + -0.152278;-0.112636;-0.981898;, + 0.000000;0.901820;-0.432111;, + -1.000000;0.000000;0.000000;, + 0.000000;0.901820;-0.432111;, + 0.000000;0.746324;-0.665583;, + -0.632618;0.043851;-0.773222;, + -0.839416;-0.217607;-0.498024;, + -0.173513;0.437151;-0.882492;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + 1.000000;0.000000;0.000000;, + 0.000000;0.978200;-0.207665;, + 0.000000;-0.897668;-0.440673;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.978200;-0.207665;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.657933;0.281340;-0.698550;, + 0.000000;-0.987330;-0.158678;, + 0.657933;0.281340;-0.698550;, + 0.000000;0.978200;-0.207665;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.352088;-0.935967;, + 0.000000;-0.987330;-0.158678;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.897668;-0.440673;, + -1.000000;0.000000;0.000000;, + 0.000000;0.978200;-0.207665;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + -0.657933;0.281340;-0.698550;, + 0.000000;-0.987330;-0.158678;, + -0.657933;0.281340;-0.698550;, + 0.000000;-0.371391;-0.928477;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.919145;-0.393919;, + 0.000000;-0.919145;-0.393919;, + 0.704085;-0.354065;-0.615550;, + 0.704085;-0.354065;-0.615550;, + 0.704085;-0.354065;-0.615550;, + 0.000000;-0.481363;-0.876521;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.481363;-0.876521;, + 0.000000;-0.371391;-0.928477;, + 0.000000;-0.919145;-0.393919;, + 0.000000;-0.919145;-0.393919;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.371391;-0.928477;, + 0.000000;-0.919145;-0.393919;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.919145;-0.393919;, + 0.000000;-0.481363;-0.876521;, + 0.000000;-0.481363;-0.876521;, + 1.000000;0.000000;0.000000;, + -0.704085;-0.354065;-0.615550;, + -0.704085;-0.354065;-0.615550;, + -0.704085;-0.354065;-0.615550;, + 0.000000;0.404553;-0.914514;, + 0.765120;0.576310;-0.287155;, + 0.345860;0.589303;-0.730139;, + 0.946660;0.322234;0.000000;, + 0.946660;0.322234;0.000000;, + 0.946660;0.322234;0.000000;, + 0.671803;0.000000;-0.740730;, + 0.000000;1.000000;0.000000;, + 0.671803;0.000000;-0.740730;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.262974;-0.511171;-0.818259;, + 0.262974;-0.511171;-0.818259;, + 0.262974;0.511173;-0.818258;, + 0.262974;0.511173;-0.818258;, + 0.000000;0.618986;-0.785402;, + 0.000000;0.618986;-0.785402;, + -0.815811;0.578319;0.000000;, + 0.815811;0.578319;0.000000;, + 0.000000;0.508835;-0.860864;, + 0.000000;0.508835;-0.860864;, + 0.000000;-0.508833;-0.860865;, + 0.000000;-0.508833;-0.860865;, + 0.000000;0.404553;-0.914514;, + -0.946660;0.322234;0.000000;, + -0.765120;0.576310;-0.287155;, + -0.345860;0.589303;-0.730139;, + -0.946660;0.322234;0.000000;, + -0.946660;0.322234;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + -0.262974;-0.511171;-0.818259;, + -0.262974;-0.511171;-0.818259;, + -0.262974;0.511173;-0.818258;, + -0.262974;0.511173;-0.818258;, + -0.671803;0.000000;-0.740730;, + -0.671803;0.000000;-0.740730;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + -0.002643;-0.988024;-0.154279;, + -0.002643;-0.988024;-0.154279;, + 0.000000;-0.196037;-0.980597;, + 0.992902;-0.118932;0.000000;, + 0.308346;0.914546;-0.261780;, + 0.308346;0.914546;-0.261780;, + 0.441536;0.897244;0.000000;, + 0.441536;0.897244;0.000000;, + 0.308346;0.914546;0.261780;, + 0.308346;0.914546;0.261780;, + 0.000000;-0.946157;-0.323708;, + 0.000000;-0.946157;-0.323708;, + 0.000000;-0.196037;-0.980597;, + -0.996514;-0.083420;0.000000;, + -0.320176;0.909831;-0.263999;, + -0.459174;0.888346;0.000000;, + -0.320176;0.909831;0.263999;, + -1.000000;0.000000;0.000000;, + 0.002643;-0.988024;-0.154279;, + 0.002643;-0.988024;-0.154279;, + -0.308346;0.914546;-0.261780;, + -0.308346;0.914546;-0.261780;, + -0.441536;0.897244;0.000000;, + -0.441536;0.897244;0.000000;, + -0.308346;0.914546;0.261780;, + -0.308346;0.914546;0.261780;, + 0.812034;-0.553973;0.183615;, + 0.946603;-0.281034;-0.157994;, + 0.000000;-0.378105;0.925763;, + 0.382376;-0.569938;0.727296;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.710283;-0.703916;, + 1.000000;0.000000;0.000000;, + 0.000000;0.946563;-0.322518;, + 0.000000;0.946563;-0.322518;, + 1.000000;0.000000;0.000000;, + 0.000000;0.555569;-0.831470;, + 0.000000;0.764153;-0.645035;, + 0.000000;0.764153;-0.645035;, + 0.000000;0.710283;-0.703916;, + 0.000000;0.555569;-0.831470;, + -1.000000;0.000000;0.000000;, + 0.000000;0.710283;-0.703916;, + -1.000000;0.000000;0.000000;, + 0.000000;0.946563;-0.322518;, + 0.000000;0.946563;-0.322518;, + -1.000000;0.000000;0.000000;, + 0.000000;0.555569;-0.831470;, + 0.542285;0.325571;-0.774552;, + 0.000000;-1.000000;0.000000;, + 0.542285;0.325571;-0.774552;, + 0.573119;0.023866;-0.819124;, + 0.573119;0.023866;-0.819124;, + 0.961193;0.164049;-0.221802;, + 0.961193;0.164049;-0.221802;, + 0.000000;0.216852;0.976204;, + 0.980187;0.000000;-0.198074;, + 0.980187;0.000000;-0.198074;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.928011;-0.372552;, + 0.915407;-0.402528;0.001330;, + 0.915407;-0.402528;0.001330;, + 0.362628;-0.931929;0.003080;, + 0.362628;-0.931929;0.003080;, + 0.932383;0.105681;0.345678;, + 0.932383;0.105681;0.345678;, + 0.939177;-0.277805;0.201919;, + 0.939177;-0.277805;0.201919;, + 0.939177;-0.277805;0.201919;, + 0.423043;-0.726679;0.541270;, + 0.423043;-0.726679;0.541270;, + 0.510845;0.042579;0.858618;, + 0.510845;0.042579;0.858618;, + 0.297759;0.272112;0.915038;, + 0.297759;0.272112;0.915038;, + 0.886619;0.124974;0.445295;, + 0.886619;0.124974;0.445295;, + 0.886619;0.124974;0.445295;, + 0.229087;0.702960;0.673325;, + 0.229087;0.702960;0.673325;, + 0.864236;0.368497;0.342501;, + 0.864236;0.368497;0.342501;, + 0.713439;0.698664;-0.053601;, + 0.713439;0.698664;-0.053601;, + 0.204500;0.976588;-0.066752;, + 0.987857;-0.005063;-0.155282;, + 0.987857;-0.005063;-0.155282;, + 0.582078;-0.000864;-0.813132;, + 0.582078;-0.000864;-0.813132;, + 0.582078;-0.000864;-0.813132;, + 0.582078;-0.000864;-0.813132;, + 0.581799;-0.016819;-0.813159;, + 0.581799;-0.016819;-0.813159;, + 0.581799;-0.016819;-0.813159;, + 0.581799;-0.016819;-0.813159;, + 0.987819;-0.010866;-0.155226;, + 0.987819;-0.010866;-0.155226;, + -0.113771;0.245370;-0.962730;, + -0.113771;0.245370;-0.962730;, + 0.171571;0.921590;-0.348189;, + 0.520068;0.319591;-0.792081;, + 0.520068;0.319591;-0.792081;, + 0.520068;0.319591;-0.792081;, + 0.800913;0.509642;-0.314332;, + 0.800913;0.509642;-0.314332;, + 0.153552;-0.920031;-0.360507;, + -0.118314;-0.167948;-0.978670;, + -0.118314;-0.167948;-0.978670;, + 0.787478;-0.534510;-0.306884;, + 0.787478;-0.534510;-0.306884;, + 0.491605;-0.323829;-0.808368;, + 0.491605;-0.323829;-0.808368;, + 0.491605;-0.323829;-0.808368;, + -0.379424;-0.028718;-0.924777;, + -0.379424;-0.028718;-0.924777;, + -0.261457;-0.285374;-0.922064;, + -0.376619;0.054435;-0.924768;, + -0.376619;0.054435;-0.924768;, + -0.386721;-0.025977;-0.921831;, + -0.386721;-0.025977;-0.921831;, + -0.386721;-0.025977;-0.921831;, + -0.383931;0.053652;-0.921802;, + -0.383931;0.053652;-0.921802;, + -0.383931;0.053652;-0.921802;, + -0.254652;0.321336;-0.912083;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.250841;0.968028;, + 1.000000;0.000000;0.000000;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 0.000000;-0.861871;0.507128;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.250841;0.968028;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.250841;0.968028;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 0.000000;-0.250841;0.968028;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.861871;0.507128;, + 0.000000;-0.861871;0.507128;, + 0.000000;0.606555;0.795041;, + 0.000000;0.606555;0.795041;, + 0.997088;-0.076255;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.703016;-0.711174;0.000000;, + 0.703016;-0.711174;0.000000;, + 0.703016;-0.711174;0.000000;, + -1.000000;0.000000;0.000000;, + 0.688808;0.146582;-0.709970;, + 0.688808;0.146582;-0.709970;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.178932;-0.983862;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.688808;0.146582;-0.709970;, + -0.688808;0.146582;-0.709970;, + -0.703016;-0.711174;0.000000;, + -0.703016;-0.711174;0.000000;, + -0.703016;-0.711174;0.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.673085;0.543157;-0.501933;, + 0.673085;0.543157;-0.501933;, + 0.673085;0.543157;-0.501933;, + 0.681821;-0.000000;-0.731519;, + 0.681821;-0.000000;-0.731519;, + 0.673085;-0.543157;-0.501933;, + 0.673085;-0.543157;-0.501933;, + 0.673085;-0.543157;-0.501933;, + 0.665741;-0.746183;0.000000;, + 0.665741;-0.746183;0.000000;, + 1.000000;-0.000000;-0.000000;, + 0.297521;-0.752416;-0.587666;, + 0.297521;-0.752416;-0.587666;, + 0.297521;-0.752416;-0.587666;, + 0.946660;0.322234;0.000000;, + 0.000000;0.404553;0.914514;, + 0.765120;0.576310;0.287155;, + 0.345860;0.589303;0.730139;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.961703;0.274094;0.000000;, + 0.000000;0.000000;1.000000;, + 0.961703;0.274094;0.000000;, + 0.408026;0.782721;-0.469960;, + 0.408026;0.782721;-0.469960;, + 0.408026;0.782721;-0.469960;, + 0.961703;-0.274094;0.000000;, + 0.961703;-0.274094;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;-0.000000;, + 0.408026;-0.782720;-0.469961;, + 0.408026;-0.782720;-0.469961;, + 0.408026;-0.782720;-0.469961;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.734960;-0.678111;, + 0.000000;-0.734960;-0.678111;, + 0.709688;-0.575075;-0.406979;, + 0.709688;-0.575075;-0.406979;, + 0.709688;-0.575075;-0.406979;, + 0.812989;-0.582279;0.000000;, + 0.812989;-0.582279;0.000000;, + 0.000000;0.000000;1.000000;, + 0.812989;0.582279;0.000000;, + 0.000000;0.000000;1.000000;, + 0.812989;0.582279;0.000000;, + 0.709688;0.575076;-0.406978;, + 0.709688;0.575076;-0.406978;, + 0.709688;0.575076;-0.406978;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + -0.525821;-0.675119;-0.517422;, + -0.525821;-0.675119;-0.517422;, + -0.525821;-0.675119;-0.517422;, + 0.000000;0.618986;0.785402;, + 0.000000;0.618986;0.785402;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.682437;-0.730944;, + 0.000000;0.682437;-0.730944;, + 0.000000;-0.734960;-0.678111;, + 0.000000;-0.734960;-0.678111;, + 0.000000;-1.000000;-0.000000;, + 0.000000;-0.682436;-0.730946;, + 0.000000;-0.682436;-0.730946;, + -0.673085;0.543157;-0.501933;, + -0.673085;0.543157;-0.501933;, + -0.673085;0.543157;-0.501933;, + -0.681820;-0.000000;-0.731520;, + -0.681820;-0.000000;-0.731520;, + -0.673085;-0.543157;-0.501933;, + -0.673085;-0.543157;-0.501933;, + -0.673085;-0.543157;-0.501933;, + -0.665741;-0.746183;0.000000;, + -0.665741;-0.746183;0.000000;, + -0.946660;0.322234;0.000000;, + 0.000000;0.404553;0.914514;, + -0.345860;0.589303;0.730139;, + -0.765120;0.576310;0.287155;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + -0.961703;0.274094;0.000000;, + -0.961703;0.274094;0.000000;, + 0.000000;0.000000;1.000000;, + -0.408026;0.782721;-0.469960;, + -0.408026;0.782721;-0.469960;, + -0.408026;0.782721;-0.469960;, + -0.961703;-0.274094;0.000000;, + 0.000000;0.000000;1.000000;, + -0.961703;-0.274094;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;-0.000000;, + -0.408026;-0.782720;-0.469961;, + -0.408026;-0.782720;-0.469961;, + -0.408026;-0.782720;-0.469961;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.734960;-0.678111;, + 0.000000;-0.734960;-0.678111;, + -0.709688;-0.575075;-0.406979;, + -0.709688;-0.575075;-0.406979;, + -0.709688;-0.575075;-0.406979;, + -0.812989;-0.582279;0.000000;, + 0.000000;0.000000;1.000000;, + -0.812989;-0.582279;0.000000;, + -0.812989;0.582279;0.000000;, + 0.000000;0.000000;1.000000;, + -0.812989;0.582279;0.000000;, + -0.709688;0.575076;-0.406978;, + -0.709688;0.575076;-0.406978;, + -0.709688;0.575076;-0.406978;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.665741;0.746183;0.000000;, + 0.665741;0.746183;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;-0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.734960;-0.678111;, + 0.000000;0.734960;-0.678111;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;-0.000000;, + 0.000000;0.734960;-0.678111;, + 0.000000;0.734960;-0.678111;, + -0.665741;0.746183;0.000000;, + -0.665741;0.746183;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;-0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.734960;-0.678111;, + 0.000000;0.734960;-0.678111;, + 0.000000;-1.000000;0.000000;, + -0.006548;0.000000;-0.999979;, + -0.999860;0.000000;0.016754;, + -0.006548;0.000000;-0.999979;, + 0.999860;0.000000;-0.016753;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.974062;0.193186;-0.117820;, + 0.990365;0.035316;-0.133904;, + 1.000000;0.000000;0.000000;, + 0.067354;-0.443547;0.893716;, + 0.067354;-0.443547;0.893716;, + 0.817977;-0.560175;0.130831;, + 0.817977;-0.560175;0.130831;, + 0.817977;-0.560175;0.130831;, + 0.143343;-0.948306;0.283140;, + 0.575371;-0.360864;0.733979;, + 0.575371;-0.360864;0.733979;, + 0.575371;-0.360864;0.733979;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.237889;-0.660874;-0.711797;, + 0.237889;-0.660874;-0.711797;, + 0.225248;-0.235329;-0.945454;, + 0.694911;-0.059586;-0.716623;, + 0.694911;-0.059586;-0.716623;, + 0.724776;-0.636464;-0.263843;, + 0.724776;-0.636464;-0.263843;, + 0.724776;-0.636464;-0.263843;, + 0.724776;-0.636464;-0.263843;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.981599;-0.122465;-0.146514;, + 0.921060;-0.243934;0.303554;, + 0.921060;-0.243934;0.303554;, + 0.921060;-0.243934;0.303554;, + 0.591008;-0.180066;0.786312;, + 0.590930;-0.729027;0.345429;, + 0.339709;0.184859;0.922185;, + 0.356763;-0.934190;0.003088;, + 0.000000;-0.447847;0.894110;, + 0.000000;-0.447847;0.894110;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.957775;0.287517;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.724776;-0.636464;-0.263843;, + -0.724776;-0.636464;-0.263843;, + -0.724776;-0.636464;-0.263843;, + -0.724776;-0.636464;-0.263843;, + -0.694911;-0.059586;-0.716623;, + -0.694911;-0.059586;-0.716623;, + -0.225248;-0.235329;-0.945454;, + -0.237889;-0.660874;-0.711797;, + -0.237889;-0.660874;-0.711797;, + 0.306622;-0.892935;-0.329622;, + 0.306622;-0.892935;-0.329622;, + 0.306622;-0.892935;-0.329622;, + 0.767964;-0.531687;-0.357126;, + 0.938714;-0.344697;0.000000;, + 0.328658;-0.526006;-0.784412;, + -0.000000;-0.300372;-0.953822;, + 0.328661;0.526000;-0.784415;, + 0.938716;0.344692;0.000000;, + -0.000000;0.300367;-0.953824;, + 0.767968;0.531681;-0.357129;, + 0.306626;0.892932;-0.329625;, + 0.306626;0.892932;-0.329625;, + 0.306626;0.892932;-0.329625;, + 0.901160;-0.433486;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.000000;-1.000000;, + 0.887308;-0.461177;0.000000;, + 0.000000;1.000000;0.000000;, + -0.198966;0.000000;-0.980006;, + 0.000000;-1.000000;0.000000;, + -0.198966;0.000000;-0.980006;, + 0.505754;-0.862678;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.505754;-0.862678;0.000000;, + -0.198966;0.000000;-0.980006;, + -0.334945;0.942238;0.000000;, + -0.163134;-0.084068;-0.983016;, + -0.334945;0.942238;0.000000;, + 0.631267;0.775565;0.000000;, + 0.631267;0.775565;0.000000;, + -0.163134;-0.084068;-0.983016;, + 0.986099;0.166158;0.000000;, + -0.356869;-0.669712;-0.651253;, + -0.356869;-0.669712;-0.651253;, + -0.953833;0.300339;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.953833;0.300339;0.000000;, + -0.712537;0.701634;0.000000;, + 0.682801;0.730605;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.682801;0.730605;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.712526;-0.701646;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.985989;-0.166808;0.000000;, + 0.712526;-0.701646;0.000000;, + -0.933289;-0.359126;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.933289;-0.359126;0.000000;, + -0.797086;0.603866;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.337034;0.941492;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.997575;-0.069594;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.693605;-0.720355;0.000000;, + 0.997575;-0.069594;0.000000;, + -0.000000;-0.300371;-0.953822;, + -0.000000;-0.300371;-0.953822;, + -0.000000;-0.886849;-0.462059;, + -0.000000;-0.886849;-0.462059;, + -0.000000;0.300367;-0.953824;, + -0.000000;0.300367;-0.953824;, + 0.000000;0.886847;-0.462064;, + 0.000000;0.886847;-0.462064;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;-0.016753;, + 0.007275;0.000000;-0.999974;, + 0.000000;-1.000000;0.000000;, + 0.007275;0.000000;-0.999974;, + 0.999860;0.000000;-0.016753;, + -0.006063;-0.377782;-0.925875;, + -0.999860;0.000000;0.016754;, + -0.006063;-0.377782;-0.925875;, + 0.999860;0.000001;-0.016752;, + -0.006063;-0.377782;-0.925875;, + -0.999860;0.000000;0.016754;, + -0.006063;-0.377782;-0.925875;, + 0.999860;0.000001;-0.016753;, + -0.999860;0.000000;0.016754;, + 0.999860;0.000001;-0.016753;, + -0.845995;-0.382332;-0.371638;, + -0.845995;-0.382332;-0.371638;, + -0.845995;-0.382332;-0.371638;, + -0.845995;-0.382332;-0.371638;, + -0.128250;-0.917776;-0.375819;, + -0.128250;-0.917776;-0.375819;, + -0.315649;-0.364073;-0.876251;, + -0.315649;-0.364073;-0.876251;, + -0.000000;-0.886848;-0.462062;, + -0.000000;-0.886848;-0.462062;, + -0.000000;-0.929961;-0.367658;, + -0.000000;-0.300370;-0.953823;, + -0.000000;-0.300370;-0.953823;, + -0.000000;-0.300369;-0.953823;, + -0.000000;-0.300369;-0.953823;, + -0.845995;0.382332;-0.371638;, + -0.845995;0.382332;-0.371638;, + -0.845995;0.382332;-0.371638;, + -0.845995;0.382332;-0.371638;, + -0.315649;0.364073;-0.876251;, + -0.315649;0.364073;-0.876251;, + -0.128250;0.917776;-0.375819;, + -0.128250;0.917776;-0.375819;, + -0.000000;0.886848;-0.462062;, + -0.000000;0.886848;-0.462062;, + -0.000000;0.300369;-0.953823;, + -0.000000;0.300369;-0.953823;, + -0.000000;0.300368;-0.953823;, + -0.000000;0.300368;-0.953823;, + 0.000000;0.929961;-0.367659;, + 0.000000;1.000000;0.000000;, + -0.009877;0.000000;-0.999951;, + 0.000000;-1.000000;0.000000;, + -0.009877;0.000000;-0.999951;, + -0.999860;0.000000;0.016753;, + 0.007275;0.000000;-0.999974;, + 0.000000;-1.000000;0.000000;, + -0.999860;0.000000;0.016753;, + 0.000000;1.000000;0.000000;, + 0.007275;0.000000;-0.999974;, + 0.000000;-1.000000;0.000000;, + 0.444792;0.000000;-0.895634;, + 0.444792;0.000000;-0.895634;, + 0.444792;0.000000;-0.895634;, + 0.444792;0.000000;-0.895634;, + 0.000000;1.000000;0.000000;, + 0.444792;0.000000;-0.895634;, + 0.444792;0.000000;-0.895634;, + -0.225238;0.000000;-0.974304;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.225238;0.000000;-0.974304;, + 0.225236;-0.000001;-0.974304;, + 0.000000;1.000000;0.000000;, + 0.225236;-0.000001;-0.974304;, + 0.000000;-1.000000;0.000000;, + 0.952657;0.000000;-0.304046;, + 0.952657;0.000000;-0.304046;, + 1.000000;0.000000;-0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.897253;-0.281640;-0.340023;, + 0.897253;-0.281640;-0.340023;, + 0.943629;-0.331006;0.000000;, + 0.000000;0.000000;1.000000;, + 0.428060;-0.799374;-0.421624;, + 0.428060;-0.799374;-0.421624;, + 0.428060;-0.799374;-0.421624;, + 0.428060;-0.799374;-0.421624;, + 0.433190;-0.901303;0.000000;, + 0.000000;-0.000000;1.000000;, + 0.433190;-0.901303;0.000000;, + 0.410415;-0.110414;-0.905190;, + 0.410415;-0.110414;-0.905190;, + 0.000000;-0.000000;1.000000;, + 0.458637;0.000000;-0.888624;, + 0.458637;0.000000;-0.888624;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + -0.999835;0.000000;-0.018151;, + -0.009877;0.000000;-0.999951;, + 0.000000;-1.000000;0.000000;, + -0.999835;0.000000;-0.018151;, + 0.000000;1.000000;0.000000;, + -0.009877;0.000000;-0.999951;, + -0.008295;0.000000;-0.999966;, + 0.739674;0.429300;-0.518250;, + 0.739674;0.429300;-0.518250;, + 0.739674;0.429300;-0.518250;, + -0.003774;0.861001;-0.508589;, + -0.003774;0.861001;-0.508589;, + -0.003774;0.861001;-0.508589;, + 0.739674;-0.429300;-0.518250;, + 0.739674;-0.429300;-0.518250;, + 0.739674;-0.429300;-0.518250;, + -0.003774;-0.861001;-0.508589;, + -0.003774;-0.861001;-0.508589;, + -0.003774;-0.861001;-0.508589;, + -0.751445;-0.431739;-0.498932;, + -0.751445;-0.431739;-0.498932;, + -0.751445;-0.431739;-0.498932;, + -0.751445;0.431739;-0.498932;, + -0.751445;0.431739;-0.498932;, + -0.751445;0.431739;-0.498932;, + 0.000000;-1.000000;0.000000;, + -0.444792;0.000000;-0.895634;, + -0.444792;0.000000;-0.895634;, + -0.444792;0.000000;-0.895634;, + -0.444792;0.000000;-0.895634;, + 0.000000;1.000000;0.000000;, + -0.444792;0.000000;-0.895634;, + -0.444792;0.000000;-0.895634;, + -0.492699;-0.870200;0.000000;, + 0.000000;-0.000000;1.000000;, + -0.418146;-0.801329;-0.427815;, + -0.418146;-0.801329;-0.427815;, + -0.418146;-0.801329;-0.427815;, + -0.421913;-0.784056;-0.455242;, + -0.421913;-0.784056;-0.455242;, + -0.421913;-0.784056;-0.455242;, + -0.492699;-0.870200;0.000000;, + 0.000000;-0.000000;1.000000;, + -0.492699;-0.870200;0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.115463;-0.249286;-0.961522;, + -0.115463;-0.249286;-0.961522;, + 0.000000;0.000000;1.000000;, + -0.100988;-0.994888;0.000000;, + -0.000000;-0.000000;-1.000000;, + 0.179157;-0.288632;-0.940529;, + 0.179157;-0.288632;-0.940529;, + -0.191831;-0.385043;-0.902742;, + -0.000000;-0.000000;-1.000000;, + -0.292367;-0.866429;-0.404750;, + -0.292367;-0.866429;-0.404750;, + -0.292367;-0.866429;-0.404750;, + -0.331004;-0.943629;0.000000;, + 0.000000;0.000000;1.000000;, + -0.830569;-0.387539;-0.399961;, + -0.830569;-0.387539;-0.399961;, + -0.830569;-0.387539;-0.399961;, + -0.830569;-0.387539;-0.399961;, + -0.901302;-0.433191;0.000000;, + -0.901302;-0.433191;0.000000;, + 0.000000;0.000000;1.000000;, + -0.000000;0.000000;-1.000000;, + -0.109902;-0.344862;-0.932197;, + -0.109902;-0.344862;-0.932197;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.945889;0.000000;-0.324489;, + -0.945889;0.000000;-0.324489;, + -0.439396;0.000000;-0.898293;, + -0.439396;0.000000;-0.898293;, + -0.442680;-0.198092;-0.874525;, + -0.442680;-0.198092;-0.874525;, + 0.000000;0.000000;1.000000;, + -0.100988;-0.994888;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.222802;0.267250;-0.937516;, + 0.694990;0.067591;-0.715836;, + 0.694990;0.067591;-0.715836;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.182865;0.983138;0.000000;, + 0.841860;0.510164;-0.176079;, + 0.841860;0.510164;-0.176079;, + 0.841860;0.510164;-0.176079;, + 0.212237;0.942309;-0.258861;, + 0.824489;0.565879;0.000000;, + 0.824489;0.565879;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.694990;0.067591;-0.715836;, + -0.694990;0.067591;-0.715836;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + -0.222803;0.267250;-0.937516;, + 0.643961;0.458788;-0.612232;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.965546;-0.260232;, + -1.000000;0.000000;0.000000;, + 0.000000;0.951870;-0.306503;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;0.016754;, + -0.006548;0.000000;-0.999979;, + 0.000000;1.000000;0.000000;, + -0.006548;0.000000;-0.999979;, + 0.999860;0.000000;-0.016752;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;-0.016753;, + -0.999860;0.000000;0.016754;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;0.016754;, + 0.006548;0.000000;0.999979;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;-0.016753;, + 0.006548;0.000000;0.999979;, + -0.006548;0.000000;-0.999979;, + 0.999860;0.000000;-0.016752;, + -0.006548;0.000000;-0.999979;, + -0.999860;0.000000;0.016754;, + -0.999860;0.000000;0.016754;, + -0.006548;0.000000;-0.999979;, + -0.999860;0.000000;0.016754;, + 0.006548;0.000000;0.999979;, + 0.000000;-1.000000;0.000000;, + 0.006548;0.000000;0.999979;, + 0.999860;0.000000;-0.016753;, + 0.000000;-1.000000;0.000000;, + -0.006548;0.000000;-0.999979;, + 0.999860;0.000000;-0.016752;, + 0.894428;0.447212;-0.000000;, + 0.894428;0.447212;-0.000000;, + 0.831040;0.403243;-0.383102;, + 0.831040;0.403243;-0.383102;, + 0.831040;0.403243;-0.383102;, + 0.831040;0.403243;-0.383102;, + 0.316229;0.948683;-0.000000;, + 0.282244;0.875709;-0.391756;, + 0.282244;0.875709;-0.391756;, + 0.282244;0.875709;-0.391756;, + 0.457151;0.212943;-0.863521;, + 0.457151;0.212943;-0.863521;, + -0.000000;0.933082;-0.359664;, + -0.000000;0.933082;-0.359664;, + 0.000000;1.000000;0.000000;, + -0.000000;0.405468;-0.914109;, + -0.000000;0.405468;-0.914109;, + 0.109882;0.357779;-0.927319;, + 0.109882;0.357779;-0.927319;, + -0.349235;0.855784;-0.381665;, + -0.349235;0.855784;-0.381665;, + -0.349235;0.855784;-0.381665;, + -0.349235;0.855784;-0.381665;, + -0.382684;0.923879;0.000000;, + -0.382684;0.923879;0.000000;, + -0.923880;0.382683;0.000000;, + -0.859819;0.357289;-0.364767;, + -0.859819;0.357289;-0.364767;, + -0.859819;0.357289;-0.364767;, + -0.142369;0.355966;-0.923590;, + -0.142369;0.355966;-0.923590;, + -0.486422;0.202974;-0.849820;, + -0.486422;0.202974;-0.849820;, + 0.231732;0.696563;-0.679043;, + 0.231732;0.696563;-0.679043;, + 0.718710;0.648693;-0.250309;, + 0.718710;0.648693;-0.250309;, + 0.718710;0.648693;-0.250309;, + 0.718710;0.648693;-0.250309;, + -0.718710;0.648692;-0.250309;, + -0.718710;0.648692;-0.250309;, + -0.718710;0.648692;-0.250309;, + -0.718710;0.648692;-0.250309;, + -0.231732;0.696563;-0.679043;, + -0.231732;0.696563;-0.679043;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.220606;-0.975363;, + 0.000000;0.781219;-0.624257;, + 1.000000;0.000000;0.000000;, + 0.000000;0.781219;-0.624257;, + 0.000000;0.781219;-0.624257;, + 0.000000;0.781219;-0.624257;, + 0.000000;0.220606;-0.975363;, + 0.000000;-1.000000;0.000000;, + 0.999563;0.015174;-0.025377;, + 0.999563;0.015174;-0.025377;, + 0.999715;0.000062;-0.023881;, + 0.999715;0.000062;-0.023881;, + 0.999670;0.005731;-0.025038;, + 0.999670;0.005731;-0.025038;, + 0.999698;0.006980;-0.023542;, + 0.999698;0.006980;-0.023542;, + 0.186111;0.981867;-0.036054;, + 0.817235;0.575047;-0.038051;, + 0.817235;0.575047;-0.038051;, + 0.821447;0.564406;-0.081677;, + 0.821447;0.564406;-0.081677;, + 0.185128;0.976271;-0.112354;, + 0.817690;-0.575000;-0.027537;, + 0.817690;-0.575000;-0.027537;, + 0.164892;-0.986122;-0.019346;, + 0.164920;-0.986307;0.000000;, + 0.813788;-0.580936;-0.016218;, + 0.813788;-0.580936;-0.016218;, + -0.417231;-0.749047;-0.514632;, + -0.417231;-0.749047;-0.514632;, + 0.901271;0.000000;-0.433257;, + 0.266525;-0.707134;-0.654925;, + 0.697396;-0.282082;-0.658839;, + 0.000000;-0.910249;-0.414061;, + -0.417231;0.749047;-0.514632;, + -0.417231;0.749047;-0.514632;, + 0.000000;0.910249;-0.414061;, + 0.266525;0.707134;-0.654925;, + 0.697396;0.282082;-0.658839;, + 0.901271;0.000000;-0.433257;, + -0.381399;-0.271517;-0.883636;, + 0.232012;-0.244096;-0.941588;, + 0.232012;0.244096;-0.941588;, + -0.381399;0.271517;-0.883636;, + 0.491030;-0.830349;-0.263459;, + 0.491030;-0.830349;-0.263459;, + 0.783289;0.222369;-0.580526;, + 0.000000;0.960955;-0.276705;, + 0.950288;-0.070780;-0.303222;, + 0.272426;0.849198;-0.452379;, + 0.326957;0.115768;-0.937921;, + 0.326957;0.115768;-0.937921;, + 0.326957;0.115768;-0.937921;, + 0.327272;-0.520278;-0.788799;, + 0.327272;-0.520278;-0.788799;, + 0.327272;-0.520278;-0.788799;, + 0.000000;-0.818404;-0.574643;, + 0.999257;0.038532;0.001036;, + 0.000000;0.317049;-0.948409;, + 0.999257;0.038532;0.001036;, + 0.000000;0.317049;-0.948409;, + 0.000000;-1.000000;0.000000;, + 0.996327;0.038419;0.076524;, + 0.511973;0.849126;0.129878;, + 0.996327;0.038420;0.076524;, + 0.863785;0.365054;0.347291;, + 0.000000;0.998092;0.061747;, + 0.996327;0.038419;0.076524;, + 0.994571;0.104035;-0.002266;, + 0.000000;-0.995327;0.096563;, + 0.000000;0.317049;-0.948409;, + 0.000000;0.317049;-0.948409;, + 0.000000;-0.818404;-0.574643;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.998092;0.061747;, + 0.000000;-0.995327;0.096563;, + 0.000000;-0.818404;-0.574643;, + -0.999257;0.038532;0.001036;, + -0.999257;0.038532;0.001036;, + 0.000000;0.317049;-0.948409;, + 0.000000;0.317049;-0.948409;, + 0.000000;-1.000000;0.000000;, + -0.996327;0.038419;0.076524;, + -0.511973;0.849126;0.129878;, + -0.996327;0.038420;0.076524;, + -0.863785;0.365054;0.347291;, + 0.000000;0.998092;0.061747;, + -0.994571;0.104035;-0.002266;, + 0.000000;-0.995327;0.096563;, + 0.998651;0.051906;-0.001130;, + 0.673085;0.543157;0.501933;, + 0.673085;0.543157;0.501933;, + 0.673085;0.543157;0.501933;, + 0.681821;-0.000000;0.731519;, + 0.681821;-0.000000;0.731519;, + 0.673085;-0.543157;0.501933;, + 0.673085;-0.543157;0.501933;, + 0.673085;-0.543157;0.501933;, + 0.599172;-0.557346;0.574768;, + 0.599172;-0.557346;0.574768;, + 0.599172;-0.557346;0.574768;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.215555;0.976492;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.734960;0.678111;, + 0.000000;-0.734960;0.678111;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.215556;0.976492;, + 0.000000;-0.215556;0.976492;, + 0.000000;-0.000000;1.000000;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + -0.601258;-0.745604;0.287339;, + -0.601258;-0.745604;0.287339;, + -0.601258;-0.745604;0.287339;, + 0.000000;1.000000;0.000000;, + 0.000000;0.215555;0.976492;, + 0.000000;-0.734960;0.678111;, + 0.000000;-0.734960;0.678111;, + 0.000000;-0.215556;0.976492;, + 0.000000;-0.215556;0.976492;, + -0.673085;0.543157;0.501933;, + -0.673085;0.543157;0.501933;, + -0.673085;0.543157;0.501933;, + -0.681820;-0.000000;0.731520;, + -0.681820;-0.000000;0.731520;, + -0.673085;-0.543157;0.501933;, + -0.673085;-0.543157;0.501933;, + -0.673085;-0.543157;0.501933;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.215555;0.976492;, + -1.000000;0.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.734960;0.678111;, + 0.000000;-0.734960;0.678111;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.215556;0.976492;, + 0.000000;-0.215556;0.976492;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.999984;0.005657;, + 1.000000;0.000000;0.000000;, + 0.000000;0.734960;0.678111;, + 0.000000;0.734960;0.678111;, + 0.000000;-0.999941;0.010885;, + 0.000000;0.734960;0.678111;, + 0.000000;0.734960;0.678111;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.999984;0.005657;, + -1.000000;0.000000;0.000000;, + 0.000000;0.734960;0.678111;, + 0.000000;0.734960;0.678111;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.877728;-0.330691;0.346751;, + 0.877728;-0.330691;0.346751;, + 0.877728;-0.330691;0.346751;, + 0.877728;-0.330691;0.346751;, + 0.395322;-0.904274;0.161270;, + 0.395322;-0.904274;0.161270;, + 0.395322;-0.904274;0.161270;, + 0.420034;-0.907509;0.000000;, + 0.420034;-0.907509;0.000000;, + 0.420034;-0.907509;0.000000;, + 0.938714;-0.344697;0.000000;, + 0.938714;-0.344697;0.000000;, + 0.938714;-0.344697;0.000000;, + 0.938714;-0.344697;0.000000;, + 0.877730;0.330686;0.346752;, + 0.877730;0.330686;0.346752;, + 0.877730;0.330686;0.346752;, + 0.877730;0.330686;0.346752;, + 0.395326;0.904272;0.161272;, + 0.395326;0.904272;0.161272;, + 0.395326;0.904272;0.161272;, + 0.420038;0.907506;0.000000;, + 0.420038;0.907506;0.000000;, + 0.420038;0.907506;0.000000;, + 0.938716;0.344692;0.000000;, + 0.938716;0.344692;0.000000;, + 0.938716;0.344692;0.000000;, + 0.938716;0.344692;0.000000;, + 0.887308;-0.461177;0.000000;, + 0.000000;0.000000;1.000000;, + 0.901160;-0.433486;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -0.852367;0.000000;0.522944;, + -0.852367;0.000000;0.522944;, + -0.833659;0.000000;-0.552279;, + -0.833659;0.000000;-0.552279;, + -0.833659;0.000000;-0.552279;, + 0.000000;1.000000;0.000000;, + -0.833659;0.000000;-0.552279;, + -0.852367;0.000000;0.522944;, + -0.852367;0.000000;0.522944;, + 0.000000;1.000000;0.000000;, + -0.232937;0.000000;0.972492;, + 0.000000;1.000000;0.000000;, + -0.232937;0.000000;0.972492;, + 0.000000;-1.000000;0.000000;, + -0.833659;0.000000;-0.552279;, + -0.833659;0.000000;-0.552279;, + 0.000000;-1.000000;0.000000;, + -0.852367;0.000000;0.522944;, + -0.852367;0.000000;0.522944;, + 0.000000;-1.000000;0.000000;, + -0.232937;0.000000;0.972492;, + 0.505754;-0.862678;0.000000;, + 0.000000;0.000000;1.000000;, + 0.505754;-0.862678;0.000000;, + -0.334945;0.942238;0.000000;, + -0.163134;-0.084065;0.983016;, + -0.334945;0.942238;0.000000;, + -0.163134;-0.084065;0.983016;, + 0.631267;0.775565;0.000000;, + 0.631267;0.775565;0.000000;, + -0.356870;-0.669711;0.651254;, + -0.356870;-0.669711;0.651254;, + 0.986099;0.166158;0.000000;, + -0.601679;0.798738;0.000000;, + -0.356870;-0.669711;0.651254;, + -0.356870;-0.669711;0.651254;, + -0.356869;-0.669712;-0.651253;, + -0.601679;0.798738;0.000000;, + -0.356869;-0.669712;-0.651253;, + -0.953833;0.300339;0.000000;, + 0.000000;0.000000;1.000000;, + -0.953833;0.300339;0.000000;, + 0.000000;0.000000;1.000000;, + 0.682801;0.730605;0.000000;, + -0.712537;0.701634;0.000000;, + 0.000000;0.000000;1.000000;, + 0.712526;-0.701646;0.000000;, + 0.682801;0.730605;0.000000;, + -0.985989;-0.166808;0.000000;, + 0.712526;-0.701646;0.000000;, + 0.000000;0.000000;1.000000;, + -0.933289;-0.359126;0.000000;, + 0.000000;0.000000;1.000000;, + -0.933289;-0.359126;0.000000;, + 0.000000;0.000000;1.000000;, + -0.797086;0.603866;0.000000;, + 0.000000;0.000000;1.000000;, + 0.997575;-0.069594;0.000000;, + -0.337034;0.941492;0.000000;, + -0.693605;-0.720355;0.000000;, + 0.997575;-0.069594;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.747101;0.000000;0.664711;, + 0.747101;0.000000;0.664711;, + 0.000000;-1.000000;0.000000;, + 0.747101;0.000000;0.664711;, + 0.747101;0.000000;0.664711;, + 0.000000;1.000000;0.000000;, + 1.000000;-0.000001;-0.000002;, + 0.000000;1.000000;0.000000;, + 1.000000;-0.000001;-0.000002;, + 0.000000;-1.000000;0.000000;, + 0.747099;-0.000002;-0.664713;, + 0.000000;-1.000000;0.000000;, + 0.747099;-0.000002;-0.664713;, + 0.747099;-0.000002;-0.664713;, + 0.000000;1.000000;0.000000;, + 0.747099;-0.000002;-0.664713;, + -0.502197;-0.844060;0.188043;, + -0.502197;-0.844060;0.188043;, + -0.872012;-0.358050;0.333759;, + -0.872012;-0.358050;0.333759;, + -0.872012;-0.358050;0.333759;, + -0.467763;-0.861860;-0.195947;, + -0.467763;-0.861860;-0.195947;, + -0.445914;-0.895076;0.000000;, + -0.445914;-0.895076;0.000000;, + -0.445914;-0.895076;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.948223;-0.317605;0.000000;, + -0.948223;-0.317605;0.000000;, + -0.948223;-0.317605;0.000000;, + -0.948223;-0.317605;0.000000;, + -0.445914;-0.895076;0.000000;, + -0.445914;-0.895076;0.000000;, + -0.445914;-0.895076;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.948223;-0.317605;0.000000;, + -0.948223;-0.317605;0.000000;, + -0.948223;-0.317605;0.000000;, + -0.948223;-0.317605;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.872012;0.358050;0.333759;, + -0.872012;0.358050;0.333759;, + -0.872012;0.358050;0.333759;, + -0.502197;0.844060;0.188043;, + -0.502197;0.844060;0.188043;, + -0.467763;0.861860;-0.195947;, + -0.467763;0.861860;-0.195947;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.445914;0.895076;0.000000;, + -0.445914;0.895076;0.000000;, + -0.445914;0.895076;0.000000;, + -0.948223;0.317605;0.000000;, + -0.948223;0.317605;0.000000;, + -0.948223;0.317605;0.000000;, + -0.948223;0.317605;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.445914;0.895076;0.000000;, + -0.445914;0.895076;0.000000;, + -0.445914;0.895076;0.000000;, + -0.948223;0.317605;0.000000;, + -0.948223;0.317605;0.000000;, + -0.948223;0.317605;0.000000;, + -0.948223;0.317605;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.009641;0.000000;0.999954;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.009641;0.000000;0.999954;, + -0.007275;0.000000;0.999974;, + -0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + -0.007275;0.000000;0.999974;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + 0.947824;0.000000;-0.318793;, + 0.000000;-1.000000;0.000000;, + 0.444793;0.000000;0.895634;, + 0.444793;0.000000;0.895634;, + 0.947824;0.000000;0.318793;, + 0.000000;-1.000000;0.000000;, + 0.947824;0.000000;0.318793;, + 0.947824;0.000000;-0.318793;, + 0.444793;0.000000;0.895634;, + 0.444793;0.000000;0.895634;, + 0.000000;1.000000;0.000000;, + 0.947824;0.000000;-0.318793;, + 0.000000;1.000000;0.000000;, + 0.947824;0.000000;0.318793;, + 0.000000;1.000000;0.000000;, + 0.444793;0.000000;0.895634;, + 0.444793;0.000000;0.895634;, + -0.812847;0.000000;0.582477;, + 0.000000;-1.000000;0.000000;, + -0.812847;0.000000;0.582477;, + -0.920207;0.000000;-0.391432;, + 0.000000;-1.000000;0.000000;, + -0.920207;0.000000;-0.391432;, + 0.000000;1.000000;0.000000;, + -0.812847;0.000000;0.582477;, + 0.000000;1.000000;0.000000;, + -0.812847;0.000000;0.582477;, + -0.519988;0.000000;-0.854174;, + -0.519988;0.000000;-0.854174;, + 0.000000;-1.000000;0.000000;, + -0.519988;0.000000;-0.854174;, + -0.519988;0.000000;-0.854174;, + 0.000000;1.000000;0.000000;, + -0.225237;0.000000;0.974304;, + 0.000000;1.000000;0.000000;, + -0.225237;0.000000;0.974304;, + 0.000000;-1.000000;0.000000;, + 0.225237;0.000000;0.974304;, + 0.000000;-1.000000;0.000000;, + 0.225237;0.000000;0.974304;, + 0.000000;1.000000;0.000000;, + 0.009641;0.000000;0.999954;, + -0.999835;0.000000;-0.018151;, + 0.000000;-1.000000;0.000000;, + 0.009641;0.000000;0.999954;, + 0.000000;1.000000;0.000000;, + -0.999835;0.000000;-0.018151;, + 0.003775;0.861001;0.508589;, + 0.003775;0.861001;0.508589;, + 0.003775;0.861001;0.508589;, + 0.751444;0.431738;0.498932;, + 0.751444;0.431738;0.498932;, + 0.751444;0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.003775;-0.861001;0.508589;, + 0.003775;-0.861001;0.508589;, + 0.003775;-0.861001;0.508589;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.943629;-0.331006;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.433190;-0.901303;0.000000;, + 0.433190;-0.901303;0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.444792;0.000000;0.895634;, + -0.444792;0.000000;0.895634;, + 0.000000;-1.000000;0.000000;, + -0.947824;0.000000;-0.318793;, + 0.000000;-1.000000;0.000000;, + -0.947824;0.000000;0.318794;, + -0.444792;0.000000;0.895634;, + -0.444792;0.000000;0.895634;, + -0.947824;0.000000;0.318794;, + -0.947824;0.000000;-0.318793;, + 0.000000;1.000000;0.000000;, + -0.444792;0.000000;0.895634;, + -0.444792;0.000000;0.895634;, + 0.000000;1.000000;0.000000;, + -0.947824;0.000000;0.318794;, + -0.947824;0.000000;-0.318793;, + 0.000000;1.000000;0.000000;, + -0.739674;-0.429301;0.518250;, + -0.739674;-0.429301;0.518250;, + -0.739674;-0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + 0.923880;0.382683;0.000000;, + 0.923880;0.382683;0.000000;, + 0.000000;0.000000;1.000000;, + 0.923880;0.382683;0.000000;, + -0.000000;0.000000;-1.000000;, + 0.923880;0.382683;0.000000;, + 0.923880;-0.382683;0.000000;, + 0.923880;-0.382683;0.000000;, + 0.000000;-0.000000;1.000000;, + 0.923880;-0.382683;0.000000;, + -0.000000;-0.000000;-1.000000;, + 0.923880;-0.382683;0.000000;, + -0.100988;-0.994888;-0.000000;, + -0.492699;-0.870200;0.000000;, + 0.000000;-0.000000;-1.000000;, + -0.492699;-0.870200;0.000000;, + 0.000000;-0.000000;-1.000000;, + -0.492699;-0.870200;0.000000;, + -0.100988;-0.994888;-0.000000;, + 0.000000;0.000000;-1.000000;, + 0.382683;0.923880;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -0.000000;0.000000;-1.000000;, + 0.382683;0.923880;0.000000;, + -0.000000;0.000000;-1.000000;, + 0.382683;-0.923880;0.000000;, + 0.000000;-0.000000;1.000000;, + 0.382683;-0.923880;0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.382683;-0.923880;0.000000;, + -0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;1.000000;, + -0.382683;-0.923880;0.000000;, + -0.410296;0.911952;0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.410296;0.911952;0.000000;, + 0.000000;-0.000000;1.000000;, + 0.000000;-0.000000;1.000000;, + -0.000000;-0.000000;-1.000000;, + -1.000000;0.000000;-0.000000;, + 0.000000;-1.000000;0.000000;, + -0.100988;-0.994888;-0.000000;, + -0.331004;-0.943629;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.901302;-0.433191;-0.000000;, + -0.901302;-0.433191;-0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;-0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.100988;-0.994888;-0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + -0.922348;0.386359;0.000000;, + 0.701454;-0.712715;0.000000;, + 0.000000;0.000000;1.000000;, + -0.922348;0.386359;0.000000;, + -0.000000;0.000000;-1.000000;, + 0.701454;-0.712715;0.000000;, + -0.934971;0.354724;0.000000;, + -0.934971;0.354724;0.000000;, + -0.000000;-0.000000;-1.000000;, + -0.934971;0.354724;0.000000;, + 0.000000;-0.000000;1.000000;, + -0.934971;0.354724;0.000000;, + 0.000000;-0.000000;1.000000;, + 0.701454;-0.712715;0.000000;, + -0.701454;0.712715;0.000000;, + -0.707107;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.000000;-0.000000;-1.000000;, + -0.000000;-0.000000;-1.000000;, + 0.701454;-0.712715;0.000000;, + -0.701454;0.712715;0.000000;, + -0.707107;-0.707107;0.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.894428;0.447212;0.000000;, + 0.894428;0.447212;0.000000;, + 0.316229;0.948683;0.000000;, + 0.894428;0.447212;0.000000;, + 0.894428;0.447212;0.000000;, + 0.316229;0.948683;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.382684;0.923879;-0.000000;, + -0.382684;0.923879;-0.000000;, + -0.923880;0.382683;-0.000000;, + -0.382684;0.923879;-0.000000;, + -0.382684;0.923879;-0.000000;, + -0.923880;0.382683;-0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.467971;0.748047;0.470562;, + 0.467971;0.748047;0.470562;, + 0.448202;0.785835;-0.426119;, + 0.448202;0.785835;-0.426119;, + 0.734898;0.095942;-0.671356;, + 0.734898;0.095942;-0.671356;, + 1.000000;0.000000;0.000000;, + 0.000216;0.747545;-0.664211;, + 0.000216;0.747545;-0.664211;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.780420;0.375853;-0.499679;, + 0.780420;0.375853;-0.499679;, + 0.780420;0.375853;-0.499679;, + 0.255331;0.610630;-0.749625;, + 0.255331;0.610630;-0.749625;, + 0.000100;0.382250;-0.924059;, + 0.000100;0.382250;-0.924059;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.999885;0.015182;0.000000;, + 0.999885;0.015182;0.000000;, + 0.999956;-0.009391;0.000000;, + 0.999956;-0.009391;0.000000;, + 0.186216;0.982509;0.000000;, + 0.817769;0.575546;0.000000;, + 0.817769;0.575546;0.000000;, + 0.164920;-0.986307;0.000000;, + 0.808550;-0.588427;0.000000;, + 0.808550;-0.588427;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.486044;-0.714149;0.503739;, + 0.486044;-0.714149;0.503739;, + 0.486044;-0.714149;0.503739;, + 0.729011;0.129146;0.672209;, + 0.729011;0.129146;0.672209;, + 0.729011;0.129146;0.672209;, + 0.535202;-0.323949;0.780138;, + 0.535202;-0.323949;0.780138;, + 0.535202;-0.323949;0.780138;, + 0.000000;-0.862942;0.505302;, + 0.000000;-0.862942;0.505302;, + 0.000000;0.177449;0.984130;, + 0.000000;0.177449;0.984130;, + 0.000000;-0.483412;0.875393;, + 0.000000;-0.483412;0.875393;, + -0.486044;-0.714149;0.503739;, + -0.486044;-0.714149;0.503739;, + -0.486044;-0.714149;0.503739;, + -0.729011;0.129146;0.672209;, + -0.729011;0.129146;0.672209;, + -0.729011;0.129146;0.672209;, + -0.535202;-0.323949;0.780138;, + -0.535202;-0.323949;0.780138;, + -0.535202;-0.323949;0.780138;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.481363;0.876521;, + 0.000000;-0.481363;0.876521;, + 0.704085;-0.354065;0.615550;, + 0.704085;-0.354065;0.615550;, + 0.704085;-0.354065;0.615550;, + 0.683829;0.118010;0.720036;, + 0.683829;0.118010;0.720036;, + 0.000000;0.104270;0.994549;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.481363;0.876521;, + 0.000000;-0.481363;0.876521;, + -0.683829;0.118010;0.720036;, + -0.683829;0.118010;0.720036;, + -0.704085;-0.354065;0.615550;, + -0.704085;-0.354065;0.615550;, + -0.704085;-0.354065;0.615550;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.671803;0.000000;0.740730;, + 0.671803;0.000000;0.740730;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -0.671803;0.000000;0.740730;, + -0.671803;0.000000;0.740730;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.575435;0.817848;, + 0.000000;-0.575435;0.817848;, + 0.000000;-0.304659;0.952461;, + 0.992902;-0.118932;0.000000;, + 0.000000;-0.912569;0.408924;, + 0.000000;-0.912569;0.408924;, + 0.000000;-0.304659;0.952461;, + -0.996514;-0.083420;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.575435;0.817848;, + 0.000000;-0.575435;0.817848;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.712713;-0.627305;0.313893;, + 0.712713;-0.627305;0.313893;, + 0.712713;-0.627305;0.313893;, + 0.995295;-0.096836;-0.003218;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + 0.999860;0.000000;-0.016753;, + 0.000000;-1.000000;0.000000;, + 0.006548;0.000000;0.999979;, + -0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + 0.999860;0.000000;-0.016753;, + 0.006548;0.000000;0.999979;, + 1.000000;0.000000;0.000000;, + 0.000000;0.175892;0.984409;, + 1.000000;0.000000;0.000000;, + 0.000000;0.821703;0.569915;, + 0.000000;0.821703;0.569915;, + 0.000000;-0.010682;0.999943;, + 0.000000;0.821703;0.569915;, + 0.000000;0.821703;0.569915;, + -1.000000;0.000000;0.000000;, + 0.000000;0.175892;0.984409;, + -1.000000;0.000000;0.000000;, + 0.000000;0.821703;0.569915;, + 0.000000;0.821703;0.569915;, + 0.000000;-1.000000;0.000000;, + 0.623102;0.286079;0.727944;, + 0.623102;0.286079;0.727944;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.964942;0.262464;, + 0.999551;-0.028922;-0.007867;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.855810;0.517291;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.491279;0.871002;, + 0.000000;-0.494957;-0.868917;, + 0.000000;-0.494957;-0.868917;, + 0.414336;-0.420954;-0.806922;, + 0.414336;-0.420954;-0.806922;, + 0.414336;-0.420954;-0.806922;, + 0.414336;-0.420954;-0.806922;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;1.000000;0.000000;, + 0.225248;-0.235329;0.945454;, + 0.237889;-0.660874;0.711797;, + 0.237889;-0.660874;0.711797;, + 0.694911;-0.059586;0.716623;, + 0.694911;-0.059586;0.716623;, + 0.724776;-0.636464;0.263843;, + 0.724776;-0.636464;0.263843;, + 0.724776;-0.636464;0.263843;, + 0.724776;-0.636464;0.263843;, + 0.656366;-0.210294;0.724542;, + 0.656366;-0.210294;0.724542;, + 0.660218;0.043171;0.749833;, + 0.660218;0.043171;0.749833;, + 0.000000;-0.855810;0.517291;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.491279;0.871002;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.694911;-0.059586;0.716623;, + -0.694911;-0.059586;0.716623;, + -0.724776;-0.636464;0.263843;, + -0.724776;-0.636464;0.263843;, + -0.724776;-0.636464;0.263843;, + -0.724776;-0.636464;0.263843;, + -0.225248;-0.235329;0.945454;, + -0.237889;-0.660874;0.711797;, + -0.237889;-0.660874;0.711797;, + 0.181527;-0.897955;0.400904;, + 0.181527;-0.897955;0.400904;, + 0.181527;-0.897955;0.400904;, + 0.388340;-0.313507;0.866548;, + 0.388340;-0.313507;0.866548;, + 0.388340;-0.313507;0.866548;, + 0.388340;-0.313507;0.866548;, + 0.388341;0.313505;0.866548;, + 0.388341;0.313505;0.866548;, + 0.388341;0.313505;0.866548;, + 0.388341;0.313505;0.866548;, + 0.181529;0.897954;0.400905;, + 0.181529;0.897954;0.400905;, + 0.181529;0.897954;0.400905;, + -0.007275;0.000000;0.999974;, + 0.999860;0.000000;-0.016753;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;-0.016753;, + 0.000000;-1.000000;0.000000;, + -0.007275;0.000000;0.999974;, + -0.999860;0.000000;0.016753;, + -0.999860;0.000000;0.016753;, + 0.999860;0.000000;-0.016753;, + 0.999860;0.000000;-0.016753;, + -0.999860;0.000000;0.016753;, + 0.006548;0.000000;0.999979;, + -0.999860;0.000000;0.016753;, + 0.006548;0.000000;0.999979;, + 0.999860;0.000000;-0.016753;, + 0.006548;0.000000;0.999979;, + 0.999860;0.000000;-0.016753;, + 0.006548;0.000000;0.999979;, + -0.368706;-0.354448;0.859315;, + -0.368706;-0.354448;0.859315;, + -0.368706;-0.354448;0.859315;, + -0.368706;-0.354448;0.859315;, + -0.155472;-0.914282;0.374054;, + 0.000000;-0.300369;0.953823;, + 0.000000;-0.300369;0.953823;, + 0.000000;-0.300369;0.953823;, + 0.000000;-0.300369;0.953823;, + -0.000000;-0.929961;0.367659;, + -0.000000;-0.929961;0.367659;, + 0.000000;-0.886848;0.462062;, + 0.000000;-0.886848;0.462062;, + -0.368706;0.354448;0.859315;, + -0.368706;0.354448;0.859315;, + -0.368706;0.354448;0.859315;, + -0.155472;0.914282;0.374054;, + 0.000000;0.300369;0.953823;, + 0.000000;0.300369;0.953823;, + 0.000000;0.886848;0.462062;, + 0.000000;0.886848;0.462062;, + 0.000000;0.929961;0.367659;, + 0.000000;0.929961;0.367659;, + 0.000000;0.300369;0.953823;, + 0.000000;0.300369;0.953823;, + 0.008294;0.000000;0.999966;, + 0.952657;0.000000;0.304046;, + 0.952657;0.000000;0.304046;, + 0.897253;-0.281640;0.340023;, + 0.897253;-0.281640;0.340023;, + 0.428060;-0.799374;0.421624;, + 0.428060;-0.799374;0.421624;, + 0.428060;-0.799374;0.421624;, + 0.428060;-0.799374;0.421624;, + 0.410415;-0.110414;0.905189;, + 0.410415;-0.110414;0.905189;, + 0.458637;0.000000;0.888624;, + 0.458637;0.000000;0.888624;, + -0.418146;-0.801329;0.427815;, + -0.418146;-0.801329;0.427815;, + -0.418146;-0.801329;0.427815;, + -0.421913;-0.784056;0.455242;, + -0.421913;-0.784056;0.455242;, + -0.421913;-0.784056;0.455242;, + -0.000000;-0.000000;1.000000;, + -0.115463;-0.249286;0.961522;, + -0.115463;-0.249286;0.961522;, + 0.179157;-0.288632;0.940529;, + 0.179157;-0.288632;0.940529;, + -0.000000;0.000000;1.000000;, + -0.191832;-0.385043;0.902742;, + -0.000000;-0.000000;1.000000;, + -0.292367;-0.866429;0.404750;, + -0.292367;-0.866429;0.404750;, + -0.292367;-0.866429;0.404750;, + -0.830569;-0.387539;0.399961;, + -0.830569;-0.387539;0.399961;, + -0.830569;-0.387539;0.399961;, + -0.830569;-0.387539;0.399961;, + -0.000000;0.000000;1.000000;, + -0.109902;-0.344862;0.932197;, + -0.109902;-0.344862;0.932197;, + -0.945889;0.000000;0.324489;, + -0.945889;0.000000;0.324489;, + -0.439396;0.000000;0.898293;, + -0.439396;0.000000;0.898293;, + -0.442680;-0.198092;0.874525;, + -0.442680;-0.198092;0.874525;, + 0.000000;0.445625;0.895220;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.797864;0.602838;, + 0.410381;0.364278;-0.835996;, + 0.410381;0.364278;-0.835996;, + 0.410381;0.364278;-0.835996;, + 0.410381;0.364278;-0.835996;, + 0.000000;0.435777;-0.900055;, + 0.000000;0.435777;-0.900055;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.222802;0.267250;0.937516;, + 0.694989;0.067591;0.715836;, + 0.694989;0.067591;0.715836;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.656242;0.365940;0.659875;, + 0.000000;0.445625;0.895220;, + 0.000000;0.797864;0.602838;, + 0.000000;0.000000;-1.000000;, + 0.598854;-0.729241;-0.331031;, + 0.598854;-0.729241;-0.331031;, + 0.598854;-0.729241;-0.331031;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.948481;0.316834;, + -1.000000;0.000000;0.000000;, + 0.294926;-0.896305;0.331144;, + 0.294926;-0.896305;0.331144;, + 0.458630;0.558096;-0.691511;, + 0.458630;0.558096;-0.691511;, + 0.000000;0.803358;-0.595497;, + 0.920337;-0.258232;-0.293762;, + 0.843584;0.257465;-0.471252;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.999619;0.027602;, + 0.912505;0.010391;-0.408934;, + 0.912505;0.010391;-0.408934;, + 0.665236;0.018966;-0.746392;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.694990;0.067591;0.715836;, + -0.694990;0.067591;0.715836;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -0.222802;0.267250;0.937516;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;-1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;-0.016753;, + -0.006548;0.000000;-0.999979;, + -0.999860;0.000000;0.016753;, + -0.006548;0.000000;-0.999979;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;0.016753;, + 0.000000;1.000000;0.000000;, + 0.999860;0.000000;-0.016754;, + 0.000000;1.000000;0.000000;, + 0.006548;0.000000;0.999979;, + 0.999860;0.000000;-0.016753;, + -0.999860;0.000000;0.016753;, + 0.006548;0.000000;0.999979;, + 0.000000;1.000000;0.000000;, + -0.999860;0.000000;0.016753;, + 0.006548;0.000000;0.999979;, + 0.999860;0.000000;-0.016753;, + 0.006548;0.000000;0.999979;, + -0.999860;0.000000;0.016753;, + 0.000000;-1.000000;0.000000;, + -0.006548;0.000000;-0.999979;, + -0.999860;0.000000;0.016753;, + 0.006548;0.000000;0.999979;, + 0.006548;0.000000;0.999979;, + 0.999860;0.000000;-0.016753;, + -0.006548;0.000000;-0.999979;, + 0.999860;0.000000;-0.016753;, + 0.000000;-1.000000;0.000000;, + 0.831040;0.403243;0.383102;, + 0.831040;0.403243;0.383102;, + 0.831040;0.403243;0.383102;, + 0.831040;0.403243;0.383102;, + 0.282244;0.875709;0.391756;, + 0.282244;0.875709;0.391756;, + 0.282244;0.875709;0.391756;, + 0.457151;0.212943;0.863521;, + 0.457151;0.212943;0.863521;, + -0.000000;0.933082;0.359664;, + -0.000000;0.933082;0.359664;, + -0.000000;0.405468;0.914109;, + -0.000000;0.405468;0.914109;, + 0.109882;0.357779;0.927319;, + 0.109882;0.357779;0.927319;, + -0.349235;0.855784;0.381665;, + -0.349235;0.855784;0.381665;, + -0.349235;0.855784;0.381665;, + -0.349235;0.855784;0.381665;, + -0.859819;0.357289;0.364767;, + -0.859819;0.357289;0.364767;, + -0.859819;0.357289;0.364767;, + -0.142369;0.355966;0.923590;, + -0.142369;0.355966;0.923590;, + -0.486422;0.202974;0.849820;, + -0.486422;0.202974;0.849820;, + 0.231731;0.696564;0.679043;, + 0.231731;0.696564;0.679043;, + 0.718709;0.648693;0.250309;, + 0.718709;0.648693;0.250309;, + 0.718709;0.648693;0.250309;, + 0.718709;0.648693;0.250309;, + 1.000000;0.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.919279;0.393601;-0.001941;, + 0.919279;0.393601;-0.001941;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.834468;0.551056;, + 0.370322;0.928840;-0.010859;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.000000;-0.834468;0.551056;, + 0.999885;0.015182;0.000000;, + 0.999885;0.015182;0.000000;, + 0.999956;-0.009391;0.000000;, + 0.999956;-0.009391;0.000000;, + 0.186216;0.982509;0.000000;, + 0.817769;0.575546;0.000000;, + 0.817769;0.575546;0.000000;, + 0.164920;-0.986307;0.000000;, + 0.808550;-0.588427;0.000000;, + 0.808550;-0.588427;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.999519;-0.012421;0.028413;, + 0.000000;-0.975913;0.218160;, + -0.718710;0.648693;0.250309;, + -0.718710;0.648693;0.250309;, + -0.718710;0.648693;0.250309;, + -0.718710;0.648693;0.250309;, + -0.231732;0.696564;0.679043;, + -0.231732;0.696564;0.679043;, + 0.996793;-0.079877;-0.004828;, + 0.879287;-0.284211;0.382202;, + 0.000000;-0.249931;0.968264;, + 0.449264;-0.278514;0.848877;, + 0.000000;0.607263;0.794501;, + 0.999551;-0.028922;-0.007867;, + 0.920795;-0.364979;-0.137577;, + 0.920795;-0.364979;-0.137577;, + 0.924846;-0.329505;0.189965;, + 0.924846;-0.329505;0.189965;, + 0.924846;-0.329505;0.189965;, + 0.868861;-0.198793;-0.453389;, + 0.868861;-0.198793;-0.453389;, + 0.374350;-0.888608;-0.265025;, + 0.374350;-0.888608;-0.265025;, + 0.000000;-0.964405;-0.264430;, + 0.000000;-0.869582;0.493788;, + 0.000000;-0.869582;0.493788;, + 0.379211;-0.803330;0.459195;, + 0.379211;-0.803330;0.459195;, + 0.379211;-0.803330;0.459195;, + 1.000000;0.000000;0.000000;, + 0.910502;0.394198;0.124877;, + 0.918267;0.364101;-0.155619;, + 0.918267;0.364101;-0.155619;, + 0.852588;-0.139808;0.503535;, + 0.852588;-0.139808;0.503535;, + 0.881297;0.207501;0.424568;, + 0.881297;0.207501;0.424568;, + 0.867287;0.166714;-0.469062;, + 0.867287;0.166714;-0.469062;, + 0.000000;-0.265726;0.964049;, + 0.369966;-0.247588;0.895447;, + 0.369966;-0.247588;0.895447;, + 0.000000;0.441670;0.897178;, + 0.000000;0.441670;0.897178;, + 0.413389;0.401188;0.817410;, + 0.413389;0.401188;0.817410;, + 0.413389;0.401188;0.817410;, + 0.413389;0.401188;0.817410;, + 0.000000;0.946708;0.322092;, + 0.345924;0.891018;0.293977;, + 0.345924;0.891018;0.293977;, + 0.000000;0.944576;-0.328294;, + 0.363628;0.875934;-0.317041;, + 0.363628;0.875934;-0.317041;, + 0.892669;-0.416427;0.172425;, + 0.892669;-0.416427;0.172425;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.999666;0.025839;, + 1.000000;0.000000;0.000000;, + 0.365213;0.930924;0.000867;, + 0.916507;0.400018;0.000880;, + 0.916507;0.400018;0.000880;, + 0.916507;-0.400018;0.000881;, + 0.916507;-0.400018;0.000881;, + 0.365213;-0.930924;0.000867;, + 0.747129;-0.554595;0.366363;, + 0.747129;-0.554595;0.366363;, + 0.747129;-0.554595;0.366363;, + 0.947248;0.154288;0.280921;, + 0.947248;0.154288;0.280921;, + 0.947248;0.154288;0.280921;, + 0.196577;-0.789407;0.581544;, + 0.196577;-0.789407;0.581544;, + 0.313397;-0.205419;0.927138;, + 0.550087;0.653417;0.520048;, + 0.540165;0.139016;0.829998;, + 0.360386;0.905749;0.223026;, + 0.999519;-0.012421;0.028413;, + 0.000000;-0.694243;0.719740;, + 0.999519;-0.012421;0.028413;, + 0.000000;-0.182834;0.983144;, + 0.297687;0.906393;-0.299723;, + 0.297687;0.906393;-0.299723;, + 0.000000;0.949568;-0.313562;, + 0.888768;0.435110;-0.144120;, + 0.888768;0.435110;-0.144120;, + 0.000000;-0.629060;0.777357;, + 0.000000;-0.629060;0.777357;, + -1.000000;0.000000;0.000000;, + 0.253225;-0.608206;0.752305;, + 0.253225;-0.608206;0.752305;, + 0.253225;-0.608206;0.752305;, + 0.253225;-0.608206;0.752305;, + 0.346801;-0.205807;0.915080;, + 0.346801;-0.205807;0.915080;, + 0.000000;-0.143364;0.989670;, + 0.000000;-0.432176;0.901789;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.827784;0.561046;, + 0.867484;-0.312547;0.387021;, + 0.867484;-0.312547;0.387021;, + 0.867484;-0.312547;0.387021;, + 0.909236;-0.093398;0.405669;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.999215;0.039615;, + 1.000000;0.000000;0.000000;, + 0.993070;0.000000;0.117523;, + 0.000000;-0.976749;0.214388;, + 0.515284;-0.506815;0.691102;, + 0.515284;-0.506815;0.691102;, + 0.515284;-0.506815;0.691102;, + 0.523532;0.520184;0.674777;, + 0.523532;0.520184;0.674777;, + 0.523532;0.520184;0.674777;, + 0.000000;0.986719;0.162438;, + 0.993070;0.000000;0.117523;, + 0.356854;0.918943;0.167923;, + 0.264647;0.688916;0.674802;, + 0.264647;0.688916;0.674802;, + 0.903543;0.390832;0.175672;, + 0.903543;0.390832;0.175672;, + 0.505677;0.216655;0.835075;, + 0.505677;0.216655;0.835075;, + 0.505677;0.216655;0.835075;, + 0.903542;-0.390835;0.175672;, + 0.903542;-0.390835;0.175672;, + 0.505675;-0.216658;0.835076;, + 0.505675;-0.216658;0.835076;, + 0.505675;-0.216658;0.835076;, + 0.356852;-0.918945;0.167922;, + 0.264644;-0.688919;0.674800;, + 0.264644;-0.688919;0.674800;, + 0.000000;0.493245;0.869891;, + 0.000000;0.493245;0.869891;, + 0.415843;0.444085;0.793639;, + 0.415843;0.444085;0.793639;, + 0.415843;0.444085;0.793639;, + 0.415843;0.444085;0.793639;, + 0.342656;0.907349;0.243524;, + 0.342656;0.907349;0.243524;, + 0.000000;0.963882;0.266329;, + 0.908555;0.404498;0.104448;, + 0.908555;0.404498;0.104448;, + 0.882298;0.226639;0.412534;, + -1.000000;-0.000000;-0.000000;, + 0.689334;0.531821;-0.491919;, + 0.689334;0.531821;-0.491919;, + 0.689334;0.531821;-0.491919;, + 0.697330;-0.000000;-0.716750;, + 0.697330;-0.000000;-0.716750;, + 0.689334;-0.531822;-0.491919;, + 0.689334;-0.531822;-0.491919;, + 0.689334;-0.531822;-0.491919;, + 0.682700;-0.730699;0.000000;, + 0.682700;-0.730699;0.000000;, + 1.000000;-0.000000;-0.000000;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + -0.689334;0.531821;-0.491919;, + -0.689334;0.531821;-0.491919;, + -0.689334;0.531821;-0.491919;, + -0.697330;-0.000000;-0.716750;, + -0.697330;-0.000000;-0.716750;, + -0.689334;-0.531822;-0.491919;, + -0.689334;-0.531822;-0.491919;, + -0.689334;-0.531822;-0.491919;, + -0.682700;-0.730699;0.000000;, + -0.682700;-0.730699;0.000000;, + 0.682700;0.730699;0.000000;, + 0.682700;0.730699;0.000000;, + 0.000000;1.000000;0.000000;, + -0.682700;0.730699;0.000000;, + -0.682700;0.730699;0.000000;, + 0.689334;0.531821;0.491919;, + 0.689334;0.531821;0.491919;, + 0.689334;0.531821;0.491919;, + 0.697331;-0.000000;0.716750;, + 0.697331;-0.000000;0.716750;, + 0.689334;-0.531822;0.491919;, + 0.689334;-0.531822;0.491919;, + 0.689334;-0.531822;0.491919;, + 0.000000;-0.000000;1.000000;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + -0.689334;0.531821;0.491919;, + -0.689334;0.531821;0.491919;, + -0.689334;0.531821;0.491919;, + -0.697331;-0.000000;0.716750;, + -0.697331;-0.000000;0.716750;, + -0.689334;-0.531822;0.491919;, + -0.689334;-0.531822;0.491919;, + -0.689334;-0.531822;0.491919;, + 0.365213;0.930924;0.000867;, + 0.916507;0.400018;0.000881;, + 0.916507;0.400018;0.000881;, + 0.916507;-0.400018;0.000881;, + 0.916507;-0.400018;0.000881;, + 0.365213;-0.930924;0.000867;, + 0.993070;0.000000;0.117523;, + 0.000000;-0.976748;0.214391;, + 0.515283;-0.506814;0.691102;, + 0.515283;-0.506814;0.691102;, + 0.515283;-0.506814;0.691102;, + 0.523532;0.520184;0.674776;, + 0.523532;0.520184;0.674776;, + 0.523532;0.520184;0.674776;, + 0.000000;0.986719;0.162435;, + 0.993070;0.000000;0.117523;, + 0.356851;0.918944;0.167924;, + 0.264643;0.688917;0.674802;, + 0.264643;0.688917;0.674802;, + 0.903541;0.390835;0.175673;, + 0.903541;0.390835;0.175673;, + 0.505675;0.216658;0.835076;, + 0.505675;0.216658;0.835076;, + 0.505675;0.216658;0.835076;, + 0.903543;-0.390832;0.175672;, + 0.903543;-0.390832;0.175672;, + 0.505677;-0.216655;0.835075;, + 0.505677;-0.216655;0.835075;, + 0.505677;-0.216655;0.835075;, + 0.356854;-0.918943;0.167923;, + 0.264647;-0.688916;0.674802;, + 0.264647;-0.688916;0.674802;, + -0.414336;-0.420954;-0.806922;, + -0.414336;-0.420954;-0.806922;, + -0.414336;-0.420954;-0.806922;, + -0.414336;-0.420954;-0.806922;, + -0.410381;0.364278;-0.835996;, + -0.410381;0.364278;-0.835996;, + -0.410381;0.364278;-0.835996;, + -0.410381;0.364278;-0.835996;, + -0.920795;-0.364979;-0.137577;, + -0.920795;-0.364979;-0.137577;, + -0.924846;-0.329505;0.189965;, + -0.924846;-0.329505;0.189965;, + -0.924846;-0.329505;0.189965;, + -0.868862;-0.198793;-0.453388;, + -0.868862;-0.198793;-0.453388;, + -0.374350;-0.888608;-0.265025;, + -0.374350;-0.888608;-0.265025;, + -0.379211;-0.803330;0.459195;, + -0.379211;-0.803330;0.459195;, + -0.379211;-0.803330;0.459195;, + -0.910502;0.394198;0.124877;, + -0.918267;0.364101;-0.155618;, + -0.918267;0.364101;-0.155618;, + -0.852588;-0.139808;0.503534;, + -0.852588;-0.139808;0.503534;, + -0.881298;0.207501;0.424568;, + -0.881298;0.207501;0.424568;, + -0.867287;0.166715;-0.469062;, + -0.867287;0.166715;-0.469062;, + -0.369966;-0.247588;0.895447;, + -0.369966;-0.247588;0.895447;, + -0.413389;0.401187;0.817410;, + -0.413389;0.401187;0.817410;, + -0.413389;0.401187;0.817410;, + -0.413389;0.401187;0.817410;, + -0.345924;0.891018;0.293977;, + -0.345924;0.891018;0.293977;, + -0.363628;0.875934;-0.317041;, + -0.363628;0.875934;-0.317041;, + 0.000000;0.520825;0.853663;, + -0.983435;-0.159487;0.086139;, + 0.000000;0.520825;0.853663;, + 0.000000;0.999161;-0.040963;, + 0.000000;0.999161;-0.040963;, + -0.983435;-0.159487;0.086139;, + 0.000000;0.699533;-0.714601;, + -0.653421;-0.748902;-0.110393;, + -0.653421;-0.748902;-0.110393;, + 0.000000;-0.332036;0.943267;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.332036;0.943267;, + 0.000000;0.098302;0.995157;, + 0.000000;0.990031;-0.140848;, + -1.000000;0.000000;0.000000;, + 0.000000;0.990031;-0.140848;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.098305;-0.995156;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.699991;0.714152;, + 0.000000;-0.098305;-0.995156;, + 0.000000;-0.832489;0.554042;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.832489;0.554042;, + 0.000000;-0.008043;0.999968;, + -1.000000;0.000000;0.000000;, + 0.000000;0.511880;0.859057;, + -1.000000;0.000000;0.000000;, + 0.000000;0.525640;-0.850707;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.987687;0.156440;, + 0.000000;0.525640;-0.850707;, + 0.000000;0.520825;0.853663;, + 0.983434;-0.159485;0.086147;, + 0.000000;0.520825;0.853663;, + 0.983434;-0.159485;0.086147;, + 0.000000;0.999161;-0.040963;, + 0.000000;0.999161;-0.040963;, + 0.653422;-0.748902;-0.110387;, + 0.653422;-0.748902;-0.110387;, + 0.000000;0.699533;-0.714601;, + 0.000000;0.236676;0.971589;, + 0.653422;-0.748902;-0.110387;, + 0.653422;-0.748902;-0.110387;, + -0.653421;-0.748902;-0.110393;, + 0.000000;0.236676;0.971589;, + -0.653421;-0.748902;-0.110393;, + 0.000000;-0.332036;0.943267;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.332036;0.943267;, + 1.000000;0.000000;0.000000;, + 0.000000;0.990031;-0.140848;, + 0.000000;0.098302;0.995157;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.098305;-0.995156;, + 0.000000;0.990031;-0.140848;, + 0.000000;-0.699991;0.714152;, + 0.000000;-0.098305;-0.995156;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.832489;0.554042;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.832489;0.554042;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.008043;0.999968;, + 1.000000;0.000000;0.000000;, + 0.000000;0.525640;-0.850707;, + 0.000000;0.511880;0.859057;, + 0.000000;-0.987687;0.156440;, + 0.000000;0.525640;-0.850707;, + 1.000000;0.000000;0.000000;, + -0.348514;0.937303;0.000000;, + -0.152110;-0.074173;-0.985576;, + -0.348514;0.937303;0.000000;, + 0.633860;0.773448;0.000000;, + 0.633860;0.773448;0.000000;, + -0.152110;-0.074173;-0.985576;, + 0.987527;0.157450;0.000000;, + -0.363340;-0.661392;-0.656159;, + -0.363340;-0.661392;-0.656159;, + -0.956602;0.291397;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.956602;0.291397;0.000000;, + -0.731614;0.681719;0.000000;, + 0.702697;0.711489;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.702697;0.711489;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.731621;-0.681712;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.987428;-0.158070;0.000000;, + 0.731621;-0.681712;0.000000;, + -0.937513;-0.347951;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.937513;-0.347951;0.000000;, + -0.803579;0.595198;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.353851;0.935302;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.997828;-0.065872;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.713241;-0.700918;0.000000;, + 0.997828;-0.065872;0.000000;, + -0.348514;0.937303;0.000000;, + -0.152109;-0.074175;0.985576;, + -0.348514;0.937303;0.000000;, + -0.152109;-0.074175;0.985576;, + 0.633860;0.773448;0.000000;, + 0.633860;0.773448;0.000000;, + -0.363339;-0.661393;0.656158;, + -0.363339;-0.661393;0.656158;, + 0.987527;0.157450;0.000000;, + -0.622827;0.782360;0.000000;, + -0.363339;-0.661393;0.656158;, + -0.363339;-0.661393;0.656158;, + -0.363340;-0.661392;-0.656159;, + -0.622827;0.782360;0.000000;, + -0.363340;-0.661392;-0.656159;, + -0.956602;0.291397;0.000000;, + 0.000000;0.000000;1.000000;, + -0.956602;0.291397;0.000000;, + 0.000000;0.000000;1.000000;, + 0.702697;0.711489;0.000000;, + -0.731614;0.681719;0.000000;, + 0.000000;0.000000;1.000000;, + 0.731621;-0.681712;0.000000;, + 0.702697;0.711489;0.000000;, + -0.987428;-0.158070;0.000000;, + 0.731621;-0.681712;0.000000;, + 0.000000;0.000000;1.000000;, + -0.937513;-0.347951;0.000000;, + 0.000000;0.000000;1.000000;, + -0.937513;-0.347951;0.000000;, + 0.000000;0.000000;1.000000;, + -0.803579;0.595198;0.000000;, + 0.000000;0.000000;1.000000;, + 0.997828;-0.065872;0.000000;, + -0.353851;0.935302;0.000000;, + -0.713241;-0.700918;0.000000;, + 0.997828;-0.065872;0.000000;, + 0.000000;0.000000;1.000000;, + -0.334945;0.942238;0.000000;, + -0.163134;-0.084068;-0.983016;, + -0.334945;0.942238;0.000000;, + 0.631267;0.775565;0.000000;, + 0.631267;0.775565;0.000000;, + -0.163134;-0.084068;-0.983016;, + 0.986099;0.166158;0.000000;, + -0.356869;-0.669712;-0.651253;, + -0.356869;-0.669712;-0.651253;, + -0.953833;0.300339;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.953833;0.300339;0.000000;, + -0.712537;0.701634;0.000000;, + 0.682801;0.730605;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.682801;0.730605;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.712526;-0.701646;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.985989;-0.166808;0.000000;, + 0.712526;-0.701646;0.000000;, + -0.933289;-0.359126;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.933289;-0.359126;0.000000;, + -0.797086;0.603866;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.337034;0.941492;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.997575;-0.069594;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.693605;-0.720355;0.000000;, + 0.997575;-0.069594;0.000000;, + -0.334945;0.942238;0.000000;, + -0.163134;-0.084064;0.983016;, + -0.334945;0.942238;0.000000;, + -0.163134;-0.084064;0.983016;, + 0.631267;0.775565;0.000000;, + 0.631267;0.775565;0.000000;, + -0.356870;-0.669710;0.651254;, + -0.356870;-0.669710;0.651254;, + 0.986099;0.166158;0.000000;, + -0.601679;0.798738;0.000000;, + -0.356870;-0.669710;0.651254;, + -0.356870;-0.669710;0.651254;, + -0.356869;-0.669712;-0.651253;, + -0.601679;0.798738;0.000000;, + -0.356869;-0.669712;-0.651253;, + -0.953833;0.300339;0.000000;, + 0.000000;0.000000;1.000000;, + -0.953833;0.300339;0.000000;, + 0.000000;0.000000;1.000000;, + 0.682801;0.730605;0.000000;, + -0.712537;0.701634;0.000000;, + 0.000000;0.000000;1.000000;, + 0.712526;-0.701646;0.000000;, + 0.682801;0.730605;0.000000;, + -0.985989;-0.166808;0.000000;, + 0.712526;-0.701646;0.000000;, + 0.000000;0.000000;1.000000;, + -0.933289;-0.359126;0.000000;, + 0.000000;0.000000;1.000000;, + -0.933289;-0.359126;0.000000;, + 0.000000;0.000000;1.000000;, + -0.797086;0.603866;0.000000;, + 0.000000;0.000000;1.000000;, + 0.997575;-0.069594;0.000000;, + -0.337034;0.941492;0.000000;, + -0.693605;-0.720355;0.000000;, + 0.997575;-0.069594;0.000000;, + 0.000000;0.000000;1.000000;, + -0.348514;0.937303;0.000000;, + -0.152109;-0.074174;-0.985576;, + -0.348514;0.937303;0.000000;, + 0.633860;0.773448;0.000000;, + 0.633860;0.773448;0.000000;, + -0.152109;-0.074174;-0.985576;, + 0.987527;0.157450;0.000000;, + -0.363340;-0.661393;-0.656159;, + -0.363340;-0.661393;-0.656159;, + -0.956602;0.291397;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.956602;0.291397;0.000000;, + -0.731614;0.681719;0.000000;, + 0.702697;0.711489;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.702697;0.711489;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.731621;-0.681712;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.987428;-0.158070;0.000000;, + 0.731621;-0.681712;0.000000;, + -0.937513;-0.347951;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.937513;-0.347951;0.000000;, + -0.803579;0.595198;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.353851;0.935302;0.000000;, + 0.000000;0.000000;-1.000000;, + 0.997828;-0.065872;0.000000;, + 0.000000;0.000000;-1.000000;, + -0.713241;-0.700918;0.000000;, + 0.997828;-0.065872;0.000000;, + -0.348514;0.937303;0.000000;, + -0.152109;-0.074173;0.985577;, + -0.348514;0.937303;0.000000;, + -0.152109;-0.074173;0.985577;, + 0.633860;0.773448;0.000000;, + 0.633860;0.773448;0.000000;, + -0.363340;-0.661392;0.656159;, + -0.363340;-0.661392;0.656159;, + 0.987527;0.157450;0.000000;, + -0.622827;0.782360;0.000000;, + -0.363340;-0.661392;0.656159;, + -0.363340;-0.661392;0.656159;, + -0.363340;-0.661393;-0.656159;, + -0.622827;0.782360;0.000000;, + -0.363340;-0.661393;-0.656159;, + -0.956602;0.291397;0.000000;, + 0.000000;0.000000;1.000000;, + -0.956602;0.291397;0.000000;, + 0.000000;0.000000;1.000000;, + 0.702697;0.711489;0.000000;, + -0.731614;0.681719;0.000000;, + 0.000000;0.000000;1.000000;, + 0.731621;-0.681712;0.000000;, + 0.702697;0.711489;0.000000;, + -0.987428;-0.158070;0.000000;, + 0.731621;-0.681712;0.000000;, + 0.000000;0.000000;1.000000;, + -0.937513;-0.347951;0.000000;, + 0.000000;0.000000;1.000000;, + -0.937513;-0.347951;0.000000;, + 0.000000;0.000000;1.000000;, + -0.803579;0.595198;0.000000;, + 0.000000;0.000000;1.000000;, + 0.997828;-0.065872;0.000000;, + -0.353851;0.935302;0.000000;, + -0.713241;-0.700918;0.000000;, + 0.997828;-0.065872;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.732950;-0.680283;, + 0.000000;0.000000;-1.000000;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-0.732950;-0.680283;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.732950;0.680283;, + 0.000000;0.732950;0.680283;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.732950;0.680283;, + 0.000000;-0.732950;0.680283;, + 0.000000;0.000000;1.000000;, + 0.000000;0.732950;0.680283;, + 0.000000;0.732950;0.680283;, + 0.000000;-0.732950;0.680283;, + 0.000000;-0.732950;0.680283;, + 0.000000;0.732950;0.680283;, + 0.000000;0.732950;0.680283;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.732950;0.680283;, + 0.000000;-0.732950;0.680283;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.732950;-0.680282;, + 0.000000;0.732950;-0.680282;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-0.732950;-0.680282;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.000000;1.000000;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.000000;1.000000;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;0.732950;0.680282;, + 0.000000;-0.000000;1.000000;, + 0.000000;-0.732950;0.680282;, + 0.000000;-0.732950;0.680282;, + -0.225238;0.000000;-0.974304;, + 0.000000;-1.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.225238;0.000000;-0.974304;, + 0.225236;-0.000000;-0.974304;, + 0.000000;1.000000;0.000000;, + 0.225236;-0.000000;-0.974304;, + 0.000000;-1.000000;0.000000;, + 0.747100;0.000000;0.664711;, + 0.747100;0.000000;0.664711;, + 0.000000;-1.000000;0.000000;, + 0.747100;0.000000;0.664711;, + 0.747100;0.000000;0.664711;, + 0.000000;1.000000;0.000000;, + 1.000000;-0.000001;-0.000001;, + 0.000000;1.000000;0.000000;, + 1.000000;-0.000001;-0.000001;, + 0.000000;-1.000000;0.000000;, + 0.747099;-0.000001;-0.664712;, + 0.000000;-1.000000;0.000000;, + 0.747099;-0.000001;-0.664712;, + 0.747099;-0.000001;-0.664712;, + 0.000000;1.000000;0.000000;, + 0.747099;-0.000001;-0.664712;, + -0.747100;0.000000;0.664712;, + 0.000000;-1.000000;0.000000;, + -0.747100;0.000000;0.664712;, + -1.000000;0.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;1.000000;0.000000;, + -0.747100;0.000000;0.664712;, + 0.000000;1.000000;0.000000;, + -0.747100;0.000000;0.664712;, + -0.747100;0.000000;-0.664711;, + -0.747100;0.000000;-0.664711;, + 0.000000;-1.000000;0.000000;, + -0.747100;0.000000;-0.664711;, + -0.747100;0.000000;-0.664711;, + 0.000000;1.000000;0.000000;, + -0.225237;0.000000;0.974304;, + 0.000000;1.000000;0.000000;, + -0.225237;0.000000;0.974304;, + 0.000000;-1.000000;0.000000;, + 0.225237;0.000000;0.974304;, + 0.000000;-1.000000;0.000000;, + 0.225237;0.000000;0.974304;, + 0.000000;1.000000;0.000000;, + -0.008295;0.000000;-0.999966;, + 0.739674;0.429301;-0.518250;, + 0.739674;0.429301;-0.518250;, + 0.739674;0.429301;-0.518250;, + -0.003775;0.861001;-0.508589;, + -0.003775;0.861001;-0.508589;, + -0.003775;0.861001;-0.508589;, + 0.739674;-0.429301;-0.518250;, + 0.739674;-0.429301;-0.518250;, + 0.739674;-0.429301;-0.518250;, + -0.003775;-0.861001;-0.508589;, + -0.003775;-0.861001;-0.508589;, + -0.003775;-0.861001;-0.508589;, + -0.751445;-0.431738;-0.498932;, + -0.751445;-0.431738;-0.498932;, + -0.751445;-0.431738;-0.498932;, + -0.751445;0.431738;-0.498932;, + -0.751445;0.431738;-0.498932;, + -0.751445;0.431738;-0.498932;, + 0.003774;0.861001;0.508589;, + 0.003774;0.861001;0.508589;, + 0.003774;0.861001;0.508589;, + 0.751445;0.431738;0.498932;, + 0.751445;0.431738;0.498932;, + 0.751445;0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.003774;-0.861001;0.508589;, + 0.003774;-0.861001;0.508589;, + 0.003774;-0.861001;0.508589;, + -0.739674;-0.429301;0.518250;, + -0.739674;-0.429301;0.518250;, + -0.739674;-0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + 0.008295;0.000000;0.999966;, + -0.008295;0.000000;-0.999966;, + 0.739674;0.429300;-0.518250;, + 0.739674;0.429300;-0.518250;, + 0.739674;0.429300;-0.518250;, + -0.003774;0.861001;-0.508589;, + -0.003774;0.861001;-0.508589;, + -0.003774;0.861001;-0.508589;, + 0.739674;-0.429300;-0.518250;, + 0.739674;-0.429300;-0.518250;, + 0.739674;-0.429300;-0.518250;, + -0.003774;-0.861001;-0.508589;, + -0.003774;-0.861001;-0.508589;, + -0.003774;-0.861001;-0.508589;, + -0.751445;-0.431739;-0.498932;, + -0.751445;-0.431739;-0.498932;, + -0.751445;-0.431739;-0.498932;, + -0.751445;0.431739;-0.498932;, + -0.751445;0.431739;-0.498932;, + -0.751445;0.431739;-0.498932;, + 0.003775;0.861001;0.508589;, + 0.003775;0.861001;0.508589;, + 0.003775;0.861001;0.508589;, + 0.751444;0.431738;0.498932;, + 0.751444;0.431738;0.498932;, + 0.751444;0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.751445;-0.431738;0.498932;, + 0.003775;-0.861001;0.508589;, + 0.003775;-0.861001;0.508589;, + 0.003775;-0.861001;0.508589;, + -0.739674;-0.429301;0.518250;, + -0.739674;-0.429301;0.518250;, + -0.739674;-0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + -0.739674;0.429301;0.518250;, + 0.008294;0.000000;0.999966;, + -0.223484;-0.878060;-0.423161;, + -0.223484;-0.878060;-0.423161;, + -0.267818;-0.029603;-0.963015;, + -0.267818;-0.029603;-0.963015;, + -0.831748;-0.535907;-0.144912;, + -0.831748;-0.535907;-0.144912;, + -0.831748;-0.535907;-0.144912;, + -0.823105;-0.251757;-0.509035;, + -0.823105;-0.251757;-0.509035;, + -0.823105;-0.251757;-0.509035;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.924838;-0.380361;, + 0.000000;-0.924838;-0.380361;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.422375;-0.906421;, + 0.000000;-0.422375;-0.906421;, + -0.321009;0.873103;-0.366938;, + -0.321009;0.873103;-0.366938;, + -0.851870;0.335310;-0.402349;, + -0.851870;0.335310;-0.402349;, + -0.851870;0.335310;-0.402349;, + 1.000000;0.000000;0.000000;, + 0.000000;0.657334;-0.753599;, + 0.000000;0.657334;-0.753599;, + -0.289072;-0.847857;0.444496;, + -0.289072;-0.847857;0.444496;, + -0.277574;-0.261929;0.924308;, + -0.277574;-0.261929;0.924308;, + -0.945889;-0.101973;0.308053;, + -0.945889;-0.101973;0.308053;, + -0.700118;-0.566886;0.434137;, + -0.700118;-0.566886;0.434137;, + -0.700118;-0.566886;0.434137;, + -0.700118;-0.566886;0.434137;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.425050;0.905170;, + 0.000000;-0.425050;0.905170;, + 1.000000;0.000000;0.000000;, + 0.000000;-0.956622;0.291332;, + 0.000000;-0.956622;0.291332;, + -1.000000;0.000001;0.000000;, + -1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + -0.257683;0.000000;0.966230;, + -0.294879;0.955535;0.000000;, + -0.464897;0.799763;0.379802;, + -0.461274;0.358979;0.811394;, + -0.793473;0.419778;0.440667;, + -0.793473;0.419778;0.440667;, + -0.793473;0.419778;0.440667;, + -0.707107;0.707106;0.000000;, + -0.707107;0.707106;0.000000;, + -0.707107;0.707106;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707106;0.000000;, + -0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.000000;1.000000;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -0.000000;-1.000000;0.000000;, + -0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000001;0.000000;, + 1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + -1.000000;0.000001;0.000000;, + -1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707106;0.000000;, + -0.707107;0.707106;0.000000;, + -0.707107;0.707106;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707106;0.000000;, + -0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.000000;1.000000;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -0.000000;-1.000000;0.000000;, + -0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000001;0.000000;, + 1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000001;0.000000;, + -1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707106;0.000000;, + -0.707107;0.707106;0.000000;, + -0.707107;0.707106;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707106;0.000000;, + -0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.000000;1.000000;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -0.000000;-1.000000;0.000000;, + -0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000001;0.000000;, + 1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;0.000000;1.000000;, + 0.223484;-0.878060;-0.423161;, + 0.223484;-0.878060;-0.423161;, + 0.267818;-0.029603;-0.963015;, + 0.267818;-0.029603;-0.963015;, + 0.831748;-0.535907;-0.144912;, + 0.831748;-0.535907;-0.144912;, + 0.831748;-0.535907;-0.144912;, + 0.823105;-0.251757;-0.509035;, + 0.823105;-0.251757;-0.509035;, + 0.823105;-0.251757;-0.509035;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.924838;-0.380361;, + 0.000000;-0.924838;-0.380361;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.422375;-0.906421;, + 0.000000;-0.422375;-0.906421;, + 0.321009;0.873103;-0.366938;, + 0.321009;0.873103;-0.366938;, + 0.851870;0.335310;-0.402349;, + 0.851870;0.335310;-0.402349;, + 0.851870;0.335310;-0.402349;, + -1.000000;0.000000;0.000000;, + 0.000000;0.657334;-0.753599;, + 0.000000;0.657334;-0.753599;, + 0.289072;-0.847857;0.444496;, + 0.289072;-0.847857;0.444496;, + 0.277574;-0.261929;0.924308;, + 0.277574;-0.261929;0.924308;, + 0.945889;-0.101973;0.308053;, + 0.945889;-0.101973;0.308053;, + 0.700118;-0.566886;0.434137;, + 0.700118;-0.566886;0.434137;, + 0.700118;-0.566886;0.434137;, + 0.700118;-0.566886;0.434137;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.425050;0.905170;, + 0.000000;-0.425050;0.905170;, + -1.000000;0.000000;0.000000;, + 0.000000;-0.956622;0.291332;, + 0.000000;-0.956622;0.291332;, + 1.000000;0.000001;0.000000;, + 1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + 0.257683;0.000000;0.966230;, + 0.294879;0.955535;0.000000;, + 0.464897;0.799763;0.379802;, + 0.461274;0.358979;0.811394;, + 0.793473;0.419778;0.440667;, + 0.793473;0.419778;0.440667;, + 0.793473;0.419778;0.440667;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -1.000000;0.000001;0.000000;, + -1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707107;0.000000;, + -0.707107;0.707107;0.000000;, + -0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -1.000000;0.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 1.000000;0.000001;0.000000;, + 1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -1.000000;0.000001;0.000000;, + -1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707107;0.000000;, + -0.707107;0.707107;0.000000;, + -0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 1.000000;0.000001;0.000000;, + 1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.707107;0.707106;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;1.000000;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;-1.000000;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + -0.707106;-0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707106;-0.707107;0.000000;, + -1.000000;0.000001;0.000000;, + -1.000000;0.000001;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707107;0.000000;, + -0.707107;0.707107;0.000000;, + -0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + -0.707107;0.707107;0.000000;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.999619;0.027602;, + 0.000000;0.803358;-0.595497;, + -0.038545;0.132170;-0.990477;, + 0.000000;0.123112;-0.992393;, + 0.038545;0.132170;-0.990477;, + 0.000000;-0.999666;0.025839;, + 0.000000;-0.999215;0.039615;, + 0.000000;0.000000;1.000000;, + 0.000000;-0.998478;0.055145;, + 0.000000;0.949568;-0.313562;, + 0.000000;0.963882;0.266329;, + 0.000000;0.493245;0.869891;, + 0.000000;0.493245;0.869891;; + 4816; + 3;5614,5579,5576;, + 3;1063,1747,1729;, + 3;1068,1035,1038;, + 3;1064,1705,1041;, + 3;1074,1152,1162;, + 3;1045,1042,1154;, + 3;1042,1745,1154;, + 3;1069,1046,1066;, + 3;1039,1042,1045;, + 3;1071,1043,1036;, + 3;1070,1063,1072;, + 3;1066,1044,1074;, + 3;1066,1162,1158;, + 3;1163,1155,1159;, + 3;1046,1152,1044;, + 3;1746,1160,1156;, + 3;1047,0,1;, + 3;740,2279,1047;, + 3;2,1936,740;, + 3;446,764,447;, + 3;762,5,765;, + 3;446,6,7;, + 3;420,737,422;, + 3;1958,1959,1961;, + 3;425,193,9;, + 3;426,766,194;, + 3;1917,737,736;, + 3;1962,766,739;, + 3;421,427,425;, + 3;738,426,423;, + 3;738,1962,739;, + 3;1918,1961,1919;, + 3;1075,1749,1751;, + 3;90,195,234;, + 3;90,234,92;, + 3;196,94,198;, + 3;91,96,95;, + 3;767,463,465;, + 3;466,468,470;, + 3;93,97,96;, + 3;470,478,472;, + 3;467,448,768;, + 3;237,195,448;, + 3;471,237,467;, + 3;238,234,237;, + 3;471,239,238;, + 3;238,235,92;, + 3;770,449,450;, + 3;199,449,197;, + 3;478,240,472;, + 3;241,236,240;, + 3;452,201,454;, + 3;202,454,201;, + 3;242,201,452;, + 3;84,201,204;, + 3;242,99,204;, + 3;204,99,84;, + 3;455,459,453;, + 3;456,205,457;, + 3;452,243,242;, + 3;202,86,206;, + 3;99,243,100;, + 3;84,100,87;, + 3;178,244,209;, + 3;180,227,184;, + 3;229,248,231;, + 3;245,214,249;, + 3;211,189,215;, + 3;185,187,181;, + 3;192,222,178;, + 3;228,229,231;, + 3;210,190,179;, + 3;209,250,216;, + 3;244,232,251;, + 3;178,186,192;, + 3;233,232,222;, + 3;192,227,233;, + 3;774,1048,741;, + 3;743,223,182;, + 3;1053,246,230;, + 3;1079,212,245;, + 3;777,188,213;, + 3;744,188,746;, + 3;224,1053,230;, + 3;747,1048,1054;, + 3;775,746,777;, + 3;1076,1053,1049;, + 3;776,1079,1077;, + 3;748,1050,745;, + 3;1055,1053,1051;, + 3;742,744,746;, + 3;72,163,166;, + 3;61,385,63;, + 3;65,137,61;, + 3;386,76,63;, + 3;431,73,77;, + 3;144,169,172;, + 3;173,434,10;, + 3;146,435,170;, + 3;145,389,147;, + 3;391,1922,436;, + 3;1874,394,1877;, + 3;1923,1878,1925;, + 3;1881,1926,1879;, + 3;1924,439,437;, + 3;1929,440,1927;, + 3;438,395,392;, + 3;442,395,441;, + 3;12,151,154;, + 3;400,1880,396;, + 3;13,1879,1882;, + 3;155,397,398;, + 3;149,396,152;, + 3;2214,2315,2318;, + 3;2218,2214,2318;, + 3;2214,1755,2215;, + 3;1758,2215,1755;, + 3;2218,1753,2214;, + 3;1164,1755,1167;, + 3;1760,6191,1754;, + 3;1765,6191,1763;, + 3;2219,1764,1761;, + 3;2223,1764,2222;, + 3;2319,2321,2323;, + 3;2327,2324,2321;, + 3;2224,2322,2226;, + 3;2316,2226,2322;, + 3;1754,1767,1756;, + 3;6192,1767,6191;, + 3;2329,2222,2325;, + 3;2219,2326,2222;, + 3;1770,2230,1772;, + 3;2220,1773,2231;, + 3;2216,2231,2227;, + 3;2229,2228,2230;, + 3;1168,1172,1165;, + 3;1757,1170,1169;, + 3;1759,1173,1773;, + 3;1767,1771,1774;, + 3;479,485,489;, + 3;1775,1176,1777;, + 3;2232,1777,2234;, + 3;1176,1178,1180;, + 3;479,1180,1178;, + 3;1182,1779,1780;, + 3;1184,1779,1183;, + 3;1780,2236,14;, + 3;1781,2236,1779;, + 3;15,1783,1784;, + 3;2240,1783,2239;, + 3;491,495,496;, + 3;495,497,500;, + 3;502,505,506;, + 3;508,506,505;, + 3;513,515,517;, + 3;514,519,515;, + 3;486,521,524;, + 3;527,519,518;, + 3;1186,495,500;, + 3;1189,495,1188;, + 3;1189,1183,1182;, + 3;1186,1183,1188;, + 3;1190,1193,1194;, + 3;1196,1193,1192;, + 3;1196,505,504;, + 3;1190,505,1192;, + 3;1197,1783,1193;, + 3;1785,1193,1783;, + 3;513,493,492;, + 3;520,522,516;, + 3;503,528,527;, + 3;1179,501,480;, + 3;480,498,481;, + 3;482,493,523;, + 3;523,517,515;, + 3;1174,1187,1179;, + 3;1776,1185,1174;, + 3;2233,1782,1776;, + 3;1181,1195,1177;, + 3;1177,1786,1778;, + 3;1778,2241,2235;, + 3;490,1191,1181;, + 3;487,509,490;, + 3;525,510,488;, + 3;519,507,525;, + 3;1198,1789,1200;, + 3;1787,1794,1790;, + 3;1204,1795,1792;, + 3;1210,1212,1213;, + 3;1201,1796,1206;, + 3;1199,1211,1210;, + 3;1199,1213,1205;, + 3;1213,1207,1205;, + 3;1202,1212,1211;, + 3;1214,2244,1216;, + 3;1214,1220,1223;, + 3;1221,1228,1224;, + 3;2245,1230,1217;, + 3;2242,1232,2247;, + 3;1217,2246,1230;, + 3;2242,1232,2247;, + 3;1215,1229,1232;, + 3;1231,1222,1218;, + 3;2248,2333,16;, + 3;2331,17,2334;, + 3;2249,2335,2331;, + 3;78,68,64;, + 3;82,167,174;, + 3;164,175,168;, + 3;428,176,165;, + 3;387,445,432;, + 3;401,138,156;, + 3;156,141,157;, + 3;158,66,69;, + 3;62,70,67;, + 3;64,71,62;, + 3;74,80,79;, + 3;432,444,428;, + 3;1081,19,20;, + 3;21,1082,1081;, + 3;2108,1797,1749;, + 3;24,1751,1799;, + 3;469,529,478;, + 3;771,476,463;, + 3;94,218,198;, + 3;96,102,95;, + 3;241,529,252;, + 3;458,25,459;, + 3;207,461,458;, + 3;88,220,208;, + 3;101,89,88;, + 3;464,474,468;, + 3;97,104,96;, + 3;241,105,98;, + 3;1750,1800,1752;, + 3;451,219,462;, + 3;451,779,772;, + 3;1963,1967,1968;, + 3;1968,2109,2110;, + 3;2111,2109,2113;, + 3;1964,2114,1965;, + 3;1937,1968,1939;, + 3;1939,2110,2081;, + 3;2081,2111,2082;, + 3;1938,2112,1964;, + 3;1884,2256,2257;, + 3;1931,2263,1934;, + 3;1932,2258,2261;, + 3;1889,1885,2259;, + 3;2263,2260,2256;, + 3;1935,1890,1933;, + 3;159,1889,161;, + 3;27,1891,1892;, + 3;28,1886,160;, + 3;1552,1554,1557;, + 3;916,1626,1554;, + 3;980,1631,1626;, + 3;1558,1560,1553;, + 3;1555,1559,1558;, + 3;1627,1561,1556;, + 3;1632,1633,1628;, + 3;1632,1636,1635;, + 3;1629,983,1636;, + 3;981,919,984;, + 3;917,1560,920;, + 3;1563,1567,921;, + 3;921,1637,985;, + 3;985,1640,1642;, + 3;1565,1560,1559;, + 3;1568,1559,1562;, + 3;1638,1561,1634;, + 3;1641,1633,1635;, + 3;1641,1636,1643;, + 3;1643,983,986;, + 3;987,919,922;, + 3;923,1560,1564;, + 3;1570,1575,1577;, + 3;1580,1575,1573;, + 3;1578,1588,1571;, + 3;1583,924,926;, + 3;1446,1452,1454;, + 3;1456,1452,1459;, + 3;1449,1590,1592;, + 3;1460,930,1457;, + 3;925,1591,931;, + 3;1588,1592,1590;, + 3;1586,928,1593;, + 3;926,930,929;, + 3;852,793,796;, + 3;1341,1981,1984;, + 3;2013,1462,1464;, + 3;876,880,882;, + 3;880,1469,1472;, + 3;794,1436,1348;, + 3;1351,795,1349;, + 3;877,1470,1467;, + 3;1471,1481,1473;, + 3;2017,1478,1462;, + 3;1439,1982,1345;, + 3;1437,1346,1350;, + 3;1350,1342,1352;, + 3;1483,1463,1479;, + 3;1474,1480,1471;, + 3;884,887,889;, + 3;2018,2022,2024;, + 3;1487,886,885;, + 3;1488,1494,1489;, + 3;2025,1495,1492;, + 3;852,886,854;, + 3;2020,1983,2022;, + 3;1490,1497,886;, + 3;855,1497,1436;, + 3;1496,1498,1491;, + 3;1438,1499,1440;, + 3;2023,1500,1495;, + 3;1439,2023,1982;, + 3;882,884,889;, + 3;880,1487,885;, + 3;1473,1493,1488;, + 3;1482,2025,1492;, + 3;2017,2018,2024;, + 3;856,804,858;, + 3;1355,1992,1359;, + 3;2026,1504,2029;, + 3;891,897,1506;, + 3;897,1510,1506;, + 3;805,1442,859;, + 3;1365,806,800;, + 3;892,1511,1513;, + 3;1512,1517,1519;, + 3;2029,1520,1518;, + 3;1444,1360,1993;, + 3;1443,1361,1445;, + 3;1362,1356,1361;, + 3;1522,1505,1501;, + 3;1514,1519,1523;, + 3;899,903,905;, + 3;2030,2034,2036;, + 3;1526,905,1528;, + 3;1527,1531,1534;, + 3;2032,1532,2035;, + 3;856,905,903;, + 3;2036,1994,1988;, + 3;1528,905,1536;, + 3;859,1536,905;, + 3;1533,1537,1539;, + 3;1443,1540,1538;, + 3;2035,1532,1541;, + 3;1444,2035,1541;, + 3;895,899,898;, + 3;897,1526,1508;, + 3;1509,1534,1517;, + 3;1518,2032,2029;, + 3;2029,2030,2026;, + 3;904,890,888;, + 3;901,883,890;, + 3;896,878,883;, + 3;893,1475,879;, + 3;1515,1484,1476;, + 3;1524,1465,1485;, + 3;1502,2014,1465;, + 3;2027,2019,2015;, + 3;2031,2021,2019;, + 3;2037,1985,2021;, + 3;1989,1343,1986;, + 3;1357,1353,1344;, + 3;1366,797,1354;, + 3;801,853,798;, + 3;857,888,853;, + 3;1138,1133,1142;, + 3;1009,988,990;, + 3;1009,1018,1012;, + 3;1139,1144,1145;, + 3;993,988,996;, + 3;999,1148,1021;, + 3;1022,999,1021;, + 3;1144,1027,1145;, + 3;1019,1027,1024;, + 3;1119,932,934;, + 3;937,934,932;, + 3;1148,1029,1021;, + 3;1021,1031,1022;, + 3;1033,989,1013;, + 3;1033,1020,1025;, + 3;1120,1126,1121;, + 3;1133,1126,1125;, + 3;939,941,945;, + 3;994,946,942;, + 3;948,1004,1005;, + 3;1000,1005,1004;, + 3;950,940,947;, + 3;997,950,947;, + 3;999,1136,1134;, + 3;951,1136,1008;, + 3;951,1004,948;, + 3;999,1004,1008;, + 3;940,953,935;, + 3;989,953,950;, + 3;1149,1131,1140;, + 3;1023,991,1001;, + 3;1030,1146,1028;, + 3;1150,1141,1147;, + 3;1022,1014,1010;, + 3;1032,1028,1015;, + 3;1006,938,949;, + 3;1007,943,1005;, + 3;1007,992,995;, + 3;1135,1127,1131;, + 3;1129,1128,1136;, + 3;952,1122,1130;, + 3;949,933,952;, + 3;1267,1288,1289;, + 3;711,1290,718;, + 3;589,718,641;, + 3;592,642,643;, + 3;594,643,644;, + 3;597,645,646;, + 3;1272,646,1291;, + 3;1270,1292,1288;, + 3;1273,1271,599;, + 3;598,1273,599;, + 3;598,599,595;, + 3;595,599,593;, + 3;593,599,590;, + 3;590,599,712;, + 3;1268,712,599;, + 3;1271,1268,599;, + 3;1320,735,402;, + 3;735,404,402;, + 3;1320,1904,735;, + 3;1320,1862,1904;, + 3;735,1906,404;, + 3;735,1904,1906;, + 3;358,402,129;, + 3;358,1320,402;, + 3;129,402,407;, + 3;369,359,130;, + 3;369,130,132;, + 3;1321,1867,1863;, + 3;1325,1867,1321;, + 3;1864,1909,1905;, + 3;1868,1909,1864;, + 3;1905,1910,1907;, + 3;1909,1910,1905;, + 3;405,1908,1911;, + 3;409,405,1911;, + 3;403,406,410;, + 3;411,403,410;, + 3;131,408,412;, + 3;133,131,412;, + 3;360,1325,1321;, + 3;370,1325,360;, + 3;412,408,403;, + 3;412,403,411;, + 3;1293,1869,1275;, + 3;1275,1869,1865;, + 3;647,600,371;, + 3;600,361,371;, + 3;648,372,1294;, + 3;1294,372,1870;, + 3;649,1295,601;, + 3;601,1295,1276;, + 3;602,1277,362;, + 3;1277,1866,362;, + 3;304,318,334;, + 3;373,365,374;, + 3;293,322,319;, + 3;304,295,294;, + 3;374,367,375;, + 3;296,603,322;, + 3;305,561,297;, + 3;573,604,562;, + 3;335,374,336;, + 3;320,366,363;, + 3;335,364,373;, + 3;336,375,650;, + 3;650,367,605;, + 3;323,368,366;, + 3;564,298,301;, + 3;302,324,327;, + 3;565,303,570;, + 3;303,607,570;, + 3;328,587,608;, + 3;299,588,325;, + 3;299,567,560;, + 3;565,570,1825;, + 3;570,1842,1825;, + 3;608,1845,1843;, + 3;560,1846,588;, + 3;560,567,1828;, + 3;566,1829,568;, + 3;1826,1847,1830;, + 3;1233,1247,1249;, + 3;1238,1249,1250;, + 3;1238,1810,1801;, + 3;1240,1812,1251;, + 3;1244,1234,1239;, + 3;1241,1235,1244;, + 3;1244,1802,1804;, + 3;1242,1244,1804;, + 3;1236,1251,1248;, + 3;1803,1813,1805;, + 3;107,253,255;, + 3;253,532,255;, + 3;254,110,257;, + 3;116,257,110;, + 3;535,260,538;, + 3;30,538,260;, + 3;533,540,541;, + 3;545,541,540;, + 3;534,261,256;, + 3;546,261,542;, + 3;256,111,108;, + 3;271,111,261;, + 3;539,530,536;, + 3;258,531,253;, + 3;543,540,539;, + 3;53,112,48;, + 3;53,50,54;, + 3;55,114,119;, + 3;118,262,112;, + 3;119,265,274;, + 3;272,266,263;, + 3;49,115,51;, + 3;113,267,115;, + 3;1594,1542,1544;, + 3;1595,958,1597;, + 3;1598,906,1543;, + 3;1596,908,955;, + 3;956,907,959;, + 3;2038,1600,1603;, + 3;2038,1603,1606;, + 3;2038,1606,1609;, + 3;1609,1644,2038;, + 3;1644,1647,2038;, + 3;1647,1600,2038;, + 3;961,962,965;, + 3;961,968,962;, + 3;961,971,968;, + 3;971,961,974;, + 3;974,961,977;, + 3;977,961,965;, + 3;963,1607,1604;, + 3;969,1610,1608;, + 3;972,1645,1611;, + 3;975,1648,1646;, + 3;978,1601,1649;, + 3;966,1605,1602;, + 3;1546,1995,1998;, + 3;1547,913,1549;, + 3;1550,860,1996;, + 3;1999,861,863;, + 3;1548,864,910;, + 3;911,862,914;, + 3;1089,1095,1097;, + 3;1099,2152,2155;, + 3;729,1896,732;, + 3;2158,2162,2165;, + 3;1894,1901,1896;, + 3;1105,866,868;, + 3;870,868,866;, + 3;1100,867,1107;, + 3;874,871,867;, + 3;1102,869,875;, + 3;869,872,875;, + 3;2156,874,1100;, + 3;2002,874,2001;, + 3;2153,875,2003;, + 3;872,2003,875;, + 3;2168,2001,2156;, + 3;2007,2001,2005;, + 3;2170,2003,2009;, + 3;2004,2009,2003;, + 3;2171,2006,2169;, + 3;2011,2006,2010;, + 3;730,873,870;, + 3;733,2004,872;, + 3;731,2002,1895;, + 3;1897,2012,2004;, + 3;1898,2011,1902;, + 3;1895,2007,1899;, + 3;1107,1111,1100;, + 3;1101,1114,1103;, + 3;1106,1115,1117;, + 3;1108,1118,1109;, + 3;2156,2175,2168;, + 3;2169,2177,2171;, + 3;2153,2178,2179;, + 3;2157,2180,2172;, + 3;1110,1098,1111;, + 3;1117,1096,1092;, + 3;1109,1093,1090;, + 3;2173,2166,2175;, + 3;2176,2163,2177;, + 3;2179,2164,2160;, + 3;1112,2181,1116;, + 3;1115,2160,1096;, + 3;1097,2161,2158;, + 3;1111,2159,2173;, + 3;1369,807,810;, + 3;1374,1378,1381;, + 3;1382,1386,1375;, + 3;1371,1386,1384;, + 3;1379,1385,1383;, + 3;808,1385,812;, + 3;1387,1393,814;, + 3;1395,814,1393;, + 3;1380,819,813;, + 3;811,813,819;, + 3;815,1376,1388;, + 3;1394,1375,1386;, + 3;1389,1374,1390;, + 3;1396,1386,1370;, + 3;816,819,815;, + 3;1397,810,817;, + 3;1398,823,1401;, + 3;1399,1404,1407;, + 3;1402,826,1405;, + 3;820,827,824;, + 3;1400,1410,821;, + 3;1408,828,1411;, + 3;1413,832,1416;, + 3;1414,1419,1422;, + 3;1417,835,1420;, + 3;829,836,833;, + 3;1415,838,830;, + 3;1423,837,839;, + 3;1425,844,1428;, + 3;1426,1430,1433;, + 3;1428,846,1431;, + 3;841,847,845;, + 3;1427,849,842;, + 3;1434,848,850;, + 3;927,1586,1584;, + 3;1576,1586,1579;, + 3;1584,1586,1576;, + 3;925,1581,1589;, + 3;1581,1574,1589;, + 3;1574,1572,1589;, + 3;928,1450,1593;, + 3;928,1461,1453;, + 3;928,1453,1450;, + 3;931,1591,1458;, + 3;1455,1591,1447;, + 3;1458,1591,1455;, + 3;1670,1674,1676;, + 3;1650,1676,1653;, + 3;1656,1654,1659;, + 3;1678,1660,1680;, + 3;1678,1682,1684;, + 3;1707,1713,1716;, + 3;1717,1686,1688;, + 3;1690,1672,1671;, + 3;1690,1671,1651;, + 3;1690,1651,1657;, + 3;1690,1657,1679;, + 3;1679,1685,1690;, + 3;1685,1719,1690;, + 3;1719,1723,1690;, + 3;1723,1672,1690;, + 3;1691,1675,1724;, + 3;1691,1724,1725;, + 3;1691,1725,1683;, + 3;1691,1683,1681;, + 3;1681,1661,1691;, + 3;1661,1655,1691;, + 3;1655,1677,1691;, + 3;1677,1675,1691;, + 3;1708,1726,1710;, + 3;1711,1724,1714;, + 3;1709,1723,1719;, + 3;1714,1675,1687;, + 3;1688,1674,1673;, + 3;1718,1672,1723;, + 3;2264,2280,2281;, + 3;2266,2285,2280;, + 3;2264,2287,2269;, + 3;2271,2274,2276;, + 3;2277,2289,2290;, + 3;2290,2292,2294;, + 3;2295,2298,2299;, + 3;2299,2301,2302;, + 3;2084,1940,1942;, + 3;2273,1943,1941;, + 3;2302,2088,2085;, + 3;2265,2276,2267;, + 3;2282,2300,2303;, + 3;2268,2291,2283;, + 3;2283,2296,2286;, + 3;2285,2300,2280;, + 3;2287,2303,2086;, + 3;2270,2087,1944;, + 3;2264,1945,2272;, + 3;571,1278,609;, + 3;268,1266,571;, + 3;1266,1848,1278;, + 3;1245,1831,1266;, + 3;610,575,572;, + 3;1279,652,611;, + 3;1849,1296,1279;, + 3;1832,1851,1850;, + 3;1807,1833,1832;, + 3;1246,1814,1808;, + 3;1252,269,276;, + 3;277,572,575;, + 3;612,715,615;, + 3;612,1322,713;, + 3;618,1282,1285;, + 3;618,626,621;, + 3;1285,612,618;, + 3;629,635,638;, + 3;330,639,332;, + 3;623,632,630;, + 3;619,636,633;, + 3;616,637,613;, + 3;616,333,640;, + 3;623,630,331;, + 3;714,720,716;, + 3;1280,1326,1323;, + 3;717,654,617;, + 3;622,656,658;, + 3;1283,1300,1286;, + 3;624,657,627;, + 3;332,340,330;, + 3;1287,1297,1280;, + 3;1324,719,714;, + 3;622,1298,1284;, + 3;331,659,623;, + 3;616,338,333;, + 3;1712,1720,1707;, + 3;1727,1684,1682;, + 3;2115,2120,2122;, + 3;2122,2341,2344;, + 3;2348,2399,2401;, + 3;2124,2338,2126;, + 3;2336,2407,2338;, + 3;2400,2405,2402;, + 3;2304,2345,2354;, + 3;2339,2406,2337;, + 3;2127,2123,2304;, + 3;2128,2337,2125;, + 3;2357,2403,2410;, + 3;2408,2404,2406;, + 3;2306,2118,2129;, + 3;2121,2358,2342;, + 3;2308,2409,2340;, + 3;2305,2360,2308;, + 3;2340,2131,2308;, + 3;2308,2127,2305;, + 3;2346,2350,2348;, + 3;2342,2358,2351;, + 3;2409,2357,2410;, + 3;2355,2357,2360;, + 3;2125,2132,2128;, + 3;2127,2133,2116;, + 3;2347,2357,2356;, + 3;6189,2307,2130;, + 3;6190,2338,6198;, + 3;6198,2407,6199;, + 3;6194,2359,2307;, + 3;6199,2400,6200;, + 3;6196,2399,2352;, + 3;6195,2353,2359;, + 3;2361,2366,2369;, + 3;2362,2371,2363;, + 3;2364,2373,2367;, + 3;2370,2374,32;, + 3;2375,2378,2380;, + 3;2376,2381,2383;, + 3;2309,2380,33;, + 3;2310,2375,2309;, + 3;2386,2384,2382;, + 3;2391,2393,2395;, + 3;2391,2388,2387;, + 3;2312,2382,2311;, + 3;2314,2392,2391;, + 3;2314,2387,2313;, + 3;2385,2379,2377;, + 3;2398,2396,2394;, + 3;2398,2385,2389;, + 3;934,1731,1119;, + 3;1120,1733,1125;, + 3;1125,1737,1133;, + 3;1133,1739,1142;, + 3;1143,1741,1144;, + 3;1144,1692,1024;, + 3;1694,1026,1693;, + 3;1002,1694,1662;, + 3;954,1662,1614;, + 3;936,1614,1612;, + 3;2197,1738,2191;, + 3;2065,1663,1695;, + 3;2065,1697,2068;, + 3;2198,1744,1742;, + 3;2054,1663,2051;, + 3;2057,2204,2193;, + 3;2073,2057,2058;, + 3;1744,2075,1700;, + 3;1698,2075,2069;, + 3;1734,2039,2182;, + 3;2041,1615,1618;, + 3;2204,2077,2206;, + 3;2072,2079,2077;, + 3;1703,1664,1668;, + 3;1703,1699,1696;, + 3;1735,2186,1736;, + 3;1738,2186,2191;, + 3;1618,2043,2041;, + 3;2055,1620,1665;, + 3;2047,2060,2062;, + 3;2058,2060,2063;, + 3;1623,1621,1619;, + 3;1666,1623,1664;, + 3;2057,2195,2064;, + 3;2049,2195,2189;, + 3;2049,2062,2064;, + 3;2057,2062,2058;, + 3;1619,1624,1623;, + 3;1664,1624,1668;, + 3;2205,2192,2194;, + 3;2074,2052,2066;, + 3;2078,2201,2207;, + 3;2206,2199,2204;, + 3;2073,2070,2079;, + 3;2080,2076,2078;, + 3;2061,2042,2044;, + 3;2063,2045,2056;, + 3;2063,2053,2058;, + 3;2194,2187,2196;, + 3;2189,2188,2183;, + 3;2050,2184,2040;, + 3;2048,2040,2042;, + 3;1615,1731,1613;, + 3;1735,1733,1732;, + 3;1736,1737,1733;, + 3;1738,1739,1737;, + 3;1742,1741,1740;, + 3;1744,1692,1741;, + 3;1694,1701,1704;, + 3;1669,1694,1704;, + 3;1625,1662,1669;, + 3;1616,1614,1625;, + 3;2134,2250,2137;, + 3;2134,1747,2250;, + 3;2139,2093,2142;, + 3;2135,1705,1730;, + 3;2145,2208,2099;, + 3;2100,2210,2096;, + 3;2096,1745,1706;, + 3;2140,2101,2090;, + 3;2091,2096,2094;, + 3;2143,2097,2136;, + 3;2141,2134,2137;, + 3;2138,2099,2101;, + 3;2138,2254,2145;, + 3;2255,2211,2209;, + 3;2101,2208,2212;, + 3;1746,2251,1748;, + 3;781,784,788;, + 3;781,1339,784;, + 3;1083,1060,1086;, + 3;782,1333,1337;, + 3;790,753,755;, + 3;756,758,750;, + 3;750,1335,1334;, + 3;1084,757,1057;, + 3;1058,750,1061;, + 3;1087,751,783;, + 3;1085,781,788;, + 3;789,755,757;, + 3;789,791,790;, + 3;792,759,754;, + 3;757,753,760;, + 3;1336,785,1340;, + 3;1969,1972,1974;, + 3;1969,1339,1338;, + 3;2146,2102,2105;, + 3;1970,1333,1946;, + 3;1978,1950,1979;, + 3;1952,1947,1954;, + 3;1947,1335,1954;, + 3;2147,1953,1973;, + 3;2106,1947,1952;, + 3;2149,1948,2103;, + 3;2148,1969,2150;, + 3;1973,1949,1978;, + 3;1973,1979,1975;, + 3;1980,1955,1976;, + 3;1953,1950,1949;, + 3;1336,1977,1956;, + 3;1302,1288,1305;, + 3;722,1290,1303;, + 3;661,718,722;, + 3;664,642,662;, + 3;666,643,664;, + 3;669,645,667;, + 3;1307,646,669;, + 3;1305,1292,1308;, + 3;1309,35,1306;, + 3;670,35,1309;, + 3;670,668,35;, + 3;668,665,35;, + 3;665,663,35;, + 3;663,723,35;, + 3;1304,35,723;, + 3;1306,35,1304;, + 3;1328,413,36;, + 3;36,413,415;, + 3;1328,36,1912;, + 3;1328,1912,1871;, + 3;36,415,1914;, + 3;36,1914,1912;, + 3;376,134,413;, + 3;376,413,1328;, + 3;134,418,413;, + 3;369,135,377;, + 3;369,132,135;, + 3;1329,1872,1867;, + 3;1325,1329,1867;, + 3;1873,1913,1909;, + 3;1868,1873,1909;, + 3;1913,1915,1910;, + 3;1909,1913,1910;, + 3;416,1911,1916;, + 3;409,1911,416;, + 3;414,410,417;, + 3;411,410,414;, + 3;136,412,419;, + 3;133,412,136;, + 3;378,1329,1325;, + 3;370,378,1325;, + 3;412,414,419;, + 3;412,411,414;, + 3;304,342,307;, + 3;37,381,379;, + 3;308,346,309;, + 3;304,310,306;, + 3;38,383,381;, + 3;309,671,576;, + 3;305,577,574;, + 3;573,672,651;, + 3;335,38,37;, + 3;343,382,347;, + 3;335,379,344;, + 3;337,39,38;, + 3;650,383,39;, + 3;347,384,673;, + 3;579,315,584;, + 3;312,355,316;, + 3;580,40,313;, + 3;313,675,348;, + 3;349,709,356;, + 3;317,710,41;, + 3;317,41,585;, + 3;580,1834,40;, + 3;40,1853,675;, + 3;676,1859,709;, + 3;41,1860,1839;, + 3;41,1839,585;, + 3;581,1840,1835;, + 3;1836,1861,1854;, + 3;1253,1247,1255;, + 3;1258,1249,1253;, + 3;1258,1810,1250;, + 3;1260,1812,1819;, + 3;42,1254,1256;, + 3;1261,42,1256;, + 3;42,1816,1259;, + 3;1262,1820,42;, + 3;1257,1251,1263;, + 3;1817,1813,1811;, + 3;120,280,278;, + 3;278,550,548;, + 3;279,123,121;, + 3;116,43,29;, + 3;553,44,282;, + 3;30,556,544;, + 3;551,45,549;, + 3;545,558,547;, + 3;552,46,559;, + 3;546,46,271;, + 3;281,124,46;, + 3;271,124,117;, + 3;557,549,45;, + 3;283,548,554;, + 3;543,45,545;, + 3;53,125,118;, + 3;53,58,56;, + 3;55,127,59;, + 3;118,284,273;, + 3;119,287,127;, + 3;272,288,275;, + 3;57,128,126;, + 3;126,289,285;, + 3;582,1310,47;, + 3;290,47,1264;, + 3;47,1856,1837;, + 3;1264,1837,1822;, + 3;677,575,653;, + 3;1311,652,1296;, + 3;1857,1296,1852;, + 3;1838,1851,1833;, + 3;1823,1833,1815;, + 3;1265,1814,1252;, + 3;1252,291,1265;, + 3;277,583,292;, + 3;680,726,724;, + 3;680,1330,1312;, + 3;686,1314,689;, + 3;686,694,691;, + 3;1317,680,1312;, + 3;697,703,700;, + 3;351,706,698;, + 3;692,701,687;, + 3;688,704,681;, + 3;683,705,707;, + 3;683,707,353;, + 3;692,352,699;, + 3;725,720,719;, + 3;1313,1326,1297;, + 3;727,654,721;, + 3;690,656,695;, + 3;1315,1300,1299;, + 3;693,657,660;, + 3;354,340,339;, + 3;1318,1297,1301;, + 3;1331,719,1327;, + 3;690,1298,658;, + 3;352,659,341;, + 3;683,338,655;, + 3;2444,2452,2453;, + 3;2439,2454,2441;, + 3;2412,2441,2423;, + 3;2415,2424,2425;, + 3;2417,2425,2426;, + 3;2420,2427,2428;, + 3;2449,2428,2455;, + 3;2447,2456,2452;, + 3;2450,2448,2422;, + 3;2421,2450,2422;, + 3;2421,2422,2418;, + 3;2418,2422,2416;, + 3;2416,2422,2413;, + 3;2413,2422,2440;, + 3;2445,2440,2422;, + 3;2448,2445,2422;, + 3;2457,2452,2460;, + 3;2442,2454,2458;, + 3;2429,2441,2442;, + 3;2432,2424,2430;, + 3;2434,2425,2432;, + 3;2437,2427,2435;, + 3;2462,2428,2437;, + 3;2460,2456,2463;, + 3;2464,2411,2461;, + 3;2438,2411,2464;, + 3;2438,2436,2411;, + 3;2436,2433,2411;, + 3;2433,2431,2411;, + 3;2431,2443,2411;, + 3;2459,2411,2443;, + 3;2461,2411,2459;, + 3;2475,2480,2483;, + 3;2476,2485,2477;, + 3;2478,2487,2481;, + 3;2484,2488,2466;, + 3;2489,2492,2494;, + 3;2490,2495,2497;, + 3;2469,2494,2467;, + 3;2470,2489,2469;, + 3;2500,2498,2496;, + 3;2505,2507,2509;, + 3;2505,2502,2501;, + 3;2472,2496,2471;, + 3;2474,2506,2505;, + 3;2474,2501,2473;, + 3;2499,2493,2491;, + 3;2512,2510,2508;, + 3;2512,2499,2503;, + 3;2521,2533,2523;, + 3;2523,2538,2536;, + 3;2521,2540,2534;, + 3;2528,2274,2273;, + 3;2530,2289,2275;, + 3;2542,2292,2289;, + 3;2544,2298,2293;, + 3;2548,2301,2298;, + 3;2517,1940,2089;, + 3;2273,2513,2528;, + 3;2550,2088,2301;, + 3;2522,2531,2528;, + 3;2535,2549,2533;, + 3;2524,2543,2532;, + 3;2537,2545,2543;, + 3;2538,2549,2546;, + 3;2540,2551,2534;, + 3;2526,2518,2541;, + 3;2521,2514,2527;, + 3;2584,2555,2587;, + 3;2585,2590,2593;, + 3;2588,2558,2591;, + 3;2552,2559,2556;, + 3;2586,2596,2553;, + 3;2594,2560,2597;, + 3;2599,2564,2602;, + 3;2600,2605,2608;, + 3;2603,2567,2606;, + 3;2561,2568,2565;, + 3;2601,2570,2562;, + 3;2609,2569,2571;, + 3;2611,2576,2614;, + 3;2612,2616,2619;, + 3;2614,2578,2617;, + 3;2573,2579,2577;, + 3;2613,2581,2574;, + 3;2620,2580,2582;, + 3;2654,2625,2657;, + 3;2655,2660,2663;, + 3;2658,2628,2661;, + 3;2622,2629,2626;, + 3;2656,2666,2623;, + 3;2664,2630,2667;, + 3;2669,2634,2672;, + 3;2670,2675,2678;, + 3;2673,2637,2676;, + 3;2631,2638,2635;, + 3;2671,2640,2632;, + 3;2679,2639,2641;, + 3;2681,2646,2684;, + 3;2682,2686,2689;, + 3;2684,2648,2687;, + 3;2643,2649,2647;, + 3;2683,2651,2644;, + 3;2690,2650,2652;, + 3;2724,2695,2727;, + 3;2725,2730,2733;, + 3;2728,2698,2731;, + 3;2692,2699,2696;, + 3;2726,2736,2693;, + 3;2734,2700,2737;, + 3;2739,2704,2742;, + 3;2740,2745,2748;, + 3;2743,2707,2746;, + 3;2701,2708,2705;, + 3;2741,2710,2702;, + 3;2749,2709,2711;, + 3;2751,2716,2754;, + 3;2752,2756,2759;, + 3;2754,2718,2757;, + 3;2713,2719,2717;, + 3;2753,2721,2714;, + 3;2760,2720,2722;, + 3;2794,2765,2797;, + 3;2795,2800,2803;, + 3;2798,2768,2801;, + 3;2762,2769,2766;, + 3;2796,2806,2763;, + 3;2804,2770,2807;, + 3;2809,2774,2812;, + 3;2810,2815,2818;, + 3;2813,2777,2816;, + 3;2771,2778,2775;, + 3;2811,2780,2772;, + 3;2819,2779,2781;, + 3;2821,2786,2824;, + 3;2822,2826,2829;, + 3;2824,2788,2827;, + 3;2783,2789,2787;, + 3;2823,2791,2784;, + 3;2830,2790,2792;, + 3;2853,2858,2859;, + 3;2850,2860,2851;, + 3;2832,2851,2838;, + 3;2834,2839,2840;, + 3;2835,2840,2841;, + 3;2837,2842,2843;, + 3;2856,2843,2861;, + 3;2855,2862,2858;, + 3;2863,2858,2865;, + 3;2852,2860,2864;, + 3;2844,2851,2852;, + 3;2846,2839,2845;, + 3;2847,2840,2846;, + 3;2849,2842,2848;, + 3;2866,2843,2849;, + 3;2865,2862,2867;, + 3;2889,2894,2895;, + 3;2886,2896,2887;, + 3;2868,2887,2874;, + 3;2870,2875,2876;, + 3;2871,2876,2877;, + 3;2873,2878,2879;, + 3;2892,2879,2897;, + 3;2891,2898,2894;, + 3;2899,2894,2901;, + 3;2888,2896,2900;, + 3;2880,2887,2888;, + 3;2882,2875,2881;, + 3;2883,2876,2882;, + 3;2885,2878,2884;, + 3;2902,2879,2885;, + 3;2901,2898,2903;, + 3;2928,2933,2935;, + 3;2938,2933,2931;, + 3;2936,2946,2929;, + 3;2941,2904,2906;, + 3;2912,2918,2920;, + 3;2922,2918,2925;, + 3;2915,2948,2950;, + 3;2926,2910,2923;, + 3;2905,2949,2911;, + 3;2946,2950,2948;, + 3;2944,2908,2951;, + 3;2906,2910,2909;, + 3;2907,2944,2942;, + 3;2934,2944,2937;, + 3;2942,2944,2934;, + 3;2905,2939,2947;, + 3;2939,2932,2947;, + 3;2932,2930,2947;, + 3;2908,2916,2951;, + 3;2908,2927,2919;, + 3;2908,2919,2916;, + 3;2911,2949,2924;, + 3;2921,2949,2913;, + 3;2924,2949,2921;, + 3;2989,2971,2974;, + 3;2989,2974,2977;, + 3;2989,2977,2980;, + 3;2980,2983,2989;, + 3;2983,2986,2989;, + 3;2986,2971,2989;, + 3;2952,2953,2956;, + 3;2952,2959,2953;, + 3;2952,2962,2959;, + 3;2962,2952,2965;, + 3;2965,2952,2968;, + 3;2968,2952,2956;, + 3;2954,2978,2975;, + 3;2960,2981,2979;, + 3;2963,2984,2982;, + 3;2966,2987,2985;, + 3;2969,2972,2988;, + 3;2957,2976,2973;, + 3;3027,3009,3012;, + 3;3027,3012,3015;, + 3;3027,3015,3018;, + 3;3018,3021,3027;, + 3;3021,3024,3027;, + 3;3024,3009,3027;, + 3;2990,2991,2994;, + 3;2990,2997,2991;, + 3;2990,3000,2997;, + 3;3000,2990,3003;, + 3;3003,2990,3006;, + 3;3006,2990,2994;, + 3;2992,3016,3013;, + 3;2998,3019,3017;, + 3;3001,3022,3020;, + 3;3004,3025,3023;, + 3;3007,3010,3026;, + 3;2995,3014,3011;, + 3;4008,4102,4011;, + 3;4008,4680,4102;, + 3;4013,3980,4016;, + 3;4009,4638,4662;, + 3;4019,4096,3989;, + 3;3990,4098,3986;, + 3;3986,4678,4639;, + 3;4014,3991,3983;, + 3;3984,3986,3981;, + 3;4017,3987,4010;, + 3;4015,4008,4011;, + 3;4012,3989,3991;, + 3;4012,4106,4019;, + 3;4107,4099,4097;, + 3;3991,4096,4100;, + 3;4679,4103,4681;, + 3;3992,3028,5175;, + 3;3689,5175,4847;, + 3;3030,4847,3031;, + 3;446,3711,763;, + 3;762,3032,4;, + 3;446,3033,3414;, + 3;420,3686,736;, + 3;1958,4869,8;, + 3;425,3176,3398;, + 3;3399,3713,3688;, + 3;1917,3686,4834;, + 3;4871,3713,4870;, + 3;421,3398,3395;, + 3;3687,3399,3688;, + 3;3687,4871,4835;, + 3;1918,4872,1958;, + 3;4020,4682,5015;, + 3;3087,3213,3178;, + 3;3087,3089,3213;, + 3;3179,3091,3088;, + 3;3088,3093,3090;, + 3;3714,3428,3717;, + 3;3430,3433,3429;, + 3;3090,3094,3214;, + 3;3435,3439,3434;, + 3;3431,3415,3216;, + 3;3216,3178,3213;, + 3;3436,3216,3217;, + 3;3217,3213,3089;, + 3;3436,3218,3437;, + 3;3217,3215,3218;, + 3;3718,3416,3715;, + 3;3181,3416,3417;, + 3;3439,3219,3220;, + 3;3220,3214,3095;, + 3;3419,3421,3184;, + 3;3185,3184,3421;, + 3;3221,3184,3187;, + 3;3082,3184,3185;, + 3;3221,3187,3096;, + 3;3187,3082,3096;, + 3;3422,3426,3424;, + 3;3423,3188,3186;, + 3;3419,3222,3427;, + 3;3185,3084,3083;, + 3;3096,3222,3221;, + 3;3082,3097,3096;, + 3;3161,3223,3201;, + 3;3163,3206,3202;, + 3;3208,3227,3224;, + 3;3225,3197,3194;, + 3;3195,3172,3170;, + 3;3167,3170,3172;, + 3;3175,3201,3212;, + 3;3207,3208,3203;, + 3;3192,3173,3198;, + 3;3193,3228,3223;, + 3;3223,3210,3201;, + 3;3161,3168,3174;, + 3;3212,3210,3206;, + 3;3175,3206,3168;, + 3;3721,3993,4021;, + 3;3692,3204,3995;, + 3;3998,3226,4024;, + 3;4025,3194,3724;, + 3;3725,3171,3695;, + 3;3693,3171,3164;, + 3;3205,3998,3996;, + 3;3696,3993,3690;, + 3;3722,3695,3691;, + 3;4022,3998,4024;, + 3;3723,4025,3724;, + 3;3697,3997,3999;, + 3;4000,3998,3994;, + 3;3691,3693,3698;, + 3;3074,3150,3400;, + 3;3067,3363,3129;, + 3;3071,3130,3133;, + 3;3364,3078,3403;, + 3;3404,3075,3401;, + 3;3136,3156,3138;, + 3;3159,3406,3157;, + 3;3139,3407,3367;, + 3;3137,3368,3035;, + 3;3369,4837,4796;, + 3;4797,3372,3370;, + 3;4838,4799,4798;, + 3;1881,4840,1930;, + 3;4839,3411,4841;, + 3;1929,3412,443;, + 3;3408,3373,3413;, + 3;442,3373,399;, + 3;12,3143,3141;, + 3;3376,4800,4803;, + 3;13,4801,1881;, + 3;155,3374,3144;, + 3;3142,3375,3376;, + 3;5118,5211,5119;, + 3;5122,5214,5118;, + 3;5118,4688,4686;, + 3;4691,5119,5124;, + 3;5122,4686,4693;, + 3;4108,4688,4691;, + 3;4694,6193,4696;, + 3;1765,6193,6192;, + 3;5123,4697,5126;, + 3;2223,4697,1766;, + 3;5215,5217,5212;, + 3;2327,5219,2330;, + 3;2224,5218,2328;, + 3;5213,5127,5120;, + 3;4687,4698,6193;, + 3;6192,4698,1769;, + 3;2329,5126,2223;, + 3;5123,5220,5216;, + 3;1770,5130,2229;, + 3;5125,4700,4692;, + 3;5121,5131,5125;, + 3;2229,5128,2225;, + 3;4111,4116,4114;, + 3;4689,4115,4699;, + 3;4692,4117,4109;, + 3;4698,1771,1769;, + 3;3440,3446,3442;, + 3;4703,4120,4118;, + 3;5132,4705,4703;, + 3;4120,4122,4118;, + 3;3440,4124,3450;, + 3;1182,4707,4126;, + 3;4127,4707,4708;, + 3;1780,5136,4707;, + 3;4708,5136,5137;, + 3;15,4710,5139;, + 3;5140,4710,4711;, + 3;491,3454,3452;, + 3;3454,3455,3452;, + 3;502,3460,504;, + 3;3463,3461,3465;, + 3;513,3468,514;, + 3;514,3471,518;, + 3;3447,3473,3443;, + 3;527,3471,3479;, + 3;4129,3454,4131;, + 3;1189,3454,496;, + 3;1189,4126,4131;, + 3;4129,4126,4127;, + 3;4132,4135,4134;, + 3;1196,4135,1197;, + 3;1196,3460,4134;, + 3;4132,3460,3463;, + 3;1197,4710,1784;, + 3;4711,4135,4136;, + 3;513,3453,3470;, + 3;3472,3474,3476;, + 3;503,3479,3462;, + 3;4123,3458,4130;, + 3;3441,3456,3458;, + 3;3444,3453,3457;, + 3;3475,3470,3453;, + 3;4119,4130,4128;, + 3;4704,4128,4709;, + 3;5133,4709,5138;, + 3;4125,4137,4133;, + 3;4121,4712,4137;, + 3;4706,5141,4712;, + 3;3451,4133,3464;, + 3;3448,3464,3466;, + 3;3477,3467,3462;, + 3;3471,3462,3479;, + 3;4138,4715,4713;, + 3;4714,4720,4718;, + 3;4144,4721,4146;, + 3;4150,4152,4151;, + 3;4140,4722,4716;, + 3;4139,4151,4141;, + 3;4139,4153,4150;, + 3;4153,4147,4152;, + 3;4142,4152,4148;, + 3;4154,5144,5142;, + 3;4154,4160,4156;, + 3;4161,1228,1226;, + 3;5145,1230,2246;, + 3;5143,1232,4155;, + 3;4157,2246,5145;, + 3;5143,1232,4155;, + 3;4155,1229,4163;, + 3;1231,4162,1227;, + 3;5146,5225,5223;, + 3;5224,17,2335;, + 3;5147,2335,18;, + 3;3079,68,81;, + 3;82,3153,3076;, + 3;3151,175,177;, + 3;3402,176,444;, + 3;3365,445,401;, + 3;401,3131,3366;, + 3;156,3134,3132;, + 3;158,3072,3135;, + 3;3068,70,71;, + 3;3069,71,68;, + 3;3077,80,83;, + 3;3405,444,445;, + 3;4026,19,1082;, + 3;3038,1082,22;, + 3;5015,1797,23;, + 3;24,4684,4020;, + 3;3434,529,475;, + 3;3719,476,780;, + 3;3091,218,103;, + 3;3093,102,104;, + 3;3220,529,3439;, + 3;3424,25,461;, + 3;3189,461,221;, + 3;3085,220,89;, + 3;3098,89,26;, + 3;3429,474,477;, + 3;3094,104,106;, + 3;3220,105,252;, + 3;4683,1800,1798;, + 3;3418,219,3182;, + 3;3418,779,462;, + 3;4873,1967,1966;, + 3;4875,2109,1967;, + 3;5017,2109,5016;, + 3;4874,2114,5018;, + 3;4848,4875,4873;, + 3;4850,5016,4875;, + 3;4988,5017,5016;, + 3;4849,5018,4989;, + 3;4805,2256,1887;, + 3;4844,2263,5158;, + 3;4845,5154,4808;, + 3;4808,5155,4806;, + 3;2263,5156,5158;, + 3;1935,4809,1893;, + 3;3146,4808,4806;, + 3;27,4810,3148;, + 3;28,4807,1888;, + 3;4485,4487,3861;, + 3;3861,4559,3925;, + 3;3925,4564,4562;, + 3;4490,4493,4492;, + 3;4488,4492,4494;, + 3;4560,4495,4566;, + 3;4565,4567,4568;, + 3;4565,4569,4563;, + 3;4563,3928,3926;, + 3;3927,3864,3862;, + 3;3863,4493,4486;, + 3;4496,4500,4498;, + 3;3866,4570,4500;, + 3;3930,4573,4570;, + 3;4499,4493,4497;, + 3;4501,4492,4499;, + 3;4571,4495,4502;, + 3;4574,4567,4572;, + 3;4574,4569,4568;, + 3;4575,3928,4569;, + 3;3931,3864,3929;, + 3;3867,4493,3865;, + 3;4503,4508,4506;, + 3;4513,4508,4516;, + 3;4510,4521,4519;, + 3;4517,3869,4514;, + 3;4379,4385,4382;, + 3;4389,4385,4387;, + 3;4383,4523,4380;, + 3;4392,3875,3873;, + 3;3870,4524,4522;, + 3;4521,4525,4519;, + 3;4520,3874,3871;, + 3;3872,3875,3869;, + 3;3797,3738,3799;, + 3;4274,4888,4278;, + 3;4920,4395,4924;, + 3;3821,3825,4400;, + 3;3825,4402,4400;, + 3;3739,4369,3800;, + 3;4284,3740,3741;, + 3;3822,4403,4407;, + 3;4404,4414,4411;, + 3;4924,4412,4415;, + 3;4372,4279,4889;, + 3;4370,4280,4373;, + 3;4281,4275,4280;, + 3;4416,4396,4397;, + 3;4408,4411,4417;, + 3;3829,3832,3831;, + 3;4925,4929,4927;, + 3;4420,3831,4422;, + 3;4421,4427,4425;, + 3;4931,4428,4930;, + 3;3797,3831,3832;, + 3;4927,4890,4891;, + 3;4422,3831,4430;, + 3;3800,4430,3831;, + 3;4429,4431,4432;, + 3;4371,4432,4431;, + 3;4930,4428,4433;, + 3;4372,4930,4433;, + 3;3827,3829,3826;, + 3;3825,4420,4405;, + 3;4406,4425,4414;, + 3;4415,4931,4924;, + 3;4924,4925,4921;, + 3;3801,3749,3745;, + 3;4288,4899,4895;, + 3;4933,4437,4434;, + 3;3836,3842,3840;, + 3;3842,4443,4441;, + 3;3750,4375,4295;, + 3;4298,3751,4296;, + 3;3837,4444,4439;, + 3;4445,4450,4442;, + 3;4936,4452,4437;, + 3;4377,4900,4292;, + 3;4376,4293,4297;, + 3;4297,4289,4299;, + 3;4455,4438,4453;, + 3;4446,4454,4445;, + 3;3844,3848,3846;, + 3;4937,4941,4939;, + 3;4459,3850,3845;, + 3;4460,4464,4461;, + 3;4940,4465,4467;, + 3;3801,3850,3803;, + 3;4943,4901,4941;, + 3;4462,4469,3850;, + 3;3804,4469,4375;, + 3;4466,4470,4463;, + 3;4376,4472,4378;, + 3;4942,4473,4465;, + 3;4377,4942,4900;, + 3;3840,3844,3846;, + 3;3842,4459,3845;, + 3;4442,4468,4460;, + 3;4451,4940,4467;, + 3;4936,4937,4939;, + 3;3849,3834,3847;, + 3;3847,3828,3841;, + 3;3841,3823,3838;, + 3;3839,4409,4447;, + 3;4448,4418,4456;, + 3;4457,4398,4435;, + 3;4435,4922,4934;, + 3;4935,4926,4938;, + 3;4938,4928,4944;, + 3;4944,4892,4896;, + 3;4897,4276,4290;, + 3;4291,4285,4300;, + 3;4301,3742,3746;, + 3;3747,3798,3802;, + 3;3802,3833,3849;, + 3;4082,4077,4075;, + 3;3954,3933,3957;, + 3;3954,3963,3959;, + 3;4083,4088,4086;, + 3;3938,3933,3935;, + 3;3944,4092,4078;, + 3;3967,3944,3945;, + 3;4088,3972,3969;, + 3;3964,3972,3960;, + 3;4063,3877,4065;, + 3;3882,3879,3884;, + 3;4092,3974,4094;, + 3;3966,3976,3974;, + 3;3978,3934,3947;, + 3;3978,3965,3958;, + 3;4064,4070,4069;, + 3;4077,4070,4075;, + 3;3884,3886,3882;, + 3;3939,3890,3941;, + 3;3893,3950,3949;, + 3;3945,3950,3952;, + 3;3895,3891,3885;, + 3;3942,3895,3934;, + 3;3944,4080,3953;, + 3;3896,4080,4073;, + 3;3896,3949,3953;, + 3;3944,3949,3945;, + 3;3885,3898,3895;, + 3;3934,3898,3947;, + 3;4093,4076,4079;, + 3;3968,3936,3955;, + 3;3975,4089,4095;, + 3;4094,4084,4092;, + 3;3967,3961,3976;, + 3;3977,3973,3975;, + 3;3951,3883,3887;, + 3;3952,3888,3940;, + 3;3952,3937,3945;, + 3;4079,4071,4081;, + 3;4073,4072,4066;, + 3;3897,4067,3878;, + 3;3894,3878,3883;, + 3;4200,4221,4203;, + 3;3661,4222,4201;, + 3;3539,3668,3661;, + 3;3542,3591,3540;, + 3;3544,3593,3542;, + 3;3547,3594,3545;, + 3;4205,3596,3547;, + 3;4203,4224,4206;, + 3;4207,3549,4204;, + 3;3548,3549,4207;, + 3;3548,3546,3549;, + 3;3546,3543,3549;, + 3;3543,3541,3549;, + 3;3541,3662,3549;, + 3;4202,3549,3662;, + 3;4204,3549,4202;, + 3;4253,3377,3685;, + 3;3685,3377,3379;, + 3;4253,3685,4821;, + 3;4253,4821,4784;, + 3;3685,3379,4823;, + 3;3685,4823,4821;, + 3;3336,3121,3377;, + 3;3336,3377,4253;, + 3;3121,3382,3377;, + 3;3347,3122,3337;, + 3;3347,3124,3122;, + 3;4254,4785,4789;, + 3;4258,4254,4789;, + 3;4786,4822,4826;, + 3;4790,4786,4826;, + 3;4822,4824,4827;, + 3;4826,4822,4827;, + 3;3380,4828,4825;, + 3;3384,4828,3380;, + 3;3378,3385,3381;, + 3;3386,3385,3378;, + 3;3123,3387,3383;, + 3;3125,3387,3123;, + 3;3338,4254,4258;, + 3;3348,3338,4258;, + 3;3387,3378,3383;, + 3;3387,3386,3378;, + 3;4226,4208,4791;, + 3;4208,4787,4791;, + 3;3597,3349,3550;, + 3;3550,3349,3339;, + 3;3598,4227,3350;, + 3;4227,4792,3350;, + 3;3599,3551,4228;, + 3;3551,4209,4228;, + 3;3552,3340,4210;, + 3;4210,3340,4788;, + 3;3282,3296,3271;, + 3;3351,3343,3341;, + 3;3272,3300,3273;, + 3;3282,3274,3283;, + 3;3352,3345,3343;, + 3;3273,3553,3511;, + 3;3284,3512,3523;, + 3;3524,3554,3600;, + 3;3312,3352,3351;, + 3;3297,3344,3301;, + 3;3312,3341,3298;, + 3;3314,3353,3352;, + 3;3601,3345,3353;, + 3;3301,3346,3555;, + 3;3514,3276,3517;, + 3;3279,3302,3277;, + 3;3515,3520,3280;, + 3;3280,3557,3305;, + 3;3306,3537,3303;, + 3;3278,3538,3510;, + 3;3278,3510,3518;, + 3;3515,4747,3520;, + 3;3520,4764,3557;, + 3;3558,4767,3537;, + 3;3510,4768,4750;, + 3;3510,4750,3518;, + 3;3516,4751,4748;, + 3;4749,4769,4765;, + 3;4166,4180,4168;, + 3;4171,4182,4166;, + 3;4171,4732,4183;, + 3;4173,4734,4726;, + 3;4177,4167,4169;, + 3;4174,4177,4169;, + 3;4177,4723,4172;, + 3;4175,4727,4177;, + 3;4170,4184,4176;, + 3;4724,4735,4733;, + 3;3099,3233,3231;, + 3;3231,3482,3480;, + 3;3232,3102,3100;, + 3;3108,3235,3039;, + 3;3485,3238,3236;, + 3;3040,3488,3493;, + 3;3483,3490,3481;, + 3;3495,3491,3496;, + 3;3484,3239,3492;, + 3;3497,3239,3249;, + 3;3234,3103,3239;, + 3;3249,3103,3109;, + 3;3489,3481,3490;, + 3;3237,3480,3486;, + 3;3494,3490,3495;, + 3;3059,3104,3110;, + 3;3059,3056,3054;, + 3;3060,3106,3057;, + 3;3110,3240,3250;, + 3;3111,3243,3106;, + 3;3251,3244,3252;, + 3;3055,3107,3105;, + 3;3105,3245,3241;, + 3;4527,4475,4530;, + 3;4528,3903,3900;, + 3;4531,3851,3904;, + 3;4529,3853,4477;, + 3;3901,3852,3854;, + 3;4945,4536,4533;, + 3;4945,4539,4536;, + 3;4945,4542,4539;, + 3;4542,4945,4577;, + 3;4577,4945,4580;, + 3;4580,4945,4533;, + 3;3906,3910,3907;, + 3;3906,3907,3913;, + 3;3906,3913,3916;, + 3;3916,3919,3906;, + 3;3919,3922,3906;, + 3;3922,3910,3906;, + 3;3908,4540,3914;, + 3;3915,4543,3917;, + 3;3918,4578,3920;, + 3;3921,4581,3923;, + 3;3924,4534,3911;, + 3;3912,4537,3909;, + 3;4479,4902,4482;, + 3;4480,3858,3855;, + 3;4483,3805,3859;, + 3;4905,3806,4903;, + 3;4481,3808,4906;, + 3;3856,3807,3809;, + 3;4033,4039,4036;, + 3;4043,5056,4046;, + 3;3679,4813,4811;, + 3;5062,5066,5064;, + 3;4811,4818,4815;, + 3;4049,3811,4051;, + 3;3815,3813,3817;, + 3;4044,3812,3819;, + 3;3819,3812,3816;, + 3;4047,3814,4050;, + 3;3814,3820,3818;, + 3;5059,3819,4908;, + 3;4909,3819,3816;, + 3;5057,3820,4047;, + 3;3818,4910,4911;, + 3;5072,4908,4912;, + 3;4914,4908,4909;, + 3;5074,4910,5057;, + 3;4911,4916,4918;, + 3;5075,4913,4917;, + 3;4919,4913,4915;, + 3;3680,3817,3682;, + 3;3683,4911,4814;, + 3;3681,4909,3816;, + 3;4814,4918,4819;, + 3;4816,4919,4915;, + 3;4812,4914,4909;, + 3;4052,4055,4053;, + 3;4045,4058,4056;, + 3;4050,4059,4047;, + 3;4051,4061,4049;, + 3;5059,5079,5076;, + 3;5073,5081,5080;, + 3;5057,5082,5074;, + 3;5060,5083,5058;, + 3;4053,4041,4034;, + 3;4062,4040,4059;, + 3;4054,4037,4061;, + 3;5076,5069,5063;, + 3;5080,5067,5070;, + 3;5084,5068,5082;, + 3;4057,5085,5077;, + 3;4059,5065,5084;, + 3;4042,5064,4039;, + 3;4055,5063,4041;, + 3;4302,3752,4304;, + 3;4307,4311,4309;, + 3;4314,4319,4317;, + 3;4305,4319,4303;, + 3;4312,4318,3757;, + 3;3753,4318,4306;, + 3;4320,4326,4323;, + 3;4328,3759,3761;, + 3;4313,3764,4310;, + 3;3755,3758,3754;, + 3;3760,4310,3764;, + 3;4327,4308,4324;, + 3;4321,4307,4309;, + 3;4329,4319,4327;, + 3;3762,3764,3755;, + 3;4330,3756,4302;, + 3;4331,3768,3765;, + 3;4332,4337,4334;, + 3;4335,3771,3769;, + 3;3766,3772,4343;, + 3;4333,4344,4340;, + 3;4341,3773,4338;, + 3;4346,3777,3774;, + 3;4347,4352,4349;, + 3;4350,3780,3778;, + 3;3775,3781,3783;, + 3;4348,3784,4355;, + 3;4356,3782,4353;, + 3;4358,3789,3786;, + 3;4359,4363,4361;, + 3;4362,3791,3789;, + 3;3787,3792,3794;, + 3;4360,3795,4366;, + 3;4367,3793,4364;, + 3;3871,4518,4520;, + 3;4509,4511,4520;, + 3;4518,4509,4520;, + 3;3870,4522,4515;, + 3;4515,4522,4507;, + 3;4507,4522,4504;, + 3;3874,4526,4384;, + 3;3874,4386,4393;, + 3;3874,4384,4386;, + 3;3876,4390,4524;, + 3;4388,4381,4524;, + 3;4390,4388,4524;, + 3;4603,4607,4605;, + 3;4583,4609,4603;, + 3;4589,4586,4584;, + 3;4611,4592,4590;, + 3;4611,4615,4613;, + 3;4640,4646,4643;, + 3;4649,4619,4647;, + 3;4623,4604,4606;, + 3;4623,4585,4604;, + 3;4623,4591,4585;, + 3;4623,4612,4591;, + 3;4612,4623,4617;, + 3;4617,4623,4652;, + 3;4652,4623,4656;, + 3;4656,4623,4606;, + 3;4624,4657,4608;, + 3;4624,4658,4657;, + 3;4624,4616,4658;, + 3;4624,4614,4616;, + 3;4614,4624,4593;, + 3;4593,4624,4587;, + 3;4587,4624,4610;, + 3;4610,4624,4608;, + 3;4641,4659,4653;, + 3;4644,4657,4658;, + 3;4642,4656,4650;, + 3;4648,4608,4657;, + 3;4621,4607,4619;, + 3;4650,4606,4622;, + 3;5160,5176,5162;, + 3;5162,5181,5179;, + 3;5160,5183,5177;, + 3;5167,5170,5169;, + 3;5172,5185,5171;, + 3;5186,5188,5185;, + 3;5190,5194,5189;, + 3;5195,5197,5194;, + 3;4991,4851,4995;, + 3;5169,4853,5167;, + 3;5198,4996,5197;, + 3;5161,5173,5167;, + 3;5178,5196,5176;, + 3;5163,5187,5174;, + 3;5180,5191,5187;, + 3;5181,5196,5192;, + 3;5183,5199,5177;, + 3;5165,4992,5184;, + 3;5160,4854,5166;, + 3;3521,4211,4199;, + 3;3246,4199,4178;, + 3;4199,4770,4753;, + 3;4178,4753,4729;, + 3;3559,3525,3602;, + 3;4212,3603,4229;, + 3;4771,4229,4773;, + 3;4754,4774,4755;, + 3;4730,4755,4736;, + 3;4179,4737,4185;, + 3;4185,3247,4179;, + 3;3254,3522,3248;, + 3;3562,3665,3663;, + 3;3562,4255,4213;, + 3;3568,4215,3571;, + 3;3568,3576,3573;, + 3;4218,3562,4213;, + 3;3579,3585,3582;, + 3;3308,3588,3580;, + 3;3574,3583,3569;, + 3;3570,3586,3563;, + 3;3565,3587,3589;, + 3;3565,3589,3310;, + 3;3574,3309,3581;, + 3;3664,3670,3669;, + 3;4214,4259,4230;, + 3;3666,3604,3671;, + 3;3572,3606,3577;, + 3;4216,4233,4231;, + 3;3575,3607,3609;, + 3;3311,3318,3316;, + 3;4219,4230,4234;, + 3;4256,3669,4260;, + 3;3572,4232,3608;, + 3;3309,3610,3319;, + 3;3565,3317,3605;, + 3;4643,4654,4660;, + 3;4661,4618,4655;, + 3;5019,5024,5022;, + 3;5026,5232,5024;, + 3;5239,5278,5241;, + 3;5028,5229,5227;, + 3;5227,5286,5284;, + 3;5279,5284,5286;, + 3;5200,5235,5027;, + 3;5230,5285,5287;, + 3;5031,5027,5020;, + 3;5032,5228,5230;, + 3;5248,5280,5240;, + 3;5287,5281,5289;, + 3;5202,5023,5025;, + 3;5025,5249,5202;, + 3;5204,5288,5251;, + 3;5201,5251,5245;, + 3;5231,5035,5032;, + 3;5204,5031,5035;, + 3;5236,5242,5233;, + 3;5234,5243,5249;, + 3;5288,5248,5251;, + 3;5245,5251,5248;, + 3;5029,5036,5037;, + 3;5031,5037,5036;, + 3;5237,5248,5240;, + 3;6189,5203,6194;, + 3;6190,5229,5030;, + 3;6198,5286,5229;, + 3;6194,5250,6195;, + 3;6199,5279,5286;, + 3;6196,5278,6201;, + 3;6195,5244,6197;, + 3;5252,5257,5254;, + 3;5253,2371,31;, + 3;5255,2373,2372;, + 3;5260,2374,5258;, + 3;5262,2378,5263;, + 3;5263,5265,5262;, + 3;5205,2380,5262;, + 3;5206,5262,5265;, + 3;5270,5267,5272;, + 3;5275,2393,2392;, + 3;5275,5273,5276;, + 3;5208,5266,5270;, + 3;5210,2392,34;, + 3;5210,5271,5275;, + 3;5268,2379,2397;, + 3;2398,5277,5274;, + 3;2398,5268,2397;, + 3;3879,4664,4545;, + 3;4064,4666,4665;, + 3;4069,4670,4666;, + 3;4077,4672,4670;, + 3;4086,4674,4673;, + 3;4088,4625,4674;, + 3;4627,3970,3979;, + 3;3948,4627,3979;, + 3;3899,4595,3948;, + 3;3880,4547,3899;, + 3;5101,4671,4675;, + 3;4972,4596,4958;, + 3;4972,4630,4628;, + 3;5102,4677,5105;, + 3;4961,4596,4598;, + 3;4964,5108,4979;, + 3;4980,4964,4979;, + 3;4677,4982,5105;, + 3;4631,4982,4633;, + 3;4667,4946,4548;, + 3;4948,4548,4946;, + 3;5108,4984,4979;, + 3;4979,4986,4980;, + 3;4636,4597,4629;, + 3;4636,4632,4634;, + 3;4668,5090,5086;, + 3;4671,5090,4669;, + 3;4551,4950,4553;, + 3;4962,4554,4951;, + 3;4954,4969,4967;, + 3;4965,4967,4969;, + 3;4556,4552,4555;, + 3;4599,4556,4555;, + 3;4964,5099,5097;, + 3;4956,5099,4971;, + 3;4956,4969,4954;, + 3;4964,4969,4971;, + 3;4552,4557,4549;, + 3;4597,4557,4556;, + 3;5109,5095,5103;, + 3;4981,4959,4966;, + 3;4985,5106,4983;, + 3;5110,5104,5107;, + 3;4980,4975,4973;, + 3;4987,4983,4976;, + 3;4968,4949,4955;, + 3;4970,4952,4967;, + 3;4970,4960,4963;, + 3;5098,5091,5095;, + 3;5093,5092,5099;, + 3;4957,5087,5094;, + 3;4955,4947,4957;, + 3;4548,4664,4667;, + 3;4668,4666,4669;, + 3;4669,4670,4671;, + 3;4671,4672,4675;, + 3;4676,4674,4677;, + 3;4677,4625,4633;, + 3;4627,4635,4626;, + 3;4601,4627,4595;, + 3;4558,4595,4547;, + 3;4550,4547,4546;, + 3;5038,5041,5148;, + 3;5038,4680,4663;, + 3;5043,5000,4997;, + 3;5039,4638,5003;, + 3;5049,5112,5152;, + 3;5007,5004,5114;, + 3;5004,4678,5114;, + 3;5044,5008,5042;, + 3;4998,5004,5007;, + 3;5046,5005,5001;, + 3;5045,5038,5047;, + 3;5042,5006,5049;, + 3;5042,5152,5149;, + 3;5153,5115,5150;, + 3;5008,5112,5006;, + 3;4679,5151,5116;, + 3;3726,3733,3729;, + 3;3726,4272,4270;, + 3;4027,4005,4002;, + 3;3727,4266,3699;, + 3;3735,3702,3736;, + 3;3705,3700,3707;, + 3;3700,4268,3707;, + 3;4028,3706,3734;, + 3;4003,3700,3705;, + 3;4030,3701,4006;, + 3;4029,3726,4031;, + 3;3734,3704,3735;, + 3;3734,3736,3730;, + 3;3737,3708,3731;, + 3;3706,3702,3704;, + 3;4269,3732,3709;, + 3;4876,4881,4879;, + 3;4876,4272,4881;, + 3;5050,5009,5053;, + 3;4877,4266,4271;, + 3;4885,4861,4860;, + 3;4863,4865,4857;, + 3;4857,4268,4267;, + 3;5051,4864,5012;, + 3;5013,4857,5010;, + 3;5054,4858,4878;, + 3;5052,4876,4879;, + 3;4880,4860,4864;, + 3;4880,4886,4885;, + 3;4887,4866,4862;, + 3;4864,4861,4867;, + 3;4269,4882,4273;, + 3;4235,4221,4223;, + 3;3672,4222,3668;, + 3;3611,3668,3592;, + 3;3614,3591,3593;, + 3;3616,3593,3595;, + 3;3619,3594,3596;, + 3;4240,3596,4225;, + 3;4238,4224,4221;, + 3;4241,4239,3041;, + 3;3620,4241,3041;, + 3;3620,3041,3617;, + 3;3617,3041,3615;, + 3;3615,3041,3612;, + 3;3612,3041,3673;, + 3;4236,3673,3041;, + 3;4239,4236,3041;, + 3;4261,3042,3388;, + 3;3042,3390,3388;, + 3;4261,4829,3042;, + 3;4261,4793,4829;, + 3;3042,4831,3390;, + 3;3042,4829,4831;, + 3;3354,3388,3126;, + 3;3354,4261,3388;, + 3;3126,3388,3393;, + 3;3347,3355,3127;, + 3;3347,3127,3124;, + 3;4262,4789,4794;, + 3;4258,4789,4262;, + 3;4795,4826,4830;, + 3;4790,4826,4795;, + 3;4830,4827,4832;, + 3;4826,4827,4830;, + 3;3391,4833,4828;, + 3;3384,3391,4828;, + 3;3389,3392,3385;, + 3;3386,3389,3385;, + 3;3128,3394,3387;, + 3;3125,3128,3387;, + 3;3356,4258,4262;, + 3;3348,4258,3356;, + 3;3387,3394,3389;, + 3;3387,3389,3386;, + 3;3282,3320,3313;, + 3;3043,3359,3044;, + 3;3285,3324,3321;, + 3;3282,3287,3286;, + 3;3044,3361,3045;, + 3;3288,3621,3324;, + 3;3284,3526,3289;, + 3;3524,3622,3527;, + 3;3312,3044,3315;, + 3;3322,3360,3357;, + 3;3312,3358,3043;, + 3;3315,3045,3601;, + 3;3601,3361,3623;, + 3;3325,3362,3360;, + 3;3529,3293,3290;, + 3;3291,3333,3326;, + 3;3530,3292,3046;, + 3;3292,3625,3046;, + 3;3327,3659,3626;, + 3;3294,3660,3334;, + 3;3294,3534,3047;, + 3;3530,3046,4756;, + 3;3046,4775,4756;, + 3;3626,4781,4776;, + 3;3047,4782,3660;, + 3;3047,3534,4761;, + 3;3531,4762,3535;, + 3;4757,4783,4763;, + 3;4186,4180,4182;, + 3;4191,4182,4183;, + 3;4191,4732,4738;, + 3;4193,4734,4184;, + 3;3048,4187,4192;, + 3;4194,4188,3048;, + 3;3048,4739,4741;, + 3;4195,3048,4741;, + 3;4189,4184,4181;, + 3;4740,4735,4742;, + 3;3112,3256,3258;, + 3;3256,3500,3258;, + 3;3257,3115,3049;, + 3;3108,3049,3115;, + 3;3503,3050,3506;, + 3;3040,3506,3050;, + 3;3501,3051,3508;, + 3;3495,3508,3051;, + 3;3502,3052,3259;, + 3;3497,3052,3509;, + 3;3259,3116,3113;, + 3;3249,3116,3052;, + 3;3507,3498,3504;, + 3;3260,3499,3256;, + 3;3494,3051,3507;, + 3;3059,3117,3062;, + 3;3059,3064,3061;, + 3;3060,3119,3111;, + 3;3110,3262,3117;, + 3;3111,3265,3253;, + 3;3251,3266,3263;, + 3;3063,3120,3065;, + 3;3118,3267,3120;, + 3;3532,4243,3627;, + 3;3268,3053,3532;, + 3;3053,4778,4243;, + 3;4197,4759,3053;, + 3;3628,3525,3533;, + 3;4244,3603,3629;, + 3;4779,4229,4244;, + 3;4760,4774,4780;, + 3;4744,4755,4760;, + 3;4198,4737,4745;, + 3;4185,3269,3255;, + 3;3254,3533,3525;, + 3;3630,3676,3633;, + 3;3630,4263,3674;, + 3;3636,4247,4250;, + 3;3636,3644,3639;, + 3;4250,3630,3636;, + 3;3647,3653,3656;, + 3;3329,3657,3331;, + 3;3641,3650,3648;, + 3;3637,3654,3651;, + 3;3634,3655,3631;, + 3;3634,3332,3658;, + 3;3641,3648,3330;, + 3;3675,3670,3677;, + 3;4245,4259,4264;, + 3;3678,3604,3635;, + 3;3640,3606,3608;, + 3;4248,4233,4251;, + 3;3642,3607,3645;, + 3;3331,3318,3329;, + 3;4252,4230,4245;, + 3;4265,3669,3675;, + 3;3640,4232,4249;, + 3;3330,3610,3641;, + 3;3634,3317,3332;, + 3;5323,5331,5326;, + 3;5318,5332,5324;, + 3;5291,5320,5318;, + 3;5294,5302,5292;, + 3;5296,5304,5294;, + 3;5299,5305,5297;, + 3;5328,5307,5299;, + 3;5326,5334,5329;, + 3;5330,5301,5327;, + 3;5300,5301,5330;, + 3;5300,5298,5301;, + 3;5298,5295,5301;, + 3;5295,5293,5301;, + 3;5293,5319,5301;, + 3;5325,5301,5319;, + 3;5327,5301,5325;, + 3;5336,5331,5333;, + 3;5321,5332,5320;, + 3;5308,5320,5303;, + 3;5311,5302,5304;, + 3;5313,5304,5306;, + 3;5316,5305,5307;, + 3;5341,5307,5335;, + 3;5339,5334,5331;, + 3;5342,5340,5290;, + 3;5317,5342,5290;, + 3;5317,5290,5314;, + 3;5314,5290,5312;, + 3;5312,5290,5309;, + 3;5309,5290,5322;, + 3;5337,5322,5290;, + 3;5340,5337,5290;, + 3;5350,5355,5352;, + 3;5351,2485,2465;, + 3;5353,2487,2486;, + 3;5358,2488,5356;, + 3;5360,2492,5361;, + 3;5361,5363,5360;, + 3;5344,2494,5360;, + 3;5345,5360,5363;, + 3;5368,5365,5370;, + 3;5373,2507,2506;, + 3;5373,5371,5374;, + 3;5347,5364,5368;, + 3;5349,2506,2468;, + 3;5349,5369,5373;, + 3;5366,2493,2511;, + 3;2512,5375,5372;, + 3;2512,5366,2511;, + 3;5384,5396,5397;, + 3;5386,5401,5396;, + 3;5384,5403,5389;, + 3;5391,5170,5393;, + 3;5394,5185,5405;, + 3;5405,5188,5407;, + 3;5408,5194,5411;, + 3;5411,5197,5413;, + 3;5380,4851,5376;, + 3;5169,5377,4852;, + 3;5413,4996,5381;, + 3;5385,5393,5387;, + 3;5398,5412,5414;, + 3;5388,5406,5399;, + 3;5399,5409,5402;, + 3;5401,5412,5396;, + 3;5403,5414,5382;, + 3;5390,5383,5378;, + 3;5384,5379,5392;, + 3;5447,5418,5415;, + 3;5448,5453,5450;, + 3;5451,5421,5419;, + 3;5416,5422,5459;, + 3;5449,5460,5456;, + 3;5457,5423,5454;, + 3;5462,5427,5424;, + 3;5463,5468,5465;, + 3;5466,5430,5428;, + 3;5425,5431,5433;, + 3;5464,5434,5471;, + 3;5472,5432,5469;, + 3;5474,5439,5436;, + 3;5475,5479,5477;, + 3;5478,5441,5439;, + 3;5437,5442,5444;, + 3;5476,5445,5482;, + 3;5483,5443,5480;, + 3;5517,5488,5485;, + 3;5518,5523,5520;, + 3;5521,5491,5489;, + 3;5486,5492,5529;, + 3;5519,5530,5526;, + 3;5527,5493,5524;, + 3;5532,5497,5494;, + 3;5533,5538,5535;, + 3;5536,5500,5498;, + 3;5495,5501,5503;, + 3;5534,5504,5541;, + 3;5542,5502,5539;, + 3;5544,5509,5506;, + 3;5545,5549,5547;, + 3;5548,5511,5509;, + 3;5507,5512,5514;, + 3;5546,5515,5552;, + 3;5553,5513,5550;, + 3;5587,5558,5555;, + 3;5588,5593,5590;, + 3;5591,5561,5559;, + 3;5556,5562,5599;, + 3;5589,5600,5596;, + 3;5597,5563,5594;, + 3;5602,5567,5564;, + 3;5603,5608,5605;, + 3;5606,5570,5568;, + 3;5565,5571,5573;, + 3;5604,5574,5611;, + 3;5612,5572,5609;, + 3;1063,1067,1161;, + 3;5615,5619,5617;, + 3;5618,5581,5579;, + 3;5577,5582,5584;, + 3;5616,5585,5622;, + 3;5623,5583,5620;, + 3;5657,5628,5625;, + 3;5658,5663,5660;, + 3;5661,5631,5629;, + 3;5626,5632,5669;, + 3;5659,5670,5666;, + 3;5667,5633,5664;, + 3;5672,5637,5634;, + 3;5673,5678,5675;, + 3;5676,5640,5638;, + 3;5635,5641,5643;, + 3;5674,5644,5681;, + 3;5682,5642,5679;, + 3;5684,5649,5646;, + 3;5685,5689,5687;, + 3;5688,5651,5649;, + 3;5647,5652,5654;, + 3;5686,5655,5692;, + 3;5693,5653,5690;, + 3;5716,5721,5718;, + 3;5713,5722,5717;, + 3;5695,5714,5713;, + 3;5697,5701,5696;, + 3;5698,5703,5697;, + 3;5700,5704,5699;, + 3;5719,5706,5700;, + 3;5718,5724,5720;, + 3;5726,5721,5723;, + 3;5715,5722,5714;, + 3;5707,5714,5702;, + 3;5709,5701,5703;, + 3;5710,5703,5705;, + 3;5712,5704,5706;, + 3;5729,5706,5725;, + 3;5728,5724,5721;, + 3;5752,5757,5754;, + 3;5749,5758,5753;, + 3;5731,5750,5749;, + 3;5733,5737,5732;, + 3;5734,5739,5733;, + 3;5736,5740,5735;, + 3;5755,5742,5736;, + 3;5754,5760,5756;, + 3;5762,5757,5759;, + 3;5751,5758,5750;, + 3;5743,5750,5738;, + 3;5745,5737,5739;, + 3;5746,5739,5741;, + 3;5748,5740,5742;, + 3;5765,5742,5761;, + 3;5764,5760,5757;, + 3;5791,5796,5794;, + 3;5801,5796,5804;, + 3;5798,5809,5807;, + 3;5805,5767,5802;, + 3;5775,5781,5778;, + 3;5785,5781,5783;, + 3;5779,5811,5776;, + 3;5788,5773,5771;, + 3;5768,5812,5810;, + 3;5809,5813,5807;, + 3;5808,5772,5769;, + 3;5770,5773,5767;, + 3;5769,5806,5808;, + 3;5797,5799,5808;, + 3;5806,5797,5808;, + 3;5768,5810,5803;, + 3;5803,5810,5795;, + 3;5795,5810,5792;, + 3;5772,5814,5780;, + 3;5772,5782,5789;, + 3;5772,5780,5782;, + 3;5774,5786,5812;, + 3;5784,5777,5812;, + 3;5786,5784,5812;, + 3;5852,5837,5834;, + 3;5852,5840,5837;, + 3;5852,5843,5840;, + 3;5843,5852,5846;, + 3;5846,5852,5849;, + 3;5849,5852,5834;, + 3;5815,5819,5816;, + 3;5815,5816,5822;, + 3;5815,5822,5825;, + 3;5825,5828,5815;, + 3;5828,5831,5815;, + 3;5831,5819,5815;, + 3;5817,5841,5823;, + 3;5824,5844,5826;, + 3;5827,5847,5829;, + 3;5830,5850,5832;, + 3;5833,5835,5820;, + 3;5821,5838,5818;, + 3;5890,5875,5872;, + 3;5890,5878,5875;, + 3;5890,5881,5878;, + 3;5881,5890,5884;, + 3;5884,5890,5887;, + 3;5887,5890,5872;, + 3;5853,5857,5854;, + 3;5853,5854,5860;, + 3;5853,5860,5863;, + 3;5863,5866,5853;, + 3;5866,5869,5853;, + 3;5869,5857,5853;, + 3;5855,5879,5861;, + 3;5862,5882,5864;, + 3;5865,5885,5867;, + 3;5868,5888,5870;, + 3;5871,5873,5858;, + 3;5859,5876,5856;, + 3;5941,5946,5948;, + 3;5931,5943,5942;, + 3;5949,5932,5931;, + 3;5954,5951,5950;, + 3;5954,5959,5955;, + 3;5957,5963,5960;, + 3;5962,5967,5963;, + 3;5965,5946,5968;, + 3;5969,5947,5970;, + 3;5964,5969,5970;, + 3;5961,5964,5970;, + 3;5956,5961,5970;, + 3;5956,5970,5952;, + 3;5952,5970,5933;, + 3;5933,5970,5944;, + 3;5944,5970,5947;, + 3;5901,5925,5928;, + 3;5901,5904,5925;, + 3;5925,5912,5971;, + 3;5925,5904,5912;, + 3;5902,5929,5891;, + 3;5891,5929,5915;, + 3;5930,5926,5916;, + 3;5916,5926,5917;, + 3;5927,5972,5918;, + 3;5918,5972,5934;, + 3;5913,5907,5973;, + 3;5907,5935,5973;, + 3;5905,5893,5914;, + 3;5893,5908,5914;, + 3;5903,5892,5906;, + 3;5892,5894,5906;, + 3;5895,5919,5898;, + 3;5895,5921,5919;, + 3;5919,5909,5898;, + 3;5919,5938,5909;, + 3;5892,5899,5894;, + 3;5892,5896,5899;, + 3;5916,5917,5922;, + 3;5923,5918,5920;, + 3;5891,5915,5897;, + 3;5915,5924,5897;, + 3;5893,5910,5908;, + 3;5893,5900,5910;, + 3;5939,5936,5907;, + 3;5911,5939,5907;, + 3;5920,5918,5940;, + 3;5918,5937,5940;, + 3;5977,5982,5984;, + 3;5974,5979,5978;, + 3;5985,5975,5974;, + 3;5990,5987,5986;, + 3;5990,5995,5991;, + 3;5993,5999,5996;, + 3;5998,6003,5999;, + 3;6001,5982,6004;, + 3;6005,5983,6006;, + 3;6000,6005,6006;, + 3;5997,6000,6006;, + 3;5992,5997,6006;, + 3;5992,6006,5988;, + 3;5988,6006,5976;, + 3;5976,6006,5980;, + 3;5980,6006,5983;, + 3;6010,6015,6017;, + 3;6007,6012,6011;, + 3;6018,6008,6007;, + 3;6023,6020,6019;, + 3;6023,6028,6024;, + 3;6026,6032,6029;, + 3;6031,6036,6032;, + 3;6034,6015,6037;, + 3;6038,6016,6039;, + 3;6033,6038,6039;, + 3;6030,6033,6039;, + 3;6025,6030,6039;, + 3;6025,6039,6021;, + 3;6021,6039,6009;, + 3;6009,6039,6013;, + 3;6013,6039,6016;, + 3;6090,6095,6092;, + 3;6080,6093,6081;, + 3;6098,6081,6100;, + 3;6103,6101,6104;, + 3;6103,6108,6106;, + 3;6107,6112,6111;, + 3;6111,6116,6114;, + 3;6115,6095,6097;, + 3;6117,6119,6096;, + 3;6113,6119,6117;, + 3;6109,6119,6113;, + 3;6105,6119,6109;, + 3;6105,6102,6119;, + 3;6102,6082,6119;, + 3;6082,6094,6119;, + 3;6094,6096,6119;, + 3;6050,6077,6074;, + 3;6050,6074,6053;, + 3;6074,6120,6061;, + 3;6074,6061,6053;, + 3;6051,6040,6078;, + 3;6040,6064,6078;, + 3;6079,6065,6075;, + 3;6065,6066,6075;, + 3;6076,6067,6121;, + 3;6067,6083,6121;, + 3;6062,6122,6056;, + 3;6056,6122,6084;, + 3;6054,6063,6042;, + 3;6042,6063,6057;, + 3;6052,6055,6041;, + 3;6041,6055,6043;, + 3;6044,6047,6068;, + 3;6044,6068,6070;, + 3;6068,6047,6058;, + 3;6068,6058,6087;, + 3;6041,6043,6048;, + 3;6041,6048,6045;, + 3;6065,6071,6066;, + 3;6072,6069,6067;, + 3;6040,6046,6064;, + 3;6064,6046,6073;, + 3;6042,6057,6059;, + 3;6042,6059,6049;, + 3;6088,6056,6085;, + 3;6060,6056,6088;, + 3;6069,6089,6067;, + 3;6067,6089,6086;, + 3;6126,6131,6128;, + 3;6123,6129,6124;, + 3;6134,6124,6136;, + 3;6139,6137,6140;, + 3;6139,6144,6142;, + 3;6143,6148,6147;, + 3;6147,6152,6150;, + 3;6151,6131,6133;, + 3;6153,6155,6132;, + 3;6149,6155,6153;, + 3;6145,6155,6149;, + 3;6141,6155,6145;, + 3;6141,6138,6155;, + 3;6138,6125,6155;, + 3;6125,6130,6155;, + 3;6130,6132,6155;, + 3;6159,6164,6161;, + 3;6156,6162,6157;, + 3;6167,6157,6169;, + 3;6172,6170,6173;, + 3;6172,6177,6175;, + 3;6176,6181,6180;, + 3;6180,6185,6183;, + 3;6184,6164,6166;, + 3;6186,6188,6165;, + 3;6182,6188,6186;, + 3;6178,6188,6182;, + 3;6174,6188,6178;, + 3;6174,6171,6188;, + 3;6171,6158,6188;, + 3;6158,6163,6188;, + 3;6163,6165,6188;, + 3;1063,1161,1747;, + 3;1068,1073,1035;, + 3;1064,1730,1705;, + 3;1074,1044,1152;, + 3;1042,1706,1745;, + 3;1069,1040,1046;, + 3;1039,1037,1042;, + 3;1071,1065,1043;, + 3;1070,1067,1063;, + 3;1066,1046,1044;, + 3;1066,1074,1162;, + 3;1163,1153,1155;, + 3;1046,1157,1152;, + 3;1746,1748,1160;, + 3;1047,2279,0;, + 3;740,1936,2279;, + 3;2,3,1936;, + 3;446,763,764;, + 3;762,4,5;, + 3;446,447,6;, + 3;420,736,737;, + 3;1958,8,1959;, + 3;425,427,193;, + 3;426,739,766;, + 3;1917,1920,737;, + 3;1962,1960,766;, + 3;421,424,427;, + 3;738,739,426;, + 3;738,1921,1962;, + 3;1918,1958,1961;, + 3;1075,2108,1749;, + 3;196,91,94;, + 3;91,93,96;, + 3;767,773,463;, + 3;466,464,468;, + 3;93,236,97;, + 3;470,469,478;, + 3;467,237,448;, + 3;237,234,195;, + 3;471,238,237;, + 3;238,92,234;, + 3;471,473,239;, + 3;238,239,235;, + 3;770,769,449;, + 3;199,450,449;, + 3;478,241,240;, + 3;241,98,236;, + 3;242,204,201;, + 3;84,202,201;, + 3;455,458,459;, + 3;456,203,205;, + 3;452,460,243;, + 3;202,85,86;, + 3;99,242,243;, + 3;84,99,100;, + 3;178,222,244;, + 3;180,225,227;, + 3;229,247,248;, + 3;245,212,214;, + 3;211,187,189;, + 3;185,189,187;, + 3;192,233,222;, + 3;228,226,229;, + 3;210,217,190;, + 3;209,244,250;, + 3;244,222,232;, + 3;178,191,186;, + 3;233,227,232;, + 3;192,186,227;, + 3;774,1078,1048;, + 3;743,1052,223;, + 3;1053,1080,246;, + 3;1079,778,212;, + 3;777,746,188;, + 3;744,183,188;, + 3;224,1051,1053;, + 3;747,741,1048;, + 3;775,742,746;, + 3;1076,1080,1053;, + 3;776,778,1079;, + 3;748,1056,1050;, + 3;1055,1049,1053;, + 3;742,749,744;, + 3;72,429,163;, + 3;61,139,385;, + 3;65,142,137;, + 3;386,433,76;, + 3;431,430,73;, + 3;144,148,169;, + 3;173,171,434;, + 3;146,390,435;, + 3;145,11,389;, + 3;391,1875,1922;, + 3;1874,393,394;, + 3;1923,1876,1878;, + 3;1881,1930,1926;, + 3;1924,1928,439;, + 3;1929,443,440;, + 3;438,441,395;, + 3;442,399,395;, + 3;12,150,151;, + 3;400,1883,1880;, + 3;13,1881,1879;, + 3;155,153,397;, + 3;149,400,396;, + 3;2214,2215,2315;, + 3;2214,1753,1755;, + 3;1758,2221,2215;, + 3;2218,1762,1753;, + 3;1164,1758,1755;, + 3;1760,1763,6191;, + 3;1765,6192,6191;, + 3;2219,2222,1764;, + 3;2223,1766,1764;, + 3;2319,2317,2321;, + 3;2327,2330,2324;, + 3;2224,2328,2322;, + 3;2316,2217,2226;, + 3;1754,6191,1767;, + 3;6192,1769,1767;, + 3;2329,2223,2222;, + 3;2219,2320,2326;, + 3;1770,2229,2230;, + 3;2220,1759,1773;, + 3;2216,2220,2231;, + 3;2229,2225,2228;, + 3;1168,1171,1172;, + 3;1757,1768,1170;, + 3;1759,1166,1173;, + 3;1767,1769,1771;, + 3;479,483,485;, + 3;1775,1175,1176;, + 3;2232,1775,1777;, + 3;1176,1175,1178;, + 3;479,489,1180;, + 3;1182,1183,1779;, + 3;1184,1781,1779;, + 3;1780,1779,2236;, + 3;1781,2237,2236;, + 3;15,2239,1783;, + 3;2240,1785,1783;, + 3;491,494,495;, + 3;495,494,497;, + 3;502,504,505;, + 3;508,511,506;, + 3;513,514,515;, + 3;514,518,519;, + 3;486,484,521;, + 3;527,528,519;, + 3;1186,1188,495;, + 3;1189,496,495;, + 3;1189,1188,1183;, + 3;1186,1184,1183;, + 3;1190,1192,1193;, + 3;1196,1197,1193;, + 3;1196,1192,505;, + 3;1190,508,505;, + 3;1197,1784,1783;, + 3;1785,1194,1193;, + 3;513,517,493;, + 3;520,526,522;, + 3;503,507,528;, + 3;1179,1187,501;, + 3;480,501,498;, + 3;482,499,493;, + 3;523,493,517;, + 3;1174,1185,1187;, + 3;1776,1782,1185;, + 3;2233,2238,1782;, + 3;1181,1191,1195;, + 3;1177,1195,1786;, + 3;1778,1786,2241;, + 3;490,509,1191;, + 3;487,512,509;, + 3;525,507,510;, + 3;519,528,507;, + 3;1198,1788,1789;, + 3;1787,1793,1794;, + 3;1204,1208,1795;, + 3;1210,1211,1212;, + 3;1201,1791,1796;, + 3;1199,1203,1211;, + 3;1199,1210,1213;, + 3;1213,1212,1207;, + 3;1202,1209,1212;, + 3;1214,2243,2244;, + 3;1214,1219,1220;, + 3;1221,1226,1228;, + 3;2245,2246,1230;, + 3;2242,1215,1232;, + 3;1217,2245,2246;, + 3;2242,1215,1232;, + 3;1215,1225,1229;, + 3;1231,1227,1222;, + 3;2248,2332,2333;, + 3;2331,2335,17;, + 3;2249,18,2335;, + 3;78,81,68;, + 3;82,75,167;, + 3;164,177,175;, + 3;428,444,176;, + 3;387,401,445;, + 3;401,388,138;, + 3;156,140,141;, + 3;158,143,66;, + 3;62,71,70;, + 3;64,68,71;, + 3;74,83,80;, + 3;432,445,444;, + 3;1081,1082,19;, + 3;21,22,1082;, + 3;2108,23,1797;, + 3;24,1075,1751;, + 3;469,475,529;, + 3;771,780,476;, + 3;94,103,218;, + 3;96,104,102;, + 3;241,478,529;, + 3;458,461,25;, + 3;207,221,461;, + 3;88,89,220;, + 3;101,26,89;, + 3;464,477,474;, + 3;97,106,104;, + 3;241,252,105;, + 3;1750,1798,1800;, + 3;451,200,219;, + 3;451,462,779;, + 3;1963,1966,1967;, + 3;1968,1967,2109;, + 3;2111,2110,2109;, + 3;1964,2112,2114;, + 3;1937,1963,1968;, + 3;1939,1968,2110;, + 3;2081,2110,2111;, + 3;1938,2083,2112;, + 3;1884,1887,2256;, + 3;1931,2262,2263;, + 3;1932,1889,2258;, + 3;2263,2262,2260;, + 3;1935,1893,1890;, + 3;159,1885,1889;, + 3;27,162,1891;, + 3;28,1888,1886;, + 3;1552,916,1554;, + 3;916,980,1626;, + 3;980,1630,1631;, + 3;1558,1559,1560;, + 3;1555,1562,1559;, + 3;1627,1634,1561;, + 3;1632,1635,1633;, + 3;1632,1629,1636;, + 3;1629,982,983;, + 3;981,918,919;, + 3;917,1553,1560;, + 3;1563,1566,1567;, + 3;921,1567,1637;, + 3;985,1637,1640;, + 3;1565,1564,1560;, + 3;1568,1565,1559;, + 3;1638,1569,1561;, + 3;1641,1639,1633;, + 3;1641,1635,1636;, + 3;1643,1636,983;, + 3;987,984,919;, + 3;923,920,1560;, + 3;1570,1573,1575;, + 3;1580,1585,1575;, + 3;1578,1587,1588;, + 3;1583,1582,924;, + 3;1446,1451,1452;, + 3;1456,1454,1452;, + 3;1449,1448,1590;, + 3;1460,929,930;, + 3;925,1589,1591;, + 3;1588,1587,1592;, + 3;1586,927,928;, + 3;926,924,930;, + 3;852,854,793;, + 3;1341,1347,1981;, + 3;2013,2017,1462;, + 3;876,1468,880;, + 3;880,1468,1469;, + 3;794,855,1436;, + 3;1351,799,795;, + 3;877,1477,1470;, + 3;1471,1480,1481;, + 3;2017,1482,1478;, + 3;1437,1441,1346;, + 3;1350,1346,1342;, + 3;1483,1466,1463;, + 3;1474,1486,1480;, + 3;884,886,887;, + 3;2018,2020,2022;, + 3;1487,1490,886;, + 3;1488,1493,1494;, + 3;2025,2023,1495;, + 3;852,887,886;, + 3;2020,1987,1983;, + 3;855,886,1497;, + 3;1496,1499,1498;, + 3;1438,1498,1499;, + 3;1439,1500,2023;, + 3;882,881,884;, + 3;880,1472,1487;, + 3;1473,1481,1493;, + 3;1482,2017,2025;, + 3;2017,2016,2018;, + 3;856,802,804;, + 3;1355,1990,1992;, + 3;2026,1503,1504;, + 3;891,895,897;, + 3;897,1508,1510;, + 3;805,1363,1442;, + 3;1365,1364,806;, + 3;892,1507,1511;, + 3;1512,1509,1517;, + 3;2029,1504,1520;, + 3;1443,1362,1361;, + 3;1362,1367,1356;, + 3;1522,1521,1505;, + 3;1514,1512,1519;, + 3;899,902,903;, + 3;2030,2033,2034;, + 3;1526,900,905;, + 3;1527,1529,1531;, + 3;2032,1535,1532;, + 3;856,858,905;, + 3;2036,2034,1994;, + 3;859,1442,1536;, + 3;1533,1530,1537;, + 3;1443,1445,1540;, + 3;1444,1993,2035;, + 3;895,902,899;, + 3;897,900,1526;, + 3;1509,1527,1534;, + 3;1518,1535,2032;, + 3;2029,2033,2030;, + 3;904,901,890;, + 3;901,896,883;, + 3;896,894,878;, + 3;893,1516,1475;, + 3;1515,1525,1484;, + 3;1524,1502,1465;, + 3;1502,2028,2014;, + 3;2027,2031,2019;, + 3;2031,2037,2021;, + 3;2037,1991,1985;, + 3;1989,1358,1343;, + 3;1357,1368,1353;, + 3;1366,803,797;, + 3;801,857,853;, + 3;857,904,888;, + 3;1138,1132,1133;, + 3;1009,1012,988;, + 3;1009,1016,1018;, + 3;1139,1143,1144;, + 3;993,990,988;, + 3;999,1134,1148;, + 3;1022,1000,999;, + 3;1144,1024,1027;, + 3;1019,1017,1027;, + 3;1119,1123,932;, + 3;937,939,934;, + 3;1148,1150,1029;, + 3;1021,1029,1031;, + 3;1033,1003,989;, + 3;1033,1013,1020;, + 3;1120,1125,1126;, + 3;1133,1132,1126;, + 3;939,937,941;, + 3;994,998,946;, + 3;1000,1007,1005;, + 3;997,989,950;, + 3;999,1008,1136;, + 3;951,1129,1136;, + 3;951,1008,1004;, + 3;999,1000,1004;, + 3;940,950,953;, + 3;989,1003,953;, + 3;1149,1135,1131;, + 3;1023,1011,991;, + 3;1030,1151,1146;, + 3;1150,1148,1141;, + 3;1022,1031,1014;, + 3;1032,1030,1028;, + 3;1006,944,938;, + 3;1007,995,943;, + 3;1007,1000,992;, + 3;1135,1137,1127;, + 3;1129,1124,1128;, + 3;952,933,1122;, + 3;949,938,933;, + 3;1267,1270,1288;, + 3;711,1269,1290;, + 3;589,711,718;, + 3;592,591,642;, + 3;594,592,643;, + 3;597,596,645;, + 3;1272,597,646;, + 3;1270,1274,1292;, + 3;304,294,318;, + 3;373,364,365;, + 3;293,296,322;, + 3;304,306,295;, + 3;374,365,367;, + 3;296,563,603;, + 3;305,574,561;, + 3;573,651,604;, + 3;335,373,374;, + 3;320,323,366;, + 3;335,321,364;, + 3;336,374,375;, + 3;650,375,367;, + 3;323,606,368;, + 3;564,569,298;, + 3;302,300,324;, + 3;303,329,607;, + 3;328,326,587;, + 3;299,560,588;, + 3;570,607,1842;, + 3;608,587,1845;, + 3;560,1828,1846;, + 3;566,1827,1829;, + 3;1826,1844,1847;, + 3;1233,1237,1247;, + 3;1238,1233,1249;, + 3;1238,1250,1810;, + 3;1240,1806,1812;, + 3;1244,1235,1234;, + 3;1244,1239,1802;, + 3;1236,1243,1251;, + 3;1803,1811,1813;, + 3;253,531,532;, + 3;254,109,110;, + 3;116,29,257;, + 3;535,259,260;, + 3;30,544,538;, + 3;533,530,540;, + 3;545,547,541;, + 3;534,542,261;, + 3;546,271,261;, + 3;256,261,111;, + 3;271,117,111;, + 3;539,540,530;, + 3;258,537,531;, + 3;543,545,540;, + 3;53,118,112;, + 3;53,48,50;, + 3;55,52,114;, + 3;118,273,262;, + 3;119,114,265;, + 3;272,275,266;, + 3;49,113,115;, + 3;113,264,267;, + 3;1594,1599,1542;, + 3;1595,957,958;, + 3;1598,960,906;, + 3;1596,1545,908;, + 3;956,909,907;, + 3;963,970,1607;, + 3;969,973,1610;, + 3;972,976,1645;, + 3;975,979,1648;, + 3;978,967,1601;, + 3;966,964,1605;, + 3;1546,1551,1995;, + 3;1547,912,913;, + 3;1550,915,860;, + 3;1999,1997,861;, + 3;1548,2000,864;, + 3;911,865,862;, + 3;1089,1094,1095;, + 3;1099,1104,2152;, + 3;729,1894,1896;, + 3;2158,2161,2162;, + 3;1894,1900,1901;, + 3;1105,1108,866;, + 3;870,873,868;, + 3;1100,874,867;, + 3;1102,1106,869;, + 3;2156,2001,874;, + 3;2002,871,874;, + 3;2153,1102,875;, + 3;872,2004,2003;, + 3;2168,2005,2001;, + 3;2007,2002,2001;, + 3;2170,2153,2003;, + 3;2004,2012,2009;, + 3;2171,2010,2006;, + 3;2011,2008,2006;, + 3;730,734,873;, + 3;733,1897,2004;, + 3;731,871,2002;, + 3;1897,1903,2012;, + 3;1898,2008,2011;, + 3;1895,2002,2007;, + 3;1107,1110,1111;, + 3;1101,1113,1114;, + 3;1106,1102,1115;, + 3;1108,1105,1118;, + 3;2156,2173,2175;, + 3;2169,2176,2177;, + 3;2153,2170,2178;, + 3;2157,2154,2180;, + 3;1110,1091,1098;, + 3;1117,1115,1096;, + 3;1109,1118,1093;, + 3;2173,2159,2166;, + 3;2176,2167,2163;, + 3;2179,2178,2164;, + 3;1112,2174,2181;, + 3;1115,2179,2160;, + 3;1097,1095,2161;, + 3;1111,1098,2159;, + 3;1369,1372,807;, + 3;1374,1377,1378;, + 3;1382,1384,1386;, + 3;1371,1370,1386;, + 3;1379,812,1385;, + 3;808,1373,1385;, + 3;1387,1391,1393;, + 3;1395,818,814;, + 3;1380,1376,819;, + 3;811,809,813;, + 3;815,819,1376;, + 3;1394,1392,1375;, + 3;1389,1377,1374;, + 3;1396,1394,1386;, + 3;816,811,819;, + 3;1397,1369,810;, + 3;1398,822,823;, + 3;1399,1403,1404;, + 3;1402,825,826;, + 3;820,1412,827;, + 3;1400,1409,1410;, + 3;1408,1406,828;, + 3;1413,831,832;, + 3;1414,1418,1419;, + 3;1417,834,835;, + 3;829,840,836;, + 3;1415,1424,838;, + 3;1423,1421,837;, + 3;1425,843,844;, + 3;1426,1429,1430;, + 3;1428,844,846;, + 3;841,851,847;, + 3;1427,1435,849;, + 3;1434,1432,848;, + 3;1670,1673,1674;, + 3;1650,1670,1676;, + 3;1656,1652,1654;, + 3;1678,1658,1660;, + 3;1678,1680,1682;, + 3;1707,1712,1713;, + 3;1717,1715,1686;, + 3;1708,1721,1726;, + 3;1711,1725,1724;, + 3;1709,1718,1723;, + 3;1714,1724,1675;, + 3;1688,1686,1674;, + 3;1718,1689,1672;, + 3;2264,2266,2280;, + 3;2266,2284,2285;, + 3;2264,2281,2287;, + 3;2271,2273,2274;, + 3;2277,2275,2289;, + 3;2290,2289,2292;, + 3;2295,2293,2298;, + 3;2299,2298,2301;, + 3;2084,2089,1940;, + 3;2273,2271,1943;, + 3;2302,2301,2088;, + 3;2265,2271,2276;, + 3;2282,2280,2300;, + 3;2268,2278,2291;, + 3;2283,2291,2296;, + 3;2285,2297,2300;, + 3;2287,2281,2303;, + 3;2270,2288,2087;, + 3;2264,2269,1945;, + 3;571,1266,1278;, + 3;268,1245,1266;, + 3;1266,1831,1848;, + 3;1245,1809,1831;, + 3;610,653,575;, + 3;1279,1296,652;, + 3;1849,1852,1296;, + 3;1832,1833,1851;, + 3;1807,1815,1833;, + 3;1246,1252,1814;, + 3;1252,1246,269;, + 3;277,270,572;, + 3;612,713,715;, + 3;612,1281,1322;, + 3;618,621,1282;, + 3;618,625,626;, + 3;1285,1281,612;, + 3;629,634,635;, + 3;330,631,639;, + 3;623,620,632;, + 3;619,614,636;, + 3;616,640,637;, + 3;714,719,720;, + 3;1280,1297,1326;, + 3;717,721,654;, + 3;622,628,656;, + 3;1283,1299,1300;, + 3;624,660,657;, + 3;332,339,340;, + 3;1287,1301,1297;, + 3;1324,1327,719;, + 3;622,658,1298;, + 3;331,341,659;, + 3;616,655,338;, + 3;1712,1728,1720;, + 3;1727,1722,1684;, + 3;2115,2119,2120;, + 3;2122,2120,2341;, + 3;2348,2352,2399;, + 3;2124,2336,2338;, + 3;2336,2405,2407;, + 3;2400,2407,2405;, + 3;2304,2123,2345;, + 3;2339,2408,2406;, + 3;2127,2117,2123;, + 3;2128,2339,2337;, + 3;2357,2349,2403;, + 3;2408,2410,2404;, + 3;2306,2121,2118;, + 3;2121,2306,2358;, + 3;2308,2360,2409;, + 3;2305,2355,2360;, + 3;2340,2128,2131;, + 3;2308,2131,2127;, + 3;2346,2343,2350;, + 3;2409,2360,2357;, + 3;2125,2133,2132;, + 3;2127,2132,2133;, + 3;2347,2349,2357;, + 3;6189,6194,2307;, + 3;6190,2126,2338;, + 3;6198,2338,2407;, + 3;6194,6195,2359;, + 3;6199,2407,2400;, + 3;6196,6201,2399;, + 3;6195,6197,2353;, + 3;2361,2365,2366;, + 3;2362,31,2371;, + 3;2364,2372,2373;, + 3;2370,2368,2374;, + 3;2375,2376,2378;, + 3;2376,2375,2381;, + 3;2309,2375,2380;, + 3;2310,2381,2375;, + 3;2386,2390,2384;, + 3;2391,2392,2393;, + 3;2391,2395,2388;, + 3;2312,2386,2382;, + 3;2314,34,2392;, + 3;2314,2391,2387;, + 3;2385,2397,2379;, + 3;2398,2389,2396;, + 3;2398,2397,2385;, + 3;934,1613,1731;, + 3;1120,1732,1733;, + 3;1125,1733,1737;, + 3;1133,1737,1739;, + 3;1143,1740,1741;, + 3;1144,1741,1692;, + 3;1694,1034,1026;, + 3;1002,1034,1694;, + 3;954,1002,1662;, + 3;936,954,1614;, + 3;2197,1743,1738;, + 3;2065,2051,1663;, + 3;2065,1695,1697;, + 3;2198,2202,1744;, + 3;2054,1667,1663;, + 3;2057,2072,2204;, + 3;2073,2072,2057;, + 3;1744,2202,2075;, + 3;1698,1700,2075;, + 3;1734,1615,2039;, + 3;2041,2039,1615;, + 3;2204,2072,2077;, + 3;2072,2073,2079;, + 3;1703,1696,1664;, + 3;1703,1702,1699;, + 3;1735,2185,2186;, + 3;1738,1736,2186;, + 3;1618,1622,2043;, + 3;2055,2046,1620;, + 3;2058,2062,2060;, + 3;1666,1621,1623;, + 3;2057,2193,2195;, + 3;2049,2064,2195;, + 3;2049,2047,2062;, + 3;2057,2064,2062;, + 3;1619,1617,1624;, + 3;1664,1623,1624;, + 3;2205,2200,2192;, + 3;2074,2059,2052;, + 3;2078,2076,2201;, + 3;2206,2203,2199;, + 3;2073,2067,2070;, + 3;2080,2071,2076;, + 3;2061,2048,2042;, + 3;2063,2060,2045;, + 3;2063,2056,2053;, + 3;2194,2192,2187;, + 3;2189,2195,2188;, + 3;2050,2190,2184;, + 3;2048,2050,2040;, + 3;1615,1734,1731;, + 3;1735,1736,1733;, + 3;1736,1738,1737;, + 3;1738,1743,1739;, + 3;1742,1744,1741;, + 3;1744,1700,1692;, + 3;1694,1693,1701;, + 3;1669,1662,1694;, + 3;1625,1614,1662;, + 3;1616,1612,1614;, + 3;2134,1729,1747;, + 3;2139,2092,2093;, + 3;2135,2098,1705;, + 3;2145,2254,2208;, + 3;2096,2210,1745;, + 3;2140,2138,2101;, + 3;2091,2100,2096;, + 3;2143,2095,2097;, + 3;2141,2144,2134;, + 3;2138,2145,2099;, + 3;2138,2252,2254;, + 3;2255,2253,2211;, + 3;2101,2099,2208;, + 3;1746,2213,2251;, + 3;781,1338,1339;, + 3;1083,1059,1060;, + 3;782,752,1333;, + 3;790,791,753;, + 3;750,758,1335;, + 3;1084,789,757;, + 3;1058,756,750;, + 3;1087,1062,751;, + 3;1085,1088,781;, + 3;789,790,755;, + 3;789,786,791;, + 3;792,787,759;, + 3;757,755,753;, + 3;1336,761,785;, + 3;1969,1974,1339;, + 3;2146,2151,2102;, + 3;1970,1337,1333;, + 3;1978,1949,1950;, + 3;1947,1334,1335;, + 3;2147,2107,1953;, + 3;2106,2104,1947;, + 3;2149,1971,1948;, + 3;2148,1972,1969;, + 3;1973,1953,1949;, + 3;1973,1978,1979;, + 3;1980,1951,1955;, + 3;1953,1957,1950;, + 3;1336,1340,1977;, + 3;1302,1289,1288;, + 3;722,718,1290;, + 3;661,641,718;, + 3;664,643,642;, + 3;666,644,643;, + 3;669,646,645;, + 3;1307,1291,646;, + 3;1305,1288,1292;, + 3;304,334,342;, + 3;37,38,381;, + 3;308,345,346;, + 3;304,307,310;, + 3;38,39,383;, + 3;309,346,671;, + 3;305,311,577;, + 3;573,578,672;, + 3;335,337,38;, + 3;343,380,382;, + 3;335,37,379;, + 3;337,650,39;, + 3;650,674,383;, + 3;347,382,384;, + 3;579,314,315;, + 3;312,350,355;, + 3;313,40,675;, + 3;349,676,709;, + 3;317,357,710;, + 3;40,1834,1853;, + 3;676,1855,1859;, + 3;41,710,1860;, + 3;581,586,1840;, + 3;1836,1841,1861;, + 3;1253,1249,1247;, + 3;1258,1250,1249;, + 3;1258,1818,1810;, + 3;1260,1251,1812;, + 3;42,1259,1254;, + 3;42,1820,1816;, + 3;1257,1248,1251;, + 3;1817,1821,1813;, + 3;278,280,550;, + 3;279,43,123;, + 3;116,123,43;, + 3;553,556,44;, + 3;30,44,556;, + 3;551,558,45;, + 3;545,45,558;, + 3;552,281,46;, + 3;546,559,46;, + 3;281,122,124;, + 3;271,46,124;, + 3;557,555,549;, + 3;283,278,548;, + 3;543,557,45;, + 3;53,56,125;, + 3;53,54,58;, + 3;55,119,127;, + 3;118,125,284;, + 3;119,274,287;, + 3;272,286,288;, + 3;57,60,128;, + 3;126,128,289;, + 3;582,678,1310;, + 3;290,582,47;, + 3;47,1310,1856;, + 3;1264,47,1837;, + 3;677,583,575;, + 3;1311,679,652;, + 3;1857,1311,1296;, + 3;1838,1858,1851;, + 3;1823,1838,1833;, + 3;1265,1824,1814;, + 3;1252,276,291;, + 3;277,575,583;, + 3;680,684,726;, + 3;680,724,1330;, + 3;686,1317,1314;, + 3;686,689,694;, + 3;1317,686,680;, + 3;697,708,703;, + 3;351,354,706;, + 3;692,699,701;, + 3;688,702,704;, + 3;683,682,705;, + 3;725,728,720;, + 3;1313,1332,1326;, + 3;727,685,654;, + 3;690,658,656;, + 3;1315,1319,1300;, + 3;693,696,657;, + 3;354,351,340;, + 3;1318,1313,1297;, + 3;1331,725,719;, + 3;690,1316,1298;, + 3;352,692,659;, + 3;683,353,338;, + 3;2444,2447,2452;, + 3;2439,2446,2454;, + 3;2412,2439,2441;, + 3;2415,2414,2424;, + 3;2417,2415,2425;, + 3;2420,2419,2427;, + 3;2449,2420,2428;, + 3;2447,2451,2456;, + 3;2457,2453,2452;, + 3;2442,2441,2454;, + 3;2429,2423,2441;, + 3;2432,2425,2424;, + 3;2434,2426,2425;, + 3;2437,2428,2427;, + 3;2462,2455,2428;, + 3;2460,2452,2456;, + 3;2475,2479,2480;, + 3;2476,2465,2485;, + 3;2478,2486,2487;, + 3;2484,2482,2488;, + 3;2489,2490,2492;, + 3;2490,2489,2495;, + 3;2469,2489,2494;, + 3;2470,2495,2489;, + 3;2500,2504,2498;, + 3;2505,2506,2507;, + 3;2505,2509,2502;, + 3;2472,2500,2496;, + 3;2474,2468,2506;, + 3;2474,2505,2501;, + 3;2499,2511,2493;, + 3;2512,2503,2510;, + 3;2512,2511,2499;, + 3;2521,2534,2533;, + 3;2523,2533,2538;, + 3;2521,2527,2540;, + 3;2528,2531,2274;, + 3;2530,2542,2289;, + 3;2542,2547,2292;, + 3;2544,2548,2298;, + 3;2548,2550,2301;, + 3;2517,2515,1940;, + 3;2273,1941,2513;, + 3;2550,2519,2088;, + 3;2522,2525,2531;, + 3;2535,2551,2549;, + 3;2524,2537,2543;, + 3;2537,2539,2545;, + 3;2538,2533,2549;, + 3;2540,2520,2551;, + 3;2526,2516,2518;, + 3;2521,2529,2514;, + 3;2584,2554,2555;, + 3;2585,2589,2590;, + 3;2588,2557,2558;, + 3;2552,2598,2559;, + 3;2586,2595,2596;, + 3;2594,2592,2560;, + 3;2599,2563,2564;, + 3;2600,2604,2605;, + 3;2603,2566,2567;, + 3;2561,2572,2568;, + 3;2601,2610,2570;, + 3;2609,2607,2569;, + 3;2611,2575,2576;, + 3;2612,2615,2616;, + 3;2614,2576,2578;, + 3;2573,2583,2579;, + 3;2613,2621,2581;, + 3;2620,2618,2580;, + 3;2654,2624,2625;, + 3;2655,2659,2660;, + 3;2658,2627,2628;, + 3;2622,2668,2629;, + 3;2656,2665,2666;, + 3;2664,2662,2630;, + 3;2669,2633,2634;, + 3;2670,2674,2675;, + 3;2673,2636,2637;, + 3;2631,2642,2638;, + 3;2671,2680,2640;, + 3;2679,2677,2639;, + 3;2681,2645,2646;, + 3;2682,2685,2686;, + 3;2684,2646,2648;, + 3;2643,2653,2649;, + 3;2683,2691,2651;, + 3;2690,2688,2650;, + 3;2724,2694,2695;, + 3;2725,2729,2730;, + 3;2728,2697,2698;, + 3;2692,2738,2699;, + 3;2726,2735,2736;, + 3;2734,2732,2700;, + 3;2739,2703,2704;, + 3;2740,2744,2745;, + 3;2743,2706,2707;, + 3;2701,2712,2708;, + 3;2741,2750,2710;, + 3;2749,2747,2709;, + 3;2751,2715,2716;, + 3;2752,2755,2756;, + 3;2754,2716,2718;, + 3;2713,2723,2719;, + 3;2753,2761,2721;, + 3;2760,2758,2720;, + 3;2794,2764,2765;, + 3;2795,2799,2800;, + 3;2798,2767,2768;, + 3;2762,2808,2769;, + 3;2796,2805,2806;, + 3;2804,2802,2770;, + 3;2809,2773,2774;, + 3;2810,2814,2815;, + 3;2813,2776,2777;, + 3;2771,2782,2778;, + 3;2811,2820,2780;, + 3;2819,2817,2779;, + 3;2821,2785,2786;, + 3;2822,2825,2826;, + 3;2824,2786,2788;, + 3;2783,2793,2789;, + 3;2823,2831,2791;, + 3;2830,2828,2790;, + 3;2853,2855,2858;, + 3;2850,2854,2860;, + 3;2832,2850,2851;, + 3;2834,2833,2839;, + 3;2835,2834,2840;, + 3;2837,2836,2842;, + 3;2856,2837,2843;, + 3;2855,2857,2862;, + 3;2863,2859,2858;, + 3;2852,2851,2860;, + 3;2844,2838,2851;, + 3;2846,2840,2839;, + 3;2847,2841,2840;, + 3;2849,2843,2842;, + 3;2866,2861,2843;, + 3;2865,2858,2862;, + 3;2889,2891,2894;, + 3;2886,2890,2896;, + 3;2868,2886,2887;, + 3;2870,2869,2875;, + 3;2871,2870,2876;, + 3;2873,2872,2878;, + 3;2892,2873,2879;, + 3;2891,2893,2898;, + 3;2899,2895,2894;, + 3;2888,2887,2896;, + 3;2880,2874,2887;, + 3;2882,2876,2875;, + 3;2883,2877,2876;, + 3;2885,2879,2878;, + 3;2902,2897,2879;, + 3;2901,2894,2898;, + 3;2928,2931,2933;, + 3;2938,2943,2933;, + 3;2936,2945,2946;, + 3;2941,2940,2904;, + 3;2912,2917,2918;, + 3;2922,2920,2918;, + 3;2915,2914,2948;, + 3;2926,2909,2910;, + 3;2905,2947,2949;, + 3;2946,2945,2950;, + 3;2944,2907,2908;, + 3;2906,2904,2910;, + 3;2954,2961,2978;, + 3;2960,2964,2981;, + 3;2963,2967,2984;, + 3;2966,2970,2987;, + 3;2969,2958,2972;, + 3;2957,2955,2976;, + 3;2992,2999,3016;, + 3;2998,3002,3019;, + 3;3001,3005,3022;, + 3;3004,3008,3025;, + 3;3007,2996,3010;, + 3;2995,2993,3014;, + 3;4008,4663,4680;, + 3;4013,3985,3980;, + 3;4009,3988,4638;, + 3;4019,4106,4096;, + 3;3986,4098,4678;, + 3;4014,4012,3991;, + 3;3984,3990,3986;, + 3;4017,3982,3987;, + 3;4015,4018,4008;, + 3;4012,4019,3989;, + 3;4012,4104,4106;, + 3;4107,4105,4099;, + 3;3991,3989,4096;, + 3;4679,4101,4103;, + 3;3992,3029,3028;, + 3;3689,3992,5175;, + 3;3030,3689,4847;, + 3;446,3414,3711;, + 3;762,3712,3032;, + 3;446,7,3033;, + 3;420,3396,3686;, + 3;1958,4872,4869;, + 3;425,9,3176;, + 3;3399,3177,3713;, + 3;1917,736,3686;, + 3;4871,3688,3713;, + 3;421,425,3398;, + 3;3687,3397,3399;, + 3;3687,3688,4871;, + 3;1918,4836,4872;, + 3;4020,4684,4682;, + 3;3179,3183,3091;, + 3;3088,3092,3093;, + 3;3714,3432,3428;, + 3;3430,3435,3433;, + 3;3090,3093,3094;, + 3;3435,3438,3439;, + 3;3431,3716,3415;, + 3;3216,3415,3178;, + 3;3436,3431,3216;, + 3;3217,3216,3213;, + 3;3436,3217,3218;, + 3;3217,3089,3215;, + 3;3718,3417,3416;, + 3;3181,3180,3416;, + 3;3439,3438,3219;, + 3;3220,3219,3214;, + 3;3221,3419,3184;, + 3;3082,3187,3184;, + 3;3422,3420,3426;, + 3;3423,3425,3188;, + 3;3419,3221,3222;, + 3;3185,3190,3084;, + 3;3096,3097,3222;, + 3;3082,3086,3097;, + 3;3161,3193,3223;, + 3;3163,3169,3206;, + 3;3208,3211,3227;, + 3;3225,3229,3197;, + 3;3195,3199,3172;, + 3;3167,3165,3170;, + 3;3175,3161,3201;, + 3;3207,3211,3208;, + 3;3192,3162,3173;, + 3;3193,3200,3228;, + 3;3223,3230,3210;, + 3;3161,3175,3168;, + 3;3212,3201,3210;, + 3;3175,3212,3206;, + 3;3721,3690,3993;, + 3;3692,3166,3204;, + 3;3998,3209,3226;, + 3;4025,3225,3194;, + 3;3725,3196,3171;, + 3;3693,3695,3171;, + 3;3205,3209,3998;, + 3;3696,4001,3993;, + 3;3722,3725,3695;, + 3;4022,3994,3998;, + 3;3723,4023,4025;, + 3;3697,3694,3997;, + 3;4000,3996,3998;, + 3;3691,3695,3693;, + 3;3074,3154,3150;, + 3;3067,3070,3363;, + 3;3071,3067,3130;, + 3;3364,3070,3078;, + 3;3404,3080,3075;, + 3;3136,3160,3156;, + 3;3159,3034,3406;, + 3;3139,3158,3407;, + 3;3137,3140,3368;, + 3;3369,3409,4837;, + 3;4797,4802,3372;, + 3;4838,4842,4799;, + 3;1881,4801,4840;, + 3;4839,3410,3411;, + 3;1929,4843,3412;, + 3;3408,3371,3373;, + 3;442,3413,3373;, + 3;12,154,3143;, + 3;3376,3375,4800;, + 3;13,4804,4801;, + 3;155,398,3374;, + 3;3142,3145,3375;, + 3;5118,5214,5211;, + 3;5118,5119,4688;, + 3;4691,4688,5119;, + 3;5122,5118,4686;, + 3;4108,4112,4688;, + 3;4694,4687,6193;, + 3;1765,4696,6193;, + 3;5123,4695,4697;, + 3;2223,5126,4697;, + 3;5215,5221,5217;, + 3;2327,5217,5219;, + 3;2224,5127,5218;, + 3;5213,5218,5127;, + 3;4687,4690,4698;, + 3;6192,6193,4698;, + 3;2329,5222,5126;, + 3;5123,5126,5220;, + 3;1770,4701,5130;, + 3;5125,5131,4700;, + 3;5121,5129,5131;, + 3;2229,5130,5128;, + 3;4111,4110,4116;, + 3;4689,4113,4115;, + 3;4692,4700,4117;, + 3;4698,4702,1771;, + 3;3440,3450,3446;, + 3;4703,4705,4120;, + 3;5132,5134,4705;, + 3;4120,4124,4122;, + 3;3440,4122,4124;, + 3;1182,1780,4707;, + 3;4127,4126,4707;, + 3;1780,14,5136;, + 3;4708,4707,5136;, + 3;15,1784,4710;, + 3;5140,5139,4710;, + 3;491,496,3454;, + 3;3454,3459,3455;, + 3;502,3461,3460;, + 3;3463,3460,3461;, + 3;513,3470,3468;, + 3;514,3468,3471;, + 3;3447,3478,3473;, + 3;527,518,3471;, + 3;4129,3459,3454;, + 3;1189,4131,3454;, + 3;1189,1182,4126;, + 3;4129,4131,4126;, + 3;4132,4136,4135;, + 3;1196,4134,4135;, + 3;1196,504,3460;, + 3;4132,4134,3460;, + 3;1197,4135,4710;, + 3;4711,4710,4135;, + 3;513,492,3453;, + 3;3472,3469,3474;, + 3;503,527,3479;, + 3;4123,3441,3458;, + 3;3441,3445,3456;, + 3;3444,3475,3453;, + 3;3475,3468,3470;, + 3;4119,4123,4130;, + 3;4704,4119,4128;, + 3;5133,4704,4709;, + 3;4125,4121,4137;, + 3;4121,4706,4712;, + 3;4706,5135,5141;, + 3;3451,4125,4133;, + 3;3448,3451,3464;, + 3;3477,3449,3467;, + 3;3471,3477,3462;, + 3;4138,4143,4715;, + 3;4714,4717,4720;, + 3;4144,4719,4721;, + 3;4150,4153,4152;, + 3;4140,4149,4722;, + 3;4139,4150,4151;, + 3;4139,4145,4153;, + 3;4153,4145,4147;, + 3;4142,4151,4152;, + 3;4154,4158,5144;, + 3;4154,4164,4160;, + 3;4161,4165,1228;, + 3;5145,4157,1230;, + 3;5143,2247,1232;, + 3;4157,1230,2246;, + 3;5143,2247,1232;, + 3;4155,1232,1229;, + 3;1231,4159,4162;, + 3;5146,3036,5225;, + 3;5224,5226,17;, + 3;5147,5224,2335;, + 3;3079,3069,68;, + 3;82,174,3153;, + 3;3151,3155,175;, + 3;3402,3152,176;, + 3;3365,3405,445;, + 3;401,156,3131;, + 3;156,157,3134;, + 3;158,69,3072;, + 3;3068,3073,70;, + 3;3069,3068,71;, + 3;3077,3081,80;, + 3;3405,3402,444;, + 3;4026,3037,19;, + 3;3038,4026,1082;, + 3;5015,4682,1797;, + 3;24,1799,4684;, + 3;3434,3439,529;, + 3;3719,3428,476;, + 3;3091,3183,218;, + 3;3093,3092,102;, + 3;3220,252,529;, + 3;3424,3426,25;, + 3;3189,3424,461;, + 3;3085,3191,220;, + 3;3098,3085,89;, + 3;3429,3433,474;, + 3;3094,3093,104;, + 3;3220,3095,105;, + 3;4683,4685,1800;, + 3;3418,462,219;, + 3;3418,3720,779;, + 3;4873,4875,1967;, + 3;4875,5016,2109;, + 3;5017,2113,2109;, + 3;4874,1965,2114;, + 3;4848,4850,4875;, + 3;4850,4988,5016;, + 3;4988,4990,5017;, + 3;4849,4874,5018;, + 3;4805,5157,2256;, + 3;4844,1934,2263;, + 3;4845,5159,5154;, + 3;2263,2256,5156;, + 3;1935,4846,4809;, + 3;3146,3149,4808;, + 3;27,1892,4810;, + 3;28,3147,4807;, + 3;4485,4491,4487;, + 3;3861,4487,4559;, + 3;3925,4559,4564;, + 3;4490,4486,4493;, + 3;4488,4490,4492;, + 3;4560,4489,4495;, + 3;4565,4561,4567;, + 3;4565,4568,4569;, + 3;4563,4569,3928;, + 3;3927,3929,3864;, + 3;3863,3865,4493;, + 3;4496,3866,4500;, + 3;3866,3930,4570;, + 3;3930,4576,4573;, + 3;4499,4492,4493;, + 3;4501,4494,4492;, + 3;4571,4566,4495;, + 3;4574,4568,4567;, + 3;4574,4575,4569;, + 3;4575,3932,3928;, + 3;3931,3868,3864;, + 3;3867,4497,4493;, + 3;4503,4512,4508;, + 3;4513,4506,4508;, + 3;4510,4505,4521;, + 3;4517,3872,3869;, + 3;4379,4387,4385;, + 3;4389,4394,4385;, + 3;4383,4525,4523;, + 3;4392,4391,3875;, + 3;3870,3876,4524;, + 3;4521,4523,4525;, + 3;4520,4526,3874;, + 3;3872,3873,3875;, + 3;3797,3743,3738;, + 3;4274,4893,4888;, + 3;4920,4399,4395;, + 3;3821,3827,3825;, + 3;3825,4405,4402;, + 3;3739,4282,4369;, + 3;4284,4283,3740;, + 3;3822,4401,4403;, + 3;4404,4406,4414;, + 3;4924,4395,4412;, + 3;4370,4281,4280;, + 3;4281,4286,4275;, + 3;4416,4413,4396;, + 3;4408,4404,4411;, + 3;3829,3835,3832;, + 3;4925,4932,4929;, + 3;4420,3830,3831;, + 3;4421,4423,4427;, + 3;4931,4426,4428;, + 3;3797,3799,3831;, + 3;4927,4929,4890;, + 3;3800,4369,4430;, + 3;4429,4424,4431;, + 3;4371,4374,4432;, + 3;4372,4889,4930;, + 3;3827,3835,3829;, + 3;3825,3830,4420;, + 3;4406,4421,4425;, + 3;4415,4426,4931;, + 3;4924,4932,4925;, + 3;3801,3803,3749;, + 3;4288,4294,4899;, + 3;4933,4936,4437;, + 3;3836,4440,3842;, + 3;3842,4440,4443;, + 3;3750,3804,4375;, + 3;4298,3748,3751;, + 3;3837,4449,4444;, + 3;4445,4454,4450;, + 3;4936,4451,4452;, + 3;4376,4378,4293;, + 3;4297,4293,4289;, + 3;4455,4436,4438;, + 3;4446,4458,4454;, + 3;3844,3850,3848;, + 3;4937,4943,4941;, + 3;4459,4462,3850;, + 3;4460,4468,4464;, + 3;4940,4942,4465;, + 3;3801,3848,3850;, + 3;4943,4898,4901;, + 3;3804,3850,4469;, + 3;4466,4474,4470;, + 3;4376,4471,4472;, + 3;4377,4473,4942;, + 3;3840,3843,3844;, + 3;3842,4441,4459;, + 3;4442,4450,4468;, + 3;4451,4936,4940;, + 3;4936,4933,4937;, + 3;3849,3833,3834;, + 3;3847,3834,3828;, + 3;3841,3828,3823;, + 3;3839,3824,4409;, + 3;4448,4410,4418;, + 3;4457,4419,4398;, + 3;4435,4398,4922;, + 3;4935,4923,4926;, + 3;4938,4926,4928;, + 3;4944,4928,4892;, + 3;4897,4894,4276;, + 3;4291,4277,4285;, + 3;4301,4287,3742;, + 3;3747,3744,3798;, + 3;3802,3798,3833;, + 3;4082,4087,4077;, + 3;3954,3935,3933;, + 3;3954,3957,3963;, + 3;4083,4090,4088;, + 3;3938,3943,3933;, + 3;3944,3966,4092;, + 3;3967,3966,3944;, + 3;4088,4090,3972;, + 3;3964,3969,3972;, + 3;4063,3879,3877;, + 3;3882,3877,3879;, + 3;4092,3966,3974;, + 3;3966,3967,3976;, + 3;3978,3958,3934;, + 3;3978,3971,3965;, + 3;4064,4068,4070;, + 3;4077,4069,4070;, + 3;3884,3892,3886;, + 3;3939,3889,3890;, + 3;3945,3949,3950;, + 3;3942,3891,3895;, + 3;3944,4078,4080;, + 3;3896,3953,4080;, + 3;3896,3893,3949;, + 3;3944,3953,3949;, + 3;3885,3881,3898;, + 3;3934,3895,3898;, + 3;4093,4085,4076;, + 3;3968,3946,3936;, + 3;3975,3973,4089;, + 3;4094,4091,4084;, + 3;3967,3956,3961;, + 3;3977,3962,3973;, + 3;3951,3894,3883;, + 3;3952,3950,3888;, + 3;3952,3940,3937;, + 3;4079,4076,4071;, + 3;4073,4080,4072;, + 3;3897,4074,4067;, + 3;3894,3897,3878;, + 3;4200,4223,4221;, + 3;3661,3668,4222;, + 3;3539,3592,3668;, + 3;3542,3593,3591;, + 3;3544,3595,3593;, + 3;3547,3596,3594;, + 3;4205,4225,3596;, + 3;4203,4221,4224;, + 3;3282,3313,3296;, + 3;3351,3352,3343;, + 3;3272,3299,3300;, + 3;3282,3271,3274;, + 3;3352,3353,3345;, + 3;3273,3300,3553;, + 3;3284,3275,3512;, + 3;3524,3513,3554;, + 3;3312,3314,3352;, + 3;3297,3342,3344;, + 3;3312,3351,3341;, + 3;3314,3601,3353;, + 3;3601,3556,3345;, + 3;3301,3344,3346;, + 3;3514,3281,3276;, + 3;3279,3307,3302;, + 3;3280,3520,3557;, + 3;3306,3558,3537;, + 3;3278,3304,3538;, + 3;3520,4747,4764;, + 3;3558,4766,4767;, + 3;3510,3538,4768;, + 3;3516,3519,4751;, + 3;4749,4752,4769;, + 3;4166,4182,4180;, + 3;4171,4183,4182;, + 3;4171,4725,4732;, + 3;4173,4184,4734;, + 3;4177,4172,4167;, + 3;4177,4727,4723;, + 3;4170,4181,4184;, + 3;4724,4728,4735;, + 3;3231,3233,3482;, + 3;3232,3235,3102;, + 3;3108,3102,3235;, + 3;3485,3488,3238;, + 3;3040,3238,3488;, + 3;3483,3491,3490;, + 3;3495,3490,3491;, + 3;3484,3234,3239;, + 3;3497,3492,3239;, + 3;3234,3101,3103;, + 3;3249,3239,3103;, + 3;3489,3487,3481;, + 3;3237,3231,3480;, + 3;3494,3489,3490;, + 3;3059,3054,3104;, + 3;3059,3061,3056;, + 3;3060,3111,3106;, + 3;3110,3104,3240;, + 3;3111,3253,3243;, + 3;3251,3242,3244;, + 3;3055,3058,3107;, + 3;3105,3107,3245;, + 3;4527,4478,4475;, + 3;4528,4532,3903;, + 3;4531,4476,3851;, + 3;4529,3902,3853;, + 3;3901,3905,3852;, + 3;3908,4538,4540;, + 3;3915,4541,4543;, + 3;3918,4544,4578;, + 3;3921,4579,4581;, + 3;3924,4582,4534;, + 3;3912,4535,4537;, + 3;4479,4907,4902;, + 3;4480,4484,3858;, + 3;4483,4904,3805;, + 3;4905,3810,3806;, + 3;4481,3857,3808;, + 3;3856,3860,3807;, + 3;4033,4042,4039;, + 3;4043,5061,5056;, + 3;3679,3684,4813;, + 3;5062,5071,5066;, + 3;4811,4813,4818;, + 3;4049,3813,3811;, + 3;3815,3811,3813;, + 3;4044,4052,3812;, + 3;4047,3820,3814;, + 3;5059,4044,3819;, + 3;4909,4908,3819;, + 3;5057,4910,3820;, + 3;3818,3820,4910;, + 3;5072,5059,4908;, + 3;4914,4912,4908;, + 3;5074,4916,4910;, + 3;4911,4910,4916;, + 3;5075,5073,4913;, + 3;4919,4917,4913;, + 3;3680,3815,3817;, + 3;3683,3818,4911;, + 3;3681,4812,4909;, + 3;4814,4911,4918;, + 3;4816,4820,4919;, + 3;4812,4817,4914;, + 3;4052,4044,4055;, + 3;4045,4048,4058;, + 3;4050,4062,4059;, + 3;4051,4054,4061;, + 3;5059,5072,5079;, + 3;5073,5075,5081;, + 3;5057,5084,5082;, + 3;5060,5078,5083;, + 3;4053,4055,4041;, + 3;4062,4038,4040;, + 3;4054,4035,4037;, + 3;5076,5079,5069;, + 3;5080,5081,5067;, + 3;5084,5065,5068;, + 3;4057,4060,5085;, + 3;4059,4040,5065;, + 3;4042,5062,5064;, + 3;4055,5076,5063;, + 3;4302,3756,3752;, + 3;4307,4315,4311;, + 3;4314,4308,4319;, + 3;4305,4317,4319;, + 3;4312,4316,4318;, + 3;3753,3757,4318;, + 3;4320,3759,4326;, + 3;4328,4326,3759;, + 3;4313,3758,3764;, + 3;3755,3764,3758;, + 3;3760,4322,4310;, + 3;4327,4319,4308;, + 3;4321,4325,4307;, + 3;4329,4303,4319;, + 3;3762,3760,3764;, + 3;4330,3763,3756;, + 3;4331,4336,3768;, + 3;4332,4342,4337;, + 3;4335,4339,3771;, + 3;3766,3770,3772;, + 3;4333,3767,4344;, + 3;4341,4345,3773;, + 3;4346,4351,3777;, + 3;4347,4357,4352;, + 3;4350,4354,3780;, + 3;3775,3779,3781;, + 3;4348,3776,3784;, + 3;4356,3785,3782;, + 3;4358,4362,3789;, + 3;4359,4368,4363;, + 3;4362,4365,3791;, + 3;3787,3790,3792;, + 3;4360,3788,3795;, + 3;4367,3796,3793;, + 3;4603,4609,4607;, + 3;4583,4588,4609;, + 3;4589,4594,4586;, + 3;4611,4613,4592;, + 3;4611,4618,4615;, + 3;4640,4651,4646;, + 3;4649,4621,4619;, + 3;4641,4645,4659;, + 3;4644,4648,4657;, + 3;4642,4652,4656;, + 3;4648,4620,4608;, + 3;4621,4605,4607;, + 3;4650,4656,4606;, + 3;5160,5177,5176;, + 3;5162,5176,5181;, + 3;5160,5166,5183;, + 3;5167,5173,5170;, + 3;5172,5186,5185;, + 3;5186,5193,5188;, + 3;5190,5195,5194;, + 3;5195,5198,5197;, + 3;4991,4855,4851;, + 3;5169,4852,4853;, + 3;5198,4993,4996;, + 3;5161,5164,5173;, + 3;5178,5199,5196;, + 3;5163,5180,5187;, + 3;5180,5182,5191;, + 3;5181,5176,5196;, + 3;5183,4994,5199;, + 3;5165,4856,4992;, + 3;5160,5168,4854;, + 3;3521,3560,4211;, + 3;3246,3521,4199;, + 3;4199,4211,4770;, + 3;4178,4199,4753;, + 3;3559,3522,3525;, + 3;4212,3561,3603;, + 3;4771,4212,4229;, + 3;4754,4772,4774;, + 3;4730,4754,4755;, + 3;4179,4731,4737;, + 3;4185,3255,3247;, + 3;3254,3525,3522;, + 3;3562,3566,3665;, + 3;3562,3663,4255;, + 3;3568,4218,4215;, + 3;3568,3571,3576;, + 3;4218,3568,3562;, + 3;3579,3590,3585;, + 3;3308,3311,3588;, + 3;3574,3581,3583;, + 3;3570,3584,3586;, + 3;3565,3564,3587;, + 3;3664,3667,3670;, + 3;4214,4257,4259;, + 3;3666,3567,3604;, + 3;3572,3608,3606;, + 3;4216,4220,4233;, + 3;3575,3578,3607;, + 3;3311,3308,3318;, + 3;4219,4214,4230;, + 3;4256,3664,3669;, + 3;3572,4217,4232;, + 3;3309,3574,3610;, + 3;3565,3310,3317;, + 3;4643,4640,4654;, + 3;4661,4615,4618;, + 3;5019,5026,5024;, + 3;5026,5238,5232;, + 3;5239,5282,5278;, + 3;5028,5030,5229;, + 3;5227,5229,5286;, + 3;5279,5283,5284;, + 3;5200,5246,5235;, + 3;5230,5228,5285;, + 3;5031,5200,5027;, + 3;5032,5029,5228;, + 3;5248,5289,5280;, + 3;5287,5285,5281;, + 3;5202,5033,5023;, + 3;5025,5234,5249;, + 3;5204,5231,5288;, + 3;5201,5204,5251;, + 3;5231,5204,5035;, + 3;5204,5201,5031;, + 3;5236,5239,5242;, + 3;5288,5289,5248;, + 3;5029,5032,5036;, + 3;5031,5021,5037;, + 3;5237,5247,5248;, + 3;6189,5034,5203;, + 3;6190,6198,5229;, + 3;6198,6199,5286;, + 3;6194,5203,5250;, + 3;6199,6200,5279;, + 3;6196,5241,5278;, + 3;6195,5250,5244;, + 3;5252,5261,5257;, + 3;5253,5256,2371;, + 3;5255,5259,2373;, + 3;5260,32,2374;, + 3;5262,2380,2378;, + 3;5263,5269,5265;, + 3;5205,33,2380;, + 3;5206,5205,5262;, + 3;5270,5266,5267;, + 3;5275,5276,2393;, + 3;5275,5271,5273;, + 3;5208,5207,5266;, + 3;5210,5275,2392;, + 3;5210,5209,5271;, + 3;5268,5264,2379;, + 3;2398,2394,5277;, + 3;2398,5274,5268;, + 3;3879,4063,4664;, + 3;4064,4069,4666;, + 3;4069,4077,4670;, + 3;4077,4087,4672;, + 3;4086,4088,4674;, + 3;4088,3969,4625;, + 3;4627,4626,3970;, + 3;3948,4595,4627;, + 3;3899,4547,4595;, + 3;3880,4546,4547;, + 3;5101,5096,4671;, + 3;4972,4628,4596;, + 3;4972,4977,4630;, + 3;5102,4676,4677;, + 3;4961,4958,4596;, + 3;4964,5097,5108;, + 3;4980,4965,4964;, + 3;4677,4633,4982;, + 3;4631,4978,4982;, + 3;4667,5088,4946;, + 3;4948,4551,4548;, + 3;5108,5110,4984;, + 3;4979,4984,4986;, + 3;4636,4602,4597;, + 3;4636,4629,4632;, + 3;4668,4669,5090;, + 3;4671,5096,5090;, + 3;4551,4948,4950;, + 3;4962,4600,4554;, + 3;4965,4970,4967;, + 3;4599,4597,4556;, + 3;4964,4971,5099;, + 3;4956,5093,5099;, + 3;4956,4971,4969;, + 3;4964,4965,4969;, + 3;4552,4556,4557;, + 3;4597,4602,4557;, + 3;5109,5098,5095;, + 3;4981,4974,4959;, + 3;4985,5111,5106;, + 3;5110,5108,5104;, + 3;4980,4986,4975;, + 3;4987,4985,4983;, + 3;4968,4953,4949;, + 3;4970,4963,4952;, + 3;4970,4965,4960;, + 3;5098,5100,5091;, + 3;5093,5089,5092;, + 3;4957,4947,5087;, + 3;4955,4949,4947;, + 3;4548,4545,4664;, + 3;4668,4665,4666;, + 3;4669,4666,4670;, + 3;4671,4670,4672;, + 3;4676,4673,4674;, + 3;4677,4674,4625;, + 3;4627,4637,4635;, + 3;4601,4637,4627;, + 3;4558,4601,4595;, + 3;4550,4558,4547;, + 3;5038,5148,4680;, + 3;5043,5048,5000;, + 3;5039,4662,4638;, + 3;5049,5006,5112;, + 3;5004,4639,4678;, + 3;5044,4999,5008;, + 3;4998,5002,5004;, + 3;5046,5040,5005;, + 3;5045,5041,5038;, + 3;5042,5008,5006;, + 3;5042,5049,5152;, + 3;5153,5113,5115;, + 3;5008,5117,5112;, + 3;4679,4681,5151;, + 3;3726,3729,4272;, + 3;4027,4032,4005;, + 3;3727,4271,4266;, + 3;3735,3704,3702;, + 3;3700,4267,4268;, + 3;4028,4004,3706;, + 3;4003,4007,3700;, + 3;4030,3728,3701;, + 3;4029,3733,3726;, + 3;3734,3706,3704;, + 3;3734,3735,3736;, + 3;3737,3703,3708;, + 3;3706,3710,3702;, + 3;4269,4273,3732;, + 3;4876,4270,4272;, + 3;5050,5014,5009;, + 3;4877,4859,4266;, + 3;4885,4886,4861;, + 3;4857,4865,4268;, + 3;5051,4880,4864;, + 3;5013,4863,4857;, + 3;5054,5011,4858;, + 3;5052,5055,4876;, + 3;4880,4885,4860;, + 3;4880,4883,4886;, + 3;4887,4884,4866;, + 3;4864,4860,4861;, + 3;4269,4868,4882;, + 3;4235,4238,4221;, + 3;3672,4237,4222;, + 3;3611,3672,3668;, + 3;3614,3613,3591;, + 3;3616,3614,3593;, + 3;3619,3618,3594;, + 3;4240,3619,3596;, + 3;4238,4242,4224;, + 3;3282,3286,3320;, + 3;3043,3358,3359;, + 3;3285,3288,3324;, + 3;3282,3283,3287;, + 3;3044,3359,3361;, + 3;3288,3528,3621;, + 3;3284,3523,3526;, + 3;3524,3600,3622;, + 3;3312,3043,3044;, + 3;3322,3325,3360;, + 3;3312,3323,3358;, + 3;3315,3044,3045;, + 3;3601,3045,3361;, + 3;3325,3624,3362;, + 3;3529,3536,3293;, + 3;3291,3295,3333;, + 3;3292,3328,3625;, + 3;3327,3335,3659;, + 3;3294,3047,3660;, + 3;3046,3625,4775;, + 3;3626,3659,4781;, + 3;3047,4761,4782;, + 3;3531,4758,4762;, + 3;4757,4777,4783;, + 3;4186,4190,4180;, + 3;4191,4186,4182;, + 3;4191,4183,4732;, + 3;4193,4743,4734;, + 3;3048,4188,4187;, + 3;3048,4192,4739;, + 3;4189,4196,4184;, + 3;4740,4733,4735;, + 3;3256,3499,3500;, + 3;3257,3114,3115;, + 3;3108,3039,3049;, + 3;3503,3261,3050;, + 3;3040,3493,3506;, + 3;3501,3498,3051;, + 3;3495,3496,3508;, + 3;3502,3509,3052;, + 3;3497,3249,3052;, + 3;3259,3052,3116;, + 3;3249,3109,3116;, + 3;3507,3051,3498;, + 3;3260,3505,3499;, + 3;3494,3495,3051;, + 3;3059,3110,3117;, + 3;3059,3062,3064;, + 3;3060,3066,3119;, + 3;3110,3250,3262;, + 3;3111,3119,3265;, + 3;3251,3252,3266;, + 3;3063,3118,3120;, + 3;3118,3264,3267;, + 3;3532,3053,4243;, + 3;3268,4197,3053;, + 3;3053,4759,4778;, + 3;4197,4746,4759;, + 3;3628,3602,3525;, + 3;4244,4229,3603;, + 3;4779,4773,4229;, + 3;4760,4755,4774;, + 3;4744,4736,4755;, + 3;4198,4185,4737;, + 3;4185,4198,3269;, + 3;3254,3270,3533;, + 3;3630,3674,3676;, + 3;3630,4246,4263;, + 3;3636,3639,4247;, + 3;3636,3643,3644;, + 3;4250,4246,3630;, + 3;3647,3652,3653;, + 3;3329,3649,3657;, + 3;3641,3638,3650;, + 3;3637,3632,3654;, + 3;3634,3658,3655;, + 3;3675,3669,3670;, + 3;4245,4230,4259;, + 3;3678,3671,3604;, + 3;3640,3646,3606;, + 3;4248,4231,4233;, + 3;3642,3609,3607;, + 3;3331,3316,3318;, + 3;4252,4234,4230;, + 3;4265,4260,3669;, + 3;3640,3608,4232;, + 3;3330,3319,3610;, + 3;3634,3605,3317;, + 3;5323,5333,5331;, + 3;5318,5320,5332;, + 3;5291,5303,5320;, + 3;5294,5304,5302;, + 3;5296,5306,5304;, + 3;5299,5307,5305;, + 3;5328,5335,5307;, + 3;5326,5331,5334;, + 3;5336,5339,5331;, + 3;5321,5338,5332;, + 3;5308,5321,5320;, + 3;5311,5310,5302;, + 3;5313,5311,5304;, + 3;5316,5315,5305;, + 3;5341,5316,5307;, + 3;5339,5343,5334;, + 3;5350,5359,5355;, + 3;5351,5354,2485;, + 3;5353,5357,2487;, + 3;5358,2466,2488;, + 3;5360,2494,2492;, + 3;5361,5367,5363;, + 3;5344,2467,2494;, + 3;5345,5344,5360;, + 3;5368,5364,5365;, + 3;5373,5374,2507;, + 3;5373,5369,5371;, + 3;5347,5346,5364;, + 3;5349,5373,2506;, + 3;5349,5348,5369;, + 3;5366,5362,2493;, + 3;2512,2508,5375;, + 3;2512,5372,5366;, + 3;5384,5386,5396;, + 3;5386,5400,5401;, + 3;5384,5397,5403;, + 3;5391,5169,5170;, + 3;5394,5171,5185;, + 3;5405,5185,5188;, + 3;5408,5189,5194;, + 3;5411,5194,5197;, + 3;5380,4995,4851;, + 3;5169,5391,5377;, + 3;5413,5197,4996;, + 3;5385,5391,5393;, + 3;5398,5396,5412;, + 3;5388,5395,5406;, + 3;5399,5406,5409;, + 3;5401,5410,5412;, + 3;5403,5397,5414;, + 3;5390,5404,5383;, + 3;5384,5389,5379;, + 3;5447,5452,5418;, + 3;5448,5458,5453;, + 3;5451,5455,5421;, + 3;5416,5420,5422;, + 3;5449,5417,5460;, + 3;5457,5461,5423;, + 3;5462,5467,5427;, + 3;5463,5473,5468;, + 3;5466,5470,5430;, + 3;5425,5429,5431;, + 3;5464,5426,5434;, + 3;5472,5435,5432;, + 3;5474,5478,5439;, + 3;5475,5484,5479;, + 3;5478,5481,5441;, + 3;5437,5440,5442;, + 3;5476,5438,5445;, + 3;5483,5446,5443;, + 3;5517,5522,5488;, + 3;5518,5528,5523;, + 3;5521,5525,5491;, + 3;5486,5490,5492;, + 3;5519,5487,5530;, + 3;5527,5531,5493;, + 3;5532,5537,5497;, + 3;5533,5543,5538;, + 3;5536,5540,5500;, + 3;5495,5499,5501;, + 3;5534,5496,5504;, + 3;5542,5505,5502;, + 3;5544,5548,5509;, + 3;5545,5554,5549;, + 3;5548,5551,5511;, + 3;5507,5510,5512;, + 3;5546,5508,5515;, + 3;5553,5516,5513;, + 3;5587,5592,5558;, + 3;5588,5598,5593;, + 3;5591,5595,5561;, + 3;5556,5560,5562;, + 3;5589,5557,5600;, + 3;5597,5601,5563;, + 3;5602,5607,5567;, + 3;5603,5613,5608;, + 3;5606,5610,5570;, + 3;5565,5569,5571;, + 3;5604,5566,5574;, + 3;5612,5575,5572;, + 3;5614,5618,5579;, + 3;5615,5624,5619;, + 3;5618,5621,5581;, + 3;5577,5580,5582;, + 3;5616,5578,5585;, + 3;5623,5586,5583;, + 3;5657,5662,5628;, + 3;5658,5668,5663;, + 3;5661,5665,5631;, + 3;5626,5630,5632;, + 3;5659,5627,5670;, + 3;5667,5671,5633;, + 3;5672,5677,5637;, + 3;5673,5683,5678;, + 3;5676,5680,5640;, + 3;5635,5639,5641;, + 3;5674,5636,5644;, + 3;5682,5645,5642;, + 3;5684,5688,5649;, + 3;5685,5694,5689;, + 3;5688,5691,5651;, + 3;5647,5650,5652;, + 3;5686,5648,5655;, + 3;5693,5656,5653;, + 3;5716,5723,5721;, + 3;5713,5714,5722;, + 3;5695,5702,5714;, + 3;5697,5703,5701;, + 3;5698,5705,5703;, + 3;5700,5706,5704;, + 3;5719,5725,5706;, + 3;5718,5721,5724;, + 3;5726,5728,5721;, + 3;5715,5727,5722;, + 3;5707,5715,5714;, + 3;5709,5708,5701;, + 3;5710,5709,5703;, + 3;5712,5711,5704;, + 3;5729,5712,5706;, + 3;5728,5730,5724;, + 3;5752,5759,5757;, + 3;5749,5750,5758;, + 3;5731,5738,5750;, + 3;5733,5739,5737;, + 3;5734,5741,5739;, + 3;5736,5742,5740;, + 3;5755,5761,5742;, + 3;5754,5757,5760;, + 3;5762,5764,5757;, + 3;5751,5763,5758;, + 3;5743,5751,5750;, + 3;5745,5744,5737;, + 3;5746,5745,5739;, + 3;5748,5747,5740;, + 3;5765,5748,5742;, + 3;5764,5766,5760;, + 3;5791,5800,5796;, + 3;5801,5794,5796;, + 3;5798,5793,5809;, + 3;5805,5770,5767;, + 3;5775,5783,5781;, + 3;5785,5790,5781;, + 3;5779,5813,5811;, + 3;5788,5787,5773;, + 3;5768,5774,5812;, + 3;5809,5811,5813;, + 3;5808,5814,5772;, + 3;5770,5771,5773;, + 3;5817,5839,5841;, + 3;5824,5842,5844;, + 3;5827,5845,5847;, + 3;5830,5848,5850;, + 3;5833,5851,5835;, + 3;5821,5836,5838;, + 3;5855,5877,5879;, + 3;5862,5880,5882;, + 3;5865,5883,5885;, + 3;5868,5886,5888;, + 3;5871,5889,5873;, + 3;5859,5874,5876;, + 3;5941,5945,5946;, + 3;5931,5932,5943;, + 3;5949,5953,5932;, + 3;5954,5955,5951;, + 3;5954,5958,5959;, + 3;5957,5962,5963;, + 3;5962,5966,5967;, + 3;5965,5948,5946;, + 3;5977,5981,5982;, + 3;5974,5975,5979;, + 3;5985,5989,5975;, + 3;5990,5991,5987;, + 3;5990,5994,5995;, + 3;5993,5998,5999;, + 3;5998,6002,6003;, + 3;6001,5984,5982;, + 3;6010,6014,6015;, + 3;6007,6008,6012;, + 3;6018,6022,6008;, + 3;6023,6024,6020;, + 3;6023,6027,6028;, + 3;6026,6031,6032;, + 3;6031,6035,6036;, + 3;6034,6017,6015;, + 3;6090,6097,6095;, + 3;6080,6091,6093;, + 3;6098,6080,6081;, + 3;6103,6099,6101;, + 3;6103,6104,6108;, + 3;6107,6110,6112;, + 3;6111,6112,6116;, + 3;6115,6118,6095;, + 3;6126,6133,6131;, + 3;6123,6127,6129;, + 3;6134,6123,6124;, + 3;6139,6135,6137;, + 3;6139,6140,6144;, + 3;6143,6146,6148;, + 3;6147,6148,6152;, + 3;6151,6154,6131;, + 3;6159,6166,6164;, + 3;6156,6160,6162;, + 3;6167,6156,6157;, + 3;6172,6168,6170;, + 3;6172,6173,6177;, + 3;6176,6179,6181;, + 3;6180,6181,6185;, + 3;6184,6187,6164;; + } + + MeshTextureCoords { + 6202; + 0.472531;0.024249;, + 0.403337;0.024249;, + 0.398724;0.111289;, + 0.472531;0.111289;, + 0.978985;0.021333;, + 0.976615;0.021333;, + 0.977548;0.022780;, + 0.979919;0.022780;, + 0.705752;0.382443;, + 0.481538;0.382443;, + 0.389242;0.879776;, + 0.401882;0.879805;, + 0.981133;0.022644;, + 0.978483;0.021604;, + 0.232804;0.860443;, + 0.232804;0.860121;, + 0.166456;0.778736;, + 0.237407;0.781483;, + 0.237407;0.814796;, + 0.994840;0.512451;, + 0.959048;0.512451;, + 0.959048;0.396487;, + 0.994840;0.396487;, + 0.538022;0.044407;, + 0.538022;0.107538;, + 0.518180;0.650506;, + 0.414883;0.531321;, + 0.979394;0.021284;, + 0.383669;0.995439;, + 0.977044;0.021392;, + 0.759894;0.521686;, + 0.686540;0.017110;, + 0.686477;0.042153;, + 0.918247;0.185722;, + 0.918247;0.185778;, + 0.713500;0.089000;, + 0.641115;0.577911;, + 0.569468;0.863191;, + 0.579224;0.863191;, + 0.593834;0.863191;, + 0.977010;0.021888;, + 0.933173;0.928821;, + 0.713399;0.743062;, + 0.976753;0.021392;, + 0.759894;0.504977;, + 0.835111;0.458703;, + 0.761022;0.407988;, + 0.730511;0.909761;, + 0.555516;0.785034;, + 0.556456;0.768150;, + 0.546440;0.785034;, + 0.547380;0.762180;, + 0.546440;0.678549;, + 0.555516;0.815257;, + 0.546440;0.815257;, + 0.546440;0.708772;, + 0.555516;0.785034;, + 0.556456;0.768150;, + 0.546440;0.785034;, + 0.546440;0.678549;, + 0.547380;0.762180;, + 0.302199;0.946783;, + 0.263560;0.948159;, + 0.295370;0.940241;, + 0.260667;0.941319;, + 0.315857;0.987318;, + 0.315702;0.988050;, + 0.266264;0.990540;, + 0.278444;0.941319;, + 0.315702;0.989442;, + 0.278444;0.990540;, + 0.278444;0.948159;, + 0.313333;0.864576;, + 0.977897;0.020979;, + 0.976665;0.020882;, + 0.260667;0.862208;, + 0.313481;0.868559;, + 0.977900;0.021141;, + 0.260667;0.866372;, + 0.976665;0.021052;, + 0.977081;0.021052;, + 0.278444;0.866372;, + 0.278444;0.862208;, + 0.977081;0.020882;, + 0.435701;0.551310;, + 0.435652;0.551397;, + 0.429940;0.549638;, + 0.429993;0.549678;, + 0.387183;0.549880;, + 0.414883;0.549880;, + 0.321629;0.721642;, + 0.252376;0.725528;, + 0.327268;0.686475;, + 0.252469;0.686829;, + 0.268395;0.726256;, + 0.268350;0.726269;, + 0.268350;0.681512;, + 0.268350;0.673331;, + 0.268320;0.673278;, + 0.441209;0.535723;, + 0.436927;0.532459;, + 0.387183;0.531321;, + 0.305407;0.726269;, + 0.305452;0.726256;, + 0.305407;0.681512;, + 0.305377;0.673278;, + 0.305407;0.673331;, + 0.734663;0.454345;, + 0.734663;0.417325;, + 0.976616;0.021821;, + 0.976753;0.021821;, + 0.734663;0.407988;, + 0.602106;0.785034;, + 0.603046;0.768150;, + 0.602106;0.678549;, + 0.603046;0.726360;, + 0.977044;0.021821;, + 0.734663;0.390297;, + 0.602106;0.815257;, + 0.602106;0.708772;, + 0.734663;0.454345;, + 0.976616;0.021821;, + 0.734663;0.417325;, + 0.976753;0.021821;, + 0.734663;0.407988;, + 0.602106;0.785034;, + 0.603046;0.768150;, + 0.602106;0.678549;, + 0.603046;0.726360;, + 0.595595;0.625155;, + 0.554509;0.627484;, + 0.554529;0.626267;, + 0.580962;0.627484;, + 0.580991;0.626267;, + 0.595595;0.625155;, + 0.554509;0.627484;, + 0.554529;0.626267;, + 0.361134;0.946783;, + 0.977996;0.020954;, + 0.361134;0.946783;, + 0.977996;0.020954;, + 0.978082;0.021635;, + 0.361134;0.987318;, + 0.361000;0.987971;, + 0.422412;0.920730;, + 0.401882;0.891889;, + 0.401821;0.920276;, + 0.389242;0.891889;, + 0.410299;0.920730;, + 0.389864;0.107756;, + 0.980067;0.022644;, + 0.980067;0.018289;, + 0.389864;0.033711;, + 0.978467;0.022124;, + 0.981133;0.018289;, + 0.979533;0.022124;, + 0.978725;0.020954;, + 0.978725;0.021635;, + 0.361000;0.989442;, + 0.384220;0.964429;, + 0.383669;0.971190;, + 0.384220;0.932359;, + 0.978043;0.021284;, + 0.354305;0.837126;, + 0.353952;0.830714;, + 0.978015;0.019112;, + 0.319271;0.843669;, + 0.266102;0.840349;, + 0.319381;0.826383;, + 0.410299;0.893814;, + 0.401821;0.893360;, + 0.401968;0.891888;, + 0.422412;0.893814;, + 0.401968;0.879776;, + 0.278444;0.840349;, + 0.319381;0.812286;, + 0.978725;0.019112;, + 0.353952;0.812286;, + 0.160200;0.104403;, + 0.160200;0.104406;, + 0.137212;0.105146;, + 0.138000;0.057480;, + 0.681176;0.318447;, + 0.536902;0.329036;, + 0.144314;0.104446;, + 0.144300;0.064700;, + 0.144303;0.104439;, + 0.145500;0.051987;, + 0.556327;0.331772;, + 0.155000;0.058484;, + 0.155100;0.109098;, + 0.155100;0.109097;, + 0.149353;0.099465;, + 0.501218;0.382443;, + 0.520189;0.382686;, + 0.364053;0.752399;, + 0.252379;0.754120;, + 0.364806;0.755188;, + 0.268261;0.758812;, + 0.364364;0.757451;, + 0.976859;0.021175;, + 0.479354;0.575723;, + 0.458510;0.596617;, + 0.503402;0.596615;, + 0.447728;0.542094;, + 0.506719;0.603402;, + 0.455833;0.603363;, + 0.457069;0.622806;, + 0.387183;0.605783;, + 0.189000;0.104494;, + 0.189000;0.104498;, + 0.194809;0.051841;, + 0.979923;0.019534;, + 0.627550;0.331772;, + 0.979756;0.019534;, + 0.194809;0.058456;, + 0.194800;0.109004;, + 0.194800;0.109009;, + 0.305318;0.758812;, + 0.978519;0.021175;, + 0.414883;0.605783;, + 0.457069;0.650506;, + 0.160176;0.064647;, + 0.664930;0.253753;, + 0.536902;0.329201;, + 0.138000;0.057500;, + 0.138000;0.057489;, + 0.144300;0.064700;, + 0.144300;0.064686;, + 0.145500;0.051947;, + 0.556327;0.331158;, + 0.155000;0.058496;, + 0.155000;0.058509;, + 0.149353;0.070769;, + 0.339140;0.710426;, + 0.330887;0.678159;, + 0.252510;0.673670;, + 0.371135;0.691565;, + 0.360897;0.667221;, + 0.359134;0.662039;, + 0.252439;0.639745;, + 0.268320;0.641782;, + 0.463365;0.527209;, + 0.464792;0.522314;, + 0.189036;0.064647;, + 0.979714;0.018363;, + 0.627550;0.331158;, + 0.194809;0.051342;, + 0.194809;0.058489;, + 0.979567;0.018437;, + 0.194808;0.058525;, + 0.194808;0.058525;, + 0.305377;0.641782;, + 0.761022;0.467576;, + 0.976616;0.021392;, + 0.761022;0.432294;, + 0.761022;0.417325;, + 0.976753;0.021392;, + 0.761022;0.485217;, + 0.759894;0.497114;, + 0.759894;0.504977;, + 0.761022;0.407988;, + 0.658376;0.785034;, + 0.976682;0.021253;, + 0.659317;0.768150;, + 0.658376;0.678549;, + 0.976682;0.020660;, + 0.659317;0.726360;, + 0.663523;0.967885;, + 0.977029;0.021804;, + 0.626448;0.967188;, + 0.761022;0.390297;, + 0.977111;0.021253;, + 0.658376;0.815257;, + 0.658376;0.708772;, + 0.977111;0.020660;, + 0.977169;0.021804;, + 0.651019;0.967188;, + 0.761022;0.467576;, + 0.976616;0.021392;, + 0.761022;0.432294;, + 0.761022;0.417325;, + 0.759894;0.497114;, + 0.761022;0.485217;, + 0.658376;0.785034;, + 0.659317;0.768150;, + 0.976682;0.021253;, + 0.658376;0.678549;, + 0.976682;0.020660;, + 0.659317;0.726360;, + 0.663523;0.967885;, + 0.977029;0.021804;, + 0.626448;0.967188;, + 0.565046;0.950613;, + 0.527416;0.950131;, + 0.527416;0.965961;, + 0.579606;0.965780;, + 0.580043;0.994122;, + 0.850936;0.929242;, + 0.887671;0.928821;, + 0.850845;0.929228;, + 0.875384;0.929242;, + 0.875417;0.929228;, + 0.976841;0.021888;, + 0.551988;0.950131;, + 0.598963;0.994122;, + 0.551988;0.965961;, + 0.527416;0.950131;, + 0.565046;0.950613;, + 0.579606;0.965780;, + 0.527416;0.965961;, + 0.580043;0.994122;, + 0.875417;0.929228;, + 0.976841;0.021888;, + 0.875384;0.929242;, + 0.850936;0.929242;, + 0.850845;0.929228;, + 0.887671;0.928821;, + 0.527416;0.879556;, + 0.565046;0.879109;, + 0.564616;0.842129;, + 0.564663;0.842250;, + 0.579606;0.879109;, + 0.579176;0.842129;, + 0.850845;0.866799;, + 0.887671;0.865984;, + 0.979058;0.849635;, + 0.875417;0.866799;, + 0.979058;0.829159;, + 0.976841;0.021556;, + 0.224270;0.065100;, + 0.224919;0.084722;, + 0.224270;0.048234;, + 0.225106;0.084722;, + 0.551988;0.879556;, + 0.564663;0.866821;, + 0.579224;0.866821;, + 0.579224;0.866821;, + 0.236397;0.084722;, + 0.244397;0.048234;, + 0.244397;0.065100;, + 0.236210;0.084722;, + 0.527416;0.879556;, + 0.564616;0.842129;, + 0.564663;0.842250;, + 0.565046;0.879109;, + 0.579606;0.879109;, + 0.579176;0.842129;, + 0.976841;0.021556;, + 0.979058;0.829159;, + 0.875417;0.866799;, + 0.224270;0.065100;, + 0.224919;0.084722;, + 0.225106;0.084722;, + 0.224270;0.048234;, + 0.850845;0.866799;, + 0.979058;0.849635;, + 0.887671;0.865984;, + 0.611242;0.631618;, + 0.554509;0.635865;, + 0.976859;0.021772;, + 0.785203;0.704550;, + 0.863801;0.704061;, + 0.569464;0.845664;, + 0.569468;0.845659;, + 0.579224;0.845659;, + 0.579219;0.845664;, + 0.593834;0.845659;, + 0.593829;0.845664;, + 0.580962;0.635834;, + 0.976865;0.021772;, + 0.852944;0.704550;, + 0.863556;0.704183;, + 0.569468;0.863191;, + 0.579224;0.863191;, + 0.593834;0.863191;, + 0.611242;0.631618;, + 0.554509;0.635865;, + 0.976859;0.021772;, + 0.569468;0.845659;, + 0.569464;0.845664;, + 0.579224;0.845659;, + 0.579219;0.845664;, + 0.593834;0.845659;, + 0.593829;0.845664;, + 0.367963;0.940241;, + 0.367963;0.940241;, + 0.977816;0.020844;, + 0.977816;0.020844;, + 0.389242;0.879805;, + 0.389406;0.920276;, + 0.384207;0.857811;, + 0.977818;0.021385;, + 0.977922;0.022045;, + 0.979961;0.022045;, + 0.979901;0.021385;, + 0.402736;0.033711;, + 0.978467;0.020410;, + 0.979533;0.020410;, + 0.980848;0.021385;, + 0.402736;0.107756;, + 0.978725;0.020844;, + 0.622594;0.573857;, + 0.554529;0.569907;, + 0.633946;0.559671;, + 0.633105;0.526087;, + 0.554529;0.554319;, + 0.603619;0.582256;, + 0.554529;0.579134;, + 0.633105;0.552549;, + 0.580991;0.554319;, + 0.580991;0.569907;, + 0.580991;0.579134;, + 0.622594;0.573857;, + 0.554529;0.569907;, + 0.633946;0.559671;, + 0.633105;0.526087;, + 0.554529;0.554319;, + 0.603619;0.582256;, + 0.554529;0.579134;, + 0.979079;0.021500;, + 0.481538;0.498336;, + 0.977973;0.021500;, + 0.528692;0.498579;, + 0.507479;0.498336;, + 0.481538;0.454556;, + 0.543302;0.454800;, + 0.507479;0.454556;, + 0.977816;0.019573;, + 0.367963;0.864576;, + 0.979175;0.020979;, + 0.979175;0.021141;, + 0.977816;0.019640;, + 0.367963;0.868559;, + 0.389242;0.891888;, + 0.389406;0.893360;, + 0.384207;0.833563;, + 0.385571;0.825413;, + 0.977818;0.019015;, + 0.385571;0.806829;, + 0.977759;0.021792;, + 0.979901;0.019015;, + 0.980848;0.019015;, + 0.978498;0.021792;, + 0.978725;0.019573;, + 0.978725;0.019640;, + 0.979919;0.021572;, + 0.977888;0.021572;, + 0.397884;0.752564;, + 0.398545;0.755188;, + 0.398862;0.757451;, + 0.976859;0.019546;, + 0.512121;0.568048;, + 0.517276;0.615934;, + 0.503402;0.596604;, + 0.508481;0.615934;, + 0.458510;0.596617;, + 0.455839;0.603402;, + 0.507949;0.622806;, + 0.518180;0.622806;, + 0.517830;0.566416;, + 0.507949;0.650506;, + 0.978519;0.019546;, + 0.977028;0.021470;, + 0.268321;0.563588;, + 0.976971;0.021482;, + 0.252469;0.564262;, + 0.421693;0.663596;, + 0.268321;0.575890;, + 0.268320;0.576004;, + 0.252500;0.576100;, + 0.412754;0.639577;, + 0.252439;0.590600;, + 0.405137;0.636980;, + 0.305375;0.575890;, + 0.305377;0.576004;, + 0.977161;0.021470;, + 0.305475;0.563588;, + 0.268320;0.591865;, + 0.977757;0.021000;, + 0.074864;0.903802;, + 0.062496;0.903802;, + 0.012834;0.883347;, + 0.977689;0.021000;, + 0.977438;0.021042;, + 0.977689;0.021042;, + 0.977438;0.021090;, + 0.062496;0.906459;, + 0.012834;0.887585;, + 0.977757;0.021042;, + 0.074864;0.906459;, + 0.063781;0.860443;, + 0.048303;0.853180;, + 0.029400;0.853180;, + 0.063781;0.849133;, + 0.075645;0.841937;, + 0.075645;0.860443;, + 0.063781;0.839881;, + 0.062673;0.886662;, + 0.013934;0.856006;, + 0.075645;0.834740;, + 0.074525;0.881221;, + 0.063781;0.860121;, + 0.048303;0.910185;, + 0.075645;0.860121;, + 0.075645;0.842644;, + 0.063781;0.848812;, + 0.029400;0.910185;, + 0.075645;0.834419;, + 0.074525;0.927712;, + 0.013934;0.907360;, + 0.063781;0.839559;, + 0.062673;0.918856;, + 0.048303;0.859947;, + 0.048303;0.880683;, + 0.031044;0.883568;, + 0.977666;0.021127;, + 0.036394;0.859947;, + 0.048303;0.890149;, + 0.031032;0.887264;, + 0.977666;0.021199;, + 0.977484;0.021042;, + 0.977566;0.021123;, + 0.024245;0.883347;, + 0.977484;0.021090;, + 0.024245;0.887585;, + 0.977566;0.021206;, + 0.048303;0.903469;, + 0.036394;0.903469;, + 0.305377;0.591865;, + 0.826304;0.458703;, + 0.816137;0.458755;, + 0.816137;0.447730;, + 0.826304;0.447511;, + 0.816137;0.417325;, + 0.803328;0.497114;, + 0.826304;0.485564;, + 0.801759;0.485217;, + 0.803328;0.504977;, + 0.835111;0.485564;, + 0.835111;0.458703;, + 0.835111;0.447511;, + 0.816137;0.407988;, + 0.853824;0.485564;, + 0.803328;0.521686;, + 0.853824;0.458703;, + 0.816137;0.390297;, + 0.853824;0.447511;, + 0.816137;0.458755;, + 0.826304;0.458703;, + 0.816137;0.447730;, + 0.826304;0.447511;, + 0.816137;0.417325;, + 0.803328;0.497114;, + 0.801759;0.485217;, + 0.826304;0.485564;, + 0.803328;0.504977;, + 0.835111;0.485564;, + 0.835111;0.447511;, + 0.816137;0.407988;, + 0.933173;0.928821;, + 0.580043;0.972991;, + 0.976926;0.021640;, + 0.599021;0.965780;, + 0.875384;0.961844;, + 0.977010;0.022036;, + 0.875221;0.961950;, + 0.933173;0.956989;, + 0.850649;0.961950;, + 0.850936;0.961844;, + 0.977010;0.021888;, + 0.692232;0.901150;, + 0.628371;0.899765;, + 0.977145;0.021640;, + 0.598963;0.972991;, + 0.651019;0.899765;, + 0.599021;0.965780;, + 0.580043;0.972991;, + 0.976926;0.021640;, + 0.875384;0.961844;, + 0.977010;0.022036;, + 0.875221;0.961950;, + 0.692232;0.901150;, + 0.628371;0.899765;, + 0.850936;0.961844;, + 0.933173;0.956989;, + 0.850649;0.961950;, + 0.933556;0.853730;, + 0.933173;0.865984;, + 0.690009;0.103508;, + 0.699532;0.075033;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.693747;0.089000;, + 0.689675;0.103397;, + 0.699532;0.102968;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.713500;0.108753;, + 0.713500;0.089000;, + 0.794167;0.784460;, + 0.976861;0.021786;, + 0.879137;0.783971;, + 0.599021;0.879109;, + 0.976926;0.021228;, + 0.598639;0.842250;, + 0.598591;0.842129;, + 0.977010;0.021556;, + 0.933556;0.829159;, + 0.692232;0.849484;, + 0.628371;0.847567;, + 0.977001;0.021658;, + 0.304000;0.057351;, + 0.225106;0.071820;, + 0.977489;0.019676;, + 0.267704;0.057351;, + 0.225106;0.082977;, + 0.355783;0.108129;, + 0.304000;0.084427;, + 0.977489;0.021390;, + 0.224919;0.071820;, + 0.304000;0.118257;, + 0.355667;0.082000;, + 0.224919;0.082977;, + 0.355487;0.108129;, + 0.267704;0.084427;, + 0.278335;0.108348;, + 0.355487;0.081986;, + 0.355667;0.107253;, + 0.216469;0.110778;, + 0.220182;0.082977;, + 0.215825;0.065556;, + 0.220182;0.071820;, + 0.977045;0.021219;, + 0.255975;0.110778;, + 0.255975;0.093000;, + 0.977045;0.019848;, + 0.220369;0.071820;, + 0.216469;0.093000;, + 0.215825;0.047778;, + 0.220369;0.082977;, + 0.673214;0.103508;, + 0.672880;0.074825;, + 0.672880;0.089111;, + 0.672880;0.103397;, + 0.672880;0.104508;, + 0.672880;0.090222;, + 0.846680;0.784460;, + 0.878892;0.784093;, + 0.976880;0.021786;, + 0.598639;0.866821;, + 0.977145;0.021228;, + 0.977194;0.021658;, + 0.651019;0.847567;, + 0.373696;0.108129;, + 0.236397;0.082977;, + 0.373444;0.107253;, + 0.373399;0.081986;, + 0.373444;0.082000;, + 0.236210;0.082977;, + 0.373399;0.108129;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.699532;0.075033;, + 0.689675;0.089111;, + 0.693747;0.089000;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.699532;0.102968;, + 0.689675;0.090222;, + 0.713500;0.108753;, + 0.599021;0.879109;, + 0.976926;0.021228;, + 0.598591;0.842129;, + 0.598639;0.842250;, + 0.977010;0.021556;, + 0.933556;0.829159;, + 0.628371;0.847567;, + 0.692232;0.849484;, + 0.977001;0.021658;, + 0.304000;0.057351;, + 0.977489;0.019676;, + 0.225106;0.071820;, + 0.225106;0.082977;, + 0.267704;0.057351;, + 0.355783;0.108129;, + 0.304000;0.084427;, + 0.224919;0.071820;, + 0.977489;0.021390;, + 0.304000;0.118257;, + 0.355667;0.082000;, + 0.267704;0.084427;, + 0.224919;0.082977;, + 0.355487;0.108129;, + 0.278335;0.108348;, + 0.355667;0.107253;, + 0.355487;0.081986;, + 0.216469;0.110778;, + 0.215825;0.065556;, + 0.220182;0.082977;, + 0.255975;0.110778;, + 0.220182;0.071820;, + 0.977045;0.021219;, + 0.255975;0.093000;, + 0.977045;0.019848;, + 0.220369;0.071820;, + 0.215825;0.047778;, + 0.220369;0.082977;, + 0.216469;0.093000;, + 0.933556;0.853730;, + 0.933173;0.865984;, + 0.690009;0.089222;, + 0.713500;0.069247;, + 0.304000;0.023520;, + 0.355889;0.082000;, + 0.278335;0.033429;, + 0.355889;0.107253;, + 0.355783;0.081986;, + 0.673214;0.089222;, + 0.373667;0.082000;, + 0.373667;0.107253;, + 0.373696;0.081986;, + 0.690009;0.089222;, + 0.713500;0.069247;, + 0.304000;0.023520;, + 0.355889;0.082000;, + 0.278335;0.033429;, + 0.355783;0.081986;, + 0.355889;0.107253;, + 0.034693;0.444254;, + 0.150000;0.418061;, + 0.944172;0.112669;, + 0.034750;0.430285;, + 0.036224;0.418061;, + 0.134655;0.418061;, + 0.641115;0.577911;, + 0.979079;0.020671;, + 0.976867;0.020671;, + 0.582179;0.498579;, + 0.579256;0.454800;, + 0.391459;0.096439;, + 0.556537;0.174932;, + 0.556327;0.186090;, + 0.802622;0.317627;, + 0.523953;0.193454;, + 0.802641;0.317638;, + 0.556327;0.193454;, + 0.525422;0.173285;, + 0.808426;0.313459;, + 0.523953;0.186090;, + 0.069496;0.093505;, + 0.977118;0.020469;, + 0.977141;0.022000;, + 0.016518;0.060366;, + 0.016513;0.060375;, + 0.016518;0.087040;, + 0.047090;0.093505;, + 0.012437;0.093561;, + 0.064097;0.059231;, + 0.012431;0.059298;, + 0.012437;0.059286;, + 0.012381;0.052598;, + 0.978985;0.022400;, + 0.979919;0.019087;, + 0.977888;0.019087;, + 0.976954;0.022400;, + 0.579256;0.382686;, + 0.976971;0.021659;, + 0.437405;0.752756;, + 0.437958;0.755188;, + 0.437345;0.757451;, + 0.977028;0.021682;, + 0.976859;0.017325;, + 0.977028;0.021682;, + 0.624989;0.174932;, + 0.627550;0.186090;, + 0.981273;0.019472;, + 0.627550;0.193454;, + 0.981189;0.019555;, + 0.978519;0.017325;, + 0.977161;0.021682;, + 0.070051;0.092394;, + 0.977981;0.022000;, + 0.978386;0.020469;, + 0.064652;0.058120;, + 0.040952;0.052598;, + 0.041008;0.059286;, + 0.041002;0.059298;, + 0.047645;0.092394;, + 0.041008;0.093561;, + 0.036926;0.087040;, + 0.036926;0.060366;, + 0.036921;0.060375;, + 0.061440;0.582196;, + 0.061440;0.582191;, + 0.061440;0.582194;, + 0.056848;0.586661;, + 0.048289;0.586332;, + 0.057496;0.640360;, + 0.056848;0.586710;, + 0.056848;0.586707;, + 0.057496;0.595107;, + 0.056848;0.586684;, + 0.007516;0.586332;, + 0.061440;0.582197;, + 0.061440;0.582191;, + 0.061440;0.582193;, + 0.976930;0.021836;, + 0.198440;0.419736;, + 0.190825;0.353778;, + 0.976915;0.021836;, + 0.194000;0.361263;, + 0.214525;0.419736;, + 0.206698;0.353778;, + 0.214741;0.467736;, + 0.206698;0.371556;, + 0.199079;0.371556;, + 0.976930;0.021836;, + 0.198337;0.467736;, + 0.206698;0.361263;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.977022;0.021746;, + 0.976941;0.021762;, + 0.186550;0.382365;, + 0.976866;0.021710;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021757;, + 0.976874;0.021718;, + 0.186550;0.382338;, + 0.976831;0.021731;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.178570;0.404936;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021859;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.178570;0.404949;, + 0.081705;0.586605;, + 0.082024;0.640360;, + 0.083616;0.582528;, + 0.083616;0.582524;, + 0.081669;0.586745;, + 0.082024;0.595107;, + 0.083616;0.582530;, + 0.083616;0.582524;, + 0.187500;0.223505;, + 0.267815;0.177636;, + 0.187000;0.166775;, + 0.260407;0.177636;, + 0.187500;0.223505;, + 0.187000;0.173798;, + 0.149345;0.309203;, + 0.932877;0.072573;, + 0.134000;0.309203;, + 0.012391;0.309203;, + 0.150000;0.333850;, + 0.944172;0.081652;, + 0.036224;0.333850;, + 0.134655;0.333850;, + 0.944104;0.072573;, + 0.036080;0.309203;, + 0.179997;0.572433;, + 0.180010;0.572431;, + 0.178385;0.640360;, + 0.223123;0.571935;, + 0.163192;0.582575;, + 0.163192;0.582584;, + 0.166048;0.586672;, + 0.164847;0.640360;, + 0.157032;0.582529;, + 0.157032;0.582520;, + 0.126288;0.582528;, + 0.126343;0.586605;, + 0.125824;0.640360;, + 0.157021;0.586605;, + 0.155927;0.640360;, + 0.179972;0.572433;, + 0.180012;0.572439;, + 0.189418;0.571935;, + 0.178385;0.595107;, + 0.166048;0.586672;, + 0.164846;0.595107;, + 0.163192;0.582575;, + 0.163192;0.582587;, + 0.157032;0.582532;, + 0.157032;0.582520;, + 0.155927;0.595107;, + 0.157014;0.586745;, + 0.126324;0.586745;, + 0.125824;0.595107;, + 0.126288;0.582528;, + 0.187500;0.223504;, + 0.187000;0.166799;, + 0.187500;0.223497;, + 0.187000;0.173799;, + 0.254500;0.223545;, + 0.255000;0.173794;, + 0.260518;0.177636;, + 0.267926;0.177636;, + 0.255000;0.166775;, + 0.254500;0.223545;, + 0.256975;0.526919;, + 0.354975;0.527475;, + 0.257000;0.466000;, + 0.257000;0.446000;, + 0.335222;0.527475;, + 0.257198;0.526919;, + 0.257000;0.466000;, + 0.354969;0.527475;, + 0.062673;0.171389;, + 0.123628;0.174197;, + 0.062673;0.153611;, + 0.123573;0.174197;, + 0.099649;0.174197;, + 0.040549;0.153611;, + 0.040549;0.171389;, + 0.099705;0.174197;, + 0.270545;0.320182;, + 0.280385;0.318542;, + 0.241037;0.320182;, + 0.976858;0.021754;, + 0.976858;0.021774;, + 0.270545;0.362200;, + 0.280385;0.360561;, + 0.241037;0.362200;, + 0.976858;0.021761;, + 0.270545;0.379708;, + 0.298860;0.427511;, + 0.297409;0.384957;, + 0.296785;0.384628;, + 0.241037;0.379708;, + 0.298860;0.398356;, + 0.976859;0.021765;, + 0.291704;0.354200;, + 0.291626;0.353945;, + 0.976859;0.021761;, + 0.291704;0.318563;, + 0.291626;0.318654;, + 0.976859;0.021754;, + 0.976859;0.021774;, + 0.254500;0.223468;, + 0.255000;0.173798;, + 0.768148;0.107475;, + 0.759941;0.107475;, + 0.255000;0.166799;, + 0.254500;0.223496;, + 0.745439;0.090556;, + 0.736667;0.086111;, + 0.760385;0.107030;, + 0.760111;0.107155;, + 0.745556;0.081667;, + 0.768028;0.107043;, + 0.760428;0.107343;, + 0.736667;0.095000;, + 0.759889;0.107155;, + 0.768593;0.107030;, + 0.745556;0.099444;, + 0.760206;0.107343;, + 0.767806;0.107043;, + 0.754444;0.095000;, + 0.768292;0.107041;, + 0.768123;0.107230;, + 0.754444;0.086111;, + 0.768345;0.107230;, + 0.759885;0.107141;, + 0.317469;0.526919;, + 0.317000;0.465985;, + 0.354975;0.527364;, + 0.335222;0.527364;, + 0.317000;0.446000;, + 0.317691;0.526919;, + 0.354969;0.527364;, + 0.317000;0.465955;, + 0.356910;0.398384;, + 0.976862;0.021761;, + 0.356911;0.427576;, + 0.361011;0.366363;, + 0.361042;0.366416;, + 0.345901;0.427576;, + 0.345718;0.427511;, + 0.349473;0.384957;, + 0.345901;0.398384;, + 0.976861;0.021765;, + 0.345718;0.398356;, + 0.361490;0.318563;, + 0.355319;0.354200;, + 0.355564;0.354180;, + 0.976862;0.021774;, + 0.976862;0.021754;, + 0.305321;0.355683;, + 0.301464;0.369666;, + 0.301466;0.370190;, + 0.342793;0.369666;, + 0.305321;0.318563;, + 0.428474;0.427576;, + 0.436245;0.366416;, + 0.435854;0.366363;, + 0.428474;0.398384;, + 0.976865;0.021761;, + 0.455528;0.351583;, + 0.455865;0.350599;, + 0.446824;0.427576;, + 0.470350;0.348420;, + 0.446824;0.398384;, + 0.487806;0.348420;, + 0.976866;0.021759;, + 0.421864;0.306189;, + 0.427871;0.354200;, + 0.427885;0.354180;, + 0.487806;0.305599;, + 0.976866;0.021751;, + 0.976866;0.021774;, + 0.470350;0.305599;, + 0.455865;0.307346;, + 0.444892;0.306189;, + 0.444966;0.306476;, + 0.444892;0.341826;, + 0.444966;0.341115;, + 0.976865;0.021751;, + 0.976865;0.021774;, + 0.977044;0.020660;, + 0.977118;0.021875;, + 0.069496;0.120769;, + 0.977044;0.022066;, + 0.047090;0.120769;, + 0.012437;0.120825;, + 0.977141;0.022000;, + 0.069496;0.093505;, + 0.977118;0.020469;, + 0.016518;0.087040;, + 0.047090;0.093505;, + 0.012437;0.093561;, + 0.391459;0.048318;, + 0.556537;0.147086;, + 0.556327;0.185371;, + 0.802641;0.177464;, + 0.523953;0.193199;, + 0.802622;0.177608;, + 0.556327;0.193199;, + 0.525422;0.149144;, + 0.523953;0.185371;, + 0.808426;0.177464;, + 0.012437;0.120825;, + 0.047090;0.120769;, + 0.977044;0.022066;, + 0.977044;0.020660;, + 0.069496;0.120769;, + 0.977118;0.021875;, + 0.070051;0.092394;, + 0.977981;0.022000;, + 0.978386;0.020469;, + 0.041008;0.093561;, + 0.047645;0.092394;, + 0.978312;0.022066;, + 0.041008;0.120825;, + 0.047645;0.119658;, + 0.978386;0.021875;, + 0.070051;0.119658;, + 0.978312;0.020660;, + 0.036926;0.087040;, + 0.513845;0.107538;, + 0.627550;0.185371;, + 0.981273;0.017225;, + 0.624989;0.147086;, + 0.981189;0.017225;, + 0.627550;0.193199;, + 0.959048;0.472795;, + 0.994840;0.472795;, + 0.978312;0.022066;, + 0.041008;0.120825;, + 0.047645;0.119658;, + 0.978312;0.020660;, + 0.978386;0.021875;, + 0.070051;0.119658;, + 0.012320;0.208577;, + 0.149345;0.222939;, + 0.932877;0.040799;, + 0.012391;0.222939;, + 0.134000;0.222939;, + 0.012372;0.195110;, + 0.036002;0.195269;, + 0.036080;0.222939;, + 0.035950;0.208736;, + 0.944104;0.040799;, + 0.976860;0.021777;, + 0.944104;0.046851;, + 0.976876;0.021732;, + 0.036080;0.239370;, + 0.976869;0.021732;, + 0.976860;0.021758;, + 0.134000;0.239370;, + 0.012391;0.239370;, + 0.932877;0.046851;, + 0.149345;0.239370;, + 0.149345;0.231155;, + 0.932877;0.043825;, + 0.944104;0.043825;, + 0.976861;0.021745;, + 0.976876;0.021723;, + 0.976869;0.021723;, + 0.036080;0.231155;, + 0.976861;0.021725;, + 0.012391;0.231155;, + 0.134000;0.231155;, + 0.241037;0.260656;, + 0.283754;0.199532;, + 0.283754;0.230704;, + 0.282025;0.259016;, + 0.270545;0.260656;, + 0.281983;0.258879;, + 0.298999;0.199532;, + 0.298999;0.230704;, + 0.298179;0.247924;, + 0.297409;0.247754;, + 0.291704;0.268942;, + 0.291626;0.270159;, + 0.361064;0.246283;, + 0.361884;0.230704;, + 0.361884;0.199532;, + 0.361490;0.259662;, + 0.361506;0.259643;, + 0.305321;0.259662;, + 0.305997;0.259643;, + 0.420957;0.230704;, + 0.470350;0.248506;, + 0.420137;0.246283;, + 0.420819;0.247754;, + 0.420957;0.199532;, + 0.487806;0.248506;, + 0.487806;0.280621;, + 0.470350;0.280621;, + 0.455865;0.282116;, + 0.455528;0.281128;, + 0.414254;0.259662;, + 0.413650;0.259643;, + 0.444892;0.287502;, + 0.444966;0.288312;, + 0.016518;0.060366;, + 0.016513;0.060375;, + 0.064097;0.059231;, + 0.012431;0.059298;, + 0.012381;0.052598;, + 0.012437;0.059286;, + 0.041008;0.059286;, + 0.041002;0.059298;, + 0.040952;0.052598;, + 0.064652;0.058120;, + 0.036926;0.060366;, + 0.036921;0.060375;, + 0.055508;0.799522;, + 0.041032;0.799147;, + 0.055172;0.801413;, + 0.061024;0.774863;, + 0.041032;0.774293;, + 0.046266;0.754438;, + 0.046266;0.763075;, + 0.049668;0.774293;, + 0.049668;0.799147;, + 0.055172;0.805506;, + 0.143339;0.893176;, + 0.978132;0.020834;, + 0.978132;0.020876;, + 0.143339;0.895832;, + 0.978023;0.021000;, + 0.123466;0.903802;, + 0.978023;0.021042;, + 0.123466;0.906459;, + 0.144531;0.860443;, + 0.144531;0.841937;, + 0.144531;0.834740;, + 0.143339;0.872366;, + 0.120558;0.834740;, + 0.119390;0.874137;, + 0.120558;0.841937;, + 0.120558;0.860443;, + 0.120558;0.834419;, + 0.119390;0.929483;, + 0.120558;0.842644;, + 0.144531;0.842644;, + 0.144531;0.834419;, + 0.143339;0.929483;, + 0.120558;0.860121;, + 0.144531;0.860121;, + 0.094847;0.733336;, + 0.095624;0.727406;, + 0.061534;0.733336;, + 0.052957;0.727665;, + 0.062312;0.727406;, + 0.062312;0.727406;, + 0.053159;0.667221;, + 0.095624;0.706678;, + 0.052957;0.706937;, + 0.062312;0.706678;, + 0.053159;0.700534;, + 0.062312;0.706678;, + 0.094103;0.723951;, + 0.066877;0.723951;, + 0.066877;0.710133;, + 0.094103;0.710133;, + 0.097992;0.977510;, + 0.098017;0.986461;, + 0.091536;0.944197;, + 0.978578;0.023576;, + 0.979911;0.020133;, + 0.091536;0.944197;, + 0.086421;0.951453;, + 0.079639;0.951881;, + 0.980081;0.020395;, + 0.090749;0.973784;, + 0.079639;0.974521;, + 0.090437;0.989766;, + 0.068064;0.951881;, + 0.980356;0.020395;, + 0.068064;0.974521;, + 0.090437;0.995098;, + 0.979022;0.023576;, + 0.980356;0.020133;, + 0.098017;0.995098;, + 0.694760;0.788548;, + 0.694760;0.771873;, + 0.683241;0.739164;, + 0.682954;0.683341;, + 0.683241;0.789919;, + 0.713399;0.788548;, + 0.713399;0.771873;, + 0.713112;0.684300;, + 0.713399;0.718950;, + 0.713399;0.718950;, + 0.713112;0.684300;, + 0.713399;0.743062;, + 0.730511;0.978649;, + 0.976985;0.021629;, + 0.683241;0.813119;, + 0.682954;0.707912;, + 0.694760;0.813119;, + 0.713399;0.813119;, + 0.713112;0.707912;, + 0.977169;0.021629;, + 0.694760;0.788548;, + 0.694760;0.771873;, + 0.683241;0.789919;, + 0.683241;0.739164;, + 0.682954;0.683341;, + 0.713399;0.788548;, + 0.713399;0.771873;, + 0.713112;0.684300;, + 0.713399;0.718950;, + 0.713399;0.718950;, + 0.713112;0.684300;, + 0.730511;0.978649;, + 0.976985;0.021629;, + 0.730511;0.909761;, + 0.689675;0.074825;, + 0.727468;0.075033;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.733253;0.089000;, + 0.689675;0.075937;, + 0.727468;0.102968;, + 0.689675;0.103397;, + 0.794045;0.784020;, + 0.976861;0.021721;, + 0.943549;0.783971;, + 0.730511;0.849484;, + 0.977001;0.021494;, + 0.355333;0.081438;, + 0.340296;0.057351;, + 0.329665;0.108348;, + 0.355333;0.105852;, + 0.355667;0.056747;, + 0.340296;0.084427;, + 0.355333;0.082673;, + 0.355333;0.107673;, + 0.672880;0.089111;, + 0.672880;0.074825;, + 0.673214;0.074937;, + 0.672880;0.075937;, + 0.672880;0.103397;, + 0.846557;0.784020;, + 0.943305;0.784093;, + 0.976880;0.021721;, + 0.977194;0.021494;, + 0.373111;0.081438;, + 0.373444;0.056747;, + 0.373111;0.105852;, + 0.373111;0.082673;, + 0.373111;0.107673;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.727468;0.075033;, + 0.689675;0.089111;, + 0.733253;0.089000;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.727468;0.102968;, + 0.730511;0.849484;, + 0.977001;0.021494;, + 0.340296;0.057351;, + 0.355333;0.081438;, + 0.329665;0.108348;, + 0.355333;0.105852;, + 0.355667;0.056747;, + 0.340296;0.084427;, + 0.355333;0.107673;, + 0.355333;0.082673;, + 0.690705;0.630605;, + 0.976859;0.021750;, + 0.329665;0.033429;, + 0.355333;0.058259;, + 0.355889;0.056747;, + 0.976865;0.021750;, + 0.373111;0.058259;, + 0.373667;0.056747;, + 0.690705;0.630605;, + 0.976859;0.021750;, + 0.329665;0.033429;, + 0.355889;0.056747;, + 0.355333;0.058259;, + 0.977141;0.020800;, + 0.100000;0.093505;, + 0.100000;0.059231;, + 0.012381;0.015444;, + 0.977981;0.020800;, + 0.100556;0.092394;, + 0.100556;0.058120;, + 0.040952;0.015444;, + 0.056960;0.536178;, + 0.976864;0.021741;, + 0.048288;0.536195;, + 0.976877;0.021741;, + 0.061440;0.536148;, + 0.976866;0.021741;, + 0.061440;0.536165;, + 0.061440;0.539509;, + 0.061440;0.539497;, + 0.976866;0.021744;, + 0.056960;0.539482;, + 0.976864;0.021744;, + 0.976877;0.021744;, + 0.048288;0.539582;, + 0.056960;0.536187;, + 0.976864;0.021741;, + 0.976863;0.021741;, + 0.007516;0.536195;, + 0.061440;0.536175;, + 0.061440;0.536148;, + 0.976866;0.021741;, + 0.976866;0.021744;, + 0.061440;0.539509;, + 0.061440;0.539531;, + 0.056960;0.539537;, + 0.007516;0.539582;, + 0.976864;0.021744;, + 0.976863;0.021744;, + 0.976915;0.021593;, + 0.194067;0.361263;, + 0.190892;0.353778;, + 0.976930;0.021593;, + 0.198440;0.379835;, + 0.976933;0.021711;, + 0.219463;0.361263;, + 0.219397;0.361263;, + 0.976852;0.021711;, + 0.976852;0.021665;, + 0.231033;0.413585;, + 0.219397;0.353778;, + 0.976933;0.021665;, + 0.219463;0.353778;, + 0.231033;0.387217;, + 0.206765;0.353778;, + 0.214525;0.379835;, + 0.206765;0.361263;, + 0.231249;0.461585;, + 0.219397;0.371556;, + 0.976852;0.021774;, + 0.976933;0.021774;, + 0.231249;0.435217;, + 0.219463;0.371556;, + 0.214741;0.427835;, + 0.206765;0.371556;, + 0.198337;0.427835;, + 0.199146;0.371556;, + 0.976930;0.021593;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.976941;0.021651;, + 0.976887;0.021710;, + 0.186550;0.382365;, + 0.178570;0.382418;, + 0.976887;0.021756;, + 0.176404;0.382494;, + 0.178572;0.404842;, + 0.176177;0.404762;, + 0.186138;0.413602;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.178574;0.404842;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.976986;0.021718;, + 0.976853;0.021731;, + 0.186550;0.382334;, + 0.178570;0.382379;, + 0.976853;0.021747;, + 0.176404;0.382508;, + 0.178570;0.404934;, + 0.176176;0.404762;, + 0.976872;0.021776;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.976919;0.021730;, + 0.186550;0.382342;, + 0.178570;0.382383;, + 0.976919;0.021690;, + 0.176404;0.382505;, + 0.178570;0.404955;, + 0.176178;0.404770;, + 0.976887;0.021767;, + 0.083984;0.539458;, + 0.976874;0.021744;, + 0.976856;0.021700;, + 0.083984;0.536070;, + 0.976856;0.021681;, + 0.976874;0.021740;, + 0.083735;0.539458;, + 0.976874;0.021744;, + 0.083735;0.536070;, + 0.976874;0.021740;, + 0.149444;0.168841;, + 0.090307;0.140477;, + 0.032025;0.171556;, + 0.032025;0.153778;, + 0.090251;0.140477;, + 0.167222;0.168841;, + 0.167222;0.154555;, + 0.086359;0.154444;, + 0.149444;0.154555;, + 0.086414;0.154444;, + 0.149444;0.140270;, + 0.031858;0.171389;, + 0.090307;0.168412;, + 0.167222;0.140270;, + 0.031858;0.153611;, + 0.090251;0.168412;, + 0.176074;0.525865;, + 0.176073;0.525855;, + 0.179992;0.521776;, + 0.223123;0.523861;, + 0.179991;0.521785;, + 0.176089;0.568671;, + 0.176111;0.568592;, + 0.176111;0.539458;, + 0.176089;0.539508;, + 0.976907;0.021744;, + 0.163320;0.539458;, + 0.976902;0.021744;, + 0.976908;0.021744;, + 0.223123;0.540527;, + 0.976892;0.021758;, + 0.179954;0.539508;, + 0.176111;0.536070;, + 0.176089;0.536066;, + 0.976907;0.021740;, + 0.976902;0.021740;, + 0.163320;0.536070;, + 0.179954;0.536066;, + 0.976892;0.021754;, + 0.223123;0.537322;, + 0.976908;0.021740;, + 0.157168;0.546233;, + 0.976900;0.021752;, + 0.976891;0.021752;, + 0.131424;0.546233;, + 0.976977;0.021737;, + 0.157168;0.542845;, + 0.976900;0.021748;, + 0.976891;0.021748;, + 0.131424;0.542845;, + 0.976977;0.021718;, + 0.126567;0.539458;, + 0.976965;0.021700;, + 0.976965;0.021681;, + 0.126567;0.536070;, + 0.179993;0.521762;, + 0.189418;0.523861;, + 0.179985;0.521776;, + 0.176064;0.525865;, + 0.176071;0.525880;, + 0.176086;0.568648;, + 0.176097;0.568606;, + 0.163071;0.539458;, + 0.976902;0.021744;, + 0.176086;0.539458;, + 0.176041;0.539524;, + 0.976907;0.021744;, + 0.180012;0.539524;, + 0.976908;0.021744;, + 0.976876;0.021758;, + 0.189418;0.540527;, + 0.976902;0.021740;, + 0.163071;0.536070;, + 0.976907;0.021740;, + 0.176086;0.536070;, + 0.176041;0.536143;, + 0.180012;0.536143;, + 0.976908;0.021741;, + 0.189418;0.537322;, + 0.976876;0.021754;, + 0.156919;0.546233;, + 0.976900;0.021752;, + 0.131175;0.546233;, + 0.976891;0.021752;, + 0.976914;0.021737;, + 0.976891;0.021748;, + 0.131175;0.542845;, + 0.976914;0.021718;, + 0.976900;0.021748;, + 0.156919;0.542845;, + 0.126318;0.539458;, + 0.976901;0.021700;, + 0.976889;0.021744;, + 0.976901;0.021681;, + 0.976889;0.021740;, + 0.126318;0.536070;, + 0.187000;0.166801;, + 0.187400;0.177905;, + 0.187000;0.173800;, + 0.187400;0.177892;, + 0.255000;0.173817;, + 0.260518;0.224141;, + 0.254700;0.177947;, + 0.267926;0.224141;, + 0.254700;0.177947;, + 0.255000;0.166807;, + 0.250926;0.517450;, + 0.354975;0.518005;, + 0.256975;0.476414;, + 0.354975;0.476970;, + 0.257000;0.466000;, + 0.250926;0.485884;, + 0.354975;0.486439;, + 0.335222;0.486439;, + 0.335222;0.518005;, + 0.257000;0.445997;, + 0.335222;0.476970;, + 0.251148;0.517450;, + 0.354969;0.518005;, + 0.354969;0.486439;, + 0.251148;0.485884;, + 0.257198;0.476414;, + 0.354969;0.476970;, + 0.257000;0.466000;, + 0.149444;0.168619;, + 0.071531;0.171556;, + 0.133026;0.140477;, + 0.149444;0.154333;, + 0.136919;0.154444;, + 0.167222;0.154333;, + 0.136864;0.154444;, + 0.167222;0.168619;, + 0.071531;0.153778;, + 0.132971;0.140477;, + 0.149444;0.140048;, + 0.133026;0.168412;, + 0.071364;0.171389;, + 0.071364;0.153611;, + 0.132971;0.168412;, + 0.167222;0.140048;, + 0.123573;0.134691;, + 0.062840;0.153778;, + 0.062840;0.171556;, + 0.123628;0.134691;, + 0.040716;0.171556;, + 0.099705;0.134691;, + 0.040716;0.153778;, + 0.099649;0.134691;, + 0.255000;0.173799;, + 0.767548;0.056470;, + 0.254700;0.177950;, + 0.760341;0.056570;, + 0.254700;0.177957;, + 0.255000;0.166801;, + 0.745278;0.081667;, + 0.760172;0.056313;, + 0.767572;0.056213;, + 0.736389;0.086111;, + 0.760185;0.056325;, + 0.759855;0.056125;, + 0.736389;0.095000;, + 0.767593;0.056025;, + 0.760033;0.056525;, + 0.745278;0.099444;, + 0.767750;0.056213;, + 0.759950;0.056313;, + 0.976858;0.021766;, + 0.208814;0.320182;, + 0.976859;0.021766;, + 0.241037;0.320182;, + 0.976858;0.021774;, + 0.976858;0.021754;, + 0.241037;0.362200;, + 0.976858;0.021761;, + 0.298860;0.398356;, + 0.976859;0.021765;, + 0.241037;0.379708;, + 0.976859;0.021761;, + 0.976859;0.021754;, + 0.976859;0.021774;, + 0.317469;0.476414;, + 0.317000;0.465965;, + 0.354975;0.476859;, + 0.354975;0.517894;, + 0.323519;0.517449;, + 0.323519;0.485884;, + 0.354975;0.486328;, + 0.335222;0.476859;, + 0.317000;0.446000;, + 0.335222;0.486328;, + 0.335222;0.517894;, + 0.317691;0.476414;, + 0.317000;0.465935;, + 0.354969;0.476859;, + 0.323741;0.485884;, + 0.354969;0.486328;, + 0.323741;0.517449;, + 0.354969;0.517894;, + 0.754167;0.095000;, + 0.767667;0.056401;, + 0.767492;0.056136;, + 0.754167;0.086111;, + 0.759685;0.056136;, + 0.767889;0.056401;, + 0.601948;0.046861;, + 0.602138;0.072716;, + 0.976943;0.021610;, + 0.601948;0.054907;, + 0.976862;0.021610;, + 0.601995;0.072716;, + 0.976943;0.021785;, + 0.602138;0.091960;, + 0.601952;0.047634;, + 0.976862;0.021785;, + 0.601952;0.054583;, + 0.601995;0.091960;, + 0.976862;0.021766;, + 0.356910;0.398384;, + 0.976862;0.021761;, + 0.345718;0.398356;, + 0.976861;0.021765;, + 0.345901;0.398384;, + 0.976862;0.021754;, + 0.976862;0.021774;, + 0.614541;0.046861;, + 0.614364;0.059108;, + 0.631655;0.059108;, + 0.632351;0.046861;, + 0.632351;0.054907;, + 0.631513;0.059108;, + 0.614541;0.054907;, + 0.614222;0.059108;, + 0.614545;0.047634;, + 0.614364;0.105567;, + 0.614545;0.054583;, + 0.614222;0.105567;, + 0.632355;0.054583;, + 0.631513;0.105567;, + 0.632355;0.047634;, + 0.631655;0.105567;, + 0.642504;0.054907;, + 0.641371;0.059108;, + 0.642504;0.046861;, + 0.641513;0.059108;, + 0.623009;0.082338;, + 0.622867;0.082338;, + 0.509253;0.305599;, + 0.976866;0.021766;, + 0.976865;0.021766;, + 0.428474;0.398384;, + 0.976865;0.021761;, + 0.446824;0.398384;, + 0.487806;0.348420;, + 0.976866;0.021759;, + 0.487806;0.305599;, + 0.976866;0.021774;, + 0.976866;0.021751;, + 0.976865;0.021751;, + 0.976865;0.021774;, + 0.977141;0.020800;, + 0.100000;0.093505;, + 0.976866;0.021771;, + 0.664403;0.047634;, + 0.662769;0.101237;, + 0.664403;0.054583;, + 0.662627;0.101237;, + 0.976858;0.021771;, + 0.976858;0.021745;, + 0.662627;0.072716;, + 0.664398;0.054907;, + 0.976866;0.021745;, + 0.664398;0.046861;, + 0.662769;0.072716;, + 0.643881;0.091960;, + 0.976866;0.021763;, + 0.644948;0.047634;, + 0.644948;0.047634;, + 0.643881;0.072716;, + 0.643739;0.072716;, + 0.643739;0.091960;, + 0.644948;0.054583;, + 0.644948;0.054583;, + 0.976858;0.021763;, + 0.100556;0.092394;, + 0.977981;0.020800;, + 0.208814;0.260656;, + 0.283754;0.161235;, + 0.298999;0.161235;, + 0.241037;0.260656;, + 0.283754;0.199532;, + 0.298999;0.199532;, + 0.361884;0.161235;, + 0.361884;0.199532;, + 0.420957;0.161235;, + 0.509253;0.248506;, + 0.509253;0.280621;, + 0.487806;0.248506;, + 0.420957;0.199532;, + 0.487806;0.280621;, + 0.100000;0.059231;, + 0.012381;0.015444;, + 0.100556;0.058120;, + 0.040952;0.015444;, + 0.525933;0.055547;, + 0.977200;0.020086;, + 0.525933;0.088970;, + 0.977200;0.021691;, + 0.112049;0.739555;, + 0.977650;0.021116;, + 0.107912;0.774863;, + 0.977650;0.021611;, + 0.098954;0.754438;, + 0.107912;0.799522;, + 0.108081;0.801413;, + 0.977650;0.020891;, + 0.113989;0.678436;, + 0.114706;0.723546;, + 0.977710;0.020825;, + 0.113989;0.682655;, + 0.977948;0.020825;, + 0.113989;0.699164;, + 0.977710;0.021611;, + 0.098954;0.763075;, + 0.977948;0.021611;, + 0.977408;0.021428;, + 0.977948;0.021957;, + 0.977408;0.020876;, + 0.108081;0.805506;, + 0.977710;0.021957;, + 0.978355;0.020834;, + 0.183867;0.893176;, + 0.978355;0.020876;, + 0.183867;0.895832;, + 0.185102;0.841937;, + 0.185102;0.860443;, + 0.185102;0.834740;, + 0.183867;0.872366;, + 0.185102;0.842644;, + 0.185102;0.860121;, + 0.185102;0.834419;, + 0.183867;0.929483;, + 0.095236;0.694759;, + 0.094847;0.743240;, + 0.061534;0.743240;, + 0.061923;0.694759;, + 0.011573;0.727665;, + 0.010595;0.667221;, + 0.095236;0.674031;, + 0.061923;0.674031;, + 0.010595;0.700534;, + 0.011573;0.706937;, + 0.538022;0.055547;, + 0.977733;0.020086;, + 0.538022;0.088970;, + 0.977733;0.021691;, + 0.732037;0.792106;, + 0.732037;0.771873;, + 0.752646;0.815263;, + 0.745670;0.746966;, + 0.756254;0.782280;, + 0.745384;0.689022;, + 0.796474;0.958596;, + 0.977029;0.021491;, + 0.783144;0.959274;, + 0.732037;0.813119;, + 0.773659;0.815263;, + 0.745384;0.707912;, + 0.774089;0.782280;, + 0.977169;0.021491;, + 0.821046;0.958596;, + 0.732037;0.771873;, + 0.752646;0.815263;, + 0.732037;0.792106;, + 0.745384;0.689022;, + 0.745670;0.746966;, + 0.756254;0.782280;, + 0.783144;0.959274;, + 0.796474;0.958596;, + 0.977029;0.021491;, + 0.977179;0.021888;, + 0.875226;0.929324;, + 0.875221;0.929347;, + 0.978676;0.928821;, + 0.850649;0.929347;, + 0.850654;0.929324;, + 0.768789;0.901150;, + 0.798397;0.900318;, + 0.821046;0.900318;, + 0.977179;0.021888;, + 0.875221;0.929347;, + 0.875226;0.929324;, + 0.768789;0.901150;, + 0.798397;0.900318;, + 0.978676;0.928821;, + 0.850649;0.929347;, + 0.850654;0.929324;, + 0.977179;0.021556;, + 0.888053;0.829159;, + 0.875226;0.866894;, + 0.888053;0.849635;, + 0.978676;0.865984;, + 0.850654;0.866894;, + 0.768789;0.849484;, + 0.977001;0.021331;, + 0.798397;0.848516;, + 0.821046;0.848516;, + 0.977194;0.021331;, + 0.977179;0.021556;, + 0.875226;0.866894;, + 0.888053;0.829159;, + 0.768789;0.849484;, + 0.977001;0.021331;, + 0.798397;0.848516;, + 0.888053;0.849635;, + 0.978676;0.865984;, + 0.850654;0.866894;, + 0.711138;0.630605;, + 0.976859;0.021745;, + 0.731947;0.631618;, + 0.785081;0.704734;, + 0.968087;0.704061;, + 0.976865;0.021745;, + 0.758409;0.631618;, + 0.852822;0.704734;, + 0.967843;0.704183;, + 0.711138;0.630605;, + 0.976859;0.021745;, + 0.731947;0.631618;, + 0.977922;0.019611;, + 0.464119;0.857811;, + 0.481521;0.845698;, + 0.979961;0.019611;, + 0.510688;0.845698;, + 0.977782;0.020245;, + 0.486403;0.033711;, + 0.978483;0.020245;, + 0.977782;0.021604;, + 0.486403;0.107756;, + 0.479421;0.992755;, + 0.447425;0.964429;, + 0.447130;0.971190;, + 0.512606;0.992755;, + 0.447130;0.995439;, + 0.447425;0.932359;, + 0.978215;0.022379;, + 0.978043;0.019009;, + 0.979394;0.019009;, + 0.980585;0.022379;, + 0.097140;0.444659;, + 0.972515;0.112669;, + 0.097196;0.430691;, + 0.096024;0.418061;, + 0.151500;0.418061;, + 0.982745;0.112669;, + 0.119679;0.444805;, + 0.119735;0.430837;, + 0.135500;0.418061;, + 0.117609;0.418061;, + 0.724760;0.577911;, + 0.731947;0.578171;, + 0.715679;0.559671;, + 0.731947;0.559671;, + 0.714579;0.526087;, + 0.758409;0.578171;, + 0.758409;0.559671;, + 0.714579;0.552549;, + 0.724760;0.577911;, + 0.731947;0.578171;, + 0.715679;0.559671;, + 0.731947;0.559671;, + 0.714579;0.526087;, + 0.979079;0.019428;, + 0.705752;0.498336;, + 0.676086;0.498336;, + 0.977499;0.019428;, + 0.662365;0.498579;, + 0.464119;0.833563;, + 0.481521;0.808872;, + 0.465483;0.825413;, + 0.510688;0.808872;, + 0.977782;0.019429;, + 0.977759;0.019088;, + 0.465483;0.806829;, + 0.978498;0.019088;, + 0.978483;0.019429;, + 0.479421;0.872712;, + 0.447425;0.883464;, + 0.978215;0.018687;, + 0.512606;0.872712;, + 0.980585;0.018687;, + 0.480373;0.096439;, + 0.835909;0.220903;, + 0.978103;0.021676;, + 0.835909;0.217521;, + 0.793123;0.111296;, + 0.818815;0.126731;, + 0.806177;0.111554;, + 0.818815;0.114854;, + 0.818477;0.111554;, + 0.818506;0.111551;, + 0.977141;0.022000;, + 0.069496;0.093505;, + 0.977118;0.020469;, + 0.016518;0.087040;, + 0.016518;0.060366;, + 0.016513;0.060375;, + 0.047090;0.093505;, + 0.012437;0.093561;, + 0.064097;0.059231;, + 0.012431;0.059298;, + 0.012381;0.052598;, + 0.012437;0.059286;, + 0.705752;0.437973;, + 0.670927;0.382443;, + 0.658868;0.382686;, + 0.676086;0.437973;, + 0.651163;0.438217;, + 0.856740;0.220903;, + 0.978563;0.021676;, + 0.979321;0.021676;, + 0.891110;0.220903;, + 0.891110;0.217521;, + 0.856740;0.217521;, + 0.070051;0.092394;, + 0.977981;0.022000;, + 0.978386;0.020469;, + 0.047645;0.092394;, + 0.041008;0.093561;, + 0.064652;0.058120;, + 0.041008;0.059286;, + 0.041002;0.059298;, + 0.040952;0.052598;, + 0.036926;0.087040;, + 0.036926;0.060366;, + 0.036921;0.060375;, + 0.083840;0.509236;, + 0.083840;0.509233;, + 0.083855;0.509239;, + 0.080480;0.504795;, + 0.082948;0.497871;, + 0.048288;0.505028;, + 0.080510;0.504641;, + 0.080480;0.504793;, + 0.007516;0.505028;, + 0.080480;0.504795;, + 0.082948;0.464938;, + 0.083840;0.509232;, + 0.083840;0.509222;, + 0.083840;0.509230;, + 0.187000;0.166807;, + 0.187400;0.177905;, + 0.267815;0.224141;, + 0.187000;0.173806;, + 0.260407;0.224141;, + 0.187400;0.177905;, + 0.972515;0.072573;, + 0.972515;0.081652;, + 0.096024;0.309203;, + 0.096024;0.333850;, + 0.982745;0.072573;, + 0.151500;0.309203;, + 0.982745;0.081652;, + 0.151500;0.333850;, + 0.117609;0.309203;, + 0.135500;0.309203;, + 0.135500;0.333850;, + 0.117609;0.333850;, + 0.166720;0.505346;, + 0.223123;0.507837;, + 0.164252;0.497871;, + 0.166720;0.505303;, + 0.163360;0.509056;, + 0.156752;0.504651;, + 0.155496;0.497871;, + 0.126960;0.504654;, + 0.125945;0.497871;, + 0.126505;0.509127;, + 0.126400;0.509152;, + 0.156976;0.509006;, + 0.156976;0.508959;, + 0.166720;0.505346;, + 0.164252;0.464938;, + 0.189418;0.507837;, + 0.163360;0.509056;, + 0.156752;0.504688;, + 0.155496;0.464938;, + 0.156976;0.508959;, + 0.156976;0.508964;, + 0.126400;0.509215;, + 0.126400;0.509152;, + 0.126960;0.504789;, + 0.125945;0.464938;, + 0.745394;0.090556;, + 0.270545;0.320182;, + 0.280385;0.318542;, + 0.270545;0.362200;, + 0.280385;0.360561;, + 0.270545;0.379708;, + 0.296785;0.384628;, + 0.297409;0.384957;, + 0.298860;0.427511;, + 0.291704;0.354200;, + 0.291626;0.353945;, + 0.291704;0.318563;, + 0.291626;0.318654;, + 0.356911;0.427576;, + 0.361011;0.366363;, + 0.361042;0.366416;, + 0.345901;0.427576;, + 0.345718;0.427511;, + 0.349473;0.384957;, + 0.361490;0.318563;, + 0.355319;0.354200;, + 0.355564;0.354180;, + 0.301464;0.369666;, + 0.301466;0.370190;, + 0.305321;0.355683;, + 0.342793;0.369666;, + 0.305321;0.318563;, + 0.428474;0.427576;, + 0.435854;0.366363;, + 0.436245;0.366416;, + 0.446824;0.427576;, + 0.470350;0.348420;, + 0.455528;0.351583;, + 0.455865;0.350599;, + 0.421864;0.306189;, + 0.427871;0.354200;, + 0.427885;0.354180;, + 0.470350;0.305599;, + 0.455865;0.307346;, + 0.444892;0.306189;, + 0.444966;0.306476;, + 0.444892;0.341826;, + 0.444966;0.341115;, + 0.835909;0.151790;, + 0.835909;0.147563;, + 0.978103;0.020028;, + 0.806054;0.037284;, + 0.816593;0.026083;, + 0.818506;0.037251;, + 0.818354;0.037284;, + 0.816593;0.013880;, + 0.793123;0.037628;, + 0.012437;0.120825;, + 0.047090;0.120769;, + 0.977044;0.022066;, + 0.977044;0.020660;, + 0.069496;0.120769;, + 0.977118;0.021875;, + 0.069496;0.093505;, + 0.977118;0.020469;, + 0.977141;0.022000;, + 0.016518;0.087040;, + 0.047090;0.093505;, + 0.012437;0.093561;, + 0.977044;0.020660;, + 0.977118;0.021875;, + 0.069496;0.120769;, + 0.977044;0.022066;, + 0.047090;0.120769;, + 0.012437;0.120825;, + 0.513845;0.044407;, + 0.891110;0.151790;, + 0.856740;0.151790;, + 0.856740;0.147563;, + 0.978563;0.020028;, + 0.891110;0.147563;, + 0.979321;0.020028;, + 0.859301;0.400070;, + 0.859000;0.396008;, + 0.859000;0.396004;, + 0.975690;0.024113;, + 0.859301;0.410331;, + 0.873399;0.410331;, + 0.976407;0.024113;, + 0.873399;0.400070;, + 0.873466;0.396199;, + 0.863305;0.291435;, + 0.859200;0.327200;, + 0.863305;0.280722;, + 0.863800;0.390604;, + 0.863600;0.330400;, + 0.975690;0.020550;, + 0.978600;0.022376;, + 0.863800;0.334800;, + 0.863800;0.334805;, + 0.858768;0.334964;, + 0.070051;0.092394;, + 0.977981;0.022000;, + 0.978386;0.020469;, + 0.047645;0.092394;, + 0.041008;0.093561;, + 0.978312;0.022066;, + 0.041008;0.120825;, + 0.047645;0.119658;, + 0.978312;0.020660;, + 0.978386;0.021875;, + 0.070051;0.119658;, + 0.036926;0.087040;, + 0.978312;0.022066;, + 0.041008;0.120825;, + 0.047645;0.119658;, + 0.978386;0.021875;, + 0.070051;0.119658;, + 0.978312;0.020660;, + 0.976888;0.021758;, + 0.096024;0.239370;, + 0.976871;0.021721;, + 0.976888;0.021778;, + 0.972515;0.046851;, + 0.976878;0.021721;, + 0.095747;0.209137;, + 0.972515;0.040799;, + 0.096024;0.222939;, + 0.095799;0.195670;, + 0.117331;0.195815;, + 0.135500;0.222939;, + 0.117609;0.222939;, + 0.117279;0.209282;, + 0.982745;0.040799;, + 0.151500;0.222939;, + 0.982745;0.046851;, + 0.151500;0.239370;, + 0.117609;0.239370;, + 0.135500;0.239370;, + 0.976878;0.021710;, + 0.972515;0.043825;, + 0.976889;0.021745;, + 0.982745;0.043825;, + 0.151500;0.231155;, + 0.135500;0.231155;, + 0.117609;0.231155;, + 0.096024;0.231155;, + 0.976871;0.021710;, + 0.976889;0.021726;, + 0.270545;0.260656;, + 0.281983;0.258879;, + 0.282025;0.259016;, + 0.283754;0.230704;, + 0.298999;0.230704;, + 0.298179;0.247924;, + 0.297409;0.247754;, + 0.291704;0.268942;, + 0.291626;0.270159;, + 0.361884;0.230704;, + 0.361064;0.246283;, + 0.361490;0.259662;, + 0.361506;0.259643;, + 0.305321;0.259662;, + 0.305997;0.259643;, + 0.420957;0.230704;, + 0.470350;0.248506;, + 0.420819;0.247754;, + 0.420137;0.246283;, + 0.455865;0.282116;, + 0.470350;0.280621;, + 0.455528;0.281128;, + 0.414254;0.259662;, + 0.413650;0.259643;, + 0.444892;0.287502;, + 0.444966;0.288312;, + 0.016518;0.060366;, + 0.016513;0.060375;, + 0.064097;0.059231;, + 0.012431;0.059298;, + 0.012437;0.059286;, + 0.012381;0.052598;, + 0.146322;0.732423;, + 0.146322;0.766866;, + 0.146863;0.801413;, + 0.146016;0.768382;, + 0.146322;0.714883;, + 0.146626;0.678436;, + 0.132939;0.801413;, + 0.132532;0.799522;, + 0.146626;0.682655;, + 0.146626;0.699164;, + 0.146016;0.772113;, + 0.978448;0.021428;, + 0.146016;0.769142;, + 0.146863;0.805506;, + 0.978448;0.020876;, + 0.978075;0.021428;, + 0.978075;0.020876;, + 0.132939;0.805506;, + 0.978617;0.020834;, + 0.231518;0.893176;, + 0.978617;0.020876;, + 0.231518;0.895832;, + 0.232804;0.841937;, + 0.232804;0.834740;, + 0.231518;0.872366;, + 0.232804;0.842644;, + 0.232804;0.834419;, + 0.231518;0.929483;, + 0.184482;0.986461;, + 0.183964;0.977510;, + 0.183964;0.944197;, + 0.978578;0.018557;, + 0.979022;0.018557;, + 0.184482;0.995098;, + 0.147982;0.824798;, + 0.216679;0.814796;, + 0.064652;0.058120;, + 0.040952;0.052598;, + 0.041008;0.059286;, + 0.041002;0.059298;, + 0.036926;0.060366;, + 0.036921;0.060375;, + 0.512606;0.947429;, + 0.479421;0.947429;, + 0.463765;0.932537;, + 0.463765;0.932537;, + 0.479421;0.947429;, + 0.463765;0.887007;, + 0.479421;0.885961;, + 0.512606;0.885961;, + 0.830295;0.111366;, + 0.830238;0.111442;, + 0.841218;0.111366;, + 0.841314;0.111442;, + 0.841241;0.111373;, + 0.824065;0.108391;, + 0.824024;0.108408;, + 0.826483;0.114661;, + 0.826420;0.114626;, + 0.826483;0.126731;, + 0.843742;0.126731;, + 0.914073;0.111583;, + 0.843742;0.114661;, + 0.896810;0.111583;, + 0.843674;0.114607;, + 0.484986;0.048318;, + 0.860172;0.035810;, + 0.830283;0.035767;, + 0.830283;0.035763;, + 0.874513;0.073311;, + 0.874515;0.073245;, + 0.874515;0.043185;, + 0.874513;0.043157;, + 0.824065;0.039785;, + 0.824024;0.039738;, + 0.914073;0.072339;, + 0.896810;0.072339;, + 0.880635;0.073336;, + 0.914073;0.039635;, + 0.878714;0.013880;, + 0.896810;0.039635;, + 0.878714;0.025890;, + 0.880635;0.041337;, + 0.880627;0.041351;, + 0.862452;0.013880;, + 0.862452;0.025890;, + 0.864354;0.033144;, + 0.824507;0.013880;, + 0.824507;0.025890;, + 0.826409;0.033187;, + 0.874000;0.390598;, + 0.874000;0.390602;, + 0.977189;0.020514;, + 0.978600;0.020878;, + 0.885381;0.334233;, + 0.918247;0.169976;, + 0.918247;0.167944;, + 0.918025;0.131270;, + 0.918025;0.159841;, + 0.918247;0.168000;, + 0.918247;0.170032;, + 0.182508;0.766866;, + 0.178079;0.768382;, + 0.208776;0.768315;, + 0.191817;0.726879;, + 0.208776;0.727114;, + 0.193589;0.678436;, + 0.212995;0.768315;, + 0.182405;0.769142;, + 0.212995;0.722253;, + 0.212995;0.722253;, + 0.198628;0.682655;, + 0.198628;0.682655;, + 0.229504;0.768315;, + 0.182405;0.772113;, + 0.198628;0.699164;, + 0.229504;0.722253;, + 0.217974;0.804906;, + 0.201590;0.811736;, + 0.206868;0.780799;, + 0.217974;0.781483;, + 0.237407;0.804906;, + 0.892228;0.291435;, + 0.891228;0.302435;, + 0.892228;0.280722;, + 0.892253;0.306969;, + 0.892222;0.307059;, + 0.936839;0.410331;, + 0.979634;0.022435;, + 0.966333;0.367325;, + 0.936839;0.400070;, + 0.924808;0.367270;, + 0.955046;0.367325;, + 0.924796;0.367275;, + 0.955046;0.332160;, + 0.942046;0.332160;, + 0.966333;0.332160;, + 0.980710;0.020420;, + 0.966333;0.332160;, + 0.978600;0.017357;, + 0.920766;0.363703;, + 0.920741;0.363700;, + 0.920780;0.363679;, + 0.936500;0.332500;, + 0.979993;0.020455;, + 0.978600;0.018074;, + 0.925926;0.333333;, + 0.686697;0.042090;, + 0.686383;0.041777;, + 0.711212;0.041930;, + 0.722178;0.040237;, + 0.711221;0.041841;, + 0.711058;0.017096;, + 0.722178;0.019530;, + 0.710839;0.016926;, + 0.686540;0.017166;, + 0.686540;0.017172;, + 0.710745;0.016972;, + 0.742470;0.040237;, + 0.742470;0.019530;, + 0.711218;0.041900;, + 0.943531;0.170051;, + 0.957753;0.175131;, + 0.968940;0.133152;, + 0.957753;0.185722;, + 0.983323;0.133152;, + 0.943531;0.185722;, + 0.943531;0.167944;, + 0.943309;0.131325;, + 0.957753;0.173024;, + 0.957531;0.135035;, + 0.966079;0.134702;, + 0.943309;0.159786;, + 0.943531;0.168000;, + 0.957753;0.173079;, + 0.966079;0.155887;, + 0.957531;0.156076;, + 0.943531;0.170107;, + 0.943531;0.185778;, + 0.957753;0.185778;, + 0.983323;0.157437;, + 0.957753;0.175186;, + 0.968940;0.157437;, + 0.983323;0.134646;, + 0.983323;0.155943;, + 0.966333;0.305786;, + 0.942926;0.280722;, + 0.955046;0.305786;, + 0.942926;0.291435;, + 0.942300;0.306196;, + 0.942300;0.306200;, + 0.937193;0.291435;, + 0.937193;0.302435;, + 0.937193;0.280722;, + 0.931623;0.307069;, + 0.931630;0.307059;, + 0.936303;0.309600;, + 0.713500;0.089000;, + 0.690009;0.103508;, + 0.699532;0.075033;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.693747;0.089000;, + 0.689675;0.103397;, + 0.699532;0.102968;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.713500;0.108753;, + 0.713500;0.089000;, + 0.673214;0.103508;, + 0.672880;0.074825;, + 0.672880;0.089111;, + 0.672880;0.103397;, + 0.672880;0.104508;, + 0.672880;0.090222;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.699532;0.075033;, + 0.689675;0.089111;, + 0.693747;0.089000;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.699532;0.102968;, + 0.689675;0.090222;, + 0.713500;0.108753;, + 0.690009;0.089222;, + 0.713500;0.069247;, + 0.673214;0.089222;, + 0.690009;0.089222;, + 0.713500;0.069247;, + 0.689675;0.074825;, + 0.727468;0.075033;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.733253;0.089000;, + 0.689675;0.075937;, + 0.727468;0.102968;, + 0.689675;0.103397;, + 0.672880;0.089111;, + 0.672880;0.074825;, + 0.673214;0.074937;, + 0.672880;0.075937;, + 0.672880;0.103397;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.727468;0.075033;, + 0.689675;0.089111;, + 0.733253;0.089000;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.727468;0.102968;, + 0.686540;0.017110;, + 0.686477;0.042153;, + 0.918247;0.185722;, + 0.918247;0.185778;, + 0.918247;0.169976;, + 0.918247;0.167944;, + 0.918025;0.131270;, + 0.918025;0.159841;, + 0.918247;0.168000;, + 0.918247;0.170032;, + 0.686697;0.042090;, + 0.686383;0.041777;, + 0.711212;0.041930;, + 0.722178;0.040237;, + 0.711221;0.041841;, + 0.711058;0.017096;, + 0.722178;0.019530;, + 0.710839;0.016926;, + 0.686540;0.017166;, + 0.686540;0.017172;, + 0.710745;0.016972;, + 0.742470;0.040237;, + 0.742470;0.019530;, + 0.711218;0.041900;, + 0.943531;0.170051;, + 0.957753;0.175131;, + 0.968940;0.133152;, + 0.957753;0.185722;, + 0.983323;0.133152;, + 0.943531;0.185722;, + 0.943531;0.167944;, + 0.943309;0.131325;, + 0.957753;0.173024;, + 0.957531;0.135035;, + 0.966079;0.134702;, + 0.943309;0.159786;, + 0.943531;0.168000;, + 0.957753;0.173079;, + 0.966079;0.155887;, + 0.957531;0.156076;, + 0.943531;0.170107;, + 0.943531;0.185778;, + 0.957753;0.185778;, + 0.983323;0.157437;, + 0.957753;0.175186;, + 0.968940;0.157437;, + 0.983323;0.134646;, + 0.983323;0.155943;, + 0.818815;0.114854;, + 0.818506;0.111551;, + 0.806177;0.111554;, + 0.818477;0.111554;, + 0.806054;0.037284;, + 0.818354;0.037284;, + 0.816593;0.026083;, + 0.818506;0.037251;, + 0.830295;0.111366;, + 0.830238;0.111442;, + 0.841218;0.111366;, + 0.841241;0.111373;, + 0.841314;0.111442;, + 0.824024;0.108408;, + 0.824065;0.108391;, + 0.826483;0.114661;, + 0.826420;0.114626;, + 0.896810;0.111583;, + 0.843742;0.114661;, + 0.843674;0.114607;, + 0.860172;0.035810;, + 0.830283;0.035767;, + 0.830283;0.035763;, + 0.874515;0.073245;, + 0.874513;0.073311;, + 0.874515;0.043185;, + 0.874513;0.043157;, + 0.824065;0.039785;, + 0.824024;0.039738;, + 0.896810;0.072339;, + 0.880635;0.073336;, + 0.878714;0.025890;, + 0.880635;0.041337;, + 0.880627;0.041351;, + 0.896810;0.039635;, + 0.862452;0.025890;, + 0.864354;0.033144;, + 0.824507;0.025890;, + 0.826409;0.033187;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.977022;0.021746;, + 0.976941;0.021762;, + 0.186550;0.382365;, + 0.976866;0.021710;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021757;, + 0.976874;0.021718;, + 0.186550;0.382338;, + 0.976831;0.021731;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.178570;0.404936;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021859;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.178570;0.404949;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.976941;0.021651;, + 0.976887;0.021710;, + 0.186550;0.382365;, + 0.178570;0.382418;, + 0.976887;0.021756;, + 0.176404;0.382494;, + 0.178572;0.404842;, + 0.176177;0.404762;, + 0.186138;0.413602;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.178574;0.404842;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.976986;0.021718;, + 0.976853;0.021731;, + 0.186550;0.382334;, + 0.178570;0.382379;, + 0.976853;0.021747;, + 0.176404;0.382508;, + 0.178570;0.404934;, + 0.176176;0.404762;, + 0.976872;0.021776;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.976919;0.021730;, + 0.186550;0.382342;, + 0.178570;0.382383;, + 0.976919;0.021690;, + 0.176404;0.382505;, + 0.178570;0.404955;, + 0.176178;0.404770;, + 0.976887;0.021767;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.977022;0.021746;, + 0.976941;0.021762;, + 0.186550;0.382365;, + 0.976866;0.021710;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021757;, + 0.976874;0.021718;, + 0.186550;0.382338;, + 0.976831;0.021731;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.178570;0.404936;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021859;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.178570;0.404949;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.976941;0.021651;, + 0.976887;0.021710;, + 0.186550;0.382365;, + 0.178570;0.382418;, + 0.976887;0.021756;, + 0.176404;0.382494;, + 0.178572;0.404842;, + 0.176177;0.404762;, + 0.186138;0.413602;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.178574;0.404842;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.976986;0.021718;, + 0.976853;0.021731;, + 0.186550;0.382334;, + 0.178570;0.382379;, + 0.976853;0.021747;, + 0.176404;0.382508;, + 0.178570;0.404934;, + 0.176176;0.404762;, + 0.976872;0.021776;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.976919;0.021730;, + 0.186550;0.382342;, + 0.178570;0.382383;, + 0.976919;0.021690;, + 0.176404;0.382505;, + 0.178570;0.404955;, + 0.176178;0.404770;, + 0.976887;0.021767;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.977022;0.021746;, + 0.976941;0.021762;, + 0.186550;0.382365;, + 0.976866;0.021710;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021757;, + 0.976874;0.021718;, + 0.186550;0.382338;, + 0.976831;0.021731;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.178570;0.404936;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021859;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.178570;0.404949;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.976941;0.021651;, + 0.976887;0.021710;, + 0.186550;0.382365;, + 0.178570;0.382418;, + 0.976887;0.021756;, + 0.176404;0.382494;, + 0.178572;0.404842;, + 0.176177;0.404762;, + 0.186138;0.413602;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.178574;0.404842;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.976986;0.021718;, + 0.976853;0.021731;, + 0.186550;0.382334;, + 0.178570;0.382379;, + 0.976853;0.021747;, + 0.176404;0.382508;, + 0.178570;0.404934;, + 0.176176;0.404762;, + 0.976872;0.021776;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.976919;0.021730;, + 0.186550;0.382342;, + 0.178570;0.382383;, + 0.976919;0.021690;, + 0.176404;0.382505;, + 0.178570;0.404955;, + 0.176178;0.404770;, + 0.976887;0.021767;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.977022;0.021746;, + 0.976941;0.021762;, + 0.186550;0.382365;, + 0.976866;0.021710;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021757;, + 0.976874;0.021718;, + 0.186550;0.382338;, + 0.976831;0.021731;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.178570;0.404936;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021859;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.178570;0.404949;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.976941;0.021651;, + 0.976887;0.021710;, + 0.186550;0.382365;, + 0.178570;0.382418;, + 0.976887;0.021756;, + 0.176404;0.382494;, + 0.178572;0.404842;, + 0.176177;0.404762;, + 0.186138;0.413602;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.178574;0.404842;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.976986;0.021718;, + 0.976853;0.021731;, + 0.186550;0.382334;, + 0.178570;0.382379;, + 0.976853;0.021747;, + 0.176404;0.382508;, + 0.178570;0.404934;, + 0.176176;0.404762;, + 0.976872;0.021776;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.976919;0.021730;, + 0.186550;0.382342;, + 0.178570;0.382383;, + 0.976919;0.021690;, + 0.176404;0.382505;, + 0.178570;0.404955;, + 0.176178;0.404770;, + 0.976887;0.021767;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.673214;0.103508;, + 0.672880;0.074825;, + 0.672880;0.089111;, + 0.672880;0.103397;, + 0.672880;0.104508;, + 0.672880;0.090222;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.690009;0.089222;, + 0.673214;0.089222;, + 0.690009;0.089222;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.672880;0.089111;, + 0.672880;0.074825;, + 0.673214;0.074937;, + 0.672880;0.075937;, + 0.672880;0.103397;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.673214;0.103508;, + 0.672880;0.074825;, + 0.672880;0.089111;, + 0.672880;0.103397;, + 0.672880;0.104508;, + 0.672880;0.090222;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.690009;0.089222;, + 0.673214;0.089222;, + 0.690009;0.089222;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.672880;0.089111;, + 0.672880;0.074825;, + 0.673214;0.074937;, + 0.672880;0.075937;, + 0.672880;0.103397;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.062673;0.171389;, + 0.123628;0.174197;, + 0.062673;0.153611;, + 0.123573;0.174197;, + 0.099649;0.174197;, + 0.040549;0.153611;, + 0.040549;0.171389;, + 0.099705;0.174197;, + 0.149444;0.168841;, + 0.090307;0.140477;, + 0.032025;0.171556;, + 0.032025;0.153778;, + 0.090251;0.140477;, + 0.167222;0.168841;, + 0.167222;0.154555;, + 0.086359;0.154444;, + 0.149444;0.154555;, + 0.086414;0.154444;, + 0.149444;0.140270;, + 0.031858;0.171389;, + 0.090307;0.168412;, + 0.167222;0.140270;, + 0.031858;0.153611;, + 0.090251;0.168412;, + 0.149444;0.168619;, + 0.071531;0.171556;, + 0.133026;0.140477;, + 0.149444;0.154333;, + 0.136919;0.154444;, + 0.167222;0.154333;, + 0.136864;0.154444;, + 0.167222;0.168619;, + 0.071531;0.153778;, + 0.132971;0.140477;, + 0.149444;0.140048;, + 0.133026;0.168412;, + 0.071364;0.171389;, + 0.071364;0.153611;, + 0.132971;0.168412;, + 0.167222;0.140048;, + 0.123573;0.134691;, + 0.062840;0.153778;, + 0.062840;0.171556;, + 0.123628;0.134691;, + 0.040716;0.171556;, + 0.099705;0.134691;, + 0.040716;0.153778;, + 0.099649;0.134691;, + 0.745439;0.090556;, + 0.736667;0.086111;, + 0.760385;0.107030;, + 0.760111;0.107155;, + 0.745556;0.081667;, + 0.768028;0.107043;, + 0.760428;0.107343;, + 0.736667;0.095000;, + 0.759889;0.107155;, + 0.768593;0.107030;, + 0.745556;0.099444;, + 0.760206;0.107343;, + 0.767806;0.107043;, + 0.754444;0.095000;, + 0.768292;0.107041;, + 0.768123;0.107230;, + 0.754444;0.086111;, + 0.768345;0.107230;, + 0.759885;0.107141;, + 0.745278;0.081667;, + 0.760172;0.056313;, + 0.767572;0.056213;, + 0.736389;0.086111;, + 0.760185;0.056325;, + 0.759855;0.056125;, + 0.736389;0.095000;, + 0.767593;0.056025;, + 0.760033;0.056525;, + 0.745278;0.099444;, + 0.767750;0.056213;, + 0.759950;0.056313;, + 0.754167;0.095000;, + 0.767667;0.056401;, + 0.767492;0.056136;, + 0.754167;0.086111;, + 0.759685;0.056136;, + 0.767889;0.056401;, + 0.745394;0.090556;, + 0.745439;0.090556;, + 0.736667;0.086111;, + 0.760385;0.107030;, + 0.760111;0.107155;, + 0.745556;0.081667;, + 0.768028;0.107043;, + 0.760428;0.107343;, + 0.736667;0.095000;, + 0.759889;0.107155;, + 0.768593;0.107030;, + 0.745556;0.099444;, + 0.760206;0.107343;, + 0.767806;0.107043;, + 0.754444;0.095000;, + 0.768292;0.107041;, + 0.768123;0.107230;, + 0.754444;0.086111;, + 0.768345;0.107230;, + 0.759885;0.107141;, + 0.745278;0.081667;, + 0.760172;0.056313;, + 0.767572;0.056213;, + 0.736389;0.086111;, + 0.760185;0.056325;, + 0.759855;0.056125;, + 0.736389;0.095000;, + 0.767593;0.056025;, + 0.760033;0.056525;, + 0.745278;0.099444;, + 0.767750;0.056213;, + 0.759950;0.056313;, + 0.754167;0.095000;, + 0.767667;0.056401;, + 0.767492;0.056136;, + 0.754167;0.086111;, + 0.759685;0.056136;, + 0.767889;0.056401;, + 0.745394;0.090556;, + 0.472531;0.024249;, + 0.403337;0.024249;, + 0.398724;0.111289;, + 0.472531;0.111289;, + 0.976615;0.021333;, + 0.977548;0.022780;, + 0.389242;0.879776;, + 0.401882;0.879805;, + 0.166456;0.778736;, + 0.959048;0.512451;, + 0.959048;0.396487;, + 0.977044;0.021392;, + 0.759894;0.521686;, + 0.713500;0.089000;, + 0.641115;0.577911;, + 0.569468;0.863191;, + 0.579224;0.863191;, + 0.593834;0.863191;, + 0.977010;0.021888;, + 0.933173;0.928821;, + 0.713399;0.743062;, + 0.976753;0.021392;, + 0.759894;0.504977;, + 0.835111;0.458703;, + 0.761022;0.407988;, + 0.730511;0.909761;, + 0.555516;0.785034;, + 0.556456;0.768150;, + 0.546440;0.785034;, + 0.546440;0.678549;, + 0.547380;0.762180;, + 0.555516;0.815257;, + 0.546440;0.708772;, + 0.546440;0.815257;, + 0.555516;0.785034;, + 0.556456;0.768150;, + 0.546440;0.785034;, + 0.547380;0.762180;, + 0.546440;0.678549;, + 0.302199;0.946783;, + 0.263560;0.948159;, + 0.260667;0.941319;, + 0.295370;0.940241;, + 0.315857;0.987318;, + 0.315702;0.988050;, + 0.266264;0.990540;, + 0.313333;0.864576;, + 0.977897;0.020979;, + 0.260667;0.862208;, + 0.976665;0.020882;, + 0.313481;0.868559;, + 0.260667;0.866372;, + 0.977900;0.021141;, + 0.976665;0.021052;, + 0.435701;0.551310;, + 0.435652;0.551397;, + 0.429940;0.549638;, + 0.387183;0.549880;, + 0.429993;0.549678;, + 0.321629;0.721642;, + 0.252376;0.725528;, + 0.327268;0.686475;, + 0.252469;0.686829;, + 0.268395;0.726256;, + 0.268350;0.726269;, + 0.268350;0.681512;, + 0.268350;0.673331;, + 0.268320;0.673278;, + 0.441209;0.535723;, + 0.436927;0.532459;, + 0.387183;0.531321;, + 0.734663;0.454345;, + 0.976616;0.021821;, + 0.734663;0.417325;, + 0.976753;0.021821;, + 0.734663;0.407988;, + 0.602106;0.785034;, + 0.603046;0.768150;, + 0.602106;0.678549;, + 0.603046;0.726360;, + 0.977044;0.021821;, + 0.734663;0.390297;, + 0.602106;0.815257;, + 0.602106;0.708772;, + 0.734663;0.454345;, + 0.734663;0.417325;, + 0.976616;0.021821;, + 0.976753;0.021821;, + 0.734663;0.407988;, + 0.602106;0.785034;, + 0.603046;0.768150;, + 0.602106;0.678549;, + 0.603046;0.726360;, + 0.595595;0.625155;, + 0.554509;0.627484;, + 0.554529;0.626267;, + 0.580962;0.627484;, + 0.580991;0.626267;, + 0.595595;0.625155;, + 0.554509;0.627484;, + 0.554529;0.626267;, + 0.361134;0.946783;, + 0.361134;0.946783;, + 0.977996;0.020954;, + 0.977996;0.020954;, + 0.361134;0.987318;, + 0.978082;0.021635;, + 0.361000;0.987971;, + 0.422412;0.920730;, + 0.401882;0.891889;, + 0.410299;0.920730;, + 0.401821;0.920276;, + 0.389242;0.891889;, + 0.980067;0.022644;, + 0.389864;0.107756;, + 0.980067;0.018289;, + 0.978467;0.022124;, + 0.389864;0.033711;, + 0.384220;0.964429;, + 0.383669;0.971190;, + 0.978043;0.021284;, + 0.384220;0.932359;, + 0.354305;0.837126;, + 0.353952;0.830714;, + 0.978015;0.019112;, + 0.266102;0.840349;, + 0.319271;0.843669;, + 0.319381;0.826383;, + 0.410299;0.893814;, + 0.401968;0.891888;, + 0.401821;0.893360;, + 0.401968;0.879776;, + 0.422412;0.893814;, + 0.160200;0.104403;, + 0.160200;0.104406;, + 0.137212;0.105146;, + 0.536902;0.329036;, + 0.138000;0.057480;, + 0.681176;0.318447;, + 0.144300;0.064700;, + 0.144303;0.104439;, + 0.144314;0.104446;, + 0.145500;0.051987;, + 0.556327;0.331772;, + 0.155000;0.058484;, + 0.155100;0.109098;, + 0.155100;0.109097;, + 0.149353;0.099465;, + 0.501218;0.382443;, + 0.520189;0.382686;, + 0.364053;0.752399;, + 0.252379;0.754120;, + 0.364806;0.755188;, + 0.364364;0.757451;, + 0.976859;0.021175;, + 0.268261;0.758812;, + 0.479354;0.575723;, + 0.458510;0.596617;, + 0.503402;0.596615;, + 0.447728;0.542094;, + 0.506719;0.603402;, + 0.457069;0.622806;, + 0.455833;0.603363;, + 0.387183;0.605783;, + 0.189000;0.104498;, + 0.189000;0.104494;, + 0.979923;0.019534;, + 0.194809;0.051841;, + 0.627550;0.331772;, + 0.979756;0.019534;, + 0.194800;0.109009;, + 0.194809;0.058456;, + 0.194800;0.109004;, + 0.160176;0.064647;, + 0.138000;0.057500;, + 0.138000;0.057489;, + 0.664930;0.253753;, + 0.536902;0.329201;, + 0.144300;0.064700;, + 0.144300;0.064686;, + 0.145500;0.051947;, + 0.556327;0.331158;, + 0.155000;0.058509;, + 0.155000;0.058496;, + 0.149353;0.070769;, + 0.339140;0.710426;, + 0.252510;0.673670;, + 0.330887;0.678159;, + 0.371135;0.691565;, + 0.360897;0.667221;, + 0.359134;0.662039;, + 0.252439;0.639745;, + 0.268320;0.641782;, + 0.463365;0.527209;, + 0.464792;0.522314;, + 0.189036;0.064647;, + 0.194809;0.051342;, + 0.979714;0.018363;, + 0.627550;0.331158;, + 0.194809;0.058489;, + 0.194808;0.058525;, + 0.979567;0.018437;, + 0.194808;0.058525;, + 0.761022;0.467576;, + 0.976616;0.021392;, + 0.761022;0.432294;, + 0.761022;0.417325;, + 0.976753;0.021392;, + 0.759894;0.497114;, + 0.761022;0.485217;, + 0.759894;0.504977;, + 0.761022;0.407988;, + 0.658376;0.785034;, + 0.659317;0.768150;, + 0.976682;0.021253;, + 0.658376;0.678549;, + 0.976682;0.020660;, + 0.659317;0.726360;, + 0.663523;0.967885;, + 0.977029;0.021804;, + 0.626448;0.967188;, + 0.761022;0.390297;, + 0.658376;0.815257;, + 0.977111;0.021253;, + 0.977111;0.020660;, + 0.658376;0.708772;, + 0.651019;0.967188;, + 0.977169;0.021804;, + 0.761022;0.467576;, + 0.976616;0.021392;, + 0.761022;0.432294;, + 0.761022;0.417325;, + 0.761022;0.485217;, + 0.759894;0.497114;, + 0.658376;0.785034;, + 0.976682;0.021253;, + 0.659317;0.768150;, + 0.658376;0.678549;, + 0.976682;0.020660;, + 0.659317;0.726360;, + 0.663523;0.967885;, + 0.977029;0.021804;, + 0.626448;0.967188;, + 0.527416;0.950131;, + 0.565046;0.950613;, + 0.579606;0.965780;, + 0.527416;0.965961;, + 0.580043;0.994122;, + 0.850936;0.929242;, + 0.850845;0.929228;, + 0.887671;0.928821;, + 0.875417;0.929228;, + 0.976841;0.021888;, + 0.875384;0.929242;, + 0.551988;0.950131;, + 0.551988;0.965961;, + 0.598963;0.994122;, + 0.565046;0.950613;, + 0.527416;0.950131;, + 0.527416;0.965961;, + 0.579606;0.965780;, + 0.580043;0.994122;, + 0.875384;0.929242;, + 0.875417;0.929228;, + 0.976841;0.021888;, + 0.850936;0.929242;, + 0.887671;0.928821;, + 0.850845;0.929228;, + 0.527416;0.879556;, + 0.564616;0.842129;, + 0.564663;0.842250;, + 0.565046;0.879109;, + 0.579606;0.879109;, + 0.579176;0.842129;, + 0.850845;0.866799;, + 0.979058;0.849635;, + 0.887671;0.865984;, + 0.976841;0.021556;, + 0.979058;0.829159;, + 0.875417;0.866799;, + 0.224270;0.065100;, + 0.224919;0.084722;, + 0.225106;0.084722;, + 0.224270;0.048234;, + 0.564663;0.866821;, + 0.551988;0.879556;, + 0.579224;0.866821;, + 0.579224;0.866821;, + 0.244397;0.048234;, + 0.236397;0.084722;, + 0.244397;0.065100;, + 0.236210;0.084722;, + 0.527416;0.879556;, + 0.565046;0.879109;, + 0.564616;0.842129;, + 0.564663;0.842250;, + 0.579606;0.879109;, + 0.579176;0.842129;, + 0.875417;0.866799;, + 0.979058;0.829159;, + 0.976841;0.021556;, + 0.224270;0.065100;, + 0.224919;0.084722;, + 0.224270;0.048234;, + 0.225106;0.084722;, + 0.850845;0.866799;, + 0.887671;0.865984;, + 0.979058;0.849635;, + 0.611242;0.631618;, + 0.554509;0.635865;, + 0.976859;0.021772;, + 0.785203;0.704550;, + 0.863801;0.704061;, + 0.569468;0.845659;, + 0.569464;0.845664;, + 0.579224;0.845659;, + 0.579219;0.845664;, + 0.593834;0.845659;, + 0.593829;0.845664;, + 0.580962;0.635834;, + 0.976865;0.021772;, + 0.852944;0.704550;, + 0.863556;0.704183;, + 0.569468;0.863191;, + 0.579224;0.863191;, + 0.593834;0.863191;, + 0.611242;0.631618;, + 0.554509;0.635865;, + 0.976859;0.021772;, + 0.569464;0.845664;, + 0.569468;0.845659;, + 0.579224;0.845659;, + 0.579219;0.845664;, + 0.593834;0.845659;, + 0.593829;0.845664;, + 0.367963;0.940241;, + 0.367963;0.940241;, + 0.977816;0.020844;, + 0.977816;0.020844;, + 0.389406;0.920276;, + 0.389242;0.879805;, + 0.384207;0.857811;, + 0.977922;0.022045;, + 0.977818;0.021385;, + 0.979961;0.022045;, + 0.979901;0.021385;, + 0.978467;0.020410;, + 0.402736;0.033711;, + 0.402736;0.107756;, + 0.622594;0.573857;, + 0.554529;0.569907;, + 0.633946;0.559671;, + 0.633105;0.526087;, + 0.554529;0.554319;, + 0.603619;0.582256;, + 0.554529;0.579134;, + 0.633105;0.552549;, + 0.580991;0.554319;, + 0.580991;0.569907;, + 0.580991;0.579134;, + 0.622594;0.573857;, + 0.554529;0.569907;, + 0.633946;0.559671;, + 0.633105;0.526087;, + 0.554529;0.554319;, + 0.603619;0.582256;, + 0.554529;0.579134;, + 0.507479;0.498336;, + 0.977973;0.021500;, + 0.528692;0.498579;, + 0.507479;0.454556;, + 0.543302;0.454800;, + 0.367963;0.864576;, + 0.979175;0.020979;, + 0.977816;0.019573;, + 0.367963;0.868559;, + 0.979175;0.021141;, + 0.977816;0.019640;, + 0.389242;0.891888;, + 0.389406;0.893360;, + 0.977818;0.019015;, + 0.384207;0.833563;, + 0.385571;0.825413;, + 0.385571;0.806829;, + 0.977759;0.021792;, + 0.979901;0.019015;, + 0.977888;0.021572;, + 0.397884;0.752564;, + 0.398545;0.755188;, + 0.398862;0.757451;, + 0.976859;0.019546;, + 0.512121;0.568048;, + 0.517276;0.615934;, + 0.503402;0.596604;, + 0.508481;0.615934;, + 0.458510;0.596617;, + 0.507949;0.622806;, + 0.455839;0.603402;, + 0.518180;0.622806;, + 0.517830;0.566416;, + 0.977028;0.021470;, + 0.268321;0.563588;, + 0.252469;0.564262;, + 0.421693;0.663596;, + 0.976971;0.021482;, + 0.268321;0.575890;, + 0.268320;0.576004;, + 0.252500;0.576100;, + 0.412754;0.639577;, + 0.405137;0.636980;, + 0.252439;0.590600;, + 0.268320;0.591865;, + 0.977757;0.021000;, + 0.074864;0.903802;, + 0.977689;0.021000;, + 0.977438;0.021042;, + 0.012834;0.883347;, + 0.062496;0.903802;, + 0.977689;0.021042;, + 0.977438;0.021090;, + 0.062496;0.906459;, + 0.012834;0.887585;, + 0.977757;0.021042;, + 0.074864;0.906459;, + 0.063781;0.849133;, + 0.029400;0.853180;, + 0.075645;0.841937;, + 0.063781;0.839881;, + 0.062673;0.886662;, + 0.013934;0.856006;, + 0.074525;0.881221;, + 0.075645;0.834740;, + 0.075645;0.842644;, + 0.063781;0.848812;, + 0.029400;0.910185;, + 0.075645;0.834419;, + 0.074525;0.927712;, + 0.063781;0.839559;, + 0.062673;0.918856;, + 0.013934;0.907360;, + 0.031044;0.883568;, + 0.977666;0.021127;, + 0.036394;0.859947;, + 0.031032;0.887264;, + 0.977666;0.021199;, + 0.977484;0.021042;, + 0.977566;0.021123;, + 0.024245;0.883347;, + 0.977566;0.021206;, + 0.024245;0.887585;, + 0.977484;0.021090;, + 0.036394;0.903469;, + 0.816137;0.458755;, + 0.826304;0.458703;, + 0.816137;0.447730;, + 0.826304;0.447511;, + 0.816137;0.417325;, + 0.803328;0.497114;, + 0.801759;0.485217;, + 0.826304;0.485564;, + 0.803328;0.504977;, + 0.835111;0.485564;, + 0.835111;0.458703;, + 0.835111;0.447511;, + 0.816137;0.407988;, + 0.803328;0.521686;, + 0.853824;0.485564;, + 0.853824;0.458703;, + 0.853824;0.447511;, + 0.816137;0.390297;, + 0.826304;0.458703;, + 0.816137;0.458755;, + 0.816137;0.447730;, + 0.826304;0.447511;, + 0.816137;0.417325;, + 0.803328;0.497114;, + 0.826304;0.485564;, + 0.801759;0.485217;, + 0.803328;0.504977;, + 0.835111;0.485564;, + 0.835111;0.447511;, + 0.816137;0.407988;, + 0.933173;0.928821;, + 0.599021;0.965780;, + 0.580043;0.972991;, + 0.976926;0.021640;, + 0.875384;0.961844;, + 0.977010;0.022036;, + 0.875221;0.961950;, + 0.850936;0.961844;, + 0.933173;0.956989;, + 0.850649;0.961950;, + 0.977010;0.021888;, + 0.692232;0.901150;, + 0.628371;0.899765;, + 0.598963;0.972991;, + 0.977145;0.021640;, + 0.651019;0.899765;, + 0.580043;0.972991;, + 0.976926;0.021640;, + 0.599021;0.965780;, + 0.875384;0.961844;, + 0.977010;0.022036;, + 0.875221;0.961950;, + 0.692232;0.901150;, + 0.628371;0.899765;, + 0.933173;0.956989;, + 0.850649;0.961950;, + 0.850936;0.961844;, + 0.933556;0.853730;, + 0.933173;0.865984;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.699532;0.075033;, + 0.689675;0.089111;, + 0.693747;0.089000;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.699532;0.102968;, + 0.689675;0.090222;, + 0.713500;0.108753;, + 0.713500;0.089000;, + 0.794167;0.784460;, + 0.976861;0.021786;, + 0.879137;0.783971;, + 0.599021;0.879109;, + 0.976926;0.021228;, + 0.598591;0.842129;, + 0.598639;0.842250;, + 0.977010;0.021556;, + 0.933556;0.829159;, + 0.628371;0.847567;, + 0.692232;0.849484;, + 0.977001;0.021658;, + 0.304000;0.057351;, + 0.977489;0.019676;, + 0.225106;0.071820;, + 0.225106;0.082977;, + 0.267704;0.057351;, + 0.355783;0.108129;, + 0.304000;0.084427;, + 0.224919;0.071820;, + 0.977489;0.021390;, + 0.304000;0.118257;, + 0.355667;0.082000;, + 0.267704;0.084427;, + 0.224919;0.082977;, + 0.355487;0.108129;, + 0.278335;0.108348;, + 0.355667;0.107253;, + 0.355487;0.081986;, + 0.216469;0.110778;, + 0.215825;0.065556;, + 0.220182;0.082977;, + 0.255975;0.110778;, + 0.220182;0.071820;, + 0.977045;0.021219;, + 0.255975;0.093000;, + 0.977045;0.019848;, + 0.220369;0.071820;, + 0.215825;0.047778;, + 0.220369;0.082977;, + 0.216469;0.093000;, + 0.672880;0.074825;, + 0.673214;0.103508;, + 0.672880;0.089111;, + 0.672880;0.104508;, + 0.672880;0.103397;, + 0.672880;0.090222;, + 0.846680;0.784460;, + 0.878892;0.784093;, + 0.976880;0.021786;, + 0.977145;0.021228;, + 0.598639;0.866821;, + 0.651019;0.847567;, + 0.977194;0.021658;, + 0.373696;0.108129;, + 0.236397;0.082977;, + 0.373444;0.107253;, + 0.373399;0.081986;, + 0.373444;0.082000;, + 0.373399;0.108129;, + 0.236210;0.082977;, + 0.690009;0.103508;, + 0.699532;0.075033;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.693747;0.089000;, + 0.689675;0.103397;, + 0.699532;0.102968;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.713500;0.108753;, + 0.599021;0.879109;, + 0.976926;0.021228;, + 0.598639;0.842250;, + 0.598591;0.842129;, + 0.977010;0.021556;, + 0.933556;0.829159;, + 0.692232;0.849484;, + 0.628371;0.847567;, + 0.977001;0.021658;, + 0.304000;0.057351;, + 0.225106;0.071820;, + 0.977489;0.019676;, + 0.267704;0.057351;, + 0.225106;0.082977;, + 0.355783;0.108129;, + 0.304000;0.084427;, + 0.977489;0.021390;, + 0.224919;0.071820;, + 0.304000;0.118257;, + 0.355667;0.082000;, + 0.224919;0.082977;, + 0.355487;0.108129;, + 0.267704;0.084427;, + 0.278335;0.108348;, + 0.355487;0.081986;, + 0.355667;0.107253;, + 0.216469;0.110778;, + 0.220182;0.082977;, + 0.215825;0.065556;, + 0.220182;0.071820;, + 0.977045;0.021219;, + 0.255975;0.110778;, + 0.255975;0.093000;, + 0.977045;0.019848;, + 0.220369;0.071820;, + 0.216469;0.093000;, + 0.215825;0.047778;, + 0.220369;0.082977;, + 0.933556;0.853730;, + 0.933173;0.865984;, + 0.690009;0.089222;, + 0.713500;0.069247;, + 0.304000;0.023520;, + 0.355889;0.082000;, + 0.278335;0.033429;, + 0.355783;0.081986;, + 0.355889;0.107253;, + 0.673214;0.089222;, + 0.373667;0.082000;, + 0.373667;0.107253;, + 0.373696;0.081986;, + 0.690009;0.089222;, + 0.713500;0.069247;, + 0.304000;0.023520;, + 0.355889;0.082000;, + 0.278335;0.033429;, + 0.355889;0.107253;, + 0.355783;0.081986;, + 0.034693;0.444254;, + 0.150000;0.418061;, + 0.944172;0.112669;, + 0.134655;0.418061;, + 0.036224;0.418061;, + 0.034750;0.430285;, + 0.641115;0.577911;, + 0.976867;0.020671;, + 0.582179;0.498579;, + 0.579256;0.454800;, + 0.391459;0.096439;, + 0.556537;0.174932;, + 0.556327;0.186090;, + 0.802622;0.317627;, + 0.523953;0.193454;, + 0.802641;0.317638;, + 0.556327;0.193454;, + 0.525422;0.173285;, + 0.808426;0.313459;, + 0.523953;0.186090;, + 0.977141;0.022000;, + 0.069496;0.093505;, + 0.977118;0.020469;, + 0.016518;0.060366;, + 0.016513;0.060375;, + 0.016518;0.087040;, + 0.047090;0.093505;, + 0.012437;0.093561;, + 0.064097;0.059231;, + 0.012431;0.059298;, + 0.012381;0.052598;, + 0.012437;0.059286;, + 0.977888;0.019087;, + 0.976954;0.022400;, + 0.579256;0.382686;, + 0.976971;0.021659;, + 0.437958;0.755188;, + 0.437405;0.752756;, + 0.977028;0.021682;, + 0.437345;0.757451;, + 0.977028;0.021682;, + 0.976859;0.017325;, + 0.624989;0.174932;, + 0.627550;0.186090;, + 0.981273;0.019472;, + 0.981189;0.019555;, + 0.627550;0.193454;, + 0.070051;0.092394;, + 0.977981;0.022000;, + 0.978386;0.020469;, + 0.064652;0.058120;, + 0.041008;0.059286;, + 0.041002;0.059298;, + 0.040952;0.052598;, + 0.047645;0.092394;, + 0.041008;0.093561;, + 0.036926;0.087040;, + 0.036926;0.060366;, + 0.036921;0.060375;, + 0.061440;0.582196;, + 0.061440;0.582191;, + 0.061440;0.582194;, + 0.056848;0.586710;, + 0.048289;0.586332;, + 0.056848;0.586661;, + 0.057496;0.640360;, + 0.056848;0.586684;, + 0.007516;0.586332;, + 0.057496;0.595107;, + 0.056848;0.586707;, + 0.061440;0.582197;, + 0.061440;0.582191;, + 0.061440;0.582193;, + 0.976930;0.021836;, + 0.198440;0.419736;, + 0.190825;0.353778;, + 0.194000;0.361263;, + 0.976915;0.021836;, + 0.214525;0.419736;, + 0.206698;0.353778;, + 0.214741;0.467736;, + 0.206698;0.371556;, + 0.198337;0.467736;, + 0.199079;0.371556;, + 0.976930;0.021836;, + 0.206698;0.361263;, + 0.977022;0.021746;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.976941;0.021762;, + 0.976866;0.021710;, + 0.186550;0.382365;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.976874;0.021757;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021718;, + 0.976831;0.021731;, + 0.186550;0.382338;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.178570;0.404936;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.976808;0.021859;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.178570;0.404949;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.081705;0.586605;, + 0.082024;0.640360;, + 0.083616;0.582528;, + 0.083616;0.582524;, + 0.081669;0.586745;, + 0.082024;0.595107;, + 0.083616;0.582530;, + 0.083616;0.582524;, + 0.187500;0.223505;, + 0.267815;0.177636;, + 0.187000;0.166775;, + 0.187500;0.223505;, + 0.187000;0.173798;, + 0.260407;0.177636;, + 0.149345;0.309203;, + 0.932877;0.072573;, + 0.134000;0.309203;, + 0.012391;0.309203;, + 0.150000;0.333850;, + 0.944172;0.081652;, + 0.134655;0.333850;, + 0.036224;0.333850;, + 0.944104;0.072573;, + 0.036080;0.309203;, + 0.179997;0.572433;, + 0.180010;0.572431;, + 0.178385;0.640360;, + 0.223123;0.571935;, + 0.163192;0.582575;, + 0.163192;0.582584;, + 0.166048;0.586672;, + 0.164847;0.640360;, + 0.157032;0.582529;, + 0.157032;0.582520;, + 0.126288;0.582528;, + 0.126343;0.586605;, + 0.125824;0.640360;, + 0.155927;0.640360;, + 0.157021;0.586605;, + 0.179972;0.572433;, + 0.180012;0.572439;, + 0.178385;0.595107;, + 0.189418;0.571935;, + 0.166048;0.586672;, + 0.164846;0.595107;, + 0.163192;0.582575;, + 0.163192;0.582587;, + 0.157032;0.582532;, + 0.157032;0.582520;, + 0.157014;0.586745;, + 0.155927;0.595107;, + 0.126324;0.586745;, + 0.125824;0.595107;, + 0.126288;0.582528;, + 0.187500;0.223504;, + 0.187000;0.166799;, + 0.187500;0.223497;, + 0.187000;0.173799;, + 0.260518;0.177636;, + 0.255000;0.173794;, + 0.254500;0.223545;, + 0.267926;0.177636;, + 0.254500;0.223545;, + 0.255000;0.166775;, + 0.256975;0.526919;, + 0.257000;0.466000;, + 0.354975;0.527475;, + 0.257000;0.446000;, + 0.335222;0.527475;, + 0.257198;0.526919;, + 0.354969;0.527475;, + 0.257000;0.466000;, + 0.062673;0.171389;, + 0.123628;0.174197;, + 0.123573;0.174197;, + 0.062673;0.153611;, + 0.040549;0.153611;, + 0.099649;0.174197;, + 0.040549;0.171389;, + 0.099705;0.174197;, + 0.270545;0.320182;, + 0.280385;0.318542;, + 0.241037;0.320182;, + 0.976858;0.021774;, + 0.976858;0.021754;, + 0.270545;0.362200;, + 0.280385;0.360561;, + 0.241037;0.362200;, + 0.976858;0.021761;, + 0.270545;0.379708;, + 0.296785;0.384628;, + 0.297409;0.384957;, + 0.298860;0.427511;, + 0.298860;0.398356;, + 0.976859;0.021765;, + 0.241037;0.379708;, + 0.291704;0.354200;, + 0.291626;0.353945;, + 0.976859;0.021761;, + 0.291704;0.318563;, + 0.291626;0.318654;, + 0.976859;0.021754;, + 0.976859;0.021774;, + 0.768148;0.107475;, + 0.255000;0.173798;, + 0.254500;0.223468;, + 0.759941;0.107475;, + 0.254500;0.223496;, + 0.255000;0.166799;, + 0.745439;0.090556;, + 0.736667;0.086111;, + 0.760385;0.107030;, + 0.760111;0.107155;, + 0.745556;0.081667;, + 0.760428;0.107343;, + 0.768028;0.107043;, + 0.736667;0.095000;, + 0.768593;0.107030;, + 0.759889;0.107155;, + 0.745556;0.099444;, + 0.767806;0.107043;, + 0.760206;0.107343;, + 0.754444;0.095000;, + 0.768123;0.107230;, + 0.768292;0.107041;, + 0.754444;0.086111;, + 0.759885;0.107141;, + 0.768345;0.107230;, + 0.317469;0.526919;, + 0.354975;0.527364;, + 0.317000;0.465985;, + 0.335222;0.527364;, + 0.317000;0.446000;, + 0.317691;0.526919;, + 0.317000;0.465955;, + 0.354969;0.527364;, + 0.356910;0.398384;, + 0.976862;0.021761;, + 0.356911;0.427576;, + 0.361011;0.366363;, + 0.361042;0.366416;, + 0.345901;0.427576;, + 0.345718;0.427511;, + 0.349473;0.384957;, + 0.345718;0.398356;, + 0.976861;0.021765;, + 0.345901;0.398384;, + 0.361490;0.318563;, + 0.355319;0.354200;, + 0.355564;0.354180;, + 0.976862;0.021754;, + 0.976862;0.021774;, + 0.305321;0.355683;, + 0.301464;0.369666;, + 0.301466;0.370190;, + 0.342793;0.369666;, + 0.305321;0.318563;, + 0.428474;0.427576;, + 0.435854;0.366363;, + 0.436245;0.366416;, + 0.428474;0.398384;, + 0.976865;0.021761;, + 0.446824;0.427576;, + 0.470350;0.348420;, + 0.455528;0.351583;, + 0.455865;0.350599;, + 0.446824;0.398384;, + 0.487806;0.348420;, + 0.976866;0.021759;, + 0.421864;0.306189;, + 0.427871;0.354200;, + 0.427885;0.354180;, + 0.487806;0.305599;, + 0.976866;0.021774;, + 0.976866;0.021751;, + 0.470350;0.305599;, + 0.455865;0.307346;, + 0.444892;0.306189;, + 0.444966;0.306476;, + 0.444892;0.341826;, + 0.444966;0.341115;, + 0.976865;0.021751;, + 0.976865;0.021774;, + 0.977044;0.020660;, + 0.069496;0.120769;, + 0.977118;0.021875;, + 0.012437;0.120825;, + 0.047090;0.120769;, + 0.977044;0.022066;, + 0.069496;0.093505;, + 0.977118;0.020469;, + 0.977141;0.022000;, + 0.016518;0.087040;, + 0.047090;0.093505;, + 0.012437;0.093561;, + 0.391459;0.048318;, + 0.556537;0.147086;, + 0.556327;0.185371;, + 0.802622;0.177608;, + 0.523953;0.193199;, + 0.802641;0.177464;, + 0.556327;0.193199;, + 0.808426;0.177464;, + 0.523953;0.185371;, + 0.525422;0.149144;, + 0.977044;0.022066;, + 0.047090;0.120769;, + 0.012437;0.120825;, + 0.977044;0.020660;, + 0.977118;0.021875;, + 0.069496;0.120769;, + 0.070051;0.092394;, + 0.977981;0.022000;, + 0.978386;0.020469;, + 0.047645;0.092394;, + 0.041008;0.093561;, + 0.978312;0.022066;, + 0.041008;0.120825;, + 0.047645;0.119658;, + 0.978312;0.020660;, + 0.978386;0.021875;, + 0.070051;0.119658;, + 0.036926;0.087040;, + 0.513845;0.107538;, + 0.624989;0.147086;, + 0.627550;0.185371;, + 0.981273;0.017225;, + 0.627550;0.193199;, + 0.981189;0.017225;, + 0.959048;0.472795;, + 0.978312;0.022066;, + 0.041008;0.120825;, + 0.047645;0.119658;, + 0.978386;0.021875;, + 0.070051;0.119658;, + 0.978312;0.020660;, + 0.012320;0.208577;, + 0.932877;0.040799;, + 0.149345;0.222939;, + 0.012372;0.195110;, + 0.134000;0.222939;, + 0.012391;0.222939;, + 0.036002;0.195269;, + 0.036080;0.222939;, + 0.944104;0.040799;, + 0.035950;0.208736;, + 0.976860;0.021777;, + 0.944104;0.046851;, + 0.976876;0.021732;, + 0.976860;0.021758;, + 0.036080;0.239370;, + 0.976869;0.021732;, + 0.134000;0.239370;, + 0.012391;0.239370;, + 0.149345;0.239370;, + 0.932877;0.046851;, + 0.932877;0.043825;, + 0.149345;0.231155;, + 0.944104;0.043825;, + 0.976876;0.021723;, + 0.976861;0.021745;, + 0.976869;0.021723;, + 0.036080;0.231155;, + 0.976861;0.021725;, + 0.134000;0.231155;, + 0.012391;0.231155;, + 0.241037;0.260656;, + 0.283754;0.199532;, + 0.270545;0.260656;, + 0.281983;0.258879;, + 0.282025;0.259016;, + 0.283754;0.230704;, + 0.298999;0.199532;, + 0.298999;0.230704;, + 0.298179;0.247924;, + 0.297409;0.247754;, + 0.291704;0.268942;, + 0.291626;0.270159;, + 0.361884;0.230704;, + 0.361064;0.246283;, + 0.361884;0.199532;, + 0.361490;0.259662;, + 0.361506;0.259643;, + 0.305321;0.259662;, + 0.305997;0.259643;, + 0.420957;0.230704;, + 0.470350;0.248506;, + 0.420819;0.247754;, + 0.420137;0.246283;, + 0.487806;0.248506;, + 0.420957;0.199532;, + 0.487806;0.280621;, + 0.455865;0.282116;, + 0.470350;0.280621;, + 0.455528;0.281128;, + 0.414254;0.259662;, + 0.413650;0.259643;, + 0.444892;0.287502;, + 0.444966;0.288312;, + 0.016518;0.060366;, + 0.016513;0.060375;, + 0.064097;0.059231;, + 0.012431;0.059298;, + 0.012437;0.059286;, + 0.012381;0.052598;, + 0.064652;0.058120;, + 0.040952;0.052598;, + 0.041008;0.059286;, + 0.041002;0.059298;, + 0.036926;0.060366;, + 0.036921;0.060375;, + 0.055508;0.799522;, + 0.055172;0.801413;, + 0.041032;0.799147;, + 0.041032;0.774293;, + 0.061024;0.774863;, + 0.046266;0.754438;, + 0.049668;0.774293;, + 0.046266;0.763075;, + 0.049668;0.799147;, + 0.055172;0.805506;, + 0.978132;0.020834;, + 0.143339;0.893176;, + 0.978132;0.020876;, + 0.143339;0.895832;, + 0.978023;0.021000;, + 0.123466;0.903802;, + 0.978023;0.021042;, + 0.123466;0.906459;, + 0.144531;0.841937;, + 0.144531;0.834740;, + 0.143339;0.872366;, + 0.120558;0.834740;, + 0.119390;0.874137;, + 0.120558;0.841937;, + 0.120558;0.834419;, + 0.119390;0.929483;, + 0.120558;0.842644;, + 0.144531;0.842644;, + 0.144531;0.834419;, + 0.143339;0.929483;, + 0.094847;0.733336;, + 0.095624;0.727406;, + 0.052957;0.727665;, + 0.062312;0.727406;, + 0.062312;0.727406;, + 0.061534;0.733336;, + 0.053159;0.667221;, + 0.095624;0.706678;, + 0.053159;0.700534;, + 0.062312;0.706678;, + 0.062312;0.706678;, + 0.052957;0.706937;, + 0.094103;0.723951;, + 0.066877;0.723951;, + 0.066877;0.710133;, + 0.094103;0.710133;, + 0.097992;0.977510;, + 0.098017;0.986461;, + 0.091536;0.944197;, + 0.978578;0.023576;, + 0.091536;0.944197;, + 0.979911;0.020133;, + 0.086421;0.951453;, + 0.079639;0.951881;, + 0.980081;0.020395;, + 0.090437;0.989766;, + 0.090749;0.973784;, + 0.079639;0.974521;, + 0.694760;0.788548;, + 0.694760;0.771873;, + 0.683241;0.789919;, + 0.683241;0.739164;, + 0.682954;0.683341;, + 0.713399;0.788548;, + 0.713399;0.771873;, + 0.713112;0.684300;, + 0.713399;0.718950;, + 0.713399;0.718950;, + 0.713112;0.684300;, + 0.713399;0.743062;, + 0.730511;0.978649;, + 0.976985;0.021629;, + 0.683241;0.813119;, + 0.682954;0.707912;, + 0.694760;0.813119;, + 0.713399;0.813119;, + 0.713112;0.707912;, + 0.977169;0.021629;, + 0.694760;0.788548;, + 0.694760;0.771873;, + 0.683241;0.739164;, + 0.682954;0.683341;, + 0.683241;0.789919;, + 0.713399;0.788548;, + 0.713399;0.771873;, + 0.713112;0.684300;, + 0.713399;0.718950;, + 0.713399;0.718950;, + 0.713112;0.684300;, + 0.730511;0.978649;, + 0.976985;0.021629;, + 0.730511;0.909761;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.727468;0.075033;, + 0.689675;0.089111;, + 0.733253;0.089000;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.727468;0.102968;, + 0.794045;0.784020;, + 0.976861;0.021721;, + 0.943549;0.783971;, + 0.730511;0.849484;, + 0.977001;0.021494;, + 0.340296;0.057351;, + 0.355333;0.081438;, + 0.329665;0.108348;, + 0.355333;0.105852;, + 0.355667;0.056747;, + 0.340296;0.084427;, + 0.355333;0.107673;, + 0.355333;0.082673;, + 0.672880;0.089111;, + 0.673214;0.074937;, + 0.672880;0.074825;, + 0.672880;0.103397;, + 0.672880;0.075937;, + 0.846557;0.784020;, + 0.943305;0.784093;, + 0.976880;0.021721;, + 0.977194;0.021494;, + 0.373111;0.081438;, + 0.373111;0.105852;, + 0.373444;0.056747;, + 0.373111;0.082673;, + 0.373111;0.107673;, + 0.689675;0.074825;, + 0.727468;0.075033;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.733253;0.089000;, + 0.689675;0.075937;, + 0.727468;0.102968;, + 0.689675;0.103397;, + 0.730511;0.849484;, + 0.977001;0.021494;, + 0.355333;0.081438;, + 0.340296;0.057351;, + 0.329665;0.108348;, + 0.355333;0.105852;, + 0.355667;0.056747;, + 0.340296;0.084427;, + 0.355333;0.082673;, + 0.355333;0.107673;, + 0.690705;0.630605;, + 0.976859;0.021750;, + 0.329665;0.033429;, + 0.355889;0.056747;, + 0.355333;0.058259;, + 0.976865;0.021750;, + 0.373111;0.058259;, + 0.373667;0.056747;, + 0.690705;0.630605;, + 0.976859;0.021750;, + 0.329665;0.033429;, + 0.355333;0.058259;, + 0.355889;0.056747;, + 0.977141;0.020800;, + 0.100000;0.093505;, + 0.100000;0.059231;, + 0.012381;0.015444;, + 0.100556;0.092394;, + 0.977981;0.020800;, + 0.100556;0.058120;, + 0.040952;0.015444;, + 0.056960;0.536178;, + 0.976864;0.021741;, + 0.048288;0.536195;, + 0.976877;0.021741;, + 0.061440;0.536165;, + 0.061440;0.536148;, + 0.976866;0.021741;, + 0.976866;0.021744;, + 0.061440;0.539509;, + 0.061440;0.539497;, + 0.056960;0.539482;, + 0.976877;0.021744;, + 0.976864;0.021744;, + 0.048288;0.539582;, + 0.056960;0.536187;, + 0.976864;0.021741;, + 0.007516;0.536195;, + 0.976863;0.021741;, + 0.061440;0.536148;, + 0.976866;0.021741;, + 0.061440;0.536175;, + 0.061440;0.539509;, + 0.061440;0.539531;, + 0.976866;0.021744;, + 0.056960;0.539537;, + 0.976864;0.021744;, + 0.976863;0.021744;, + 0.007516;0.539582;, + 0.976915;0.021593;, + 0.194067;0.361263;, + 0.976930;0.021593;, + 0.190892;0.353778;, + 0.198440;0.379835;, + 0.976933;0.021711;, + 0.219463;0.361263;, + 0.976852;0.021711;, + 0.219397;0.361263;, + 0.976852;0.021665;, + 0.231033;0.413585;, + 0.219397;0.353778;, + 0.219463;0.353778;, + 0.976933;0.021665;, + 0.231033;0.387217;, + 0.206765;0.353778;, + 0.214525;0.379835;, + 0.206765;0.361263;, + 0.231249;0.461585;, + 0.976852;0.021774;, + 0.219397;0.371556;, + 0.231249;0.435217;, + 0.219463;0.371556;, + 0.976933;0.021774;, + 0.214741;0.427835;, + 0.206765;0.371556;, + 0.198337;0.427835;, + 0.199146;0.371556;, + 0.976930;0.021593;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.186550;0.382365;, + 0.976887;0.021710;, + 0.976941;0.021651;, + 0.178570;0.382418;, + 0.176404;0.382494;, + 0.976887;0.021756;, + 0.186138;0.413602;, + 0.176177;0.404762;, + 0.178572;0.404842;, + 0.178574;0.404842;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.186550;0.382334;, + 0.976853;0.021731;, + 0.976986;0.021718;, + 0.178570;0.382379;, + 0.176404;0.382508;, + 0.976853;0.021747;, + 0.976872;0.021776;, + 0.176176;0.404762;, + 0.178570;0.404934;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.186550;0.382342;, + 0.976919;0.021730;, + 0.178570;0.382383;, + 0.176404;0.382505;, + 0.976919;0.021690;, + 0.976887;0.021767;, + 0.176178;0.404770;, + 0.178570;0.404955;, + 0.083984;0.539458;, + 0.976874;0.021744;, + 0.976856;0.021700;, + 0.083984;0.536070;, + 0.976874;0.021740;, + 0.976856;0.021681;, + 0.083735;0.539458;, + 0.976874;0.021744;, + 0.083735;0.536070;, + 0.976874;0.021740;, + 0.149444;0.168841;, + 0.032025;0.171556;, + 0.090307;0.140477;, + 0.167222;0.168841;, + 0.032025;0.153778;, + 0.090251;0.140477;, + 0.167222;0.154555;, + 0.086359;0.154444;, + 0.149444;0.154555;, + 0.086414;0.154444;, + 0.149444;0.140270;, + 0.090307;0.168412;, + 0.031858;0.171389;, + 0.031858;0.153611;, + 0.090251;0.168412;, + 0.167222;0.140270;, + 0.176074;0.525865;, + 0.176073;0.525855;, + 0.179991;0.521785;, + 0.223123;0.523861;, + 0.179992;0.521776;, + 0.176111;0.568592;, + 0.176089;0.568671;, + 0.176111;0.539458;, + 0.176089;0.539508;, + 0.976907;0.021744;, + 0.163320;0.539458;, + 0.976902;0.021744;, + 0.179954;0.539508;, + 0.976908;0.021744;, + 0.223123;0.540527;, + 0.976892;0.021758;, + 0.976907;0.021740;, + 0.176111;0.536070;, + 0.176089;0.536066;, + 0.976902;0.021740;, + 0.163320;0.536070;, + 0.179954;0.536066;, + 0.976908;0.021740;, + 0.976892;0.021754;, + 0.223123;0.537322;, + 0.157168;0.546233;, + 0.976900;0.021752;, + 0.131424;0.546233;, + 0.976891;0.021752;, + 0.976977;0.021737;, + 0.976900;0.021748;, + 0.157168;0.542845;, + 0.976891;0.021748;, + 0.131424;0.542845;, + 0.976977;0.021718;, + 0.126567;0.539458;, + 0.976965;0.021700;, + 0.976965;0.021681;, + 0.126567;0.536070;, + 0.179985;0.521776;, + 0.189418;0.523861;, + 0.179993;0.521762;, + 0.176064;0.525865;, + 0.176071;0.525880;, + 0.176097;0.568606;, + 0.176086;0.568648;, + 0.163071;0.539458;, + 0.976902;0.021744;, + 0.176086;0.539458;, + 0.176041;0.539524;, + 0.976907;0.021744;, + 0.976908;0.021744;, + 0.189418;0.540527;, + 0.976876;0.021758;, + 0.180012;0.539524;, + 0.976902;0.021740;, + 0.163071;0.536070;, + 0.176086;0.536070;, + 0.176041;0.536143;, + 0.976907;0.021740;, + 0.180012;0.536143;, + 0.976876;0.021754;, + 0.189418;0.537322;, + 0.976908;0.021741;, + 0.156919;0.546233;, + 0.976900;0.021752;, + 0.976891;0.021752;, + 0.131175;0.546233;, + 0.976914;0.021737;, + 0.976891;0.021748;, + 0.131175;0.542845;, + 0.976914;0.021718;, + 0.156919;0.542845;, + 0.976900;0.021748;, + 0.126318;0.539458;, + 0.976901;0.021700;, + 0.976889;0.021744;, + 0.976889;0.021740;, + 0.126318;0.536070;, + 0.976901;0.021681;, + 0.187000;0.166801;, + 0.187400;0.177905;, + 0.187400;0.177892;, + 0.187000;0.173800;, + 0.255000;0.173817;, + 0.260518;0.224141;, + 0.254700;0.177947;, + 0.255000;0.166807;, + 0.254700;0.177947;, + 0.267926;0.224141;, + 0.250926;0.517450;, + 0.354975;0.518005;, + 0.256975;0.476414;, + 0.354975;0.476970;, + 0.257000;0.466000;, + 0.354975;0.486439;, + 0.250926;0.485884;, + 0.335222;0.486439;, + 0.335222;0.518005;, + 0.335222;0.476970;, + 0.257000;0.445997;, + 0.251148;0.517450;, + 0.354969;0.518005;, + 0.251148;0.485884;, + 0.354969;0.486439;, + 0.257198;0.476414;, + 0.354969;0.476970;, + 0.257000;0.466000;, + 0.149444;0.168619;, + 0.133026;0.140477;, + 0.071531;0.171556;, + 0.149444;0.154333;, + 0.136919;0.154444;, + 0.167222;0.154333;, + 0.136864;0.154444;, + 0.071531;0.153778;, + 0.132971;0.140477;, + 0.167222;0.168619;, + 0.149444;0.140048;, + 0.071364;0.171389;, + 0.133026;0.168412;, + 0.167222;0.140048;, + 0.071364;0.153611;, + 0.132971;0.168412;, + 0.062840;0.153778;, + 0.123573;0.134691;, + 0.062840;0.171556;, + 0.123628;0.134691;, + 0.040716;0.171556;, + 0.099705;0.134691;, + 0.040716;0.153778;, + 0.099649;0.134691;, + 0.255000;0.173799;, + 0.767548;0.056470;, + 0.254700;0.177950;, + 0.255000;0.166801;, + 0.254700;0.177957;, + 0.760341;0.056570;, + 0.745278;0.081667;, + 0.760172;0.056313;, + 0.767572;0.056213;, + 0.736389;0.086111;, + 0.759855;0.056125;, + 0.760185;0.056325;, + 0.736389;0.095000;, + 0.767593;0.056025;, + 0.760033;0.056525;, + 0.745278;0.099444;, + 0.767750;0.056213;, + 0.759950;0.056313;, + 0.208814;0.320182;, + 0.976858;0.021766;, + 0.976859;0.021766;, + 0.241037;0.320182;, + 0.976858;0.021754;, + 0.976858;0.021774;, + 0.241037;0.362200;, + 0.976858;0.021761;, + 0.241037;0.379708;, + 0.298860;0.398356;, + 0.976859;0.021765;, + 0.976859;0.021761;, + 0.976859;0.021754;, + 0.976859;0.021774;, + 0.317469;0.476414;, + 0.317000;0.465965;, + 0.354975;0.476859;, + 0.323519;0.517449;, + 0.354975;0.517894;, + 0.323519;0.485884;, + 0.354975;0.486328;, + 0.317000;0.446000;, + 0.335222;0.476859;, + 0.335222;0.486328;, + 0.335222;0.517894;, + 0.317691;0.476414;, + 0.317000;0.465935;, + 0.354969;0.476859;, + 0.323741;0.485884;, + 0.354969;0.486328;, + 0.354969;0.517894;, + 0.323741;0.517449;, + 0.754167;0.095000;, + 0.767667;0.056401;, + 0.767492;0.056136;, + 0.754167;0.086111;, + 0.759685;0.056136;, + 0.767889;0.056401;, + 0.601948;0.046861;, + 0.976943;0.021610;, + 0.602138;0.072716;, + 0.976862;0.021610;, + 0.601995;0.072716;, + 0.601948;0.054907;, + 0.976943;0.021785;, + 0.601952;0.047634;, + 0.602138;0.091960;, + 0.601952;0.054583;, + 0.601995;0.091960;, + 0.976862;0.021785;, + 0.976862;0.021766;, + 0.356910;0.398384;, + 0.976862;0.021761;, + 0.345901;0.398384;, + 0.976861;0.021765;, + 0.345718;0.398356;, + 0.976862;0.021774;, + 0.976862;0.021754;, + 0.614541;0.046861;, + 0.614364;0.059108;, + 0.632351;0.046861;, + 0.631655;0.059108;, + 0.632351;0.054907;, + 0.631513;0.059108;, + 0.614541;0.054907;, + 0.614222;0.059108;, + 0.614545;0.047634;, + 0.614364;0.105567;, + 0.614545;0.054583;, + 0.614222;0.105567;, + 0.632355;0.054583;, + 0.631513;0.105567;, + 0.631655;0.105567;, + 0.632355;0.047634;, + 0.642504;0.054907;, + 0.641371;0.059108;, + 0.642504;0.046861;, + 0.641513;0.059108;, + 0.623009;0.082338;, + 0.622867;0.082338;, + 0.509253;0.305599;, + 0.976866;0.021766;, + 0.976865;0.021766;, + 0.428474;0.398384;, + 0.976865;0.021761;, + 0.446824;0.398384;, + 0.487806;0.348420;, + 0.976866;0.021759;, + 0.487806;0.305599;, + 0.976866;0.021751;, + 0.976866;0.021774;, + 0.976865;0.021751;, + 0.976865;0.021774;, + 0.977141;0.020800;, + 0.100000;0.093505;, + 0.976866;0.021771;, + 0.664403;0.047634;, + 0.662769;0.101237;, + 0.976858;0.021771;, + 0.662627;0.101237;, + 0.664403;0.054583;, + 0.976858;0.021745;, + 0.664398;0.054907;, + 0.662627;0.072716;, + 0.664398;0.046861;, + 0.662769;0.072716;, + 0.976866;0.021745;, + 0.643881;0.091960;, + 0.644948;0.047634;, + 0.976866;0.021763;, + 0.644948;0.047634;, + 0.643881;0.072716;, + 0.643739;0.072716;, + 0.643739;0.091960;, + 0.644948;0.054583;, + 0.976858;0.021763;, + 0.644948;0.054583;, + 0.977981;0.020800;, + 0.100556;0.092394;, + 0.208814;0.260656;, + 0.283754;0.161235;, + 0.298999;0.161235;, + 0.241037;0.260656;, + 0.283754;0.199532;, + 0.298999;0.199532;, + 0.361884;0.161235;, + 0.361884;0.199532;, + 0.420957;0.161235;, + 0.509253;0.248506;, + 0.509253;0.280621;, + 0.420957;0.199532;, + 0.487806;0.248506;, + 0.487806;0.280621;, + 0.100000;0.059231;, + 0.012381;0.015444;, + 0.100556;0.058120;, + 0.040952;0.015444;, + 0.525933;0.055547;, + 0.977200;0.020086;, + 0.525933;0.088970;, + 0.977200;0.021691;, + 0.112049;0.739555;, + 0.977650;0.021116;, + 0.107912;0.774863;, + 0.098954;0.754438;, + 0.977650;0.021611;, + 0.107912;0.799522;, + 0.108081;0.801413;, + 0.114706;0.723546;, + 0.977650;0.020891;, + 0.113989;0.678436;, + 0.977710;0.020825;, + 0.113989;0.682655;, + 0.977710;0.021611;, + 0.098954;0.763075;, + 0.108081;0.805506;, + 0.977408;0.020876;, + 0.977710;0.021957;, + 0.978355;0.020834;, + 0.183867;0.893176;, + 0.978355;0.020876;, + 0.183867;0.895832;, + 0.185102;0.841937;, + 0.185102;0.834740;, + 0.183867;0.872366;, + 0.185102;0.842644;, + 0.185102;0.834419;, + 0.183867;0.929483;, + 0.094847;0.743240;, + 0.095236;0.694759;, + 0.061534;0.743240;, + 0.011573;0.727665;, + 0.061923;0.694759;, + 0.095236;0.674031;, + 0.010595;0.667221;, + 0.061923;0.674031;, + 0.010595;0.700534;, + 0.011573;0.706937;, + 0.732037;0.771873;, + 0.752646;0.815263;, + 0.732037;0.792106;, + 0.745384;0.689022;, + 0.745670;0.746966;, + 0.756254;0.782280;, + 0.783144;0.959274;, + 0.796474;0.958596;, + 0.977029;0.021491;, + 0.732037;0.813119;, + 0.773659;0.815263;, + 0.745384;0.707912;, + 0.774089;0.782280;, + 0.821046;0.958596;, + 0.977169;0.021491;, + 0.732037;0.792106;, + 0.732037;0.771873;, + 0.752646;0.815263;, + 0.745670;0.746966;, + 0.756254;0.782280;, + 0.745384;0.689022;, + 0.796474;0.958596;, + 0.977029;0.021491;, + 0.783144;0.959274;, + 0.977179;0.021888;, + 0.875221;0.929347;, + 0.875226;0.929324;, + 0.978676;0.928821;, + 0.850649;0.929347;, + 0.850654;0.929324;, + 0.768789;0.901150;, + 0.798397;0.900318;, + 0.821046;0.900318;, + 0.977179;0.021888;, + 0.875226;0.929324;, + 0.875221;0.929347;, + 0.768789;0.901150;, + 0.798397;0.900318;, + 0.978676;0.928821;, + 0.850649;0.929347;, + 0.850654;0.929324;, + 0.977179;0.021556;, + 0.875226;0.866894;, + 0.888053;0.829159;, + 0.888053;0.849635;, + 0.978676;0.865984;, + 0.850654;0.866894;, + 0.768789;0.849484;, + 0.977001;0.021331;, + 0.798397;0.848516;, + 0.977194;0.021331;, + 0.821046;0.848516;, + 0.977179;0.021556;, + 0.888053;0.829159;, + 0.875226;0.866894;, + 0.768789;0.849484;, + 0.977001;0.021331;, + 0.798397;0.848516;, + 0.888053;0.849635;, + 0.978676;0.865984;, + 0.850654;0.866894;, + 0.711138;0.630605;, + 0.976859;0.021745;, + 0.731947;0.631618;, + 0.785081;0.704734;, + 0.968087;0.704061;, + 0.976865;0.021745;, + 0.758409;0.631618;, + 0.852822;0.704734;, + 0.967843;0.704183;, + 0.711138;0.630605;, + 0.976859;0.021745;, + 0.731947;0.631618;, + 0.464119;0.857811;, + 0.977922;0.019611;, + 0.481521;0.845698;, + 0.510688;0.845698;, + 0.486403;0.033711;, + 0.977782;0.020245;, + 0.979961;0.019611;, + 0.486403;0.107756;, + 0.977782;0.021604;, + 0.479421;0.992755;, + 0.447425;0.964429;, + 0.447130;0.971190;, + 0.447425;0.932359;, + 0.978215;0.022379;, + 0.978043;0.019009;, + 0.097140;0.444659;, + 0.972515;0.112669;, + 0.097196;0.430691;, + 0.096024;0.418061;, + 0.119679;0.444805;, + 0.151500;0.418061;, + 0.982745;0.112669;, + 0.119735;0.430837;, + 0.117609;0.418061;, + 0.135500;0.418061;, + 0.724760;0.577911;, + 0.731947;0.578171;, + 0.715679;0.559671;, + 0.731947;0.559671;, + 0.714579;0.526087;, + 0.758409;0.578171;, + 0.758409;0.559671;, + 0.714579;0.552549;, + 0.724760;0.577911;, + 0.731947;0.578171;, + 0.715679;0.559671;, + 0.731947;0.559671;, + 0.714579;0.526087;, + 0.977499;0.019428;, + 0.662365;0.498579;, + 0.676086;0.498336;, + 0.464119;0.833563;, + 0.481521;0.808872;, + 0.465483;0.825413;, + 0.977782;0.019429;, + 0.465483;0.806829;, + 0.510688;0.808872;, + 0.977759;0.019088;, + 0.479421;0.872712;, + 0.447425;0.883464;, + 0.978215;0.018687;, + 0.480373;0.096439;, + 0.835909;0.220903;, + 0.978103;0.021676;, + 0.835909;0.217521;, + 0.793123;0.111296;, + 0.818815;0.126731;, + 0.818815;0.114854;, + 0.818506;0.111551;, + 0.806177;0.111554;, + 0.818477;0.111554;, + 0.069496;0.093505;, + 0.977118;0.020469;, + 0.977141;0.022000;, + 0.016518;0.087040;, + 0.016518;0.060366;, + 0.016513;0.060375;, + 0.047090;0.093505;, + 0.012437;0.093561;, + 0.064097;0.059231;, + 0.012431;0.059298;, + 0.012437;0.059286;, + 0.012381;0.052598;, + 0.670927;0.382443;, + 0.658868;0.382686;, + 0.651163;0.438217;, + 0.676086;0.437973;, + 0.856740;0.220903;, + 0.978563;0.021676;, + 0.856740;0.217521;, + 0.070051;0.092394;, + 0.977981;0.022000;, + 0.978386;0.020469;, + 0.047645;0.092394;, + 0.041008;0.093561;, + 0.064652;0.058120;, + 0.040952;0.052598;, + 0.041008;0.059286;, + 0.041002;0.059298;, + 0.036926;0.087040;, + 0.036926;0.060366;, + 0.036921;0.060375;, + 0.083840;0.509236;, + 0.083840;0.509233;, + 0.083855;0.509239;, + 0.080510;0.504641;, + 0.082948;0.497871;, + 0.080480;0.504795;, + 0.048288;0.505028;, + 0.080480;0.504795;, + 0.082948;0.464938;, + 0.007516;0.505028;, + 0.080480;0.504793;, + 0.083840;0.509232;, + 0.083840;0.509222;, + 0.083840;0.509230;, + 0.187000;0.166807;, + 0.267815;0.224141;, + 0.187400;0.177905;, + 0.260407;0.224141;, + 0.187400;0.177905;, + 0.187000;0.173806;, + 0.972515;0.072573;, + 0.972515;0.081652;, + 0.096024;0.309203;, + 0.096024;0.333850;, + 0.982745;0.072573;, + 0.151500;0.309203;, + 0.982745;0.081652;, + 0.151500;0.333850;, + 0.117609;0.309203;, + 0.135500;0.309203;, + 0.117609;0.333850;, + 0.135500;0.333850;, + 0.166720;0.505346;, + 0.166720;0.505303;, + 0.223123;0.507837;, + 0.164252;0.497871;, + 0.163360;0.509056;, + 0.156752;0.504651;, + 0.155496;0.497871;, + 0.126960;0.504654;, + 0.125945;0.497871;, + 0.126505;0.509127;, + 0.126400;0.509152;, + 0.156976;0.508959;, + 0.156976;0.509006;, + 0.166720;0.505346;, + 0.189418;0.507837;, + 0.164252;0.464938;, + 0.163360;0.509056;, + 0.156752;0.504688;, + 0.155496;0.464938;, + 0.156976;0.508964;, + 0.156976;0.508959;, + 0.126400;0.509215;, + 0.126400;0.509152;, + 0.126960;0.504789;, + 0.125945;0.464938;, + 0.745394;0.090556;, + 0.270545;0.320182;, + 0.280385;0.318542;, + 0.270545;0.362200;, + 0.280385;0.360561;, + 0.270545;0.379708;, + 0.298860;0.427511;, + 0.297409;0.384957;, + 0.296785;0.384628;, + 0.291704;0.354200;, + 0.291626;0.353945;, + 0.291704;0.318563;, + 0.291626;0.318654;, + 0.356911;0.427576;, + 0.361011;0.366363;, + 0.361042;0.366416;, + 0.345901;0.427576;, + 0.345718;0.427511;, + 0.349473;0.384957;, + 0.361490;0.318563;, + 0.355319;0.354200;, + 0.355564;0.354180;, + 0.301464;0.369666;, + 0.301466;0.370190;, + 0.305321;0.355683;, + 0.342793;0.369666;, + 0.305321;0.318563;, + 0.428474;0.427576;, + 0.436245;0.366416;, + 0.435854;0.366363;, + 0.455528;0.351583;, + 0.455865;0.350599;, + 0.446824;0.427576;, + 0.470350;0.348420;, + 0.421864;0.306189;, + 0.427871;0.354200;, + 0.427885;0.354180;, + 0.470350;0.305599;, + 0.455865;0.307346;, + 0.444892;0.306189;, + 0.444966;0.306476;, + 0.444892;0.341826;, + 0.444966;0.341115;, + 0.835909;0.151790;, + 0.978103;0.020028;, + 0.835909;0.147563;, + 0.806054;0.037284;, + 0.818354;0.037284;, + 0.816593;0.026083;, + 0.818506;0.037251;, + 0.793123;0.037628;, + 0.816593;0.013880;, + 0.977044;0.022066;, + 0.047090;0.120769;, + 0.012437;0.120825;, + 0.977044;0.020660;, + 0.977118;0.021875;, + 0.069496;0.120769;, + 0.977141;0.022000;, + 0.069496;0.093505;, + 0.977118;0.020469;, + 0.016518;0.087040;, + 0.047090;0.093505;, + 0.012437;0.093561;, + 0.977044;0.020660;, + 0.069496;0.120769;, + 0.977118;0.021875;, + 0.012437;0.120825;, + 0.047090;0.120769;, + 0.977044;0.022066;, + 0.513845;0.044407;, + 0.856740;0.151790;, + 0.856740;0.147563;, + 0.978563;0.020028;, + 0.859301;0.400070;, + 0.859000;0.396004;, + 0.859000;0.396008;, + 0.859301;0.410331;, + 0.975690;0.024113;, + 0.873399;0.410331;, + 0.976407;0.024113;, + 0.873399;0.400070;, + 0.873466;0.396199;, + 0.863305;0.291435;, + 0.859200;0.327200;, + 0.863305;0.280722;, + 0.863800;0.390604;, + 0.863600;0.330400;, + 0.975690;0.020550;, + 0.978600;0.022376;, + 0.863800;0.334800;, + 0.863800;0.334805;, + 0.858768;0.334964;, + 0.070051;0.092394;, + 0.977981;0.022000;, + 0.978386;0.020469;, + 0.047645;0.092394;, + 0.041008;0.093561;, + 0.978312;0.022066;, + 0.041008;0.120825;, + 0.047645;0.119658;, + 0.978386;0.021875;, + 0.070051;0.119658;, + 0.978312;0.020660;, + 0.036926;0.087040;, + 0.978312;0.022066;, + 0.041008;0.120825;, + 0.047645;0.119658;, + 0.978312;0.020660;, + 0.978386;0.021875;, + 0.070051;0.119658;, + 0.976888;0.021758;, + 0.096024;0.239370;, + 0.976871;0.021721;, + 0.972515;0.046851;, + 0.976878;0.021721;, + 0.976888;0.021778;, + 0.095747;0.209137;, + 0.972515;0.040799;, + 0.095799;0.195670;, + 0.096024;0.222939;, + 0.117331;0.195815;, + 0.135500;0.222939;, + 0.117609;0.222939;, + 0.982745;0.040799;, + 0.151500;0.222939;, + 0.117279;0.209282;, + 0.982745;0.046851;, + 0.151500;0.239370;, + 0.117609;0.239370;, + 0.135500;0.239370;, + 0.972515;0.043825;, + 0.976889;0.021745;, + 0.976878;0.021710;, + 0.982745;0.043825;, + 0.151500;0.231155;, + 0.135500;0.231155;, + 0.117609;0.231155;, + 0.976871;0.021710;, + 0.096024;0.231155;, + 0.976889;0.021726;, + 0.283754;0.230704;, + 0.282025;0.259016;, + 0.270545;0.260656;, + 0.281983;0.258879;, + 0.298999;0.230704;, + 0.298179;0.247924;, + 0.297409;0.247754;, + 0.291704;0.268942;, + 0.291626;0.270159;, + 0.361064;0.246283;, + 0.361884;0.230704;, + 0.361490;0.259662;, + 0.361506;0.259643;, + 0.305321;0.259662;, + 0.305997;0.259643;, + 0.420957;0.230704;, + 0.470350;0.248506;, + 0.420137;0.246283;, + 0.420819;0.247754;, + 0.470350;0.280621;, + 0.455865;0.282116;, + 0.455528;0.281128;, + 0.414254;0.259662;, + 0.413650;0.259643;, + 0.444892;0.287502;, + 0.444966;0.288312;, + 0.016518;0.060366;, + 0.016513;0.060375;, + 0.064097;0.059231;, + 0.012431;0.059298;, + 0.012381;0.052598;, + 0.012437;0.059286;, + 0.146322;0.732423;, + 0.146322;0.766866;, + 0.146016;0.768382;, + 0.146863;0.801413;, + 0.146322;0.714883;, + 0.146626;0.678436;, + 0.132532;0.799522;, + 0.132939;0.801413;, + 0.146626;0.682655;, + 0.146016;0.769142;, + 0.978448;0.020876;, + 0.146863;0.805506;, + 0.978075;0.020876;, + 0.132939;0.805506;, + 0.978617;0.020834;, + 0.231518;0.893176;, + 0.978617;0.020876;, + 0.231518;0.895832;, + 0.232804;0.841937;, + 0.232804;0.834740;, + 0.231518;0.872366;, + 0.232804;0.842644;, + 0.232804;0.834419;, + 0.231518;0.929483;, + 0.183964;0.977510;, + 0.184482;0.986461;, + 0.183964;0.944197;, + 0.978578;0.018557;, + 0.147982;0.824798;, + 0.216679;0.814796;, + 0.064652;0.058120;, + 0.041008;0.059286;, + 0.041002;0.059298;, + 0.040952;0.052598;, + 0.036926;0.060366;, + 0.036921;0.060375;, + 0.463765;0.932537;, + 0.463765;0.932537;, + 0.479421;0.947429;, + 0.479421;0.947429;, + 0.479421;0.885961;, + 0.463765;0.887007;, + 0.830295;0.111366;, + 0.830238;0.111442;, + 0.841218;0.111366;, + 0.841241;0.111373;, + 0.841314;0.111442;, + 0.824024;0.108408;, + 0.824065;0.108391;, + 0.826483;0.114661;, + 0.826420;0.114626;, + 0.826483;0.126731;, + 0.843742;0.126731;, + 0.914073;0.111583;, + 0.896810;0.111583;, + 0.843742;0.114661;, + 0.843674;0.114607;, + 0.484986;0.048318;, + 0.860172;0.035810;, + 0.830283;0.035767;, + 0.830283;0.035763;, + 0.874515;0.073245;, + 0.874513;0.073311;, + 0.874515;0.043185;, + 0.874513;0.043157;, + 0.824065;0.039785;, + 0.824024;0.039738;, + 0.914073;0.072339;, + 0.896810;0.072339;, + 0.880635;0.073336;, + 0.914073;0.039635;, + 0.878714;0.013880;, + 0.878714;0.025890;, + 0.880635;0.041337;, + 0.880627;0.041351;, + 0.896810;0.039635;, + 0.862452;0.013880;, + 0.862452;0.025890;, + 0.864354;0.033144;, + 0.824507;0.013880;, + 0.824507;0.025890;, + 0.826409;0.033187;, + 0.874000;0.390598;, + 0.874000;0.390602;, + 0.977189;0.020514;, + 0.978600;0.020878;, + 0.885381;0.334233;, + 0.918247;0.169976;, + 0.918247;0.167944;, + 0.918025;0.131270;, + 0.918025;0.159841;, + 0.918247;0.168000;, + 0.918247;0.170032;, + 0.182508;0.766866;, + 0.208776;0.768315;, + 0.178079;0.768382;, + 0.191817;0.726879;, + 0.208776;0.727114;, + 0.193589;0.678436;, + 0.212995;0.768315;, + 0.182405;0.769142;, + 0.212995;0.722253;, + 0.198628;0.682655;, + 0.212995;0.722253;, + 0.198628;0.682655;, + 0.201590;0.811736;, + 0.217974;0.804906;, + 0.206868;0.780799;, + 0.217974;0.781483;, + 0.892228;0.291435;, + 0.891228;0.302435;, + 0.892228;0.280722;, + 0.892253;0.306969;, + 0.892222;0.307059;, + 0.936839;0.410331;, + 0.966333;0.367325;, + 0.979634;0.022435;, + 0.924808;0.367270;, + 0.955046;0.367325;, + 0.924796;0.367275;, + 0.936839;0.400070;, + 0.955046;0.332160;, + 0.942046;0.332160;, + 0.966333;0.332160;, + 0.966333;0.332160;, + 0.980710;0.020420;, + 0.978600;0.017357;, + 0.920741;0.363700;, + 0.920766;0.363703;, + 0.920780;0.363679;, + 0.936500;0.332500;, + 0.979993;0.020455;, + 0.978600;0.018074;, + 0.925926;0.333333;, + 0.686697;0.042090;, + 0.686383;0.041777;, + 0.711221;0.041841;, + 0.722178;0.040237;, + 0.711212;0.041930;, + 0.711058;0.017096;, + 0.710839;0.016926;, + 0.722178;0.019530;, + 0.686540;0.017172;, + 0.686540;0.017166;, + 0.943531;0.170051;, + 0.957753;0.175131;, + 0.968940;0.133152;, + 0.943531;0.167944;, + 0.943309;0.131325;, + 0.957531;0.135035;, + 0.966079;0.134702;, + 0.957753;0.173024;, + 0.943309;0.159786;, + 0.943531;0.168000;, + 0.957531;0.156076;, + 0.957753;0.173079;, + 0.966079;0.155887;, + 0.943531;0.170107;, + 0.957753;0.175186;, + 0.968940;0.157437;, + 0.966333;0.305786;, + 0.942926;0.280722;, + 0.942300;0.306196;, + 0.942300;0.306200;, + 0.955046;0.305786;, + 0.942926;0.291435;, + 0.937193;0.291435;, + 0.937193;0.302435;, + 0.937193;0.280722;, + 0.931623;0.307069;, + 0.931630;0.307059;, + 0.936303;0.309600;, + 0.713500;0.089000;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.699532;0.075033;, + 0.689675;0.089111;, + 0.693747;0.089000;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.699532;0.102968;, + 0.689675;0.090222;, + 0.713500;0.108753;, + 0.713500;0.089000;, + 0.672880;0.074825;, + 0.673214;0.103508;, + 0.672880;0.089111;, + 0.672880;0.104508;, + 0.672880;0.103397;, + 0.672880;0.090222;, + 0.690009;0.103508;, + 0.699532;0.075033;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.693747;0.089000;, + 0.689675;0.103397;, + 0.699532;0.102968;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.713500;0.108753;, + 0.690009;0.089222;, + 0.713500;0.069247;, + 0.673214;0.089222;, + 0.690009;0.089222;, + 0.713500;0.069247;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.727468;0.075033;, + 0.689675;0.089111;, + 0.733253;0.089000;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.727468;0.102968;, + 0.672880;0.089111;, + 0.673214;0.074937;, + 0.672880;0.074825;, + 0.672880;0.103397;, + 0.672880;0.075937;, + 0.689675;0.074825;, + 0.727468;0.075033;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.733253;0.089000;, + 0.689675;0.075937;, + 0.727468;0.102968;, + 0.689675;0.103397;, + 0.918247;0.169976;, + 0.918247;0.167944;, + 0.918025;0.131270;, + 0.918025;0.159841;, + 0.918247;0.168000;, + 0.918247;0.170032;, + 0.686697;0.042090;, + 0.686383;0.041777;, + 0.711221;0.041841;, + 0.722178;0.040237;, + 0.711212;0.041930;, + 0.711058;0.017096;, + 0.710839;0.016926;, + 0.722178;0.019530;, + 0.686540;0.017172;, + 0.686540;0.017166;, + 0.943531;0.170051;, + 0.957753;0.175131;, + 0.968940;0.133152;, + 0.943531;0.167944;, + 0.943309;0.131325;, + 0.957531;0.135035;, + 0.966079;0.134702;, + 0.957753;0.173024;, + 0.943309;0.159786;, + 0.943531;0.168000;, + 0.957531;0.156076;, + 0.957753;0.173079;, + 0.966079;0.155887;, + 0.943531;0.170107;, + 0.957753;0.175186;, + 0.968940;0.157437;, + 0.806177;0.111554;, + 0.818815;0.114854;, + 0.818477;0.111554;, + 0.818506;0.111551;, + 0.806054;0.037284;, + 0.816593;0.026083;, + 0.818506;0.037251;, + 0.818354;0.037284;, + 0.830295;0.111366;, + 0.830238;0.111442;, + 0.841218;0.111366;, + 0.841314;0.111442;, + 0.841241;0.111373;, + 0.824065;0.108391;, + 0.824024;0.108408;, + 0.826483;0.114661;, + 0.826420;0.114626;, + 0.843742;0.114661;, + 0.896810;0.111583;, + 0.843674;0.114607;, + 0.860172;0.035810;, + 0.830283;0.035767;, + 0.830283;0.035763;, + 0.874513;0.073311;, + 0.874515;0.073245;, + 0.874515;0.043185;, + 0.874513;0.043157;, + 0.824065;0.039785;, + 0.824024;0.039738;, + 0.896810;0.072339;, + 0.880635;0.073336;, + 0.896810;0.039635;, + 0.878714;0.025890;, + 0.880635;0.041337;, + 0.880627;0.041351;, + 0.862452;0.025890;, + 0.864354;0.033144;, + 0.824507;0.025890;, + 0.826409;0.033187;, + 0.977022;0.021746;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.976941;0.021762;, + 0.976866;0.021710;, + 0.186550;0.382365;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.976874;0.021757;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021718;, + 0.976831;0.021731;, + 0.186550;0.382338;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.178570;0.404936;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.976808;0.021859;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.178570;0.404949;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.186550;0.382365;, + 0.976887;0.021710;, + 0.976941;0.021651;, + 0.178570;0.382418;, + 0.176404;0.382494;, + 0.976887;0.021756;, + 0.186138;0.413602;, + 0.176177;0.404762;, + 0.178572;0.404842;, + 0.178574;0.404842;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.186550;0.382334;, + 0.976853;0.021731;, + 0.976986;0.021718;, + 0.178570;0.382379;, + 0.176404;0.382508;, + 0.976853;0.021747;, + 0.976872;0.021776;, + 0.176176;0.404762;, + 0.178570;0.404934;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.186550;0.382342;, + 0.976919;0.021730;, + 0.178570;0.382383;, + 0.176404;0.382505;, + 0.976919;0.021690;, + 0.976887;0.021767;, + 0.176178;0.404770;, + 0.178570;0.404955;, + 0.977022;0.021746;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.976941;0.021762;, + 0.976866;0.021710;, + 0.186550;0.382365;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.976874;0.021757;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021718;, + 0.976831;0.021731;, + 0.186550;0.382338;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.178570;0.404936;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.976808;0.021859;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.178570;0.404949;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.186550;0.382365;, + 0.976887;0.021710;, + 0.976941;0.021651;, + 0.178570;0.382418;, + 0.176404;0.382494;, + 0.976887;0.021756;, + 0.186138;0.413602;, + 0.176177;0.404762;, + 0.178572;0.404842;, + 0.178574;0.404842;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.186550;0.382334;, + 0.976853;0.021731;, + 0.976986;0.021718;, + 0.178570;0.382379;, + 0.176404;0.382508;, + 0.976853;0.021747;, + 0.976872;0.021776;, + 0.176176;0.404762;, + 0.178570;0.404934;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.186550;0.382342;, + 0.976919;0.021730;, + 0.178570;0.382383;, + 0.176404;0.382505;, + 0.976919;0.021690;, + 0.976887;0.021767;, + 0.176178;0.404770;, + 0.178570;0.404955;, + 0.977022;0.021746;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.976941;0.021762;, + 0.976866;0.021710;, + 0.186550;0.382365;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.976874;0.021757;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021718;, + 0.976831;0.021731;, + 0.186550;0.382338;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.178570;0.404936;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.976808;0.021859;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.178570;0.404949;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.186550;0.382365;, + 0.976887;0.021710;, + 0.976941;0.021651;, + 0.178570;0.382418;, + 0.176404;0.382494;, + 0.976887;0.021756;, + 0.186138;0.413602;, + 0.176177;0.404762;, + 0.178572;0.404842;, + 0.178574;0.404842;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.186550;0.382334;, + 0.976853;0.021731;, + 0.976986;0.021718;, + 0.178570;0.382379;, + 0.176404;0.382508;, + 0.976853;0.021747;, + 0.976872;0.021776;, + 0.176176;0.404762;, + 0.178570;0.404934;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.186550;0.382342;, + 0.976919;0.021730;, + 0.178570;0.382383;, + 0.176404;0.382505;, + 0.976919;0.021690;, + 0.976887;0.021767;, + 0.176178;0.404770;, + 0.178570;0.404955;, + 0.977022;0.021746;, + 0.186721;0.404557;, + 0.178658;0.406115;, + 0.976941;0.021762;, + 0.976866;0.021710;, + 0.186550;0.382365;, + 0.976866;0.021756;, + 0.178570;0.382418;, + 0.167968;0.382474;, + 0.976874;0.021757;, + 0.186721;0.404568;, + 0.976850;0.021747;, + 0.976874;0.021718;, + 0.976831;0.021731;, + 0.186550;0.382338;, + 0.976831;0.021747;, + 0.178570;0.382383;, + 0.167968;0.382533;, + 0.178570;0.404936;, + 0.976850;0.021776;, + 0.167965;0.404754;, + 0.976808;0.021859;, + 0.186721;0.404561;, + 0.976866;0.021727;, + 0.976808;0.021730;, + 0.186550;0.382334;, + 0.976808;0.021690;, + 0.178570;0.382372;, + 0.167968;0.382521;, + 0.178570;0.404949;, + 0.976866;0.021767;, + 0.167968;0.404757;, + 0.977022;0.021667;, + 0.186721;0.404557;, + 0.186741;0.406115;, + 0.186550;0.382365;, + 0.976887;0.021710;, + 0.976941;0.021651;, + 0.178570;0.382418;, + 0.176404;0.382494;, + 0.976887;0.021756;, + 0.186138;0.413602;, + 0.176177;0.404762;, + 0.178572;0.404842;, + 0.178574;0.404842;, + 0.179261;0.413602;, + 0.167968;0.404754;, + 0.976986;0.021757;, + 0.186721;0.404564;, + 0.976872;0.021747;, + 0.186550;0.382334;, + 0.976853;0.021731;, + 0.976986;0.021718;, + 0.178570;0.382379;, + 0.176404;0.382508;, + 0.976853;0.021747;, + 0.976872;0.021776;, + 0.176176;0.404762;, + 0.178570;0.404934;, + 0.976919;0.021859;, + 0.186721;0.404569;, + 0.976887;0.021727;, + 0.186550;0.382342;, + 0.976919;0.021730;, + 0.178570;0.382383;, + 0.176404;0.382505;, + 0.976919;0.021690;, + 0.976887;0.021767;, + 0.176178;0.404770;, + 0.178570;0.404955;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.672880;0.074825;, + 0.673214;0.103508;, + 0.672880;0.089111;, + 0.672880;0.104508;, + 0.672880;0.103397;, + 0.672880;0.090222;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.690009;0.089222;, + 0.673214;0.089222;, + 0.690009;0.089222;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.672880;0.089111;, + 0.673214;0.074937;, + 0.672880;0.074825;, + 0.672880;0.103397;, + 0.672880;0.075937;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.672880;0.074825;, + 0.673214;0.103508;, + 0.672880;0.089111;, + 0.672880;0.104508;, + 0.672880;0.103397;, + 0.672880;0.090222;, + 0.690009;0.103508;, + 0.689675;0.074825;, + 0.689675;0.089111;, + 0.689675;0.103397;, + 0.689675;0.104508;, + 0.689675;0.090222;, + 0.690009;0.089222;, + 0.673214;0.089222;, + 0.690009;0.089222;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.672880;0.089111;, + 0.673214;0.074937;, + 0.672880;0.074825;, + 0.672880;0.103397;, + 0.672880;0.075937;, + 0.689675;0.074825;, + 0.690009;0.074937;, + 0.689675;0.089111;, + 0.689675;0.075937;, + 0.689675;0.103397;, + 0.062673;0.171389;, + 0.123628;0.174197;, + 0.123573;0.174197;, + 0.062673;0.153611;, + 0.040549;0.153611;, + 0.099649;0.174197;, + 0.040549;0.171389;, + 0.099705;0.174197;, + 0.149444;0.168841;, + 0.032025;0.171556;, + 0.090307;0.140477;, + 0.167222;0.168841;, + 0.032025;0.153778;, + 0.090251;0.140477;, + 0.167222;0.154555;, + 0.086359;0.154444;, + 0.149444;0.154555;, + 0.086414;0.154444;, + 0.149444;0.140270;, + 0.090307;0.168412;, + 0.031858;0.171389;, + 0.031858;0.153611;, + 0.090251;0.168412;, + 0.167222;0.140270;, + 0.149444;0.168619;, + 0.133026;0.140477;, + 0.071531;0.171556;, + 0.149444;0.154333;, + 0.136919;0.154444;, + 0.167222;0.154333;, + 0.136864;0.154444;, + 0.071531;0.153778;, + 0.132971;0.140477;, + 0.167222;0.168619;, + 0.149444;0.140048;, + 0.071364;0.171389;, + 0.133026;0.168412;, + 0.167222;0.140048;, + 0.071364;0.153611;, + 0.132971;0.168412;, + 0.062840;0.153778;, + 0.123573;0.134691;, + 0.062840;0.171556;, + 0.123628;0.134691;, + 0.040716;0.171556;, + 0.099705;0.134691;, + 0.040716;0.153778;, + 0.099649;0.134691;, + 0.745439;0.090556;, + 0.736667;0.086111;, + 0.760385;0.107030;, + 0.760111;0.107155;, + 0.745556;0.081667;, + 0.760428;0.107343;, + 0.768028;0.107043;, + 0.736667;0.095000;, + 0.768593;0.107030;, + 0.759889;0.107155;, + 0.745556;0.099444;, + 0.767806;0.107043;, + 0.760206;0.107343;, + 0.754444;0.095000;, + 0.768123;0.107230;, + 0.768292;0.107041;, + 0.754444;0.086111;, + 0.759885;0.107141;, + 0.768345;0.107230;, + 0.745278;0.081667;, + 0.760172;0.056313;, + 0.767572;0.056213;, + 0.736389;0.086111;, + 0.759855;0.056125;, + 0.760185;0.056325;, + 0.736389;0.095000;, + 0.767593;0.056025;, + 0.760033;0.056525;, + 0.745278;0.099444;, + 0.767750;0.056213;, + 0.759950;0.056313;, + 0.754167;0.095000;, + 0.767667;0.056401;, + 0.767492;0.056136;, + 0.754167;0.086111;, + 0.759685;0.056136;, + 0.767889;0.056401;, + 0.745394;0.090556;, + 0.745439;0.090556;, + 0.736667;0.086111;, + 0.760385;0.107030;, + 0.760111;0.107155;, + 0.745556;0.081667;, + 0.760428;0.107343;, + 0.768028;0.107043;, + 0.736667;0.095000;, + 0.768593;0.107030;, + 0.759889;0.107155;, + 0.745556;0.099444;, + 0.767806;0.107043;, + 0.760206;0.107343;, + 0.754444;0.095000;, + 0.768123;0.107230;, + 0.768292;0.107041;, + 0.754444;0.086111;, + 0.759885;0.107141;, + 0.768345;0.107230;, + 0.745278;0.081667;, + 0.760172;0.056313;, + 0.767572;0.056213;, + 0.736389;0.086111;, + 0.759855;0.056125;, + 0.760185;0.056325;, + 0.736389;0.095000;, + 0.767593;0.056025;, + 0.760033;0.056525;, + 0.745278;0.099444;, + 0.767750;0.056213;, + 0.759950;0.056313;, + 0.754167;0.095000;, + 0.767667;0.056401;, + 0.767492;0.056136;, + 0.754167;0.086111;, + 0.759685;0.056136;, + 0.767889;0.056401;, + 0.745394;0.090556;, + 0.838013;0.644010;, + 0.806970;0.634953;, + 0.806582;0.610378;, + 0.806970;0.614451;, + 0.838679;0.622304;, + 0.817208;0.634953;, + 0.838013;0.636352;, + 0.822345;0.610041;, + 0.817208;0.614303;, + 0.817008;0.610276;, + 0.838556;0.622399;, + 0.838013;0.666985;, + 0.780555;0.634953;, + 0.822835;0.609487;, + 0.780463;0.610378;, + 0.780555;0.614451;, + 0.839581;0.540742;, + 0.806582;0.560659;, + 0.843483;0.559874;, + 0.817008;0.559987;, + 0.840253;0.551168;, + 0.843360;0.559970;, + 0.839581;0.514623;, + 0.780463;0.560659;, + 0.934292;0.644010;, + 0.957666;0.619028;, + 0.957666;0.611939;, + 0.957560;0.611580;, + 0.941966;0.614500;, + 0.949066;0.611580;, + 0.934760;0.622304;, + 0.949062;0.619028;, + 0.949066;0.618864;, + 0.934292;0.636352;, + 0.942099;0.614249;, + 0.983135;0.611939;, + 0.983041;0.611580;, + 0.935276;0.622399;, + 0.934292;0.666985;, + 0.983135;0.619028;, + 0.578467;0.104666;, + 0.578467;0.086889;, + 0.568063;0.070993;, + 0.957560;0.556434;, + 0.944827;0.540742;, + 0.944827;0.540742;, + 0.957560;0.556434;, + 0.941966;0.559874;, + 0.938323;0.551168;, + 0.949066;0.560596;, + 0.569556;0.104555;, + 0.569578;0.104666;, + 0.569578;0.086889;, + 0.571031;0.063828;, + 0.569556;0.086778;, + 0.578445;0.086778;, + 0.578197;0.060860;, + 0.578445;0.104555;, + 0.587356;0.104666;, + 0.569667;0.104555;, + 0.569667;0.086778;, + 0.571031;0.078159;, + 0.587356;0.086889;, + 0.578556;0.104555;, + 0.578556;0.086778;, + 0.578197;0.081127;, + 0.587556;0.104222;, + 0.587444;0.104555;, + 0.587444;0.086778;, + 0.587556;0.086444;, + 0.585362;0.078159;, + 0.578667;0.104222;, + 0.578667;0.086444;, + 0.588330;0.070993;, + 0.587333;0.104555;, + 0.569778;0.104222;, + 0.569778;0.086444;, + 0.587333;0.086778;, + 0.585362;0.063828;, + 0.578197;0.070993;, + 0.942099;0.559970;, + 0.983041;0.556434;, + 0.944827;0.514623;, + 0.578467;0.104666;, + 0.578467;0.086889;, + 0.568063;0.070993;, + 0.569556;0.104555;, + 0.569578;0.104666;, + 0.569578;0.086889;, + 0.571031;0.063828;, + 0.569556;0.086778;, + 0.578445;0.086778;, + 0.578197;0.060860;, + 0.578445;0.104555;, + 0.587356;0.104666;, + 0.569667;0.104555;, + 0.569667;0.086778;, + 0.571031;0.078159;, + 0.587356;0.086889;, + 0.578556;0.104555;, + 0.578556;0.086778;, + 0.578197;0.081127;, + 0.587556;0.104222;, + 0.587444;0.104555;, + 0.587444;0.086778;, + 0.587556;0.086444;, + 0.585362;0.078159;, + 0.578667;0.104222;, + 0.578667;0.086444;, + 0.588330;0.070993;, + 0.587333;0.104555;, + 0.569778;0.104222;, + 0.569778;0.086444;, + 0.587333;0.086778;, + 0.585362;0.063828;, + 0.578197;0.070993;, + 0.578467;0.104666;, + 0.578467;0.086889;, + 0.568063;0.070993;, + 0.569556;0.104555;, + 0.569578;0.104666;, + 0.569578;0.086889;, + 0.571031;0.063828;, + 0.569556;0.086778;, + 0.578445;0.086778;, + 0.578197;0.060860;, + 0.578445;0.104555;, + 0.587356;0.104666;, + 0.569667;0.104555;, + 0.569667;0.086778;, + 0.571031;0.078159;, + 0.587356;0.086889;, + 0.578556;0.104555;, + 0.578556;0.086778;, + 0.578197;0.081127;, + 0.587556;0.104222;, + 0.587444;0.104555;, + 0.587444;0.086778;, + 0.587556;0.086444;, + 0.585362;0.078159;, + 0.578667;0.104222;, + 0.578667;0.086444;, + 0.588330;0.070993;, + 0.587333;0.104555;, + 0.569778;0.104222;, + 0.569778;0.086444;, + 0.587333;0.086778;, + 0.585362;0.063828;, + 0.578197;0.070993;, + 0.838013;0.644010;, + 0.806970;0.634953;, + 0.806582;0.610378;, + 0.806970;0.614451;, + 0.838679;0.622304;, + 0.817208;0.634953;, + 0.838013;0.636352;, + 0.822345;0.610041;, + 0.817208;0.614303;, + 0.817008;0.610276;, + 0.838556;0.622399;, + 0.838013;0.666985;, + 0.780555;0.634953;, + 0.822835;0.609487;, + 0.780463;0.610378;, + 0.780555;0.614451;, + 0.839581;0.540742;, + 0.806582;0.560659;, + 0.843483;0.559874;, + 0.817008;0.559987;, + 0.840253;0.551168;, + 0.843360;0.559970;, + 0.839581;0.514623;, + 0.780463;0.560659;, + 0.934292;0.644010;, + 0.957666;0.619028;, + 0.957666;0.611939;, + 0.957560;0.611580;, + 0.941966;0.614500;, + 0.949066;0.611580;, + 0.934760;0.622304;, + 0.949062;0.619028;, + 0.949066;0.618864;, + 0.934292;0.636352;, + 0.942099;0.614249;, + 0.983135;0.611939;, + 0.983041;0.611580;, + 0.935276;0.622399;, + 0.934292;0.666985;, + 0.983135;0.619028;, + 0.578467;0.104666;, + 0.578467;0.086889;, + 0.568063;0.070993;, + 0.957560;0.556434;, + 0.944827;0.540742;, + 0.944827;0.540742;, + 0.957560;0.556434;, + 0.941966;0.559874;, + 0.938323;0.551168;, + 0.949066;0.560596;, + 0.569556;0.104555;, + 0.569578;0.104666;, + 0.569556;0.086778;, + 0.569578;0.086889;, + 0.571031;0.063828;, + 0.578445;0.086778;, + 0.578197;0.060860;, + 0.578445;0.104555;, + 0.587356;0.104666;, + 0.569667;0.104555;, + 0.587356;0.086889;, + 0.569667;0.086778;, + 0.571031;0.078159;, + 0.578556;0.104555;, + 0.578556;0.086778;, + 0.578197;0.081127;, + 0.587444;0.104555;, + 0.587556;0.104222;, + 0.587444;0.086778;, + 0.585362;0.078159;, + 0.587556;0.086444;, + 0.578667;0.104222;, + 0.578667;0.086444;, + 0.588330;0.070993;, + 0.569778;0.104222;, + 0.587333;0.104555;, + 0.569778;0.086444;, + 0.585362;0.063828;, + 0.587333;0.086778;, + 0.578197;0.070993;, + 0.942099;0.559970;, + 0.983041;0.556434;, + 0.944827;0.514623;, + 0.578467;0.104666;, + 0.578467;0.086889;, + 0.568063;0.070993;, + 0.569556;0.104555;, + 0.569578;0.104666;, + 0.569556;0.086778;, + 0.569578;0.086889;, + 0.571031;0.063828;, + 0.578445;0.086778;, + 0.578197;0.060860;, + 0.578445;0.104555;, + 0.587356;0.104666;, + 0.569667;0.104555;, + 0.587356;0.086889;, + 0.569667;0.086778;, + 0.571031;0.078159;, + 0.578556;0.104555;, + 0.578556;0.086778;, + 0.578197;0.081127;, + 0.587444;0.104555;, + 0.587556;0.104222;, + 0.587444;0.086778;, + 0.585362;0.078159;, + 0.587556;0.086444;, + 0.578667;0.104222;, + 0.578667;0.086444;, + 0.588330;0.070993;, + 0.569778;0.104222;, + 0.587333;0.104555;, + 0.569778;0.086444;, + 0.585362;0.063828;, + 0.587333;0.086778;, + 0.578197;0.070993;, + 0.578467;0.104666;, + 0.578467;0.086889;, + 0.568063;0.070993;, + 0.569556;0.104555;, + 0.569578;0.104666;, + 0.569556;0.086778;, + 0.569578;0.086889;, + 0.571031;0.063828;, + 0.578445;0.086778;, + 0.578197;0.060860;, + 0.578445;0.104555;, + 0.587356;0.104666;, + 0.569667;0.104555;, + 0.587356;0.086889;, + 0.569667;0.086778;, + 0.571031;0.078159;, + 0.578556;0.104555;, + 0.578556;0.086778;, + 0.578197;0.081127;, + 0.587444;0.104555;, + 0.587556;0.104222;, + 0.587444;0.086778;, + 0.585362;0.078159;, + 0.587556;0.086444;, + 0.578667;0.104222;, + 0.578667;0.086444;, + 0.588330;0.070993;, + 0.569778;0.104222;, + 0.587333;0.104555;, + 0.569778;0.086444;, + 0.585362;0.063828;, + 0.587333;0.086778;, + 0.578197;0.070993;, + 0.979667;0.022376;, + 0.863305;0.258475;, + 0.977710;0.021115;, + 0.977948;0.021115;, + 0.977710;0.021115;, + 0.979667;0.020878;, + 0.979667;0.018074;, + 0.986086;0.332160;, + 0.979667;0.017357;, + 0.892228;0.258475;, + 0.937193;0.258475;, + 0.942926;0.258475;, + 0.986086;0.305786;; + } + + VertexDuplicationIndices { + 6202; + 6201; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 48, + 50, + 50, + 50, + 53, + 54, + 54, + 56, + 56, + 58, + 58, + 58, + 61, + 61, + 63, + 63, + 65, + 65, + 65, + 68, + 69, + 69, + 71, + 72, + 72, + 72, + 72, + 76, + 76, + 76, + 76, + 80, + 80, + 82, + 82, + 84, + 84, + 86, + 86, + 86, + 89, + 90, + 90, + 92, + 92, + 94, + 94, + 96, + 97, + 97, + 99, + 100, + 100, + 102, + 102, + 104, + 105, + 105, + 107, + 107, + 107, + 110, + 110, + 112, + 112, + 114, + 114, + 116, + 116, + 118, + 119, + 120, + 120, + 120, + 123, + 123, + 125, + 125, + 127, + 127, + 129, + 129, + 129, + 132, + 132, + 134, + 134, + 134, + 137, + 137, + 137, + 137, + 141, + 141, + 141, + 144, + 144, + 146, + 146, + 146, + 149, + 149, + 151, + 151, + 151, + 154, + 154, + 156, + 157, + 157, + 159, + 159, + 161, + 161, + 163, + 163, + 163, + 166, + 166, + 166, + 169, + 169, + 169, + 172, + 172, + 174, + 174, + 176, + 176, + 178, + 178, + 180, + 180, + 180, + 180, + 184, + 184, + 184, + 187, + 187, + 189, + 189, + 189, + 192, + 193, + 193, + 195, + 195, + 195, + 198, + 198, + 198, + 201, + 202, + 202, + 204, + 205, + 205, + 205, + 205, + 209, + 209, + 211, + 211, + 211, + 214, + 214, + 214, + 214, + 218, + 218, + 220, + 220, + 222, + 223, + 223, + 223, + 223, + 227, + 227, + 229, + 229, + 231, + 231, + 233, + 234, + 235, + 235, + 237, + 238, + 239, + 239, + 241, + 242, + 243, + 244, + 245, + 245, + 245, + 248, + 248, + 248, + 248, + 252, + 253, + 253, + 255, + 255, + 257, + 258, + 258, + 260, + 261, + 262, + 262, + 262, + 265, + 265, + 265, + 268, + 268, + 268, + 271, + 272, + 272, + 274, + 274, + 276, + 276, + 278, + 278, + 280, + 280, + 282, + 282, + 284, + 284, + 284, + 287, + 287, + 287, + 290, + 290, + 290, + 293, + 293, + 295, + 295, + 295, + 298, + 298, + 298, + 301, + 301, + 301, + 304, + 305, + 305, + 307, + 307, + 309, + 309, + 309, + 312, + 312, + 312, + 315, + 315, + 315, + 318, + 318, + 318, + 318, + 322, + 322, + 324, + 324, + 324, + 327, + 327, + 327, + 330, + 330, + 332, + 332, + 334, + 334, + 336, + 336, + 338, + 338, + 340, + 340, + 342, + 342, + 342, + 342, + 346, + 346, + 348, + 348, + 348, + 351, + 351, + 353, + 353, + 355, + 355, + 355, + 358, + 358, + 358, + 361, + 361, + 363, + 363, + 365, + 365, + 367, + 367, + 369, + 369, + 371, + 371, + 373, + 374, + 375, + 376, + 376, + 376, + 379, + 379, + 381, + 381, + 383, + 383, + 385, + 385, + 385, + 385, + 389, + 389, + 391, + 391, + 391, + 394, + 394, + 394, + 394, + 398, + 398, + 400, + 401, + 402, + 402, + 404, + 404, + 404, + 407, + 407, + 409, + 409, + 411, + 412, + 413, + 413, + 415, + 415, + 415, + 418, + 418, + 420, + 420, + 422, + 422, + 422, + 425, + 426, + 426, + 428, + 428, + 428, + 431, + 431, + 431, + 434, + 434, + 436, + 436, + 436, + 439, + 439, + 439, + 442, + 442, + 444, + 445, + 446, + 447, + 448, + 448, + 450, + 450, + 452, + 452, + 454, + 454, + 454, + 457, + 457, + 459, + 459, + 461, + 462, + 463, + 463, + 465, + 465, + 465, + 468, + 468, + 470, + 470, + 472, + 472, + 474, + 474, + 476, + 476, + 478, + 479, + 479, + 481, + 481, + 481, + 481, + 485, + 485, + 485, + 485, + 489, + 489, + 491, + 491, + 493, + 493, + 495, + 496, + 497, + 497, + 497, + 500, + 500, + 502, + 502, + 504, + 505, + 506, + 506, + 508, + 508, + 510, + 510, + 510, + 513, + 514, + 515, + 515, + 517, + 518, + 519, + 519, + 521, + 521, + 521, + 524, + 524, + 524, + 527, + 528, + 529, + 530, + 530, + 532, + 532, + 532, + 535, + 535, + 535, + 538, + 538, + 540, + 541, + 541, + 543, + 543, + 545, + 546, + 546, + 548, + 548, + 550, + 550, + 550, + 553, + 553, + 553, + 556, + 556, + 558, + 558, + 560, + 561, + 561, + 561, + 564, + 564, + 564, + 567, + 567, + 567, + 570, + 571, + 571, + 573, + 573, + 575, + 576, + 576, + 576, + 579, + 579, + 579, + 582, + 582, + 584, + 584, + 584, + 587, + 587, + 589, + 589, + 589, + 592, + 592, + 594, + 594, + 594, + 597, + 597, + 599, + 600, + 600, + 600, + 603, + 603, + 603, + 603, + 607, + 607, + 609, + 609, + 609, + 612, + 612, + 612, + 615, + 615, + 615, + 618, + 618, + 618, + 621, + 621, + 623, + 623, + 623, + 626, + 626, + 626, + 629, + 629, + 629, + 632, + 632, + 632, + 635, + 635, + 635, + 638, + 638, + 638, + 641, + 641, + 643, + 644, + 644, + 646, + 647, + 647, + 647, + 650, + 650, + 652, + 652, + 654, + 654, + 656, + 656, + 658, + 659, + 659, + 661, + 661, + 661, + 664, + 664, + 666, + 666, + 666, + 669, + 669, + 671, + 671, + 671, + 671, + 675, + 675, + 677, + 677, + 677, + 680, + 680, + 680, + 683, + 683, + 683, + 686, + 686, + 686, + 689, + 689, + 691, + 691, + 691, + 694, + 694, + 694, + 697, + 697, + 697, + 700, + 700, + 700, + 703, + 703, + 703, + 706, + 706, + 706, + 709, + 709, + 711, + 711, + 713, + 713, + 715, + 715, + 715, + 718, + 719, + 720, + 720, + 722, + 722, + 724, + 724, + 726, + 726, + 726, + 729, + 729, + 729, + 732, + 732, + 732, + 735, + 736, + 737, + 737, + 739, + 740, + 741, + 741, + 743, + 743, + 743, + 746, + 747, + 747, + 747, + 750, + 750, + 750, + 753, + 753, + 755, + 756, + 756, + 758, + 758, + 758, + 758, + 762, + 762, + 764, + 764, + 766, + 767, + 767, + 767, + 770, + 770, + 770, + 770, + 774, + 774, + 774, + 777, + 777, + 779, + 779, + 781, + 781, + 781, + 784, + 784, + 784, + 784, + 788, + 788, + 790, + 791, + 791, + 793, + 793, + 793, + 796, + 796, + 796, + 796, + 800, + 800, + 800, + 800, + 804, + 804, + 804, + 807, + 807, + 807, + 810, + 810, + 812, + 812, + 814, + 814, + 816, + 816, + 816, + 819, + 820, + 820, + 820, + 823, + 823, + 823, + 826, + 826, + 826, + 829, + 829, + 829, + 832, + 832, + 832, + 835, + 835, + 835, + 838, + 838, + 838, + 841, + 841, + 841, + 844, + 844, + 846, + 846, + 846, + 849, + 849, + 849, + 852, + 852, + 854, + 854, + 856, + 856, + 858, + 858, + 860, + 860, + 860, + 863, + 863, + 863, + 866, + 866, + 868, + 868, + 870, + 870, + 872, + 872, + 874, + 875, + 876, + 876, + 876, + 876, + 880, + 880, + 882, + 882, + 884, + 884, + 886, + 887, + 887, + 889, + 889, + 891, + 891, + 891, + 891, + 895, + 895, + 897, + 897, + 899, + 899, + 901, + 901, + 903, + 903, + 905, + 906, + 906, + 908, + 908, + 910, + 910, + 910, + 913, + 913, + 913, + 916, + 916, + 916, + 919, + 919, + 921, + 921, + 921, + 924, + 924, + 926, + 926, + 928, + 928, + 930, + 930, + 932, + 932, + 934, + 934, + 934, + 937, + 937, + 939, + 939, + 941, + 941, + 941, + 941, + 945, + 945, + 945, + 948, + 948, + 950, + 951, + 951, + 953, + 953, + 955, + 955, + 955, + 958, + 958, + 958, + 961, + 962, + 962, + 962, + 965, + 965, + 965, + 968, + 968, + 968, + 971, + 971, + 971, + 974, + 974, + 974, + 977, + 977, + 977, + 980, + 980, + 980, + 983, + 983, + 985, + 985, + 985, + 988, + 988, + 990, + 990, + 990, + 993, + 993, + 993, + 996, + 996, + 996, + 999, + 1000, + 1000, + 1002, + 1002, + 1004, + 1005, + 1005, + 1007, + 1008, + 1009, + 1009, + 1009, + 1012, + 1012, + 1014, + 1014, + 1014, + 1014, + 1018, + 1018, + 1018, + 1021, + 1022, + 1022, + 1024, + 1024, + 1024, + 1027, + 1027, + 1029, + 1029, + 1031, + 1031, + 1033, + 1033, + 1035, + 1035, + 1035, + 1038, + 1038, + 1038, + 1041, + 1041, + 1041, + 1044, + 1045, + 1045, + 1047, + 1048, + 1048, + 1050, + 1050, + 1050, + 1053, + 1054, + 1054, + 1054, + 1057, + 1057, + 1057, + 1060, + 1060, + 1060, + 1063, + 1063, + 1063, + 1066, + 1066, + 1068, + 1068, + 1068, + 1071, + 1071, + 1071, + 1074, + 1075, + 1076, + 1076, + 1076, + 1079, + 1079, + 1081, + 1082, + 1083, + 1083, + 1083, + 1086, + 1086, + 1086, + 1089, + 1089, + 1089, + 1092, + 1092, + 1092, + 1095, + 1095, + 1097, + 1097, + 1099, + 1099, + 1099, + 1102, + 1102, + 1102, + 1105, + 1105, + 1107, + 1107, + 1109, + 1109, + 1111, + 1111, + 1111, + 1114, + 1114, + 1114, + 1117, + 1117, + 1119, + 1119, + 1121, + 1121, + 1121, + 1121, + 1125, + 1126, + 1126, + 1126, + 1129, + 1129, + 1131, + 1131, + 1133, + 1134, + 1134, + 1136, + 1136, + 1138, + 1138, + 1138, + 1138, + 1142, + 1142, + 1144, + 1145, + 1145, + 1145, + 1148, + 1148, + 1150, + 1150, + 1152, + 1152, + 1154, + 1154, + 1154, + 1154, + 1158, + 1158, + 1158, + 1158, + 1162, + 1162, + 1164, + 1164, + 1164, + 1167, + 1167, + 1167, + 1170, + 1170, + 1172, + 1172, + 1174, + 1174, + 1176, + 1176, + 1178, + 1178, + 1180, + 1180, + 1182, + 1183, + 1184, + 1184, + 1186, + 1186, + 1188, + 1189, + 1190, + 1190, + 1192, + 1193, + 1194, + 1194, + 1196, + 1197, + 1198, + 1198, + 1200, + 1200, + 1200, + 1200, + 1204, + 1204, + 1206, + 1206, + 1206, + 1206, + 1210, + 1211, + 1212, + 1213, + 1214, + 1214, + 1216, + 1216, + 1216, + 1216, + 1220, + 1220, + 1220, + 1223, + 1223, + 1223, + 1226, + 1226, + 1228, + 1228, + 1230, + 1230, + 1232, + 1233, + 1233, + 1235, + 1235, + 1235, + 1238, + 1238, + 1240, + 1240, + 1240, + 1240, + 1244, + 1245, + 1245, + 1247, + 1247, + 1249, + 1250, + 1251, + 1252, + 1253, + 1253, + 1255, + 1255, + 1255, + 1258, + 1258, + 1260, + 1260, + 1260, + 1260, + 1264, + 1264, + 1266, + 1267, + 1267, + 1267, + 1270, + 1270, + 1272, + 1272, + 1272, + 1275, + 1275, + 1275, + 1278, + 1278, + 1280, + 1280, + 1282, + 1282, + 1282, + 1285, + 1285, + 1285, + 1288, + 1289, + 1289, + 1291, + 1291, + 1293, + 1293, + 1293, + 1296, + 1297, + 1298, + 1298, + 1300, + 1300, + 1302, + 1302, + 1302, + 1305, + 1305, + 1307, + 1307, + 1307, + 1310, + 1310, + 1312, + 1312, + 1314, + 1314, + 1314, + 1317, + 1317, + 1317, + 1320, + 1320, + 1322, + 1322, + 1322, + 1325, + 1326, + 1326, + 1328, + 1328, + 1330, + 1330, + 1330, + 1333, + 1333, + 1335, + 1335, + 1337, + 1337, + 1339, + 1339, + 1341, + 1341, + 1341, + 1341, + 1345, + 1345, + 1345, + 1348, + 1348, + 1348, + 1351, + 1351, + 1351, + 1351, + 1355, + 1355, + 1355, + 1355, + 1359, + 1359, + 1359, + 1362, + 1362, + 1362, + 1365, + 1365, + 1365, + 1365, + 1369, + 1369, + 1371, + 1371, + 1371, + 1374, + 1374, + 1376, + 1376, + 1378, + 1378, + 1378, + 1381, + 1381, + 1381, + 1384, + 1384, + 1386, + 1387, + 1387, + 1387, + 1390, + 1390, + 1390, + 1393, + 1393, + 1395, + 1395, + 1395, + 1398, + 1398, + 1398, + 1401, + 1401, + 1401, + 1404, + 1404, + 1404, + 1407, + 1407, + 1407, + 1410, + 1410, + 1410, + 1413, + 1413, + 1413, + 1416, + 1416, + 1416, + 1419, + 1419, + 1419, + 1422, + 1422, + 1422, + 1425, + 1425, + 1425, + 1428, + 1428, + 1430, + 1430, + 1430, + 1433, + 1433, + 1433, + 1436, + 1436, + 1436, + 1439, + 1439, + 1439, + 1442, + 1442, + 1444, + 1444, + 1446, + 1446, + 1446, + 1449, + 1449, + 1449, + 1452, + 1452, + 1454, + 1454, + 1456, + 1456, + 1456, + 1459, + 1459, + 1459, + 1462, + 1462, + 1464, + 1464, + 1464, + 1467, + 1467, + 1469, + 1469, + 1469, + 1472, + 1472, + 1474, + 1474, + 1474, + 1474, + 1478, + 1478, + 1478, + 1481, + 1481, + 1483, + 1483, + 1483, + 1483, + 1487, + 1487, + 1489, + 1489, + 1489, + 1492, + 1492, + 1494, + 1494, + 1494, + 1497, + 1497, + 1499, + 1499, + 1501, + 1501, + 1501, + 1504, + 1504, + 1506, + 1506, + 1508, + 1508, + 1510, + 1510, + 1510, + 1513, + 1513, + 1513, + 1513, + 1517, + 1517, + 1519, + 1519, + 1519, + 1522, + 1522, + 1522, + 1522, + 1526, + 1526, + 1528, + 1528, + 1528, + 1531, + 1531, + 1531, + 1534, + 1534, + 1536, + 1536, + 1536, + 1539, + 1539, + 1539, + 1542, + 1542, + 1544, + 1544, + 1546, + 1546, + 1546, + 1549, + 1549, + 1549, + 1552, + 1552, + 1554, + 1554, + 1554, + 1557, + 1557, + 1559, + 1560, + 1561, + 1561, + 1563, + 1563, + 1565, + 1565, + 1567, + 1567, + 1567, + 1570, + 1570, + 1570, + 1573, + 1573, + 1575, + 1575, + 1577, + 1577, + 1577, + 1580, + 1580, + 1580, + 1583, + 1583, + 1583, + 1586, + 1586, + 1588, + 1588, + 1590, + 1590, + 1592, + 1592, + 1594, + 1594, + 1594, + 1597, + 1597, + 1597, + 1600, + 1600, + 1600, + 1603, + 1603, + 1603, + 1606, + 1606, + 1606, + 1609, + 1609, + 1609, + 1612, + 1612, + 1614, + 1615, + 1615, + 1615, + 1618, + 1618, + 1620, + 1620, + 1620, + 1623, + 1624, + 1624, + 1626, + 1626, + 1626, + 1629, + 1629, + 1631, + 1631, + 1633, + 1633, + 1635, + 1636, + 1637, + 1637, + 1637, + 1640, + 1640, + 1642, + 1642, + 1644, + 1644, + 1644, + 1647, + 1647, + 1647, + 1650, + 1650, + 1650, + 1653, + 1653, + 1653, + 1656, + 1656, + 1656, + 1659, + 1659, + 1659, + 1662, + 1663, + 1663, + 1665, + 1665, + 1665, + 1668, + 1668, + 1670, + 1670, + 1672, + 1672, + 1674, + 1674, + 1676, + 1676, + 1678, + 1678, + 1680, + 1680, + 1682, + 1682, + 1684, + 1684, + 1686, + 1686, + 1688, + 1688, + 1690, + 1691, + 1692, + 1692, + 1694, + 1695, + 1695, + 1697, + 1697, + 1697, + 1700, + 1700, + 1700, + 1703, + 1703, + 1705, + 1705, + 1707, + 1707, + 1707, + 1710, + 1710, + 1710, + 1713, + 1713, + 1713, + 1716, + 1716, + 1716, + 1719, + 1719, + 1719, + 1719, + 1723, + 1724, + 1725, + 1725, + 1725, + 1725, + 1729, + 1729, + 1731, + 1731, + 1733, + 1734, + 1734, + 1736, + 1737, + 1738, + 1739, + 1739, + 1741, + 1742, + 1742, + 1744, + 1745, + 1745, + 1747, + 1747, + 1749, + 1749, + 1751, + 1751, + 1753, + 1753, + 1755, + 1755, + 1755, + 1758, + 1758, + 1760, + 1760, + 1760, + 1763, + 1763, + 1765, + 1765, + 1767, + 1767, + 1769, + 1770, + 1770, + 1772, + 1772, + 1772, + 1775, + 1775, + 1777, + 1777, + 1779, + 1780, + 1781, + 1781, + 1783, + 1784, + 1785, + 1785, + 1787, + 1787, + 1789, + 1789, + 1789, + 1792, + 1792, + 1794, + 1794, + 1794, + 1797, + 1797, + 1799, + 1799, + 1801, + 1801, + 1801, + 1804, + 1804, + 1804, + 1807, + 1807, + 1807, + 1810, + 1810, + 1812, + 1812, + 1814, + 1814, + 1816, + 1816, + 1816, + 1819, + 1819, + 1819, + 1822, + 1822, + 1822, + 1825, + 1825, + 1825, + 1828, + 1828, + 1828, + 1831, + 1831, + 1833, + 1834, + 1834, + 1834, + 1837, + 1837, + 1839, + 1839, + 1839, + 1842, + 1842, + 1842, + 1845, + 1845, + 1845, + 1848, + 1848, + 1848, + 1851, + 1851, + 1853, + 1853, + 1853, + 1856, + 1856, + 1856, + 1859, + 1859, + 1859, + 1862, + 1862, + 1862, + 1865, + 1865, + 1867, + 1867, + 1869, + 1869, + 1871, + 1871, + 1871, + 1874, + 1874, + 1874, + 1877, + 1877, + 1877, + 1877, + 1881, + 1882, + 1882, + 1884, + 1884, + 1884, + 1887, + 1887, + 1889, + 1889, + 1889, + 1892, + 1892, + 1894, + 1894, + 1896, + 1896, + 1898, + 1898, + 1898, + 1901, + 1901, + 1901, + 1904, + 1904, + 1906, + 1906, + 1906, + 1909, + 1910, + 1910, + 1912, + 1912, + 1914, + 1914, + 1914, + 1917, + 1917, + 1919, + 1919, + 1919, + 1922, + 1922, + 1922, + 1925, + 1925, + 1925, + 1925, + 1929, + 1929, + 1931, + 1931, + 1931, + 1934, + 1934, + 1936, + 1937, + 1937, + 1939, + 1940, + 1940, + 1942, + 1942, + 1942, + 1942, + 1946, + 1946, + 1946, + 1949, + 1950, + 1950, + 1952, + 1952, + 1954, + 1954, + 1954, + 1954, + 1958, + 1959, + 1959, + 1961, + 1961, + 1963, + 1963, + 1965, + 1965, + 1967, + 1968, + 1969, + 1969, + 1969, + 1972, + 1972, + 1974, + 1974, + 1974, + 1974, + 1978, + 1979, + 1979, + 1981, + 1981, + 1981, + 1984, + 1984, + 1984, + 1984, + 1988, + 1988, + 1988, + 1988, + 1992, + 1992, + 1992, + 1995, + 1995, + 1995, + 1998, + 1998, + 1998, + 2001, + 2002, + 2003, + 2004, + 2005, + 2005, + 2007, + 2007, + 2009, + 2009, + 2011, + 2011, + 2013, + 2013, + 2013, + 2013, + 2017, + 2018, + 2018, + 2020, + 2020, + 2022, + 2022, + 2024, + 2024, + 2026, + 2026, + 2026, + 2029, + 2030, + 2030, + 2032, + 2032, + 2034, + 2034, + 2036, + 2036, + 2038, + 2039, + 2039, + 2041, + 2041, + 2043, + 2043, + 2043, + 2043, + 2047, + 2047, + 2049, + 2049, + 2051, + 2051, + 2051, + 2054, + 2054, + 2054, + 2057, + 2058, + 2058, + 2060, + 2060, + 2062, + 2063, + 2064, + 2065, + 2065, + 2065, + 2068, + 2068, + 2068, + 2068, + 2072, + 2073, + 2073, + 2075, + 2075, + 2077, + 2077, + 2079, + 2079, + 2081, + 2082, + 2082, + 2084, + 2084, + 2084, + 2084, + 2088, + 2088, + 2090, + 2090, + 2090, + 2093, + 2093, + 2093, + 2096, + 2096, + 2096, + 2099, + 2100, + 2100, + 2102, + 2102, + 2102, + 2105, + 2105, + 2105, + 2108, + 2109, + 2110, + 2111, + 2111, + 2113, + 2113, + 2115, + 2115, + 2115, + 2118, + 2118, + 2120, + 2120, + 2122, + 2122, + 2124, + 2124, + 2126, + 2127, + 2128, + 2129, + 2129, + 2131, + 2131, + 2133, + 2134, + 2134, + 2134, + 2137, + 2137, + 2139, + 2139, + 2139, + 2142, + 2142, + 2142, + 2145, + 2146, + 2146, + 2146, + 2149, + 2149, + 2149, + 2152, + 2152, + 2152, + 2155, + 2155, + 2155, + 2158, + 2158, + 2160, + 2160, + 2162, + 2162, + 2162, + 2165, + 2165, + 2165, + 2168, + 2168, + 2170, + 2170, + 2172, + 2172, + 2172, + 2175, + 2175, + 2177, + 2177, + 2179, + 2179, + 2179, + 2182, + 2182, + 2182, + 2182, + 2186, + 2186, + 2186, + 2189, + 2189, + 2191, + 2191, + 2193, + 2193, + 2195, + 2195, + 2197, + 2197, + 2197, + 2197, + 2201, + 2201, + 2201, + 2204, + 2204, + 2206, + 2206, + 2208, + 2208, + 2210, + 2210, + 2210, + 2210, + 2214, + 2215, + 2215, + 2215, + 2218, + 2218, + 2220, + 2220, + 2222, + 2223, + 2224, + 2224, + 2226, + 2226, + 2226, + 2229, + 2230, + 2230, + 2232, + 2232, + 2234, + 2234, + 2236, + 2237, + 2237, + 2239, + 2240, + 2240, + 2242, + 2242, + 2244, + 2244, + 2246, + 2247, + 2248, + 2248, + 2250, + 2250, + 2250, + 2250, + 2254, + 2254, + 2256, + 2257, + 2257, + 2257, + 2257, + 2261, + 2261, + 2263, + 2264, + 2264, + 2266, + 2266, + 2266, + 2269, + 2269, + 2271, + 2271, + 2273, + 2274, + 2274, + 2276, + 2276, + 2276, + 2279, + 2280, + 2281, + 2281, + 2283, + 2283, + 2285, + 2285, + 2287, + 2287, + 2289, + 2290, + 2290, + 2292, + 2292, + 2294, + 2294, + 2294, + 2294, + 2298, + 2299, + 2299, + 2301, + 2302, + 2302, + 2304, + 2304, + 2306, + 2306, + 2308, + 2309, + 2310, + 2310, + 2312, + 2312, + 2314, + 2315, + 2315, + 2315, + 2318, + 2318, + 2318, + 2321, + 2321, + 2323, + 2323, + 2323, + 2323, + 2327, + 2327, + 2329, + 2329, + 2331, + 2331, + 2333, + 2333, + 2335, + 2336, + 2336, + 2338, + 2339, + 2339, + 2341, + 2341, + 2341, + 2344, + 2344, + 2344, + 2344, + 2348, + 2348, + 2350, + 2350, + 2350, + 2350, + 2354, + 2354, + 2354, + 2357, + 2358, + 2358, + 2360, + 2361, + 2361, + 2363, + 2363, + 2363, + 2366, + 2366, + 2366, + 2369, + 2369, + 2371, + 2371, + 2373, + 2373, + 2375, + 2376, + 2376, + 2378, + 2378, + 2380, + 2381, + 2381, + 2383, + 2383, + 2383, + 2386, + 2386, + 2388, + 2388, + 2388, + 2391, + 2392, + 2393, + 2393, + 2395, + 2395, + 2397, + 2398, + 2399, + 2399, + 2401, + 2401, + 2401, + 2401, + 2405, + 2405, + 2407, + 2408, + 2408, + 2410, + 2411, + 2412, + 2412, + 2412, + 2415, + 2415, + 2417, + 2417, + 2417, + 2420, + 2420, + 2422, + 2423, + 2423, + 2425, + 2426, + 2426, + 2428, + 2429, + 2429, + 2429, + 2432, + 2432, + 2434, + 2434, + 2434, + 2437, + 2437, + 2439, + 2439, + 2441, + 2442, + 2442, + 2444, + 2444, + 2444, + 2447, + 2447, + 2449, + 2449, + 2449, + 2452, + 2453, + 2453, + 2455, + 2455, + 2457, + 2457, + 2457, + 2460, + 2460, + 2462, + 2462, + 2462, + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2470, + 2472, + 2472, + 2474, + 2475, + 2475, + 2477, + 2477, + 2477, + 2480, + 2480, + 2480, + 2483, + 2483, + 2485, + 2485, + 2487, + 2487, + 2489, + 2490, + 2490, + 2492, + 2492, + 2494, + 2495, + 2495, + 2497, + 2497, + 2497, + 2500, + 2500, + 2502, + 2502, + 2502, + 2505, + 2506, + 2507, + 2507, + 2509, + 2509, + 2511, + 2512, + 2513, + 2513, + 2513, + 2513, + 2517, + 2517, + 2517, + 2517, + 2521, + 2521, + 2523, + 2523, + 2523, + 2526, + 2526, + 2528, + 2528, + 2530, + 2530, + 2530, + 2533, + 2534, + 2534, + 2536, + 2536, + 2538, + 2538, + 2540, + 2540, + 2542, + 2542, + 2544, + 2544, + 2544, + 2544, + 2548, + 2548, + 2550, + 2550, + 2552, + 2552, + 2552, + 2555, + 2555, + 2555, + 2558, + 2558, + 2558, + 2561, + 2561, + 2561, + 2564, + 2564, + 2564, + 2567, + 2567, + 2567, + 2570, + 2570, + 2570, + 2573, + 2573, + 2573, + 2576, + 2576, + 2578, + 2578, + 2578, + 2581, + 2581, + 2581, + 2584, + 2584, + 2584, + 2587, + 2587, + 2587, + 2590, + 2590, + 2590, + 2593, + 2593, + 2593, + 2596, + 2596, + 2596, + 2599, + 2599, + 2599, + 2602, + 2602, + 2602, + 2605, + 2605, + 2605, + 2608, + 2608, + 2608, + 2611, + 2611, + 2611, + 2614, + 2614, + 2616, + 2616, + 2616, + 2619, + 2619, + 2619, + 2622, + 2622, + 2622, + 2625, + 2625, + 2625, + 2628, + 2628, + 2628, + 2631, + 2631, + 2631, + 2634, + 2634, + 2634, + 2637, + 2637, + 2637, + 2640, + 2640, + 2640, + 2643, + 2643, + 2643, + 2646, + 2646, + 2648, + 2648, + 2648, + 2651, + 2651, + 2651, + 2654, + 2654, + 2654, + 2657, + 2657, + 2657, + 2660, + 2660, + 2660, + 2663, + 2663, + 2663, + 2666, + 2666, + 2666, + 2669, + 2669, + 2669, + 2672, + 2672, + 2672, + 2675, + 2675, + 2675, + 2678, + 2678, + 2678, + 2681, + 2681, + 2681, + 2684, + 2684, + 2686, + 2686, + 2686, + 2689, + 2689, + 2689, + 2692, + 2692, + 2692, + 2695, + 2695, + 2695, + 2698, + 2698, + 2698, + 2701, + 2701, + 2701, + 2704, + 2704, + 2704, + 2707, + 2707, + 2707, + 2710, + 2710, + 2710, + 2713, + 2713, + 2713, + 2716, + 2716, + 2718, + 2718, + 2718, + 2721, + 2721, + 2721, + 2724, + 2724, + 2724, + 2727, + 2727, + 2727, + 2730, + 2730, + 2730, + 2733, + 2733, + 2733, + 2736, + 2736, + 2736, + 2739, + 2739, + 2739, + 2742, + 2742, + 2742, + 2745, + 2745, + 2745, + 2748, + 2748, + 2748, + 2751, + 2751, + 2751, + 2754, + 2754, + 2756, + 2756, + 2756, + 2759, + 2759, + 2759, + 2762, + 2762, + 2762, + 2765, + 2765, + 2765, + 2768, + 2768, + 2768, + 2771, + 2771, + 2771, + 2774, + 2774, + 2774, + 2777, + 2777, + 2777, + 2780, + 2780, + 2780, + 2783, + 2783, + 2783, + 2786, + 2786, + 2788, + 2788, + 2788, + 2791, + 2791, + 2791, + 2794, + 2794, + 2794, + 2797, + 2797, + 2797, + 2800, + 2800, + 2800, + 2803, + 2803, + 2803, + 2806, + 2806, + 2806, + 2809, + 2809, + 2809, + 2812, + 2812, + 2812, + 2815, + 2815, + 2815, + 2818, + 2818, + 2818, + 2821, + 2821, + 2821, + 2824, + 2824, + 2826, + 2826, + 2826, + 2829, + 2829, + 2829, + 2832, + 2832, + 2834, + 2835, + 2835, + 2837, + 2838, + 2838, + 2840, + 2841, + 2841, + 2843, + 2844, + 2844, + 2846, + 2847, + 2847, + 2849, + 2850, + 2851, + 2852, + 2853, + 2853, + 2855, + 2856, + 2856, + 2858, + 2859, + 2859, + 2861, + 2861, + 2863, + 2863, + 2865, + 2866, + 2866, + 2868, + 2868, + 2870, + 2871, + 2871, + 2873, + 2874, + 2874, + 2876, + 2877, + 2877, + 2879, + 2880, + 2880, + 2882, + 2883, + 2883, + 2885, + 2886, + 2887, + 2888, + 2889, + 2889, + 2891, + 2892, + 2892, + 2894, + 2895, + 2895, + 2897, + 2897, + 2899, + 2899, + 2901, + 2902, + 2902, + 2904, + 2904, + 2906, + 2906, + 2908, + 2908, + 2910, + 2910, + 2912, + 2912, + 2912, + 2915, + 2915, + 2915, + 2918, + 2918, + 2920, + 2920, + 2922, + 2922, + 2922, + 2925, + 2925, + 2925, + 2928, + 2928, + 2928, + 2931, + 2931, + 2933, + 2933, + 2935, + 2935, + 2935, + 2938, + 2938, + 2938, + 2941, + 2941, + 2941, + 2944, + 2944, + 2946, + 2946, + 2948, + 2948, + 2950, + 2950, + 2952, + 2953, + 2953, + 2953, + 2956, + 2956, + 2956, + 2959, + 2959, + 2959, + 2962, + 2962, + 2962, + 2965, + 2965, + 2965, + 2968, + 2968, + 2968, + 2971, + 2971, + 2971, + 2974, + 2974, + 2974, + 2977, + 2977, + 2977, + 2980, + 2980, + 2980, + 2983, + 2983, + 2983, + 2986, + 2986, + 2986, + 2989, + 2990, + 2991, + 2991, + 2991, + 2994, + 2994, + 2994, + 2997, + 2997, + 2997, + 3000, + 3000, + 3000, + 3003, + 3003, + 3003, + 3006, + 3006, + 3006, + 3009, + 3009, + 3009, + 3012, + 3012, + 3012, + 3015, + 3015, + 3015, + 3018, + 3018, + 3018, + 3021, + 3021, + 3021, + 3024, + 3024, + 3024, + 3027, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039, + 3040, + 3041, + 3042, + 3043, + 3044, + 3045, + 3046, + 3047, + 3048, + 3049, + 3050, + 3051, + 3052, + 3053, + 3054, + 3054, + 3056, + 3056, + 3056, + 3059, + 3060, + 3060, + 3062, + 3062, + 3064, + 3064, + 3064, + 3067, + 3067, + 3069, + 3069, + 3071, + 3071, + 3071, + 3074, + 3074, + 3074, + 3074, + 3078, + 3078, + 3078, + 3078, + 3082, + 3082, + 3084, + 3084, + 3084, + 3087, + 3087, + 3089, + 3089, + 3091, + 3091, + 3093, + 3094, + 3094, + 3096, + 3097, + 3097, + 3099, + 3099, + 3099, + 3102, + 3102, + 3104, + 3104, + 3106, + 3106, + 3108, + 3108, + 3110, + 3111, + 3112, + 3112, + 3112, + 3115, + 3115, + 3117, + 3117, + 3119, + 3119, + 3121, + 3121, + 3121, + 3124, + 3124, + 3126, + 3126, + 3126, + 3129, + 3129, + 3129, + 3129, + 3133, + 3133, + 3133, + 3136, + 3136, + 3138, + 3138, + 3138, + 3141, + 3141, + 3143, + 3143, + 3143, + 3146, + 3146, + 3148, + 3148, + 3150, + 3150, + 3150, + 3153, + 3153, + 3153, + 3156, + 3156, + 3156, + 3159, + 3159, + 3161, + 3161, + 3163, + 3163, + 3163, + 3163, + 3167, + 3167, + 3167, + 3170, + 3170, + 3172, + 3172, + 3172, + 3175, + 3176, + 3176, + 3178, + 3178, + 3178, + 3181, + 3181, + 3181, + 3184, + 3185, + 3185, + 3187, + 3188, + 3188, + 3188, + 3188, + 3192, + 3192, + 3194, + 3194, + 3194, + 3197, + 3197, + 3197, + 3197, + 3201, + 3202, + 3202, + 3202, + 3202, + 3206, + 3206, + 3208, + 3208, + 3210, + 3210, + 3212, + 3213, + 3214, + 3214, + 3216, + 3217, + 3218, + 3218, + 3220, + 3221, + 3222, + 3223, + 3224, + 3224, + 3224, + 3227, + 3227, + 3227, + 3227, + 3231, + 3231, + 3233, + 3233, + 3235, + 3236, + 3236, + 3238, + 3239, + 3240, + 3240, + 3240, + 3243, + 3243, + 3243, + 3246, + 3246, + 3246, + 3249, + 3250, + 3250, + 3252, + 3252, + 3254, + 3254, + 3256, + 3256, + 3258, + 3258, + 3260, + 3260, + 3262, + 3262, + 3262, + 3265, + 3265, + 3265, + 3268, + 3268, + 3268, + 3271, + 3271, + 3273, + 3273, + 3273, + 3276, + 3276, + 3276, + 3279, + 3279, + 3279, + 3282, + 3283, + 3283, + 3285, + 3285, + 3287, + 3287, + 3287, + 3290, + 3290, + 3290, + 3293, + 3293, + 3293, + 3296, + 3296, + 3296, + 3296, + 3300, + 3300, + 3302, + 3302, + 3302, + 3305, + 3305, + 3305, + 3308, + 3308, + 3310, + 3310, + 3312, + 3312, + 3314, + 3314, + 3316, + 3316, + 3318, + 3318, + 3320, + 3320, + 3320, + 3320, + 3324, + 3324, + 3326, + 3326, + 3326, + 3329, + 3329, + 3331, + 3331, + 3333, + 3333, + 3333, + 3336, + 3336, + 3336, + 3339, + 3339, + 3341, + 3341, + 3343, + 3343, + 3345, + 3345, + 3347, + 3347, + 3349, + 3349, + 3351, + 3352, + 3353, + 3354, + 3354, + 3354, + 3357, + 3357, + 3359, + 3359, + 3361, + 3361, + 3363, + 3363, + 3363, + 3363, + 3367, + 3367, + 3369, + 3369, + 3369, + 3372, + 3372, + 3372, + 3372, + 3376, + 3377, + 3377, + 3379, + 3379, + 3379, + 3382, + 3382, + 3384, + 3384, + 3386, + 3387, + 3388, + 3388, + 3390, + 3390, + 3390, + 3393, + 3393, + 3395, + 3395, + 3395, + 3398, + 3398, + 3400, + 3400, + 3400, + 3403, + 3403, + 3403, + 3406, + 3406, + 3408, + 3408, + 3408, + 3411, + 3411, + 3411, + 3414, + 3415, + 3415, + 3417, + 3417, + 3419, + 3419, + 3421, + 3421, + 3421, + 3424, + 3424, + 3426, + 3426, + 3428, + 3428, + 3430, + 3430, + 3430, + 3433, + 3433, + 3435, + 3435, + 3437, + 3437, + 3439, + 3440, + 3440, + 3442, + 3442, + 3442, + 3442, + 3446, + 3446, + 3446, + 3446, + 3450, + 3450, + 3452, + 3452, + 3454, + 3455, + 3455, + 3455, + 3458, + 3458, + 3460, + 3461, + 3461, + 3463, + 3463, + 3465, + 3465, + 3465, + 3468, + 3468, + 3470, + 3471, + 3471, + 3473, + 3473, + 3473, + 3476, + 3476, + 3476, + 3479, + 3480, + 3480, + 3482, + 3482, + 3482, + 3485, + 3485, + 3485, + 3488, + 3488, + 3490, + 3491, + 3491, + 3493, + 3493, + 3495, + 3496, + 3496, + 3498, + 3498, + 3500, + 3500, + 3500, + 3503, + 3503, + 3503, + 3506, + 3506, + 3508, + 3508, + 3510, + 3511, + 3511, + 3511, + 3514, + 3514, + 3514, + 3517, + 3517, + 3517, + 3520, + 3521, + 3521, + 3523, + 3523, + 3525, + 3526, + 3526, + 3526, + 3529, + 3529, + 3529, + 3532, + 3532, + 3534, + 3534, + 3534, + 3537, + 3537, + 3539, + 3539, + 3539, + 3542, + 3542, + 3544, + 3544, + 3544, + 3547, + 3547, + 3549, + 3550, + 3550, + 3550, + 3553, + 3553, + 3553, + 3553, + 3557, + 3557, + 3559, + 3559, + 3559, + 3562, + 3562, + 3562, + 3565, + 3565, + 3565, + 3568, + 3568, + 3568, + 3571, + 3571, + 3573, + 3573, + 3573, + 3576, + 3576, + 3576, + 3579, + 3579, + 3579, + 3582, + 3582, + 3582, + 3585, + 3585, + 3585, + 3588, + 3588, + 3588, + 3591, + 3591, + 3593, + 3594, + 3594, + 3596, + 3597, + 3597, + 3597, + 3600, + 3600, + 3602, + 3602, + 3604, + 3604, + 3606, + 3606, + 3608, + 3609, + 3609, + 3611, + 3611, + 3611, + 3614, + 3614, + 3616, + 3616, + 3616, + 3619, + 3619, + 3621, + 3621, + 3621, + 3621, + 3625, + 3625, + 3627, + 3627, + 3627, + 3630, + 3630, + 3630, + 3633, + 3633, + 3633, + 3636, + 3636, + 3636, + 3639, + 3639, + 3641, + 3641, + 3641, + 3644, + 3644, + 3644, + 3647, + 3647, + 3647, + 3650, + 3650, + 3650, + 3653, + 3653, + 3653, + 3656, + 3656, + 3656, + 3659, + 3659, + 3661, + 3661, + 3663, + 3663, + 3665, + 3665, + 3665, + 3668, + 3669, + 3670, + 3670, + 3672, + 3672, + 3674, + 3674, + 3676, + 3676, + 3676, + 3679, + 3679, + 3679, + 3682, + 3682, + 3682, + 3685, + 3686, + 3686, + 3688, + 3689, + 3690, + 3690, + 3692, + 3692, + 3692, + 3695, + 3696, + 3696, + 3696, + 3699, + 3699, + 3699, + 3702, + 3702, + 3704, + 3705, + 3705, + 3707, + 3707, + 3707, + 3707, + 3711, + 3711, + 3713, + 3714, + 3714, + 3714, + 3717, + 3717, + 3717, + 3717, + 3721, + 3721, + 3721, + 3724, + 3724, + 3726, + 3726, + 3726, + 3729, + 3729, + 3729, + 3729, + 3733, + 3733, + 3735, + 3736, + 3736, + 3738, + 3738, + 3738, + 3741, + 3741, + 3741, + 3741, + 3745, + 3745, + 3745, + 3745, + 3749, + 3749, + 3749, + 3752, + 3752, + 3752, + 3755, + 3755, + 3757, + 3757, + 3759, + 3759, + 3761, + 3761, + 3761, + 3764, + 3765, + 3765, + 3765, + 3768, + 3768, + 3768, + 3771, + 3771, + 3771, + 3774, + 3774, + 3774, + 3777, + 3777, + 3777, + 3780, + 3780, + 3780, + 3783, + 3783, + 3783, + 3786, + 3786, + 3786, + 3789, + 3789, + 3791, + 3791, + 3791, + 3794, + 3794, + 3794, + 3797, + 3797, + 3799, + 3799, + 3801, + 3801, + 3803, + 3803, + 3805, + 3805, + 3805, + 3808, + 3808, + 3808, + 3811, + 3811, + 3813, + 3813, + 3815, + 3815, + 3817, + 3817, + 3819, + 3820, + 3821, + 3821, + 3821, + 3821, + 3825, + 3825, + 3827, + 3827, + 3829, + 3829, + 3831, + 3832, + 3832, + 3834, + 3834, + 3836, + 3836, + 3836, + 3836, + 3840, + 3840, + 3842, + 3842, + 3844, + 3844, + 3846, + 3846, + 3848, + 3848, + 3850, + 3851, + 3851, + 3853, + 3853, + 3855, + 3855, + 3855, + 3858, + 3858, + 3858, + 3861, + 3861, + 3861, + 3864, + 3864, + 3866, + 3866, + 3866, + 3869, + 3869, + 3871, + 3871, + 3873, + 3873, + 3875, + 3875, + 3877, + 3877, + 3879, + 3879, + 3879, + 3882, + 3882, + 3884, + 3884, + 3886, + 3886, + 3886, + 3886, + 3890, + 3890, + 3890, + 3893, + 3893, + 3895, + 3896, + 3896, + 3898, + 3898, + 3900, + 3900, + 3900, + 3903, + 3903, + 3903, + 3906, + 3907, + 3907, + 3907, + 3910, + 3910, + 3910, + 3913, + 3913, + 3913, + 3916, + 3916, + 3916, + 3919, + 3919, + 3919, + 3922, + 3922, + 3922, + 3925, + 3925, + 3925, + 3928, + 3928, + 3930, + 3930, + 3930, + 3933, + 3933, + 3935, + 3935, + 3935, + 3938, + 3938, + 3938, + 3941, + 3941, + 3941, + 3944, + 3945, + 3945, + 3947, + 3947, + 3949, + 3950, + 3950, + 3952, + 3953, + 3954, + 3954, + 3954, + 3957, + 3957, + 3959, + 3959, + 3959, + 3959, + 3963, + 3963, + 3963, + 3966, + 3967, + 3967, + 3969, + 3969, + 3969, + 3972, + 3972, + 3974, + 3974, + 3976, + 3976, + 3978, + 3978, + 3980, + 3980, + 3980, + 3983, + 3983, + 3983, + 3986, + 3986, + 3986, + 3989, + 3990, + 3990, + 3992, + 3993, + 3993, + 3995, + 3995, + 3995, + 3998, + 3999, + 3999, + 3999, + 4002, + 4002, + 4002, + 4005, + 4005, + 4005, + 4008, + 4008, + 4008, + 4011, + 4011, + 4013, + 4013, + 4013, + 4016, + 4016, + 4016, + 4019, + 4020, + 4021, + 4021, + 4021, + 4024, + 4024, + 4026, + 4027, + 4027, + 4027, + 4030, + 4030, + 4030, + 4033, + 4033, + 4033, + 4036, + 4036, + 4036, + 4039, + 4039, + 4041, + 4041, + 4043, + 4043, + 4043, + 4046, + 4046, + 4046, + 4049, + 4049, + 4051, + 4051, + 4053, + 4053, + 4055, + 4055, + 4055, + 4058, + 4058, + 4058, + 4061, + 4061, + 4063, + 4063, + 4065, + 4065, + 4065, + 4065, + 4069, + 4070, + 4070, + 4070, + 4073, + 4073, + 4075, + 4075, + 4077, + 4078, + 4078, + 4080, + 4080, + 4082, + 4082, + 4082, + 4082, + 4086, + 4086, + 4088, + 4089, + 4089, + 4089, + 4092, + 4092, + 4094, + 4094, + 4096, + 4096, + 4098, + 4098, + 4098, + 4098, + 4102, + 4102, + 4102, + 4102, + 4106, + 4106, + 4108, + 4108, + 4108, + 4111, + 4111, + 4111, + 4114, + 4114, + 4116, + 4116, + 4118, + 4118, + 4120, + 4120, + 4122, + 4122, + 4124, + 4124, + 4126, + 4127, + 4127, + 4129, + 4129, + 4131, + 4132, + 4132, + 4134, + 4135, + 4136, + 4136, + 4138, + 4138, + 4140, + 4140, + 4140, + 4140, + 4144, + 4144, + 4146, + 4146, + 4146, + 4146, + 4150, + 4151, + 4152, + 4153, + 4154, + 4154, + 4156, + 4156, + 4156, + 4156, + 4160, + 4160, + 4160, + 4163, + 4163, + 4163, + 4166, + 4166, + 4168, + 4168, + 4168, + 4171, + 4171, + 4173, + 4173, + 4173, + 4173, + 4177, + 4178, + 4178, + 4180, + 4180, + 4182, + 4183, + 4184, + 4185, + 4186, + 4186, + 4188, + 4188, + 4188, + 4191, + 4191, + 4193, + 4193, + 4193, + 4193, + 4197, + 4197, + 4199, + 4200, + 4200, + 4200, + 4203, + 4203, + 4205, + 4205, + 4205, + 4208, + 4208, + 4208, + 4211, + 4211, + 4213, + 4213, + 4215, + 4215, + 4215, + 4218, + 4218, + 4218, + 4221, + 4222, + 4222, + 4224, + 4224, + 4226, + 4226, + 4226, + 4229, + 4230, + 4231, + 4231, + 4233, + 4233, + 4235, + 4235, + 4235, + 4238, + 4238, + 4240, + 4240, + 4240, + 4243, + 4243, + 4245, + 4245, + 4247, + 4247, + 4247, + 4250, + 4250, + 4250, + 4253, + 4253, + 4255, + 4255, + 4255, + 4258, + 4259, + 4259, + 4261, + 4261, + 4263, + 4263, + 4263, + 4266, + 4266, + 4268, + 4268, + 4270, + 4270, + 4272, + 4272, + 4274, + 4274, + 4274, + 4274, + 4278, + 4278, + 4278, + 4281, + 4281, + 4281, + 4284, + 4284, + 4284, + 4284, + 4288, + 4288, + 4288, + 4288, + 4292, + 4292, + 4292, + 4295, + 4295, + 4295, + 4298, + 4298, + 4298, + 4298, + 4302, + 4302, + 4304, + 4304, + 4304, + 4307, + 4307, + 4309, + 4309, + 4311, + 4311, + 4311, + 4314, + 4314, + 4314, + 4317, + 4317, + 4319, + 4320, + 4320, + 4320, + 4323, + 4323, + 4323, + 4326, + 4326, + 4328, + 4328, + 4328, + 4331, + 4331, + 4331, + 4334, + 4334, + 4334, + 4337, + 4337, + 4337, + 4340, + 4340, + 4340, + 4343, + 4343, + 4343, + 4346, + 4346, + 4346, + 4349, + 4349, + 4349, + 4352, + 4352, + 4352, + 4355, + 4355, + 4355, + 4358, + 4358, + 4358, + 4361, + 4361, + 4363, + 4363, + 4363, + 4366, + 4366, + 4366, + 4369, + 4369, + 4369, + 4372, + 4372, + 4372, + 4375, + 4375, + 4377, + 4377, + 4379, + 4379, + 4379, + 4382, + 4382, + 4382, + 4385, + 4385, + 4387, + 4387, + 4389, + 4389, + 4389, + 4392, + 4392, + 4392, + 4395, + 4395, + 4397, + 4397, + 4397, + 4400, + 4400, + 4402, + 4402, + 4402, + 4405, + 4405, + 4407, + 4407, + 4407, + 4407, + 4411, + 4411, + 4411, + 4414, + 4414, + 4416, + 4416, + 4416, + 4416, + 4420, + 4420, + 4422, + 4422, + 4422, + 4425, + 4425, + 4427, + 4427, + 4427, + 4430, + 4430, + 4432, + 4432, + 4434, + 4434, + 4434, + 4437, + 4437, + 4439, + 4439, + 4441, + 4441, + 4443, + 4443, + 4443, + 4446, + 4446, + 4446, + 4446, + 4450, + 4450, + 4452, + 4452, + 4452, + 4455, + 4455, + 4455, + 4455, + 4459, + 4459, + 4461, + 4461, + 4461, + 4464, + 4464, + 4464, + 4467, + 4467, + 4469, + 4469, + 4469, + 4472, + 4472, + 4472, + 4475, + 4475, + 4477, + 4477, + 4479, + 4479, + 4479, + 4482, + 4482, + 4482, + 4485, + 4485, + 4487, + 4487, + 4487, + 4490, + 4490, + 4492, + 4493, + 4494, + 4494, + 4496, + 4496, + 4498, + 4498, + 4500, + 4500, + 4500, + 4503, + 4503, + 4503, + 4506, + 4506, + 4508, + 4508, + 4510, + 4510, + 4510, + 4513, + 4513, + 4513, + 4516, + 4516, + 4516, + 4519, + 4519, + 4521, + 4521, + 4523, + 4523, + 4525, + 4525, + 4527, + 4527, + 4527, + 4530, + 4530, + 4530, + 4533, + 4533, + 4533, + 4536, + 4536, + 4536, + 4539, + 4539, + 4539, + 4542, + 4542, + 4542, + 4545, + 4545, + 4547, + 4548, + 4548, + 4548, + 4551, + 4551, + 4553, + 4553, + 4553, + 4556, + 4557, + 4557, + 4559, + 4559, + 4559, + 4562, + 4562, + 4564, + 4564, + 4566, + 4566, + 4568, + 4569, + 4570, + 4570, + 4570, + 4573, + 4573, + 4575, + 4575, + 4577, + 4577, + 4577, + 4580, + 4580, + 4580, + 4583, + 4583, + 4583, + 4586, + 4586, + 4586, + 4589, + 4589, + 4589, + 4592, + 4592, + 4592, + 4595, + 4596, + 4596, + 4598, + 4598, + 4598, + 4601, + 4601, + 4603, + 4603, + 4605, + 4605, + 4607, + 4607, + 4609, + 4609, + 4611, + 4611, + 4613, + 4613, + 4615, + 4615, + 4617, + 4617, + 4619, + 4619, + 4621, + 4621, + 4623, + 4624, + 4625, + 4625, + 4627, + 4628, + 4628, + 4630, + 4630, + 4630, + 4633, + 4633, + 4633, + 4636, + 4636, + 4638, + 4638, + 4640, + 4640, + 4640, + 4643, + 4643, + 4643, + 4646, + 4646, + 4646, + 4649, + 4649, + 4649, + 4652, + 4652, + 4652, + 4652, + 4656, + 4657, + 4658, + 4658, + 4658, + 4658, + 4662, + 4662, + 4664, + 4664, + 4666, + 4667, + 4667, + 4669, + 4670, + 4671, + 4672, + 4672, + 4674, + 4675, + 4675, + 4677, + 4678, + 4678, + 4680, + 4680, + 4682, + 4682, + 4684, + 4684, + 4686, + 4686, + 4688, + 4688, + 4688, + 4691, + 4691, + 4693, + 4693, + 4693, + 4696, + 4696, + 4698, + 4698, + 4700, + 4700, + 4700, + 4703, + 4703, + 4705, + 4705, + 4707, + 4708, + 4708, + 4710, + 4711, + 4711, + 4713, + 4713, + 4715, + 4715, + 4715, + 4718, + 4718, + 4720, + 4720, + 4720, + 4723, + 4723, + 4723, + 4726, + 4726, + 4726, + 4729, + 4729, + 4729, + 4732, + 4732, + 4734, + 4734, + 4736, + 4736, + 4738, + 4738, + 4738, + 4741, + 4741, + 4741, + 4744, + 4744, + 4744, + 4747, + 4747, + 4747, + 4750, + 4750, + 4750, + 4753, + 4753, + 4755, + 4756, + 4756, + 4756, + 4759, + 4759, + 4761, + 4761, + 4761, + 4764, + 4764, + 4764, + 4767, + 4767, + 4767, + 4770, + 4770, + 4770, + 4773, + 4773, + 4775, + 4775, + 4775, + 4778, + 4778, + 4778, + 4781, + 4781, + 4781, + 4784, + 4784, + 4784, + 4787, + 4787, + 4789, + 4789, + 4791, + 4791, + 4793, + 4793, + 4793, + 4796, + 4796, + 4796, + 4799, + 4799, + 4799, + 4799, + 4803, + 4803, + 4805, + 4805, + 4805, + 4808, + 4808, + 4808, + 4811, + 4811, + 4813, + 4813, + 4815, + 4815, + 4815, + 4818, + 4818, + 4818, + 4821, + 4821, + 4823, + 4823, + 4823, + 4826, + 4827, + 4827, + 4829, + 4829, + 4831, + 4831, + 4831, + 4834, + 4834, + 4834, + 4837, + 4837, + 4837, + 4840, + 4840, + 4840, + 4840, + 4844, + 4844, + 4844, + 4847, + 4848, + 4848, + 4850, + 4851, + 4851, + 4853, + 4853, + 4853, + 4853, + 4857, + 4857, + 4857, + 4860, + 4861, + 4861, + 4863, + 4863, + 4865, + 4865, + 4865, + 4865, + 4869, + 4869, + 4871, + 4871, + 4873, + 4873, + 4875, + 4876, + 4876, + 4876, + 4879, + 4879, + 4881, + 4881, + 4881, + 4881, + 4885, + 4886, + 4886, + 4888, + 4888, + 4888, + 4891, + 4891, + 4891, + 4891, + 4895, + 4895, + 4895, + 4895, + 4899, + 4899, + 4899, + 4902, + 4902, + 4902, + 4905, + 4905, + 4905, + 4908, + 4909, + 4910, + 4911, + 4912, + 4912, + 4914, + 4914, + 4916, + 4916, + 4918, + 4918, + 4920, + 4920, + 4920, + 4920, + 4924, + 4925, + 4925, + 4927, + 4927, + 4929, + 4929, + 4931, + 4931, + 4933, + 4933, + 4933, + 4936, + 4937, + 4937, + 4939, + 4939, + 4941, + 4941, + 4943, + 4943, + 4945, + 4946, + 4946, + 4948, + 4948, + 4950, + 4950, + 4950, + 4950, + 4954, + 4954, + 4956, + 4956, + 4958, + 4958, + 4958, + 4961, + 4961, + 4961, + 4964, + 4965, + 4965, + 4967, + 4967, + 4969, + 4970, + 4971, + 4972, + 4972, + 4972, + 4975, + 4975, + 4975, + 4975, + 4979, + 4980, + 4980, + 4982, + 4982, + 4984, + 4984, + 4986, + 4986, + 4988, + 4989, + 4989, + 4991, + 4991, + 4991, + 4991, + 4995, + 4995, + 4997, + 4997, + 4997, + 5000, + 5000, + 5000, + 5003, + 5003, + 5003, + 5006, + 5007, + 5007, + 5009, + 5009, + 5009, + 5012, + 5012, + 5012, + 5015, + 5016, + 5017, + 5017, + 5019, + 5019, + 5019, + 5022, + 5022, + 5024, + 5024, + 5026, + 5026, + 5028, + 5028, + 5030, + 5031, + 5032, + 5033, + 5033, + 5035, + 5035, + 5037, + 5038, + 5038, + 5038, + 5041, + 5041, + 5043, + 5043, + 5043, + 5046, + 5046, + 5046, + 5049, + 5050, + 5050, + 5050, + 5053, + 5053, + 5053, + 5056, + 5056, + 5056, + 5059, + 5059, + 5059, + 5062, + 5062, + 5064, + 5064, + 5066, + 5066, + 5066, + 5069, + 5069, + 5069, + 5072, + 5072, + 5074, + 5074, + 5076, + 5076, + 5076, + 5079, + 5079, + 5081, + 5081, + 5083, + 5083, + 5083, + 5086, + 5086, + 5086, + 5086, + 5090, + 5090, + 5090, + 5093, + 5093, + 5095, + 5095, + 5097, + 5097, + 5099, + 5099, + 5101, + 5101, + 5101, + 5101, + 5105, + 5105, + 5105, + 5108, + 5108, + 5110, + 5110, + 5112, + 5112, + 5114, + 5114, + 5114, + 5114, + 5118, + 5119, + 5119, + 5119, + 5122, + 5122, + 5124, + 5124, + 5126, + 5127, + 5127, + 5127, + 5130, + 5130, + 5132, + 5132, + 5134, + 5134, + 5136, + 5137, + 5137, + 5139, + 5140, + 5140, + 5142, + 5142, + 5144, + 5144, + 5146, + 5146, + 5148, + 5148, + 5148, + 5148, + 5152, + 5152, + 5154, + 5154, + 5154, + 5154, + 5158, + 5158, + 5160, + 5160, + 5162, + 5162, + 5162, + 5165, + 5165, + 5167, + 5167, + 5169, + 5170, + 5170, + 5172, + 5172, + 5172, + 5175, + 5176, + 5177, + 5177, + 5179, + 5179, + 5181, + 5181, + 5183, + 5183, + 5185, + 5186, + 5186, + 5188, + 5188, + 5190, + 5190, + 5190, + 5190, + 5194, + 5195, + 5195, + 5197, + 5198, + 5198, + 5200, + 5200, + 5202, + 5202, + 5204, + 5205, + 5206, + 5206, + 5208, + 5208, + 5210, + 5211, + 5211, + 5211, + 5214, + 5214, + 5214, + 5217, + 5217, + 5219, + 5219, + 5219, + 5219, + 5223, + 5223, + 5225, + 5225, + 5227, + 5227, + 5229, + 5230, + 5230, + 5232, + 5232, + 5232, + 5235, + 5235, + 5235, + 5235, + 5239, + 5239, + 5241, + 5241, + 5241, + 5241, + 5245, + 5245, + 5245, + 5248, + 5249, + 5249, + 5251, + 5252, + 5252, + 5254, + 5254, + 5254, + 5257, + 5257, + 5257, + 5260, + 5260, + 5262, + 5263, + 5263, + 5265, + 5265, + 5267, + 5267, + 5267, + 5270, + 5270, + 5272, + 5272, + 5272, + 5275, + 5276, + 5276, + 5278, + 5278, + 5280, + 5280, + 5280, + 5280, + 5284, + 5284, + 5286, + 5287, + 5287, + 5289, + 5290, + 5291, + 5291, + 5291, + 5294, + 5294, + 5296, + 5296, + 5296, + 5299, + 5299, + 5301, + 5302, + 5302, + 5304, + 5305, + 5305, + 5307, + 5308, + 5308, + 5308, + 5311, + 5311, + 5313, + 5313, + 5313, + 5316, + 5316, + 5318, + 5318, + 5320, + 5321, + 5321, + 5323, + 5323, + 5323, + 5326, + 5326, + 5328, + 5328, + 5328, + 5331, + 5332, + 5332, + 5334, + 5334, + 5336, + 5336, + 5336, + 5339, + 5339, + 5341, + 5341, + 5341, + 5344, + 5345, + 5345, + 5347, + 5347, + 5349, + 5350, + 5350, + 5352, + 5352, + 5352, + 5355, + 5355, + 5355, + 5358, + 5358, + 5360, + 5361, + 5361, + 5363, + 5363, + 5365, + 5365, + 5365, + 5368, + 5368, + 5370, + 5370, + 5370, + 5373, + 5374, + 5374, + 5376, + 5376, + 5376, + 5376, + 5380, + 5380, + 5380, + 5380, + 5384, + 5384, + 5386, + 5386, + 5386, + 5389, + 5389, + 5391, + 5391, + 5393, + 5393, + 5393, + 5396, + 5397, + 5397, + 5399, + 5399, + 5401, + 5401, + 5403, + 5403, + 5405, + 5405, + 5407, + 5407, + 5407, + 5407, + 5411, + 5411, + 5413, + 5413, + 5415, + 5415, + 5415, + 5418, + 5418, + 5418, + 5421, + 5421, + 5421, + 5424, + 5424, + 5424, + 5427, + 5427, + 5427, + 5430, + 5430, + 5430, + 5433, + 5433, + 5433, + 5436, + 5436, + 5436, + 5439, + 5439, + 5441, + 5441, + 5441, + 5444, + 5444, + 5444, + 5447, + 5447, + 5447, + 5450, + 5450, + 5450, + 5453, + 5453, + 5453, + 5456, + 5456, + 5456, + 5459, + 5459, + 5459, + 5462, + 5462, + 5462, + 5465, + 5465, + 5465, + 5468, + 5468, + 5468, + 5471, + 5471, + 5471, + 5474, + 5474, + 5474, + 5477, + 5477, + 5479, + 5479, + 5479, + 5482, + 5482, + 5482, + 5485, + 5485, + 5485, + 5488, + 5488, + 5488, + 5491, + 5491, + 5491, + 5494, + 5494, + 5494, + 5497, + 5497, + 5497, + 5500, + 5500, + 5500, + 5503, + 5503, + 5503, + 5506, + 5506, + 5506, + 5509, + 5509, + 5511, + 5511, + 5511, + 5514, + 5514, + 5514, + 5517, + 5517, + 5517, + 5520, + 5520, + 5520, + 5523, + 5523, + 5523, + 5526, + 5526, + 5526, + 5529, + 5529, + 5529, + 5532, + 5532, + 5532, + 5535, + 5535, + 5535, + 5538, + 5538, + 5538, + 5541, + 5541, + 5541, + 5544, + 5544, + 5544, + 5547, + 5547, + 5549, + 5549, + 5549, + 5552, + 5552, + 5552, + 5555, + 5555, + 5555, + 5558, + 5558, + 5558, + 5561, + 5561, + 5561, + 5564, + 5564, + 5564, + 5567, + 5567, + 5567, + 5570, + 5570, + 5570, + 5573, + 5573, + 5573, + 5576, + 5576, + 5576, + 5579, + 5579, + 5581, + 5581, + 5581, + 5584, + 5584, + 5584, + 5587, + 5587, + 5587, + 5590, + 5590, + 5590, + 5593, + 5593, + 5593, + 5596, + 5596, + 5596, + 5599, + 5599, + 5599, + 5602, + 5602, + 5602, + 5605, + 5605, + 5605, + 5608, + 5608, + 5608, + 5611, + 5611, + 5611, + 5614, + 5614, + 5614, + 5617, + 5617, + 5619, + 5619, + 5619, + 5622, + 5622, + 5622, + 5625, + 5625, + 5625, + 5628, + 5628, + 5628, + 5631, + 5631, + 5631, + 5634, + 5634, + 5634, + 5637, + 5637, + 5637, + 5640, + 5640, + 5640, + 5643, + 5643, + 5643, + 5646, + 5646, + 5646, + 5649, + 5649, + 5651, + 5651, + 5651, + 5654, + 5654, + 5654, + 5657, + 5657, + 5657, + 5660, + 5660, + 5660, + 5663, + 5663, + 5663, + 5666, + 5666, + 5666, + 5669, + 5669, + 5669, + 5672, + 5672, + 5672, + 5675, + 5675, + 5675, + 5678, + 5678, + 5678, + 5681, + 5681, + 5681, + 5684, + 5684, + 5684, + 5687, + 5687, + 5689, + 5689, + 5689, + 5692, + 5692, + 5692, + 5695, + 5695, + 5697, + 5698, + 5698, + 5700, + 5701, + 5701, + 5703, + 5704, + 5704, + 5706, + 5707, + 5707, + 5709, + 5710, + 5710, + 5712, + 5713, + 5714, + 5715, + 5716, + 5716, + 5718, + 5719, + 5719, + 5721, + 5722, + 5722, + 5724, + 5724, + 5726, + 5726, + 5728, + 5729, + 5729, + 5731, + 5731, + 5733, + 5734, + 5734, + 5736, + 5737, + 5737, + 5739, + 5740, + 5740, + 5742, + 5743, + 5743, + 5745, + 5746, + 5746, + 5748, + 5749, + 5750, + 5751, + 5752, + 5752, + 5754, + 5755, + 5755, + 5757, + 5758, + 5758, + 5760, + 5760, + 5762, + 5762, + 5764, + 5765, + 5765, + 5767, + 5767, + 5769, + 5769, + 5771, + 5771, + 5773, + 5773, + 5775, + 5775, + 5775, + 5778, + 5778, + 5778, + 5781, + 5781, + 5783, + 5783, + 5785, + 5785, + 5785, + 5788, + 5788, + 5788, + 5791, + 5791, + 5791, + 5794, + 5794, + 5796, + 5796, + 5798, + 5798, + 5798, + 5801, + 5801, + 5801, + 5804, + 5804, + 5804, + 5807, + 5807, + 5809, + 5809, + 5811, + 5811, + 5813, + 5813, + 5815, + 5816, + 5816, + 5816, + 5819, + 5819, + 5819, + 5822, + 5822, + 5822, + 5825, + 5825, + 5825, + 5828, + 5828, + 5828, + 5831, + 5831, + 5831, + 5834, + 5834, + 5834, + 5837, + 5837, + 5837, + 5840, + 5840, + 5840, + 5843, + 5843, + 5843, + 5846, + 5846, + 5846, + 5849, + 5849, + 5849, + 5852, + 5853, + 5854, + 5854, + 5854, + 5857, + 5857, + 5857, + 5860, + 5860, + 5860, + 5863, + 5863, + 5863, + 5866, + 5866, + 5866, + 5869, + 5869, + 5869, + 5872, + 5872, + 5872, + 5875, + 5875, + 5875, + 5878, + 5878, + 5878, + 5881, + 5881, + 5881, + 5884, + 5884, + 5884, + 5887, + 5887, + 5887, + 5890, + 5891, + 5891, + 5893, + 5893, + 5895, + 5895, + 5895, + 5898, + 5898, + 5898, + 5901, + 5901, + 5901, + 5904, + 5904, + 5904, + 5907, + 5907, + 5909, + 5909, + 5909, + 5912, + 5912, + 5912, + 5915, + 5915, + 5917, + 5917, + 5919, + 5919, + 5921, + 5921, + 5921, + 5921, + 5925, + 5925, + 5925, + 5928, + 5928, + 5928, + 5931, + 5932, + 5932, + 5934, + 5934, + 5934, + 5934, + 5938, + 5938, + 5938, + 5941, + 5941, + 5943, + 5943, + 5943, + 5946, + 5946, + 5948, + 5949, + 5949, + 5951, + 5951, + 5951, + 5954, + 5955, + 5955, + 5957, + 5957, + 5959, + 5959, + 5959, + 5962, + 5963, + 5963, + 5965, + 5965, + 5967, + 5967, + 5967, + 5970, + 5971, + 5971, + 5971, + 5974, + 5975, + 5975, + 5977, + 5977, + 5979, + 5979, + 5979, + 5982, + 5982, + 5984, + 5985, + 5985, + 5987, + 5987, + 5987, + 5990, + 5991, + 5991, + 5993, + 5993, + 5995, + 5995, + 5995, + 5998, + 5999, + 5999, + 6001, + 6001, + 6003, + 6003, + 6003, + 6006, + 6007, + 6008, + 6008, + 6010, + 6010, + 6012, + 6012, + 6012, + 6015, + 6015, + 6017, + 6018, + 6018, + 6020, + 6020, + 6020, + 6023, + 6024, + 6024, + 6026, + 6026, + 6028, + 6028, + 6028, + 6031, + 6032, + 6032, + 6034, + 6034, + 6036, + 6036, + 6036, + 6039, + 6040, + 6040, + 6042, + 6042, + 6044, + 6044, + 6044, + 6047, + 6047, + 6047, + 6050, + 6050, + 6050, + 6053, + 6053, + 6053, + 6056, + 6056, + 6058, + 6058, + 6058, + 6061, + 6061, + 6061, + 6064, + 6064, + 6066, + 6066, + 6068, + 6068, + 6070, + 6070, + 6070, + 6070, + 6074, + 6074, + 6074, + 6077, + 6077, + 6077, + 6080, + 6081, + 6081, + 6083, + 6083, + 6083, + 6083, + 6087, + 6087, + 6087, + 6090, + 6090, + 6092, + 6092, + 6092, + 6095, + 6095, + 6097, + 6098, + 6098, + 6100, + 6100, + 6100, + 6103, + 6104, + 6104, + 6106, + 6106, + 6108, + 6108, + 6108, + 6111, + 6112, + 6112, + 6114, + 6114, + 6116, + 6116, + 6116, + 6119, + 6120, + 6120, + 6120, + 6123, + 6124, + 6124, + 6126, + 6126, + 6128, + 6128, + 6128, + 6131, + 6131, + 6133, + 6134, + 6134, + 6136, + 6136, + 6136, + 6139, + 6140, + 6140, + 6142, + 6142, + 6144, + 6144, + 6144, + 6147, + 6148, + 6148, + 6150, + 6150, + 6152, + 6152, + 6152, + 6155, + 6156, + 6157, + 6157, + 6159, + 6159, + 6161, + 6161, + 6161, + 6164, + 6164, + 6166, + 6167, + 6167, + 6169, + 6169, + 6169, + 6172, + 6173, + 6173, + 6175, + 6175, + 6177, + 6177, + 6177, + 6180, + 6181, + 6181, + 6183, + 6183, + 6185, + 6185, + 6185, + 6188, + 6189, + 6190, + 6191, + 6192, + 6193, + 6194, + 6195, + 6196, + 6196, + 6198, + 6199, + 6200, + 6200; + } + + MeshMaterialList { + 1; + 4816; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0; + + Material { + 1.000000;1.000000;1.000000;1.000000;; + 15.0; + 0.115000;0.215000;0.315000;; + 0.000000;0.000000;0.000000;; + TextureFilename { + "texture/SSR06_Born2_dif.png"; + } + BumpMapFilename { + "texture/SSR06_Born2_bp_base.png"; + } + } + } + + XSkinMeshHeader { + 1; + 1; + 33; + } + + SkinWeights { + "Frame2_Bone01"; + 1077; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 529, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 746, + 747, + 748, + 749, + 750, + 751, + 752, + 753, + 754, + 755, + 756, + 757, + 758, + 759, + 760, + 761, + 762, + 763, + 764, + 765, + 766, + 767, + 768, + 769, + 770, + 771, + 772, + 773, + 774, + 775, + 776, + 777, + 778, + 779, + 780, + 781, + 782, + 783, + 784, + 785, + 786, + 787, + 788, + 789, + 790, + 791, + 792, + 1035, + 1036, + 1037, + 1038, + 1039, + 1040, + 1041, + 1042, + 1043, + 1044, + 1045, + 1046, + 1047, + 1048, + 1049, + 1050, + 1051, + 1052, + 1053, + 1054, + 1055, + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063, + 1064, + 1065, + 1066, + 1067, + 1068, + 1069, + 1070, + 1071, + 1072, + 1073, + 1074, + 1075, + 1076, + 1077, + 1078, + 1079, + 1080, + 1081, + 1082, + 1083, + 1084, + 1085, + 1086, + 1087, + 1088, + 1152, + 1153, + 1154, + 1155, + 1156, + 1157, + 1158, + 1159, + 1160, + 1161, + 1162, + 1163, + 1333, + 1334, + 1335, + 1336, + 1337, + 1338, + 1339, + 1340, + 1705, + 1706, + 1729, + 1730, + 1745, + 1746, + 1747, + 1748, + 1749, + 1750, + 1751, + 1752, + 1797, + 1798, + 1799, + 1800, + 1917, + 1918, + 1919, + 1920, + 1921, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948, + 1949, + 1950, + 1951, + 1952, + 1953, + 1954, + 1955, + 1956, + 1957, + 1958, + 1959, + 1960, + 1961, + 1962, + 1963, + 1964, + 1965, + 1966, + 1967, + 1968, + 1969, + 1970, + 1971, + 1972, + 1973, + 1974, + 1975, + 1976, + 1977, + 1978, + 1979, + 1980, + 2081, + 2082, + 2083, + 2084, + 2085, + 2086, + 2087, + 2088, + 2089, + 2090, + 2091, + 2092, + 2093, + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123, + 2124, + 2125, + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133, + 2134, + 2135, + 2136, + 2137, + 2138, + 2139, + 2140, + 2141, + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271, + 2272, + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280, + 2281, + 2282, + 2283, + 2284, + 2285, + 2286, + 2287, + 2288, + 2289, + 2290, + 2291, + 2292, + 2293, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2308, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350, + 2351, + 2352, + 2353, + 2354, + 2355, + 2356, + 2357, + 2358, + 2359, + 2360, + 2399, + 2400, + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410, + 2513, + 2514, + 2515, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524, + 2525, + 2526, + 2527, + 2528, + 2529, + 2530, + 2531, + 2532, + 2533, + 2534, + 2535, + 2536, + 2537, + 2538, + 2539, + 2540, + 2541, + 2542, + 2543, + 2544, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2551, + 3028, + 3029, + 3030, + 3031, + 3032, + 3033, + 3037, + 3038, + 3082, + 3083, + 3084, + 3085, + 3086, + 3087, + 3088, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095, + 3096, + 3097, + 3098, + 3161, + 3162, + 3163, + 3164, + 3165, + 3166, + 3167, + 3168, + 3169, + 3170, + 3171, + 3172, + 3173, + 3174, + 3175, + 3176, + 3177, + 3178, + 3179, + 3180, + 3181, + 3182, + 3183, + 3184, + 3185, + 3186, + 3187, + 3188, + 3189, + 3190, + 3191, + 3192, + 3193, + 3194, + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203, + 3204, + 3205, + 3206, + 3207, + 3208, + 3209, + 3210, + 3211, + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229, + 3230, + 3395, + 3396, + 3397, + 3398, + 3399, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423, + 3424, + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436, + 3437, + 3438, + 3439, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3696, + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726, + 3727, + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3994, + 3995, + 3996, + 3997, + 3998, + 3999, + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006, + 4007, + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4096, + 4097, + 4098, + 4099, + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4638, + 4639, + 4662, + 4663, + 4678, + 4679, + 4680, + 4681, + 4682, + 4683, + 4684, + 4685, + 4834, + 4835, + 4836, + 4847, + 4848, + 4849, + 4850, + 4851, + 4852, + 4853, + 4854, + 4855, + 4856, + 4857, + 4858, + 4859, + 4860, + 4861, + 4862, + 4863, + 4864, + 4865, + 4866, + 4867, + 4868, + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875, + 4876, + 4877, + 4878, + 4879, + 4880, + 4881, + 4882, + 4883, + 4884, + 4885, + 4886, + 4887, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995, + 4996, + 4997, + 4998, + 4999, + 5000, + 5001, + 5002, + 5003, + 5004, + 5005, + 5006, + 5007, + 5008, + 5009, + 5010, + 5011, + 5012, + 5013, + 5014, + 5015, + 5016, + 5017, + 5018, + 5019, + 5020, + 5021, + 5022, + 5023, + 5024, + 5025, + 5026, + 5027, + 5028, + 5029, + 5030, + 5031, + 5032, + 5033, + 5034, + 5035, + 5036, + 5037, + 5038, + 5039, + 5040, + 5041, + 5042, + 5043, + 5044, + 5045, + 5046, + 5047, + 5048, + 5049, + 5050, + 5051, + 5052, + 5053, + 5054, + 5055, + 5112, + 5113, + 5114, + 5115, + 5116, + 5117, + 5148, + 5149, + 5150, + 5151, + 5152, + 5153, + 5160, + 5161, + 5162, + 5163, + 5164, + 5165, + 5166, + 5167, + 5168, + 5169, + 5170, + 5171, + 5172, + 5173, + 5174, + 5175, + 5176, + 5177, + 5178, + 5179, + 5180, + 5181, + 5182, + 5183, + 5184, + 5185, + 5186, + 5187, + 5188, + 5189, + 5190, + 5191, + 5192, + 5193, + 5194, + 5195, + 5196, + 5197, + 5198, + 5199, + 5200, + 5201, + 5202, + 5203, + 5204, + 5227, + 5228, + 5229, + 5230, + 5231, + 5232, + 5233, + 5234, + 5235, + 5236, + 5237, + 5238, + 5239, + 5240, + 5241, + 5242, + 5243, + 5244, + 5245, + 5246, + 5247, + 5248, + 5249, + 5250, + 5251, + 5278, + 5279, + 5280, + 5281, + 5282, + 5283, + 5284, + 5285, + 5286, + 5287, + 5288, + 5289, + 5376, + 5377, + 5378, + 5379, + 5380, + 5381, + 5382, + 5383, + 5384, + 5385, + 5386, + 5387, + 5388, + 5389, + 5390, + 5391, + 5392, + 5393, + 5394, + 5395, + 5396, + 5397, + 5398, + 5399, + 5400, + 5401, + 5402, + 5403, + 5404, + 5405, + 5406, + 5407, + 5408, + 5409, + 5410, + 5411, + 5412, + 5413, + 5414, + 6189, + 6190, + 6194, + 6195, + 6196, + 6197, + 6198, + 6199, + 6200, + 6201; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-0.000000,-6.600000,1.000000;; + } + + SkinWeights { + "Frame4_L_Kata_Base"; + 56; + 4583, + 4584, + 4585, + 4586, + 4587, + 4588, + 4589, + 4590, + 4591, + 4592, + 4593, + 4594, + 4603, + 4604, + 4605, + 4606, + 4607, + 4608, + 4609, + 4610, + 4611, + 4612, + 4613, + 4614, + 4615, + 4616, + 4617, + 4618, + 4619, + 4620, + 4621, + 4622, + 4623, + 4624, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648, + 4649, + 4650, + 4651, + 4652, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658, + 4659, + 4660, + 4661; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000,1.000000,0.000000,1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-9.450001,-0.449997,-1.051190,1.000000;; + } + + SkinWeights { + "Frame5_L_Ueude"; + 52; + 3861, + 3862, + 3863, + 3864, + 3865, + 3866, + 3867, + 3868, + 3925, + 3926, + 3927, + 3928, + 3929, + 3930, + 3931, + 3932, + 4485, + 4486, + 4487, + 4488, + 4489, + 4490, + 4491, + 4492, + 4493, + 4494, + 4495, + 4496, + 4497, + 4498, + 4499, + 4500, + 4501, + 4502, + 4559, + 4560, + 4561, + 4562, + 4563, + 4564, + 4565, + 4566, + 4567, + 4568, + 4569, + 4570, + 4571, + 4572, + 4573, + 4574, + 4575, + 4576; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000,1.000000,0.000000,1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-9.480000,-0.459996,-2.051189,1.000000;; + } + + SkinWeights { + "Frame6_L_Hizi"; + 48; + 5767, + 5768, + 5769, + 5770, + 5771, + 5772, + 5773, + 5774, + 5775, + 5776, + 5777, + 5778, + 5779, + 5780, + 5781, + 5782, + 5783, + 5784, + 5785, + 5786, + 5787, + 5788, + 5789, + 5790, + 5791, + 5792, + 5793, + 5794, + 5795, + 5796, + 5797, + 5798, + 5799, + 5800, + 5801, + 5802, + 5803, + 5804, + 5805, + 5806, + 5807, + 5808, + 5809, + 5810, + 5811, + 5812, + 5813, + 5814; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000001,-0.000000,1.000000,0.000000,1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,-9.479997,-0.459996,-3.551198,1.000000;; + } + + SkinWeights { + "Frame7_L_Sitaude"; + 209; + 3738, + 3739, + 3740, + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3797, + 3798, + 3799, + 3800, + 3801, + 3802, + 3803, + 3804, + 3821, + 3822, + 3823, + 3824, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3834, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281, + 4282, + 4283, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4295, + 4296, + 4297, + 4298, + 4299, + 4300, + 4301, + 4369, + 4370, + 4371, + 4372, + 4373, + 4374, + 4375, + 4376, + 4377, + 4378, + 4395, + 4396, + 4397, + 4398, + 4399, + 4400, + 4401, + 4402, + 4403, + 4404, + 4405, + 4406, + 4407, + 4408, + 4409, + 4410, + 4411, + 4412, + 4413, + 4414, + 4415, + 4416, + 4417, + 4418, + 4419, + 4420, + 4421, + 4422, + 4423, + 4424, + 4425, + 4426, + 4427, + 4428, + 4429, + 4430, + 4431, + 4432, + 4433, + 4434, + 4435, + 4436, + 4437, + 4438, + 4439, + 4440, + 4441, + 4442, + 4443, + 4444, + 4445, + 4446, + 4447, + 4448, + 4449, + 4450, + 4451, + 4452, + 4453, + 4454, + 4455, + 4456, + 4457, + 4458, + 4459, + 4460, + 4461, + 4462, + 4463, + 4464, + 4465, + 4466, + 4467, + 4468, + 4469, + 4470, + 4471, + 4472, + 4473, + 4474, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4920, + 4921, + 4922, + 4923, + 4924, + 4925, + 4926, + 4927, + 4928, + 4929, + 4930, + 4931, + 4932, + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000001,-0.000000,1.000000,0.000000,1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,-9.479997,-0.459996,-4.001198,1.000000;; + } + + SkinWeights { + "Frame8_L_kata_Armer"; + 220; + 3877, + 3878, + 3879, + 3880, + 3881, + 3882, + 3883, + 3884, + 3885, + 3886, + 3887, + 3888, + 3889, + 3890, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3933, + 3934, + 3935, + 3936, + 3937, + 3938, + 3939, + 3940, + 3941, + 3942, + 3943, + 3944, + 3945, + 3946, + 3947, + 3948, + 3949, + 3950, + 3951, + 3952, + 3953, + 3954, + 3955, + 3956, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3966, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081, + 4082, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088, + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4545, + 4546, + 4547, + 4548, + 4549, + 4550, + 4551, + 4552, + 4553, + 4554, + 4555, + 4556, + 4557, + 4558, + 4595, + 4596, + 4597, + 4598, + 4599, + 4600, + 4601, + 4602, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4946, + 4947, + 4948, + 4949, + 4950, + 4951, + 4952, + 4953, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975, + 4976, + 4977, + 4978, + 4979, + 4980, + 4981, + 4982, + 4983, + 4984, + 4985, + 4986, + 4987, + 5086, + 5087, + 5088, + 5089, + 5090, + 5091, + 5092, + 5093, + 5094, + 5095, + 5096, + 5097, + 5098, + 5099, + 5100, + 5101, + 5102, + 5103, + 5104, + 5105, + 5106, + 5107, + 5108, + 5109, + 5110, + 5111; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.234641,-0.000000,0.972082,0.000000,0.972082,-0.000000,0.234641,0.000000,0.000000,1.000000,0.000000,0.000000,-8.798740,-0.449997,-3.822448,1.000000;; + } + + SkinWeights { + "Frame9_L_Kata_S_Joint_1"; + 96; + 3851, + 3852, + 3853, + 3854, + 3900, + 3901, + 3902, + 3903, + 3904, + 3905, + 4475, + 4476, + 4477, + 4478, + 4527, + 4528, + 4529, + 4530, + 4531, + 4532, + 5815, + 5816, + 5817, + 5818, + 5819, + 5820, + 5821, + 5822, + 5823, + 5824, + 5825, + 5826, + 5827, + 5828, + 5829, + 5830, + 5831, + 5832, + 5833, + 5834, + 5835, + 5836, + 5837, + 5838, + 5839, + 5840, + 5841, + 5842, + 5843, + 5844, + 5845, + 5846, + 5847, + 5848, + 5849, + 5850, + 5851, + 5852, + 5853, + 5854, + 5855, + 5856, + 5857, + 5858, + 5859, + 5860, + 5861, + 5862, + 5863, + 5864, + 5865, + 5866, + 5867, + 5868, + 5869, + 5870, + 5871, + 5872, + 5873, + 5874, + 5875, + 5876, + 5877, + 5878, + 5879, + 5880, + 5881, + 5882, + 5883, + 5884, + 5885, + 5886, + 5887, + 5888, + 5889, + 5890; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.036128,-0.000000,0.999347,0.000000,0.999347,-0.000000,0.036128,0.000000,0.000000,1.000000,0.000000,0.000000,-9.681562,-0.449997,-3.453222,1.000000;; + } + + SkinWeights { + "Frame10_L_kata_S_Joint_2"; + 62; + 3805, + 3806, + 3807, + 3808, + 3809, + 3810, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 4479, + 4480, + 4481, + 4482, + 4483, + 4484, + 4533, + 4534, + 4535, + 4536, + 4537, + 4538, + 4539, + 4540, + 4541, + 4542, + 4543, + 4544, + 4577, + 4578, + 4579, + 4580, + 4581, + 4582, + 4902, + 4903, + 4904, + 4905, + 4906, + 4907, + 4945; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.036128,-0.000000,0.999347,0.000000,0.999347,-0.000000,0.036128,0.000000,0.000000,1.000000,0.000000,0.000000,-9.681562,-0.449997,-4.803222,1.000000;; + } + + SkinWeights { + "Frame11_L_Kata_S_End"; + 98; + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3811, + 3812, + 3813, + 3814, + 3815, + 3816, + 3817, + 3818, + 3819, + 3820, + 4033, + 4034, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040, + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4049, + 4050, + 4051, + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4061, + 4062, + 4811, + 4812, + 4813, + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4908, + 4909, + 4910, + 4911, + 4912, + 4913, + 4914, + 4915, + 4916, + 4917, + 4918, + 4919, + 5056, + 5057, + 5058, + 5059, + 5060, + 5061, + 5062, + 5063, + 5064, + 5065, + 5066, + 5067, + 5068, + 5069, + 5070, + 5071, + 5072, + 5073, + 5074, + 5075, + 5076, + 5077, + 5078, + 5079, + 5080, + 5081, + 5082, + 5083, + 5084, + 5085; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.999347,-0.000000,0.036128,0.000000,0.036128,-0.000000,-0.999347,0.000000,0.000000,1.000000,-0.000000,0.000000,-6.153222,-0.449997,9.681562,1.000000;; + } + + SkinWeights { + "Frame12_L_Hand"; + 440; + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760, + 3761, + 3762, + 3763, + 3764, + 3765, + 3766, + 3767, + 3768, + 3769, + 3770, + 3771, + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778, + 3779, + 3780, + 3781, + 3782, + 3783, + 3784, + 3785, + 3786, + 3787, + 3788, + 3789, + 3790, + 3791, + 3792, + 3793, + 3794, + 3795, + 3796, + 3869, + 3870, + 3871, + 3872, + 3873, + 3874, + 3875, + 3876, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319, + 4320, + 4321, + 4322, + 4323, + 4324, + 4325, + 4326, + 4327, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336, + 4337, + 4338, + 4339, + 4340, + 4341, + 4342, + 4343, + 4344, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352, + 4353, + 4354, + 4355, + 4356, + 4357, + 4358, + 4359, + 4360, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368, + 4379, + 4380, + 4381, + 4382, + 4383, + 4384, + 4385, + 4386, + 4387, + 4388, + 4389, + 4390, + 4391, + 4392, + 4393, + 4394, + 4503, + 4504, + 4505, + 4506, + 4507, + 4508, + 4509, + 4510, + 4511, + 4512, + 4513, + 4514, + 4515, + 4516, + 4517, + 4518, + 4519, + 4520, + 4521, + 4522, + 4523, + 4524, + 4525, + 4526, + 5415, + 5416, + 5417, + 5418, + 5419, + 5420, + 5421, + 5422, + 5423, + 5424, + 5425, + 5426, + 5427, + 5428, + 5429, + 5430, + 5431, + 5432, + 5433, + 5434, + 5435, + 5436, + 5437, + 5438, + 5439, + 5440, + 5441, + 5442, + 5443, + 5444, + 5445, + 5446, + 5447, + 5448, + 5449, + 5450, + 5451, + 5452, + 5453, + 5454, + 5455, + 5456, + 5457, + 5458, + 5459, + 5460, + 5461, + 5462, + 5463, + 5464, + 5465, + 5466, + 5467, + 5468, + 5469, + 5470, + 5471, + 5472, + 5473, + 5474, + 5475, + 5476, + 5477, + 5478, + 5479, + 5480, + 5481, + 5482, + 5483, + 5484, + 5485, + 5486, + 5487, + 5488, + 5489, + 5490, + 5491, + 5492, + 5493, + 5494, + 5495, + 5496, + 5497, + 5498, + 5499, + 5500, + 5501, + 5502, + 5503, + 5504, + 5505, + 5506, + 5507, + 5508, + 5509, + 5510, + 5511, + 5512, + 5513, + 5514, + 5515, + 5516, + 5517, + 5518, + 5519, + 5520, + 5521, + 5522, + 5523, + 5524, + 5525, + 5526, + 5527, + 5528, + 5529, + 5530, + 5531, + 5532, + 5533, + 5534, + 5535, + 5536, + 5537, + 5538, + 5539, + 5540, + 5541, + 5542, + 5543, + 5544, + 5545, + 5546, + 5547, + 5548, + 5549, + 5550, + 5551, + 5552, + 5553, + 5554, + 5555, + 5556, + 5557, + 5558, + 5559, + 5560, + 5561, + 5562, + 5563, + 5564, + 5565, + 5566, + 5567, + 5568, + 5569, + 5570, + 5571, + 5572, + 5573, + 5574, + 5575, + 5576, + 5577, + 5578, + 5579, + 5580, + 5581, + 5582, + 5583, + 5584, + 5585, + 5586, + 5587, + 5588, + 5589, + 5590, + 5591, + 5592, + 5593, + 5594, + 5595, + 5596, + 5597, + 5598, + 5599, + 5600, + 5601, + 5602, + 5603, + 5604, + 5605, + 5606, + 5607, + 5608, + 5609, + 5610, + 5611, + 5612, + 5613, + 5614, + 5615, + 5616, + 5617, + 5618, + 5619, + 5620, + 5621, + 5622, + 5623, + 5624, + 5625, + 5626, + 5627, + 5628, + 5629, + 5630, + 5631, + 5632, + 5633, + 5634, + 5635, + 5636, + 5637, + 5638, + 5639, + 5640, + 5641, + 5642, + 5643, + 5644, + 5645, + 5646, + 5647, + 5648, + 5649, + 5650, + 5651, + 5652, + 5653, + 5654, + 5655, + 5656, + 5657, + 5658, + 5659, + 5660, + 5661, + 5662, + 5663, + 5664, + 5665, + 5666, + 5667, + 5668, + 5669, + 5670, + 5671, + 5672, + 5673, + 5674, + 5675, + 5676, + 5677, + 5678, + 5679, + 5680, + 5681, + 5682, + 5683, + 5684, + 5685, + 5686, + 5687, + 5688, + 5689, + 5690, + 5691, + 5692, + 5693, + 5694; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000001,-0.000000,1.000000,0.000000,1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,-9.479997,-0.739996,-6.001198,1.000000;; + } + + SkinWeights { + "Frame13_Kosi"; + 399; + 10, + 11, + 12, + 13, + 27, + 28, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 1874, + 1875, + 1876, + 1877, + 1878, + 1879, + 1880, + 1881, + 1882, + 1883, + 1884, + 1885, + 1886, + 1887, + 1888, + 1889, + 1890, + 1891, + 1892, + 1893, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932, + 1933, + 1934, + 1935, + 2256, + 2257, + 2258, + 2259, + 2260, + 2261, + 2262, + 2263, + 2832, + 2833, + 2834, + 2835, + 2836, + 2837, + 2838, + 2839, + 2840, + 2841, + 2842, + 2843, + 2844, + 2845, + 2846, + 2847, + 2848, + 2849, + 2850, + 2851, + 2852, + 2853, + 2854, + 2855, + 2856, + 2857, + 2858, + 2859, + 2860, + 2861, + 2862, + 2863, + 2864, + 2865, + 2866, + 2867, + 2868, + 2869, + 2870, + 2871, + 2872, + 2873, + 2874, + 2875, + 2876, + 2877, + 2878, + 2879, + 2880, + 2881, + 2882, + 2883, + 2884, + 2885, + 2886, + 2887, + 2888, + 2889, + 2890, + 2891, + 2892, + 2893, + 2894, + 2895, + 2896, + 2897, + 2898, + 2899, + 2900, + 2901, + 2902, + 2903, + 3034, + 3035, + 3067, + 3068, + 3069, + 3070, + 3071, + 3072, + 3073, + 3074, + 3075, + 3076, + 3077, + 3078, + 3079, + 3080, + 3081, + 3129, + 3130, + 3131, + 3132, + 3133, + 3134, + 3135, + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143, + 3144, + 3145, + 3146, + 3147, + 3148, + 3149, + 3150, + 3151, + 3152, + 3153, + 3154, + 3155, + 3156, + 3157, + 3158, + 3159, + 3160, + 3363, + 3364, + 3365, + 3366, + 3367, + 3368, + 3369, + 3370, + 3371, + 3372, + 3373, + 3374, + 3375, + 3376, + 3400, + 3401, + 3402, + 3403, + 3404, + 3405, + 3406, + 3407, + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 4796, + 4797, + 4798, + 4799, + 4800, + 4801, + 4802, + 4803, + 4804, + 4805, + 4806, + 4807, + 4808, + 4809, + 4810, + 4837, + 4838, + 4839, + 4840, + 4841, + 4842, + 4843, + 4844, + 4845, + 4846, + 5154, + 5155, + 5156, + 5157, + 5158, + 5159, + 5695, + 5696, + 5697, + 5698, + 5699, + 5700, + 5701, + 5702, + 5703, + 5704, + 5705, + 5706, + 5707, + 5708, + 5709, + 5710, + 5711, + 5712, + 5713, + 5714, + 5715, + 5716, + 5717, + 5718, + 5719, + 5720, + 5721, + 5722, + 5723, + 5724, + 5725, + 5726, + 5727, + 5728, + 5729, + 5730, + 5731, + 5732, + 5733, + 5734, + 5735, + 5736, + 5737, + 5738, + 5739, + 5740, + 5741, + 5742, + 5743, + 5744, + 5745, + 5746, + 5747, + 5748, + 5749, + 5750, + 5751, + 5752, + 5753, + 5754, + 5755, + 5756, + 5757, + 5758, + 5759, + 5760, + 5761, + 5762, + 5763, + 5764, + 5765, + 5766; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,0.000000,0.000000,0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,6.600000,1.000000;; + } + + SkinWeights { + "Frame15_L_momo"; + 285; + 3042, + 3121, + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3336, + 3337, + 3338, + 3339, + 3340, + 3347, + 3348, + 3349, + 3350, + 3354, + 3355, + 3356, + 3377, + 3378, + 3379, + 3380, + 3381, + 3382, + 3383, + 3384, + 3385, + 3386, + 3387, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3550, + 3551, + 3552, + 3597, + 3598, + 3599, + 3685, + 4208, + 4209, + 4210, + 4226, + 4227, + 4228, + 4253, + 4254, + 4258, + 4261, + 4262, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4792, + 4793, + 4794, + 4795, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832, + 4833, + 5290, + 5291, + 5292, + 5293, + 5294, + 5295, + 5296, + 5297, + 5298, + 5299, + 5300, + 5301, + 5302, + 5303, + 5304, + 5305, + 5306, + 5307, + 5308, + 5309, + 5310, + 5311, + 5312, + 5313, + 5314, + 5315, + 5316, + 5317, + 5318, + 5319, + 5320, + 5321, + 5322, + 5323, + 5324, + 5325, + 5326, + 5327, + 5328, + 5329, + 5330, + 5331, + 5332, + 5333, + 5334, + 5335, + 5336, + 5337, + 5338, + 5339, + 5340, + 5341, + 5342, + 5343, + 6040, + 6041, + 6042, + 6043, + 6044, + 6045, + 6046, + 6047, + 6048, + 6049, + 6050, + 6051, + 6052, + 6053, + 6054, + 6055, + 6056, + 6057, + 6058, + 6059, + 6060, + 6061, + 6062, + 6063, + 6064, + 6065, + 6066, + 6067, + 6068, + 6069, + 6070, + 6071, + 6072, + 6073, + 6074, + 6075, + 6076, + 6077, + 6078, + 6079, + 6080, + 6081, + 6082, + 6083, + 6084, + 6085, + 6086, + 6087, + 6088, + 6089, + 6090, + 6091, + 6092, + 6093, + 6094, + 6095, + 6096, + 6097, + 6098, + 6099, + 6100, + 6101, + 6102, + 6103, + 6104, + 6105, + 6106, + 6107, + 6108, + 6109, + 6110, + 6111, + 6112, + 6113, + 6114, + 6115, + 6116, + 6117, + 6118, + 6119, + 6120, + 6121, + 6122, + 6123, + 6124, + 6125, + 6126, + 6127, + 6128, + 6129, + 6130, + 6131, + 6132, + 6133, + 6134, + 6135, + 6136, + 6137, + 6138, + 6139, + 6140, + 6141, + 6142, + 6143, + 6144, + 6145, + 6146, + 6147, + 6148, + 6149, + 6150, + 6151, + 6152, + 6153, + 6154, + 6155, + 6156, + 6157, + 6158, + 6159, + 6160, + 6161, + 6162, + 6163, + 6164, + 6165, + 6166, + 6167, + 6168, + 6169, + 6170, + 6171, + 6172, + 6173, + 6174, + 6175, + 6176, + 6177, + 6178, + 6179, + 6180, + 6181, + 6182, + 6183, + 6184, + 6185, + 6186, + 6187, + 6188; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.650000,-0.000000,5.950000,1.000000;; + } + + SkinWeights { + "Frame16_L_Hiza"; + 119; + 3308, + 3309, + 3310, + 3311, + 3316, + 3317, + 3318, + 3319, + 3329, + 3330, + 3331, + 3332, + 3562, + 3563, + 3564, + 3565, + 3566, + 3567, + 3568, + 3569, + 3570, + 3571, + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578, + 3579, + 3580, + 3581, + 3582, + 3583, + 3584, + 3585, + 3586, + 3587, + 3588, + 3589, + 3590, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637, + 3638, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3663, + 3664, + 3665, + 3666, + 3667, + 3669, + 3670, + 3671, + 3674, + 3675, + 3676, + 3677, + 3678, + 4213, + 4214, + 4215, + 4216, + 4217, + 4218, + 4219, + 4220, + 4230, + 4231, + 4232, + 4233, + 4234, + 4245, + 4246, + 4247, + 4248, + 4249, + 4250, + 4251, + 4252, + 4255, + 4256, + 4257, + 4259, + 4260, + 4263, + 4264, + 4265; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.650000,-0.000000,4.550000,1.000000;; + } + + SkinWeights { + "Frame17_L_Sune"; + 245; + 3041, + 3043, + 3044, + 3045, + 3046, + 3047, + 3053, + 3246, + 3247, + 3248, + 3254, + 3255, + 3268, + 3269, + 3270, + 3271, + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278, + 3279, + 3280, + 3281, + 3282, + 3283, + 3284, + 3285, + 3286, + 3287, + 3288, + 3289, + 3290, + 3291, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298, + 3299, + 3300, + 3301, + 3302, + 3303, + 3304, + 3305, + 3306, + 3307, + 3312, + 3313, + 3314, + 3315, + 3320, + 3321, + 3322, + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3333, + 3334, + 3335, + 3341, + 3342, + 3343, + 3344, + 3345, + 3346, + 3351, + 3352, + 3353, + 3357, + 3358, + 3359, + 3360, + 3361, + 3362, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536, + 3537, + 3538, + 3539, + 3540, + 3541, + 3542, + 3543, + 3544, + 3545, + 3546, + 3547, + 3548, + 3549, + 3553, + 3554, + 3555, + 3556, + 3557, + 3558, + 3559, + 3560, + 3561, + 3591, + 3592, + 3593, + 3594, + 3595, + 3596, + 3600, + 3601, + 3602, + 3603, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620, + 3621, + 3622, + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3659, + 3660, + 3661, + 3662, + 3668, + 3672, + 3673, + 4178, + 4179, + 4185, + 4197, + 4198, + 4199, + 4200, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4211, + 4212, + 4221, + 4222, + 4223, + 4224, + 4225, + 4229, + 4235, + 4236, + 4237, + 4238, + 4239, + 4240, + 4241, + 4242, + 4243, + 4244, + 4729, + 4730, + 4731, + 4736, + 4737, + 4744, + 4745, + 4746, + 4747, + 4748, + 4749, + 4750, + 4751, + 4752, + 4753, + 4754, + 4755, + 4756, + 4757, + 4758, + 4759, + 4760, + 4761, + 4762, + 4763, + 4764, + 4765, + 4766, + 4767, + 4768, + 4769, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, + 4778, + 4779, + 4780, + 4781, + 4782, + 4783; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.650000,-0.000000,3.750000,1.000000;; + } + + SkinWeights { + "Frame18_L_Kakato"; + 45; + 3048, + 4166, + 4167, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4177, + 4180, + 4181, + 4182, + 4183, + 4184, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192, + 4193, + 4194, + 4195, + 4196, + 4723, + 4724, + 4725, + 4726, + 4727, + 4728, + 4732, + 4733, + 4734, + 4735, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,-1.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.006428,-1.612427,0.929109,1.000000;; + } + + SkinWeights { + "Frame19_L_Tumasaki"; + 103; + 3039, + 3040, + 3049, + 3050, + 3051, + 3052, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106, + 3107, + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3115, + 3116, + 3117, + 3118, + 3119, + 3120, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240, + 3241, + 3242, + 3243, + 3244, + 3245, + 3249, + 3250, + 3251, + 3252, + 3253, + 3256, + 3257, + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264, + 3265, + 3266, + 3267, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000,1.000000,-0.000000,0.000000,0.984808,0.000000,-0.173648,0.000000,-0.173648,-0.000000,-0.984808,0.000000,-0.374465,-1.612427,0.059501,1.000000;; + } + + SkinWeights { + "Frame21_R_Kata_Base"; + 56; + 1650, + 1651, + 1652, + 1653, + 1654, + 1655, + 1656, + 1657, + 1658, + 1659, + 1660, + 1661, + 1670, + 1671, + 1672, + 1673, + 1674, + 1675, + 1676, + 1677, + 1678, + 1679, + 1680, + 1681, + 1682, + 1683, + 1684, + 1685, + 1686, + 1687, + 1688, + 1689, + 1690, + 1691, + 1707, + 1708, + 1709, + 1710, + 1711, + 1712, + 1713, + 1714, + 1715, + 1716, + 1717, + 1718, + 1719, + 1720, + 1721, + 1722, + 1723, + 1724, + 1725, + 1726, + 1727, + 1728; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.064755,0.044223,-0.996921,0.000000,-0.947266,0.316913,-0.047472,0.000000,0.313838,0.947423,0.062413,0.000000,8.916395,-3.387360,-0.625533,1.000000;; + } + + SkinWeights { + "Frame22_R_Ueude"; + 52; + 916, + 917, + 918, + 919, + 920, + 921, + 922, + 923, + 980, + 981, + 982, + 983, + 984, + 985, + 986, + 987, + 1552, + 1553, + 1554, + 1555, + 1556, + 1557, + 1558, + 1559, + 1560, + 1561, + 1562, + 1563, + 1564, + 1565, + 1566, + 1567, + 1568, + 1569, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1638, + 1639, + 1640, + 1641, + 1642, + 1643; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.064755,0.044223,-0.996921,0.000000,-0.947266,0.316913,-0.047472,0.000000,0.313838,0.947423,0.062413,0.000000,8.886395,-3.397360,-1.625533,1.000000;; + } + + SkinWeights { + "Frame23_R_Hizi"; + 48; + 2904, + 2905, + 2906, + 2907, + 2908, + 2909, + 2910, + 2911, + 2912, + 2913, + 2914, + 2915, + 2916, + 2917, + 2918, + 2919, + 2920, + 2921, + 2922, + 2923, + 2924, + 2925, + 2926, + 2927, + 2928, + 2929, + 2930, + 2931, + 2932, + 2933, + 2934, + 2935, + 2936, + 2937, + 2938, + 2939, + 2940, + 2941, + 2942, + 2943, + 2944, + 2945, + 2946, + 2947, + 2948, + 2949, + 2950, + 2951; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.064754,0.044223,-0.996921,0.000000,-0.947266,0.316913,-0.047471,0.000000,0.313838,0.947423,0.062413,0.000000,8.886393,-3.397360,-3.125541,1.000000;; + } + + SkinWeights { + "Frame24_R_Sitaude"; + 209; + 793, + 794, + 795, + 796, + 797, + 798, + 799, + 800, + 801, + 802, + 803, + 804, + 805, + 806, + 852, + 853, + 854, + 855, + 856, + 857, + 858, + 859, + 876, + 877, + 878, + 879, + 880, + 881, + 882, + 883, + 884, + 885, + 886, + 887, + 888, + 889, + 890, + 891, + 892, + 893, + 894, + 895, + 896, + 897, + 898, + 899, + 900, + 901, + 902, + 903, + 904, + 905, + 1341, + 1342, + 1343, + 1344, + 1345, + 1346, + 1347, + 1348, + 1349, + 1350, + 1351, + 1352, + 1353, + 1354, + 1355, + 1356, + 1357, + 1358, + 1359, + 1360, + 1361, + 1362, + 1363, + 1364, + 1365, + 1366, + 1367, + 1368, + 1436, + 1437, + 1438, + 1439, + 1440, + 1441, + 1442, + 1443, + 1444, + 1445, + 1462, + 1463, + 1464, + 1465, + 1466, + 1467, + 1468, + 1469, + 1470, + 1471, + 1472, + 1473, + 1474, + 1475, + 1476, + 1477, + 1478, + 1479, + 1480, + 1481, + 1482, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1489, + 1490, + 1491, + 1492, + 1493, + 1494, + 1495, + 1496, + 1497, + 1498, + 1499, + 1500, + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508, + 1509, + 1510, + 1511, + 1512, + 1513, + 1514, + 1515, + 1516, + 1517, + 1518, + 1519, + 1520, + 1521, + 1522, + 1523, + 1524, + 1525, + 1526, + 1527, + 1528, + 1529, + 1530, + 1531, + 1532, + 1533, + 1534, + 1535, + 1536, + 1537, + 1538, + 1539, + 1540, + 1541, + 1981, + 1982, + 1983, + 1984, + 1985, + 1986, + 1987, + 1988, + 1989, + 1990, + 1991, + 1992, + 1993, + 1994, + 2013, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028, + 2029, + 2030, + 2031, + 2032, + 2033, + 2034, + 2035, + 2036, + 2037; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.064754,0.044223,-0.996921,0.000000,-0.947266,0.316913,-0.047471,0.000000,0.313838,0.947423,0.062413,0.000000,8.886393,-3.397360,-3.575541,1.000000;; + } + + SkinWeights { + "Frame25_R_kata_Armer"; + 220; + 932, + 933, + 934, + 935, + 936, + 937, + 938, + 939, + 940, + 941, + 942, + 943, + 944, + 945, + 946, + 947, + 948, + 949, + 950, + 951, + 952, + 953, + 954, + 988, + 989, + 990, + 991, + 992, + 993, + 994, + 995, + 996, + 997, + 998, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008, + 1009, + 1010, + 1011, + 1012, + 1013, + 1014, + 1015, + 1016, + 1017, + 1018, + 1019, + 1020, + 1021, + 1022, + 1023, + 1024, + 1025, + 1026, + 1027, + 1028, + 1029, + 1030, + 1031, + 1032, + 1033, + 1034, + 1119, + 1120, + 1121, + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1134, + 1135, + 1136, + 1137, + 1138, + 1139, + 1140, + 1141, + 1142, + 1143, + 1144, + 1145, + 1146, + 1147, + 1148, + 1149, + 1150, + 1151, + 1612, + 1613, + 1614, + 1615, + 1616, + 1617, + 1618, + 1619, + 1620, + 1621, + 1622, + 1623, + 1624, + 1625, + 1662, + 1663, + 1664, + 1665, + 1666, + 1667, + 1668, + 1669, + 1692, + 1693, + 1694, + 1695, + 1696, + 1697, + 1698, + 1699, + 1700, + 1701, + 1702, + 1703, + 1704, + 1731, + 1732, + 1733, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743, + 1744, + 2039, + 2040, + 2041, + 2042, + 2043, + 2044, + 2045, + 2046, + 2047, + 2048, + 2049, + 2050, + 2051, + 2052, + 2053, + 2054, + 2055, + 2056, + 2057, + 2058, + 2059, + 2060, + 2061, + 2062, + 2063, + 2064, + 2065, + 2066, + 2067, + 2068, + 2069, + 2070, + 2071, + 2072, + 2073, + 2074, + 2075, + 2076, + 2077, + 2078, + 2079, + 2080, + 2182, + 2183, + 2184, + 2185, + 2186, + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2206, + 2207; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.146871,0.044223,-0.988167,0.000000,-0.935984,0.316913,0.153298,0.000000,0.319942,0.947423,-0.005153,0.000000,8.457630,-3.387360,-3.077746,1.000000;; + } + + SkinWeights { + "Frame26_R_Kata_S_Joint_1"; + 96; + 906, + 907, + 908, + 909, + 955, + 956, + 957, + 958, + 959, + 960, + 1542, + 1543, + 1544, + 1545, + 1594, + 1595, + 1596, + 1597, + 1598, + 1599, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958, + 2959, + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969, + 2970, + 2971, + 2972, + 2973, + 2974, + 2975, + 2976, + 2977, + 2978, + 2979, + 2980, + 2981, + 2982, + 2983, + 2984, + 2985, + 2986, + 2987, + 2988, + 2989, + 2990, + 2991, + 2992, + 2993, + 2994, + 2995, + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004, + 3005, + 3006, + 3007, + 3008, + 3009, + 3010, + 3011, + 3012, + 3013, + 3014, + 3015, + 3016, + 3017, + 3018, + 3019, + 3020, + 3021, + 3022, + 3023, + 3024, + 3025, + 3026, + 3027; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.025210,0.044223,-0.998703,0.000000,-0.948403,0.316913,-0.009907,0.000000,0.316064,0.947423,0.049931,0.000000,9.117301,-3.387360,-3.047236,1.000000;; + } + + SkinWeights { + "Frame27_R_kata_S_Joint_2"; + 62; + 860, + 861, + 862, + 863, + 864, + 865, + 910, + 911, + 912, + 913, + 914, + 915, + 961, + 962, + 963, + 964, + 965, + 966, + 967, + 968, + 969, + 970, + 971, + 972, + 973, + 974, + 975, + 976, + 977, + 978, + 979, + 1546, + 1547, + 1548, + 1549, + 1550, + 1551, + 1600, + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608, + 1609, + 1610, + 1611, + 1644, + 1645, + 1646, + 1647, + 1648, + 1649, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 2038; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.025210,0.044223,-0.998703,0.000000,-0.948403,0.316913,-0.009907,0.000000,0.316064,0.947423,0.049931,0.000000,9.117301,-3.387360,-4.397236,1.000000;; + } + + SkinWeights { + "Frame28_R_Kata_S_End"; + 98; + 729, + 730, + 731, + 732, + 733, + 734, + 866, + 867, + 868, + 869, + 870, + 871, + 872, + 873, + 874, + 875, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109, + 1110, + 1111, + 1112, + 1113, + 1114, + 1115, + 1116, + 1117, + 1118, + 1894, + 1895, + 1896, + 1897, + 1898, + 1899, + 1900, + 1901, + 1902, + 1903, + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2012, + 2152, + 2153, + 2154, + 2155, + 2156, + 2157, + 2158, + 2159, + 2160, + 2161, + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169, + 2170, + 2171, + 2172, + 2173, + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.998703,0.044223,0.025210,0.000000,0.009907,0.316913,-0.948403,0.000000,-0.049931,0.947423,0.316064,0.000000,5.747236,-3.387360,9.117301,1.000000;; + } + + SkinWeights { + "Frame29_R_Hand"; + 440; + 807, + 808, + 809, + 810, + 811, + 812, + 813, + 814, + 815, + 816, + 817, + 818, + 819, + 820, + 821, + 822, + 823, + 824, + 825, + 826, + 827, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 836, + 837, + 838, + 839, + 840, + 841, + 842, + 843, + 844, + 845, + 846, + 847, + 848, + 849, + 850, + 851, + 924, + 925, + 926, + 927, + 928, + 929, + 930, + 931, + 1369, + 1370, + 1371, + 1372, + 1373, + 1374, + 1375, + 1376, + 1377, + 1378, + 1379, + 1380, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1387, + 1388, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1395, + 1396, + 1397, + 1398, + 1399, + 1400, + 1401, + 1402, + 1403, + 1404, + 1405, + 1406, + 1407, + 1408, + 1409, + 1410, + 1411, + 1412, + 1413, + 1414, + 1415, + 1416, + 1417, + 1418, + 1419, + 1420, + 1421, + 1422, + 1423, + 1424, + 1425, + 1426, + 1427, + 1428, + 1429, + 1430, + 1431, + 1432, + 1433, + 1434, + 1435, + 1446, + 1447, + 1448, + 1449, + 1450, + 1451, + 1452, + 1453, + 1454, + 1455, + 1456, + 1457, + 1458, + 1459, + 1460, + 1461, + 1570, + 1571, + 1572, + 1573, + 1574, + 1575, + 1576, + 1577, + 1578, + 1579, + 1580, + 1581, + 1582, + 1583, + 1584, + 1585, + 1586, + 1587, + 1588, + 1589, + 1590, + 1591, + 1592, + 1593, + 2552, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2559, + 2560, + 2561, + 2562, + 2563, + 2564, + 2565, + 2566, + 2567, + 2568, + 2569, + 2570, + 2571, + 2572, + 2573, + 2574, + 2575, + 2576, + 2577, + 2578, + 2579, + 2580, + 2581, + 2582, + 2583, + 2584, + 2585, + 2586, + 2587, + 2588, + 2589, + 2590, + 2591, + 2592, + 2593, + 2594, + 2595, + 2596, + 2597, + 2598, + 2599, + 2600, + 2601, + 2602, + 2603, + 2604, + 2605, + 2606, + 2607, + 2608, + 2609, + 2610, + 2611, + 2612, + 2613, + 2614, + 2615, + 2616, + 2617, + 2618, + 2619, + 2620, + 2621, + 2622, + 2623, + 2624, + 2625, + 2626, + 2627, + 2628, + 2629, + 2630, + 2631, + 2632, + 2633, + 2634, + 2635, + 2636, + 2637, + 2638, + 2639, + 2640, + 2641, + 2642, + 2643, + 2644, + 2645, + 2646, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2653, + 2654, + 2655, + 2656, + 2657, + 2658, + 2659, + 2660, + 2661, + 2662, + 2663, + 2664, + 2665, + 2666, + 2667, + 2668, + 2669, + 2670, + 2671, + 2672, + 2673, + 2674, + 2675, + 2676, + 2677, + 2678, + 2679, + 2680, + 2681, + 2682, + 2683, + 2684, + 2685, + 2686, + 2687, + 2688, + 2689, + 2690, + 2691, + 2692, + 2693, + 2694, + 2695, + 2696, + 2697, + 2698, + 2699, + 2700, + 2701, + 2702, + 2703, + 2704, + 2705, + 2706, + 2707, + 2708, + 2709, + 2710, + 2711, + 2712, + 2713, + 2714, + 2715, + 2716, + 2717, + 2718, + 2719, + 2720, + 2721, + 2722, + 2723, + 2724, + 2725, + 2726, + 2727, + 2728, + 2729, + 2730, + 2731, + 2732, + 2733, + 2734, + 2735, + 2736, + 2737, + 2738, + 2739, + 2740, + 2741, + 2742, + 2743, + 2744, + 2745, + 2746, + 2747, + 2748, + 2749, + 2750, + 2751, + 2752, + 2753, + 2754, + 2755, + 2756, + 2757, + 2758, + 2759, + 2760, + 2761, + 2762, + 2763, + 2764, + 2765, + 2766, + 2767, + 2768, + 2769, + 2770, + 2771, + 2772, + 2773, + 2774, + 2775, + 2776, + 2777, + 2778, + 2779, + 2780, + 2781, + 2782, + 2783, + 2784, + 2785, + 2786, + 2787, + 2788, + 2789, + 2790, + 2791, + 2792, + 2793, + 2794, + 2795, + 2796, + 2797, + 2798, + 2799, + 2800, + 2801, + 2802, + 2803, + 2804, + 2805, + 2806, + 2807, + 2808, + 2809, + 2810, + 2811, + 2812, + 2813, + 2814, + 2815, + 2816, + 2817, + 2818, + 2819, + 2820, + 2821, + 2822, + 2823, + 2824, + 2825, + 2826, + 2827, + 2828, + 2829, + 2830, + 2831; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.064754,0.044223,-0.996921,0.000000,-0.947266,0.316913,-0.047471,0.000000,0.313838,0.947423,0.062413,0.000000,8.886393,-3.397360,-5.575541,1.000000;; + } + + SkinWeights { + "Frame31_R_momo"; + 285; + 36, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 358, + 359, + 360, + 361, + 362, + 369, + 370, + 371, + 372, + 376, + 377, + 378, + 402, + 403, + 404, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 600, + 601, + 602, + 647, + 648, + 649, + 735, + 1275, + 1276, + 1277, + 1293, + 1294, + 1295, + 1320, + 1321, + 1325, + 1328, + 1329, + 1862, + 1863, + 1864, + 1865, + 1866, + 1867, + 1868, + 1869, + 1870, + 1871, + 1872, + 1873, + 1904, + 1905, + 1906, + 1907, + 1908, + 1909, + 1910, + 1911, + 1912, + 1913, + 1914, + 1915, + 1916, + 2411, + 2412, + 2413, + 2414, + 2415, + 2416, + 2417, + 2418, + 2419, + 2420, + 2421, + 2422, + 2423, + 2424, + 2425, + 2426, + 2427, + 2428, + 2429, + 2430, + 2431, + 2432, + 2433, + 2434, + 2435, + 2436, + 2437, + 2438, + 2439, + 2440, + 2441, + 2442, + 2443, + 2444, + 2445, + 2446, + 2447, + 2448, + 2449, + 2450, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 5891, + 5892, + 5893, + 5894, + 5895, + 5896, + 5897, + 5898, + 5899, + 5900, + 5901, + 5902, + 5903, + 5904, + 5905, + 5906, + 5907, + 5908, + 5909, + 5910, + 5911, + 5912, + 5913, + 5914, + 5915, + 5916, + 5917, + 5918, + 5919, + 5920, + 5921, + 5922, + 5923, + 5924, + 5925, + 5926, + 5927, + 5928, + 5929, + 5930, + 5931, + 5932, + 5933, + 5934, + 5935, + 5936, + 5937, + 5938, + 5939, + 5940, + 5941, + 5942, + 5943, + 5944, + 5945, + 5946, + 5947, + 5948, + 5949, + 5950, + 5951, + 5952, + 5953, + 5954, + 5955, + 5956, + 5957, + 5958, + 5959, + 5960, + 5961, + 5962, + 5963, + 5964, + 5965, + 5966, + 5967, + 5968, + 5969, + 5970, + 5971, + 5972, + 5973, + 5974, + 5975, + 5976, + 5977, + 5978, + 5979, + 5980, + 5981, + 5982, + 5983, + 5984, + 5985, + 5986, + 5987, + 5988, + 5989, + 5990, + 5991, + 5992, + 5993, + 5994, + 5995, + 5996, + 5997, + 5998, + 5999, + 6000, + 6001, + 6002, + 6003, + 6004, + 6005, + 6006, + 6007, + 6008, + 6009, + 6010, + 6011, + 6012, + 6013, + 6014, + 6015, + 6016, + 6017, + 6018, + 6019, + 6020, + 6021, + 6022, + 6023, + 6024, + 6025, + 6026, + 6027, + 6028, + 6029, + 6030, + 6031, + 6032, + 6033, + 6034, + 6035, + 6036, + 6037, + 6038, + 6039; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.650000,-0.000000,5.950000,1.000000;; + } + + SkinWeights { + "Frame32_R_Hiza"; + 119; + 330, + 331, + 332, + 333, + 338, + 339, + 340, + 341, + 351, + 352, + 353, + 354, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695, + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 713, + 714, + 715, + 716, + 717, + 719, + 720, + 721, + 724, + 725, + 726, + 727, + 728, + 1280, + 1281, + 1282, + 1283, + 1284, + 1285, + 1286, + 1287, + 1297, + 1298, + 1299, + 1300, + 1301, + 1312, + 1313, + 1314, + 1315, + 1316, + 1317, + 1318, + 1319, + 1322, + 1323, + 1324, + 1326, + 1327, + 1330, + 1331, + 1332; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,0.000000,0.000000,0.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.650000,-0.000000,4.550000,1.000000;; + } + + SkinWeights { + "Frame33_R_Sune"; + 245; + 35, + 37, + 38, + 39, + 40, + 41, + 47, + 268, + 269, + 270, + 276, + 277, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 334, + 335, + 336, + 337, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 355, + 356, + 357, + 363, + 364, + 365, + 366, + 367, + 368, + 373, + 374, + 375, + 379, + 380, + 381, + 382, + 383, + 384, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575, + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 641, + 642, + 643, + 644, + 645, + 646, + 650, + 651, + 652, + 653, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671, + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 709, + 710, + 711, + 712, + 718, + 722, + 723, + 1245, + 1246, + 1252, + 1264, + 1265, + 1266, + 1267, + 1268, + 1269, + 1270, + 1271, + 1272, + 1273, + 1274, + 1278, + 1279, + 1288, + 1289, + 1290, + 1291, + 1292, + 1296, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307, + 1308, + 1309, + 1310, + 1311, + 1807, + 1808, + 1809, + 1814, + 1815, + 1822, + 1823, + 1824, + 1825, + 1826, + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833, + 1834, + 1835, + 1836, + 1837, + 1838, + 1839, + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846, + 1847, + 1848, + 1849, + 1850, + 1851, + 1852, + 1853, + 1854, + 1855, + 1856, + 1857, + 1858, + 1859, + 1860, + 1861; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,0.000000,0.000000,0.000000,0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.650000,-0.000000,3.750000,1.000000;; + } + + SkinWeights { + "Frame34_R_Kakato"; + 45; + 42, + 1233, + 1234, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1247, + 1248, + 1249, + 1250, + 1251, + 1253, + 1254, + 1255, + 1256, + 1257, + 1258, + 1259, + 1260, + 1261, + 1262, + 1263, + 1801, + 1802, + 1803, + 1804, + 1805, + 1806, + 1810, + 1811, + 1812, + 1813, + 1816, + 1817, + 1818, + 1819, + 1820, + 1821; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000,1.000000,0.000000,0.000000,-0.000000,0.000000,-1.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,1.650000,0.856365,1.000000;; + } + + SkinWeights { + "Frame35_R_Tumasaki"; + 103; + 29, + 30, + 43, + 44, + 45, + 46, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 271, + 272, + 273, + 274, + 275, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551, + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.000000,1.000000,-0.000000,0.000000,0.984808,0.000000,-0.173648,0.000000,-0.173648,-0.000000,-0.984808,0.000000,-0.301711,1.650000,0.053200,1.000000;; + } + + SkinWeights { + "Frame37_Bone_Head"; + 410; + 14, + 15, + 16, + 17, + 18, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 1164, + 1165, + 1166, + 1167, + 1168, + 1169, + 1170, + 1171, + 1172, + 1173, + 1174, + 1175, + 1176, + 1177, + 1178, + 1179, + 1180, + 1181, + 1182, + 1183, + 1184, + 1185, + 1186, + 1187, + 1188, + 1189, + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206, + 1207, + 1208, + 1209, + 1210, + 1211, + 1212, + 1213, + 1214, + 1215, + 1216, + 1217, + 1218, + 1219, + 1220, + 1221, + 1222, + 1223, + 1224, + 1225, + 1226, + 1227, + 1228, + 1229, + 1230, + 1231, + 1232, + 1753, + 1754, + 1755, + 1756, + 1757, + 1758, + 1759, + 1760, + 1761, + 1762, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769, + 1770, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1777, + 1778, + 1779, + 1780, + 1781, + 1782, + 1783, + 1784, + 1785, + 1786, + 1787, + 1788, + 1789, + 1790, + 1791, + 1792, + 1793, + 1794, + 1795, + 1796, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220, + 2221, + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237, + 2238, + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2315, + 2316, + 2317, + 2318, + 2319, + 2320, + 2321, + 2322, + 2323, + 2324, + 2325, + 2326, + 2327, + 2328, + 2329, + 2330, + 2331, + 2332, + 2333, + 2334, + 2335, + 3036, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446, + 3447, + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459, + 3460, + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467, + 3468, + 3469, + 3470, + 3471, + 3472, + 3473, + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 4108, + 4109, + 4110, + 4111, + 4112, + 4113, + 4114, + 4115, + 4116, + 4117, + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125, + 4126, + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135, + 4136, + 4137, + 4138, + 4139, + 4140, + 4141, + 4142, + 4143, + 4144, + 4145, + 4146, + 4147, + 4148, + 4149, + 4150, + 4151, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691, + 4692, + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701, + 4702, + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716, + 4717, + 4718, + 4719, + 4720, + 4721, + 4722, + 5118, + 5119, + 5120, + 5121, + 5122, + 5123, + 5124, + 5125, + 5126, + 5127, + 5128, + 5129, + 5130, + 5131, + 5132, + 5133, + 5134, + 5135, + 5136, + 5137, + 5138, + 5139, + 5140, + 5141, + 5142, + 5143, + 5144, + 5145, + 5146, + 5147, + 5211, + 5212, + 5213, + 5214, + 5215, + 5216, + 5217, + 5218, + 5219, + 5220, + 5221, + 5222, + 5223, + 5224, + 5225, + 5226, + 6191, + 6192, + 6193; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.001465,0.999999,0.000000,0.000000,0.999999,-0.001465,-0.000000,0.000000,-0.000000,0.000000,-1.000000,0.000000,-11.007184,0.014063,0.000000,1.000000;; + } + + SkinWeights { + "Frame40_BarniaBaseR"; + 80; + 2465, + 2466, + 2467, + 2468, + 2469, + 2470, + 2471, + 2472, + 2473, + 2474, + 2475, + 2476, + 2477, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491, + 2492, + 2493, + 2494, + 2495, + 2496, + 2497, + 2498, + 2499, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507, + 2508, + 2509, + 2510, + 2511, + 2512, + 5344, + 5345, + 5346, + 5347, + 5348, + 5349, + 5350, + 5351, + 5352, + 5353, + 5354, + 5355, + 5356, + 5357, + 5358, + 5359, + 5360, + 5361, + 5362, + 5363, + 5364, + 5365, + 5366, + 5367, + 5368, + 5369, + 5370, + 5371, + 5372, + 5373, + 5374, + 5375; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,0.000000,0.000000,0.000000,0.998290,-0.058451,0.000000,0.000000,0.058451,0.998290,0.000000,-0.000000,-9.583588,-1.987662,1.000000;; + } + + SkinWeights { + "Frame41_BarniaBaseL"; + 80; + 31, + 32, + 33, + 34, + 2309, + 2310, + 2311, + 2312, + 2313, + 2314, + 2361, + 2362, + 2363, + 2364, + 2365, + 2366, + 2367, + 2368, + 2369, + 2370, + 2371, + 2372, + 2373, + 2374, + 2375, + 2376, + 2377, + 2378, + 2379, + 2380, + 2381, + 2382, + 2383, + 2384, + 2385, + 2386, + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393, + 2394, + 2395, + 2396, + 2397, + 2398, + 5205, + 5206, + 5207, + 5208, + 5209, + 5210, + 5252, + 5253, + 5254, + 5255, + 5256, + 5257, + 5258, + 5259, + 5260, + 5261, + 5262, + 5263, + 5264, + 5265, + 5266, + 5267, + 5268, + 5269, + 5270, + 5271, + 5272, + 5273, + 5274, + 5275, + 5276, + 5277; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000,0.000000,0.000000,0.999678,-0.025383,0.000000,0.000000,0.025383,0.999678,0.000000,-0.000000,-8.745961,-1.851950,1.000000;; + } + } + + Frame Frame2_Bone01 { + + FrameTransformMatrix { + 0.000000,-0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;; + } + + Frame Frame3_L_Mune_A { + + FrameTransformMatrix { + 0.000000,-0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;; + } + + Frame Frame4_L_Kata_Base { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-0.150000,0.450000,1.051190,1.000000;; + } + + Frame Frame5_L_Ueude { + + FrameTransformMatrix { + 1.000000,0.000000,-0.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.030000,0.010000,0.800000,1.000000;; + } + + Frame Frame6_L_Hizi { + + FrameTransformMatrix { + 1.000000,0.000000,-0.000001,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000001,0.000000,1.000000,0.000000,-0.000000,0.000000,1.500000,1.000000;; + } + + Frame Frame7_L_Sitaude { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.450000,1.000000;; + } + + Frame Frame12_L_Hand { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.280000,2.000000,1.000000;; + } + + Frame Frame39_L_Wpn { + + FrameTransformMatrix { + 0.999848,0.000000,-0.017452,0.000000,0.000000,1.000000,0.000000,0.000000,0.017452,0.000000,0.999848,0.000000,0.000000,0.000000,0.800001,1.000000;; + } + } + } + } + } + } + + Frame Frame8_L_kata_Armer { + + FrameTransformMatrix { + 0.972082,-0.000000,-0.234641,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.234641,0.000000,0.972082,0.000000,-0.050000,-0.000000,0.800000,1.000000;; + } + + Frame Frame9_L_Kata_S_Joint_1 { + + FrameTransformMatrix { + 0.979925,0.000000,0.199368,0.000000,0.000000,1.000000,0.000000,0.000000,-0.199368,0.000000,0.979925,0.000000,0.000000,-0.000000,1.491643,1.000000;; + } + + Frame Frame10_L_kata_S_Joint_2 { + + FrameTransformMatrix { + 1.000000,0.000000,-0.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,1.350000,1.000000;; + } + + Frame Frame11_L_Kata_S_End { + + FrameTransformMatrix { + -0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;; + } + } + } + } + } + } + + Frame Frame48_L_Mune_A2 { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;; + } + } + } + + Frame Frame20_R_Mune { + + FrameTransformMatrix { + -0.000000,-0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;; + } + + Frame Frame49_R_Mune2 { + + FrameTransformMatrix { + 0.999848,0.000000,0.017452,0.000000,0.000000,1.000000,0.000000,0.000000,-0.017452,0.000000,0.999848,0.000000,0.000000,0.000000,1.051190,1.000000;; + } + + Frame Frame21_R_Kata_Base { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;; + } + + Frame Frame22_R_Ueude { + + FrameTransformMatrix { + 1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.030000,0.010000,0.800000,1.000000;; + } + + Frame Frame23_R_Hizi { + + FrameTransformMatrix { + 1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000001,0.000000,1.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;; + } + + Frame Frame24_R_Sitaude { + + FrameTransformMatrix { + 1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;; + } + + Frame Frame29_R_Hand { + + FrameTransformMatrix { + 1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;; + } + + Frame Frame38_R_Wpn2 { + + FrameTransformMatrix { + 0.999848,0.000000,-0.017452,0.000000,-0.000000,-1.000000,-0.000000,0.000000,-0.017452,0.000000,-0.999848,0.000000,0.100000,-0.265000,0.600000,1.000000;; + } + } + } + } + } + } + + Frame Frame25_R_kata_Armer { + + FrameTransformMatrix { + 0.977525,0.000000,0.210820,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.210820,0.000000,0.977525,0.000000,-0.050000,0.000000,0.800000,1.000000;; + } + + Frame Frame26_R_Kata_S_Joint_1 { + + FrameTransformMatrix { + 0.985109,0.000000,-0.171929,0.000000,0.000000,1.000000,0.000000,0.000000,0.171929,0.000000,0.985109,0.000000,0.000000,0.000000,1.491643,1.000000;; + } + + Frame Frame27_R_kata_S_Joint_2 { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.350000,1.000000;; + } + + Frame Frame28_R_Kata_S_End { + + FrameTransformMatrix { + 0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;; + } + } + } + } + } + } + } + } + + Frame Frame36_Bone_neck { + + FrameTransformMatrix { + 1.000000,0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,3.000000,1.000000;; + } + + Frame Frame37_Bone_Head { + + FrameTransformMatrix { + 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.407194,1.000000;; + } + } + } + + Frame Frame44_SW2_R_mp { + + FrameTransformMatrix { + 0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;; + } + + Frame Frame45_SW2_R_mp_2 { + + FrameTransformMatrix { + -0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;; + } + } + } + + Frame Frame46_SW2_L_mp { + + FrameTransformMatrix { + 0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;; + } + + Frame Frame47_SW2_L_mp_2 { + + FrameTransformMatrix { + -0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;; + } + } + } + + Frame Frame50_M_barnia1_1 { + + FrameTransformMatrix { + -0.058452,0.000000,-0.998290,0.000000,0.017423,0.999848,-0.001020,0.000000,0.998138,-0.017452,-0.058443,0.000000,0.000000,0.000000,3.000000,1.000000;; + } + + Frame Frame51_M_barnia1_2 { + + FrameTransformMatrix { + 0.029667,0.000000,0.999560,0.000000,0.000000,1.000000,0.000000,0.000000,-0.999560,0.000000,0.029667,0.000000,0.000000,0.000000,2.548788,1.000000;; + } + + Frame Frame40_BarniaBaseR { + + FrameTransformMatrix { + -0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;; + } + + Frame Frame43_BarniaBaseR_2 { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,0.999848,0.017452,0.000000,0.000000,-0.017452,0.999848,0.000000,0.000000,0.000000,0.500000,1.000000;; + } + } + } + } + } + + Frame Frame52_M_barnia2_1 { + + FrameTransformMatrix { + -0.399620,0.000000,-0.916681,0.000000,0.015998,0.999848,-0.006974,0.000000,0.916541,-0.017452,-0.399560,0.000000,0.000000,0.000000,3.000000,1.000000;; + } + + Frame Frame53_M_barnia2_2 { + + FrameTransformMatrix { + -0.277314,0.000000,0.960779,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.960779,-0.000000,-0.277314,0.000000,0.000000,0.000000,2.261806,1.000000;; + } + + Frame Frame41_BarniaBaseL { + + FrameTransformMatrix { + -0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;; + } + + Frame Frame42_BarniaBaseL_2 { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,0.999848,0.017452,0.000000,0.000000,-0.017452,0.999848,0.000000,0.000000,0.000000,0.500000,1.000000;; + } + } + } + } + } + } + + Frame Frame13_Kosi { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;; + } + + Frame Frame14_L_Kosi_Momo { + + FrameTransformMatrix { + -0.000000,-0.017452,-0.999848,0.000000,-0.000000,0.999848,-0.017452,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;; + } + + Frame Frame15_L_momo { + + FrameTransformMatrix { + 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,-0.000000,1.650000,1.000000;; + } + + Frame Frame16_L_Hiza { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.400000,1.000000;; + } + + Frame Frame17_L_Sune { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800000,1.000000;; + } + + Frame Frame18_L_Kakato { + + FrameTransformMatrix { + 0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-0.037573,-0.006428,2.820891,1.000000;; + } + + Frame Frame19_L_Tumasaki { + + FrameTransformMatrix { + 0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,0.173648,0.000000,-0.000000,-0.000000,0.550000,1.000000;; + } + } + } + } + } + } + } + + Frame Frame30_R_Kosi_Momo { + + FrameTransformMatrix { + -0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;; + } + + Frame Frame31_R_momo { + + FrameTransformMatrix { + 0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,-0.000000,1.650000,1.000000;; + } + + Frame Frame32_R_Hiza { + + FrameTransformMatrix { + 1.000000,0.000000,-0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,1.400000,1.000000;; + } + + Frame Frame33_R_Sune { + + FrameTransformMatrix { + 1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800000,1.000000;; + } + + Frame Frame34_R_Kakato { + + FrameTransformMatrix { + -0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.893634,1.000000;; + } + + Frame Frame35_R_Tumasaki { + + FrameTransformMatrix { + 0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,0.173648,0.000000,-0.000000,-0.000000,0.550000,1.000000;; + } + } + } + } + } + } + } + } + } +} + +AnimationSet AnimationSet_SSR06_Born2 { + + Animation Animation0 { + { Frame1_AllPutting_2_Layer1 } + AnimationKey { + 4; + 172; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 10;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.404515,0.000000,1.000000;;, + 50;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.221203,0.091000,1.000000;;, + 54;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.100000,0.094656,1.000000;;, + 60;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.480570,0.092828,1.000000;;, + 66;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.131187,0.091000,1.000000;;, + 70;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.100000,0.094656,1.000000;;, + 74;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.274780,0.093817,1.000000;;, + 78;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.608837,0.092212,1.000000;;, + 82;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.861141,0.091000,1.000000;;, + 100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.861141,0.091000,1.000000;;, + 103;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.464554,0.091000,1.000000;;, + 107;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.055252,0.091000,1.000000;;, + 108;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.010640,0.091000,1.000000;;, + 112;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.503632,0.091000,1.000000;;, + 116;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.861141,0.091000,1.000000;;, + 120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.400506,0.091000,1.000000;;, + 124;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.020409,0.091000,1.000000;;, + 128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.439242,0.091000,1.000000;;, + 132;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.861141,0.091000,1.000000;;, + 150;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.058269,0.091000,1.000000;;, + 152;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.058269,0.091000,1.000000;;, + 160;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.561110,0.091000,1.000000;;, + 180;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.967728,0.091000,1.000000;;, + 200;16;0.987414,0.158158,0.000000,0.000000,-0.158158,0.987414,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.043844,-0.975200,0.091000,1.000000;;, + 202;16;0.987414,0.158158,0.000000,0.000000,-0.158158,0.987414,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.043844,-0.975199,0.091000,1.000000;;, + 210;16;0.931691,0.363251,0.000000,0.000000,-0.363251,0.931691,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,2.397459,0.272849,0.091000,1.000000;;, + 230;16;0.931691,0.363251,0.000000,0.000000,-0.363251,0.931691,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,2.397458,-0.312935,0.091000,1.000000;;, + 250;16;0.987414,-0.158158,0.000000,0.000000,0.158158,0.987414,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-1.043845,-0.975200,0.091000,1.000000;;, + 252;16;0.987414,-0.158158,0.000000,0.000000,0.158158,0.987414,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-1.043845,-0.975199,0.091000,1.000000;;, + 260;16;0.931691,-0.363251,0.000000,0.000000,0.363251,0.931691,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-2.397458,0.272849,0.091000,1.000000;;, + 280;16;0.931691,-0.363251,0.000000,0.000000,0.363251,0.931691,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-2.397458,-0.312936,0.091000,1.000000;;, + 300;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.058269,0.091000,1.000000;;, + 302;16;1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.058270,0.091000,1.000000;;, + 310;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.290903,0.091000,1.000000;;, + 330;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.194391,0.091000,1.000000;;, + 350;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.058269,0.091000,1.000000;;, + 360;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.058269,0.091000,1.000000;;, + 380;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 400;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 420;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 430;16;0.999989,0.000000,0.004705,0.000000,-0.002003,0.904827,0.425775,0.000000,-0.004257,-0.425780,0.904817,0.000000,0.012834,0.225139,-2.727777,1.000000;;, + 440;16;0.999954,0.000000,0.009558,0.000000,-0.004495,0.882517,0.470259,0.000000,-0.008435,-0.470280,0.882477,0.000000,0.028898,0.368334,-3.023403,1.000000;;, + 455;16;0.999742,0.000000,0.022723,0.000000,-0.005197,0.973489,0.228676,0.000000,-0.022120,-0.228735,0.973237,0.000000,0.032290,-0.210098,-1.420697,1.000000;;, + 470;16;0.999708,-0.000000,0.024182,0.000000,-0.005340,0.975317,0.220745,0.000000,-0.023585,-0.220810,0.975032,0.000000,0.033095,-0.221443,-1.368190,1.000000;;, + 500;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000001,1.000000;;, + 510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.780371,0.000000,1.000000;;, + 517;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.877462,0.000793,1.000000;;, + 525;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.783850,0.000911,1.000000;;, + 540;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 607;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.780366,0.000000,1.000000;;, + 615;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-3.600000,0.000000,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-3.600000,0.000000,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-4.537257,0.000000,1.000000;;, + 665;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-3.480743,0.000000,1.000000;;, + 670;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-4.537256,0.000000,1.000000;;, + 680;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-4.537257,0.000000,1.000000;;, + 700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-4.537257,0.000000,1.000000;;, + 715;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-4.537259,0.000000,1.000000;;, + 720;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-3.134239,-0.000390,1.000000;;, + 725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.470714,-0.000710,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1010;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1020;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1030;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1110;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1130;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1135;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1150;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1210;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1220;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1235;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1250;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.364258,0.091000,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2015;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2020;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2022;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2025;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.830269,0.091000,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,0.000000,0.000001,1.000000,0.000000,0.000000,-0.830269,0.091007,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.980271,0.197657,0.000000,0.000000,-0.197657,0.980271,0.000000,0.000000,-0.718045,-1.215334,1.000000;;, + 2260;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,-0.000000,-0.830269,0.090999,1.000000;;, + 2400;16;0.951965,0.080192,0.295520,0.000000,-0.072757,0.996697,-0.036091,0.000000,-0.297438,0.012856,0.954655,0.000000,0.453128,-0.720270,0.262331,1.000000;;, + 2420;16;0.905569,-0.000000,0.424200,0.000000,0.000000,1.000000,0.000000,0.000000,-0.424200,-0.000000,0.905569,0.000000,-0.038603,-0.754097,-0.008594,1.000000;;, + 2430;16;0.905569,0.000000,0.424199,0.000000,0.000000,1.000000,0.000000,0.000000,-0.424199,0.000000,0.905569,0.000000,-0.038602,-0.754097,-0.008593,1.000000;;, + 2435;16;0.981959,-0.000000,0.189095,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.189095,0.000000,0.981959,0.000000,-0.017208,-0.374639,-0.001642,1.000000;;, + 2460;16;0.978523,-0.000000,0.206136,0.000000,0.001079,0.999986,-0.005124,0.000000,-0.206133,0.005236,0.978510,0.000000,-0.025882,-0.285923,0.031860,1.000000;;, + 2490;16;0.996711,0.076719,-0.026100,0.000000,-0.076693,0.997053,0.002008,0.000000,0.026177,0.000000,0.999657,0.000000,0.508554,-0.641676,-0.013286,1.000000;;, + 2500;16;0.996711,0.076719,-0.026100,0.000000,-0.076693,0.997053,0.002008,0.000000,0.026177,0.000000,0.999657,0.000000,0.508554,-0.641676,-0.013286,1.000000;;, + 2510;16;0.996711,0.076719,-0.026100,0.000000,-0.076693,0.997053,0.002008,0.000000,0.026177,0.000000,0.999657,0.000000,0.508554,-0.641676,-0.013286,1.000000;;, + 2530;16;0.996711,0.076719,-0.026101,0.000000,-0.076693,0.997053,0.002008,0.000000,0.026179,-0.000000,0.999657,0.000000,0.508556,-0.641677,-0.013287,1.000000;;, + 2535;16;0.905569,0.000000,0.424199,0.000000,0.000000,1.000000,0.000000,0.000000,-0.424199,0.000000,0.905569,0.000000,-0.038602,-0.374640,-0.008593,1.000000;;, + 2560;16;0.880506,-0.009215,0.473945,0.000000,0.008114,0.999958,0.004368,0.000000,-0.473966,0.000000,0.880543,0.000000,-0.096686,-0.339981,-0.039697,1.000000;;, + 2600;16;1.000000,-0.000011,0.000587,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000587,-0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2630;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090893,1.000000;;, + 2635;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-1.083436,0.735715,1.000000;;, + 2640;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-1.043415,0.282286,1.000000;;, + 2650;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2700;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2730;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2735;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-1.083440,0.735718,1.000000;;, + 2740;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-1.043416,0.282289,1.000000;;, + 2755;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2800;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2830;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2835;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2850;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;, + 2900;16;0.978523,-0.000000,0.206136,0.000000,0.001079,0.999986,-0.005124,0.000000,-0.206133,0.005236,0.978510,0.000000,-0.025882,-0.759997,0.031860,1.000000;;, + 2910;16;0.978523,-0.000000,0.206136,0.000000,0.001079,0.999986,-0.005124,0.000000,-0.206133,0.005236,0.978510,0.000000,-0.025882,-0.759997,0.031860,1.000000;;, + 2930;16;0.976672,-0.000000,0.214735,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.214735,-0.000000,0.976672,0.000000,-0.019541,-0.760564,-0.002123,1.000000;;, + 2932;16;0.975521,-0.000000,0.219908,0.000000,-0.000033,1.000000,0.000147,0.000000,-0.219908,-0.000151,0.975521,0.000000,-0.019793,-0.759277,-0.003455,1.000000;;, + 2935;16;0.976672,0.000000,0.214736,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.214736,-0.000000,0.976672,0.000000,-0.019541,-0.760564,-0.002123,1.000000;;, + 3100;16;0.000002,0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000002,0.000000,0.091000,-1.221204,0.000000,1.000000;;, + 3104;16;0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.091000,-0.100008,0.003656,1.000000;;, + 3110;16;0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.091000,-0.480587,0.001828,1.000000;;, + 3116;16;0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.091000,-1.131191,-0.000000,1.000000;;, + 3120;16;0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.091000,-0.100000,0.003656,1.000000;;, + 3124;16;0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.091000,-0.274786,0.002817,1.000000;;, + 3128;16;0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.091000,-0.608829,0.001212,1.000000;;, + 3132;16;0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.091000,-0.861141,0.000000,1.000000;;, + 3150;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,-0.091000,-1.221203,0.000000,1.000000;;, + 3154;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,-0.091000,-0.099992,0.003656,1.000000;;, + 3160;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,-0.091000,-0.480553,0.001828,1.000000;;, + 3166;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,-0.091000,-1.131183,0.000000,1.000000;;, + 3170;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,-0.091000,-0.099978,0.003656,1.000000;;, + 3174;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,-0.091000,-0.274780,0.002817,1.000000;;, + 3178;16;0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,0.000000,-0.091000,-0.608844,0.001212,1.000000;;, + 3182;16;-0.000007,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000007,0.000000,-0.091000,-0.861140,-0.000001,1.000000;;, + 3200;16;1.000000,-0.000011,0.000588,0.000000,0.000011,1.000000,0.000000,0.000000,-0.000588,0.000000,1.000000,0.000000,-0.000126,-0.829686,0.090892,1.000000;;; + } + } + + Animation Animation1 { + { Frame2_Bone01 } + AnimationKey { + 4; + 164; + 0;16;0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 5;16;-0.000000,0.076720,0.997053,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.997053,-0.076720,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 10;16;0.160939,0.090634,0.982794,0.000000,0.986856,0.000000,-0.161604,0.000000,-0.014647,0.995884,-0.089442,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 50;16;-0.000000,0.342020,0.939693,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 54;16;-0.006449,0.356993,0.934085,0.000000,0.999976,0.000000,0.006904,0.000000,0.002465,0.934107,-0.356984,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 60;16;-0.005908,0.368571,0.929581,0.000000,0.999980,0.000000,0.006355,0.000000,0.002342,0.929600,-0.368563,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 66;16;-0.003969,0.378252,0.925694,0.000000,0.999991,0.000000,0.004288,0.000000,0.001622,0.925703,-0.378248,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 70;16;-0.002858,0.383223,0.923651,0.000000,0.999995,0.000000,0.003094,0.000000,0.001186,0.923656,-0.383221,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 74;16;-0.001760,0.385477,0.922716,0.000000,0.999998,0.000000,0.001907,0.000000,0.000735,0.922718,-0.385476,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 78;16;-0.000711,0.382459,0.923972,0.000000,1.000000,0.000000,0.000769,0.000000,0.000294,0.923973,-0.382459,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 82;16;-0.000000,0.342020,0.939693,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 100;16;-0.000000,-0.219847,0.975534,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.975534,0.219847,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 103;16;-0.000000,-0.252150,0.967688,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.967688,0.252150,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 108;16;-0.000000,-0.242685,0.970105,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.970105,0.242685,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 112;16;-0.000000,-0.229302,0.973355,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.973355,0.229302,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 116;16;-0.000000,-0.219847,0.975534,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.975534,0.219847,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 120;16;-0.000000,-0.231049,0.972942,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.972942,0.231049,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 124;16;-0.000000,-0.247626,0.968856,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.968856,0.247626,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 128;16;-0.000000,-0.256250,0.966611,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.966611,0.256250,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 132;16;-0.000000,-0.219847,0.975534,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.975534,0.219847,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 150;16;-0.000000,0.342020,0.939693,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 152;16;-0.000000,0.342020,0.939693,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 160;16;-0.000000,0.731353,0.681999,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.681999,-0.731353,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 180;16;-0.000000,0.731354,0.681998,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.681998,-0.731354,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 200;16;-0.000000,0.342020,0.939693,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 202;16;-0.000000,0.342020,0.939693,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 210;16;-0.000000,0.121868,0.992546,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.992546,-0.121868,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 230;16;-0.000000,0.121868,0.992546,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.992546,-0.121868,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 250;16;-0.000000,0.342020,0.939693,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 252;16;-0.000000,0.342020,0.939693,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 260;16;-0.000000,0.121868,0.992546,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.992546,-0.121868,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 280;16;-0.000000,0.121868,0.992546,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.992546,-0.121868,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 300;16;-0.000000,0.062791,0.998027,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.998027,-0.062791,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 302;16;-0.000000,0.062791,0.998027,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.998027,-0.062791,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 310;16;-0.000000,-0.173648,0.984808,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.984808,0.173648,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 330;16;-0.000000,-0.101055,0.994881,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.994881,0.101055,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 350;16;-0.000000,0.255447,0.966823,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.966823,-0.255447,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 360;16;-0.000000,0.463297,0.886203,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.886203,-0.463297,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 380;16;-0.000000,0.332162,0.943222,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.943222,-0.332162,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 400;16;-0.000000,0.332162,0.943222,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.943222,-0.332162,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 420;16;-0.000000,0.332162,0.943222,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.943222,-0.332162,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 430;16;-0.000000,0.327906,0.944710,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.944710,-0.327905,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 440;16;-0.000000,0.323509,0.946225,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.946225,-0.323509,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 455;16;-0.000000,0.311544,0.950232,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,0.950232,-0.311544,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 470;16;-0.000000,0.310214,0.950667,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.950667,-0.310215,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 500;16;0.160939,0.090634,0.982794,0.000000,0.986856,0.000000,-0.161604,0.000000,-0.014647,0.995884,-0.089442,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 510;16;-0.199308,-0.196214,0.960092,0.000000,0.979351,-0.073752,0.188233,0.000000,0.033875,0.977784,0.206862,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 517;16;-0.242304,0.059943,0.968347,0.000000,0.970144,0.025720,0.241162,0.000000,-0.010450,0.997870,-0.064386,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 525;16;-0.201929,0.138067,0.969620,0.000000,0.979115,0.052339,0.196454,0.000000,-0.023625,0.989039,-0.145753,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 540;16;0.160939,0.090634,0.982794,0.000000,0.986856,0.000000,-0.161604,0.000000,-0.014647,0.995884,-0.089442,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 600;16;0.160939,0.090634,0.982794,0.000000,0.986856,0.000000,-0.161604,0.000000,-0.014647,0.995884,-0.089442,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 607;16;-0.199307,-0.196213,0.960092,0.000000,0.979351,-0.073752,0.188233,0.000000,0.033875,0.977784,0.206861,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 615;16;-0.230493,-0.595406,0.769652,0.000000,0.967629,-0.223799,0.116651,0.000000,0.102793,0.771625,0.627716,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 650;16;-0.282571,-0.846275,0.451633,0.000000,0.948055,-0.318094,-0.002885,0.000000,0.146103,0.427358,0.892199,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 655;16;0.006668,-0.999688,-0.024079,0.000000,0.986840,0.010469,-0.161361,0.000000,0.161562,-0.022686,0.986602,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 665;16;-0.190376,-0.981321,-0.027684,0.000000,0.968366,-0.183080,-0.169557,0.000000,0.161321,-0.059088,0.985131,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 670;16;0.006668,-0.999688,-0.024080,0.000000,0.986840,0.010469,-0.161361,0.000000,0.161562,-0.022687,0.986602,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 680;16;0.006668,-0.999688,-0.024080,0.000000,0.986840,0.010469,-0.161361,0.000000,0.161562,-0.022687,0.986602,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 700;16;0.006668,-0.999688,-0.024080,0.000000,0.986840,0.010469,-0.161360,0.000000,0.161562,-0.022687,0.986602,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 715;16;0.102327,-0.822099,0.560073,0.000000,0.985838,0.008610,-0.167478,0.000000,0.132862,0.569279,0.811338,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 720;16;0.159913,-0.348828,0.923443,0.000000,0.985506,0.002765,-0.169616,0.000000,0.056613,0.937183,0.344215,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 725;16;0.164044,0.203249,0.965287,0.000000,0.985898,-0.000946,-0.167347,0.000000,-0.033100,0.979127,-0.200538,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 735;16;0.160939,0.090634,0.982794,0.000000,0.986856,0.000000,-0.161604,0.000000,-0.014647,0.995884,-0.089442,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1000;16;-0.284016,0.065666,0.956568,0.000000,0.958820,0.019451,0.283349,0.000000,-0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1010;16;-0.284016,0.065666,0.956568,0.000000,0.958819,0.019451,0.283350,0.000000,-0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1020;16;0.000000,0.068486,0.997652,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1030;16;0.000000,0.068486,0.997652,0.000000,1.000000,-0.000000,-0.000000,0.000000,0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1035;16;0.000000,0.035370,0.999374,0.000000,1.000000,-0.000000,-0.000000,0.000000,0.000000,0.999374,-0.035370,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1050;16;0.000000,0.068486,0.997652,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1100;16;0.550212,0.065666,0.832439,0.000000,0.833376,0.019451,-0.552365,0.000000,-0.052463,0.997652,-0.044022,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1110;16;0.766044,-0.000000,0.642788,0.000000,0.642788,0.000000,-0.766044,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1120;16;0.766044,-0.000000,0.642788,0.000000,0.642788,0.000000,-0.766044,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1130;16;0.766044,-0.000000,0.642788,0.000000,0.642788,0.000000,-0.766044,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1135;16;0.766044,0.000000,0.642788,0.000000,0.642788,-0.000000,-0.766044,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1150;16;0.550211,0.065666,0.832439,0.000000,0.833376,0.019451,-0.552365,0.000000,-0.052463,0.997652,-0.044022,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1200;16;-0.284016,0.065666,0.956568,0.000000,0.958820,0.019451,0.283349,0.000000,-0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1210;16;-0.877226,0.065666,0.475565,0.000000,0.477629,0.019451,0.878347,0.000000,0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1220;16;-0.877225,0.065666,0.475567,0.000000,0.477630,0.019451,0.878346,0.000000,0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1230;16;-0.877225,0.065666,0.475567,0.000000,0.477630,0.019451,0.878346,0.000000,0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1235;16;-0.877225,0.065666,0.475567,0.000000,0.477630,0.019451,0.878346,0.000000,0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1250;16;-0.877226,0.065666,0.475566,0.000000,0.477630,0.019451,0.878346,0.000000,0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1500;16;0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1510;16;0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1523;16;0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1530;16;0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1532;16;0.000000,-0.099320,0.995055,0.000000,1.000000,-0.000000,-0.000000,0.000000,0.000000,0.995055,0.099320,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1536;16;0.000000,-0.006982,0.999976,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.999976,0.006982,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1550;16;0.000000,-0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1560;16;0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1600;16;-0.766045,-0.000000,0.642787,0.000000,0.642787,0.000000,0.766045,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1620;16;-0.766044,0.000000,0.642788,0.000000,0.642788,0.000000,0.766044,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1630;16;-0.766044,-0.000000,0.642788,0.000000,0.642788,0.000000,0.766044,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1632;16;-0.796519,-0.004170,0.604599,0.000000,0.604591,0.003165,0.796530,0.000000,-0.005235,0.999986,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1636;16;-0.765746,-0.021389,0.642788,0.000000,0.642537,0.017947,0.766044,0.000000,-0.027921,0.999610,-0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1650;16;-0.766044,0.000000,0.642788,0.000000,0.642788,0.000000,0.766044,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1700;16;0.642787,-0.000000,0.766045,0.000000,0.766045,0.000000,-0.642787,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1725;16;0.642788,-0.000000,0.766044,0.000000,0.766044,0.000000,-0.642788,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1730;16;0.642787,0.000000,0.766045,0.000000,0.766045,-0.000000,-0.642787,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1732;16;0.669131,-0.000000,0.743145,0.000000,0.743116,-0.008729,-0.669105,0.000000,0.006487,0.999962,-0.005841,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1736;16;0.642788,-0.000000,0.766044,0.000000,0.765903,-0.019199,-0.642669,0.000000,0.014707,0.999816,-0.012341,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1750;16;0.642788,-0.000000,0.766044,0.000000,0.766044,0.000000,-0.642788,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1760;16;0.642788,0.000000,0.766044,0.000000,0.766044,0.000000,-0.642788,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2000;16;-0.000000,0.068486,0.997652,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2015;16;0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2020;16;0.000000,0.068485,0.997652,0.000000,1.000000,-0.000000,-0.000000,0.000000,0.000000,0.997652,-0.068485,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2022;16;0.000000,0.068486,0.997652,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2025;16;0.000000,0.068486,0.997652,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.997652,-0.068486,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2050;16;-0.573864,0.011893,0.818865,0.000000,0.817518,0.067445,0.571940,0.000000,-0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2060;16;-0.573865,0.011892,0.818864,0.000000,0.817517,0.067445,0.571941,0.000000,-0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2065;16;-0.573865,0.011892,0.818864,0.000000,0.817517,0.067445,0.571941,0.000000,-0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2070;16;-0.573865,0.011892,0.818864,0.000000,0.817517,0.067445,0.571941,0.000000,-0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2071;16;-0.573759,0.009472,0.818969,0.000000,0.818115,0.053721,0.572540,0.000000,-0.038572,0.998511,-0.038572,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2072;16;-0.573865,0.011892,0.818864,0.000000,0.817517,0.067445,0.571941,0.000000,-0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2075;16;-0.573862,0.011893,0.818866,0.000000,0.817519,0.067445,0.571938,0.000000,-0.048427,0.997652,-0.048427,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2100;16;0.642788,0.000000,0.766044,0.000000,0.764246,-0.068486,-0.641278,0.000000,0.052463,0.997652,-0.044022,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2115;16;0.642788,0.000000,0.766044,0.000000,0.764246,-0.068486,-0.641278,0.000000,0.052463,0.997652,-0.044022,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2120;16;0.642788,-0.000000,0.766044,0.000000,0.764245,-0.068485,-0.641279,0.000000,0.052463,0.997652,-0.044022,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2121;16;0.675577,-0.001238,0.737289,0.000000,0.736969,-0.028366,-0.675331,0.000000,0.021750,0.999597,-0.018251,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2122;16;0.642787,0.000000,0.766045,0.000000,0.764246,-0.068487,-0.641278,0.000000,0.052464,0.997652,-0.044023,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2125;16;0.642788,-0.000000,0.766044,0.000000,0.764245,-0.068486,-0.641279,0.000000,0.052463,0.997652,-0.044022,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2200;16;-0.001017,0.059310,0.998239,0.000000,0.999413,0.034243,-0.001016,0.000000,-0.034243,0.997652,-0.059310,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2220;16;-0.001018,0.059310,0.998239,0.000000,0.999413,0.034243,-0.001015,0.000000,-0.034243,0.997652,-0.059311,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2230;16;-0.001018,0.059310,0.998239,0.000000,0.999413,0.034243,-0.001015,0.000000,-0.034243,0.997652,-0.059311,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2235;16;-0.001000,0.059817,0.998209,0.000000,0.999443,0.033350,-0.000998,0.000000,-0.033350,0.997652,-0.059817,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2260;16;-0.001018,0.059310,0.998239,0.000000,0.999413,0.034243,-0.001016,0.000000,-0.034243,0.997652,-0.059310,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2400;16;-0.118251,0.080208,0.989739,0.000000,0.992973,0.014095,0.117495,0.000000,-0.004526,0.996678,-0.081311,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2420;16;-0.585080,0.298837,0.753909,0.000000,0.807649,0.298836,0.508331,0.000000,-0.073387,0.906307,-0.416198,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2430;16;-0.585078,0.298837,0.753910,0.000000,0.807649,0.298835,0.508330,0.000000,-0.073387,0.906308,-0.416198,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2435;16;0.691120,0.041291,0.721559,0.000000,0.721030,0.029236,-0.692286,0.000000,-0.049680,0.998719,-0.009567,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2460;16;0.770211,0.036550,0.636741,0.000000,0.636147,0.027570,-0.771075,0.000000,-0.045738,0.998951,-0.002016,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2490;16;0.826036,0.041292,0.562102,0.000000,0.561342,0.029236,-0.827067,0.000000,-0.050585,0.998719,0.000971,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2500;16;0.826036,0.041292,0.562102,0.000000,0.561342,0.029236,-0.827067,0.000000,-0.050585,0.998719,0.000971,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2510;16;0.826036,0.041292,0.562102,0.000000,0.561342,0.029236,-0.827067,0.000000,-0.050585,0.998719,0.000971,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2530;16;0.826039,0.041291,0.562099,0.000000,0.561339,0.029236,-0.827069,0.000000,-0.050584,0.998719,0.000972,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2535;16;-0.201700,0.084670,0.975781,0.000000,0.979338,0.032333,0.199630,0.000000,-0.014647,0.995884,-0.089442,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2560;16;-0.336860,0.090137,0.937230,0.000000,0.941554,0.031340,0.335401,0.000000,0.000859,0.995436,-0.095426,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2600;16;0.008196,-0.159580,0.987151,0.000000,0.999965,-0.000063,-0.008313,0.000000,0.001389,0.987185,0.159574,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2630;16;0.008196,-0.159581,0.987151,0.000000,0.999965,-0.000064,-0.008312,0.000000,0.001389,0.987185,0.159575,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2635;16;0.007616,-0.390449,0.920593,0.000000,0.999965,-0.000155,-0.008339,0.000000,0.003399,0.920624,0.390434,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2640;16;0.008074,-0.229686,0.973231,0.000000,0.999965,-0.000091,-0.008318,0.000000,0.001999,0.973265,0.229677,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2650;16;0.008195,-0.159580,0.987151,0.000000,0.999965,-0.000064,-0.008312,0.000000,0.001389,0.987185,0.159574,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2700;16;0.008195,-0.159580,0.987151,0.000000,0.999965,-0.000064,-0.008312,0.000000,0.001389,0.987185,0.159574,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2730;16;0.008195,-0.159580,0.987151,0.000000,0.999965,-0.000064,-0.008312,0.000000,0.001389,0.987185,0.159574,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2735;16;0.007616,-0.390449,0.920593,0.000000,0.999965,-0.000155,-0.008339,0.000000,0.003399,0.920625,0.390434,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2740;16;0.008298,-0.046733,0.998873,0.000000,0.999965,-0.000019,-0.008307,0.000000,0.000407,0.998907,0.046731,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2755;16;0.008195,-0.159580,0.987151,0.000000,0.999965,-0.000064,-0.008312,0.000000,0.001389,0.987185,0.159574,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2800;16;0.008305,0.022993,0.999701,0.000000,0.999965,0.000009,-0.008307,0.000000,-0.000200,0.999736,-0.022992,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2830;16;0.008305,0.022993,0.999701,0.000000,0.999966,0.000009,-0.008307,0.000000,-0.000200,0.999736,-0.022992,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2835;16;0.008150,-0.188796,0.981982,0.000000,0.999965,-0.000075,-0.008314,0.000000,0.001644,0.982016,0.188789,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2850;16;0.008305,0.022993,0.999701,0.000000,0.999966,0.000009,-0.008307,0.000000,-0.000200,0.999736,-0.022992,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2900;16;0.213582,0.011750,0.976854,0.000000,0.975854,0.044249,-0.213896,0.000000,-0.045738,0.998951,-0.002016,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2910;16;0.213582,0.011751,0.976855,0.000000,0.975854,0.044249,-0.213895,0.000000,-0.045738,0.998951,-0.002016,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2930;16;0.213582,0.011751,0.976855,0.000000,0.975854,0.044249,-0.213895,0.000000,-0.045738,0.998951,-0.002016,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2932;16;0.200530,0.010759,0.979629,0.000000,0.978659,0.043614,-0.200810,0.000000,-0.044886,0.998990,-0.001784,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2935;16;0.213583,0.011751,0.976854,0.000000,0.975854,0.044249,-0.213896,0.000000,-0.045738,0.998951,-0.002016,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3099;16;-0.939693,0.116978,0.321394,0.000000,0.342020,0.321394,0.883022,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3100;16;-0.939693,0.116978,0.321394,0.000000,0.342020,0.321394,0.883022,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3132;16;-0.939693,0.116978,0.321394,0.000000,0.342020,0.321394,0.883022,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3133;16;-0.939688,0.116982,0.321407,0.000000,0.342034,0.321392,0.883018,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3149;16;0.939688,0.116982,0.321406,0.000000,0.342034,-0.321392,-0.883018,0.000000,-0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3150;16;0.939693,0.116978,0.321394,0.000000,0.342020,-0.321394,-0.883022,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3182;16;0.939693,0.116978,0.321394,0.000000,0.342020,-0.321394,-0.883022,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3183;16;0.939693,0.116978,0.321394,0.000000,0.342020,-0.321394,-0.883022,0.000000,0.000000,0.939693,-0.342020,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3200;16;0.008305,0.022993,0.999701,0.000000,0.999965,0.000009,-0.008307,0.000000,-0.000200,0.999736,-0.022992,0.000000,0.000000,6.600000,0.000000,1.000000;;; + } + } + + Animation Animation2 { + { Frame3_L_Mune_A } + AnimationKey { + 4; + 170; + 0;16;0.000000,-0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 5;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 10;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 50;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 54;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 60;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 66;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 70;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 74;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 78;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 82;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 100;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 103;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 108;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 112;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 116;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 120;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 124;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 128;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 132;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 150;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 152;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 160;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 180;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 200;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 202;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 210;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 230;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 250;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 252;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 260;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 280;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 300;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 302;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 310;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 330;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 350;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 360;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 400;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 420;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 430;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 440;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 455;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 470;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 500;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 510;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 517;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 525;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 540;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 600;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 607;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 615;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 650;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 655;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 665;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 670;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 680;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 700;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 715;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 720;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 725;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 735;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1000;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1010;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1020;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1030;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1050;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1100;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1110;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1120;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1130;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1135;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1150;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1200;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1210;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1220;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1230;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1235;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1250;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1500;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1510;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1523;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1530;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1532;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1536;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1550;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1560;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1600;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1620;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1630;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1632;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1636;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1650;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1700;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1725;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1730;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1732;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1736;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1750;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1760;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2000;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2015;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2020;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2022;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2025;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2050;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2060;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2065;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2070;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2071;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2072;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2075;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2100;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2115;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2120;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2121;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2122;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2125;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2200;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2220;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2230;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2235;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2260;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2400;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2420;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2430;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2435;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2460;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2490;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2500;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2510;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2530;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2535;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2560;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2600;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2630;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2635;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2640;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2650;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2700;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2730;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2735;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2740;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2755;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2800;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2830;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2835;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2850;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2900;16;-0.000001,0.000000,1.000000,0.000000,1.000000,0.000000,0.000001,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2910;16;-0.000001,-0.000000,1.000000,0.000000,1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2930;16;-0.000001,-0.000000,1.000000,0.000000,1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2932;16;-0.000001,0.000134,1.000000,0.000000,1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,-0.000134,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2935;16;-0.000001,0.000000,1.000000,0.000000,1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3100;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3104;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3110;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3116;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3120;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3124;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3128;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3132;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3150;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3154;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3160;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3166;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3170;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3174;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3178;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3182;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3200;16;0.000000,-0.047564,0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;; + } + } + + Animation Animation3 { + { Frame4_L_Kata_Base } + AnimationKey { + 4; + 173; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 5;16;0.997704,-0.034369,0.058356,0.000000,0.043934,0.984208,-0.171478,0.000000,-0.051541,0.173648,0.983458,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 10;16;0.910112,-0.413875,0.020103,0.000000,0.414312,0.908166,-0.059841,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 50;16;0.871085,0.490114,0.031611,0.000000,-0.490162,0.863516,0.118670,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 54;16;0.903481,0.428433,0.012919,0.000000,-0.427701,0.899140,0.092839,0.000000,0.028159,-0.089404,0.995597,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 60;16;0.982636,0.184640,-0.018276,0.000000,-0.184523,0.982797,0.007872,0.000000,0.019415,-0.004363,0.999802,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 66;16;0.999116,-0.041094,-0.008891,0.000000,0.040382,0.996782,-0.069252,0.000000,0.011708,0.068831,0.997560,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 70;16;0.998164,0.058072,-0.017215,0.000000,-0.058631,0.997700,-0.034025,0.000000,0.015199,0.034972,0.999273,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 74;16;0.974618,0.223320,-0.015717,0.000000,-0.222885,0.974512,0.025453,0.000000,0.021000,-0.021304,0.999552,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 78;16;0.922431,0.386118,0.005800,0.000000,-0.385224,0.919041,0.083464,0.000000,0.026896,-0.079224,0.996494,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 82;16;0.871085,0.490114,0.031611,0.000000,-0.490162,0.863516,0.118670,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 100;16;0.871085,0.490114,0.031611,0.000000,-0.490162,0.863516,0.118670,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 103;16;0.919765,0.392040,0.018350,0.000000,-0.391254,0.912237,0.121429,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 108;16;0.994462,0.103447,-0.018538,0.000000,-0.100460,0.987507,0.121400,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 112;16;0.991569,-0.121377,-0.045376,0.000000,0.125852,0.985464,0.114117,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 116;16;0.975325,-0.213578,-0.055914,0.000000,0.218608,0.969668,0.109340,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 120;16;0.999071,-0.026202,-0.034210,0.000000,0.030070,0.992565,0.117946,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 124;16;0.977222,0.212163,-0.004981,0.000000,-0.209965,0.969978,0.122707,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 128;16;0.906596,0.421411,0.022278,0.000000,-0.420869,0.899046,0.120770,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 132;16;0.871085,0.490114,0.031611,0.000000,-0.490162,0.863515,0.118670,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 150;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 152;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097451,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 160;16;0.953574,0.301092,0.006406,0.000000,-0.299574,0.946158,0.122640,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 180;16;0.883618,0.467342,0.028493,0.000000,-0.467191,0.876050,0.119456,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 200;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 202;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 210;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 230;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 250;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 252;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 260;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 280;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 300;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 302;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 310;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 330;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 350;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 360;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 400;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 420;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 430;16;0.752820,-0.650383,-0.101311,0.000000,0.657502,0.750249,0.069410,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 440;16;0.728833,-0.676789,-0.103728,0.000000,0.683995,0.726518,0.065744,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 455;16;0.753122,-0.650038,-0.101279,0.000000,0.657156,0.750548,0.069457,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 470;16;0.754823,-0.648090,-0.101099,0.000000,0.655202,0.752230,0.069719,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 500;16;0.910112,-0.413875,0.020103,0.000000,0.414312,0.908166,-0.059841,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 510;16;0.741064,-0.670395,0.037344,0.000000,0.671403,0.739343,-0.050896,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 517;16;0.995991,-0.089448,-0.001225,0.000000,0.089203,0.994109,-0.061564,0.000000,0.006724,0.061208,0.998102,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 525;16;0.998745,0.049117,-0.009761,0.000000,-0.049620,0.996930,-0.060564,0.000000,0.006756,0.060972,0.998117,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 540;16;0.910112,-0.413875,0.020103,0.000000,0.414312,0.908166,-0.059841,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 600;16;0.910112,-0.413875,0.020103,0.000000,0.414312,0.908166,-0.059841,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 607;16;0.741065,-0.670394,0.037344,0.000000,0.671402,0.739343,-0.050896,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 615;16;0.741064,-0.670395,0.037344,0.000000,0.671403,0.739343,-0.050896,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 650;16;0.891964,-0.451541,0.022591,0.000000,0.452059,0.890038,-0.058946,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 655;16;0.891964,-0.451542,0.022591,0.000000,0.452059,0.890038,-0.058946,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 665;16;0.896235,-0.443033,0.022028,0.000000,0.443532,0.894304,-0.059159,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 670;16;0.891964,-0.451542,0.022591,0.000000,0.452059,0.890038,-0.058946,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 680;16;0.891964,-0.451542,0.022591,0.000000,0.452059,0.890038,-0.058946,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 700;16;0.891964,-0.451541,0.022591,0.000000,0.452059,0.890038,-0.058946,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 715;16;0.513881,-0.856372,0.050527,0.000000,0.857837,0.512527,-0.037842,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 720;16;0.657893,-0.751844,0.043670,0.000000,0.753084,0.656269,-0.046637,0.000000,0.006404,0.063569,0.997957,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 725;16;0.832508,-0.553183,0.030321,0.000000,0.553977,0.830582,-0.056947,0.000000,0.006318,0.064206,0.997917,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 735;16;0.910112,-0.413875,0.020103,0.000000,0.414312,0.908166,-0.059841,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1000;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097451,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1010;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1020;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1030;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1050;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1100;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1110;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1120;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1130;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1135;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1150;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1200;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1210;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1220;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1230;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1235;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1250;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1500;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1510;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1523;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1530;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1532;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1536;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1550;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1560;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1600;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1620;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1630;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1632;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1636;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1650;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1700;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1725;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1730;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1732;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1736;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1750;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 1760;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097451,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2000;16;0.998772,0.039727,-0.029587,0.000000,-0.038583,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2015;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2020;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2022;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2025;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2050;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2060;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2065;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2070;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2071;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2072;16;0.998772,0.039727,-0.029587,0.000000,-0.038582,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2075;16;0.998772,0.039731,-0.029586,0.000000,-0.038586,0.998521,0.038297,0.000000,0.031064,-0.037108,0.998828,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2100;16;0.259838,0.965337,0.024657,0.000000,-0.965022,0.258661,0.042737,0.000000,0.034878,-0.034899,0.998782,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2115;16;0.259838,0.965337,0.024657,0.000000,-0.965022,0.258661,0.042737,0.000000,0.034878,-0.034899,0.998782,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2120;16;0.259838,0.965337,0.024657,0.000000,-0.965022,0.258661,0.042737,0.000000,0.034878,-0.034899,0.998782,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2121;16;0.259838,0.965337,0.024657,0.000000,-0.965022,0.258661,0.042737,0.000000,0.034878,-0.034899,0.998782,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2122;16;0.259838,0.965337,0.024657,0.000000,-0.965022,0.258661,0.042737,0.000000,0.034878,-0.034899,0.998782,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2125;16;0.259836,0.965338,0.024657,0.000000,-0.965023,0.258660,0.042737,0.000000,0.034878,-0.034899,0.998782,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2200;16;0.919839,-0.385113,-0.074733,0.000000,0.391081,0.915183,0.097451,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2220;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2230;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2235;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097450,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2260;16;0.919838,-0.385114,-0.074734,0.000000,0.391082,0.915182,0.097451,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2400;16;0.913641,-0.406390,-0.010363,0.000000,0.406276,0.913678,-0.011524,0.000000,0.014152,0.006318,0.999880,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2420;16;0.910112,-0.413875,0.020103,0.000000,0.414312,0.908166,-0.059841,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2430;16;0.910112,-0.413875,0.020103,0.000000,0.414312,0.908166,-0.059841,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2431;16;0.944720,0.324590,-0.046319,0.000000,-0.327078,0.942828,-0.063994,0.000000,0.022899,0.075606,0.996875,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2432;16;0.503950,0.856686,-0.110107,0.000000,-0.862221,0.506503,-0.005474,0.000000,0.051080,0.097695,0.993905,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2433;16;0.283801,0.949013,-0.137231,0.000000,-0.955638,0.291693,0.040880,0.000000,0.078826,0.119542,0.989695,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2435;16;0.192611,0.966426,-0.170063,0.000000,-0.974320,0.208949,0.083905,0.000000,0.116623,0.149535,0.981855,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2460;16;-0.022298,0.987135,-0.158324,0.000000,-0.991321,-0.001308,0.131458,0.000000,0.129560,0.159881,0.978597,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2490;16;0.192612,0.966426,-0.170063,0.000000,-0.974320,0.208950,0.083905,0.000000,0.116623,0.149535,0.981855,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2500;16;0.192612,0.966426,-0.170063,0.000000,-0.974320,0.208950,0.083905,0.000000,0.116623,0.149535,0.981855,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2510;16;0.192612,0.966426,-0.170063,0.000000,-0.974320,0.208950,0.083905,0.000000,0.116623,0.149535,0.981855,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2530;16;0.192606,0.966427,-0.170063,0.000000,-0.974321,0.208944,0.083906,0.000000,0.116623,0.149535,0.981854,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2535;16;0.910112,-0.413875,0.020103,0.000000,0.414312,0.908166,-0.059841,0.000000,0.006510,0.062790,0.998006,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2560;16;0.800748,-0.597867,0.036844,0.000000,0.598962,0.799885,-0.037799,0.000000,-0.006872,0.052336,0.998606,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2600;16;0.963829,-0.259457,-0.060954,0.000000,0.264732,0.958437,0.106374,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2630;16;0.963829,-0.259457,-0.060954,0.000000,0.264733,0.958437,0.106374,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2635;16;0.963829,-0.259457,-0.060954,0.000000,0.264733,0.958437,0.106374,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2640;16;0.963829,-0.259457,-0.060954,0.000000,0.264733,0.958437,0.106374,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2650;16;0.963829,-0.259459,-0.060954,0.000000,0.264734,0.958436,0.106374,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2700;16;0.593960,0.800773,0.077299,0.000000,-0.803904,0.587097,0.095162,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2730;16;0.593960,0.800773,0.077299,0.000000,-0.803904,0.587097,0.095162,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2735;16;0.593960,0.800773,0.077299,0.000000,-0.803904,0.587097,0.095162,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2740;16;0.593960,0.800773,0.077299,0.000000,-0.803904,0.587097,0.095162,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2755;16;0.593958,0.800774,0.077299,0.000000,-0.803905,0.587095,0.095162,0.000000,0.030821,-0.118663,0.992456,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2800;16;0.957838,-0.287152,0.009531,0.000000,0.285660,0.948259,-0.138577,0.000000,0.030754,0.135457,0.990306,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2830;16;0.957837,-0.287153,0.009532,0.000000,0.285661,0.948259,-0.138577,0.000000,0.030754,0.135457,0.990306,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2835;16;0.957837,-0.287153,0.009532,0.000000,0.285661,0.948259,-0.138577,0.000000,0.030754,0.135457,0.990306,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2850;16;0.957837,-0.287153,0.009532,0.000000,0.285661,0.948259,-0.138577,0.000000,0.030754,0.135457,0.990306,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2900;16;0.000345,0.984846,-0.173429,0.000000,-0.991606,0.022760,0.127276,0.000000,0.129294,0.171930,0.976588,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2910;16;-0.420284,0.821645,-0.385046,0.000000,-0.899962,-0.323257,0.292528,0.000000,0.115885,0.469472,0.875310,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2930;16;0.000349,0.984846,-0.173428,0.000000,-0.991606,0.022764,0.127275,0.000000,0.129294,0.171928,0.976588,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2932;16;0.009847,0.986004,-0.166432,0.000000,-0.991497,0.031225,0.126325,0.000000,0.129754,0.163773,0.977928,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 2935;16;0.000347,0.984846,-0.173429,0.000000,-0.991606,0.022763,0.127275,0.000000,0.129294,0.171929,0.976588,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3100;16;0.871084,0.490115,0.031611,0.000000,-0.490163,0.863515,0.118669,0.000000,0.030865,-0.118865,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3104;16;0.903480,0.428435,0.012920,0.000000,-0.427704,0.899138,0.092840,0.000000,0.028159,-0.089406,0.995597,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3110;16;0.982638,0.184632,-0.018276,0.000000,-0.184516,0.982798,0.007869,0.000000,0.019415,-0.004360,0.999802,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3116;16;0.999116,-0.041093,-0.008891,0.000000,0.040380,0.996782,-0.069251,0.000000,0.011708,0.068831,0.997560,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3120;16;0.998164,0.058072,-0.017215,0.000000,-0.058631,0.997700,-0.034025,0.000000,0.015199,0.034972,0.999273,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3124;16;0.974617,0.223324,-0.015717,0.000000,-0.222890,0.974511,0.025454,0.000000,0.021000,-0.021305,0.999552,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3128;16;0.922433,0.386115,0.005800,0.000000,-0.385220,0.919043,0.083463,0.000000,0.026896,-0.079223,0.996494,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3132;16;0.871085,0.490114,0.031611,0.000000,-0.490162,0.863516,0.118670,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3150;16;0.871085,0.490114,0.031611,0.000000,-0.490162,0.863516,0.118670,0.000000,0.030865,-0.118866,0.992431,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3154;16;0.903483,0.428430,0.012919,0.000000,-0.427698,0.899141,0.092838,0.000000,0.028159,-0.089403,0.995597,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3160;16;0.982635,0.184648,-0.018276,0.000000,-0.184531,0.982795,0.007875,0.000000,0.019416,-0.004366,0.999802,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3166;16;0.999116,-0.041095,-0.008891,0.000000,0.040383,0.996782,-0.069252,0.000000,0.011708,0.068832,0.997560,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3170;16;0.998164,0.058078,-0.017215,0.000000,-0.058638,0.997699,-0.034023,0.000000,0.015200,0.034970,0.999273,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3174;16;0.974618,0.223320,-0.015717,0.000000,-0.222885,0.974512,0.025453,0.000000,0.021000,-0.021304,0.999552,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3178;16;0.922430,0.386121,0.005801,0.000000,-0.385227,0.919040,0.083465,0.000000,0.026896,-0.079225,0.996494,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3182;16;0.871083,0.490117,0.031612,0.000000,-0.490164,0.863514,0.118670,0.000000,0.030865,-0.118867,0.992430,0.000000,-0.150000,0.450000,1.051190,1.000000;;, + 3200;16;0.957837,-0.287153,0.009532,0.000000,0.285661,0.948259,-0.138577,0.000000,0.030754,0.135457,0.990306,0.000000,-0.150000,0.450000,1.051190,1.000000;;; + } + } + + Animation Animation4 { + { Frame5_L_Ueude } + AnimationKey { + 4; + 172; + 0;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 5;16;0.403279,-0.299040,0.864836,0.000000,0.126380,0.954240,0.271023,0.000000,-0.906308,0.000000,0.422618,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 10;16;0.528438,-0.000000,0.848972,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.848972,0.000000,0.528438,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 50;16;0.227118,-0.069756,0.971366,0.000000,0.015882,0.997564,0.067924,0.000000,-0.973738,0.000000,0.227673,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 54;16;0.258177,-0.058871,0.964302,0.000000,0.015226,0.998266,0.056868,0.000000,-0.965978,0.000000,0.258626,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 60;16;0.359013,-0.027572,0.932925,0.000000,0.009902,0.999620,0.025732,0.000000,-0.933280,0.000000,0.359150,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 66;16;0.443097,0.000000,0.896474,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.896474,0.000000,0.443097,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 70;16;0.404048,-0.009117,0.914692,0.000000,0.003684,0.999958,0.008340,0.000000,-0.914730,0.000000,0.404065,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 74;16;0.338041,-0.026155,0.940768,0.000000,0.008844,0.999658,0.024614,0.000000,-0.941090,0.000000,0.338157,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 78;16;0.269033,-0.045307,0.962065,0.000000,0.012202,0.998973,0.043633,0.000000,-0.963054,0.000000,0.269309,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 82;16;0.227118,-0.069756,0.971366,0.000000,0.015882,0.997564,0.067924,0.000000,-0.973738,0.000000,0.227673,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 100;16;0.308528,-0.224951,0.924233,0.000000,0.071229,0.974370,0.213376,0.000000,-0.948545,-0.000000,0.316644,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 103;16;0.336154,-0.196141,0.921156,0.000000,0.067240,0.980576,0.184256,0.000000,-0.939404,-0.000000,0.342812,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 108;16;0.396428,-0.089083,0.913733,0.000000,0.035456,0.996024,0.081723,0.000000,-0.917381,0.000000,0.398011,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 112;16;0.437693,-0.005987,0.899104,0.000000,0.002621,0.999982,0.005383,0.000000,-0.899120,-0.000000,0.437701,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 116;16;0.453170,0.029666,0.890930,0.000000,-0.013449,0.999560,-0.026442,0.000000,-0.891323,0.000000,0.453369,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 120;16;0.413303,-0.033069,0.909993,0.000000,0.013675,0.999453,0.030109,0.000000,-0.910491,0.000000,0.413529,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 124;16;0.359396,-0.112706,0.926354,0.000000,0.040766,0.993628,0.105075,0.000000,-0.932294,-0.000000,0.361701,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 128;16;0.310253,-0.187602,0.931960,0.000000,0.059256,0.982245,0.177998,0.000000,-0.948806,0.000000,0.315861,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 132;16;0.308528,-0.224951,0.924233,0.000000,0.071229,0.974370,0.213376,0.000000,-0.948545,0.000000,0.316644,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 150;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 152;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,-0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 160;16;0.699639,-0.040148,0.713367,0.000000,0.028112,0.999194,0.028663,0.000000,-0.713943,0.000000,0.700204,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 180;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 200;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 202;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 210;16;0.788870,-0.069756,0.610588,0.000000,0.055163,0.997564,0.042696,0.000000,-0.612079,0.000000,0.790796,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 230;16;0.788870,-0.069756,0.610588,0.000000,0.055163,0.997564,0.042696,0.000000,-0.612079,0.000000,0.790796,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 250;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686580,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 252;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 260;16;0.788870,-0.069756,0.610588,0.000000,0.055163,0.997564,0.042696,0.000000,-0.612079,0.000000,0.790796,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 280;16;0.788870,-0.069756,0.610588,0.000000,0.055163,0.997564,0.042696,0.000000,-0.612079,0.000000,0.790796,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 300;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 302;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 310;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 330;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 350;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 360;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 400;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 420;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 430;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 440;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 455;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 470;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,-0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 500;16;0.528438,0.000000,0.848972,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.848972,0.000000,0.528438,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 510;16;0.713250,0.000000,0.700909,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.700909,-0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 517;16;0.510490,-0.000608,0.859884,0.000000,0.000311,1.000000,0.000523,0.000000,-0.859884,-0.000000,0.510490,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 525;16;0.447943,-0.000699,0.894062,0.000000,0.000313,1.000000,0.000625,0.000000,-0.894062,0.000000,0.447943,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 540;16;0.528438,0.000000,0.848972,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.848972,0.000000,0.528438,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 600;16;0.528438,0.000000,0.848972,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.848972,0.000000,0.528438,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 607;16;0.713250,-0.000000,0.700909,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.700909,0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 615;16;0.713250,0.000000,0.700909,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.700909,-0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 650;16;0.713250,0.000000,0.700909,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.700909,-0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 655;16;0.713250,0.000000,0.700909,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.700909,-0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 665;16;0.713250,0.000000,0.700909,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.700909,-0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 670;16;0.713250,0.000000,0.700909,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.700909,-0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 680;16;0.713250,0.000000,0.700909,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.700909,-0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 700;16;0.713250,0.000000,0.700909,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.700909,-0.000000,0.713250,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 715;16;0.713251,-0.000000,0.700909,0.000000,0.000000,1.000000,0.000000,0.000000,-0.700909,-0.000000,0.713251,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 720;16;0.649997,0.000299,0.759937,0.000000,-0.000195,1.000000,-0.000228,0.000000,-0.759937,0.000000,0.649997,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 725;16;0.572702,0.000544,0.819763,0.000000,-0.000312,1.000000,-0.000446,0.000000,-0.819763,0.000000,0.572702,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 735;16;0.528438,0.000000,0.848972,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.848972,0.000000,0.528438,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1000;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,-0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1010;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1020;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1030;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1050;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1100;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1110;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1120;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1130;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1135;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1150;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1200;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1210;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1220;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1230;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1235;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1250;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1500;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1510;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1523;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1530;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1532;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1536;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1550;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1560;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1600;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1620;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1630;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1632;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1636;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1650;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1700;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1725;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1730;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1732;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1736;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1750;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1760;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686580,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2000;16;0.787804,-0.069756,0.611963,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2015;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2020;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2022;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2025;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2050;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2060;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2065;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2070;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2071;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2072;16;0.787804,-0.069756,0.611964,0.000000,0.055089,0.997564,0.042793,0.000000,-0.613458,-0.000000,0.789727,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2075;16;0.787802,-0.069761,0.611965,0.000000,0.055092,0.997564,0.042795,0.000000,-0.613459,0.000000,0.789726,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2100;16;-0.000000,-1.000000,-0.000000,0.000000,0.258819,-0.000000,0.965926,0.000000,-0.965926,0.000000,0.258819,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2115;16;-0.000000,-1.000000,-0.000000,0.000000,0.258819,-0.000000,0.965926,0.000000,-0.965926,0.000000,0.258819,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2120;16;-0.000000,-1.000000,-0.000000,0.000000,0.258819,-0.000000,0.965926,0.000000,-0.965926,0.000000,0.258819,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2121;16;-0.000000,-1.000000,-0.000000,0.000000,0.258819,-0.000000,0.965926,0.000000,-0.965926,0.000000,0.258819,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2122;16;-0.000000,-1.000000,-0.000000,0.000000,0.258819,-0.000000,0.965926,0.000000,-0.965926,0.000000,0.258819,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2125;16;-0.000000,-1.000000,-0.000002,0.000000,0.258819,-0.000002,0.965926,0.000000,-0.965926,-0.000000,0.258819,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2200;16;0.684908,-0.069758,0.725283,0.000000,0.047894,0.997564,0.050718,0.000000,-0.727054,0.000000,0.686580,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2220;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2230;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2235;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686581,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2260;16;0.684908,-0.069756,0.725283,0.000000,0.047893,0.997564,0.050717,0.000000,-0.727054,0.000000,0.686580,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2400;16;0.856068,-0.021679,0.516408,0.000000,0.018563,0.999765,0.011198,0.000000,-0.516530,-0.000000,0.856269,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2420;16;0.912834,0.000000,0.408330,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.408330,-0.000000,0.912834,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2430;16;0.912834,0.000000,0.408331,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.408331,0.000000,0.912834,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2433;16;0.158680,-0.944443,0.287834,0.000000,0.455962,0.328676,0.827085,0.000000,-0.875739,0.000000,0.482785,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2435;16;0.040031,-0.968148,0.247159,0.000000,0.154788,0.250379,0.955694,0.000000,-0.987136,0.000000,0.159880,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2460;16;0.003963,-0.995496,0.094721,0.000000,0.041618,0.094803,0.994626,0.000000,-0.999126,0.000000,0.041807,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2490;16;0.101266,-0.773840,0.625233,0.000000,0.123723,0.633381,0.763886,0.000000,-0.987136,0.000000,0.159882,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2500;16;0.101266,-0.773840,0.625233,0.000000,0.123723,0.633381,0.763886,0.000000,-0.987136,0.000000,0.159882,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2510;16;0.101266,-0.773840,0.625233,0.000000,0.123723,0.633381,0.763886,0.000000,-0.987136,0.000000,0.159882,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2530;16;0.101264,-0.773842,0.625232,0.000000,0.123721,0.633379,0.763887,0.000000,-0.987137,-0.000000,0.159879,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2533;16;0.829128,-0.312931,0.463271,0.000000,0.273181,0.949776,0.152638,0.000000,-0.487769,0.000000,0.872973,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2535;16;0.912834,0.000000,0.408331,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.408331,0.000000,0.912834,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2560;16;0.949404,0.105987,0.295634,0.000000,-0.101194,0.994368,-0.031511,0.000000,-0.297308,0.000000,0.954782,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2600;16;0.685360,-0.069547,0.724876,0.000000,0.047781,0.997579,0.050536,0.000000,-0.726635,-0.000000,0.687023,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2630;16;0.685360,-0.069547,0.724876,0.000000,0.047781,0.997579,0.050535,0.000000,-0.726635,0.000000,0.687024,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2635;16;0.685360,-0.069547,0.724876,0.000000,0.047781,0.997579,0.050535,0.000000,-0.726635,0.000000,0.687024,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2640;16;0.685360,-0.069547,0.724876,0.000000,0.047781,0.997579,0.050535,0.000000,-0.726635,0.000000,0.687024,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2650;16;0.685361,-0.069547,0.724875,0.000000,0.047781,0.997579,0.050535,0.000000,-0.726634,0.000000,0.687024,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2700;16;0.242941,-0.069547,0.967545,0.000000,0.016937,0.997579,0.067453,0.000000,-0.969893,-0.000000,0.243531,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2730;16;0.242941,-0.069547,0.967545,0.000000,0.016937,0.997579,0.067453,0.000000,-0.969893,-0.000000,0.243531,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2735;16;0.242941,-0.069547,0.967545,0.000000,0.016937,0.997579,0.067453,0.000000,-0.969893,-0.000000,0.243531,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2740;16;0.242941,-0.069547,0.967545,0.000000,0.016937,0.997579,0.067453,0.000000,-0.969893,-0.000000,0.243531,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2755;16;0.242941,-0.069547,0.967545,0.000000,0.016937,0.997579,0.067453,0.000000,-0.969893,0.000000,0.243530,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2800;16;0.570691,-0.069547,0.818215,0.000000,0.039786,0.997579,0.057043,0.000000,-0.820201,-0.000000,0.572076,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2830;16;0.570691,-0.069547,0.818215,0.000000,0.039786,0.997579,0.057043,0.000000,-0.820201,0.000000,0.572076,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2835;16;0.570691,-0.069547,0.818215,0.000000,0.039786,0.997579,0.057043,0.000000,-0.820201,0.000000,0.572076,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2850;16;0.570691,-0.069547,0.818215,0.000000,0.039786,0.997579,0.057043,0.000000,-0.820201,0.000000,0.572076,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2900;16;-0.239370,0.146774,0.959771,0.000000,0.035518,0.989170,-0.142412,0.000000,-0.970279,0.000000,-0.241991,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2910;16;-0.239369,0.146774,0.959771,0.000000,0.035518,0.989170,-0.142411,0.000000,-0.970279,0.000000,-0.241989,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2930;16;-0.239369,0.146774,0.959771,0.000000,0.035518,0.989170,-0.142411,0.000000,-0.970279,0.000000,-0.241989,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2932;16;-0.240631,0.147380,0.959362,0.000000,0.035856,0.989080,-0.142952,0.000000,-0.969954,0.000000,-0.243288,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2935;16;-0.239369,0.146774,0.959771,0.000000,0.035518,0.989170,-0.142412,0.000000,-0.970279,0.000000,-0.241990,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3100;16;0.227118,-0.069756,0.971366,0.000000,0.015882,0.997564,0.067924,0.000000,-0.973738,0.000000,0.227672,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3104;16;0.258176,-0.058871,0.964303,0.000000,0.015226,0.998266,0.056868,0.000000,-0.965978,0.000000,0.258624,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3110;16;0.359016,-0.027571,0.932924,0.000000,0.009902,0.999620,0.025731,0.000000,-0.933279,0.000000,0.359153,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3116;16;0.443097,-0.000000,0.896474,0.000000,0.000000,1.000000,0.000000,0.000000,-0.896474,0.000000,0.443097,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3120;16;0.404048,-0.009117,0.914692,0.000000,0.003684,0.999958,0.008340,0.000000,-0.914730,0.000000,0.404065,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3124;16;0.338040,-0.026155,0.940768,0.000000,0.008845,0.999658,0.024614,0.000000,-0.941090,0.000000,0.338155,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3128;16;0.269034,-0.045307,0.962064,0.000000,0.012202,0.998973,0.043633,0.000000,-0.963053,0.000000,0.269311,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3132;16;0.227118,-0.069756,0.971366,0.000000,0.015882,0.997564,0.067924,0.000000,-0.973738,0.000000,0.227673,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3150;16;0.227118,-0.069756,0.971366,0.000000,0.015882,0.997564,0.067924,0.000000,-0.973738,0.000000,0.227673,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3154;16;0.258179,-0.058870,0.964302,0.000000,0.015225,0.998266,0.056867,0.000000,-0.965977,0.000000,0.258627,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3160;16;0.359010,-0.027573,0.932926,0.000000,0.009903,0.999620,0.025733,0.000000,-0.933281,0.000000,0.359147,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3166;16;0.443098,0.000000,0.896473,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.896473,0.000000,0.443098,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3170;16;0.404045,-0.009118,0.914693,0.000000,0.003684,0.999958,0.008340,0.000000,-0.914732,0.000000,0.404062,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3174;16;0.338041,-0.026155,0.940768,0.000000,0.008844,0.999658,0.024614,0.000000,-0.941090,0.000000,0.338157,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3178;16;0.269031,-0.045308,0.962065,0.000000,0.012202,0.998973,0.043634,0.000000,-0.963054,0.000000,0.269308,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3182;16;0.227117,-0.069756,0.971366,0.000000,0.015882,0.997564,0.067924,0.000000,-0.973738,0.000000,0.227671,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3200;16;0.570691,-0.069547,0.818215,0.000000,0.039786,0.997579,0.057043,0.000000,-0.820201,0.000000,0.572076,0.000000,0.030000,0.010000,0.800000,1.000000;;; + } + } + + Animation Animation5 { + { Frame6_L_Hizi } + AnimationKey { + 4; + 171; + 0;16;1.000000,0.000000,-0.000001,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000001,-0.000000,1.000000,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 5;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 10;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 50;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 54;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.944331,0.328997,0.000000,0.000001,-0.328997,0.944331,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 60;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.945848,0.324611,0.000000,0.000001,-0.324611,0.945848,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 66;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.947556,0.319589,0.000000,0.000001,-0.319589,0.947556,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 70;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.948833,0.315780,0.000000,0.000001,-0.315780,0.948833,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 74;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.949880,0.312615,0.000000,0.000001,-0.312615,0.949880,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 78;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.950107,0.311923,0.000000,0.000001,-0.311923,0.950107,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 82;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 100;16;1.000000,-0.000000,-0.000001,0.000000,0.000001,0.825750,0.564037,0.000000,0.000001,-0.564037,0.825750,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 103;16;1.000000,0.000000,-0.000001,0.000000,0.000001,0.802191,0.597067,0.000000,0.000001,-0.597067,0.802191,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 108;16;1.000000,-0.000000,-0.000001,0.000000,0.000001,0.762099,0.647460,0.000000,0.000001,-0.647460,0.762099,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 112;16;1.000000,-0.000000,-0.000001,0.000000,0.000001,0.731855,0.681460,0.000000,0.000001,-0.681460,0.731855,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 116;16;1.000000,-0.000000,-0.000001,0.000000,0.000001,0.720122,0.693847,0.000000,0.000001,-0.693847,0.720122,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 120;16;1.000000,0.000000,-0.000001,0.000000,0.000001,0.743025,0.669264,0.000000,0.000001,-0.669264,0.743025,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 124;16;1.000000,-0.000000,-0.000001,0.000000,0.000001,0.769965,0.638086,0.000000,0.000001,-0.638086,0.769965,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 128;16;1.000000,0.000000,-0.000001,0.000000,0.000001,0.797147,0.603785,0.000000,0.000001,-0.603785,0.797147,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 132;16;1.000000,-0.000000,-0.000001,0.000000,0.000001,0.825750,0.564037,0.000000,0.000001,-0.564037,0.825750,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 150;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 152;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 160;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.959176,0.282808,0.000000,0.000001,-0.282808,0.959176,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 180;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.961572,0.274554,0.000000,0.000001,-0.274554,0.961572,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 200;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 202;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 210;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 230;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 250;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 252;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 260;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 280;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 300;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 302;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 310;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 330;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 350;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 360;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 400;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 420;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 430;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 440;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 455;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 470;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 500;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 510;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 517;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.956205,0.292697,0.000000,0.000001,-0.292697,0.956205,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 525;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956190,0.292745,0.000000,0.000001,-0.292745,0.956190,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 540;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 600;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 607;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 615;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 650;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 655;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 665;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 670;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 680;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 700;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 715;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 720;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956354,0.292212,0.000000,0.000001,-0.292212,0.956354,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 725;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.956394,0.292081,0.000000,0.000001,-0.292081,0.956394,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 735;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1000;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1010;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1020;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1030;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1050;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1100;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1110;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1120;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1130;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1135;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1150;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1200;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1210;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1220;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1230;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1235;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1250;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1500;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1510;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1523;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1530;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1532;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1536;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1550;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1560;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1600;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1620;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1630;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1632;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1636;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1650;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1700;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1725;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1730;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1732;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1736;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1750;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 1760;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2000;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2015;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2020;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2022;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2025;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2050;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2060;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2065;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2070;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2071;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2072;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2075;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2100;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2115;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2120;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2121;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2122;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2125;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2200;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2220;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2230;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2235;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2260;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2400;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.952692,0.303937,0.000000,0.000001,-0.303937,0.952692,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2420;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2430;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2433;16;1.000000,0.000000,-0.000001,0.000000,0.000000,1.000000,0.000001,0.000000,0.000001,-0.000001,1.000000,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2435;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.919821,0.392338,0.000000,0.000001,-0.392338,0.919821,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2460;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.914734,0.404056,0.000000,0.000001,-0.404056,0.914734,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2490;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.919822,0.392337,0.000000,0.000001,-0.392337,0.919822,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2500;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.919822,0.392337,0.000000,0.000001,-0.392337,0.919822,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2510;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.919822,0.392337,0.000000,0.000001,-0.392337,0.919822,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2530;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.919821,0.392337,0.000000,0.000001,-0.392337,0.919821,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2535;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.956305,0.292372,0.000000,0.000001,-0.292372,0.956305,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2560;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.959962,0.280131,0.000000,0.000001,-0.280131,0.959962,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2600;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2630;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2635;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2640;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2650;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2700;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2730;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2735;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2740;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2755;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2800;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2830;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2835;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2850;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2900;16;1.000000,0.000000,-0.000001,0.000000,-0.000001,0.836114,-0.548556,0.000000,0.000001,0.548556,0.836114,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2910;16;1.000000,-0.000000,-0.000001,0.000000,-0.000000,0.980381,-0.197110,0.000000,0.000001,0.197110,0.980381,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2930;16;1.000000,0.000000,-0.000001,0.000000,-0.000001,0.836113,-0.548557,0.000000,0.000001,0.548557,0.836113,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2932;16;1.000000,-0.000000,-0.000001,0.000000,-0.000000,0.901478,-0.432825,0.000000,0.000001,0.432825,0.901478,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 2935;16;1.000000,0.000000,-0.000001,0.000000,-0.000001,0.836114,-0.548556,0.000000,0.000001,0.548556,0.836114,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3100;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329450,0.000000,0.000001,-0.329450,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3104;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944331,0.328997,0.000000,0.000001,-0.328997,0.944331,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3110;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.945848,0.324611,0.000000,0.000001,-0.324611,0.945848,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3116;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.947556,0.319589,0.000000,0.000001,-0.319589,0.947556,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3120;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.948833,0.315780,0.000000,0.000001,-0.315780,0.948833,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3124;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.949880,0.312615,0.000000,0.000001,-0.312615,0.949880,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3128;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.950107,0.311923,0.000000,0.000001,-0.311923,0.950107,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3132;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3150;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329451,0.000000,0.000001,-0.329451,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3154;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944331,0.328997,0.000000,0.000001,-0.328997,0.944331,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3160;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.945848,0.324611,0.000000,0.000001,-0.324611,0.945848,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3166;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.947556,0.319589,0.000000,0.000001,-0.319589,0.947556,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3170;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.948833,0.315779,0.000000,0.000001,-0.315779,0.948833,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3174;16;1.000000,-0.000000,-0.000001,0.000000,0.000000,0.949880,0.312615,0.000000,0.000001,-0.312615,0.949880,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3178;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.950107,0.311923,0.000000,0.000001,-0.311923,0.950107,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3182;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944173,0.329450,0.000000,0.000001,-0.329450,0.944173,0.000000,-0.000000,0.000000,1.500000,1.000000;;, + 3200;16;1.000000,0.000000,-0.000001,0.000000,0.000000,0.944193,0.329392,0.000000,0.000001,-0.329392,0.944193,0.000000,-0.000000,0.000000,1.500000,1.000000;;; + } + } + + Animation Animation6 { + { Frame7_L_Sitaude } + AnimationKey { + 4; + 169; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.450000,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.939693,0.342020,0.000000,0.000000,-0.342020,0.939693,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 10;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.674302,0.738455,0.000000,0.000000,-0.738455,0.674302,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 50;16;0.999363,0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 54;16;0.999589,0.000000,0.028684,0.000000,-0.020144,0.711918,0.701974,0.000000,-0.020420,-0.702263,0.711625,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 60;16;0.999915,0.000000,0.012999,0.000000,-0.010513,0.588127,0.808700,0.000000,-0.007645,-0.808768,0.588077,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 66;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.472232,0.881474,0.000000,0.000000,-0.881474,0.472232,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 70;16;0.999973,-0.000000,0.007326,0.000000,-0.006222,0.527788,0.849353,0.000000,-0.003866,-0.849376,0.527774,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 74;16;0.999822,-0.000000,0.018865,0.000000,-0.014869,0.615439,0.788044,0.000000,-0.011610,-0.788185,0.615329,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 78;16;0.999539,0.000000,0.030368,0.000000,-0.021689,0.699953,0.713859,0.000000,-0.021256,-0.714189,0.699630,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 82;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 100;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.895183,0.445699,0.000000,0.000000,-0.445699,0.895183,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 103;16;0.999998,0.000000,-0.002080,0.000000,0.000901,0.901303,0.433187,0.000000,0.001874,-0.433188,0.901301,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 108;16;0.999999,0.000000,-0.001468,0.000000,0.000642,0.899523,0.436873,0.000000,0.001321,-0.436873,0.899522,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 112;16;1.000000,0.000000,-0.000607,0.000000,0.000268,0.896987,0.442056,0.000000,0.000544,-0.442057,0.896987,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 116;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.895183,0.445699,0.000000,-0.000000,-0.445699,0.895183,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 120;16;1.000000,0.000000,0.000068,0.000000,-0.000030,0.900122,0.435638,0.000000,-0.000061,-0.435638,0.900122,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 124;16;1.000000,0.000000,0.000053,0.000000,-0.000022,0.906847,0.421459,0.000000,-0.000048,-0.421459,0.906847,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 128;16;1.000000,0.000000,0.000022,0.000000,-0.000009,0.910193,0.414185,0.000000,-0.000020,-0.414185,0.910193,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 132;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.895183,0.445699,0.000000,-0.000000,-0.445699,0.895183,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.548029,0.836460,0.000000,0.000000,-0.836460,0.548029,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 160;16;0.999894,-0.000000,0.014543,0.000000,-0.006761,0.885359,0.464859,0.000000,-0.012875,-0.464908,0.885265,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 180;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.941658,0.336571,0.000000,0.000000,-0.336571,0.941658,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 200;16;0.999363,0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763668,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 202;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 210;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 230;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 250;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 252;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 260;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 280;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 300;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 302;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 310;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 330;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 350;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 360;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 400;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 420;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 430;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 440;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 455;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 470;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 500;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.674302,0.738456,0.000000,0.000000,-0.738456,0.674302,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.674302,0.738455,0.000000,0.000000,-0.738455,0.674302,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 517;16;1.000000,0.000000,0.000311,0.000000,-0.000229,0.675136,0.737693,0.000000,-0.000210,-0.737693,0.675136,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 525;16;1.000000,-0.000000,0.000357,0.000000,-0.000264,0.675260,0.737579,0.000000,-0.000241,-0.737579,0.675260,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 540;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.674302,0.738455,0.000000,0.000000,-0.738455,0.674302,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 600;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.674302,0.738455,0.000000,0.000000,-0.738455,0.674302,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 607;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.674302,0.738455,0.000000,0.000000,-0.738455,0.674302,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 615;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.674302,0.738455,0.000000,0.000000,-0.738455,0.674302,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.674303,0.738455,0.000000,0.000000,-0.738455,0.674303,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.975917,-0.218143,0.000000,0.000000,0.218143,0.975917,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 665;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944878,0.327424,0.000000,0.000000,-0.327424,0.944878,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 670;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.975917,-0.218143,0.000000,0.000000,0.218143,0.975917,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 680;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.975917,-0.218143,0.000000,0.000000,0.218143,0.975917,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.975917,-0.218143,0.000000,0.000000,0.218143,0.975917,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 715;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.975917,-0.218144,0.000000,-0.000000,0.218144,0.975917,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 720;16;1.000000,0.000000,-0.000153,0.000000,0.000024,0.987238,0.159251,0.000000,0.000151,-0.159251,0.987238,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 725;16;1.000000,-0.000000,-0.000278,0.000000,0.000155,0.830879,0.556453,0.000000,0.000231,-0.556453,0.830879,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.674302,0.738455,0.000000,0.000000,-0.738455,0.674302,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1000;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1010;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1020;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1030;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1050;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1100;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1110;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1120;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1130;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1135;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1150;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1200;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1210;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1220;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1230;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1235;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1250;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1500;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1510;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1523;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1530;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1532;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1536;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1550;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1560;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1600;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1620;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1630;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1632;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1636;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1650;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1700;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1725;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1730;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1732;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1736;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1750;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 1760;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2000;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2015;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2020;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2022;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2025;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2050;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2060;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2065;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2070;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2071;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2072;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2075;16;0.999363,0.000000,0.035693,0.000000,-0.023023,0.764156,0.644620,0.000000,-0.027275,-0.645031,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.939693,0.342020,0.000000,0.000000,-0.342020,0.939693,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2115;16;0.999363,-0.000000,0.035693,0.000000,-0.012208,0.939693,0.341802,0.000000,-0.033540,-0.342020,0.939094,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2120;16;0.999363,-0.000000,0.035693,0.000000,-0.012208,0.939693,0.341802,0.000000,-0.033540,-0.342020,0.939094,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2121;16;0.999363,-0.000000,0.035693,0.000000,-0.012208,0.939693,0.341802,0.000000,-0.033540,-0.342020,0.939094,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2122;16;0.999363,-0.000000,0.035693,0.000000,-0.012208,0.939693,0.341802,0.000000,-0.033540,-0.342020,0.939094,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2125;16;0.999363,0.000000,0.035693,0.000000,-0.012208,0.939693,0.341802,0.000000,-0.033540,-0.342020,0.939094,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2200;16;0.999363,0.000000,0.035693,0.000000,-0.023023,0.764156,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2220;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2230;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2235;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2260;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763668,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2400;16;0.999939,-0.000000,0.011086,0.000000,-0.000852,0.997043,0.076846,0.000000,-0.011054,-0.076850,0.996981,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2420;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.979223,-0.202788,0.000000,0.000000,0.202788,0.979223,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2430;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979223,-0.202787,0.000000,0.000000,0.202787,0.979223,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2435;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.890212,0.455547,0.000000,0.000000,-0.455547,0.890212,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2460;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.850297,0.526303,0.000000,0.000000,-0.526303,0.850297,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2490;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.890213,0.455545,0.000000,0.000000,-0.455545,0.890213,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.890213,0.455545,0.000000,0.000000,-0.455545,0.890213,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.890213,0.455545,0.000000,0.000000,-0.455545,0.890213,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2530;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.890212,0.455547,0.000000,0.000000,-0.455547,0.890212,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2535;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979223,-0.202787,0.000000,0.000000,0.202787,0.979223,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2560;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.959530,-0.281606,0.000000,0.000000,0.281606,0.959530,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2600;16;0.999364,-0.000000,0.035650,0.000000,-0.022964,0.764912,0.643726,0.000000,-0.027269,-0.644135,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2630;16;0.999364,-0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2635;16;0.999364,-0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2640;16;0.999364,-0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2650;16;0.999364,-0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2700;16;0.999364,-0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2730;16;0.999364,-0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2735;16;0.999364,-0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2740;16;0.999364,-0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2755;16;0.999364,0.000000,0.035650,0.000000,-0.022963,0.764913,0.643725,0.000000,-0.027269,-0.644134,0.764426,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2800;16;1.000000,-0.000000,0.000000,0.000000,-0.000000,0.636067,0.771634,0.000000,-0.000000,-0.771634,0.636067,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2830;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.636067,0.771634,0.000000,0.000000,-0.771634,0.636067,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.636067,0.771634,0.000000,0.000000,-0.771634,0.636067,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2850;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.636067,0.771634,0.000000,0.000000,-0.771634,0.636067,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.850297,0.526303,0.000000,0.000000,-0.526303,0.850297,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.850297,0.526303,0.000000,0.000000,-0.526303,0.850297,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2930;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.850297,0.526303,0.000000,0.000000,-0.526303,0.850297,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2932;16;1.000000,0.000000,-0.000101,0.000000,0.000053,0.850515,0.525951,0.000000,0.000086,-0.525951,0.850515,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 2935;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.850297,0.526303,0.000000,0.000000,-0.526303,0.850297,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3100;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764156,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3104;16;0.999589,-0.000000,0.028684,0.000000,-0.020144,0.711919,0.701972,0.000000,-0.020421,-0.702261,0.711627,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3110;16;0.999916,-0.000000,0.012999,0.000000,-0.010513,0.588123,0.808703,0.000000,-0.007645,-0.808771,0.588073,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3116;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.472233,0.881474,0.000000,-0.000000,-0.881474,0.472233,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3120;16;0.999973,-0.000000,0.007326,0.000000,-0.006222,0.527788,0.849353,0.000000,-0.003866,-0.849376,0.527774,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3124;16;0.999822,-0.000000,0.018865,0.000000,-0.014869,0.615441,0.788043,0.000000,-0.011610,-0.788183,0.615331,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3128;16;0.999539,0.000000,0.030368,0.000000,-0.021689,0.699951,0.713861,0.000000,-0.021256,-0.714191,0.699628,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3132;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3150;16;0.999363,-0.000000,0.035693,0.000000,-0.023023,0.764155,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3154;16;0.999589,0.000000,0.028683,0.000000,-0.020143,0.711916,0.701976,0.000000,-0.020420,-0.702265,0.711623,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3160;16;0.999915,0.000000,0.013000,0.000000,-0.010514,0.588131,0.808697,0.000000,-0.007646,-0.808765,0.588082,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3166;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.472232,0.881474,0.000000,0.000000,-0.881474,0.472232,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3170;16;0.999973,-0.000000,0.007326,0.000000,-0.006223,0.527792,0.849351,0.000000,-0.003867,-0.849374,0.527777,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3174;16;0.999822,-0.000000,0.018865,0.000000,-0.014869,0.615439,0.788044,0.000000,-0.011610,-0.788185,0.615329,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3178;16;0.999539,-0.000000,0.030369,0.000000,-0.021689,0.699955,0.713858,0.000000,-0.021257,-0.714187,0.699632,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3182;16;0.999363,0.000000,0.035693,0.000000,-0.023023,0.764156,0.644621,0.000000,-0.027275,-0.645032,0.763669,0.000000,-0.000000,0.000000,0.450000,1.000000;;, + 3200;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.636067,0.771634,0.000000,0.000000,-0.771634,0.636067,0.000000,-0.000000,0.000000,0.450000,1.000000;;; + } + } + + Animation Animation7 { + { Frame8_L_kata_Armer } + AnimationKey { + 4; + 170; + 0;16;0.972082,-0.000000,-0.234641,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.234641,0.000000,0.972082,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 5;16;0.906308,-0.000000,-0.422618,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.422618,0.000000,0.906308,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 10;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 50;16;0.923060,-0.000000,-0.384657,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384657,0.000000,0.923060,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 54;16;0.923147,-0.000000,-0.384448,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384448,0.000000,0.923147,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 60;16;0.924083,-0.000000,-0.382191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.382191,0.000000,0.924083,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 66;16;0.924936,-0.000000,-0.380123,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.380123,0.000000,0.924936,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 70;16;0.924601,-0.000000,-0.380937,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.380937,0.000000,0.924601,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 74;16;0.924024,-0.000000,-0.382334,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.382334,0.000000,0.924024,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 78;16;0.923455,-0.000000,-0.383707,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.383707,0.000000,0.923455,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 82;16;0.923060,-0.000000,-0.384657,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384657,0.000000,0.923060,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 100;16;0.922968,-0.000000,-0.384877,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384877,0.000000,0.922968,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 103;16;0.922975,-0.000000,-0.384860,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384860,0.000000,0.922975,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 108;16;0.923011,-0.000000,-0.384774,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384774,0.000000,0.923011,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 112;16;0.923040,-0.000000,-0.384704,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384704,0.000000,0.923040,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 116;16;0.923060,-0.000000,-0.384657,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384657,0.000000,0.923060,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 120;16;0.924389,-0.000000,-0.381451,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.381451,0.000000,0.924389,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 124;16;0.926145,-0.000000,-0.377168,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.377168,0.000000,0.926145,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 128;16;0.927015,-0.000000,-0.375023,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.375023,0.000000,0.927015,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 132;16;0.923060,-0.000000,-0.384657,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384657,0.000000,0.923060,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 150;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 152;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 160;16;0.847686,-0.000000,-0.530498,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.530498,0.000000,0.847686,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 180;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 200;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 202;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 210;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 230;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 250;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 252;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 260;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 280;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 300;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 302;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 310;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 330;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 350;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 360;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 400;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 420;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 430;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 440;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 455;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 470;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 500;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 510;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 517;16;0.929403,-0.000000,-0.369066,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.369066,0.000000,0.929403,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 525;16;0.929319,-0.000000,-0.369277,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.369277,0.000000,0.929319,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 540;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 600;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 607;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 615;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 650;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 655;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 665;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 670;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 680;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 700;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 715;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 720;16;0.930243,-0.000000,-0.366945,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.366945,0.000000,0.930243,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 725;16;0.930468,-0.000000,-0.366373,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.366373,0.000000,0.930468,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 735;16;0.929966,-0.000000,-0.367645,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.367645,0.000000,0.929966,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1000;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1010;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1020;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1030;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1050;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1100;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1110;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1120;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1130;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1135;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1150;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1200;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1210;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1220;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1230;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1235;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1250;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1500;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1510;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1523;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1530;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1532;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1536;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1550;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1560;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1600;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1620;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1630;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1632;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1636;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1650;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1700;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1725;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1730;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1732;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1736;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1750;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 1760;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2000;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2015;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2020;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2022;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2025;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2050;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2060;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2065;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2070;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2071;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2072;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2075;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2100;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2115;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2120;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2121;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2122;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2125;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2200;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2220;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2230;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2235;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2260;16;0.851522,-0.000000,-0.524319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524319,0.000000,0.851522,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2400;16;0.883500,-0.000000,-0.468431,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.468431,0.000000,0.883500,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2420;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2430;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2435;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2460;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2490;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2500;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2510;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2530;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2535;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2560;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2600;16;0.851580,-0.000000,-0.524225,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524225,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2630;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2635;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2640;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2650;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2700;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2730;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2735;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2740;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2755;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2800;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2830;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2835;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2850;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2900;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2910;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2930;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2932;16;0.896635,-0.000000,-0.442770,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442770,0.000000,0.896635,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 2935;16;0.896715,-0.000000,-0.442609,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.442609,0.000000,0.896715,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3100;16;0.923060,-0.000000,-0.384657,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384657,0.000000,0.923060,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3104;16;0.923147,-0.000000,-0.384448,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384448,0.000000,0.923147,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3110;16;0.924083,-0.000000,-0.382191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.382191,0.000000,0.924083,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3116;16;0.924936,-0.000000,-0.380123,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.380123,0.000000,0.924936,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3120;16;0.924601,-0.000000,-0.380937,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.380937,0.000000,0.924601,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3124;16;0.924024,-0.000000,-0.382334,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.382334,0.000000,0.924024,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3128;16;0.923455,-0.000000,-0.383707,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.383707,0.000000,0.923455,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3132;16;0.923060,-0.000000,-0.384657,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384657,0.000000,0.923060,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3150;16;0.923060,-0.000000,-0.384657,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384657,0.000000,0.923060,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3154;16;0.923147,-0.000000,-0.384448,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384448,0.000000,0.923147,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3160;16;0.924083,-0.000000,-0.382191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.382191,0.000000,0.924083,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3166;16;0.924936,-0.000000,-0.380123,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.380123,0.000000,0.924936,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3170;16;0.924601,-0.000000,-0.380937,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.380937,0.000000,0.924601,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3174;16;0.924024,-0.000000,-0.382334,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.382334,0.000000,0.924024,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3178;16;0.923455,-0.000000,-0.383707,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.383707,0.000000,0.923455,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3182;16;0.923060,-0.000000,-0.384656,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.384656,0.000000,0.923060,0.000000,-0.050000,-0.000000,0.800000,1.000000;;, + 3200;16;0.851580,-0.000000,-0.524224,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.524224,0.000000,0.851580,0.000000,-0.050000,-0.000000,0.800000,1.000000;;; + } + } + + Animation Animation8 { + { Frame9_L_Kata_S_Joint_1 } + AnimationKey { + 4; + 170; + 0;16;0.979925,0.000000,0.199368,0.000000,0.000000,1.000000,0.000000,0.000000,-0.199368,0.000000,0.979925,0.000000,0.000000,-0.000000,1.491643,1.000000;;, + 5;16;0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 10;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 50;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 54;16;-0.054318,0.000000,0.998524,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998524,-0.000000,-0.054318,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 60;16;-0.032834,0.000000,0.999461,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999461,-0.000000,-0.032834,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 66;16;-0.013159,0.000000,0.999913,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999913,-0.000000,-0.013159,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 70;16;-0.020899,0.000000,0.999782,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999782,-0.000000,-0.020899,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 74;16;-0.034193,0.000000,0.999415,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999415,-0.000000,-0.034193,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 78;16;-0.047270,0.000000,0.998882,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998882,-0.000000,-0.047270,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 82;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 100;16;-0.058402,0.000000,0.998293,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998293,-0.000000,-0.058402,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 103;16;-0.058238,0.000000,0.998303,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998303,-0.000000,-0.058238,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 108;16;-0.057423,0.000000,0.998350,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998350,-0.000000,-0.057423,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 112;16;-0.056757,0.000000,0.998388,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998388,-0.000000,-0.056757,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 116;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 120;16;-0.056254,0.000000,0.998417,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998417,-0.000000,-0.056254,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 124;16;-0.056265,0.000000,0.998416,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998416,-0.000000,-0.056265,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 128;16;-0.056288,0.000000,0.998415,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998415,-0.000000,-0.056288,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 132;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 150;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 152;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 160;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 180;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 200;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 202;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 210;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 230;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 250;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 252;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 260;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 280;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 300;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 302;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 310;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 330;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 350;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 360;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 400;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 420;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 430;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 440;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 455;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 470;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 500;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 510;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 517;16;0.103641,0.000000,0.994615,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994615,-0.000000,0.103641,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 525;16;0.103433,0.000000,0.994636,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994636,-0.000000,0.103433,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 540;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 600;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 607;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 615;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 650;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 655;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 665;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 670;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 680;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 700;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 715;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 720;16;0.105730,0.000000,0.994395,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994395,-0.000000,0.105730,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 725;16;0.106294,0.000000,0.994335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994335,-0.000000,0.106294,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 735;16;0.105041,0.000000,0.994468,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994468,-0.000000,0.105041,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1000;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1010;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1020;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1030;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1050;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1100;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1110;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1120;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1130;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1135;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1150;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1200;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1210;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1220;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1230;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1235;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1250;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1500;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1510;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1523;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1530;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1532;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1536;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1550;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1560;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1600;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1620;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1630;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1632;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1636;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1650;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1700;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1725;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1730;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1732;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1736;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1750;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 1760;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2000;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2015;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2020;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2022;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2025;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2050;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2060;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2065;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2070;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2071;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2072;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2075;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2100;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2115;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2120;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2121;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2122;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2125;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2200;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2220;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2230;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2235;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2260;16;-0.056305,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056305,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2400;16;0.414039,0.000000,0.910259,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.910259,-0.000000,0.414039,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2420;16;0.600833,-0.000000,0.799374,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.799374,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2430;16;0.600833,0.000000,0.799375,0.000000,0.000000,1.000000,0.000000,0.000000,-0.799375,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2435;16;0.600833,0.000000,0.799375,0.000000,0.000000,1.000000,0.000000,0.000000,-0.799375,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2460;16;0.600833,0.000000,0.799375,0.000000,0.000000,1.000000,0.000000,0.000000,-0.799375,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2490;16;0.600833,0.000000,0.799375,0.000000,0.000000,1.000000,0.000000,0.000000,-0.799375,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2500;16;0.600833,0.000000,0.799375,0.000000,0.000000,1.000000,0.000000,0.000000,-0.799375,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2510;16;0.600833,0.000000,0.799375,0.000000,0.000000,1.000000,0.000000,0.000000,-0.799375,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2530;16;0.600833,0.000000,0.799375,0.000000,0.000000,1.000000,0.000000,0.000000,-0.799375,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2535;16;0.600833,0.000000,0.799375,0.000000,0.000000,1.000000,0.000000,0.000000,-0.799375,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2560;16;0.600833,-0.000000,0.799374,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.799374,0.000000,0.600833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2600;16;-0.055472,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055472,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2630;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2635;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2640;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2650;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2700;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2730;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2735;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2740;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2755;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2800;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2830;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2835;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2850;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2900;16;-0.249881,-0.000000,0.968277,0.000000,0.000000,1.000000,0.000000,0.000000,-0.968277,0.000000,-0.249881,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2910;16;-0.249881,0.000000,0.968277,0.000000,0.000000,1.000000,0.000000,0.000000,-0.968277,0.000000,-0.249881,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2930;16;-0.249881,-0.000000,0.968277,0.000000,0.000000,1.000000,0.000000,0.000000,-0.968277,0.000000,-0.249881,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2932;16;-0.250417,-0.000000,0.968138,0.000000,0.000000,1.000000,0.000000,0.000000,-0.968138,0.000000,-0.250417,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 2935;16;-0.249881,-0.000000,0.968277,0.000000,0.000000,1.000000,0.000000,0.000000,-0.968277,0.000000,-0.249881,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3100;16;-0.056305,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056305,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3104;16;-0.054319,0.000000,0.998524,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998524,-0.000000,-0.054319,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3110;16;-0.032833,0.000000,0.999461,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999461,-0.000000,-0.032833,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3116;16;-0.013159,0.000000,0.999913,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999913,-0.000000,-0.013159,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3120;16;-0.020899,0.000000,0.999782,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999782,-0.000000,-0.020899,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3124;16;-0.034193,0.000000,0.999415,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999415,-0.000000,-0.034193,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3128;16;-0.047270,0.000000,0.998882,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998882,-0.000000,-0.047270,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3132;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3150;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3154;16;-0.054318,0.000000,0.998524,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998524,-0.000000,-0.054318,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3160;16;-0.032835,0.000000,0.999461,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999461,-0.000000,-0.032835,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3166;16;-0.013158,0.000000,0.999913,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999913,-0.000000,-0.013158,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3170;16;-0.020900,0.000000,0.999782,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999782,-0.000000,-0.020900,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3174;16;-0.034193,0.000000,0.999415,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.999415,-0.000000,-0.034193,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3178;16;-0.047270,0.000000,0.998882,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998882,-0.000000,-0.047270,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3182;16;-0.056304,0.000000,0.998414,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998414,-0.000000,-0.056304,0.000000,-0.000000,-0.000000,1.491643,1.000000;;, + 3200;16;-0.055471,0.000000,0.998460,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998460,-0.000000,-0.055471,0.000000,-0.000000,-0.000000,1.491643,1.000000;;; + } + } + + Animation Animation9 { + { Frame10_L_kata_S_Joint_2 } + AnimationKey { + 4; + 170; + 0;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 5;16;-0.173648,-0.000000,-0.984808,0.000000,-0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,-0.173648,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 10;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 50;16;0.160074,0.000000,-0.987105,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987105,0.000000,0.160074,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 54;16;0.162065,0.000000,-0.986780,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.986780,0.000000,0.162065,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 60;16;0.183547,0.000000,-0.983011,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.983011,0.000000,0.183547,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 66;16;0.203131,0.000000,-0.979152,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.979152,0.000000,0.203131,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 70;16;0.195437,0.000000,-0.980716,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.980716,0.000000,0.195437,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 74;16;0.182191,0.000000,-0.983263,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.983263,0.000000,0.182191,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 78;16;0.169124,0.000000,-0.985595,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.985595,0.000000,0.169124,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 82;16;0.160074,0.000000,-0.987105,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987105,0.000000,0.160074,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 100;16;0.157970,0.000000,-0.987444,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987444,0.000000,0.157970,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 103;16;0.158135,0.000000,-0.987418,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987418,0.000000,0.158135,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 108;16;0.158952,0.000000,-0.987286,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987286,0.000000,0.158952,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 112;16;0.159620,-0.000000,-0.987179,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987179,0.000000,0.159620,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 116;16;0.160074,0.000000,-0.987105,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987105,0.000000,0.160074,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 120;16;0.169505,0.000000,-0.985529,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.985529,0.000000,0.169505,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 124;16;0.182002,0.000000,-0.983298,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.983298,0.000000,0.182002,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 128;16;0.188228,0.000000,-0.982125,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.982125,0.000000,0.188228,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 132;16;0.160074,0.000000,-0.987105,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987105,0.000000,0.160074,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 150;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 152;16;-0.267050,-0.000000,-0.963683,0.000000,0.000000,1.000000,-0.000000,0.000000,0.963683,-0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 160;16;-0.286228,-0.000000,-0.958161,0.000000,0.000000,1.000000,-0.000000,0.000000,0.958161,-0.000000,-0.286228,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 180;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 200;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 202;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 210;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 230;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 250;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 252;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 260;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 280;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 300;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 302;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 310;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 330;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 350;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 360;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 400;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 420;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 430;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 440;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 455;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 470;16;0.197850,-0.000000,-0.980232,0.000000,0.000000,1.000000,0.000000,0.000000,0.980232,-0.000000,0.197850,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 500;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 510;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 517;16;0.314041,0.000000,-0.949409,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.949409,0.000000,0.314041,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 525;16;0.313309,0.000000,-0.949651,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.949651,0.000000,0.313309,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 540;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 600;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 607;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 615;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 650;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 655;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 665;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 670;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 680;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 700;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 715;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 720;16;0.321376,0.000000,-0.946952,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.946952,0.000000,0.321376,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 725;16;0.323352,0.000000,-0.946279,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.946279,0.000000,0.323352,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 735;16;0.318959,0.000000,-0.947769,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.947769,0.000000,0.318959,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1000;16;-0.267050,-0.000000,-0.963683,0.000000,0.000000,1.000000,-0.000000,0.000000,0.963683,-0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1010;16;-0.267050,-0.000000,-0.963683,0.000000,0.000000,1.000000,-0.000000,0.000000,0.963683,-0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1020;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1030;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1050;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1100;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1110;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1120;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1130;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1135;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1150;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1200;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1210;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1220;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1230;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1235;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1250;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1500;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1510;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1523;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1530;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1532;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1536;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1550;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1560;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1600;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1620;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1630;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1632;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1636;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1650;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1700;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1725;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1730;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1732;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1736;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1750;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 1760;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2000;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2015;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2020;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2022;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2025;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2050;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2060;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2065;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2070;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2071;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2072;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2075;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2100;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2115;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2120;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2121;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2122;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2125;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2200;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2220;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2230;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2235;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2260;16;-0.267050,0.000000,-0.963683,0.000000,0.000000,1.000000,0.000000,0.000000,0.963683,0.000000,-0.267050,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2400;16;0.185711,0.000000,-0.982604,0.000000,0.000000,1.000000,0.000000,0.000000,0.982604,0.000000,0.185711,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2420;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2430;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2435;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2460;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2490;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2500;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2510;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2530;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2535;16;0.382682,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382682,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2560;16;0.382683,0.000000,-0.923880,0.000000,0.000000,1.000000,0.000000,0.000000,0.923880,0.000000,0.382683,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2600;16;-0.266290,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266290,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2630;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2635;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2640;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2650;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2700;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2730;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2735;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2740;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2755;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2800;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2830;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2835;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2850;16;-0.266289,0.000000,-0.963893,0.000000,0.000000,1.000000,0.000000,0.000000,0.963893,0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2900;16;-0.377843,0.000000,-0.925870,0.000000,0.000000,1.000000,0.000000,0.000000,0.925870,0.000000,-0.377843,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2910;16;-0.377843,0.000000,-0.925870,0.000000,0.000000,1.000000,0.000000,0.000000,0.925870,0.000000,-0.377843,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2930;16;-0.377843,-0.000000,-0.925870,0.000000,0.000000,1.000000,-0.000000,0.000000,0.925870,-0.000000,-0.377843,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2932;16;-0.379275,0.000000,-0.925284,0.000000,0.000000,1.000000,-0.000000,0.000000,0.925284,-0.000000,-0.379275,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 2935;16;-0.377843,-0.000000,-0.925870,0.000000,0.000000,1.000000,-0.000000,0.000000,0.925870,-0.000000,-0.377843,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3100;16;0.160073,0.000000,-0.987105,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987105,0.000000,0.160073,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3104;16;0.162065,0.000000,-0.986780,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.986780,0.000000,0.162065,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3110;16;0.183548,0.000000,-0.983011,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.983011,0.000000,0.183548,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3116;16;0.203131,0.000000,-0.979152,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.979152,0.000000,0.203131,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3120;16;0.195437,0.000000,-0.980716,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.980716,0.000000,0.195437,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3124;16;0.182191,0.000000,-0.983263,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.983263,0.000000,0.182191,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3128;16;0.169124,0.000000,-0.985595,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.985595,0.000000,0.169124,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3132;16;0.160074,0.000000,-0.987105,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987105,0.000000,0.160074,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3150;16;0.160074,0.000000,-0.987105,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987105,0.000000,0.160074,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3154;16;0.162065,0.000000,-0.986780,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.986780,0.000000,0.162065,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3160;16;0.183547,0.000000,-0.983011,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.983011,0.000000,0.183547,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3166;16;0.203131,0.000000,-0.979152,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.979152,0.000000,0.203131,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3170;16;0.195436,0.000000,-0.980716,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.980716,0.000000,0.195436,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3174;16;0.182191,0.000000,-0.983263,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.983263,0.000000,0.182191,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3178;16;0.169124,0.000000,-0.985595,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.985595,0.000000,0.169124,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3182;16;0.160076,-0.000000,-0.987105,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987105,0.000000,0.160076,0.000000,-0.000000,0.000000,1.350000,1.000000;;, + 3200;16;-0.266289,-0.000000,-0.963893,0.000000,0.000000,1.000000,-0.000000,0.000000,0.963893,-0.000000,-0.266289,0.000000,-0.000000,0.000000,1.350000,1.000000;;; + } + } + + Animation Animation10 { + { Frame11_L_Kata_S_End } + AnimationKey { + 4; + 170; + 0;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 5;16;-0.438371,-0.000000,0.898794,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.898794,-0.000000,-0.438371,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 10;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 50;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 54;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 60;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 66;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 70;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 74;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 78;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 82;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 100;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 103;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 108;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 112;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 116;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 120;16;0.009086,-0.000000,0.999959,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.999959,-0.000000,0.009086,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 124;16;0.021225,-0.000000,0.999775,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.999775,-0.000000,0.021225,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 128;16;0.027299,-0.000000,0.999627,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.999627,-0.000000,0.027299,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 132;16;0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 150;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 152;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 160;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 180;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 200;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 202;16;-0.400349,-0.000000,0.916363,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916363,-0.000000,-0.400349,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 210;16;0.109734,-0.000000,0.993961,0.000000,0.000000,1.000000,0.000000,0.000000,-0.993961,-0.000000,0.109734,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 230;16;0.109734,-0.000000,0.993961,0.000000,0.000000,1.000000,0.000000,0.000000,-0.993961,-0.000000,0.109734,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 250;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 252;16;-0.400349,-0.000000,0.916363,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916363,-0.000000,-0.400349,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 260;16;0.109733,-0.000000,0.993961,0.000000,0.000000,1.000000,0.000000,0.000000,-0.993961,-0.000000,0.109733,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 280;16;0.109733,-0.000000,0.993961,0.000000,0.000000,1.000000,0.000000,0.000000,-0.993961,-0.000000,0.109733,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 300;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 302;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 310;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 330;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 350;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 360;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 400;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 420;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 430;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 440;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 455;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 470;16;0.187380,-0.000000,0.982287,0.000000,0.000000,1.000000,0.000000,0.000000,-0.982287,-0.000000,0.187380,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 500;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 510;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 517;16;-0.003589,-0.000000,0.999994,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.999994,-0.000000,-0.003589,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 525;16;-0.004123,-0.000000,0.999992,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.999992,-0.000000,-0.004123,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 540;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 600;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 607;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 615;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 650;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 655;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 665;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 670;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 680;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 700;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 715;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 720;16;0.001766,-0.000000,0.999998,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.999998,-0.000000,0.001766,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 725;16;0.003212,-0.000000,0.999995,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.999995,-0.000000,0.003212,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 735;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1000;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1010;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1020;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1030;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1050;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1100;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1110;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1120;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1130;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1135;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1150;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1200;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1210;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1220;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1230;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1235;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1250;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1500;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1510;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1523;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1530;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1532;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1536;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1550;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1560;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1600;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1620;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1630;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1632;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1636;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1650;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1700;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1725;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1730;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1732;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1736;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1750;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 1760;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2000;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2015;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2020;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2022;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2025;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2050;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2060;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2065;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2070;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2071;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2072;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2075;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2100;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2115;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2120;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2121;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2122;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2125;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2200;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2220;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2230;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2235;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2260;16;-0.400350,-0.000000,0.916362,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916362,-0.000000,-0.400350,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2400;16;-0.275907,-0.000000,0.961184,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.961184,-0.000000,-0.275907,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2420;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2430;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2435;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2460;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2490;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2500;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2510;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2530;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2535;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2560;16;0.626604,-0.000000,0.779338,0.000000,0.000000,1.000000,0.000000,0.000000,-0.779338,-0.000000,0.626604,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2600;16;-0.400141,-0.000000,0.916453,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916453,-0.000000,-0.400141,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2630;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2635;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2640;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2650;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2700;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2730;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2735;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2740;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2755;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2800;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2830;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2835;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2850;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2900;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2910;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2930;16;-0.218143,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218143,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2932;16;-0.218749,-0.000000,0.975781,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975781,-0.000000,-0.218749,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 2935;16;-0.218144,-0.000000,0.975917,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.975917,-0.000000,-0.218144,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3100;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3104;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3110;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3116;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3120;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3124;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3128;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3132;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3150;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3154;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3160;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3166;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3170;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3174;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3178;16;-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3182;16;0.000002,-0.000000,1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000002,0.000000,-0.000000,-0.000000,1.350000,1.000000;;, + 3200;16;-0.400140,-0.000000,0.916454,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.916454,-0.000000,-0.400140,0.000000,-0.000000,-0.000000,1.350000,1.000000;;; + } + } + + Animation Animation11 { + { Frame12_L_Hand } + AnimationKey { + 4; + 145; + 0;16;1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.280000,2.000000,1.000000;;, + 5;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 10;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 50;16;0.967469,-0.000000,0.252991,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.252991,-0.000000,0.967469,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 54;16;0.968062,0.000000,0.250710,0.000000,-0.000054,1.000000,0.000209,0.000000,-0.250710,-0.000216,0.968062,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 60;16;0.967812,-0.000000,0.251675,0.000000,-0.000116,1.000000,0.000446,0.000000,-0.251675,-0.000461,0.967812,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 66;16;0.966822,-0.000000,0.255451,0.000000,-0.000350,0.999999,0.001323,0.000000,-0.255451,-0.001368,0.966821,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 78;16;0.962580,0.000000,0.270998,0.000000,-0.001570,0.999983,0.005577,0.000000,-0.270993,-0.005794,0.962564,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 103;16;0.952736,-0.000000,0.303800,0.000000,-0.004631,0.999884,0.014523,0.000000,-0.303765,-0.015244,0.952625,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 108;16;0.951354,-0.000000,0.308100,0.000000,-0.005065,0.999865,0.015640,0.000000,-0.308058,-0.016440,0.951226,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 112;16;0.950715,0.000000,0.310066,0.000000,-0.005252,0.999857,0.016103,0.000000,-0.310022,-0.016937,0.950579,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 120;16;0.950586,0.000000,0.310462,0.000000,-0.005225,0.999858,0.015999,0.000000,-0.310418,-0.016831,0.950451,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 124;16;0.950126,-0.000000,0.311866,0.000000,-0.005350,0.999853,0.016299,0.000000,-0.311820,-0.017154,0.949986,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 128;16;0.950776,-0.000000,0.309880,0.000000,-0.005088,0.999865,0.015612,0.000000,-0.309838,-0.016420,0.950647,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 150;16;0.965926,0.000000,0.258819,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.258819,-0.000000,0.965926,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 200;16;0.902244,0.000000,-0.431227,0.000000,-0.090393,0.977783,-0.189127,0.000000,0.421646,0.209619,0.882199,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 250;16;0.915279,0.000000,0.402820,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.402820,-0.000000,0.915279,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 300;16;0.952902,0.000000,0.303278,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.303278,-0.000000,0.952902,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 350;16;0.971737,-0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 400;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 420;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 430;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 440;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 455;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 470;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 500;16;0.928780,-0.000000,0.370632,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.370632,0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 510;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 517;16;0.929236,0.000000,0.369488,0.000000,-0.000101,1.000000,0.000254,0.000000,-0.369488,-0.000274,0.929236,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 525;16;0.929303,-0.000000,0.369317,0.000000,-0.000116,1.000000,0.000292,0.000000,-0.369317,-0.000314,0.929303,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 540;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 600;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 607;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 615;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 650;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 655;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 665;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 670;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 680;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 700;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 715;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 720;16;0.928555,0.000000,0.371195,0.000000,0.000050,1.000000,-0.000125,0.000000,-0.371195,0.000135,0.928555,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 725;16;0.928371,-0.000000,0.371655,0.000000,0.000091,1.000000,-0.000227,0.000000,-0.371655,0.000245,0.928371,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 735;16;0.928780,0.000000,0.370632,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.370632,-0.000000,0.928780,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1000;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1010;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1020;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1030;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1050;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1100;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1110;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1120;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1130;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1135;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1150;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1200;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1210;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1220;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1230;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1235;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1250;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1500;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1510;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1523;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1530;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1532;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1536;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1550;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1560;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1600;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1620;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1630;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1632;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1636;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1650;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1700;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1725;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1730;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1732;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1736;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1750;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 1760;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2000;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2015;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2020;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2022;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2025;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2050;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2060;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2065;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2070;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2071;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2072;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2075;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2100;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2115;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2120;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2121;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2122;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2125;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2200;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2220;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2230;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2235;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2260;16;0.971737,0.000000,0.236068,0.000000,-0.007415,0.999507,0.030523,0.000000,-0.235951,-0.031411,0.971257,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2400;16;0.944151,0.000000,0.329512,0.000000,-0.003215,0.999952,0.009211,0.000000,-0.329496,-0.009756,0.944106,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2420;16;0.999935,-0.000000,0.011424,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.011424,0.000000,0.999935,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2430;16;0.999935,0.000000,0.011425,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.011425,-0.000000,0.999935,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2435;16;0.998767,0.000000,-0.049642,0.000000,0.026745,0.842452,0.538107,0.000000,0.041821,-0.538772,0.841413,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2460;16;0.997749,0.000000,-0.067065,0.000000,0.018373,0.961741,0.273342,0.000000,0.064499,-0.273959,0.959576,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2490;16;0.999424,0.000000,-0.033947,0.000000,0.000000,1.000000,0.000000,0.000000,0.033947,-0.000000,0.999424,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2500;16;0.999424,-0.000000,-0.033947,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.033947,0.000000,0.999424,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2510;16;0.999424,0.000000,-0.033947,0.000000,0.000000,1.000000,0.000000,0.000000,0.033947,-0.000000,0.999424,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2530;16;0.999424,0.000000,-0.033947,0.000000,0.000000,1.000000,0.000000,0.000000,0.033947,-0.000000,0.999424,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2535;16;0.999935,0.000000,0.011425,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.011425,-0.000000,0.999935,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2560;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2600;16;0.971697,0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236116,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2630;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2635;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2640;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2650;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2700;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2730;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2735;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2740;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2755;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2800;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2830;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2835;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2850;16;0.971697,-0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2900;16;0.997749,-0.000000,-0.067065,0.000000,0.003393,0.998719,0.050479,0.000000,0.066979,-0.050593,0.996471,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2910;16;0.997749,-0.000000,-0.067065,0.000000,0.003393,0.998719,0.050479,0.000000,0.066979,-0.050593,0.996471,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2930;16;0.997749,0.000000,-0.067065,0.000000,0.003393,0.998719,0.050479,0.000000,0.066979,-0.050593,0.996471,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2932;16;0.997687,-0.000000,-0.067974,0.000000,0.003449,0.998712,0.050618,0.000000,0.067887,-0.050736,0.996402,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 2935;16;0.997749,-0.000000,-0.067065,0.000000,0.003393,0.998719,0.050479,0.000000,0.066979,-0.050593,0.996471,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3100;16;0.967469,-0.000000,0.252991,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.252991,-0.000000,0.967469,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3104;16;0.968062,0.000000,0.250710,0.000000,-0.000054,1.000000,0.000209,0.000000,-0.250710,-0.000216,0.968062,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3110;16;0.967812,0.000000,0.251675,0.000000,-0.000116,1.000000,0.000446,0.000000,-0.251675,-0.000461,0.967812,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3116;16;0.966822,0.000000,0.255451,0.000000,-0.000350,0.999999,0.001323,0.000000,-0.255451,-0.001368,0.966821,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3128;16;0.962580,-0.000000,0.270998,0.000000,-0.001570,0.999983,0.005577,0.000000,-0.270993,-0.005794,0.962564,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3150;16;0.967469,0.000000,0.252991,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.252991,-0.000000,0.967469,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3154;16;0.968062,0.000000,0.250710,0.000000,-0.000054,1.000000,0.000209,0.000000,-0.250710,-0.000216,0.968062,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3160;16;0.967812,-0.000000,0.251675,0.000000,-0.000116,1.000000,0.000446,0.000000,-0.251675,-0.000461,0.967812,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3166;16;0.966822,-0.000000,0.255451,0.000000,-0.000350,0.999999,0.001323,0.000000,-0.255451,-0.001369,0.966821,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3178;16;0.962580,-0.000000,0.270998,0.000000,-0.001570,0.999983,0.005577,0.000000,-0.270993,-0.005794,0.962564,0.000000,-0.000000,0.280000,2.000000,1.000000;;, + 3200;16;0.971697,0.000000,0.236232,0.000000,-0.007411,0.999508,0.030485,0.000000,-0.236115,-0.031373,0.971218,0.000000,-0.000000,0.280000,2.000000,1.000000;;; + } + } + + Animation Animation12 { + { Frame13_Kosi } + AnimationKey { + 4; + 171; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 5;16;0.999998,0.000000,-0.001745,0.000000,0.001745,0.000000,0.999998,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 10;16;0.999998,-0.000510,-0.001669,0.000000,0.001745,0.292373,0.956303,0.000000,0.000000,-0.956304,0.292373,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 50;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 54;16;0.999998,-0.000769,-0.001567,0.000000,0.001745,0.440780,0.897613,0.000000,0.000000,-0.897615,0.440781,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 60;16;0.999998,-0.000766,-0.001569,0.000000,0.001745,0.438570,0.898695,0.000000,0.000000,-0.898696,0.438571,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 66;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 70;16;0.999998,-0.000759,-0.001572,0.000000,0.001745,0.434786,0.900532,0.000000,0.000000,-0.900533,0.434787,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 74;16;0.999998,-0.000785,-0.001559,0.000000,0.001745,0.449822,0.893116,0.000000,0.000000,-0.893118,0.449823,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 78;16;0.999998,-0.000807,-0.001548,0.000000,0.001745,0.462412,0.886663,0.000000,0.000000,-0.886665,0.462413,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 82;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 100;16;0.999998,0.000195,-0.001735,0.000000,0.001745,-0.111467,0.993767,0.000000,0.000000,-0.993768,-0.111467,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 103;16;0.999998,0.000251,-0.001727,0.000000,0.001745,-0.143933,0.989586,0.000000,0.000000,-0.989587,-0.143933,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 108;16;0.999998,0.000235,-0.001730,0.000000,0.001745,-0.134408,0.990925,0.000000,0.000000,-0.990926,-0.134408,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 112;16;0.999998,0.000211,-0.001733,0.000000,0.001745,-0.120957,0.992656,0.000000,0.000000,-0.992658,-0.120957,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 116;16;0.999998,0.000195,-0.001735,0.000000,0.001745,-0.111467,0.993767,0.000000,-0.000000,-0.993768,-0.111467,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 120;16;0.999998,0.000214,-0.001732,0.000000,0.001745,-0.122711,0.992441,0.000000,0.000000,-0.992442,-0.122711,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 124;16;0.999998,0.000243,-0.001728,0.000000,0.001745,-0.139379,0.990238,0.000000,-0.000000,-0.990239,-0.139379,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 128;16;0.999998,0.000258,-0.001726,0.000000,0.001745,-0.148062,0.988976,0.000000,0.000000,-0.988978,-0.148063,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 132;16;0.999998,0.000195,-0.001735,0.000000,0.001745,-0.111467,0.993767,0.000000,0.000000,-0.993768,-0.111467,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 150;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 152;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 160;16;0.999998,-0.001047,-0.001396,0.000000,0.001745,0.600068,0.799947,0.000000,0.000000,-0.799948,0.600069,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 180;16;0.999998,-0.001141,-0.001321,0.000000,0.001745,0.653422,0.756992,0.000000,0.000000,-0.756993,0.653423,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 200;16;0.992985,-0.118216,-0.002282,0.000000,0.053865,0.435107,0.898766,0.000000,-0.105256,-0.892584,0.438423,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 202;16;0.992985,-0.118216,-0.002282,0.000000,0.053865,0.435107,0.898766,0.000000,-0.105256,-0.892584,0.438423,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 210;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 230;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 250;16;0.991098,0.131096,0.023192,0.000000,-0.084224,0.482512,0.871831,0.000000,0.103103,-0.866023,0.489258,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 252;16;0.991098,0.131095,0.023192,0.000000,-0.084224,0.482511,0.871831,0.000000,0.103103,-0.866024,0.489257,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 260;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 280;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 300;16;0.999998,0.000522,-0.001666,0.000000,0.001745,-0.299039,0.954239,0.000000,0.000000,-0.954241,-0.299039,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 302;16;0.999998,0.000522,-0.001666,0.000000,0.001745,-0.299038,0.954239,0.000000,0.000000,-0.954241,-0.299039,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 310;16;0.999998,0.000773,-0.001565,0.000000,0.001745,-0.443069,0.896486,0.000000,-0.000000,-0.896487,-0.443070,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 330;16;0.999998,0.000773,-0.001565,0.000000,0.001745,-0.443069,0.896486,0.000000,-0.000000,-0.896487,-0.443070,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 350;16;0.999998,-0.000852,-0.001524,0.000000,0.001745,0.487861,0.872920,0.000000,-0.000000,-0.872921,0.487861,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 360;16;0.999998,-0.000852,-0.001524,0.000000,0.001745,0.487861,0.872920,0.000000,0.000000,-0.872921,0.487862,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 400;16;0.999998,-0.000852,-0.001524,0.000000,0.001745,0.487861,0.872920,0.000000,0.000000,-0.872921,0.487862,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 420;16;0.999998,-0.000852,-0.001524,0.000000,0.001745,0.487861,0.872920,0.000000,0.000000,-0.872921,0.487862,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 430;16;0.999998,-0.000847,-0.001526,0.000000,0.001745,0.485120,0.874446,0.000000,0.000000,-0.874447,0.485121,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 440;16;0.999998,-0.000842,-0.001529,0.000000,0.001745,0.482289,0.876010,0.000000,0.000000,-0.876012,0.482290,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 455;16;0.999998,-0.000828,-0.001536,0.000000,0.001745,0.474581,0.880210,0.000000,0.000000,-0.880211,0.474582,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 470;16;0.999998,-0.000827,-0.001537,0.000000,0.001745,0.473724,0.880671,0.000000,0.000000,-0.880673,0.473725,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 500;16;0.999998,-0.000510,-0.001669,0.000000,0.001745,0.292372,0.956303,0.000000,0.000000,-0.956304,0.292373,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 510;16;0.999998,-0.000285,-0.001722,0.000000,0.001745,0.163328,0.986570,0.000000,-0.000000,-0.986572,0.163328,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 517;16;0.999998,-0.000258,-0.001726,0.000000,0.001745,0.147774,0.989020,0.000000,-0.000000,-0.989021,0.147774,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 525;16;0.999998,-0.000286,-0.001722,0.000000,0.001745,0.163603,0.986525,0.000000,0.000000,-0.986526,0.163603,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 540;16;0.999998,-0.000510,-0.001669,0.000000,0.001745,0.292373,0.956303,0.000000,0.000000,-0.956304,0.292373,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 600;16;0.999998,-0.000510,-0.001669,0.000000,0.001745,0.292373,0.956303,0.000000,0.000000,-0.956304,0.292373,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 607;16;0.999998,-0.000285,-0.001722,0.000000,0.001745,0.163329,0.986570,0.000000,-0.000000,-0.986572,0.163329,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 615;16;0.999998,0.001236,-0.001232,0.000000,0.001745,-0.708336,0.705873,0.000000,0.000000,-0.705874,-0.708338,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 650;16;0.999998,0.001236,-0.001232,0.000000,0.001745,-0.708337,0.705872,0.000000,-0.000000,-0.705874,-0.708338,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 655;16;0.999998,0.001745,-0.000000,0.000000,0.001745,-0.999998,0.000001,0.000000,0.000000,-0.000001,-1.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 665;16;0.999998,0.001745,-0.000006,0.000000,0.001745,-0.999992,0.003496,0.000000,0.000000,-0.003496,-0.999994,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 670;16;0.999998,0.001745,0.000012,0.000000,0.001745,-0.999974,-0.006972,0.000000,0.000000,0.006972,-0.999976,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 680;16;0.999998,0.001745,-0.000003,0.000000,0.001745,-0.999997,0.001738,0.000000,0.000000,-0.001738,-0.999999,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 700;16;0.999998,0.001745,-0.000000,0.000000,0.001745,-0.999998,0.000004,0.000000,-0.000000,-0.000004,-1.000000,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 715;16;0.999998,0.001236,-0.001232,0.000000,0.001745,-0.708337,0.705872,0.000000,0.000000,-0.705873,-0.708338,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 720;16;0.999998,0.000610,-0.001636,0.000000,0.001745,-0.349284,0.937015,0.000000,-0.000000,-0.937017,-0.349285,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 725;16;0.999998,-0.000082,-0.001744,0.000000,0.001745,0.047189,0.998884,0.000000,0.000000,-0.998886,0.047189,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 735;16;0.999998,-0.000510,-0.001669,0.000000,0.001745,0.292373,0.956303,0.000000,0.000000,-0.956304,0.292373,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1000;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1010;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1020;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1030;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1035;16;0.999998,-0.000503,-0.001672,0.000000,0.001745,0.287963,0.957640,0.000000,-0.000000,-0.957641,0.287963,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1050;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1100;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1110;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1120;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1130;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1135;16;0.999998,-0.000503,-0.001672,0.000000,0.001745,0.287963,0.957640,0.000000,-0.000000,-0.957641,0.287963,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1150;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1200;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1210;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1220;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1230;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1235;16;0.999998,-0.000503,-0.001672,0.000000,0.001745,0.287963,0.957640,0.000000,-0.000000,-0.957641,0.287963,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1250;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1500;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1510;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1523;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1530;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1532;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1536;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1550;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1560;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1600;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1620;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1630;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1632;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1636;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1650;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1700;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1725;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1730;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1732;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1736;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1750;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 1760;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2000;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2015;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2020;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2022;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2025;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2050;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2060;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2065;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2070;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2071;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2072;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2075;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2100;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2115;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2120;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2121;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2122;16;0.935476,-0.000552,-0.353390,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296026,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2125;16;0.935476,-0.000552,-0.353391,0.000000,0.335417,0.316246,0.887403,0.000000,0.111268,-0.948677,0.296025,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2200;16;0.999998,-0.000552,-0.001656,0.000000,0.001746,0.316246,0.948676,0.000000,0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2220;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2230;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316245,0.948676,0.000000,-0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2235;16;0.999998,-0.000785,-0.001559,0.000000,0.001745,0.449881,0.893087,0.000000,-0.000000,-0.893088,0.449881,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2260;16;0.999998,-0.000552,-0.001656,0.000000,0.001745,0.316246,0.948676,0.000000,0.000000,-0.948677,0.316246,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2400;16;0.999998,-0.000508,-0.001670,0.000000,0.001745,0.290864,0.956763,0.000000,0.000000,-0.956764,0.290865,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2420;16;0.987382,-0.000806,0.158353,0.000000,-0.140093,0.461751,0.875877,0.000000,-0.073826,-0.887009,0.455812,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2430;16;0.987382,-0.000806,0.158352,0.000000,-0.140093,0.461750,0.875877,0.000000,-0.073825,-0.887010,0.455811,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2435;16;0.999998,-0.000510,-0.001670,0.000000,0.001746,0.292372,0.956303,0.000000,0.000000,-0.956304,0.292373,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2460;16;0.999998,-0.000510,-0.001669,0.000000,0.001745,0.292373,0.956303,0.000000,0.000000,-0.956304,0.292373,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2490;16;0.902618,-0.000510,-0.430442,0.000000,0.411769,0.292373,0.863113,0.000000,0.125409,-0.956304,0.264111,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2500;16;0.902618,-0.000510,-0.430442,0.000000,0.411769,0.292373,0.863113,0.000000,0.125409,-0.956304,0.264111,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2510;16;0.902618,-0.000510,-0.430442,0.000000,0.411769,0.292373,0.863113,0.000000,0.125409,-0.956304,0.264111,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2530;16;0.902617,-0.000510,-0.430444,0.000000,0.411770,0.292373,0.863113,0.000000,0.125409,-0.956304,0.264111,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2535;16;0.999998,-0.000510,-0.001669,0.000000,0.001745,0.292373,0.956303,0.000000,0.000000,-0.956304,0.292373,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2560;16;0.998673,-0.000510,0.051506,0.000000,-0.049106,0.292373,0.955043,0.000000,-0.015546,-0.956304,0.291960,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2600;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182986,0.983114,0.000000,-0.000012,-0.983116,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2630;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182985,0.983114,0.000000,-0.000012,-0.983116,0.182985,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2635;16;0.999999,0.000214,-0.001669,0.000000,0.001683,-0.122844,0.992425,0.000000,0.000008,-0.992426,-0.122844,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2640;16;0.999999,0.000048,-0.001681,0.000000,0.001682,-0.027578,0.999618,0.000000,0.000002,-0.999620,-0.027578,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2650;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182985,0.983114,0.000000,-0.000012,-0.983116,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2700;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182986,0.983114,0.000000,-0.000012,-0.983116,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2730;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182986,0.983114,0.000000,-0.000012,-0.983116,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2735;16;0.999999,0.000214,-0.001669,0.000000,0.001683,-0.122847,0.992424,0.000000,0.000008,-0.992426,-0.122847,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2740;16;0.999999,0.000048,-0.001681,0.000000,0.001682,-0.027579,0.999618,0.000000,0.000002,-0.999620,-0.027579,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2755;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182985,0.983114,0.000000,-0.000012,-0.983116,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2800;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182986,0.983114,0.000000,-0.000012,-0.983116,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2830;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182986,0.983114,0.000000,-0.000012,-0.983115,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2835;16;0.999999,-0.000190,-0.001672,0.000000,0.001682,0.108757,0.994067,0.000000,-0.000007,-0.994068,0.108758,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2850;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182986,0.983114,0.000000,-0.000012,-0.983116,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2900;16;0.999552,0.002945,-0.029779,0.000000,0.029466,0.076662,0.996622,0.000000,0.005218,-0.997053,0.076540,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2910;16;0.999552,0.002945,-0.029779,0.000000,0.029466,0.076662,0.996622,0.000000,0.005218,-0.997053,0.076541,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2930;16;0.999552,0.002945,-0.029779,0.000000,0.029466,0.076662,0.996622,0.000000,0.005218,-0.997053,0.076541,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2932;16;0.999550,0.002913,-0.029855,0.000000,0.029550,0.075611,0.996700,0.000000,0.005161,-0.997133,0.075491,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 2935;16;0.999552,0.002945,-0.029779,0.000000,0.029466,0.076661,0.996622,0.000000,0.005218,-0.997053,0.076540,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3100;16;0.999998,-0.000760,-0.001572,0.000000,0.001745,0.435232,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3104;16;0.999998,-0.000769,-0.001567,0.000000,0.001745,0.440780,0.897613,0.000000,0.000000,-0.897615,0.440781,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3110;16;0.999998,-0.000766,-0.001569,0.000000,0.001745,0.438570,0.898695,0.000000,0.000000,-0.898697,0.438571,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3116;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3120;16;0.999998,-0.000759,-0.001572,0.000000,0.001745,0.434786,0.900532,0.000000,0.000000,-0.900533,0.434787,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3124;16;0.999998,-0.000785,-0.001559,0.000000,0.001745,0.449823,0.893116,0.000000,0.000000,-0.893117,0.449823,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3128;16;0.999998,-0.000807,-0.001548,0.000000,0.001745,0.462413,0.886663,0.000000,-0.000000,-0.886665,0.462413,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3132;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3150;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3154;16;0.999998,-0.000769,-0.001567,0.000000,0.001745,0.440780,0.897613,0.000000,-0.000000,-0.897615,0.440781,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3160;16;0.999998,-0.000766,-0.001569,0.000000,0.001745,0.438571,0.898695,0.000000,0.000000,-0.898696,0.438571,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3166;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435233,0.900316,0.000000,0.000000,-0.900318,0.435233,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3170;16;0.999998,-0.000759,-0.001572,0.000000,0.001745,0.434787,0.900532,0.000000,-0.000000,-0.900533,0.434787,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3174;16;0.999998,-0.000785,-0.001559,0.000000,0.001745,0.449822,0.893116,0.000000,0.000000,-0.893118,0.449823,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3178;16;0.999998,-0.000807,-0.001548,0.000000,0.001745,0.462412,0.886663,0.000000,0.000000,-0.886665,0.462413,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3182;16;0.999998,-0.000760,-0.001571,0.000000,0.001745,0.435234,0.900316,0.000000,0.000000,-0.900317,0.435235,0.000000,0.000000,6.600000,0.000000,1.000000;;, + 3200;16;0.999999,-0.000319,-0.001653,0.000000,0.001683,0.182986,0.983114,0.000000,-0.000012,-0.983116,0.182986,0.000000,0.000000,6.600000,0.000000,1.000000;;; + } + } + + Animation Animation13 { + { Frame14_L_Kosi_Momo } + AnimationKey { + 4; + 170; + 0;16;-0.000000,-0.017452,-0.999848,0.000000,-0.000000,0.999848,-0.017452,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 5;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 10;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 50;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 54;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 60;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 66;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 70;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 74;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 78;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 82;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 100;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 103;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 108;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 112;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 116;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 120;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 124;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 128;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 132;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 150;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 152;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 160;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 180;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 200;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 202;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 210;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 230;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 250;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 252;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 260;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 280;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 300;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 302;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 310;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 330;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 350;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 360;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 400;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 420;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 430;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 440;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 455;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 470;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 500;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 510;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 517;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 525;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 540;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 600;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 607;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 615;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 650;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 655;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 665;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 670;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 680;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 700;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 715;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 720;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 725;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 735;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1000;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1010;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1020;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1030;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1050;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1100;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1110;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1120;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1130;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1135;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1150;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1200;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1210;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1220;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1230;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1235;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1250;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1500;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1510;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1523;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1530;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1532;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1536;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1550;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1560;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1600;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1620;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1630;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1632;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1636;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1650;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1700;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1725;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1730;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1732;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1736;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1750;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1760;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2000;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2015;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2020;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2022;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2025;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2050;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2060;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2065;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2070;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2071;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2072;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2075;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2100;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2115;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2120;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2121;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2122;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2125;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2200;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2220;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2230;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2235;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2260;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2400;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2420;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2430;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2435;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2460;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2490;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2500;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2510;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2530;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2535;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2560;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2600;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2630;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2635;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2640;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2650;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2700;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2730;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2735;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2740;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2755;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2800;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2830;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2835;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2850;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2900;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2910;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2930;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2932;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2935;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3100;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3104;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3110;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3116;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3120;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3124;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3128;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3132;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3150;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3154;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3160;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3166;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3170;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3174;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3178;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3182;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3200;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;; + } + } + + Animation Animation14 { + { Frame15_L_momo } + AnimationKey { + 4; + 173; + 0;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 5;16;0.240268,0.172987,0.955168,0.000000,-0.127850,0.981060,-0.145516,0.000000,-0.962250,-0.087156,0.257834,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 10;16;0.187255,0.255788,0.948424,0.000000,-0.721042,0.691484,-0.044131,0.000000,-0.667109,-0.675590,0.313918,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 50;16;0.054204,0.015038,0.998417,0.000000,0.506148,0.861497,-0.040454,0.000000,-0.860742,0.507539,0.039085,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 54;16;0.031227,0.028408,0.999109,0.000000,-0.881370,0.472215,0.014120,0.000000,-0.471393,-0.881025,0.039784,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 60;16;0.031222,0.000111,0.999512,0.000000,-0.999277,0.021704,0.031212,0.000000,-0.021690,-0.999764,0.000789,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 66;16;0.038382,-0.000850,0.999263,0.000000,-0.999140,0.015689,0.038390,0.000000,-0.015710,-0.999877,-0.000247,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 70;16;0.022316,-0.026486,0.999400,0.000000,-0.632325,0.773929,0.034630,0.000000,-0.774382,-0.632719,0.000523,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 74;16;0.037937,0.006579,0.999258,0.000000,0.254656,0.966899,-0.016034,0.000000,-0.966287,0.255075,0.035006,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 78;16;0.051311,0.014330,0.998580,0.000000,0.446330,0.894153,-0.035765,0.000000,-0.893396,0.447531,0.039485,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 82;16;0.054204,0.015038,0.998417,0.000000,0.506148,0.861497,-0.040454,0.000000,-0.860742,0.507539,0.039085,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 100;16;0.060931,0.007842,0.998111,0.000000,0.891525,0.449248,-0.057954,0.000000,-0.448854,0.893373,0.020382,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 103;16;0.058186,0.011816,0.998236,0.000000,0.734288,0.676934,-0.050814,0.000000,-0.676340,0.735949,0.030712,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 108;16;0.044785,0.017443,0.998844,0.000000,-0.033472,0.999312,-0.015951,0.000000,-0.998436,-0.032719,0.045338,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 112;16;0.034308,0.013502,0.999320,0.000000,-0.633685,0.773508,0.011304,0.000000,-0.772830,-0.633642,0.035093,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 116;16;0.031056,0.009985,0.999468,0.000000,-0.819973,0.572061,0.019763,0.000000,-0.571559,-0.820150,0.025954,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 120;16;0.034754,0.015573,0.999275,0.000000,-0.451658,0.892189,0.001804,0.000000,-0.891514,-0.451393,0.038041,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 124;16;0.041700,0.017238,0.998981,0.000000,0.155368,0.987576,-0.023527,0.000000,-0.986976,0.156191,0.038503,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 128;16;0.049134,0.012679,0.998712,0.000000,0.685971,0.726359,-0.042969,0.000000,-0.725968,0.687199,0.026992,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 132;16;0.060931,0.007842,0.998111,0.000000,0.891525,0.449248,-0.057954,0.000000,-0.448854,0.893373,0.020382,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 150;16;0.175870,0.015752,0.984287,0.000000,0.421352,0.902447,-0.089729,0.000000,-0.889681,0.430512,0.152076,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 152;16;0.175870,0.015752,0.984287,0.000000,0.421352,0.902448,-0.089729,0.000000,-0.889681,0.430512,0.152076,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 160;16;0.178821,0.016786,0.983738,0.000000,0.266547,0.961637,-0.064861,0.000000,-0.947088,0.273811,0.167487,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 180;16;0.172392,0.016991,0.984882,0.000000,0.222112,0.973430,-0.055672,0.000000,-0.959660,0.228351,0.164038,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 200;16;0.174206,0.016452,0.984572,0.000000,0.326044,0.942498,-0.073438,0.000000,-0.929165,0.333807,0.158825,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 202;16;0.174206,0.016452,0.984572,0.000000,0.326044,0.942498,-0.073438,0.000000,-0.929165,0.333807,0.158825,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 210;16;0.174206,0.016452,0.984572,0.000000,0.326044,0.942498,-0.073438,0.000000,-0.929165,0.333807,0.158825,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 230;16;0.301229,0.016452,0.953410,0.000000,0.313669,0.942498,-0.115367,0.000000,-0.900485,0.333807,0.278747,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 250;16;0.151263,-0.000305,0.988493,0.000000,-0.988344,-0.017448,0.151235,0.000000,0.017201,-0.999848,-0.002940,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 252;16;0.151264,-0.000304,0.988493,0.000000,-0.988344,-0.017447,0.151235,0.000000,0.017200,-0.999848,-0.002940,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 260;16;0.480355,0.004185,0.877064,0.000000,-0.874761,0.074862,0.478736,0.000000,-0.063655,-0.997185,0.039621,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 280;16;0.543173,-0.000000,0.839621,0.000000,-0.839621,0.000000,0.543173,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 300;16;0.158039,0.013883,0.987335,0.000000,-0.600174,0.795353,0.084884,0.000000,-0.784101,-0.605988,0.134029,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 302;16;0.158039,0.013883,0.987335,0.000000,-0.600174,0.795353,0.084884,0.000000,-0.784101,-0.605988,0.134029,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 310;16;0.387769,0.030494,0.921252,0.000000,-0.458789,0.873240,0.164206,0.000000,-0.799467,-0.486335,0.352606,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 330;16;0.324935,0.050863,0.944368,0.000000,-0.568582,0.808444,0.152094,0.000000,-0.755732,-0.586371,0.291612,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 350;16;0.478716,0.392293,0.785454,0.000000,-0.607694,0.793744,-0.026057,0.000000,-0.633671,-0.464842,0.618372,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 360;16;0.478716,0.392293,0.785454,0.000000,-0.607694,0.793744,-0.026057,0.000000,-0.633671,-0.464842,0.618372,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 380;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 400;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 420;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 430;16;0.271747,0.173580,0.946585,0.000000,-0.075128,0.984424,-0.158951,0.000000,-0.959432,-0.027921,0.280555,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 440;16;0.249015,0.141811,0.958061,0.000000,-0.012554,0.989612,-0.143218,0.000000,-0.968418,0.023636,0.248208,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 455;16;0.421519,0.107583,0.900415,0.000000,-0.393309,0.916372,0.074633,0.000000,-0.817086,-0.385601,0.428582,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 470;16;0.426034,0.108028,0.898234,0.000000,-0.402702,0.911709,0.081354,0.000000,-0.810140,-0.396380,0.431922,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 500;16;0.187255,0.255788,0.948424,0.000000,-0.721042,0.691484,-0.044131,0.000000,-0.667108,-0.675590,0.313918,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 510;16;0.281968,0.173468,0.943612,0.000000,-0.866194,0.468944,0.172626,0.000000,-0.412556,-0.866026,0.282484,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 517;16;0.401485,0.165257,0.900833,0.000000,-0.156784,0.981469,-0.110174,0.000000,-0.902346,-0.097003,0.419954,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 525;16;0.386529,0.137966,0.911900,0.000000,0.026603,0.986668,-0.160554,0.000000,-0.921894,0.086318,0.377706,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 540;16;0.187255,0.255788,0.948424,0.000000,-0.721042,0.691484,-0.044131,0.000000,-0.667109,-0.675590,0.313918,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 600;16;0.187255,0.255788,0.948424,0.000000,-0.721042,0.691484,-0.044131,0.000000,-0.667109,-0.675590,0.313918,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 607;16;0.281967,0.173468,0.943612,0.000000,-0.866194,0.468944,0.172626,0.000000,-0.412556,-0.866026,0.282484,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 615;16;0.281968,0.173468,0.943612,0.000000,-0.866194,0.468944,0.172626,0.000000,-0.412556,-0.866026,0.282484,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 650;16;0.510719,0.173468,0.842066,0.000000,-0.794710,0.468944,0.385393,0.000000,-0.328029,-0.866026,0.377355,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 655;16;0.519198,0.106226,0.848027,0.000000,-0.209377,0.977818,0.005706,0.000000,-0.828610,-0.180520,0.529922,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 665;16;0.410892,0.101149,0.906055,0.000000,-0.214937,0.976560,-0.011547,0.000000,-0.885985,-0.190000,0.423002,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 670;16;0.519197,0.106225,0.848028,0.000000,-0.209376,0.977819,0.005705,0.000000,-0.828611,-0.180519,0.529922,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 680;16;0.519197,0.106225,0.848027,0.000000,-0.209376,0.977819,0.005705,0.000000,-0.828611,-0.180519,0.529922,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 681;16;0.519197,0.106225,0.848027,0.000000,-0.209376,0.977819,0.005705,0.000000,-0.828611,-0.180519,0.529922,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 699;16;0.519197,0.106225,0.848027,0.000000,-0.209376,0.977819,0.005705,0.000000,-0.828611,-0.180519,0.529922,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 700;16;0.519196,0.106224,0.848028,0.000000,-0.209374,0.977819,0.005706,0.000000,-0.828612,-0.180517,0.529920,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 715;16;0.423990,-0.037977,0.904871,0.000000,-0.905600,-0.005608,0.424096,0.000000,-0.011031,-0.999263,-0.036769,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 720;16;0.376645,0.005464,0.926342,0.000000,-0.926357,0.003154,0.376632,0.000000,-0.000864,-0.999980,0.006249,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 725;16;0.313076,0.127870,0.941081,0.000000,-0.931325,0.235455,0.277838,0.000000,-0.186055,-0.963437,0.192804,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 735;16;0.187255,0.255788,0.948424,0.000000,-0.721042,0.691484,-0.044131,0.000000,-0.667109,-0.675590,0.313918,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1000;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793744,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1010;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1020;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1030;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1050;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1100;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1110;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1120;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1130;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1135;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1150;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1200;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1210;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1220;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1230;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1235;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1250;16;0.320049,0.392293,0.862366,0.000000,-0.591557,0.793743,-0.141532,0.000000,-0.740020,-0.464842,0.486100,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1500;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1510;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1523;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1530;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1532;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1536;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1550;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1560;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1600;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1620;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1630;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1632;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1636;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1650;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1700;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1725;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1730;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1732;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1736;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1750;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1760;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2000;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2015;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2020;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2022;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2025;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2050;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2060;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2065;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2070;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2071;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2072;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2075;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2100;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2115;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2120;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2121;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2122;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2125;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2200;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2220;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2230;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2235;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038778,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2260;16;0.462161,0.392293,0.795307,0.000000,-0.607015,0.793743,-0.038779,0.000000,-0.646482,-0.464842,0.604965,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2400;16;0.374267,0.204096,0.904582,0.000000,-0.605608,0.792521,0.071756,0.000000,-0.702256,-0.574678,0.420216,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2420;16;0.294330,0.501299,0.813676,0.000000,-0.623432,0.746010,-0.234098,0.000000,-0.724364,-0.438369,0.532099,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2430;16;0.294330,0.501299,0.813677,0.000000,-0.623432,0.746010,-0.234097,0.000000,-0.724364,-0.438370,0.532098,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2435;16;0.427477,0.123947,0.895489,0.000000,-0.606550,0.773830,0.182440,0.000000,-0.670343,-0.621148,0.405975,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2460;16;0.427477,0.123948,0.895489,0.000000,-0.606550,0.773830,0.182439,0.000000,-0.670343,-0.621147,0.405975,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2490;16;0.314756,0.636837,0.703824,0.000000,-0.547751,0.727452,-0.413257,0.000000,-0.775175,-0.255445,0.577798,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2500;16;0.314756,0.636837,0.703824,0.000000,-0.547751,0.727452,-0.413257,0.000000,-0.775175,-0.255445,0.577798,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2510;16;0.314756,0.636837,0.703824,0.000000,-0.547751,0.727452,-0.413257,0.000000,-0.775175,-0.255445,0.577798,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2530;16;0.314756,0.636838,0.703822,0.000000,-0.547751,0.727451,-0.413259,0.000000,-0.775176,-0.255444,0.577799,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2535;16;0.427477,0.123948,0.895489,0.000000,-0.606550,0.773830,0.182439,0.000000,-0.670343,-0.621147,0.405975,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2560;16;0.454087,0.068787,0.888298,0.000000,-0.611772,0.748894,0.254738,0.000000,-0.647719,-0.659110,0.382145,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2600;16;0.500208,0.415117,0.759914,0.000000,-0.529855,0.840851,-0.110558,0.000000,-0.684869,-0.347342,0.640552,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2630;16;0.500207,0.415117,0.759915,0.000000,-0.529855,0.840851,-0.110558,0.000000,-0.684870,-0.347343,0.640552,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2635;16;0.500207,0.415117,0.759915,0.000000,-0.529855,0.840851,-0.110558,0.000000,-0.684870,-0.347343,0.640551,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2640;16;0.587471,0.424174,0.689169,0.000000,-0.501512,0.859198,-0.101320,0.000000,-0.635110,-0.286104,0.717482,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2650;16;0.500208,0.415117,0.759915,0.000000,-0.529855,0.840851,-0.110557,0.000000,-0.684869,-0.347343,0.640552,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2700;16;0.500207,0.415117,0.759915,0.000000,-0.529855,0.840851,-0.110558,0.000000,-0.684870,-0.347343,0.640552,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2730;16;0.500207,0.415117,0.759915,0.000000,-0.529855,0.840851,-0.110558,0.000000,-0.684870,-0.347343,0.640552,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2735;16;0.500208,0.415117,0.759914,0.000000,-0.529855,0.840851,-0.110557,0.000000,-0.684869,-0.347342,0.640552,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2740;16;0.587471,0.424174,0.689169,0.000000,-0.501512,0.859198,-0.101320,0.000000,-0.635110,-0.286104,0.717482,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2755;16;0.500208,0.415117,0.759915,0.000000,-0.529855,0.840851,-0.110558,0.000000,-0.684870,-0.347342,0.640552,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2800;16;0.543684,0.222899,0.809150,0.000000,-0.588077,0.789023,0.177787,0.000000,-0.598810,-0.572502,0.560061,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2830;16;0.543684,0.222898,0.809150,0.000000,-0.588077,0.789023,0.177787,0.000000,-0.598810,-0.572502,0.560061,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2835;16;0.543684,0.222898,0.809150,0.000000,-0.588077,0.789023,0.177787,0.000000,-0.598810,-0.572502,0.560061,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2850;16;0.543684,0.222898,0.809150,0.000000,-0.588077,0.789023,0.177787,0.000000,-0.598810,-0.572502,0.560061,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2900;16;0.553547,0.267901,0.788552,0.000000,-0.032567,0.953087,-0.300938,0.000000,-0.832181,0.140902,0.536304,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2910;16;0.553547,0.267901,0.788552,0.000000,-0.032568,0.953088,-0.300938,0.000000,-0.832181,0.140901,0.536304,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2930;16;0.553547,0.267901,0.788552,0.000000,-0.032568,0.953088,-0.300938,0.000000,-0.832181,0.140901,0.536304,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2932;16;0.554447,0.268633,0.787670,0.000000,-0.034301,0.953042,-0.300888,0.000000,-0.831512,0.139809,0.537626,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2935;16;0.553547,0.267901,0.788552,0.000000,-0.032568,0.953088,-0.300938,0.000000,-0.832181,0.140901,0.536304,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3100;16;0.054205,0.015038,0.998417,0.000000,0.506149,0.861497,-0.040455,0.000000,-0.860741,0.507540,0.039086,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3104;16;0.031228,0.028410,0.999108,0.000000,-0.881360,0.472233,0.014119,0.000000,-0.471411,-0.881016,0.039786,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3110;16;0.031222,0.000111,0.999512,0.000000,-0.999277,0.021696,0.031212,0.000000,-0.021682,-0.999765,0.000788,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3116;16;0.038382,-0.000849,0.999263,0.000000,-0.999140,0.015680,0.038390,0.000000,-0.015701,-0.999877,-0.000247,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3120;16;0.022316,-0.026486,0.999400,0.000000,-0.632325,0.773929,0.034630,0.000000,-0.774381,-0.632719,0.000523,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3124;16;0.037938,0.006580,0.999258,0.000000,0.254670,0.966895,-0.016035,0.000000,-0.966284,0.255089,0.035007,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3128;16;0.051311,0.014329,0.998580,0.000000,0.446327,0.894155,-0.035765,0.000000,-0.893398,0.447528,0.039484,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3132;16;0.054204,0.015038,0.998417,0.000000,0.506148,0.861497,-0.040454,0.000000,-0.860742,0.507539,0.039085,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3150;16;0.054204,0.015038,0.998417,0.000000,0.506148,0.861497,-0.040454,0.000000,-0.860742,0.507539,0.039085,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3154;16;0.031226,0.028407,0.999109,0.000000,-0.881380,0.472197,0.014121,0.000000,-0.471375,-0.881035,0.039783,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3160;16;0.031222,0.000111,0.999512,0.000000,-0.999277,0.021712,0.031212,0.000000,-0.021698,-0.999764,0.000789,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3166;16;0.038382,-0.000850,0.999263,0.000000,-0.999139,0.015697,0.038390,0.000000,-0.015718,-0.999876,-0.000247,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3170;16;0.022315,-0.026486,0.999400,0.000000,-0.632290,0.773957,0.034629,0.000000,-0.774410,-0.632684,0.000524,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3174;16;0.037937,0.006579,0.999258,0.000000,0.254656,0.966899,-0.016034,0.000000,-0.966287,0.255075,0.035006,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3178;16;0.051312,0.014330,0.998580,0.000000,0.446333,0.894152,-0.035766,0.000000,-0.893395,0.447534,0.039485,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3182;16;0.054200,0.015037,0.998417,0.000000,0.506152,0.861495,-0.040451,0.000000,-0.860739,0.507543,0.039082,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3200;16;0.543684,0.222898,0.809150,0.000000,-0.588077,0.789023,0.177787,0.000000,-0.598810,-0.572502,0.560061,0.000000,0.000000,-0.000000,1.650000,1.000000;;; + } + } + + Animation Animation15 { + { Frame16_L_Hiza } + AnimationKey { + 4; + 173; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 10;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 50;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 54;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.996103,0.088196,0.000000,0.000000,-0.088196,0.996103,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 56;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997423,0.071746,0.000000,0.000000,-0.071746,0.997423,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 60;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.998901,-0.046880,0.000000,0.000000,0.046880,0.998901,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 66;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.980615,-0.195946,0.000000,0.000000,0.195946,0.980615,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 70;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.996977,-0.077702,0.000000,0.000000,0.077702,0.996977,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 74;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997689,0.067950,0.000000,0.000000,-0.067950,0.997689,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 78;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997939,0.064166,0.000000,0.000000,-0.064166,0.997939,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 82;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.885394,0.464842,0.000000,0.000000,-0.464842,0.885394,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 103;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.892244,0.451553,0.000000,0.000000,-0.451553,0.892244,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 108;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.937845,0.347054,0.000000,0.000000,-0.347054,0.937845,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 112;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.965380,0.260847,0.000000,0.000000,-0.260847,0.965380,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 116;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.975149,0.221549,0.000000,0.000000,-0.221549,0.975149,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.957623,0.288024,0.000000,0.000000,-0.288024,0.957623,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 124;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.928374,0.371648,0.000000,0.000000,-0.371648,0.928374,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 128;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.895346,0.445371,0.000000,0.000000,-0.445371,0.895346,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 132;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.885394,0.464842,0.000000,0.000000,-0.464842,0.885394,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 152;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 160;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.998808,0.048817,0.000000,0.000000,-0.048817,0.998808,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 180;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 202;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 210;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 250;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.940288,-0.340380,0.000000,0.000000,0.340380,0.940288,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 252;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.940288,-0.340380,0.000000,0.000000,0.340380,0.940288,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 260;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.813101,-0.582123,0.000000,0.000000,0.582123,0.813101,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 280;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.813101,-0.582123,0.000000,0.000000,0.582123,0.813101,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 300;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 302;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 310;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.996195,-0.087156,0.000000,0.000000,0.087156,0.996195,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 330;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.960779,-0.277315,0.000000,0.000000,0.277315,0.960779,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 350;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 360;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 400;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 420;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 430;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 440;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 455;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 470;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 517;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977799,-0.209544,0.000000,0.000000,0.209544,0.977799,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 525;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977802,-0.209533,0.000000,0.000000,0.209533,0.977802,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 540;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 600;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 607;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 615;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 665;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 670;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 680;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209618,0.000000,0.000000,0.209618,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 715;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.870356,-0.492424,0.000000,0.000000,0.492424,0.870356,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 720;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.910356,-0.413826,0.000000,0.000000,0.413826,0.910356,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 725;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.957568,-0.288207,0.000000,0.000000,0.288207,0.957568,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1000;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1010;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1020;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1030;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1110;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1130;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1135;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1210;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1220;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1250;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2015;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2020;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2022;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2025;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979575,-0.201078,0.000000,0.000000,0.201078,0.979575,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2400;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978348,-0.206968,0.000000,0.000000,0.206968,0.978348,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2420;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.998971,0.045364,0.000000,0.000000,-0.045364,0.998971,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2430;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.998971,0.045363,0.000000,0.000000,-0.045363,0.998971,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2435;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2460;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2490;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2530;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2535;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2560;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977783,-0.209619,0.000000,0.000000,0.209619,0.977783,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2600;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2630;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2635;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2640;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2730;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2735;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2740;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2755;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2800;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2830;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2850;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978509,0.206205,0.000000,0.000000,-0.206205,0.978509,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978509,0.206204,0.000000,0.000000,-0.206204,0.978509,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2930;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978509,0.206204,0.000000,0.000000,-0.206204,0.978509,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2932;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978428,0.206590,0.000000,0.000000,-0.206590,0.978428,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 2935;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978509,0.206204,0.000000,0.000000,-0.206204,0.978509,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3104;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.996103,0.088196,0.000000,0.000000,-0.088196,0.996103,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3106;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997423,0.071744,0.000000,0.000000,-0.071744,0.997423,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3110;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.998900,-0.046885,0.000000,0.000000,0.046885,0.998900,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3116;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.980615,-0.195946,0.000000,0.000000,0.195946,0.980615,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.996977,-0.077702,0.000000,0.000000,0.077702,0.996977,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3124;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997689,0.067951,0.000000,0.000000,-0.067951,0.997689,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3128;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997939,0.064166,0.000000,0.000000,-0.064166,0.997939,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3132;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3154;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.996103,0.088196,0.000000,0.000000,-0.088196,0.996103,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3156;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997423,0.071746,0.000000,0.000000,-0.071746,0.997423,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3160;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.998901,-0.046875,0.000000,0.000000,0.046875,0.998901,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3166;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.980615,-0.195946,0.000000,0.000000,0.195946,0.980615,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3170;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.996977,-0.077696,0.000000,0.000000,0.077696,0.996977,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3174;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997689,0.067950,0.000000,0.000000,-0.067950,0.997689,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3178;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997939,0.064166,0.000000,0.000000,-0.064166,0.997939,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3182;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068017,0.000000,0.000000,-0.068017,0.997684,0.000000,0.000000,0.000000,1.400000,1.000000;;, + 3200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.979573,-0.201088,0.000000,0.000000,0.201088,0.979573,0.000000,0.000000,0.000000,1.400000,1.000000;;; + } + } + + Animation Animation16 { + { Frame17_L_Sune } + AnimationKey { + 4; + 182; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.999976,0.006981,0.000000,0.000000,-0.006981,0.999976,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 10;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 50;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 54;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.728685,-0.684849,0.000000,0.000000,0.684849,0.728685,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 56;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.542445,-0.840091,0.000000,0.000000,0.840091,0.542445,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 60;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.513780,-0.857922,0.000000,0.000000,0.857922,0.513780,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 64;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.526464,-0.850198,0.000000,0.000000,0.850198,0.526464,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 66;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.526464,-0.850198,0.000000,0.000000,0.850198,0.526464,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 70;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.655412,-0.755271,0.000000,0.000000,0.755271,0.655412,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 72;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.741644,-0.670794,0.000000,0.000000,0.670794,0.741644,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 74;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.885053,-0.465491,0.000000,0.000000,0.465491,0.885053,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 75;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.931203,-0.364502,0.000000,0.000000,0.364502,0.931203,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 78;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977316,-0.211786,0.000000,0.000000,0.211786,0.977316,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 82;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.995507,-0.094685,0.000000,0.000000,0.094685,0.995507,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 103;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.970319,-0.241828,0.000000,0.000000,0.241828,0.970319,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 108;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.772178,-0.635407,0.000000,0.000000,0.635407,0.772178,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 112;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.518922,-0.854821,0.000000,0.000000,0.854821,0.518922,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 116;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.393409,-0.919363,0.000000,0.000000,0.919363,0.393409,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.610992,-0.791637,0.000000,0.000000,0.791637,0.610992,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 124;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.829048,-0.559178,0.000000,0.000000,0.559178,0.829048,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 128;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.959957,-0.280148,0.000000,0.000000,0.280148,0.959957,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 132;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.995507,-0.094685,0.000000,0.000000,0.094685,0.995507,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 152;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 160;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.952795,-0.303615,0.000000,0.000000,0.303615,0.952795,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 180;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 202;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 210;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 250;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.320063,-0.947396,0.000000,0.000000,0.947396,0.320063,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 252;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.320063,-0.947396,0.000000,0.000000,0.947396,0.320063,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 260;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.240228,-0.970716,0.000000,0.000000,0.970716,0.240228,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 280;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.240228,-0.970716,0.000000,0.000000,0.970716,0.240228,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 300;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.251509,-0.967855,0.000000,0.000000,0.967855,0.251509,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 302;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.251508,-0.967855,0.000000,0.000000,0.967855,0.251508,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 310;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.850506,-0.525965,0.000000,0.000000,0.525965,0.850506,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 330;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.817816,-0.575480,0.000000,0.000000,0.575480,0.817816,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 350;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 360;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 400;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 420;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 430;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 440;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 455;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 470;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272281,0.000000,0.000000,0.272281,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.819152,-0.573576,0.000000,0.000000,0.573576,0.819152,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 517;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.946459,-0.322825,0.000000,0.000000,0.322825,0.946459,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 525;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.971254,-0.238045,0.000000,0.000000,0.238045,0.971254,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 540;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 600;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 607;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.819152,-0.573576,0.000000,0.000000,0.573576,0.819152,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 615;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.819152,-0.573576,0.000000,0.000000,0.573576,0.819152,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.819152,-0.573576,0.000000,0.000000,0.573576,0.819152,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.932324,-0.361624,0.000000,0.000000,0.361624,0.932324,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 665;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.879070,-0.476693,0.000000,0.000000,0.476693,0.879070,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 670;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.932324,-0.361624,0.000000,0.000000,0.361624,0.932324,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 680;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.932324,-0.361624,0.000000,-0.000000,0.361624,0.932324,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 700;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.932324,-0.361624,0.000000,-0.000000,0.361624,0.932324,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 715;16;0.996493,0.000000,-0.083678,0.000000,-0.079023,0.328868,-0.941064,0.000000,0.027519,0.944376,0.327714,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 720;16;0.996666,0.000000,-0.081591,0.000000,-0.075310,0.384754,-0.919942,0.000000,0.031392,0.923019,0.383471,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 725;16;0.998027,-0.000000,-0.062790,0.000000,-0.050674,0.590503,-0.805443,0.000000,0.037078,0.807036,0.589338,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1000;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1010;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1020;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1030;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1110;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1130;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1135;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1210;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1220;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1250;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2015;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2020;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2022;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2025;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973046,-0.230613,0.000000,0.000000,0.230613,0.973046,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2400;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.965772,-0.259391,0.000000,0.000000,0.259391,0.965772,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2420;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2430;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2435;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2460;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2490;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2530;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2535;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2560;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2600;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2630;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2635;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2640;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2730;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2735;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2740;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2755;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.973034,-0.230663,0.000000,0.000000,0.230663,0.973034,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2800;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.947008,-0.321210,0.000000,0.000000,0.321210,0.947008,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2830;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.947008,-0.321210,0.000000,0.000000,0.321210,0.947008,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.947008,-0.321210,0.000000,0.000000,0.321210,0.947008,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2850;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.947008,-0.321210,0.000000,0.000000,0.321210,0.947008,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2930;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2932;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962236,-0.272217,0.000000,0.000000,0.272217,0.962236,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2935;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.962218,-0.272280,0.000000,0.000000,0.272280,0.962218,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294593,0.000000,0.000000,0.294593,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3104;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.728693,-0.684841,0.000000,0.000000,0.684841,0.728693,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3106;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.542441,-0.840094,0.000000,0.000000,0.840094,0.542441,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3110;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.513780,-0.857922,0.000000,0.000000,0.857922,0.513780,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3114;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.526464,-0.850198,0.000000,0.000000,0.850198,0.526464,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3116;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.526461,-0.850199,0.000000,0.000000,0.850199,0.526461,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.655412,-0.755271,0.000000,0.000000,0.755271,0.655412,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3122;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.741638,-0.670800,0.000000,0.000000,0.670800,0.741638,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3124;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.885058,-0.465480,0.000000,0.000000,0.465480,0.885058,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3125;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.931207,-0.364490,0.000000,0.000000,0.364490,0.931207,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3128;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977316,-0.211787,0.000000,0.000000,0.211787,0.977316,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3132;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294594,0.000000,0.000000,0.294594,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3154;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.728677,-0.684858,0.000000,0.000000,0.684858,0.728677,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3156;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.542445,-0.840091,0.000000,0.000000,0.840091,0.542445,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3160;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.513780,-0.857922,0.000000,0.000000,0.857922,0.513780,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3164;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.526464,-0.850198,0.000000,0.000000,0.850198,0.526464,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3166;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.526466,-0.850196,0.000000,0.000000,0.850196,0.526466,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3170;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.655419,-0.755265,0.000000,0.000000,0.755265,0.655419,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3172;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.741650,-0.670787,0.000000,0.000000,0.670787,0.741650,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3174;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.885053,-0.465491,0.000000,0.000000,0.465491,0.885053,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3175;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.931198,-0.364515,0.000000,0.000000,0.364515,0.931198,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3178;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.977316,-0.211785,0.000000,0.000000,0.211785,0.977316,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3182;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.955623,-0.294593,0.000000,0.000000,0.294593,0.955623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.947008,-0.321210,0.000000,0.000000,0.321210,0.947008,0.000000,0.000000,0.000000,0.800000,1.000000;;; + } + } + + Animation Animation17 { + { Frame18_L_Kakato } + AnimationKey { + 4; + 180; + 0;16;0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 5;16;-0.099286,-0.988769,-0.111704,0.000000,0.969497,-0.121406,0.212925,0.000000,-0.224095,-0.087156,0.970662,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 10;16;0.147588,-0.983713,0.102601,0.000000,0.963643,0.166382,0.209067,0.000000,-0.222733,0.068015,0.972504,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 50;16;-0.022290,-0.985334,0.169173,0.000000,0.998042,-0.012039,0.061378,0.000000,-0.058441,0.170209,0.983673,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 53;16;0.019780,-0.997033,0.074386,0.000000,0.999425,0.021767,0.025995,0.000000,-0.027537,0.073829,0.996891,0.000000,-0.037573,-0.006428,2.402337,1.000000;;, + 54;16;0.037486,-0.998298,0.044665,0.000000,0.999170,0.038156,0.014239,0.000000,-0.015919,0.044094,0.998901,0.000000,-0.037573,-0.006428,2.500516,1.000000;;, + 56;16;0.063125,-0.998006,0.000390,0.000000,0.998006,0.063125,0.000126,0.000000,-0.000150,0.000382,1.000000,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 60;16;0.035979,-0.999352,0.000717,0.000000,0.999120,0.035986,0.021527,0.000000,-0.021539,-0.000058,0.999768,0.000000,-0.037573,-0.006428,2.838690,1.000000;;, + 62;16;0.018998,-0.999815,-0.002933,0.000000,0.999217,0.018885,0.034776,0.000000,-0.034714,-0.003591,0.999391,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 66;16;-0.008782,-0.998267,-0.058183,0.000000,0.998207,-0.012197,0.058600,0.000000,-0.059208,-0.057564,0.996585,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 70;16;-0.005650,-0.999607,0.027448,0.000000,0.998503,-0.004146,0.054547,0.000000,-0.054411,0.027715,0.998134,0.000000,-0.037573,-0.006428,2.694254,1.000000;;, + 74;16;0.000334,-0.992686,0.120724,0.000000,0.998891,0.006016,0.046706,0.000000,-0.047091,0.120575,0.991587,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 78;16;-0.011793,-0.986442,0.163688,0.000000,0.998546,-0.003007,0.053822,0.000000,-0.052600,0.164085,0.985043,0.000000,-0.037573,-0.006428,2.831444,1.000000;;, + 82;16;-0.022290,-0.985334,0.169173,0.000000,0.998042,-0.012039,0.061378,0.000000,-0.058441,0.170209,0.983673,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 100;16;-0.008679,-0.998165,-0.059922,0.000000,0.998208,-0.012196,0.058579,0.000000,-0.059202,-0.059306,0.996483,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 103;16;-0.009144,-0.998601,-0.052087,0.000000,0.998203,-0.012201,0.058674,0.000000,-0.059228,-0.051457,0.996917,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 108;16;-0.012825,-0.999869,0.009869,0.000000,0.998158,-0.012217,0.059431,0.000000,-0.059303,0.010613,0.998184,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 112;16;-0.015748,-0.998130,0.059067,0.000000,0.998122,-0.012195,0.060033,0.000000,-0.059200,0.059901,0.996447,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 116;16;-0.017055,-0.996563,0.081064,0.000000,0.998106,-0.012176,0.060301,0.000000,-0.059107,0.081939,0.994883,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 120;16;-0.015214,-0.998630,0.050071,0.000000,0.998128,-0.012202,0.059923,0.000000,-0.059230,0.050889,0.996946,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 124;16;-0.012853,-0.999864,0.010341,0.000000,0.998157,-0.012217,0.059437,0.000000,-0.059303,0.011086,0.998178,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 128;16;-0.010496,-0.999515,-0.029333,0.000000,0.998186,-0.012212,0.058952,0.000000,-0.059282,-0.028661,0.997830,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 132;16;-0.008679,-0.998165,-0.059922,0.000000,0.998208,-0.012196,0.058579,0.000000,-0.059202,-0.059306,0.996483,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 150;16;-0.005277,-0.993097,-0.117181,0.000000,0.998250,-0.012134,0.057879,0.000000,-0.058901,-0.116671,0.991422,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 152;16;-0.005277,-0.993097,-0.117181,0.000000,0.998250,-0.012134,0.057879,0.000000,-0.058901,-0.116671,0.991422,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 160;16;-0.027415,-0.966435,0.255445,0.000000,0.997979,-0.011808,0.062432,0.000000,-0.057320,0.256641,0.964806,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 180;16;-0.039395,-0.888551,0.457083,0.000000,0.997833,-0.010857,0.064896,0.000000,-0.052701,0.458649,0.887053,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 200;16;-0.026182,-0.992625,-0.118368,0.000000,0.997920,-0.032930,0.055412,0.000000,-0.058901,-0.116671,0.991422,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 202;16;-0.026182,-0.992625,-0.118368,0.000000,0.997920,-0.032930,0.055412,0.000000,-0.058901,-0.116671,0.991422,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 210;16;-0.040013,-0.992625,0.114435,0.000000,0.997462,-0.032930,0.063135,0.000000,-0.058901,0.116671,0.991423,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 230;16;-0.040013,-0.992625,0.114435,0.000000,0.997462,-0.032930,0.063135,0.000000,-0.058901,0.116671,0.991423,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 250;16;0.064826,-0.994246,0.085276,0.000000,0.986951,0.076502,0.141685,0.000000,-0.147393,0.074979,0.986232,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 252;16;0.064826,-0.994246,0.085277,0.000000,0.986951,0.076502,0.141685,0.000000,-0.147393,0.074979,0.986232,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 260;16;-0.002874,-0.842771,0.538265,0.000000,0.992160,0.064847,0.106829,0.000000,-0.124938,0.534352,0.835977,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 280;16;0.060729,-0.935603,0.347791,0.000000,0.988406,0.104944,0.109726,0.000000,-0.139158,0.337095,0.931129,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 300;16;-0.086417,-0.988763,-0.121984,0.000000,0.994195,-0.093467,0.053289,0.000000,-0.064092,-0.116671,0.991100,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 302;16;-0.086417,-0.988763,-0.121985,0.000000,0.994195,-0.093467,0.053289,0.000000,-0.064092,-0.116672,0.991100,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 310;16;-0.135124,-0.763760,0.631199,0.000000,0.989591,-0.072197,0.124487,0.000000,-0.049507,0.641450,0.765566,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 330;16;-0.181446,-0.946665,0.266277,0.000000,0.970140,-0.127995,0.206025,0.000000,-0.160954,0.295708,0.941621,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 350;16;-0.326096,-0.941875,0.080822,0.000000,0.814595,-0.236585,0.529587,0.000000,-0.479684,0.238533,0.844397,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 360;16;-0.326096,-0.941875,0.080822,0.000000,0.814595,-0.236585,0.529587,0.000000,-0.479684,0.238533,0.844396,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 380;16;-0.283882,-0.956289,0.070155,0.000000,0.899410,-0.240206,0.365189,0.000000,-0.332374,0.166769,0.928286,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 400;16;-0.283882,-0.956289,0.070155,0.000000,0.899410,-0.240206,0.365189,0.000000,-0.332374,0.166769,0.928286,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 420;16;-0.283882,-0.956289,0.070155,0.000000,0.899410,-0.240206,0.365189,0.000000,-0.332374,0.166769,0.928286,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 430;16;0.087582,-0.856794,0.508167,0.000000,0.950353,0.224774,0.215188,0.000000,-0.298594,0.464091,0.833943,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 440;16;0.130774,-0.825203,0.549489,0.000000,0.947306,0.267485,0.176248,0.000000,-0.292421,0.497485,0.816700,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 455;16;0.084101,-0.852577,0.515790,0.000000,0.951145,0.223002,0.213525,0.000000,-0.297068,0.472633,0.829680,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 470;16;0.080679,-0.854287,0.513503,0.000000,0.951355,0.219688,0.216010,0.000000,-0.297345,0.471096,0.830454,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 500;16;0.147588,-0.983713,0.102601,0.000000,0.963643,0.166382,0.209067,0.000000,-0.222733,0.068015,0.972504,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 510;16;0.061565,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 517;16;-0.010897,-0.999256,-0.037009,0.000000,0.921030,-0.024441,0.388725,0.000000,-0.389340,-0.029850,0.920610,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 525;16;0.002999,-0.990153,-0.139961,0.000000,0.918737,-0.052537,0.391360,0.000000,-0.394859,-0.129761,0.909532,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 540;16;0.147588,-0.983713,0.102601,0.000000,0.963643,0.166382,0.209067,0.000000,-0.222733,0.068015,0.972504,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 600;16;0.147588,-0.983713,0.102601,0.000000,0.963643,0.166382,0.209067,0.000000,-0.222733,0.068015,0.972504,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 607;16;0.061565,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 615;16;0.061565,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 650;16;0.061565,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 655;16;0.061565,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 665;16;0.061565,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 670;16;0.061565,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 680;16;0.061565,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 700;16;0.061566,-0.920507,0.385846,0.000000,0.963520,0.155692,0.217693,0.000000,-0.260461,0.358368,0.896511,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 715;16;-0.247695,-0.681350,0.688774,0.000000,0.954832,-0.051231,0.292696,0.000000,-0.164142,0.730163,0.663265,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 720;16;-0.128896,-0.837365,0.531230,0.000000,0.972632,-0.002321,0.232338,0.000000,-0.193319,0.546639,0.814748,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 725;16;0.046600,-0.962126,0.268593,0.000000,0.974943,0.102358,0.197506,0.000000,-0.217518,0.252659,0.942788,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 735;16;0.147588,-0.983713,0.102601,0.000000,0.963643,0.166382,0.209067,0.000000,-0.222733,0.068015,0.972504,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1000;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1010;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1020;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1030;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1050;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1100;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1110;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1120;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1130;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1135;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1150;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1200;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1210;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1220;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1230;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1235;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1250;16;-0.334015,-0.918837,0.210173,0.000000,0.886817,-0.230798,0.400359,0.000000,-0.319357,0.320111,0.891930,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1500;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1510;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1523;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1530;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1532;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1536;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1550;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1560;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1600;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1620;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1630;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1632;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1636;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1650;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1700;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1725;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1730;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1732;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1736;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1750;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 1760;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2000;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2015;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2020;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2022;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2025;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2050;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2060;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2065;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2070;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2071;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2072;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2075;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2100;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2115;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2120;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2121;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2122;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2125;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2200;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2220;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2230;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2235;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2260;16;-0.388004,-0.896241,0.214954,0.000000,0.815437,-0.225122,0.533275,0.000000,-0.429552,0.382194,0.818176,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2400;16;-0.200877,-0.979613,0.002720,0.000000,0.886522,-0.180605,0.425981,0.000000,-0.416805,0.087981,0.904728,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2420;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2430;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2435;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2460;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2490;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2500;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2510;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2530;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2535;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2560;16;-0.121232,-0.987048,-0.105063,0.000000,0.909919,-0.152804,0.385614,0.000000,-0.396674,-0.048850,0.916659,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2600;16;-0.387677,-0.896460,0.214631,0.000000,0.815582,-0.225072,0.533074,0.000000,-0.429572,0.381709,0.818392,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2630;16;-0.387677,-0.896460,0.214630,0.000000,0.815582,-0.225072,0.533074,0.000000,-0.429572,0.381709,0.818392,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2635;16;-0.387676,-0.896461,0.214629,0.000000,0.815583,-0.225073,0.533074,0.000000,-0.429572,0.381707,0.818393,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2640;16;-0.472484,-0.797014,0.376201,0.000000,0.794290,-0.200105,0.573639,0.000000,-0.381919,0.569848,0.727607,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2650;16;-0.387677,-0.896460,0.214631,0.000000,0.815582,-0.225072,0.533074,0.000000,-0.429572,0.381709,0.818392,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2700;16;-0.387677,-0.896460,0.214630,0.000000,0.815582,-0.225072,0.533074,0.000000,-0.429572,0.381709,0.818392,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2730;16;-0.387677,-0.896460,0.214630,0.000000,0.815582,-0.225072,0.533074,0.000000,-0.429572,0.381709,0.818392,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2735;16;-0.387677,-0.896459,0.214632,0.000000,0.815582,-0.225072,0.533074,0.000000,-0.429572,0.381711,0.818392,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2740;16;-0.472484,-0.797014,0.376201,0.000000,0.794290,-0.200105,0.573639,0.000000,-0.381919,0.569848,0.727607,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2755;16;-0.387677,-0.896460,0.214630,0.000000,0.815582,-0.225073,0.533074,0.000000,-0.429572,0.381709,0.818392,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2800;16;-0.083101,-0.880608,0.466502,0.000000,0.814244,0.209890,0.541251,0.000000,-0.574544,0.424825,0.699588,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2830;16;-0.083100,-0.880608,0.466503,0.000000,0.814244,0.209890,0.541251,0.000000,-0.574544,0.424825,0.699588,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2835;16;-0.083100,-0.880608,0.466503,0.000000,0.814244,0.209890,0.541251,0.000000,-0.574544,0.424825,0.699588,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2850;16;-0.083100,-0.880608,0.466503,0.000000,0.814244,0.209890,0.541251,0.000000,-0.574544,0.424825,0.699588,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2900;16;-0.078213,-0.981479,-0.174875,0.000000,0.873785,-0.151942,0.461967,0.000000,-0.479982,-0.116672,0.869486,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2910;16;-0.078213,-0.981479,-0.174875,0.000000,0.873785,-0.151942,0.461967,0.000000,-0.479982,-0.116671,0.869486,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2930;16;-0.078213,-0.981479,-0.174875,0.000000,0.873785,-0.151942,0.461967,0.000000,-0.479982,-0.116671,0.869486,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2932;16;-0.077955,-0.981324,-0.175856,0.000000,0.873232,-0.152319,0.462887,0.000000,-0.481028,-0.117478,0.868798,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 2935;16;-0.078213,-0.981479,-0.174875,0.000000,0.873785,-0.151942,0.461967,0.000000,-0.479982,-0.116671,0.869485,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3100;16;-0.022290,-0.985334,0.169172,0.000000,0.998042,-0.012039,0.061378,0.000000,-0.058442,0.170209,0.983673,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3103;16;0.019782,-0.997034,0.074383,0.000000,0.999425,0.021768,0.025994,0.000000,-0.027536,0.073826,0.996891,0.000000,-0.037573,-0.006428,2.402329,1.000000;;, + 3104;16;0.037485,-0.998298,0.044668,0.000000,0.999170,0.038155,0.014240,0.000000,-0.015920,0.044097,0.998900,0.000000,-0.037573,-0.006428,2.500502,1.000000;;, + 3106;16;0.063125,-0.998006,0.000390,0.000000,0.998006,0.063125,0.000126,0.000000,-0.000150,0.000381,1.000000,0.000000,-0.037573,-0.006428,2.820897,1.000000;;, + 3110;16;0.035978,-0.999352,0.000717,0.000000,0.999120,0.035985,0.021528,0.000000,-0.021540,-0.000058,0.999768,0.000000,-0.037573,-0.006428,2.838690,1.000000;;, + 3112;16;0.018997,-0.999815,-0.002934,0.000000,0.999217,0.018884,0.034777,0.000000,-0.034715,-0.003592,0.999391,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3116;16;-0.008782,-0.998267,-0.058183,0.000000,0.998207,-0.012197,0.058600,0.000000,-0.059208,-0.057564,0.996585,0.000000,-0.037573,-0.006428,2.820893,1.000000;;, + 3120;16;-0.005650,-0.999607,0.027448,0.000000,0.998503,-0.004146,0.054547,0.000000,-0.054411,0.027715,0.998134,0.000000,-0.037573,-0.006428,2.694254,1.000000;;, + 3124;16;0.000334,-0.992686,0.120726,0.000000,0.998891,0.006016,0.046706,0.000000,-0.047091,0.120576,0.991587,0.000000,-0.037573,-0.006428,2.820893,1.000000;;, + 3128;16;-0.011793,-0.986442,0.163688,0.000000,0.998546,-0.003007,0.053822,0.000000,-0.052600,0.164084,0.985043,0.000000,-0.037573,-0.006428,2.831444,1.000000;;, + 3132;16;-0.022290,-0.985334,0.169173,0.000000,0.998042,-0.012039,0.061378,0.000000,-0.058441,0.170209,0.983673,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3150;16;-0.022290,-0.985334,0.169173,0.000000,0.998042,-0.012039,0.061378,0.000000,-0.058441,0.170209,0.983673,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3153;16;0.019780,-0.997033,0.074386,0.000000,0.999425,0.021767,0.025995,0.000000,-0.027537,0.073829,0.996891,0.000000,-0.037573,-0.006428,2.402337,1.000000;;, + 3154;16;0.037488,-0.998299,0.044663,0.000000,0.999170,0.038157,0.014238,0.000000,-0.015918,0.044092,0.998901,0.000000,-0.037573,-0.006428,2.500530,1.000000;;, + 3156;16;0.063125,-0.998006,0.000390,0.000000,0.998006,0.063125,0.000126,0.000000,-0.000150,0.000382,1.000000,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3160;16;0.035981,-0.999352,0.000718,0.000000,0.999120,0.035988,0.021526,0.000000,-0.021538,-0.000058,0.999768,0.000000,-0.037573,-0.006428,2.838690,1.000000;;, + 3162;16;0.018998,-0.999815,-0.002933,0.000000,0.999217,0.018885,0.034776,0.000000,-0.034714,-0.003591,0.999391,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3166;16;-0.008783,-0.998267,-0.058183,0.000000,0.998207,-0.012198,0.058600,0.000000,-0.059208,-0.057564,0.996585,0.000000,-0.037573,-0.006428,2.820889,1.000000;;, + 3170;16;-0.005650,-0.999607,0.027452,0.000000,0.998503,-0.004145,0.054546,0.000000,-0.054411,0.027719,0.998134,0.000000,-0.037573,-0.006428,2.694254,1.000000;;, + 3174;16;0.000334,-0.992686,0.120724,0.000000,0.998891,0.006016,0.046706,0.000000,-0.047091,0.120575,0.991587,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3178;16;-0.011793,-0.986442,0.163689,0.000000,0.998546,-0.003007,0.053822,0.000000,-0.052600,0.164086,0.985043,0.000000,-0.037573,-0.006428,2.831444,1.000000;;, + 3182;16;-0.022290,-0.985335,0.169171,0.000000,0.998042,-0.012040,0.061375,0.000000,-0.058438,0.170208,0.983674,0.000000,-0.037573,-0.006428,2.820891,1.000000;;, + 3200;16;-0.083100,-0.880608,0.466503,0.000000,0.814244,0.209890,0.541251,0.000000,-0.574544,0.424825,0.699588,0.000000,-0.037573,-0.006428,2.820891,1.000000;;; + } + } + + Animation Animation18 { + { Frame19_L_Tumasaki } + AnimationKey { + 4; + 176; + 0;16;0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,0.173648,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 5;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 10;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 50;16;-0.165172,-0.000000,-0.986265,0.000000,0.000000,1.000000,-0.000000,0.000000,0.986265,-0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 52;16;-0.408355,-0.000000,-0.912823,0.000000,0.000000,1.000000,-0.000000,0.000000,0.912823,-0.000000,-0.408355,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 54;16;0.194098,0.000000,-0.980982,0.000000,0.000000,1.000000,0.000000,0.000000,0.980982,0.000000,0.194098,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 56;16;0.179301,-0.000000,-0.983794,0.000000,0.000000,1.000000,-0.000000,0.000000,0.983794,-0.000000,0.179301,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 60;16;0.217459,-0.000000,-0.976069,0.000000,0.000000,1.000000,-0.000000,0.000000,0.976069,-0.000000,0.217459,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 66;16;0.090509,0.000000,-0.995896,0.000000,0.000000,1.000000,0.000000,0.000000,0.995896,0.000000,0.090509,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 70;16;-0.259060,0.000000,-0.965861,0.000000,-0.000000,1.000000,0.000000,0.000000,0.965861,0.000000,-0.259060,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 74;16;-0.083328,0.000000,-0.996522,0.000000,-0.000000,1.000000,0.000000,0.000000,0.996522,0.000000,-0.083328,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 78;16;-0.108649,0.000000,-0.994080,0.000000,-0.000000,1.000000,0.000000,0.000000,0.994080,0.000000,-0.108649,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 82;16;-0.165172,-0.000000,-0.986265,0.000000,0.000000,1.000000,-0.000000,0.000000,0.986265,-0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 100;16;-0.282463,-0.000000,-0.959278,0.000000,0.000000,1.000000,-0.000000,0.000000,0.959278,-0.000000,-0.282463,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 103;16;-0.208805,0.000000,-0.977957,0.000000,0.000000,1.000000,0.000000,0.000000,0.977957,0.000000,-0.208805,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 108;16;0.018564,0.000000,-0.999828,0.000000,0.000000,1.000000,0.000000,0.000000,0.999828,0.000000,0.018564,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 112;16;0.191024,0.000000,-0.981585,0.000000,0.000000,1.000000,0.000000,0.000000,0.981585,0.000000,0.191024,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 116;16;0.262067,0.000000,-0.965050,0.000000,0.000000,1.000000,0.000000,0.000000,0.965050,0.000000,0.262067,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 120;16;0.134251,0.000000,-0.990947,0.000000,0.000000,1.000000,0.000000,0.000000,0.990947,0.000000,0.134251,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 124;16;-0.030532,0.000000,-0.999534,0.000000,0.000000,1.000000,0.000000,0.000000,0.999534,0.000000,-0.030532,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 128;16;-0.188893,0.000000,-0.981998,0.000000,0.000000,1.000000,0.000000,0.000000,0.981998,0.000000,-0.188893,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 132;16;-0.282463,0.000000,-0.959278,0.000000,0.000000,1.000000,0.000000,0.000000,0.959278,0.000000,-0.282463,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 150;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 152;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 160;16;0.151300,0.000000,-0.988488,0.000000,0.000000,1.000000,0.000000,0.000000,0.988488,0.000000,0.151300,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 180;16;0.317186,0.000000,-0.948363,0.000000,0.000000,1.000000,0.000000,0.000000,0.948363,0.000000,0.317186,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 200;16;-0.287482,0.000000,-0.957786,0.000000,0.000000,1.000000,0.000000,0.000000,0.957786,0.000000,-0.287482,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 202;16;-0.287481,0.000000,-0.957786,0.000000,0.000000,1.000000,0.000000,0.000000,0.957786,0.000000,-0.287481,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 210;16;0.310555,0.000000,-0.950556,0.000000,0.000000,1.000000,0.000000,0.000000,0.950556,0.000000,0.310555,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 230;16;0.310555,0.000000,-0.950556,0.000000,0.000000,1.000000,0.000000,0.000000,0.950556,0.000000,0.310555,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 250;16;-0.287482,0.000000,-0.957786,0.000000,0.000000,1.000000,0.000000,0.000000,0.957786,0.000000,-0.287482,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 252;16;-0.287482,0.000000,-0.957786,0.000000,0.000000,1.000000,0.000000,0.000000,0.957786,0.000000,-0.287482,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 260;16;-0.287482,0.000000,-0.957786,0.000000,0.000000,1.000000,0.000000,0.000000,0.957786,0.000000,-0.287482,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 280;16;-0.287482,0.000000,-0.957786,0.000000,0.000000,1.000000,0.000000,0.000000,0.957786,0.000000,-0.287482,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 300;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 302;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 310;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 330;16;0.114812,0.000000,-0.993387,0.000000,0.000000,1.000000,0.000000,0.000000,0.993387,0.000000,0.114812,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 350;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 360;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 400;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 420;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 430;16;0.435117,0.000000,-0.900374,0.000000,0.000000,1.000000,0.000000,0.000000,0.900374,0.000000,0.435117,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 440;16;0.496799,0.000000,-0.867866,0.000000,0.000000,1.000000,0.000000,0.000000,0.867866,0.000000,0.496799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 455;16;0.434310,0.000000,-0.900763,0.000000,0.000000,1.000000,0.000000,0.000000,0.900763,0.000000,0.434310,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 470;16;0.429751,-0.000000,-0.902947,0.000000,0.000000,1.000000,0.000000,0.000000,0.902947,-0.000000,0.429751,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 500;16;0.231625,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231625,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 510;16;0.017326,0.000000,-0.999850,0.000000,0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 517;16;-0.149897,-0.000000,-0.988702,0.000000,0.000000,1.000000,-0.000000,0.000000,0.988702,-0.000000,-0.149897,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 525;16;-0.144939,0.000000,-0.989441,0.000000,0.000000,1.000000,0.000000,0.000000,0.989441,0.000000,-0.144939,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 540;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 600;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 607;16;0.017327,0.000000,-0.999850,0.000000,-0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017327,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 615;16;0.017326,0.000000,-0.999850,0.000000,0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 650;16;0.017326,0.000000,-0.999850,0.000000,0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 655;16;0.017326,0.000000,-0.999850,0.000000,0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 665;16;0.017326,0.000000,-0.999850,0.000000,0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 670;16;0.017326,0.000000,-0.999850,0.000000,0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 680;16;0.017326,0.000000,-0.999850,0.000000,0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 700;16;0.017326,0.000000,-0.999850,0.000000,0.000000,1.000000,0.000000,0.000000,0.999850,0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 715;16;0.017326,-0.000000,-0.999850,0.000000,0.000000,1.000000,-0.000000,0.000000,0.999850,-0.000000,0.017326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 720;16;0.097014,0.000000,-0.995283,0.000000,-0.000000,1.000000,0.000000,0.000000,0.995283,0.000000,0.097014,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 725;16;0.185994,0.000000,-0.982551,0.000000,-0.000000,1.000000,0.000000,0.000000,0.982551,0.000000,0.185994,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 735;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1000;16;-0.165172,-0.000000,-0.986265,0.000000,0.000000,1.000000,-0.000000,0.000000,0.986265,-0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1010;16;-0.165172,-0.000000,-0.986265,0.000000,0.000000,1.000000,-0.000000,0.000000,0.986265,-0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1020;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1030;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1050;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1100;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1110;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1120;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1130;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1135;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1150;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1200;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1210;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1220;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1230;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1235;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1250;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1500;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1510;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1523;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1530;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1532;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1536;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1550;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1560;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1600;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1620;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1630;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1632;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1636;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1650;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1700;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1725;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1730;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1732;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1736;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1750;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1760;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2000;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2015;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2020;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2022;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2025;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2050;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2060;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2065;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2070;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2071;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2072;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2075;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2100;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2115;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2120;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2121;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2122;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2125;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2200;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2220;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2230;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2235;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2260;16;-0.165172,-0.000000,-0.986265,0.000000,0.000000,1.000000,-0.000000,0.000000,0.986265,-0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2400;16;0.109409,0.000000,-0.993997,0.000000,-0.000000,1.000000,0.000000,0.000000,0.993997,0.000000,0.109409,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2420;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2430;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2435;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2460;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2490;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2500;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2510;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2530;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2535;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2560;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2600;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2630;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2635;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2640;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2650;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2700;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2730;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2735;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2740;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2755;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2800;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2830;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2835;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2850;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2900;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2910;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2930;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2932;16;0.232723,0.000000,-0.972543,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972543,0.000000,0.232723,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2935;16;0.231626,0.000000,-0.972805,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972805,0.000000,0.231626,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3100;16;-0.165171,0.000000,-0.986265,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165171,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3102;16;-0.408355,0.000000,-0.912823,0.000000,0.000000,1.000000,0.000000,0.000000,0.912823,0.000000,-0.408355,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3104;16;0.194083,0.000000,-0.980985,0.000000,-0.000000,1.000000,0.000000,0.000000,0.980985,0.000000,0.194083,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3106;16;0.179302,-0.000000,-0.983794,0.000000,0.000000,1.000000,-0.000000,0.000000,0.983794,-0.000000,0.179302,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3110;16;0.217457,-0.000000,-0.976070,0.000000,0.000000,1.000000,-0.000000,0.000000,0.976070,-0.000000,0.217457,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3116;16;0.090514,-0.000000,-0.995895,0.000000,0.000000,1.000000,-0.000000,0.000000,0.995895,-0.000000,0.090514,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3120;16;-0.259060,0.000000,-0.965861,0.000000,0.000000,1.000000,0.000000,0.000000,0.965861,0.000000,-0.259060,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3124;16;-0.083326,0.000000,-0.996522,0.000000,-0.000000,1.000000,0.000000,0.000000,0.996522,0.000000,-0.083326,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3128;16;-0.108648,0.000000,-0.994080,0.000000,-0.000000,1.000000,0.000000,0.000000,0.994080,0.000000,-0.108648,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3132;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3150;16;-0.165172,0.000000,-0.986265,0.000000,0.000000,1.000000,0.000000,0.000000,0.986265,0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3152;16;-0.408363,0.000000,-0.912820,0.000000,0.000000,1.000000,0.000000,0.000000,0.912820,0.000000,-0.408363,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3154;16;0.194112,-0.000000,-0.980979,0.000000,0.000000,1.000000,-0.000000,0.000000,0.980979,-0.000000,0.194112,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3156;16;0.179301,-0.000000,-0.983794,0.000000,0.000000,1.000000,-0.000000,0.000000,0.983794,-0.000000,0.179301,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3160;16;0.217461,-0.000000,-0.976069,0.000000,0.000000,1.000000,-0.000000,0.000000,0.976069,-0.000000,0.217461,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3166;16;0.090504,0.000000,-0.995896,0.000000,-0.000000,1.000000,0.000000,0.000000,0.995896,0.000000,0.090504,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3170;16;-0.259064,0.000000,-0.965860,0.000000,-0.000000,1.000000,0.000000,0.000000,0.965860,0.000000,-0.259064,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3174;16;-0.083328,0.000000,-0.996522,0.000000,-0.000000,1.000000,0.000000,0.000000,0.996522,0.000000,-0.083328,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3178;16;-0.108650,0.000000,-0.994080,0.000000,-0.000000,1.000000,0.000000,0.000000,0.994080,0.000000,-0.108650,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3182;16;-0.165172,-0.000000,-0.986265,0.000000,0.000000,1.000000,-0.000000,0.000000,0.986265,-0.000000,-0.165172,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3200;16;-0.164703,0.000000,-0.986343,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986343,0.000000,-0.164703,0.000000,-0.000000,-0.000000,0.550000,1.000000;;; + } + } + + Animation Animation19 { + { Frame20_R_Mune } + AnimationKey { + 4; + 170; + 0;16;0.000000,-0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 5;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 10;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 50;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 54;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 60;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 66;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 70;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 74;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 78;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 82;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 100;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 103;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 108;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 112;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 116;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 120;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 124;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 128;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 132;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 150;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 152;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 160;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 180;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 200;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 202;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 210;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 230;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 250;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 252;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 260;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 280;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 300;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 302;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 310;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 330;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 350;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 360;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 400;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 420;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 430;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 440;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 455;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 470;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 500;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 510;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 517;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 525;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 540;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 600;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 607;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 615;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 650;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 655;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 665;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 670;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 680;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 700;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 715;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 720;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 725;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 735;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1000;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1010;16;-0.000000,-0.000000,-1.000000,0.000000,1.000000,-0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1020;16;0.000000,-0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1030;16;0.000000,-0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1050;16;0.000000,-0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1100;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1110;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1120;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1130;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1135;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1150;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1200;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1210;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1220;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1230;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1235;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1250;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1500;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1510;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1523;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1530;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1532;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1536;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1550;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1560;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1600;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1620;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1630;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1632;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1636;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1650;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1700;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1725;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1730;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1732;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1736;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1750;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1760;16;0.000000,0.000000,-1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,-0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2000;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2015;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2020;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2022;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2025;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2050;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2060;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2065;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2070;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2071;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2072;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2075;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2100;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2115;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2120;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2121;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2122;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2125;16;0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2200;16;-0.137289,-0.047564,-0.989388,0.000000,0.990509,0.000000,-0.137444,0.000000,0.006537,-0.998868,0.047113,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2220;16;-0.137289,-0.047564,-0.989388,0.000000,0.990509,0.000000,-0.137445,0.000000,0.006537,-0.998868,0.047113,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2230;16;-0.137289,-0.047564,-0.989388,0.000000,0.990509,0.000000,-0.137445,0.000000,0.006537,-0.998868,0.047113,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2235;16;-0.137289,-0.047564,-0.989388,0.000000,0.990509,0.000000,-0.137445,0.000000,0.006537,-0.998868,0.047113,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2260;16;-0.137289,-0.047564,-0.989388,0.000000,0.990509,-0.000000,-0.137445,0.000000,0.006537,-0.998868,0.047113,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2400;16;-0.042757,-0.047564,-0.997953,0.000000,0.999083,0.000000,-0.042806,0.000000,0.002036,-0.998868,0.047521,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2420;16;0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2430;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2435;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2460;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2490;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2500;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2510;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2530;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2535;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2560;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2600;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2630;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2635;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2640;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2650;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2700;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2730;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2735;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2740;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2755;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2800;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2830;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2835;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2850;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2900;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2910;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2930;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2932;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2935;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3100;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3104;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3110;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3116;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3120;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3124;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3128;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3132;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3150;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3154;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3160;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3166;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3170;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3174;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3178;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3182;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3200;16;-0.000000,-0.047564,-0.998868,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,-0.998868,0.047564,0.000000,0.000000,0.000000,3.000000,1.000000;;; + } + } + + Animation Animation20 { + { Frame21_R_Kata_Base } + AnimationKey { + 4; + 170; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 5;16;0.998338,-0.034369,-0.046252,0.000000,0.025769,0.984208,-0.175131,0.000000,0.051541,0.173648,0.983458,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 10;16;0.948615,0.310192,-0.062533,0.000000,-0.312849,0.949034,-0.038222,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 50;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 54;16;0.944523,0.321907,-0.065214,0.000000,-0.324998,0.944694,-0.043916,0.000000,0.047471,0.062674,0.996904,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 60;16;0.996245,0.069369,-0.051804,0.000000,-0.072404,0.995617,-0.059199,0.000000,0.047471,0.062728,0.996901,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 66;16;0.988259,-0.148054,-0.037747,0.000000,0.145229,0.986989,-0.068995,0.000000,0.047471,0.062703,0.996903,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 70;16;0.998204,-0.039493,-0.045052,0.000000,0.036550,0.997256,-0.064381,0.000000,0.047471,0.062619,0.996908,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 74;16;0.988927,0.137543,-0.055716,0.000000,-0.140602,0.988521,-0.055294,0.000000,0.047471,0.062516,0.996914,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 78;16;0.947266,0.313838,-0.064755,0.000000,-0.316913,0.947423,-0.044223,0.000000,0.047472,0.062413,0.996921,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 82;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 100;16;0.954894,0.290055,-0.063600,0.000000,-0.293126,0.954979,-0.045732,0.000000,0.047472,0.062312,0.996927,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 103;16;0.963794,0.259315,-0.062103,0.000000,-0.262388,0.963780,-0.047749,0.000000,0.047472,0.062315,0.996927,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 108;16;0.978386,0.198195,-0.058980,0.000000,-0.201262,0.978179,-0.051572,0.000000,0.047472,0.062327,0.996926,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 112;16;0.986573,0.153215,-0.056559,0.000000,-0.156270,0.986225,-0.054227,0.000000,0.047472,0.062337,0.996926,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 116;16;0.989232,0.135398,-0.055572,0.000000,-0.138446,0.988828,-0.055242,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 120;16;0.983943,0.168995,-0.057420,0.000000,-0.172054,0.983644,-0.053311,0.000000,0.047472,0.062334,0.996926,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 124;16;0.975777,0.210485,-0.059624,0.000000,-0.213554,0.975608,-0.050823,0.000000,0.047472,0.062325,0.996926,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 128;16;0.965644,0.252422,-0.061761,0.000000,-0.255495,0.965608,-0.048192,0.000000,0.047472,0.062316,0.996927,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 132;16;0.954894,0.290055,-0.063600,0.000000,-0.293126,0.954979,-0.045732,0.000000,0.047472,0.062312,0.996927,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 150;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 152;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 160;16;0.994501,-0.096226,-0.041339,0.000000,0.093353,0.993405,-0.066568,0.000000,0.047472,0.062343,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 180;16;0.939625,-0.341406,-0.023394,0.000000,0.338898,0.937846,-0.074785,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 200;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 202;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 210;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 230;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 250;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 252;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 260;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 280;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 300;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 302;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 310;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 330;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 350;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 360;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 400;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 420;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 430;16;0.823845,0.562433,-0.070348,0.000000,-0.565116,0.824627,-0.025164,0.000000,0.043857,0.060486,0.997205,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 440;16;0.834552,0.546999,-0.065693,0.000000,-0.549466,0.835082,-0.026932,0.000000,0.040128,0.058572,0.997476,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 455;16;0.902302,0.428193,-0.050020,0.000000,-0.430060,0.902109,-0.035318,0.000000,0.030001,0.053379,0.998124,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 470;16;0.908346,0.415427,-0.048254,0.000000,-0.417222,0.908093,-0.035967,0.000000,0.028877,0.052803,0.998187,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 500;16;0.973458,0.221203,-0.058736,0.000000,-0.223887,0.973629,-0.043835,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 510;16;0.956503,-0.290249,-0.029301,0.000000,0.287833,0.955322,-0.067177,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 517;16;0.980103,-0.195550,-0.034045,0.000000,0.193182,0.979155,-0.062735,0.000000,0.045603,0.054910,0.997449,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 525;16;0.993119,-0.110403,-0.039062,0.000000,0.107984,0.992376,-0.059401,0.000000,0.045322,0.054774,0.997470,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 540;16;0.973457,0.221203,-0.058736,0.000000,-0.223887,0.973629,-0.043835,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 600;16;0.973457,0.221203,-0.058736,0.000000,-0.223887,0.973629,-0.043835,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 607;16;0.956503,-0.290248,-0.029301,0.000000,0.287832,0.955322,-0.067177,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 615;16;0.956503,-0.290249,-0.029301,0.000000,0.287833,0.955322,-0.067177,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 650;16;0.967697,0.244926,-0.059789,0.000000,-0.247604,0.967934,-0.042387,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 655;16;0.646694,0.759220,-0.073290,0.000000,-0.761269,0.648436,-0.000044,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 665;16;0.845540,0.529317,-0.069890,0.000000,-0.531795,0.846586,-0.022062,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 670;16;0.646694,0.759220,-0.073290,0.000000,-0.761270,0.648436,-0.000044,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 680;16;0.646694,0.759220,-0.073290,0.000000,-0.761270,0.648435,-0.000044,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 700;16;0.646694,0.759220,-0.073290,0.000000,-0.761270,0.648435,-0.000044,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 715;16;0.646694,0.759221,-0.073290,0.000000,-0.761270,0.648435,-0.000044,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 720;16;0.798267,0.597924,-0.072497,0.000000,-0.600354,0.799575,-0.015968,0.000000,0.048419,0.056270,0.997241,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 725;16;0.923566,0.377541,-0.066992,0.000000,-0.380272,0.924259,-0.033741,0.000000,0.049179,0.056637,0.997183,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 735;16;0.973457,0.221203,-0.058736,0.000000,-0.223887,0.973629,-0.043835,0.000000,0.047490,0.055821,0.997311,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1000;16;-0.370229,-0.922482,-0.109347,0.000000,0.913468,-0.382926,0.137637,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1010;16;-0.370229,-0.922482,-0.109347,0.000000,0.913468,-0.382926,0.137637,0.000000,-0.168840,-0.048928,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1020;16;0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1030;16;0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1050;16;0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1100;16;-0.370228,-0.922483,-0.109346,0.000000,0.913468,-0.382925,0.137637,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1110;16;-0.370229,-0.922483,-0.109347,0.000000,0.913468,-0.382926,0.137637,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1120;16;0.008272,-0.998802,-0.048223,0.000000,0.985609,0.000001,0.169042,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1130;16;0.008271,-0.998802,-0.048223,0.000000,0.985609,0.000000,0.169042,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1135;16;-0.018280,-0.998440,-0.052759,0.000000,0.985474,-0.026904,0.167682,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1150;16;0.008271,-0.998802,-0.048223,0.000000,0.985609,-0.000000,0.169042,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1200;16;-0.370229,-0.922483,-0.109347,0.000000,0.913468,-0.382926,0.137637,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1210;16;-0.370228,-0.922483,-0.109346,0.000000,0.913468,-0.382925,0.137637,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1220;16;0.008270,-0.998802,-0.048223,0.000000,0.985609,-0.000001,0.169042,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1230;16;0.008271,-0.998802,-0.048223,0.000000,0.985609,0.000000,0.169042,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1235;16;0.013464,-0.998788,-0.047332,0.000000,0.985552,0.005263,0.169294,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1250;16;0.008271,-0.998802,-0.048223,0.000000,0.985609,0.000000,0.169042,0.000000,-0.168839,-0.048927,0.984428,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1500;16;0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1510;16;0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1523;16;-0.000001,-1.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1530;16;-0.000001,-1.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1532;16;-0.000001,-1.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1536;16;-0.000001,-1.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1550;16;-0.000003,-1.000000,0.000000,0.000000,1.000000,-0.000003,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2015;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2020;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2022;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2025;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2125;16;1.000000,0.000002,0.000000,0.000000,-0.000002,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2200;16;0.000001,-1.000000,0.000000,0.000000,1.000000,0.000001,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2220;16;0.224951,-0.974370,0.000000,0.000000,0.974370,0.224951,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2230;16;0.224952,-0.974370,0.000000,0.000000,0.974370,0.224952,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2235;16;0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2260;16;0.224951,-0.974370,-0.000000,0.000000,0.974370,0.224951,-0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2400;16;0.477398,-0.876820,0.057256,0.000000,0.878419,0.477848,-0.006428,0.000000,-0.021724,0.053363,0.998339,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2420;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2430;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2435;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2460;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2490;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2500;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2510;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2530;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2535;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2560;16;0.556025,-0.824939,0.101550,0.000000,0.830459,0.556428,-0.026953,0.000000,-0.034271,0.099320,0.994465,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2600;16;0.551017,-0.829591,-0.090325,0.000000,0.831887,0.537521,0.137969,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2630;16;0.551008,-0.829597,-0.090326,0.000000,0.831893,0.537512,0.137967,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2635;16;0.285390,-0.950022,-0.126531,0.000000,0.956143,0.273144,0.105753,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2640;16;0.285388,-0.950023,-0.126532,0.000000,0.956143,0.273142,0.105752,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2650;16;0.551007,-0.829598,-0.090326,0.000000,0.831894,0.537510,0.137967,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2700;16;0.770841,0.619948,0.146522,0.000000,-0.633610,0.769944,0.075664,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2730;16;0.770841,0.619948,0.146522,0.000000,-0.633610,0.769944,0.075664,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2735;16;0.770841,0.619948,0.146522,0.000000,-0.633610,0.769944,0.075664,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2740;16;0.770841,0.619948,0.146522,0.000000,-0.633610,0.769944,0.075664,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2755;16;0.770840,0.619949,0.146523,0.000000,-0.633610,0.769944,0.075664,0.000000,-0.065906,-0.151163,0.986309,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2800;16;0.911888,0.405127,-0.065815,0.000000,-0.406869,0.871158,-0.274849,0.000000,-0.054014,0.277409,0.959232,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2830;16;0.911888,0.405127,-0.065815,0.000000,-0.406869,0.871158,-0.274849,0.000000,-0.054014,0.277410,0.959232,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2835;16;0.911888,0.405127,-0.065815,0.000000,-0.406869,0.871158,-0.274849,0.000000,-0.054014,0.277410,0.959232,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2850;16;0.911888,0.405127,-0.065815,0.000000,-0.406869,0.871158,-0.274849,0.000000,-0.054014,0.277410,0.959232,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2900;16;0.925087,0.298091,-0.235278,0.000000,-0.356128,0.896096,-0.264924,0.000000,0.131861,0.328867,0.935125,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2910;16;0.925087,0.298091,-0.235278,0.000000,-0.356128,0.896096,-0.264924,0.000000,0.131860,0.328867,0.935125,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2930;16;0.925087,0.298091,-0.235278,0.000000,-0.356128,0.896096,-0.264924,0.000000,0.131861,0.328867,0.935125,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2932;16;0.925107,0.297724,-0.235662,0.000000,-0.355997,0.895951,-0.265589,0.000000,0.132069,0.329594,0.934840,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 2935;16;0.925087,0.298091,-0.235278,0.000000,-0.356128,0.896096,-0.264924,0.000000,0.131861,0.328867,0.935125,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3100;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062342,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3104;16;0.944521,0.321911,-0.065215,0.000000,-0.325002,0.944693,-0.043916,0.000000,0.047471,0.062674,0.996904,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3110;16;0.996246,0.069361,-0.051804,0.000000,-0.072396,0.995618,-0.059200,0.000000,0.047471,0.062728,0.996901,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3116;16;0.988259,-0.148053,-0.037747,0.000000,0.145228,0.986990,-0.068995,0.000000,0.047471,0.062703,0.996903,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3120;16;0.998204,-0.039493,-0.045052,0.000000,0.036550,0.997256,-0.064381,0.000000,0.047471,0.062619,0.996908,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3124;16;0.988927,0.137548,-0.055716,0.000000,-0.140606,0.988520,-0.055294,0.000000,0.047471,0.062516,0.996914,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3128;16;0.947267,0.313834,-0.064755,0.000000,-0.316909,0.947424,-0.044224,0.000000,0.047472,0.062413,0.996921,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3132;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3150;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036460,0.000000,0.047472,0.062341,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3154;16;0.944524,0.321904,-0.065214,0.000000,-0.324995,0.944696,-0.043916,0.000000,0.047471,0.062674,0.996904,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3160;16;0.996244,0.069377,-0.051805,0.000000,-0.072411,0.995616,-0.059199,0.000000,0.047471,0.062728,0.996901,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3166;16;0.988258,-0.148055,-0.037747,0.000000,0.145230,0.986989,-0.068995,0.000000,0.047471,0.062703,0.996903,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3170;16;0.998204,-0.039486,-0.045053,0.000000,0.036543,0.997256,-0.064381,0.000000,0.047471,0.062619,0.996908,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3174;16;0.988927,0.137543,-0.055716,0.000000,-0.140602,0.988521,-0.055294,0.000000,0.047471,0.062516,0.996914,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3178;16;0.947265,0.313841,-0.064755,0.000000,-0.316916,0.947422,-0.044223,0.000000,0.047472,0.062413,0.996921,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3182;16;0.904792,0.420167,-0.069359,0.000000,-0.423199,0.905303,-0.036459,0.000000,0.047472,0.062340,0.996925,0.000000,0.110000,0.450000,0.000000,1.000000;;, + 3200;16;0.911888,0.405127,-0.065815,0.000000,-0.406869,0.871158,-0.274849,0.000000,-0.054014,0.277410,0.959232,0.000000,0.110000,0.450000,0.000000,1.000000;;; + } + } + + Animation Animation21 { + { Frame22_R_Ueude } + AnimationKey { + 4; + 170; + 0;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 5;16;0.412440,0.218143,-0.884481,0.000000,-0.092191,0.975917,0.197705,0.000000,0.906308,-0.000000,0.422618,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 10;16;0.529919,0.000000,-0.848048,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 50;16;0.426056,-0.000000,-0.904697,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.904697,0.000000,0.426056,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 54;16;0.424588,0.000000,-0.905386,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.905386,0.000000,0.424588,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 60;16;0.432875,0.000000,-0.901454,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.901454,0.000000,0.432875,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 66;16;0.444812,0.000000,-0.895624,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.895624,0.000000,0.444812,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 70;16;0.462912,-0.000000,-0.886404,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.886404,0.000000,0.462912,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 74;16;0.445799,-0.000000,-0.895133,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.895133,0.000000,0.445799,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 78;16;0.424895,0.000000,-0.905243,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.905243,0.000000,0.424895,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 82;16;0.426056,-0.000000,-0.904697,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.904697,0.000000,0.426056,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 100;16;0.637659,0.000000,-0.770319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.770319,0.000000,0.637659,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 103;16;0.648868,0.000000,-0.760901,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.760901,0.000000,0.648868,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 108;16;0.645588,0.000000,-0.763686,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.763686,0.000000,0.645588,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 112;16;0.640945,0.000000,-0.767587,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.767587,0.000000,0.640945,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 116;16;0.637659,0.000000,-0.770319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.770319,0.000000,0.637659,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 120;16;0.639689,-0.000000,-0.768634,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.768634,0.000000,0.639689,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 124;16;0.642971,0.000000,-0.765890,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.765890,0.000000,0.642971,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 128;16;0.644733,-0.000000,-0.764408,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.764408,0.000000,0.644733,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 132;16;0.637659,-0.000000,-0.770319,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.770319,0.000000,0.637659,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 150;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 152;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,0.000000,0.000000,0.852480,-0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 160;16;0.517169,0.000000,-0.855883,0.000000,0.000000,1.000000,0.000000,0.000000,0.855883,-0.000000,0.517169,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 180;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 200;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 202;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 210;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 230;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 250;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 252;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 260;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 280;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 300;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 302;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 310;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 330;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 350;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 360;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 400;16;0.522760,0.000000,-0.852480,0.000000,-0.000000,1.000000,0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 420;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 430;16;0.516668,-0.152986,-0.842407,0.000000,0.079985,0.988228,-0.130412,0.000000,0.852441,0.000000,0.522823,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 440;16;0.515468,-0.170143,-0.839848,0.000000,0.089001,0.985419,-0.145008,0.000000,0.852274,0.000000,0.523095,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 455;16;0.517649,-0.152765,-0.841845,0.000000,0.080018,0.988263,-0.130132,0.000000,0.851843,-0.000000,0.523797,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 470;16;0.517761,-0.151520,-0.842001,0.000000,0.079367,0.988454,-0.129070,0.000000,0.851836,0.000000,0.523809,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 500;16;0.529919,0.000000,-0.848048,0.000000,-0.000000,1.000000,0.000000,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 510;16;0.762668,-0.000000,-0.646790,0.000000,0.000000,1.000000,-0.000000,0.000000,0.646790,-0.000000,0.762668,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 517;16;0.745125,0.000000,-0.666925,0.000000,0.000000,1.000000,0.000000,0.000000,0.666925,-0.000000,0.745125,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 525;16;0.713146,-0.000000,-0.701016,0.000000,0.000000,1.000000,-0.000000,0.000000,0.701016,0.000000,0.713146,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 540;16;0.529919,0.000000,-0.848048,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 600;16;0.529919,0.000000,-0.848048,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 607;16;0.762668,0.000000,-0.646790,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.646790,0.000000,0.762668,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 615;16;0.762668,-0.000000,-0.646790,0.000000,0.000000,1.000000,-0.000000,0.000000,0.646790,-0.000000,0.762668,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 650;16;0.762668,-0.000000,-0.646790,0.000000,0.000000,1.000000,-0.000000,0.000000,0.646790,0.000000,0.762668,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 655;16;0.487861,-0.000000,-0.872922,0.000000,0.000000,1.000000,-0.000000,0.000000,0.872922,0.000000,0.487861,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 665;16;0.642776,-0.000000,-0.766054,0.000000,0.000000,1.000000,-0.000000,0.000000,0.766054,0.000000,0.642776,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 670;16;0.487861,-0.000000,-0.872922,0.000000,0.000000,1.000000,-0.000000,0.000000,0.872922,0.000000,0.487861,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 680;16;0.487860,-0.000000,-0.872922,0.000000,0.000000,1.000000,-0.000000,0.000000,0.872922,0.000000,0.487860,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 700;16;0.487860,-0.000000,-0.872922,0.000000,0.000000,1.000000,-0.000000,0.000000,0.872922,0.000000,0.487860,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 715;16;0.487860,0.000000,-0.872922,0.000000,0.000000,1.000000,0.000000,0.000000,0.872922,-0.000000,0.487860,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 720;16;0.503214,0.000000,-0.864162,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.864162,0.000000,0.503214,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 725;16;0.520409,0.000000,-0.853917,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.853917,0.000000,0.520409,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 735;16;0.529919,0.000000,-0.848048,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1000;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,0.000000,0.000000,0.852480,-0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1010;16;0.522761,-0.000000,-0.852480,0.000000,0.000000,1.000000,0.000000,0.000000,0.852480,-0.000000,0.522761,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1020;16;0.000000,-0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1030;16;0.000000,-0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1050;16;0.000000,-0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1100;16;0.522759,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522759,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1110;16;0.760604,-0.000000,-0.649216,0.000000,0.000000,1.000000,-0.000000,0.000000,0.649216,-0.000000,0.760604,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1120;16;0.708555,-0.000000,-0.705655,0.000000,0.000000,1.000000,-0.000000,0.000000,0.705655,0.000000,0.708555,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1130;16;0.709785,-0.000000,-0.704418,0.000000,0.000000,1.000000,-0.000000,0.000000,0.704418,0.000000,0.709785,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1135;16;0.713795,-0.000000,-0.700355,0.000000,0.000000,1.000000,-0.000000,0.000000,0.700355,-0.000000,0.713795,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1150;16;0.714687,-0.000000,-0.699445,0.000000,0.000000,1.000000,-0.000000,0.000000,0.699445,0.000000,0.714687,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1200;16;0.522760,-0.000000,-0.852480,0.000000,0.000000,1.000000,-0.000000,0.000000,0.852480,0.000000,0.522760,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1210;16;0.522759,0.000003,-0.852480,0.000000,-0.000001,1.000000,0.000002,0.000000,0.852480,0.000000,0.522759,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1220;16;0.054249,0.981627,-0.182937,0.000000,-0.279086,0.190811,0.941118,0.000000,0.958733,0.000000,0.284309,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1230;16;0.054248,0.981627,-0.182934,0.000000,-0.279085,0.190808,0.941118,0.000000,0.958733,0.000000,0.284309,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1235;16;0.085190,0.981627,-0.170735,0.000000,-0.438269,0.190808,0.878358,0.000000,0.894798,0.000000,0.446472,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1250;16;0.054248,0.981627,-0.182934,0.000000,-0.279086,0.190808,0.941118,0.000000,0.958733,-0.000000,0.284309,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1500;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1510;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1523;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1530;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1532;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1536;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1550;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1560;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1600;16;0.011101,-0.771625,-0.635981,0.000000,0.013466,0.636078,-0.771507,0.000000,0.999848,-0.000000,0.017452,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1620;16;0.011101,-0.771624,-0.635982,0.000000,0.013466,0.636079,-0.771507,0.000000,0.999848,0.000000,0.017452,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1630;16;0.011101,-0.771624,-0.635982,0.000000,0.013466,0.636078,-0.771507,0.000000,0.999848,0.000000,0.017452,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1632;16;0.009708,-0.830983,-0.556212,0.000000,0.014502,0.556297,-0.830857,0.000000,0.999848,-0.000000,0.017452,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1636;16;0.009708,-0.830984,-0.556212,0.000000,0.014502,0.556296,-0.830857,0.000000,0.999848,0.000000,0.017452,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1650;16;0.011101,-0.771624,-0.635982,0.000000,0.013466,0.636079,-0.771507,0.000000,0.999848,0.000000,0.017452,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1700;16;0.823136,-0.000000,-0.567845,0.000000,0.000000,1.000000,-0.000000,0.000000,0.567845,-0.000000,0.823136,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1725;16;0.823136,0.000000,-0.567844,0.000000,0.000000,1.000000,0.000000,0.000000,0.567844,0.000000,0.823136,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1730;16;0.823136,0.000000,-0.567844,0.000000,0.000000,1.000000,0.000000,0.000000,0.567844,0.000000,0.823136,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1732;16;0.823136,0.000000,-0.567844,0.000000,0.000000,1.000000,0.000000,0.000000,0.567844,0.000000,0.823136,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1736;16;0.823136,0.000000,-0.567844,0.000000,0.000000,1.000000,0.000000,0.000000,0.567844,0.000000,0.823136,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1750;16;0.823136,0.000000,-0.567844,0.000000,0.000000,1.000000,0.000000,0.000000,0.567844,0.000000,0.823136,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 1760;16;0.823136,0.000000,-0.567844,0.000000,0.000000,1.000000,0.000000,0.000000,0.567844,0.000000,0.823136,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2000;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2015;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2020;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2022;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2025;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2050;16;-0.000000,-0.499999,-0.866026,0.000000,-0.000000,0.866026,-0.499999,0.000000,1.000000,-0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2060;16;-0.000000,-0.500000,-0.866025,0.000000,-0.000000,0.866025,-0.500000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2065;16;-0.000000,-0.500000,-0.866025,0.000000,-0.000000,0.866025,-0.500000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2070;16;-0.000000,-0.500000,-0.866025,0.000000,-0.000000,0.866025,-0.500000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2071;16;-0.000000,-0.500000,-0.866025,0.000000,-0.000000,0.866025,-0.500000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2072;16;-0.000000,-0.500000,-0.866025,0.000000,-0.000000,0.866025,-0.500000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2075;16;0.000000,-0.499999,-0.866026,0.000000,-0.000000,0.866026,-0.499999,0.000000,1.000000,0.000000,0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2100;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2115;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2120;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2121;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2122;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2125;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2200;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2220;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2230;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2235;16;-0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2260;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2400;16;0.226368,0.820712,-0.524584,0.000000,-0.325170,0.571342,0.753547,0.000000,0.918162,-0.000000,0.396205,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2420;16;0.092019,0.984808,-0.147261,0.000000,-0.521869,0.173647,0.835164,0.000000,0.848048,0.000000,0.529920,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2430;16;0.092019,0.984808,-0.147262,0.000000,-0.521869,0.173648,0.835164,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2435;16;0.092019,0.984808,-0.147262,0.000000,-0.521869,0.173648,0.835164,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2460;16;0.092019,0.984808,-0.147262,0.000000,-0.521869,0.173648,0.835164,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2490;16;0.383114,0.690882,-0.613111,0.000000,-0.366112,0.722967,0.585901,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2500;16;0.383114,0.690882,-0.613111,0.000000,-0.366112,0.722967,0.585901,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2510;16;0.383114,0.690882,-0.613111,0.000000,-0.366112,0.722967,0.585901,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2530;16;0.383115,0.690881,-0.613112,0.000000,-0.366111,0.722969,0.585900,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2535;16;0.092019,0.984808,-0.147262,0.000000,-0.521869,0.173648,0.835164,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2560;16;0.052116,0.995152,-0.083402,0.000000,-0.527350,0.098346,0.843937,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2600;16;0.349408,0.523992,-0.776754,0.000000,-0.214960,0.851723,0.477869,0.000000,0.911979,0.000000,0.410236,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2630;16;0.349408,0.523993,-0.776754,0.000000,-0.214961,0.851723,0.477870,0.000000,0.911979,0.000000,0.410237,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2635;16;0.349408,0.523993,-0.776754,0.000000,-0.214961,0.851723,0.477870,0.000000,0.911979,0.000000,0.410237,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2640;16;0.349408,0.523993,-0.776754,0.000000,-0.214961,0.851723,0.477870,0.000000,0.911979,0.000000,0.410237,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2650;16;0.349408,0.523993,-0.776753,0.000000,-0.214961,0.851722,0.477871,0.000000,0.911979,0.000000,0.410237,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2700;16;0.390159,-0.309009,-0.867346,0.000000,0.126767,0.951059,-0.281810,0.000000,0.911979,0.000000,0.410237,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2730;16;0.390159,-0.309009,-0.867346,0.000000,0.126767,0.951059,-0.281810,0.000000,0.911979,0.000000,0.410237,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2735;16;0.390159,-0.309009,-0.867346,0.000000,0.126767,0.951059,-0.281810,0.000000,0.911979,0.000000,0.410237,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2740;16;0.390159,-0.309009,-0.867346,0.000000,0.126767,0.951059,-0.281810,0.000000,0.911979,0.000000,0.410237,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2755;16;0.390159,-0.309010,-0.867346,0.000000,0.126767,0.951059,-0.281810,0.000000,0.911979,0.000000,0.410236,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2800;16;0.510640,-0.027914,-0.859342,0.000000,0.014259,0.999610,-0.023997,0.000000,0.859677,0.000000,0.510839,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2830;16;0.510640,-0.027913,-0.859342,0.000000,0.014259,0.999610,-0.023996,0.000000,0.859677,-0.000000,0.510839,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2835;16;0.510640,-0.027913,-0.859342,0.000000,0.014259,0.999610,-0.023996,0.000000,0.859677,-0.000000,0.510839,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2850;16;0.510640,-0.027913,-0.859342,0.000000,0.014259,0.999610,-0.023996,0.000000,0.859677,-0.000000,0.510839,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2900;16;0.521707,-0.175367,-0.834906,0.000000,0.092930,0.984503,-0.148720,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2910;16;0.521707,-0.175367,-0.834906,0.000000,0.092930,0.984503,-0.148720,0.000000,0.848048,-0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2930;16;0.521707,-0.175367,-0.834906,0.000000,0.092930,0.984503,-0.148720,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2932;16;0.521940,-0.175857,-0.834657,0.000000,0.093240,0.984416,-0.149104,0.000000,0.847871,0.000000,0.530203,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 2935;16;0.521707,-0.175367,-0.834906,0.000000,0.092930,0.984503,-0.148720,0.000000,0.848048,0.000000,0.529919,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3100;16;0.426056,-0.000000,-0.904697,0.000000,0.000000,1.000000,-0.000000,0.000000,0.904697,0.000000,0.426056,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3104;16;0.424588,0.000000,-0.905387,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.905387,0.000000,0.424588,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3110;16;0.432875,-0.000000,-0.901454,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.901454,0.000000,0.432875,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3116;16;0.444812,0.000000,-0.895624,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.895624,0.000000,0.444812,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3120;16;0.462912,-0.000000,-0.886404,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.886404,0.000000,0.462912,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3124;16;0.445799,0.000000,-0.895133,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.895133,0.000000,0.445799,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3128;16;0.424895,0.000000,-0.905242,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.905242,0.000000,0.424895,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3132;16;0.426056,-0.000000,-0.904697,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.904697,0.000000,0.426056,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3150;16;0.426056,-0.000000,-0.904697,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.904697,0.000000,0.426056,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3154;16;0.424589,-0.000000,-0.905386,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.905386,0.000000,0.424589,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3160;16;0.432874,0.000000,-0.901454,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.901454,0.000000,0.432874,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3166;16;0.444812,-0.000000,-0.895624,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.895624,0.000000,0.444812,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3170;16;0.462912,-0.000000,-0.886404,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.886404,0.000000,0.462912,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3174;16;0.445799,-0.000000,-0.895133,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.895133,0.000000,0.445799,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3178;16;0.424895,0.000000,-0.905243,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.905243,0.000000,0.424895,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3182;16;0.426055,0.000000,-0.904697,0.000000,-0.000000,1.000000,0.000000,0.000000,0.904697,0.000000,0.426055,0.000000,0.030000,0.010000,0.800000,1.000000;;, + 3200;16;0.510640,-0.027913,-0.859342,0.000000,0.014259,0.999610,-0.023996,0.000000,0.859677,0.000000,0.510839,0.000000,0.030000,0.010000,0.800000,1.000000;;; + } + } + + Animation Animation22 { + { Frame23_R_Hizi } + AnimationKey { + 4; + 171; + 0;16;1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000001,-0.000000,1.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 5;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 10;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 50;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 54;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923247,0.384206,0.000000,-0.000001,-0.384206,0.923247,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 60;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.924470,0.381255,0.000000,-0.000001,-0.381255,0.924470,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 66;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.926224,0.376974,0.000000,-0.000001,-0.376974,0.926224,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 70;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.928868,0.370412,0.000000,-0.000001,-0.370412,0.928868,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 74;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.927287,0.374351,0.000000,-0.000001,-0.374351,0.927287,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 78;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.925095,0.379735,0.000000,-0.000001,-0.379735,0.925095,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 82;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 100;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923096,0.384569,0.000000,-0.000001,-0.384569,0.923096,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 103;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923125,0.384500,0.000000,-0.000001,-0.384500,0.923125,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 108;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923268,0.384156,0.000000,-0.000001,-0.384156,0.923268,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 112;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923385,0.383876,0.000000,-0.000001,-0.383876,0.923385,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 116;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 120;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923473,0.383664,0.000000,-0.000001,-0.383664,0.923473,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 124;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923471,0.383668,0.000000,-0.000001,-0.383668,0.923471,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 128;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923467,0.383678,0.000000,-0.000001,-0.383678,0.923467,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 132;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 150;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 152;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 160;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 180;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 200;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 202;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 210;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 230;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 250;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 252;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 260;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 280;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 300;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 302;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 310;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 330;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 350;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 360;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 400;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 420;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 430;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923421,0.383788,0.000000,-0.000001,-0.383788,0.923421,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 440;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923237,0.384232,0.000000,-0.000001,-0.384232,0.923237,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 455;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.922760,0.385375,0.000000,-0.000001,-0.385375,0.922760,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 470;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.922752,0.385395,0.000000,-0.000001,-0.385395,0.922752,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 500;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 510;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 517;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938369,0.345635,0.000000,-0.000001,-0.345635,0.938369,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 525;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.938351,0.345685,0.000000,-0.000001,-0.345685,0.938351,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 540;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 600;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 607;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 615;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 650;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 655;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 665;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 670;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 680;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 700;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 715;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 720;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938554,0.345132,0.000000,-0.000001,-0.345132,0.938554,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 725;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938604,0.344996,0.000000,-0.000001,-0.344996,0.938604,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 735;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1000;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1010;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923464,0.383686,0.000000,-0.000001,-0.383686,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1020;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.997564,0.069756,0.000000,-0.000001,-0.069756,0.997564,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1030;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.997564,0.069757,0.000000,-0.000001,-0.069757,0.997564,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1035;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.952129,0.305695,0.000000,-0.000001,-0.305695,0.952129,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1050;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.997564,0.069756,0.000000,-0.000001,-0.069756,0.997564,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1100;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1110;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1120;16;1.000000,0.000000,0.000001,0.000000,0.000000,1.000000,-0.000001,0.000000,-0.000001,0.000001,1.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1130;16;1.000000,0.000000,0.000001,0.000000,0.000000,1.000000,-0.000001,0.000000,-0.000001,0.000001,1.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1135;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.952129,0.305695,0.000000,-0.000001,-0.305695,0.952129,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1150;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.000001,-0.000000,1.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1200;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1210;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1220;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.946649,0.322266,0.000000,-0.000001,-0.322266,0.946649,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1230;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.946649,0.322266,0.000000,-0.000001,-0.322266,0.946649,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1235;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.990509,0.137445,0.000000,-0.000001,-0.137445,0.990509,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1250;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.946649,0.322266,0.000000,-0.000001,-0.322266,0.946649,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1500;16;1.000000,-0.000000,0.000001,0.000000,-0.000001,-0.483283,0.875464,0.000000,0.000000,-0.875464,-0.483283,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1510;16;1.000000,-0.000000,0.000001,0.000000,-0.000001,-0.483279,0.875466,0.000000,0.000000,-0.875466,-0.483279,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1523;16;1.000000,0.000000,0.000001,0.000000,0.000000,1.000000,-0.000002,0.000000,-0.000001,0.000002,1.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1530;16;1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000001,-0.000000,1.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1532;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.918445,0.395548,0.000000,-0.000001,-0.395548,0.918445,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1536;16;1.000000,-0.000000,0.000001,0.000000,-0.000001,0.592013,0.805929,0.000000,-0.000001,-0.805929,0.592013,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1550;16;1.000000,-0.000000,0.000001,0.000000,0.000000,1.000000,-0.000001,0.000000,-0.000001,0.000001,1.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1560;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1600;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.006981,0.999976,0.000000,0.000000,-0.999976,-0.006981,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1620;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.006981,0.999976,0.000000,0.000000,-0.999976,-0.006981,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1630;16;1.000000,-0.000000,0.000001,0.000000,-0.000001,-0.006982,0.999976,0.000000,0.000000,-0.999976,-0.006982,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1632;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.097583,0.995227,0.000000,0.000000,-0.995227,-0.097583,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1636;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.097584,0.995227,0.000000,0.000000,-0.995227,-0.097584,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1650;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.006981,0.999976,0.000000,0.000000,-0.999976,-0.006981,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1700;16;1.000000,-0.000000,0.000001,0.000000,-0.000001,0.798635,0.601816,0.000000,-0.000001,-0.601816,0.798635,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1725;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.798635,0.601815,0.000000,-0.000001,-0.601815,0.798635,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1730;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.798635,0.601815,0.000000,-0.000001,-0.601815,0.798635,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1732;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.798635,0.601815,0.000000,-0.000001,-0.601815,0.798635,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1736;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.798635,0.601815,0.000000,-0.000001,-0.601815,0.798635,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1750;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.798635,0.601815,0.000000,-0.000001,-0.601815,0.798635,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 1760;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.798635,0.601815,0.000000,-0.000001,-0.601815,0.798635,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2000;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.862514,0.506034,0.000000,-0.000001,-0.506034,0.862514,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2015;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.896486,0.443072,0.000000,-0.000001,-0.443072,0.896486,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2020;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.851728,0.523985,0.000000,-0.000001,-0.523985,0.851728,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2022;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.840567,0.541708,0.000000,-0.000001,-0.541708,0.840567,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2025;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.851727,0.523986,0.000000,-0.000001,-0.523986,0.851727,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2050;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.000002,1.000000,0.000000,-0.000000,-1.000000,0.000002,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2060;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2065;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2070;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2071;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2072;16;1.000000,0.000000,0.000001,0.000000,-0.000001,-0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2075;16;1.000000,0.000000,0.000001,0.000000,-0.000001,0.000004,1.000000,0.000000,-0.000000,-1.000000,0.000004,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2100;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.978148,0.207912,0.000000,-0.000001,-0.207912,0.978148,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2115;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.978148,0.207912,0.000000,-0.000001,-0.207912,0.978148,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2120;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.978148,0.207912,0.000000,-0.000001,-0.207912,0.978148,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2121;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.978148,0.207912,0.000000,-0.000001,-0.207912,0.978148,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2122;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.978148,0.207912,0.000000,-0.000001,-0.207912,0.978148,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2125;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.978148,0.207912,0.000000,-0.000001,-0.207912,0.978148,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2200;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.970296,0.241922,0.000000,-0.000001,-0.241922,0.970296,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2220;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.970296,0.241922,0.000000,-0.000001,-0.241922,0.970296,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2230;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.970296,0.241922,0.000000,-0.000001,-0.241922,0.970296,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2235;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.970296,0.241922,0.000000,-0.000001,-0.241922,0.970296,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2260;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.970296,0.241922,0.000000,-0.000001,-0.241922,0.970296,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2400;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.949565,0.313571,0.000000,-0.000001,-0.313571,0.949565,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2420;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345298,0.000000,-0.000001,-0.345298,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2430;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2435;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2460;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2490;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2500;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2510;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2530;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2535;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2560;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.938493,0.345298,0.000000,-0.000001,-0.345298,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2600;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2630;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2635;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2640;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2650;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2700;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2730;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2735;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2740;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2755;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2800;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2830;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2835;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2850;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2900;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345298,0.000000,-0.000001,-0.345298,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2910;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2930;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2932;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.938533,0.345188,0.000000,-0.000001,-0.345188,0.938533,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 2935;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.938493,0.345297,0.000000,-0.000001,-0.345297,0.938493,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3100;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3104;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923247,0.384206,0.000000,-0.000001,-0.384206,0.923247,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3110;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.924470,0.381255,0.000000,-0.000001,-0.381255,0.924470,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3116;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.926224,0.376974,0.000000,-0.000001,-0.376974,0.926224,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3120;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.928868,0.370412,0.000000,-0.000001,-0.370412,0.928868,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3124;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.927287,0.374351,0.000000,-0.000001,-0.374351,0.927287,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3128;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.925095,0.379735,0.000000,-0.000001,-0.379735,0.925095,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3132;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3150;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.923464,0.383685,0.000000,-0.000001,-0.383685,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3154;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923247,0.384206,0.000000,-0.000001,-0.384206,0.923247,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3160;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.924470,0.381255,0.000000,-0.000001,-0.381255,0.924470,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3166;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.926224,0.376974,0.000000,-0.000001,-0.376974,0.926224,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3170;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.928868,0.370411,0.000000,-0.000001,-0.370411,0.928868,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3174;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.927287,0.374351,0.000000,-0.000001,-0.374351,0.927287,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3178;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.925095,0.379735,0.000000,-0.000001,-0.379735,0.925095,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3182;16;1.000000,-0.000000,0.000001,0.000000,-0.000000,0.923464,0.383686,0.000000,-0.000001,-0.383686,0.923464,0.000000,-0.000000,-0.000000,1.500000,1.000000;;, + 3200;16;1.000000,0.000000,0.000001,0.000000,-0.000000,0.976205,0.216849,0.000000,-0.000001,-0.216849,0.976205,0.000000,-0.000000,-0.000000,1.500000,1.000000;;; + } + } + + Animation Animation23 { + { Frame24_R_Sitaude } + AnimationKey { + 4; + 171; + 0;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 5;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.939693,0.342020,0.000000,0.000000,-0.342020,0.939693,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 10;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.433660,0.901077,0.000000,0.000000,-0.901077,0.433660,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 50;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 54;16;0.999984,0.000000,-0.005578,0.000000,0.005256,0.334825,0.942266,0.000000,0.001868,-0.942280,0.334819,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 60;16;0.999763,0.000000,-0.021787,0.000000,0.019393,0.455772,0.889885,0.000000,0.009930,-0.890096,0.455664,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 66;16;0.999363,-0.000000,-0.035693,0.000000,0.029713,0.554079,0.831934,0.000000,0.019777,-0.832464,0.553726,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 70;16;0.999579,0.000000,-0.029010,0.000000,0.024975,0.508731,0.860563,0.000000,0.014758,-0.860926,0.508516,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 74;16;0.999836,-0.000000,-0.018085,0.000000,0.016318,0.431108,0.902153,0.000000,0.007797,-0.902300,0.431038,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 78;16;0.999973,0.000000,-0.007387,0.000000,0.006914,0.351831,0.936038,0.000000,0.002599,-0.936064,0.351821,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 82;16;1.000000,-0.000000,0.000000,0.000000,-0.000000,0.295530,0.955334,0.000000,-0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 100;16;0.999999,-0.000000,0.001716,0.000000,-0.001647,0.282291,0.959328,0.000000,-0.000485,-0.959329,0.282290,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 103;16;0.999999,0.000000,0.001583,0.000000,-0.001518,0.283325,0.959023,0.000000,-0.000448,-0.959024,0.283325,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 108;16;1.000000,0.000000,0.000915,0.000000,-0.000877,0.288476,0.957487,0.000000,-0.000264,-0.957487,0.288476,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 112;16;1.000000,0.000000,0.000371,0.000000,-0.000354,0.292677,0.956211,0.000000,-0.000108,-0.956211,0.292677,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 116;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 120;16;1.000000,-0.000000,-0.000042,0.000000,0.000040,0.295851,0.955234,0.000000,0.000012,-0.955234,0.295851,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 124;16;1.000000,0.000000,-0.000032,0.000000,0.000031,0.295776,0.955257,0.000000,0.000009,-0.955257,0.295776,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 128;16;1.000000,-0.000000,-0.000013,0.000000,0.000013,0.295632,0.955302,0.000000,0.000004,-0.955302,0.295632,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 132;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 152;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 160;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.456425,0.889762,0.000000,0.000000,-0.889762,0.456425,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 180;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.541552,0.840667,0.000000,0.000000,-0.840667,0.541552,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 202;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 210;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 250;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 252;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 260;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 280;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 300;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 302;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 310;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 330;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 350;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 360;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 400;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 420;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 430;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295187,0.955440,0.000000,0.000000,-0.955440,0.295187,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 440;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.293704,0.955896,0.000000,0.000000,-0.955896,0.293704,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 455;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.289879,0.957063,0.000000,0.000000,-0.957063,0.289879,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 470;16;1.000000,-0.000000,0.000000,0.000000,-0.000000,0.625881,0.779919,0.000000,-0.000000,-0.779919,0.625881,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 500;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944377,0.328866,0.000000,0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 517;16;0.999989,0.000000,0.004608,0.000000,-0.001232,0.963578,0.267425,0.000000,-0.004440,-0.267428,0.963568,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 525;16;1.000000,0.000000,0.000350,0.000000,-0.000116,0.943100,0.332509,0.000000,-0.000330,-0.332509,0.943100,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 540;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 600;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 607;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.944376,0.328867,0.000000,0.000000,-0.328867,0.944376,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 615;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944377,0.328866,0.000000,0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944377,0.328866,0.000000,0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944377,0.328866,0.000000,0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 665;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944377,0.328866,0.000000,0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 670;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944377,0.328866,0.000000,0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 680;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944377,0.328866,0.000000,0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.944377,0.328866,0.000000,0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 715;16;1.000000,-0.000000,0.000000,0.000000,-0.000000,0.944377,0.328866,0.000000,-0.000000,-0.328866,0.944377,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 720;16;0.999915,0.000000,-0.013040,0.000000,0.006664,0.859567,0.510980,0.000000,0.011209,-0.511023,0.859494,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 725;16;0.999615,-0.000000,-0.027763,0.000000,0.019225,0.721441,0.692209,0.000000,0.020030,-0.692476,0.721163,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 735;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1000;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.295530,0.955334,0.000000,-0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1010;16;1.000000,-0.000000,0.000000,0.000000,-0.000000,0.295527,0.955334,0.000000,-0.000000,-0.955334,0.295527,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1020;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1030;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000002,0.000000,0.000000,-0.000002,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1035;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.839578,0.543239,0.000000,0.000000,-0.543239,0.839578,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295531,0.955333,0.000000,0.000000,-0.955333,0.295531,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1110;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,-0.000003,0.000000,0.000000,0.000003,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1130;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,-0.000002,0.000000,0.000000,0.000002,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1135;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.839578,0.543239,0.000000,0.000000,-0.543239,0.839578,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1150;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1210;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295531,0.955333,0.000000,0.000000,-0.955333,0.295531,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1220;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.918446,0.395547,0.000000,0.000000,-0.395547,0.918446,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.918446,0.395546,0.000000,0.000000,-0.395546,0.918446,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.918446,0.395546,0.000000,0.000000,-0.395546,0.918446,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1250;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.918446,0.395546,0.000000,0.000000,-0.395546,0.918446,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,-0.076720,-0.997053,0.000000,0.000000,0.997053,-0.076720,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,-0.076717,-0.997053,0.000000,0.000000,0.997053,-0.076717,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000002,0.000000,0.000000,-0.000002,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000002,0.000000,0.000000,-0.000002,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.853554,0.521005,0.000000,0.000000,-0.521005,0.853554,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.853551,0.521010,0.000000,0.000000,-0.521010,0.853551,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.500001,0.866025,0.000000,0.000000,-0.866025,0.500001,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.500000,0.866025,0.000000,0.000000,-0.866025,0.500000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.500003,0.866024,0.000000,0.000000,-0.866024,0.500003,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.027925,0.999610,0.000000,0.000000,-0.999610,0.027925,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.027925,0.999610,0.000000,0.000000,-0.999610,0.027925,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.500001,0.866025,0.000000,0.000000,-0.866025,0.500001,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.500000,0.866025,0.000000,0.000000,-0.866025,0.500000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.300705,0.953717,0.000000,0.000000,-0.953717,0.300705,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2015;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.300706,0.953717,0.000000,0.000000,-0.953717,0.300706,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2020;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.300707,0.953717,0.000000,0.000000,-0.953717,0.300707,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2022;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.219846,0.975535,0.000000,0.000000,-0.975535,0.219846,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2025;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.300706,0.953717,0.000000,0.000000,-0.953717,0.300706,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000002,0.000000,0.000000,-0.000002,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.848972,0.528438,0.000000,0.000000,-0.528438,0.848972,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000004,0.000000,0.000000,-0.000004,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.989016,0.147809,0.000000,0.000000,-0.147809,0.989016,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,-0.000001,0.000000,0.000000,0.000001,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000003,0.000000,0.000000,-0.000003,1.000000,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.490904,0.871214,0.000000,0.000000,-0.871214,0.490904,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.490904,0.871214,0.000000,0.000000,-0.871214,0.490904,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.490904,0.871214,0.000000,0.000000,-0.871214,0.490904,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.490904,0.871214,0.000000,0.000000,-0.871214,0.490904,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.490904,0.871214,0.000000,0.000000,-0.871214,0.490904,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.490903,0.871214,0.000000,0.000000,-0.871214,0.490903,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978147,0.207912,0.000000,0.000000,-0.207912,0.978147,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978148,0.207912,0.000000,0.000000,-0.207912,0.978148,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978148,0.207912,0.000000,0.000000,-0.207912,0.978148,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.978148,0.207912,0.000000,0.000000,-0.207912,0.978148,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.978148,0.207912,0.000000,-0.000000,-0.207912,0.978148,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2400;16;0.999697,-0.000000,-0.024611,0.000000,0.015543,0.775337,0.631356,0.000000,0.019082,-0.631548,0.775102,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2420;16;0.999363,0.000000,-0.035693,0.000000,0.027895,0.623879,0.781023,0.000000,0.022268,-0.781521,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2430;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2435;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2460;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2490;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2500;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2510;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2530;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2535;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2560;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623879,0.781023,0.000000,0.022268,-0.781521,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2600;16;1.000000,-0.000000,0.000000,0.000000,-0.000000,0.920087,0.391713,0.000000,-0.000000,-0.391713,0.920087,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2630;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.920087,0.391714,0.000000,0.000000,-0.391714,0.920087,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2635;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.920087,0.391714,0.000000,0.000000,-0.391714,0.920087,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2640;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.920087,0.391714,0.000000,0.000000,-0.391714,0.920087,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.920088,0.391712,0.000000,0.000000,-0.391712,0.920088,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.108671,0.994078,0.000000,0.000000,-0.994078,0.108671,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2730;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.108671,0.994078,0.000000,0.000000,-0.994078,0.108671,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2735;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.108671,0.994078,0.000000,0.000000,-0.994078,0.108671,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2740;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.108671,0.994078,0.000000,0.000000,-0.994078,0.108671,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2755;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.108671,0.994078,0.000000,0.000000,-0.994078,0.108671,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2800;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.520097,0.854107,0.000000,0.000000,-0.854107,0.520097,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2830;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.520098,0.854107,0.000000,0.000000,-0.854107,0.520098,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.520098,0.854107,0.000000,0.000000,-0.854107,0.520098,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2850;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.520098,0.854107,0.000000,0.000000,-0.854107,0.520098,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2900;16;0.999363,0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2910;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2930;16;0.999363,-0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2932;16;0.999359,0.000000,-0.035793,0.000000,0.027950,0.624704,0.780361,0.000000,0.022360,-0.780862,0.624304,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 2935;16;0.999363,0.000000,-0.035693,0.000000,0.027895,0.623880,0.781022,0.000000,0.022268,-0.781520,0.623482,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3100;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.295530,0.955333,0.000000,0.000000,-0.955333,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3104;16;0.999984,0.000000,-0.005578,0.000000,0.005256,0.334823,0.942266,0.000000,0.001868,-0.942281,0.334818,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3110;16;0.999763,0.000000,-0.021788,0.000000,0.019393,0.455776,0.889883,0.000000,0.009930,-0.890095,0.455668,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3116;16;0.999363,0.000000,-0.035693,0.000000,0.029713,0.554078,0.831934,0.000000,0.019776,-0.832465,0.553725,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3120;16;0.999579,0.000000,-0.029010,0.000000,0.024975,0.508731,0.860563,0.000000,0.014758,-0.860926,0.508516,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3124;16;0.999836,0.000000,-0.018085,0.000000,0.016318,0.431106,0.902154,0.000000,0.007796,-0.902301,0.431036,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3128;16;0.999973,-0.000000,-0.007387,0.000000,0.006915,0.351833,0.936037,0.000000,0.002599,-0.936063,0.351823,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3132;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.295530,0.955334,0.000000,0.000000,-0.955334,0.295530,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3154;16;0.999984,-0.000000,-0.005578,0.000000,0.005256,0.334826,0.942265,0.000000,0.001868,-0.942280,0.334821,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3160;16;0.999763,-0.000000,-0.021787,0.000000,0.019392,0.455769,0.889887,0.000000,0.009930,-0.890098,0.455660,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3166;16;0.999363,0.000000,-0.035693,0.000000,0.029713,0.554079,0.831933,0.000000,0.019777,-0.832464,0.553726,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3170;16;0.999579,0.000000,-0.029009,0.000000,0.024975,0.508727,0.860565,0.000000,0.014758,-0.860928,0.508513,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3174;16;0.999836,-0.000000,-0.018085,0.000000,0.016318,0.431108,0.902153,0.000000,0.007797,-0.902300,0.431038,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3178;16;0.999973,0.000000,-0.007386,0.000000,0.006914,0.351829,0.936039,0.000000,0.002599,-0.936064,0.351820,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3182;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.295529,0.955334,0.000000,0.000000,-0.955334,0.295529,0.000000,0.000000,-0.000000,0.450000,1.000000;;, + 3200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.520098,0.854107,0.000000,0.000000,-0.854107,0.520098,0.000000,0.000000,-0.000000,0.450000,1.000000;;; + } + } + + Animation Animation24 { + { Frame25_R_kata_Armer } + AnimationKey { + 4; + 170; + 0;16;0.977525,0.000000,0.210820,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.210820,0.000000,0.977525,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 5;16;0.906308,0.000000,0.422618,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.422618,0.000000,0.906308,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 10;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 50;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 54;16;0.723765,0.000000,0.690046,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.690046,0.000000,0.723765,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 60;16;0.727285,0.000000,0.686336,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.686336,0.000000,0.727285,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 66;16;0.730610,0.000000,0.682795,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.682795,0.000000,0.730610,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 70;16;0.729463,0.000000,0.684020,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.684020,0.000000,0.729463,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 74;16;0.727415,0.000000,0.686198,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.686198,0.000000,0.727415,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 78;16;0.725385,0.000000,0.688343,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.688343,0.000000,0.725385,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 82;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 100;16;0.723651,0.000000,0.690167,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.690167,0.000000,0.723651,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 103;16;0.723676,0.000000,0.690140,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.690140,0.000000,0.723676,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 108;16;0.723803,0.000000,0.690006,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.690006,0.000000,0.723803,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 112;16;0.723907,0.000000,0.689897,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689897,0.000000,0.723907,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 116;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 120;16;0.723986,0.000000,0.689815,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689815,0.000000,0.723986,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 124;16;0.723984,0.000000,0.689817,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689817,0.000000,0.723984,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 128;16;0.723980,0.000000,0.689821,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689821,0.000000,0.723980,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 132;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 150;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 152;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 160;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 180;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 200;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 202;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 210;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 230;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 250;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 252;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 260;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 280;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 300;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 302;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 310;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 330;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 350;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 360;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 400;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 420;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 430;16;0.723904,0.000000,0.689900,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689900,0.000000,0.723904,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 440;16;0.723587,0.000000,0.690233,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.690233,0.000000,0.723587,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 455;16;0.722767,0.000000,0.691091,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.691091,0.000000,0.722767,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 470;16;0.722753,0.000000,0.691106,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.691106,0.000000,0.722753,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 500;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 510;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 517;16;0.760430,0.000000,0.649420,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649420,0.000000,0.760430,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 525;16;0.760384,0.000000,0.649474,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649474,0.000000,0.760384,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 540;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 600;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 607;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 615;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 650;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 655;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 665;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 670;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 680;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 700;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 715;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 720;16;0.760894,0.000000,0.648877,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.648877,0.000000,0.760894,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 725;16;0.761019,0.000000,0.648730,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.648730,0.000000,0.761019,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 735;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1000;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1010;16;0.723977,0.000000,0.689824,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689824,0.000000,0.723977,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1020;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1030;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1050;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1100;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1110;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1120;16;0.927079,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927079,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1130;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1135;16;0.917095,0.000000,0.398669,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.398669,0.000000,0.917095,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1150;16;0.927078,0.000000,0.374868,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374868,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1200;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1210;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1220;16;0.927078,0.000000,0.374868,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374868,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1230;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1235;16;0.928959,0.000000,0.370182,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.370182,0.000000,0.928959,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1250;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1500;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1510;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1523;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1530;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1532;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1536;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1550;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1560;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1600;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1620;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1630;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1632;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1636;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1650;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1700;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1725;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1730;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1732;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1736;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1750;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 1760;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2000;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2015;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2020;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2022;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2025;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2050;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2060;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2065;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2070;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2071;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2072;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2075;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2100;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2115;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2120;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2121;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2122;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2125;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2200;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2220;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2230;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2235;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2260;16;0.927078,0.000000,0.374867,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.374867,0.000000,0.927078,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2400;16;0.821751,0.000000,0.569846,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.569846,0.000000,0.821751,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2420;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2430;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2435;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2460;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2490;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2500;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2510;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2530;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2535;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2560;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2600;16;0.926935,0.000000,0.375222,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375222,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2630;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2635;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2640;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2650;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2700;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2730;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2735;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2740;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2755;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2800;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2830;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2835;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2850;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2900;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2910;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2930;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2932;16;0.760841,0.000000,0.648938,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.648938,0.000000,0.760841,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 2935;16;0.760741,0.000000,0.649056,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.649056,0.000000,0.760741,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3100;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3104;16;0.723765,0.000000,0.690046,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.690046,0.000000,0.723765,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3110;16;0.727285,0.000000,0.686335,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.686335,0.000000,0.727285,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3116;16;0.730610,0.000000,0.682795,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.682795,0.000000,0.730610,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3120;16;0.729463,0.000000,0.684020,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.684020,0.000000,0.729463,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3124;16;0.727415,0.000000,0.686198,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.686198,0.000000,0.727415,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3128;16;0.725385,0.000000,0.688343,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.688343,0.000000,0.725385,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3132;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3150;16;0.723978,0.000000,0.689823,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689823,0.000000,0.723978,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3154;16;0.723765,0.000000,0.690046,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.690046,0.000000,0.723765,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3160;16;0.727285,0.000000,0.686336,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.686336,0.000000,0.727285,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3166;16;0.730610,0.000000,0.682795,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.682795,0.000000,0.730610,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3170;16;0.729463,0.000000,0.684020,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.684020,0.000000,0.729463,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3174;16;0.727415,0.000000,0.686198,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.686198,0.000000,0.727415,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3178;16;0.725385,0.000000,0.688343,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.688343,0.000000,0.725385,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3182;16;0.723977,0.000000,0.689825,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.689825,0.000000,0.723977,0.000000,-0.050000,0.000000,0.800000,1.000000;;, + 3200;16;0.926935,0.000000,0.375223,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.375223,0.000000,0.926935,0.000000,-0.050000,0.000000,0.800000,1.000000;;; + } + } + + Animation Animation25 { + { Frame26_R_Kata_S_Joint_1 } + AnimationKey { + 4; + 167; + 0;16;0.985109,0.000000,-0.171929,0.000000,0.000000,1.000000,0.000000,0.000000,0.171929,0.000000,0.985109,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 5;16;0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 10;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 50;16;0.021981,-0.000000,-0.999758,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999758,0.000000,0.021981,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 54;16;0.021212,-0.000000,-0.999775,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999775,0.000000,0.021212,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 60;16;0.034002,-0.000000,-0.999422,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999422,0.000000,0.034002,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 66;16;0.046144,-0.000000,-0.998935,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.998935,0.000000,0.046144,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 70;16;0.041949,-0.000000,-0.999120,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999120,0.000000,0.041949,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 74;16;0.034475,-0.000000,-0.999406,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999406,0.000000,0.034475,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 78;16;0.027091,-0.000000,-0.999633,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999633,0.000000,0.027091,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 82;16;0.021981,-0.000000,-0.999758,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999758,0.000000,0.021981,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 100;16;0.020795,-0.000000,-0.999784,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999784,0.000000,0.020795,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 103;16;0.020888,-0.000000,-0.999782,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999782,0.000000,0.020888,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 108;16;0.021349,-0.000000,-0.999772,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999772,0.000000,0.021349,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 112;16;0.021725,-0.000000,-0.999764,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999764,0.000000,0.021725,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 116;16;0.021981,-0.000000,-0.999758,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999758,0.000000,0.021981,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 120;16;0.029053,-0.000000,-0.999578,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999578,0.000000,0.029053,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 124;16;0.038456,-0.000000,-0.999260,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999260,0.000000,0.038456,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 128;16;0.043150,-0.000000,-0.999069,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999069,0.000000,0.043150,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 132;16;0.021982,-0.000000,-0.999758,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999758,0.000000,0.021982,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 150;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 152;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 160;16;-0.307151,-0.000000,-0.951661,0.000000,-0.000000,1.000000,0.000000,0.000000,0.951661,0.000000,-0.307151,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 180;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 200;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 202;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 210;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 230;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 250;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 252;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 260;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 280;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 300;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 302;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 310;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 330;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 350;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 360;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 400;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 420;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 430;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 440;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 455;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 470;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 500;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 510;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 517;16;0.154737,-0.000000,-0.987956,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987956,0.000000,0.154737,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 525;16;0.154153,-0.000000,-0.988047,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.988047,0.000000,0.154153,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 540;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 600;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 607;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 615;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 650;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 655;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 665;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 670;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 680;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 700;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 715;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 720;16;0.160601,-0.000000,-0.987019,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987019,0.000000,0.160601,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 725;16;0.162183,-0.000000,-0.986761,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.986761,0.000000,0.162183,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 735;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1000;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1010;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1020;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1030;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1050;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1100;16;-0.293047,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293047,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1110;16;0.318291,0.000000,-0.947993,0.000000,0.000000,1.000000,0.000000,0.000000,0.947993,0.000000,0.318291,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1150;16;0.377188,-0.000000,-0.926137,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.926137,0.000000,0.377188,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1200;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1210;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1220;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1230;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1235;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1250;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1500;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1510;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1523;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1530;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1532;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1536;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1550;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1560;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1600;16;-0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,-0.000000,0.000000,0.984808,-0.000000,-0.173648,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1620;16;-0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,-0.173648,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1630;16;-0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,-0.173648,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1632;16;-0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,-0.173648,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1636;16;-0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,-0.000000,0.000000,0.984808,-0.000000,-0.173648,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1650;16;-0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,-0.173648,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1700;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1725;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1730;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1732;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1736;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1750;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 1760;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2000;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2015;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2020;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2022;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2025;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2050;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2060;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2065;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2070;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2071;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2072;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2075;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2100;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2115;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2120;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2121;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2122;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2125;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2200;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2220;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2230;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2235;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2260;16;-0.293046,-0.000000,-0.956098,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956098,0.000000,-0.293046,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2400;16;0.017497,-0.000000,-0.999847,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999847,0.000000,0.017497,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2420;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2430;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2435;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2460;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2490;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2500;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2510;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2530;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2535;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2560;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2600;16;-0.292527,-0.000000,-0.956257,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956257,0.000000,-0.292527,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2630;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2635;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2640;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2650;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2700;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2730;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2735;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2740;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2755;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2800;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2830;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2835;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2850;16;-0.292526,-0.000000,-0.956258,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956258,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2900;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2910;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2930;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2932;16;0.159051,-0.000000,-0.987270,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987270,0.000000,0.159051,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 2935;16;0.158668,-0.000000,-0.987332,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.987332,0.000000,0.158668,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3100;16;0.021982,-0.000000,-0.999758,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999758,0.000000,0.021982,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3104;16;0.021212,-0.000000,-0.999775,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999775,0.000000,0.021212,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3110;16;0.034002,-0.000000,-0.999422,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999422,0.000000,0.034002,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3116;16;0.046144,-0.000000,-0.998935,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.998935,0.000000,0.046144,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3120;16;0.041949,-0.000000,-0.999120,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999120,0.000000,0.041949,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3124;16;0.034475,-0.000000,-0.999406,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999406,0.000000,0.034475,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3128;16;0.027091,-0.000000,-0.999633,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999633,0.000000,0.027091,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3132;16;0.021981,-0.000000,-0.999758,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999758,0.000000,0.021981,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3150;16;0.021981,-0.000000,-0.999758,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999758,0.000000,0.021981,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3154;16;0.021212,-0.000000,-0.999775,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999775,0.000000,0.021212,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3160;16;0.034001,-0.000000,-0.999422,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999422,0.000000,0.034001,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3166;16;0.046144,-0.000000,-0.998935,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.998935,0.000000,0.046144,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3170;16;0.041949,-0.000000,-0.999120,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999120,0.000000,0.041949,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3174;16;0.034475,-0.000000,-0.999406,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999406,0.000000,0.034475,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3178;16;0.027090,-0.000000,-0.999633,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999633,0.000000,0.027090,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3182;16;0.021983,-0.000000,-0.999758,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999758,0.000000,0.021983,0.000000,0.000000,0.000000,1.491643,1.000000;;, + 3200;16;-0.292526,-0.000000,-0.956257,0.000000,-0.000000,1.000000,0.000000,0.000000,0.956257,0.000000,-0.292526,0.000000,0.000000,0.000000,1.491643,1.000000;;; + } + } + + Animation Animation26 { + { Frame27_R_kata_S_Joint_2 } + AnimationKey { + 4; + 167; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 5;16;-0.173648,0.000000,0.984808,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.984808,-0.000000,-0.173648,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 10;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 50;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 54;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 60;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 66;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 70;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 74;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 78;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 82;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 100;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 103;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 108;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 112;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 116;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 120;16;0.612399,-0.000000,0.790549,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.790549,0.000000,0.612399,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 124;16;0.637219,-0.000000,0.770683,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.770683,0.000000,0.637219,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 128;16;0.649400,-0.000000,0.760447,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.760447,0.000000,0.649400,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 132;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 150;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 152;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 160;16;-0.473491,-0.000000,0.880799,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.880799,-0.000000,-0.473491,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 180;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 200;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 202;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 210;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 230;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 250;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 252;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 260;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 280;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 300;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 302;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 310;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 330;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 350;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 360;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 400;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 420;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 430;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 440;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 455;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 470;16;0.540240,0.000000,0.841511,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.841511,-0.000000,0.540240,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 500;16;0.593418,-0.000000,0.804895,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804895,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 510;16;0.170209,0.000000,0.985408,0.000000,0.000000,1.000000,0.000000,0.000000,-0.985408,0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 517;16;0.105574,0.000000,0.994411,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.994411,-0.000000,0.105574,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 525;16;0.159659,-0.000000,0.987172,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.987172,-0.000000,0.159659,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 540;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 600;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 607;16;0.170210,-0.000000,0.985408,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.985408,0.000000,0.170210,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 615;16;0.170209,0.000000,0.985408,0.000000,0.000000,1.000000,0.000000,0.000000,-0.985408,0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 650;16;0.170209,0.000000,0.985408,0.000000,0.000000,1.000000,0.000000,0.000000,-0.985408,0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 655;16;0.170209,0.000000,0.985408,0.000000,0.000000,1.000000,0.000000,0.000000,-0.985408,0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 665;16;0.170209,0.000000,0.985408,0.000000,0.000000,1.000000,0.000000,0.000000,-0.985408,0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 670;16;0.170209,0.000000,0.985408,0.000000,0.000000,1.000000,0.000000,0.000000,-0.985408,0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 680;16;0.170209,0.000000,0.985408,0.000000,0.000000,1.000000,0.000000,0.000000,-0.985408,0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 700;16;0.170209,0.000000,0.985408,0.000000,0.000000,1.000000,0.000000,0.000000,-0.985408,0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 715;16;0.170209,0.000000,0.985408,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.985408,-0.000000,0.170209,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 720;16;0.336558,-0.000000,0.941663,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.941663,0.000000,0.336558,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 725;16;0.511493,-0.000000,0.859288,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.859288,0.000000,0.511493,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 735;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1000;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1010;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1020;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1030;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1050;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1100;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1110;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1150;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1200;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1210;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1220;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1230;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1235;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1250;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1500;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1510;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1523;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1530;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1532;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1536;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1550;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1560;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1600;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1620;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1630;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1632;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1636;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1650;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1700;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1725;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1730;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1732;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1736;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1750;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1760;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2000;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2015;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2020;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2022;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2025;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2050;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2060;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2065;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2070;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2071;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2072;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2075;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2100;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2115;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2120;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2121;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2122;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2125;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2200;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2220;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2230;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2235;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2260;16;-0.428936,-0.000000,0.903335,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.903335,-0.000000,-0.428936,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2400;16;0.295843,-0.000000,0.955237,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.955237,0.000000,0.295843,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2420;16;0.593419,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593419,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2430;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2435;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2460;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2490;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2500;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2510;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2530;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2535;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2560;16;0.593419,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593419,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2600;16;-0.427777,-0.000000,0.903884,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903884,0.000000,-0.427777,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2630;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2635;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2640;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2650;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2700;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2730;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2735;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2740;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2755;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2800;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2830;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2835;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2850;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2900;16;0.593419,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593419,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2910;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2930;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2932;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2935;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3100;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3104;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3110;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3116;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3120;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3124;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3128;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3132;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3150;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3154;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3160;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3166;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3170;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3174;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3178;16;0.593418,-0.000000,0.804894,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804894,0.000000,0.593418,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3182;16;0.593422,-0.000000,0.804892,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.804892,0.000000,0.593422,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3200;16;-0.427776,-0.000000,0.903885,0.000000,0.000000,1.000000,0.000000,0.000000,-0.903885,0.000000,-0.427776,0.000000,0.000000,0.000000,1.350000,1.000000;;; + } + } + + Animation Animation27 { + { Frame28_R_Kata_S_End } + AnimationKey { + 4; + 167; + 0;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 5;16;-0.500000,-0.000000,-0.866025,0.000000,-0.000000,1.000000,0.000000,0.000000,0.866025,0.000000,-0.500000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 10;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 50;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 54;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 60;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 66;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 70;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 74;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 78;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 82;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 100;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 103;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 108;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 112;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 116;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 120;16;0.009625,-0.000000,-0.999954,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999954,0.000000,0.009625,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 124;16;0.022484,-0.000000,-0.999747,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999747,0.000000,0.022484,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 128;16;0.028919,-0.000000,-0.999582,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999582,0.000000,0.028919,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 132;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 150;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 152;16;-0.422618,-0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 160;16;-0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 180;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 200;16;-0.422618,-0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 202;16;-0.422617,-0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422617,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 210;16;0.109735,-0.000000,-0.993961,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.993961,0.000000,0.109735,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 230;16;0.109735,-0.000000,-0.993961,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.993961,0.000000,0.109735,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 250;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 252;16;-0.422617,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422617,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 260;16;0.109735,0.000000,-0.993961,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.993961,0.000000,0.109735,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 280;16;0.109735,0.000000,-0.993961,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.993961,0.000000,0.109735,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 300;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 302;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 310;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 330;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 350;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 360;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 400;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 420;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 430;16;-0.422696,-0.000000,-0.906272,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906272,0.000000,-0.422696,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 440;16;-0.423032,-0.000000,-0.906115,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906115,0.000000,-0.423032,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 455;16;-0.423898,-0.000000,-0.905710,0.000000,-0.000000,1.000000,0.000000,0.000000,0.905710,0.000000,-0.423898,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 470;16;0.694886,-0.000000,-0.719120,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.719120,0.000000,0.694886,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 500;16;-0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 510;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 517;16;-0.003801,0.000000,-0.999993,0.000000,-0.000000,1.000000,0.000000,0.000000,0.999993,0.000000,-0.003801,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 525;16;-0.004367,-0.000000,-0.999990,0.000000,-0.000000,1.000000,0.000000,0.000000,0.999990,0.000000,-0.004367,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 540;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 600;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 607;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 615;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 650;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 655;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 665;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 670;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 680;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 700;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 715;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 720;16;0.001871,0.000000,-0.999998,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999998,0.000000,0.001871,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 725;16;0.003402,0.000000,-0.999994,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.999994,0.000000,0.003402,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 735;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1000;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1010;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1020;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1030;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1050;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1100;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1110;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1150;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1200;16;-0.422618,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422618,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1210;16;-0.422617,0.000000,-0.906308,0.000000,-0.000000,1.000000,0.000000,0.000000,0.906308,0.000000,-0.422617,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1220;16;-0.132257,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132257,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1230;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1235;16;-0.128223,-0.000000,-0.991745,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991745,0.000000,-0.128223,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1250;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1500;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1510;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1523;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1530;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1532;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1536;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1550;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1560;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1600;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1620;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1630;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1632;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1636;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1650;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1700;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1725;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1730;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1732;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1736;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1750;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 1760;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2000;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2015;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2020;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2022;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2025;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2050;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2060;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2065;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2070;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2071;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2072;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2075;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2100;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2115;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2120;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2121;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2122;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2125;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2200;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2220;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2230;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2235;16;-0.132256,0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2260;16;-0.132256,-0.000000,-0.991216,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991216,0.000000,-0.132256,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2400;16;-0.041181,0.000000,-0.999152,0.000000,-0.000000,1.000000,0.000000,0.000000,0.999152,0.000000,-0.041181,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2420;16;0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2430;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2435;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2460;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2490;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2500;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2510;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2530;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2535;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2560;16;0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2600;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2630;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2635;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2640;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2650;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2700;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2730;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2735;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2740;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2755;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2800;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2830;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2835;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2850;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2900;16;0.000000,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2910;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2930;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2932;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 2935;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3100;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3104;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3110;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3116;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3120;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3124;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3128;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3132;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3150;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3154;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3160;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3166;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3170;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3174;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3178;16;0.000000,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3182;16;0.000001,-0.000000,-1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,1.000000,0.000000,0.000001,0.000000,0.000000,0.000000,1.350000,1.000000;;, + 3200;16;-0.132100,-0.000000,-0.991236,0.000000,-0.000000,1.000000,0.000000,0.000000,0.991236,0.000000,-0.132100,0.000000,0.000000,0.000000,1.350000,1.000000;;; + } + } + + Animation Animation28 { + { Frame29_R_Hand } + AnimationKey { + 4; + 129; + 0;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 5;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 10;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 50;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 54;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 60;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 66;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 78;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 103;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 108;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 112;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 120;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 124;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 128;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 470;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 500;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 510;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 517;16;0.976128,-0.000000,-0.217195,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.217195,0.000000,0.976128,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 525;16;0.976190,-0.000000,-0.216916,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.216916,0.000000,0.976190,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 540;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 600;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 607;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 615;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 650;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 655;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 665;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 670;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 680;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 700;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 715;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 720;16;0.975501,-0.000000,-0.219997,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219997,0.000000,0.975501,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 725;16;0.975330,-0.000000,-0.220753,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.220753,0.000000,0.975330,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 735;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1000;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1010;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1050;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1100;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1110;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1120;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1130;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1135;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1150;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1200;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1210;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1220;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1230;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1235;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1250;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1500;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1510;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1523;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1530;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1532;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1536;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1550;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1560;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1600;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1620;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1630;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1632;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1650;16;1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1700;16;0.805725,-0.292619,-0.514958,0.000000,0.466009,0.849827,0.246233,0.000000,0.365572,-0.438371,0.821089,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1725;16;0.805725,-0.292619,-0.514958,0.000000,0.466009,0.849826,0.246233,0.000000,0.365572,-0.438371,0.821089,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1730;16;0.805725,-0.292619,-0.514958,0.000000,0.466009,0.849826,0.246233,0.000000,0.365572,-0.438371,0.821089,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1732;16;0.805725,-0.292619,-0.514958,0.000000,0.466009,0.849826,0.246233,0.000000,0.365572,-0.438371,0.821089,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1736;16;0.805725,-0.292619,-0.514958,0.000000,0.466009,0.849826,0.246233,0.000000,0.365572,-0.438371,0.821089,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1750;16;0.805725,-0.292619,-0.514958,0.000000,0.466009,0.849826,0.246233,0.000000,0.365572,-0.438371,0.821089,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 1760;16;0.805725,-0.292619,-0.514958,0.000000,0.466009,0.849826,0.246233,0.000000,0.365572,-0.438371,0.821089,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.986578,-0.163290,0.000000,-0.000000,0.163290,0.986578,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.999986,0.005236,0.000000,-0.000000,-0.005236,0.999986,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2060;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.999986,0.005236,0.000000,0.000000,-0.005236,0.999986,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2065;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.999986,0.005236,0.000000,0.000000,-0.005236,0.999986,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2070;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.999986,0.005236,0.000000,0.000000,-0.005236,0.999986,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2071;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.999986,0.005236,0.000000,0.000000,-0.005236,0.999986,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2072;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.999986,0.005236,0.000000,-0.000000,-0.005236,0.999986,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2075;16;1.000000,0.000001,-0.000003,0.000000,-0.000001,0.999986,0.005237,0.000000,0.000003,-0.005237,0.999986,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2100;16;0.608337,0.196423,-0.768989,0.000000,0.080947,0.948485,0.306307,0.000000,0.789540,-0.248586,0.561099,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2115;16;0.608337,0.196423,-0.768989,0.000000,0.080947,0.948485,0.306307,0.000000,0.789540,-0.248586,0.561099,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2120;16;0.608338,0.196422,-0.768989,0.000000,0.080949,0.948484,0.306309,0.000000,0.789539,-0.248588,0.561098,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2121;16;0.641244,0.181333,-0.745603,0.000000,0.239849,0.875623,0.419233,0.000000,0.728888,-0.447663,0.517996,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2122;16;0.608336,0.196423,-0.768990,0.000000,0.080943,0.948486,0.306304,0.000000,0.789541,-0.248581,0.561100,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2125;16;0.608337,0.196423,-0.768989,0.000000,0.080948,0.948485,0.306308,0.000000,0.789540,-0.248586,0.561098,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2200;16;1.000000,0.000000,-0.000001,0.000000,-0.000000,0.952662,-0.304033,0.000000,0.000001,0.304033,0.952662,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2220;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.952661,-0.304033,0.000000,0.000000,0.304033,0.952661,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2230;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.952661,-0.304033,0.000000,0.000000,0.304033,0.952661,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2235;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.952661,-0.304033,0.000000,0.000000,0.304033,0.952661,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2260;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.952661,-0.304033,0.000000,-0.000000,0.304033,0.952661,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2400;16;0.988429,-0.000000,-0.151687,0.000000,-0.014530,0.995402,-0.094680,0.000000,0.150990,0.095788,0.983883,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2420;16;0.975708,-0.000000,-0.219073,0.000000,0.000000,1.000000,0.000000,0.000000,0.219073,-0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2430;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2435;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2460;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2490;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2500;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2510;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2530;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2535;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2560;16;0.975708,0.000000,-0.219073,0.000000,0.000000,1.000000,0.000000,0.000000,0.219073,-0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2600;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2630;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2635;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2640;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2650;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2700;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2730;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2735;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2740;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2755;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2800;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2830;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2835;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2850;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2900;16;0.975708,-0.000000,-0.219073,0.000000,0.039547,0.983571,0.176134,0.000000,0.215474,-0.180520,0.959679,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2910;16;0.975708,0.000000,-0.219073,0.000000,0.039547,0.983571,0.176134,0.000000,0.215474,-0.180519,0.959679,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2930;16;0.975708,-0.000000,-0.219073,0.000000,0.039547,0.983571,0.176134,0.000000,0.215474,-0.180519,0.959679,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2932;16;0.975708,0.000000,-0.219073,0.000000,0.039657,0.983479,0.176626,0.000000,0.215454,-0.181023,0.959589,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 2935;16;0.975708,0.000000,-0.219073,0.000000,0.039547,0.983571,0.176134,0.000000,0.215474,-0.180519,0.959679,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3100;16;0.975708,-0.000000,-0.219073,0.000000,0.000000,1.000000,0.000000,0.000000,0.219073,-0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3104;16;0.975708,0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3110;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3116;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3128;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3150;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3154;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3160;16;0.975708,-0.000000,-0.219073,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219073,0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3166;16;0.975708,-0.000000,-0.219073,0.000000,0.000000,1.000000,0.000000,0.000000,0.219073,-0.000000,0.975708,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3178;16;0.975709,-0.000000,-0.219072,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.219072,0.000000,0.975709,0.000000,0.000000,0.000000,2.000000,1.000000;;, + 3200;16;1.000000,-0.000000,-0.000263,0.000000,-0.000039,0.988891,-0.148643,0.000000,0.000260,0.148643,0.988891,0.000000,0.000000,0.000000,2.000000,1.000000;;; + } + } + + Animation Animation29 { + { Frame30_R_Kosi_Momo } + AnimationKey { + 4; + 170; + 0;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 5;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 10;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 50;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 54;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 60;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 66;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 70;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 74;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 78;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 82;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 100;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 103;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 108;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 112;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 116;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 120;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 124;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 128;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 132;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 150;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 152;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 160;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 180;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 200;16;0.070809,0.143153,0.987164,0.000000,0.281496,0.946556,-0.157456,0.000000,-0.956946,0.289032,0.026728,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 202;16;0.070809,0.143153,0.987164,0.000000,0.281495,0.946556,-0.157456,0.000000,-0.956946,0.289032,0.026728,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 210;16;0.070809,0.143153,0.987164,0.000000,0.281495,0.946556,-0.157456,0.000000,-0.956946,0.289032,0.026728,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 230;16;0.070809,0.143153,0.987164,0.000000,0.281495,0.946556,-0.157456,0.000000,-0.956946,0.289032,0.026728,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 250;16;0.070809,0.143153,0.987164,0.000000,0.281495,0.946556,-0.157456,0.000000,-0.956946,0.289032,0.026728,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 252;16;0.070809,0.143153,0.987164,0.000000,0.281495,0.946556,-0.157456,0.000000,-0.956946,0.289032,0.026728,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 260;16;0.070809,0.143153,0.987164,0.000000,0.281495,0.946556,-0.157456,0.000000,-0.956946,0.289032,0.026728,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 280;16;0.070809,0.143153,0.987164,0.000000,0.281495,0.946556,-0.157456,0.000000,-0.956946,0.289032,0.026728,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 300;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 302;16;-0.000000,0.000000,1.000000,0.000000,-0.000000,1.000000,-0.000000,0.000000,-1.000000,-0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 310;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 330;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 350;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 360;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 400;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 420;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 430;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 440;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 455;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 470;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 500;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 510;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 517;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 525;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 540;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 600;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 607;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 615;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 650;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 655;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 665;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 670;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 680;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 700;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 715;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 720;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 725;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 735;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1000;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1010;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1020;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1030;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1050;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1100;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1110;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1120;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1130;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1135;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1150;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1200;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1210;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1220;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1230;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1235;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1250;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1500;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1510;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1523;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1530;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1532;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1536;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1550;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1560;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1600;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1620;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1630;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1632;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1636;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1650;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1700;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1725;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1730;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1732;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1736;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1750;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 1760;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2000;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2015;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2020;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2022;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2025;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2050;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2060;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2065;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2070;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2071;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2072;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2075;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2100;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2115;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2120;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2121;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2122;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2125;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2200;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2220;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2230;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2235;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2260;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2400;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2420;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2430;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2435;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2460;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2490;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2500;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2510;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2530;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2535;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2560;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2600;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2630;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2635;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2640;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2650;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2700;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2730;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2735;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2740;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2755;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2800;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2830;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2835;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2850;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2900;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2910;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2930;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2932;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 2935;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3100;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3104;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3110;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3116;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3120;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3124;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3128;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3132;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3150;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3154;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3160;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3166;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3170;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3174;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3178;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3182;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;, + 3200;16;-0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.650000,1.000000;;; + } + } + + Animation Animation30 { + { Frame31_R_momo } + AnimationKey { + 4; + 171; + 0;16;0.000000,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 5;16;0.240268,-0.172987,-0.955168,0.000000,0.127850,0.981060,-0.145516,0.000000,0.962250,-0.087156,0.257834,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 10;16;0.232988,-0.284231,-0.930016,0.000000,0.567733,0.816201,-0.107218,0.000000,0.789554,-0.503020,0.351532,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 50;16;0.049630,0.023515,-0.998491,0.000000,0.996565,-0.067525,0.047944,0.000000,-0.066295,-0.997440,-0.026785,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 54;16;-0.036130,-0.030323,-0.998887,0.000000,0.523708,0.850721,-0.044768,0.000000,0.851132,-0.524742,-0.014857,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 60;16;0.095537,-0.036741,-0.994748,0.000000,-0.244870,0.967743,-0.059262,0.000000,0.964837,0.249245,0.083459,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 66;16;0.034121,0.001562,-0.999416,0.000000,-0.445983,0.894935,-0.013828,0.000000,0.894391,0.446194,0.031233,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 70;16;-0.016642,0.014032,-0.999763,0.000000,0.999018,-0.040821,-0.017203,0.000000,-0.041053,-0.999068,-0.013339,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 74;16;-0.044461,-0.060406,-0.997183,0.000000,0.978457,0.198803,-0.055669,0.000000,0.201606,-0.978176,0.050266,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 78;16;0.002039,-0.016277,-0.999865,0.000000,0.998822,0.048514,0.001247,0.000000,0.048487,-0.998690,0.016356,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 82;16;0.049630,0.023515,-0.998491,0.000000,0.996565,-0.067525,0.047944,0.000000,-0.066295,-0.997440,-0.026785,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 100;16;0.040133,-0.044777,-0.998191,0.000000,0.822336,0.568951,0.007540,0.000000,0.567584,-0.821151,0.059656,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 103;16;0.043027,-0.041673,-0.998204,0.000000,0.577026,0.816674,-0.009223,0.000000,0.815592,-0.575593,0.059185,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 108;16;0.038073,-0.020394,-0.999067,0.000000,-0.220877,0.974890,-0.028318,0.000000,0.974558,0.221749,0.032613,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 112;16;0.008368,-0.000778,-0.999965,0.000000,-0.748509,0.663090,-0.006780,0.000000,0.663072,0.748540,0.004966,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 116;16;-0.004665,0.002377,-0.999986,0.000000,-0.890993,0.453987,0.005236,0.000000,0.453994,0.891005,-0.000000,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 120;16;-0.023299,0.019841,-0.999532,0.000000,-0.587135,0.808943,0.029743,0.000000,0.809154,0.587553,-0.007198,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 124;16;-0.026184,0.052454,-0.998280,0.000000,-0.034381,0.997984,0.053340,0.000000,0.999066,0.035718,-0.024328,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 128;16;0.013255,0.046963,-0.998809,0.000000,0.520413,0.852620,0.046996,0.000000,0.853812,-0.520416,-0.013139,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 132;16;0.057547,-0.044777,-0.997338,0.000000,0.822080,0.568952,0.021891,0.000000,0.566457,-0.821151,0.069552,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 150;16;-0.009149,-0.196178,-0.980526,0.000000,0.998329,-0.057739,0.002237,0.000000,-0.057053,-0.978867,0.196378,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 152;16;-0.009149,-0.196178,-0.980526,0.000000,0.998329,-0.057739,0.002237,0.000000,-0.057053,-0.978867,0.196378,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 160;16;0.174958,-0.265741,-0.948035,0.000000,0.973663,0.189664,0.126524,0.000000,0.146185,-0.945203,0.291926,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 180;16;0.322277,-0.412713,-0.851942,0.000000,0.946614,0.147773,0.286503,0.000000,0.007651,-0.898794,0.438304,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 200;16;0.062829,0.130106,-0.989507,0.000000,0.985198,-0.166528,0.040659,0.000000,-0.159491,-0.977415,-0.138643,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 202;16;0.062829,0.130106,-0.989507,0.000000,0.985198,-0.166528,0.040659,0.000000,-0.159491,-0.977415,-0.138643,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 210;16;-0.023030,-0.059404,-0.997968,0.000000,0.998621,0.045747,-0.025768,0.000000,0.047185,-0.997185,0.058269,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 230;16;0.450881,-0.005285,-0.892569,0.000000,0.892583,0.004562,0.450861,0.000000,0.001689,-0.999976,0.006774,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 250;16;0.342008,0.076259,-0.936598,0.000000,0.196101,0.968965,0.150502,0.000000,0.919008,-0.235140,0.316439,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 252;16;0.342008,0.076258,-0.936598,0.000000,0.196101,0.968965,0.150502,0.000000,0.919007,-0.235141,0.316440,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 260;16;0.342008,0.076258,-0.936598,0.000000,0.196101,0.968965,0.150502,0.000000,0.919007,-0.235141,0.316440,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 280;16;0.342008,0.076258,-0.936598,0.000000,0.196102,0.968965,0.150502,0.000000,0.919007,-0.235141,0.316440,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 300;16;0.281165,0.051732,-0.958264,0.000000,0.699728,0.672316,0.241603,0.000000,0.656755,-0.738455,0.152833,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 302;16;0.281165,0.051732,-0.958264,0.000000,0.699728,0.672316,0.241603,0.000000,0.656754,-0.738455,0.152833,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 310;16;0.274116,0.058684,-0.959904,0.000000,0.608122,0.762668,0.220285,0.000000,0.745016,-0.644123,0.173372,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 330;16;0.274116,0.058684,-0.959904,0.000000,0.608122,0.762668,0.220285,0.000000,0.745016,-0.644123,0.173372,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 350;16;0.283393,-0.287637,-0.914851,0.000000,0.956059,0.159440,0.246029,0.000000,0.075097,-0.944375,0.320182,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 360;16;0.283393,-0.287637,-0.914852,0.000000,0.956059,0.159440,0.246029,0.000000,0.075096,-0.944375,0.320182,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 380;16;0.110081,-0.286971,-0.951593,0.000000,0.970946,0.235721,0.041233,0.000000,0.212478,-0.928484,0.304582,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 400;16;0.110081,-0.286971,-0.951593,0.000000,0.970946,0.235721,0.041233,0.000000,0.212478,-0.928484,0.304582,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 420;16;0.110081,-0.286971,-0.951593,0.000000,0.970946,0.235721,0.041233,0.000000,0.212478,-0.928484,0.304582,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 430;16;0.117810,-0.318675,-0.940514,0.000000,0.964597,0.261763,0.032133,0.000000,0.235952,-0.911003,0.338232,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 440;16;0.119493,-0.325098,-0.938101,0.000000,0.963214,0.267038,0.030150,0.000000,0.240707,-0.907195,0.345048,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 455;16;0.313640,-0.164331,-0.935214,0.000000,0.768111,0.622945,0.148139,0.000000,0.558243,-0.764811,0.321604,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 470;16;0.316035,-0.157087,-0.935652,0.000000,0.761643,0.630042,0.151482,0.000000,0.565704,-0.760507,0.318760,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 500;16;0.232988,-0.284231,-0.930016,0.000000,0.567732,0.816201,-0.107219,0.000000,0.789555,-0.503019,0.351532,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 510;16;0.291456,-0.011436,-0.956516,0.000000,-0.333466,0.935990,-0.112800,0.000000,0.896579,0.351842,0.268986,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 517;16;0.294230,0.012688,-0.955650,0.000000,0.776266,0.580128,0.246703,0.000000,0.557529,-0.814427,0.160842,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 525;16;0.276312,-0.005273,-0.961054,0.000000,0.918223,0.296695,0.262370,0.000000,0.283756,-0.954958,0.086822,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 540;16;0.232988,-0.284231,-0.930016,0.000000,0.567733,0.816201,-0.107218,0.000000,0.789554,-0.503020,0.351532,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 600;16;0.232988,-0.284231,-0.930016,0.000000,0.567733,0.816201,-0.107218,0.000000,0.789554,-0.503020,0.351532,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 607;16;0.291456,-0.011436,-0.956516,0.000000,-0.333466,0.935989,-0.112800,0.000000,0.896579,0.351842,0.268986,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 615;16;0.280231,-0.009705,-0.959884,0.000000,0.585225,0.794355,0.162821,0.000000,0.760908,-0.607376,0.228283,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 650;16;0.388664,-0.203304,-0.898670,0.000000,0.721816,0.673374,0.159841,0.000000,0.572645,-0.710799,0.408464,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 655;16;0.351301,-0.030055,-0.935780,0.000000,0.282387,0.956341,0.075296,0.000000,0.892662,-0.290703,0.344451,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 665;16;0.336622,-0.087165,-0.937597,0.000000,0.252339,0.967639,0.000638,0.000000,0.907199,-0.236808,0.347724,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 670;16;0.351301,-0.030055,-0.935780,0.000000,0.282386,0.956341,0.075296,0.000000,0.892662,-0.290703,0.344451,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 680;16;0.351301,-0.030054,-0.935780,0.000000,0.282386,0.956341,0.075296,0.000000,0.892662,-0.290703,0.344451,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 700;16;0.351301,-0.030054,-0.935780,0.000000,0.282386,0.956341,0.075296,0.000000,0.892662,-0.290702,0.344451,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 715;16;0.152085,-0.287912,-0.945504,0.000000,0.876668,0.481065,-0.005475,0.000000,0.456425,-0.828060,0.325565,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 720;16;0.307142,-0.217915,-0.926379,0.000000,0.886486,0.419561,0.195220,0.000000,0.346131,-0.881182,0.322043,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 725;16;0.466837,-0.175582,-0.866738,0.000000,0.814952,0.465983,0.344547,0.000000,0.343389,-0.867197,0.360629,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 735;16;0.232988,-0.284231,-0.930016,0.000000,0.567733,0.816201,-0.107218,0.000000,0.789554,-0.503020,0.351532,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1000;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1010;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1020;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1030;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1050;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1100;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1110;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1120;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1130;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1135;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1150;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1200;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1210;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1220;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1230;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1235;16;0.167955,-0.466121,-0.868632,0.000000,0.923408,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1250;16;0.167955,-0.466121,-0.868632,0.000000,0.923407,0.382876,-0.026911,0.000000,0.345123,-0.797582,0.494726,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1500;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1510;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1523;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1530;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1532;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1536;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1550;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1560;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1600;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1620;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1630;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1632;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1636;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1650;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1700;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1725;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1730;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1732;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1736;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1750;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 1760;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2000;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2015;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2020;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2022;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2025;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2050;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2060;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2065;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2070;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2071;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2072;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2075;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2100;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2115;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2120;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2121;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2122;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2125;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2200;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2220;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2230;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2235;16;-0.004470,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058610,-0.791220,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2260;16;-0.004471,-0.609966,-0.792415,0.000000,0.998271,0.043722,-0.039287,0.000000,0.058609,-0.791221,0.608716,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2400;16;0.343117,-0.542300,-0.766930,0.000000,0.831955,0.554487,-0.019872,0.000000,0.436029,-0.631233,0.641423,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2420;16;0.194489,-0.678355,-0.708526,0.000000,0.681541,0.612940,-0.399757,0.000000,0.705461,-0.405141,0.581537,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2430;16;0.194489,-0.678354,-0.708526,0.000000,0.681542,0.612940,-0.399756,0.000000,0.705461,-0.405142,0.581537,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2435;16;0.387689,-0.454059,-0.802202,0.000000,0.512913,0.829359,-0.221550,0.000000,0.765910,-0.325567,0.554426,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2460;16;0.352328,-0.454060,-0.818349,0.000000,0.502761,0.829358,-0.243713,0.000000,0.789365,-0.325567,0.520490,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2490;16;0.482365,-0.229143,-0.845469,0.000000,0.833012,0.418538,0.361824,0.000000,0.270952,-0.878817,0.392767,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2500;16;0.482365,-0.229143,-0.845469,0.000000,0.833012,0.418538,0.361824,0.000000,0.270952,-0.878817,0.392767,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2510;16;0.482365,-0.229143,-0.845469,0.000000,0.833012,0.418538,0.361824,0.000000,0.270952,-0.878817,0.392767,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2530;16;0.482366,-0.229142,-0.845469,0.000000,0.833012,0.418536,0.361826,0.000000,0.270950,-0.878818,0.392766,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2535;16;0.387688,-0.454060,-0.802201,0.000000,0.512913,0.829358,-0.221550,0.000000,0.765910,-0.325567,0.554426,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2560;16;0.388763,-0.466160,-0.794706,0.000000,0.441061,0.851461,-0.283689,0.000000,0.808906,-0.240226,0.536621,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2600;16;0.145488,-0.404205,-0.903024,0.000000,0.980061,0.183729,0.075660,0.000000,0.135329,-0.896026,0.422875,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2630;16;0.145488,-0.404205,-0.903024,0.000000,0.980061,0.183730,0.075660,0.000000,0.135330,-0.896026,0.422876,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2635;16;0.218220,-0.259283,-0.940825,0.000000,0.956844,0.246428,0.154022,0.000000,0.191911,-0.933834,0.301869,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2640;16;0.169166,-0.362248,-0.916602,0.000000,0.972904,0.210099,0.096524,0.000000,0.157611,-0.908094,0.387974,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2650;16;0.145488,-0.404205,-0.903023,0.000000,0.980061,0.183729,0.075660,0.000000,0.135330,-0.896025,0.422876,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2700;16;0.145488,-0.404205,-0.903023,0.000000,0.980061,0.183729,0.075660,0.000000,0.135330,-0.896025,0.422876,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2730;16;0.145488,-0.404205,-0.903023,0.000000,0.980061,0.183729,0.075660,0.000000,0.135330,-0.896025,0.422876,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2735;16;0.218220,-0.259282,-0.940826,0.000000,0.956844,0.246428,0.154022,0.000000,0.191911,-0.933834,0.301868,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2740;16;0.169166,-0.362247,-0.916602,0.000000,0.972904,0.210099,0.096524,0.000000,0.157612,-0.908094,0.387973,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2755;16;0.145488,-0.404205,-0.903024,0.000000,0.980061,0.183729,0.075660,0.000000,0.135330,-0.896026,0.422876,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2800;16;0.413802,-0.342177,-0.843613,0.000000,0.808676,0.563753,0.168002,0.000000,0.418103,-0.751729,0.509993,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2830;16;0.413803,-0.342177,-0.843613,0.000000,0.808676,0.563754,0.168002,0.000000,0.418103,-0.751729,0.509993,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2835;16;0.413803,-0.342177,-0.843613,0.000000,0.808676,0.563754,0.168002,0.000000,0.418103,-0.751729,0.509993,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2850;16;0.413803,-0.342177,-0.843613,0.000000,0.808676,0.563754,0.168002,0.000000,0.418103,-0.751729,0.509993,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2900;16;0.419922,-0.386198,-0.821290,0.000000,0.635447,0.771221,-0.037753,0.000000,0.647976,-0.506033,0.569261,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2910;16;0.419922,-0.386198,-0.821290,0.000000,0.635447,0.771221,-0.037753,0.000000,0.647976,-0.506033,0.569261,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2930;16;0.419922,-0.386198,-0.821290,0.000000,0.635447,0.771221,-0.037753,0.000000,0.647976,-0.506033,0.569261,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2932;16;0.421382,-0.387189,-0.820074,0.000000,0.633818,0.772496,-0.039048,0.000000,0.648623,-0.503323,0.570924,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 2935;16;0.419922,-0.386199,-0.821289,0.000000,0.635447,0.771221,-0.037753,0.000000,0.647976,-0.506033,0.569261,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3100;16;0.049631,0.023515,-0.998491,0.000000,0.996565,-0.067525,0.047945,0.000000,-0.066295,-0.997440,-0.026785,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3104;16;-0.036129,-0.030325,-0.998887,0.000000,0.523724,0.850711,-0.044769,0.000000,0.851122,-0.524758,-0.014854,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3110;16;0.095539,-0.036740,-0.994747,0.000000,-0.244886,0.967739,-0.059263,0.000000,0.964833,0.249262,0.083459,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3116;16;0.034118,0.001565,-0.999417,0.000000,-0.445999,0.894926,-0.013824,0.000000,0.894383,0.446211,0.031231,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3120;16;-0.016642,0.014032,-0.999763,0.000000,0.999018,-0.040821,-0.017203,0.000000,-0.041053,-0.999068,-0.013339,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3124;16;-0.044461,-0.060407,-0.997183,0.000000,0.978457,0.198804,-0.055669,0.000000,0.201607,-0.978176,0.050266,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3128;16;0.002037,-0.016278,-0.999865,0.000000,0.998822,0.048517,0.001245,0.000000,0.048490,-0.998690,0.016357,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3132;16;0.049630,0.023515,-0.998491,0.000000,0.996565,-0.067525,0.047944,0.000000,-0.066295,-0.997440,-0.026785,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3150;16;0.049630,0.023515,-0.998491,0.000000,0.996565,-0.067525,0.047944,0.000000,-0.066295,-0.997440,-0.026785,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3154;16;-0.036131,-0.030321,-0.998887,0.000000,0.523691,0.850731,-0.044766,0.000000,0.851142,-0.524726,-0.014859,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3160;16;0.095536,-0.036742,-0.994748,0.000000,-0.244853,0.967747,-0.059261,0.000000,0.964842,0.249229,0.083458,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3166;16;0.034125,0.001559,-0.999416,0.000000,-0.445966,0.894943,-0.013831,0.000000,0.894399,0.446178,0.031235,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3170;16;-0.016644,0.014047,-0.999763,0.000000,0.999017,-0.040864,-0.017205,0.000000,-0.041096,-0.999066,-0.013353,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3174;16;-0.044461,-0.060406,-0.997183,0.000000,0.978457,0.198803,-0.055669,0.000000,0.201606,-0.978176,0.050266,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3178;16;0.002040,-0.016276,-0.999865,0.000000,0.998822,0.048511,0.001248,0.000000,0.048484,-0.998690,0.016355,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3182;16;0.049629,0.023516,-0.998491,0.000000,0.996565,-0.067528,0.047943,0.000000,-0.066298,-0.997440,-0.026786,0.000000,0.000000,-0.000000,1.650000,1.000000;;, + 3200;16;0.413803,-0.342177,-0.843613,0.000000,0.808676,0.563754,0.168002,0.000000,0.418103,-0.751729,0.509993,0.000000,0.000000,-0.000000,1.650000,1.000000;;; + } + } + + Animation Animation31 { + { Frame32_R_Hiza } + AnimationKey { + 4; + 170; + 0;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 5;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 10;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 50;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 54;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.985718,-0.168402,0.000000,0.000000,0.168402,0.985718,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 60;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999934,-0.011513,0.000000,0.000000,0.011513,0.999934,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 66;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.997684,0.068015,0.000000,0.000000,-0.068015,0.997684,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 70;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.966980,-0.254853,0.000000,0.000000,0.254853,0.966980,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 74;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.972168,-0.234284,0.000000,0.000000,0.234284,0.972168,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 78;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.965199,-0.261518,0.000000,0.000000,0.261518,0.965199,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 82;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 100;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.983320,0.181885,0.000000,0.000000,-0.181885,0.983320,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 103;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.971095,0.238694,0.000000,0.000000,-0.238694,0.971095,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 108;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.948686,0.316219,0.000000,0.000000,-0.316219,0.948686,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 112;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.929586,0.368606,0.000000,0.000000,-0.368606,0.929586,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 116;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.922001,0.387187,0.000000,0.000000,-0.387187,0.922001,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 120;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.937072,0.349136,0.000000,0.000000,-0.349136,0.937072,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 124;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.953244,0.302203,0.000000,0.000000,-0.302203,0.953244,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 128;16;1.000000,0.000000,-0.000000,0.000000,0.000000,0.968274,0.249891,0.000000,0.000000,-0.249891,0.968274,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 132;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.983320,0.181885,0.000000,0.000000,-0.181885,0.983320,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 150;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 152;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 160;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.960900,-0.276895,0.000000,0.000000,0.276895,0.960900,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 180;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 200;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 202;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 210;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 230;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 250;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 252;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 260;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 280;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 300;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 302;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 310;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 330;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 350;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 360;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 400;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 420;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 430;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.866810,-0.498639,0.000000,-0.000000,0.498639,0.866810,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 440;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.849875,-0.526984,0.000000,-0.000000,0.526984,0.849875,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 455;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.935988,-0.352032,0.000000,-0.000000,0.352032,0.935988,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 470;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.937668,-0.347533,0.000000,-0.000000,0.347533,0.937668,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 500;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 510;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 517;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.965883,-0.258981,0.000000,0.000000,0.258981,0.965883,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 525;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.965809,-0.259255,0.000000,0.000000,0.259255,0.965809,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 540;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 600;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 607;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 615;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 650;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 655;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 665;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 670;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 680;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 700;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 715;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 720;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.966618,-0.256223,0.000000,0.000000,0.256223,0.966618,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 725;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.966815,-0.255478,0.000000,0.000000,0.255478,0.966815,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 735;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1000;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,-0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1010;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,-0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1020;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1030;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1110;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1130;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1135;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1150;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1210;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1220;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1250;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887188,-0.461408,0.000000,0.000000,0.461408,0.887188,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2015;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2020;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2022;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2025;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.812307,-0.583230,0.000000,0.000000,0.583230,0.812307,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2400;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.859383,-0.511332,0.000000,0.000000,0.511332,0.859383,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2420;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257132,0.000000,0.000000,0.257132,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2430;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2435;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2460;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2490;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887011,-0.461749,0.000000,0.000000,0.461749,0.887011,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2500;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887011,-0.461749,0.000000,-0.000000,0.461749,0.887011,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2510;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887011,-0.461749,0.000000,-0.000000,0.461749,0.887011,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2530;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.887010,-0.461749,0.000000,-0.000000,0.461749,0.887010,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2535;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2560;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.972825,-0.231544,0.000000,0.000000,0.231544,0.972825,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2600;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582854,0.000000,0.000000,0.582854,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2630;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2635;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2640;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2650;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2700;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2730;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2735;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2740;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2755;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2800;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2830;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2835;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2850;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.790155,-0.612907,0.000000,-0.000000,0.612907,0.790155,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.790155,-0.612907,0.000000,0.000000,0.612907,0.790155,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2930;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.790155,-0.612907,0.000000,-0.000000,0.612907,0.790155,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2932;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.789463,-0.613798,0.000000,-0.000000,0.613798,0.789463,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 2935;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.790155,-0.612907,0.000000,-0.000000,0.612907,0.790155,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3100;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3104;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.985718,-0.168404,0.000000,0.000000,0.168404,0.985718,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3110;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999934,-0.011509,0.000000,0.000000,0.011509,0.999934,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3116;16;1.000000,-0.000000,0.000000,0.000000,-0.000000,0.997684,0.068018,0.000000,-0.000000,-0.068018,0.997684,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3120;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966980,-0.254853,0.000000,0.000000,0.254853,0.966980,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3124;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.972168,-0.234284,0.000000,0.000000,0.234284,0.972168,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3128;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.965199,-0.261518,0.000000,0.000000,0.261518,0.965199,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3132;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3150;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966376,-0.257133,0.000000,0.000000,0.257133,0.966376,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3154;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.985719,-0.168399,0.000000,0.000000,0.168399,0.985719,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3160;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.999934,-0.011517,0.000000,0.000000,0.011517,0.999934,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3166;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.997684,0.068013,0.000000,0.000000,-0.068013,0.997684,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3170;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.966978,-0.254861,0.000000,0.000000,0.254861,0.966978,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3174;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.972168,-0.234284,0.000000,0.000000,0.234284,0.972168,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3178;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.965199,-0.261518,0.000000,0.000000,0.261518,0.965199,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3182;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.966377,-0.257131,0.000000,0.000000,0.257131,0.966377,0.000000,0.000000,-0.000000,1.400000,1.000000;;, + 3200;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.812577,-0.582853,0.000000,0.000000,0.582853,0.812577,0.000000,0.000000,-0.000000,1.400000,1.000000;;; + } + } + + Animation Animation32 { + { Frame33_R_Sune } + AnimationKey { + 4; + 171; + 0;16;1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,-0.000000,0.996917,0.078459,0.000000,0.000000,-0.078459,0.996917,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 10;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 50;16;0.997185,-0.000000,0.074979,0.000000,0.063516,0.531398,-0.844738,0.000000,-0.039844,0.847122,0.529902,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 54;16;0.997055,-0.000000,0.076690,0.000000,0.040876,0.846111,-0.531437,0.000000,-0.064888,0.533007,0.843619,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 60;16;0.999504,0.000000,0.031504,0.000000,0.009999,0.948301,-0.317215,0.000000,-0.029876,0.317373,0.947830,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 66;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.955639,-0.294541,0.000000,-0.000000,0.294541,0.955639,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 70;16;0.997187,0.000000,0.074959,0.000000,0.063009,0.541680,-0.838220,0.000000,-0.040604,0.840585,0.540156,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 74;16;0.997185,-0.000000,0.074976,0.000000,0.050475,0.739443,-0.671324,0.000000,-0.055441,0.673219,0.737362,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 78;16;0.997185,0.000000,0.074979,0.000000,0.056519,0.657104,-0.751678,0.000000,-0.049269,0.753800,0.655254,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 82;16;0.997185,0.000000,0.074979,0.000000,0.063516,0.531398,-0.844738,0.000000,-0.039844,0.847122,0.529902,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 100;16;0.997185,0.000000,0.074979,0.000000,0.072321,0.263871,-0.961843,0.000000,-0.019785,0.964558,0.263129,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 103;16;0.997185,-0.000000,0.074979,0.000000,0.067739,0.428708,-0.900900,0.000000,-0.032144,0.903443,0.427501,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 108;16;0.997185,-0.000000,0.074979,0.000000,0.042030,0.828115,-0.558980,0.000000,-0.062091,0.560558,0.825784,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 112;16;0.997185,-0.000000,0.074979,0.000000,0.014224,0.981841,-0.189173,0.000000,-0.073617,0.189707,0.979077,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 116;16;0.997185,-0.000000,0.074979,0.000000,0.001570,0.999781,-0.020885,0.000000,-0.074962,0.020944,0.996966,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 120;16;0.997185,0.000000,0.074979,0.000000,0.023426,0.949941,-0.311551,0.000000,-0.071225,0.312430,0.947267,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 124;16;0.997185,0.000000,0.074979,0.000000,0.047901,0.769323,-0.637062,0.000000,-0.057683,0.638860,0.767158,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 128;16;0.997185,0.000000,0.074979,0.000000,0.065390,0.489292,-0.869665,0.000000,-0.036686,0.872120,0.487915,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 132;16;0.997185,-0.000000,0.074979,0.000000,0.072321,0.263871,-0.961843,0.000000,-0.019785,0.964558,0.263129,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 150;16;0.997185,-0.000000,0.074979,0.000000,0.072783,0.240227,-0.967984,0.000000,-0.018012,0.970717,0.239551,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 152;16;0.997185,-0.000000,0.074979,0.000000,0.072783,0.240227,-0.967984,0.000000,-0.018012,0.970717,0.239551,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 160;16;0.997185,-0.000000,0.074979,0.000000,0.072803,0.239129,-0.968255,0.000000,-0.017930,0.970988,0.238456,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 180;16;0.997185,-0.000000,0.074979,0.000000,0.072783,0.240227,-0.967984,0.000000,-0.018012,0.970717,0.239551,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 200;16;0.997185,-0.000000,0.074979,0.000000,0.072783,0.240227,-0.967984,0.000000,-0.018012,0.970717,0.239551,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 202;16;0.997185,-0.000000,0.074979,0.000000,0.072783,0.240227,-0.967984,0.000000,-0.018012,0.970717,0.239551,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 210;16;0.997185,-0.000000,0.074979,0.000000,0.072783,0.240227,-0.967984,0.000000,-0.018012,0.970717,0.239551,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 230;16;0.997185,0.000000,0.074979,0.000000,0.072783,0.240227,-0.967984,0.000000,-0.018012,0.970717,0.239551,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 250;16;0.997185,0.000000,0.074979,0.000000,-0.001047,0.999903,0.013923,0.000000,-0.074971,-0.013962,0.997088,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 252;16;0.997185,0.000000,0.074979,0.000000,-0.001047,0.999903,0.013922,0.000000,-0.074971,-0.013962,0.997088,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 260;16;0.997185,0.000000,0.074979,0.000000,-0.001047,0.999903,0.013922,0.000000,-0.074971,-0.013962,0.997088,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 280;16;0.997185,0.000000,0.074979,0.000000,-0.001047,0.999903,0.013922,0.000000,-0.074971,-0.013961,0.997088,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 300;16;0.997185,-0.000000,0.074979,0.000000,0.072783,0.240227,-0.967984,0.000000,-0.018012,0.970717,0.239551,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 302;16;0.997185,-0.000000,0.074979,0.000000,0.072783,0.240226,-0.967985,0.000000,-0.018012,0.970717,0.239550,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 310;16;0.997185,0.000000,0.074979,0.000000,0.011729,0.987688,-0.155995,0.000000,-0.074056,0.156435,0.984908,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 330;16;0.997185,-0.000000,0.074979,0.000000,0.034853,0.885393,-0.463535,0.000000,-0.066386,0.464843,0.882901,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 350;16;0.997185,-0.000000,0.074979,0.000000,0.063930,0.522497,-0.850241,0.000000,-0.039176,0.852641,0.521027,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 360;16;0.997185,0.000000,0.074979,0.000000,0.063930,0.522497,-0.850241,0.000000,-0.039176,0.852641,0.521026,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 380;16;0.997185,0.000000,0.074979,0.000000,0.058352,0.627962,-0.776053,0.000000,-0.047084,0.778244,0.626195,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 400;16;0.997185,-0.000000,0.074979,0.000000,0.058352,0.627962,-0.776053,0.000000,-0.047084,0.778244,0.626195,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 420;16;0.997185,-0.000000,0.074979,0.000000,0.058352,0.627962,-0.776053,0.000000,-0.047084,0.778244,0.626195,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 430;16;0.997185,-0.000000,0.074979,0.000000,0.074774,-0.073844,-0.994463,0.000000,0.005537,0.997270,-0.073636,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 440;16;0.997185,-0.000000,0.074979,0.000000,0.074063,-0.155841,-0.985002,0.000000,0.011685,0.987782,-0.155402,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 455;16;0.997185,-0.000000,0.074979,0.000000,0.071192,0.313783,-0.946822,0.000000,-0.023527,0.949495,0.312899,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 470;16;0.997185,-0.000000,0.074979,0.000000,0.070822,0.328335,-0.941902,0.000000,-0.024618,0.944561,0.327411,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 500;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 510;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 517;16;1.000000,-0.000000,0.000654,0.000000,0.000480,0.678759,-0.734361,0.000000,-0.000444,0.734361,0.678759,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 525;16;1.000000,0.000000,0.000751,0.000000,0.000585,0.627988,-0.778223,0.000000,-0.000472,0.778223,0.627988,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 540;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 600;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 607;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 615;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 650;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 655;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 665;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 670;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 680;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 700;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 715;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.931056,-0.364877,0.000000,-0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 720;16;0.998848,-0.000000,-0.047978,0.000000,-0.033643,0.712943,-0.700415,0.000000,0.034206,0.701222,0.712122,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 725;16;0.996195,-0.000000,-0.087156,0.000000,-0.077962,0.447046,-0.891107,0.000000,0.038963,0.894511,0.445345,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 735;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1000;16;0.997185,-0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1010;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1020;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1030;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1050;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1100;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1110;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1120;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1130;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1135;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1150;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1200;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1210;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1220;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1230;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1235;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1250;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1500;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1510;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1523;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1530;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1532;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1536;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1550;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1560;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1600;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1620;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1630;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1632;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1636;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1650;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1700;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1725;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1730;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1732;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1736;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1750;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 1760;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2000;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2015;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2020;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2022;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2025;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2050;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2060;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2065;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2070;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2071;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2072;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2075;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2100;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2115;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2120;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2121;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2122;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2125;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2200;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2220;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2230;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2235;16;0.997185,0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658690,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2260;16;0.997185,-0.000000,0.074979,0.000000,0.049388,0.752414,-0.656836,0.000000,-0.056415,0.658691,0.750296,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2400;16;0.999728,-0.000000,0.023304,0.000000,0.010778,0.886617,-0.462380,0.000000,-0.020662,0.462505,0.886376,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2420;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2430;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2435;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2460;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2490;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.865151,-0.501511,0.000000,0.000000,0.501511,0.865151,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2500;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.865151,-0.501511,0.000000,0.000000,0.501511,0.865151,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2510;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.865151,-0.501511,0.000000,0.000000,0.501511,0.865151,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2530;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.865151,-0.501511,0.000000,0.000000,0.501511,0.865151,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2535;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2560;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.937549,-0.347852,0.000000,0.000000,0.347852,0.937549,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2600;16;0.997192,0.000000,0.074890,0.000000,0.049305,0.752699,-0.656516,0.000000,-0.056369,0.658365,0.750585,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2630;16;0.997192,0.000000,0.074890,0.000000,0.049305,0.752699,-0.656516,0.000000,-0.056369,0.658365,0.750585,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2635;16;0.997192,-0.000000,0.074890,0.000000,0.057432,0.641781,-0.764734,0.000000,-0.048063,0.766888,0.639979,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2640;16;0.997192,-0.000000,0.074890,0.000000,0.051850,0.721556,-0.690412,0.000000,-0.054037,0.692356,0.719530,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2650;16;0.997192,-0.000000,0.074890,0.000000,0.049305,0.752699,-0.656516,0.000000,-0.056369,0.658364,0.750586,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2700;16;0.997192,-0.000000,0.074890,0.000000,0.049305,0.752699,-0.656516,0.000000,-0.056369,0.658364,0.750586,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2730;16;0.997192,-0.000000,0.074890,0.000000,0.049305,0.752699,-0.656516,0.000000,-0.056369,0.658364,0.750586,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2735;16;0.997192,-0.000000,0.074890,0.000000,0.057432,0.641781,-0.764735,0.000000,-0.048063,0.766888,0.639978,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2740;16;0.997192,-0.000000,0.074890,0.000000,0.051850,0.721555,-0.690412,0.000000,-0.054037,0.692357,0.719529,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2755;16;0.997192,-0.000000,0.074890,0.000000,0.049305,0.752699,-0.656516,0.000000,-0.056369,0.658365,0.750585,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2800;16;0.998038,0.027508,0.056245,0.000000,-0.017404,0.984799,-0.172822,0.000000,-0.060144,0.171504,0.983346,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2830;16;0.998038,0.027508,0.056245,0.000000,-0.017404,0.984799,-0.172822,0.000000,-0.060144,0.171504,0.983346,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2835;16;0.998038,0.027508,0.056245,0.000000,-0.017404,0.984799,-0.172822,0.000000,-0.060144,0.171504,0.983346,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2850;16;0.998038,0.027508,0.056245,0.000000,-0.017404,0.984799,-0.172822,0.000000,-0.060144,0.171504,0.983346,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2900;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2910;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2930;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2932;16;1.000000,0.000000,-0.000212,0.000000,-0.000077,0.931711,-0.363202,0.000000,0.000197,0.363202,0.931711,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 2935;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.931056,-0.364877,0.000000,0.000000,0.364877,0.931056,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3100;16;0.997185,-0.000000,0.074979,0.000000,0.063516,0.531398,-0.844738,0.000000,-0.039844,0.847122,0.529902,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3104;16;0.997055,-0.000000,0.076690,0.000000,0.040877,0.846107,-0.531443,0.000000,-0.064888,0.533013,0.843615,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3110;16;0.999504,0.000000,0.031503,0.000000,0.009998,0.948302,-0.317211,0.000000,-0.029874,0.317369,0.947832,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3116;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.955641,-0.294534,0.000000,0.000000,0.294534,0.955641,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3120;16;0.997187,-0.000000,0.074959,0.000000,0.063009,0.541680,-0.838220,0.000000,-0.040604,0.840585,0.540156,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3124;16;0.997185,0.000000,0.074976,0.000000,0.050475,0.739445,-0.671323,0.000000,-0.055441,0.673217,0.737363,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3128;16;0.997185,-0.000000,0.074979,0.000000,0.056519,0.657106,-0.751676,0.000000,-0.049269,0.753798,0.655257,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3132;16;0.997185,0.000000,0.074979,0.000000,0.063516,0.531398,-0.844738,0.000000,-0.039844,0.847122,0.529902,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3150;16;0.997185,0.000000,0.074979,0.000000,0.063516,0.531398,-0.844738,0.000000,-0.039844,0.847122,0.529902,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3154;16;0.997055,0.000000,0.076690,0.000000,0.040876,0.846115,-0.531431,0.000000,-0.064888,0.533001,0.843623,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3160;16;0.999504,-0.000000,0.031506,0.000000,0.009999,0.948299,-0.317219,0.000000,-0.029877,0.317377,0.947829,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3166;16;1.000000,-0.000000,0.000000,0.000000,0.000000,0.955637,-0.294547,0.000000,-0.000000,0.294547,0.955637,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3170;16;0.997186,0.000000,0.074961,0.000000,0.063011,0.541670,-0.838226,0.000000,-0.040604,0.840591,0.540146,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3174;16;0.997185,0.000000,0.074976,0.000000,0.050475,0.739443,-0.671324,0.000000,-0.055441,0.673219,0.737362,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3178;16;0.997185,0.000000,0.074979,0.000000,0.056519,0.657101,-0.751681,0.000000,-0.049269,0.753802,0.655252,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3182;16;0.997185,-0.000000,0.074979,0.000000,0.063516,0.531395,-0.844739,0.000000,-0.039843,0.847124,0.529900,0.000000,0.000000,0.000000,0.800000,1.000000;;, + 3200;16;0.998038,0.027508,0.056245,0.000000,-0.017404,0.984799,-0.172822,0.000000,-0.060144,0.171504,0.983346,0.000000,0.000000,0.000000,0.800000,1.000000;;; + } + } + + Animation Animation33 { + { Frame34_R_Kakato } + AnimationKey { + 4; + 176; + 0;16;-0.000000,-1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 5;16;0.073850,-0.972274,-0.221879,0.000000,0.972620,0.119380,-0.199397,0.000000,0.220356,-0.201078,0.954469,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 10;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302369,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 50;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 54;16;0.035338,-0.994742,0.096119,0.000000,0.998062,0.030198,-0.054408,0.000000,0.051219,0.097856,0.993882,0.000000,0.000000,0.000000,2.549442,1.000000;;, + 60;16;0.028760,-0.999267,-0.025260,0.000000,0.998135,0.030070,-0.053118,0.000000,0.053838,-0.023686,0.998269,0.000000,0.000000,0.000000,2.722465,1.000000;;, + 66;16;0.019428,-0.983762,-0.178421,0.000000,0.998205,0.029197,-0.052294,0.000000,0.056654,-0.177085,0.982564,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 68;16;0.021230,-0.988938,-0.146802,0.000000,0.998147,0.029342,-0.053315,0.000000,0.057032,-0.145398,0.987728,0.000000,0.000000,0.000000,2.540794,1.000000;;, + 70;16;0.025633,-0.997178,-0.070568,0.000000,0.998017,0.029587,-0.055566,0.000000,0.057497,-0.069003,0.995958,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 74;16;0.027875,-0.999103,-0.031888,0.000000,0.997954,0.029651,-0.056652,0.000000,0.057547,-0.030243,0.997885,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 78;16;0.026714,-0.998287,-0.052054,0.000000,0.997989,0.029628,-0.056043,0.000000,0.057490,-0.050452,0.997070,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 82;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 100;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 103;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 108;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 112;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 116;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 120;16;0.027414,-0.997320,-0.067836,0.000000,0.998032,0.031137,-0.054436,0.000000,0.056402,-0.066210,0.996210,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 124;16;0.030080,-0.997832,-0.058530,0.000000,0.998030,0.033208,-0.053222,0.000000,0.055050,-0.056814,0.996866,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 128;16;0.031405,-0.998054,-0.053868,0.000000,0.998027,0.034245,-0.052629,0.000000,0.054371,-0.052109,0.997160,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 132;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 150;16;-0.079882,-0.923135,-0.376085,0.000000,0.992115,-0.037078,-0.119718,0.000000,0.096572,-0.382683,0.918818,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 152;16;-0.079882,-0.923135,-0.376085,0.000000,0.992115,-0.037078,-0.119718,0.000000,0.096572,-0.382683,0.918818,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 160;16;-0.062052,-0.990307,0.124263,0.000000,0.996436,-0.068597,-0.049094,0.000000,0.057142,0.120773,0.991034,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 180;16;0.050424,-0.931913,0.359158,0.000000,0.997285,0.027658,-0.068249,0.000000,0.053668,0.361625,0.930778,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 200;16;-0.104612,-0.895859,-0.431848,0.000000,0.989471,-0.050087,-0.135787,0.000000,0.100016,-0.441506,0.891667,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 202;16;-0.104612,-0.895860,-0.431847,0.000000,0.989471,-0.050087,-0.135787,0.000000,0.100016,-0.441505,0.891667,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 210;16;0.175630,-0.984424,0.007970,0.000000,0.978130,0.173580,-0.114594,0.000000,0.111425,0.027922,0.993380,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 230;16;0.153314,-0.969547,-0.190982,0.000000,0.982065,0.170956,-0.079513,0.000000,0.109741,-0.175367,0.978368,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 250;16;-0.082282,-0.909236,-0.408067,0.000000,0.980271,-0.000001,-0.197658,0.000000,0.179717,-0.416280,0.891298,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 252;16;-0.082282,-0.909237,-0.408066,0.000000,0.980271,-0.000001,-0.197658,0.000000,0.179717,-0.416279,0.891299,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 260;16;0.131825,-0.783571,0.607157,0.000000,0.989971,0.072688,-0.121133,0.000000,0.050783,0.617036,0.785295,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 280;16;0.131825,-0.783571,0.607157,0.000000,0.989971,0.072689,-0.121133,0.000000,0.050783,0.617036,0.785295,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 300;16;-0.104718,-0.920146,-0.377313,0.000000,0.945350,0.025700,-0.325044,0.000000,0.308785,-0.390731,0.867168,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 302;16;-0.104718,-0.920146,-0.377314,0.000000,0.945350,0.025701,-0.325044,0.000000,0.308785,-0.390732,0.867168,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 310;16;-0.113669,-0.943668,0.310758,0.000000,0.939249,-0.204030,-0.276014,0.000000,0.323869,0.260505,0.909531,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 330;16;-0.076258,-0.906244,0.415821,0.000000,0.947337,-0.195939,-0.253298,0.000000,0.311025,0.374607,0.873460,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 350;16;-0.085023,-0.964640,-0.249479,0.000000,0.909773,0.026943,-0.414232,0.000000,0.406306,-0.262189,0.875313,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 360;16;-0.085023,-0.964640,-0.249480,0.000000,0.909773,0.026943,-0.414232,0.000000,0.406307,-0.262189,0.875312,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 380;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 400;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 420;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 430;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 440;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 455;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 470;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 500;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302370,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 510;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302369,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 517;16;-0.352340,-0.899787,0.257369,0.000000,0.872459,-0.415308,-0.257553,0.000000,0.338631,0.133797,0.931358,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 525;16;-0.387067,-0.861645,0.328248,0.000000,0.857787,-0.467076,-0.214571,0.000000,0.338201,0.198514,0.919898,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 540;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302369,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 600;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302369,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 607;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302369,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 615;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302369,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 650;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302369,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 655;16;0.037186,-0.995227,0.090220,0.000000,0.924546,-0.000000,-0.381070,0.000000,0.379252,0.097583,0.920133,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 665;16;-0.040190,-0.993330,-0.108078,0.000000,0.937293,-0.000000,-0.348543,0.000000,0.346218,-0.115308,0.931041,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 670;16;0.037186,-0.995227,0.090220,0.000000,0.924546,-0.000000,-0.381070,0.000000,0.379252,0.097583,0.920133,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 680;16;0.037186,-0.995227,0.090220,0.000000,0.924546,-0.000000,-0.381070,0.000000,0.379252,0.097583,0.920133,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 700;16;0.037186,-0.995227,0.090220,0.000000,0.924546,-0.000000,-0.381070,0.000000,0.379252,0.097583,0.920133,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 715;16;0.037186,-0.995227,0.090220,0.000000,0.924546,-0.000000,-0.381071,0.000000,0.379252,0.097583,0.920133,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 720;16;-0.017783,-0.998809,-0.045431,0.000000,0.933361,-0.000292,-0.358939,0.000000,0.358499,-0.048787,0.932255,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 725;16;-0.071573,-0.977036,-0.200694,0.000000,0.942691,-0.000519,-0.333666,0.000000,0.325900,-0.213074,0.921080,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 735;16;-0.096444,-0.953191,-0.286576,0.000000,0.947768,-0.000000,-0.318959,0.000000,0.304029,-0.302369,0.903404,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1000;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1010;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1020;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1030;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1050;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1100;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1110;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1120;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1130;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1135;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1150;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1200;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1210;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1220;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1230;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1235;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1250;16;0.000615,-0.973657,-0.228017,0.000000,0.957454,0.066376,-0.280850,0.000000,0.288586,-0.218143,0.932272,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1500;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1510;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1523;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1530;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1532;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1536;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1550;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1560;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1600;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1620;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1630;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1632;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1636;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1650;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1700;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1725;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1730;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1732;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1736;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1750;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 1760;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2000;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2015;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2020;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2022;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2025;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2050;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2060;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2065;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2070;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2071;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2072;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2075;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2100;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2115;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2120;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2121;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2122;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2125;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2200;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2220;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2230;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2235;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294756,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2260;16;0.041312,-0.994471,-0.096547,0.000000,0.954679,0.067795,-0.289813,0.000000,0.294755,-0.080199,0.952201,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2400;16;-0.076928,-0.973563,-0.215072,0.000000,0.908204,0.020582,-0.418020,0.000000,0.411396,-0.227487,0.882611,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2420;16;-0.139508,-0.956305,-0.256941,0.000000,0.878817,-0.000000,-0.477159,0.000000,0.456309,-0.292371,0.840417,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2430;16;-0.139508,-0.956305,-0.256941,0.000000,0.878817,-0.000000,-0.477159,0.000000,0.456309,-0.292371,0.840417,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2435;16;-0.139508,-0.956305,-0.256941,0.000000,0.878817,-0.000000,-0.477159,0.000000,0.456309,-0.292371,0.840417,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2460;16;-0.139508,-0.956305,-0.256941,0.000000,0.878817,-0.000000,-0.477159,0.000000,0.456309,-0.292371,0.840417,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2490;16;0.336239,-0.894117,-0.295800,0.000000,0.834682,0.428389,-0.346104,0.000000,0.436176,-0.130526,0.890345,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2500;16;0.336239,-0.894117,-0.295800,0.000000,0.834682,0.428389,-0.346104,0.000000,0.436176,-0.130526,0.890345,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2510;16;0.336239,-0.894117,-0.295800,0.000000,0.834682,0.428389,-0.346104,0.000000,0.436176,-0.130526,0.890345,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2530;16;0.336240,-0.894117,-0.295800,0.000000,0.834682,0.428391,-0.346104,0.000000,0.436175,-0.130525,0.890345,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2535;16;-0.139508,-0.956305,-0.256941,0.000000,0.878817,-0.000000,-0.477159,0.000000,0.456309,-0.292371,0.840417,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2560;16;-0.196684,-0.948933,-0.246660,0.000000,0.867113,-0.050927,-0.495501,0.000000,0.457636,-0.311340,0.832849,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2600;16;0.041067,-0.994458,-0.096782,0.000000,0.954621,0.067649,-0.290038,0.000000,0.294978,-0.080479,0.952109,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2630;16;0.041067,-0.994458,-0.096782,0.000000,0.954621,0.067649,-0.290038,0.000000,0.294978,-0.080479,0.952109,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2635;16;0.041066,-0.994458,-0.096782,0.000000,0.954621,0.067648,-0.290039,0.000000,0.294979,-0.080480,0.952109,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2640;16;0.138914,-0.985745,-0.094923,0.000000,0.966025,0.155979,-0.206075,0.000000,0.217944,-0.063071,0.973921,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2650;16;0.041067,-0.994458,-0.096782,0.000000,0.954621,0.067649,-0.290038,0.000000,0.294978,-0.080479,0.952109,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2700;16;0.041067,-0.994458,-0.096782,0.000000,0.954621,0.067649,-0.290038,0.000000,0.294978,-0.080479,0.952109,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2730;16;0.041067,-0.994458,-0.096782,0.000000,0.954621,0.067649,-0.290038,0.000000,0.294978,-0.080479,0.952109,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2735;16;0.041068,-0.994458,-0.096782,0.000000,0.954621,0.067650,-0.290038,0.000000,0.294977,-0.080479,0.952109,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2740;16;0.138914,-0.985745,-0.094923,0.000000,0.966025,0.155979,-0.206075,0.000000,0.217944,-0.063071,0.973921,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2755;16;0.041067,-0.994458,-0.096783,0.000000,0.954621,0.067649,-0.290038,0.000000,0.294978,-0.080480,0.952109,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2800;16;-0.060431,-0.994033,0.090815,0.000000,0.881216,-0.095862,-0.462891,0.000000,0.468835,0.052055,0.881751,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2830;16;-0.060431,-0.994033,0.090815,0.000000,0.881216,-0.095863,-0.462891,0.000000,0.468835,0.052055,0.881751,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2835;16;-0.060431,-0.994033,0.090815,0.000000,0.881216,-0.095863,-0.462891,0.000000,0.468835,0.052055,0.881751,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2840;16;-0.060431,-0.994033,0.090815,0.000000,0.881216,-0.095863,-0.462891,0.000000,0.468835,0.052055,0.881751,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2850;16;-0.060431,-0.994033,0.090815,0.000000,0.881216,-0.095863,-0.462891,0.000000,0.468835,0.052055,0.881751,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2860;16;-0.060431,-0.994032,0.090816,0.000000,0.881216,-0.095863,-0.462891,0.000000,0.468835,0.052056,0.881751,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2900;16;-0.130623,-0.936672,-0.324935,0.000000,0.927836,0.000000,-0.372987,0.000000,0.349367,-0.350207,0.869079,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2910;16;-0.130623,-0.936672,-0.324935,0.000000,0.927836,-0.000000,-0.372988,0.000000,0.349367,-0.350207,0.869079,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2930;16;-0.130623,-0.936672,-0.324935,0.000000,0.927836,-0.000000,-0.372988,0.000000,0.349367,-0.350207,0.869079,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2932;16;-0.131279,-0.936391,-0.325481,0.000000,0.927483,-0.000078,-0.373865,0.000000,0.350058,-0.350959,0.868497,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 2935;16;-0.130623,-0.936672,-0.324935,0.000000,0.927836,-0.000000,-0.372988,0.000000,0.349367,-0.350207,0.869079,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3100;16;0.025403,-0.996875,-0.074793,0.000000,0.998028,0.029586,-0.055370,0.000000,0.057410,-0.073239,0.995661,0.000000,0.000000,0.000000,2.893635,1.000000;;, + 3104;16;0.035338,-0.994742,0.096119,0.000000,0.998062,0.030198,-0.054408,0.000000,0.051219,0.097855,0.993882,0.000000,0.000000,0.000000,2.549444,1.000000;;, + 3110;16;0.028760,-0.999267,-0.025265,0.000000,0.998135,0.030070,-0.053118,0.000000,0.053838,-0.023690,0.998269,0.000000,0.000000,0.000000,2.722471,1.000000;;, + 3116;16;0.019428,-0.983763,-0.178420,0.000000,0.998205,0.029197,-0.052294,0.000000,0.056654,-0.177083,0.982564,0.000000,0.000000,0.000000,2.893636,1.000000;;, + 3118;16;0.021230,-0.988938,-0.146800,0.000000,0.998147,0.029342,-0.053315,0.000000,0.057032,-0.145396,0.987728,0.000000,0.000000,0.000000,2.540794,1.000000;;, + 3120;16;0.025633,-0.997178,-0.070568,0.000000,0.998017,0.029587,-0.055566,0.000000,0.057497,-0.069003,0.995958,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3124;16;0.027875,-0.999103,-0.031887,0.000000,0.997954,0.029651,-0.056652,0.000000,0.057547,-0.030243,0.997885,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3128;16;0.026714,-0.998287,-0.052054,0.000000,0.997989,0.029628,-0.056043,0.000000,0.057490,-0.050452,0.997070,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3132;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3150;16;0.025403,-0.996876,-0.074792,0.000000,0.998028,0.029586,-0.055369,0.000000,0.057409,-0.073238,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3154;16;0.035338,-0.994742,0.096120,0.000000,0.998062,0.030198,-0.054408,0.000000,0.051219,0.097856,0.993882,0.000000,0.000000,0.000000,2.549441,1.000000;;, + 3160;16;0.028760,-0.999267,-0.025256,0.000000,0.998135,0.030070,-0.053118,0.000000,0.053838,-0.023681,0.998269,0.000000,0.000000,0.000000,2.722459,1.000000;;, + 3166;16;0.019427,-0.983762,-0.178423,0.000000,0.998205,0.029197,-0.052294,0.000000,0.056654,-0.177086,0.982563,0.000000,0.000000,0.000000,2.893632,1.000000;;, + 3168;16;0.021230,-0.988938,-0.146802,0.000000,0.998147,0.029342,-0.053315,0.000000,0.057032,-0.145398,0.987728,0.000000,0.000000,0.000000,2.540794,1.000000;;, + 3170;16;0.025634,-0.997178,-0.070564,0.000000,0.998017,0.029587,-0.055566,0.000000,0.057497,-0.068999,0.995958,0.000000,0.000000,0.000000,2.893646,1.000000;;, + 3174;16;0.027875,-0.999103,-0.031888,0.000000,0.997954,0.029651,-0.056652,0.000000,0.057547,-0.030243,0.997885,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3178;16;0.026714,-0.998287,-0.052055,0.000000,0.997989,0.029628,-0.056043,0.000000,0.057490,-0.050453,0.997070,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3182;16;0.025403,-0.996875,-0.074793,0.000000,0.998028,0.029587,-0.055367,0.000000,0.057407,-0.073239,0.995661,0.000000,0.000000,0.000000,2.893634,1.000000;;, + 3200;16;-0.060431,-0.994033,0.090815,0.000000,0.881216,-0.095863,-0.462891,0.000000,0.468835,0.052055,0.881751,0.000000,0.000000,0.000000,2.893634,1.000000;;; + } + } + + Animation Animation34 { + { Frame35_R_Tumasaki } + AnimationKey { + 4; + 173; + 0;16;0.173648,0.000000,-0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,0.984808,0.000000,0.173648,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 5;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 10;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 50;16;0.161480,-0.000000,-0.986876,0.000000,0.000000,1.000000,-0.000000,0.000000,0.986876,-0.000000,0.161480,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 54;16;-0.269020,0.000000,-0.963135,0.000000,0.000000,1.000000,0.000000,0.000000,0.963135,0.000000,-0.269020,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 60;16;-0.211062,-0.000000,-0.977473,0.000000,0.000000,1.000000,-0.000000,0.000000,0.977473,-0.000000,-0.211062,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 66;16;-0.071623,0.000000,-0.997432,0.000000,0.000000,1.000000,0.000000,0.000000,0.997432,0.000000,-0.071623,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 68;16;-0.192783,-0.000000,-0.981241,0.000000,0.000000,1.000000,-0.000000,0.000000,0.981241,-0.000000,-0.192783,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 70;16;0.262002,0.000000,-0.965067,0.000000,-0.000000,1.000000,0.000000,0.000000,0.965067,0.000000,0.262002,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 74;16;0.200511,0.000000,-0.979691,0.000000,-0.000000,1.000000,0.000000,0.000000,0.979691,0.000000,0.200511,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 78;16;0.242910,0.000000,-0.970049,0.000000,-0.000000,1.000000,0.000000,0.000000,0.970049,0.000000,0.242910,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 82;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 100;16;0.000014,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000014,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 103;16;-0.055744,0.000000,-0.998445,0.000000,-0.000000,1.000000,0.000000,0.000000,0.998445,0.000000,-0.055744,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 108;16;-0.159551,0.000000,-0.987190,0.000000,-0.000000,1.000000,0.000000,0.000000,0.987190,0.000000,-0.159551,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 112;16;-0.233616,0.000000,-0.972329,0.000000,-0.000000,1.000000,0.000000,0.000000,0.972329,0.000000,-0.233616,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 116;16;-0.262176,0.000000,-0.965020,0.000000,-0.000000,1.000000,0.000000,0.000000,0.965020,0.000000,-0.262176,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 120;16;-0.207630,0.000000,-0.978207,0.000000,-0.000000,1.000000,0.000000,0.000000,0.978207,0.000000,-0.207630,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 124;16;-0.139112,0.000000,-0.990277,0.000000,-0.000000,1.000000,0.000000,0.000000,0.990277,0.000000,-0.139112,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 128;16;-0.067945,0.000000,-0.997689,0.000000,-0.000000,1.000000,0.000000,0.000000,0.997689,0.000000,-0.067945,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 132;16;0.000014,0.000000,-1.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000014,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 150;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 152;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 160;16;0.552894,0.000000,-0.833252,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.833252,0.000000,0.552894,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 180;16;0.676784,0.000000,-0.736182,0.000000,0.000000,1.000000,0.000000,0.000000,0.736182,0.000000,0.676784,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 200;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 202;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 210;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 230;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 250;16;0.066148,-0.000000,-0.997810,0.000000,0.000000,1.000000,-0.000000,0.000000,0.997810,-0.000000,0.066148,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 252;16;0.066148,0.000000,-0.997810,0.000000,0.000000,1.000000,0.000000,0.000000,0.997810,0.000000,0.066148,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 260;16;0.066148,0.000000,-0.997810,0.000000,0.000000,1.000000,0.000000,0.000000,0.997810,0.000000,0.066148,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 280;16;0.066148,0.000000,-0.997810,0.000000,-0.000000,1.000000,0.000000,0.000000,0.997810,0.000000,0.066148,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 300;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 302;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 310;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 330;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 350;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 360;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 400;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 420;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 430;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 440;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 455;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 470;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 500;16;0.284303,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284303,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 510;16;0.009027,0.000000,-0.999959,0.000000,0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 517;16;-0.024719,-0.000000,-0.999694,0.000000,0.000000,1.000000,-0.000000,0.000000,0.999694,-0.000000,-0.024719,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 525;16;0.008925,-0.000000,-0.999960,0.000000,0.000000,1.000000,-0.000000,0.000000,0.999960,-0.000000,0.008925,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 540;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 600;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 607;16;0.009027,0.000000,-0.999959,0.000000,-0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 615;16;0.009027,0.000000,-0.999959,0.000000,0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 650;16;0.009027,0.000000,-0.999959,0.000000,0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 655;16;0.009027,0.000000,-0.999959,0.000000,0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 665;16;0.009027,0.000000,-0.999959,0.000000,0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 670;16;0.009027,0.000000,-0.999959,0.000000,0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 680;16;0.009027,0.000000,-0.999959,0.000000,0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 700;16;0.009027,0.000000,-0.999959,0.000000,0.000000,1.000000,0.000000,0.000000,0.999959,0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 715;16;0.009027,-0.000000,-0.999959,0.000000,0.000000,1.000000,-0.000000,0.000000,0.999959,-0.000000,0.009027,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 720;16;0.109682,0.000000,-0.993967,0.000000,-0.000000,1.000000,0.000000,0.000000,0.993967,0.000000,0.109682,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 725;16;0.222299,0.000000,-0.974978,0.000000,-0.000000,1.000000,0.000000,0.000000,0.974978,0.000000,0.222299,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 735;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1000;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1010;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1020;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1030;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1050;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1100;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1110;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1120;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1130;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1135;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1150;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1200;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1210;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1220;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1230;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1235;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1250;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1500;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1510;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1523;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1530;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1532;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1536;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1550;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1560;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1600;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1620;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1630;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1632;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1636;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1650;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1700;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1725;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1730;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1732;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1736;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1750;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 1760;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2000;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2015;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2020;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2022;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2025;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2050;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2060;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2065;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2070;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2071;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2072;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2075;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2100;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2115;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2120;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2121;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2122;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2125;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2200;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2220;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2230;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2235;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2260;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2400;16;0.279496,0.000000,-0.960147,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.960147,0.000000,0.279496,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2420;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2430;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2435;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2460;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2490;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2500;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2510;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2530;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2535;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2560;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2600;16;0.268817,0.000000,-0.963191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963191,0.000000,0.268817,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2630;16;0.268817,0.000000,-0.963191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963191,0.000000,0.268817,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2635;16;0.268816,0.000000,-0.963192,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963192,0.000000,0.268816,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2640;16;0.422521,0.000000,-0.906353,0.000000,0.000000,1.000000,0.000000,0.000000,0.906353,0.000000,0.422521,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2650;16;0.268818,0.000000,-0.963191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963191,0.000000,0.268818,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2700;16;0.268817,0.000000,-0.963191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963191,0.000000,0.268817,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2730;16;0.268817,0.000000,-0.963191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963191,0.000000,0.268817,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2735;16;0.268819,0.000000,-0.963191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963191,0.000000,0.268819,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2740;16;0.422521,0.000000,-0.906353,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.906353,0.000000,0.422521,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2755;16;0.268818,0.000000,-0.963191,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.963191,0.000000,0.268818,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2800;16;0.356638,0.000000,-0.934243,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.934243,0.000000,0.356638,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2830;16;0.356638,-0.000000,-0.934243,0.000000,0.000000,1.000000,0.000000,0.000000,0.934243,-0.000000,0.356638,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2835;16;0.356638,0.000000,-0.934243,0.000000,0.000000,1.000000,0.000000,0.000000,0.934243,0.000000,0.356638,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2850;16;0.356638,0.000000,-0.934243,0.000000,0.000000,1.000000,0.000000,0.000000,0.934243,0.000000,0.356638,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2900;16;0.284303,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284303,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2910;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2930;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2932;16;0.284645,0.000000,-0.958633,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958633,0.000000,0.284645,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 2935;16;0.284304,0.000000,-0.958734,0.000000,-0.000000,1.000000,-0.000000,0.000000,0.958734,0.000000,0.284304,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3100;16;0.161481,0.000000,-0.986876,0.000000,-0.000000,1.000000,0.000000,0.000000,0.986876,0.000000,0.161481,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3104;16;-0.269016,0.000000,-0.963136,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963136,0.000000,-0.269016,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3110;16;-0.211059,-0.000000,-0.977473,0.000000,0.000000,1.000000,-0.000000,0.000000,0.977473,-0.000000,-0.211059,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3116;16;-0.071623,-0.000000,-0.997432,0.000000,0.000000,1.000000,-0.000000,0.000000,0.997432,-0.000000,-0.071623,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3118;16;-0.192775,0.000000,-0.981243,0.000000,-0.000000,1.000000,0.000000,0.000000,0.981243,0.000000,-0.192775,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3120;16;0.262002,0.000000,-0.965067,0.000000,-0.000000,1.000000,0.000000,0.000000,0.965067,0.000000,0.262002,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3124;16;0.200511,0.000000,-0.979691,0.000000,-0.000000,1.000000,0.000000,0.000000,0.979691,0.000000,0.200511,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3128;16;0.242909,0.000000,-0.970049,0.000000,-0.000000,1.000000,0.000000,0.000000,0.970049,0.000000,0.242909,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3132;16;0.268799,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268799,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3150;16;0.161480,0.000000,-0.986876,0.000000,0.000000,1.000000,0.000000,0.000000,0.986876,0.000000,0.161480,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3154;16;-0.269024,-0.000000,-0.963134,0.000000,0.000000,1.000000,-0.000000,0.000000,0.963134,-0.000000,-0.269024,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3160;16;-0.211066,-0.000000,-0.977472,0.000000,0.000000,1.000000,-0.000000,0.000000,0.977472,-0.000000,-0.211066,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3166;16;-0.071623,0.000000,-0.997432,0.000000,-0.000000,1.000000,0.000000,0.000000,0.997432,0.000000,-0.071623,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3168;16;-0.192783,0.000000,-0.981241,0.000000,0.000000,1.000000,0.000000,0.000000,0.981241,0.000000,-0.192783,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3170;16;0.262015,0.000000,-0.965064,0.000000,-0.000000,1.000000,0.000000,0.000000,0.965064,0.000000,0.262015,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3174;16;0.200511,0.000000,-0.979691,0.000000,-0.000000,1.000000,0.000000,0.000000,0.979691,0.000000,0.200511,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3178;16;0.242911,0.000000,-0.970049,0.000000,-0.000000,1.000000,0.000000,0.000000,0.970049,0.000000,0.242911,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3182;16;0.268798,0.000000,-0.963196,0.000000,-0.000000,1.000000,0.000000,0.000000,0.963196,0.000000,0.268798,0.000000,-0.000000,-0.000000,0.550000,1.000000;;, + 3200;16;0.356638,-0.000000,-0.934243,0.000000,0.000000,1.000000,0.000000,0.000000,0.934243,-0.000000,0.356638,0.000000,-0.000000,-0.000000,0.550000,1.000000;;; + } + } + + Animation Animation35 { + { Frame36_Bone_neck } + AnimationKey { + 4; + 160; + 0;16;1.000000,0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 5;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 10;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 50;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 54;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 60;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 66;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 70;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 74;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 78;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 82;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 100;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 103;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 108;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 112;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 116;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 120;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 124;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 128;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 132;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 150;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 152;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 160;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 180;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 200;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 202;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 210;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 230;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 250;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 252;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 260;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 280;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 300;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 302;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 310;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 330;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 350;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 360;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 400;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 420;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 430;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 440;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 455;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 470;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 500;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 510;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 517;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 525;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 540;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 600;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 607;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 615;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 650;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 655;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 665;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 670;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 680;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 700;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 715;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 720;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 725;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 735;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1000;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1010;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1020;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1030;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1050;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1100;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1110;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1120;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1130;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1135;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1150;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1200;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1210;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1220;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1230;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1235;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1250;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1500;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1510;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1523;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1530;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1532;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1536;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1550;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1560;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1600;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1620;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1630;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1632;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1636;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1650;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1700;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1725;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1730;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1732;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1736;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1750;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1760;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2000;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2015;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2020;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2022;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2025;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2050;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2060;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2065;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2070;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2071;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2072;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2075;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2100;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2115;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2120;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2121;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2122;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2125;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2200;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2220;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2230;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2235;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2260;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2400;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2420;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2430;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2435;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2460;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2490;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2500;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2510;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2530;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2535;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2560;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2600;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2630;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2635;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2640;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2650;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2700;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2730;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2735;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2740;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2755;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2800;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2830;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2835;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2850;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2900;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2910;16;1.000000,-0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2930;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2932;16;0.999999,0.000986,-0.001086,0.000000,-0.000987,0.999998,-0.001468,0.000000,0.001084,0.001469,0.999998,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2935;16;1.000000,0.000000,-0.000000,0.000000,-0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3100;16;0.871268,-0.342020,0.352015,0.000000,0.317115,0.939693,0.128123,0.000000,-0.374606,0.000000,0.927184,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3132;16;0.871268,-0.342020,0.352015,0.000000,0.317116,0.939693,0.128123,0.000000,-0.374607,0.000000,0.927184,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3149;16;0.871269,0.342016,0.352016,0.000000,-0.317112,0.939694,-0.128122,0.000000,-0.374607,0.000000,0.927184,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3150;16;0.871268,0.342020,0.352015,0.000000,-0.317116,0.939693,-0.128123,0.000000,-0.374607,0.000000,0.927184,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3182;16;0.871268,0.342020,0.352015,0.000000,-0.317116,0.939693,-0.128123,0.000000,-0.374607,0.000000,0.927184,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3183;16;0.871268,0.342020,0.352015,0.000000,-0.317116,0.939693,-0.128123,0.000000,-0.374607,0.000000,0.927184,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3200;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,0.999999,-0.001465,0.000000,0.000000,0.001465,0.999999,0.000000,0.000000,0.000000,3.000000,1.000000;;; + } + } + + Animation Animation36 { + { Frame37_Bone_Head } + AnimationKey { + 4; + 172; + 0;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 5;16;-0.334617,0.000000,0.942354,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.942354,-0.000000,-0.334617,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 10;16;-0.288182,0.000000,0.957576,0.000000,0.149775,0.987692,0.045075,0.000000,-0.945790,0.156410,-0.284636,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 50;16;0.173648,0.000000,0.984808,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.984808,-0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 54;16;0.191317,-0.000000,0.981528,0.000000,-0.006557,0.999978,0.001278,0.000000,-0.981506,-0.006680,0.191312,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 60;16;0.199814,0.000000,0.979834,0.000000,-0.006025,0.999981,0.001229,0.000000,-0.979815,-0.006149,0.199810,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 66;16;0.205530,-0.000000,0.978651,0.000000,-0.004060,0.999991,0.000853,0.000000,-0.978642,-0.004149,0.205528,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 70;16;0.208359,0.000000,0.978052,0.000000,-0.002928,0.999996,0.000624,0.000000,-0.978048,-0.002994,0.208358,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 74;16;0.209077,0.000000,0.977899,0.000000,-0.001805,0.999998,0.000386,0.000000,-0.977897,-0.001845,0.209077,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 78;16;0.205722,-0.000000,0.978610,0.000000,-0.000728,1.000000,0.000153,0.000000,-0.978610,-0.000744,0.205722,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 82;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 100;16;-0.243616,0.000000,0.969872,0.000000,0.000000,1.000000,0.000000,0.000000,-0.969872,0.000000,-0.243616,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 103;16;-0.267303,0.000000,0.963612,0.000000,0.000000,1.000000,0.000000,0.000000,-0.963612,0.000000,-0.267303,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 108;16;-0.260359,0.000000,0.965512,0.000000,0.000000,1.000000,0.000000,0.000000,-0.965512,0.000000,-0.260359,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 112;16;-0.250545,0.000000,0.968105,0.000000,0.000000,1.000000,0.000000,0.000000,-0.968105,0.000000,-0.250545,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 116;16;-0.243616,0.000000,0.969872,0.000000,0.000000,1.000000,0.000000,0.000000,-0.969872,0.000000,-0.243616,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 120;16;-0.251826,0.000000,0.967773,0.000000,0.000000,1.000000,0.000000,0.000000,-0.967773,0.000000,-0.251826,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 124;16;-0.263984,0.000000,0.964527,0.000000,0.000000,1.000000,0.000000,0.000000,-0.964527,0.000000,-0.263984,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 128;16;-0.270312,0.000000,0.962773,0.000000,0.000000,1.000000,0.000000,0.000000,-0.962773,0.000000,-0.270312,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 132;16;-0.243616,0.000000,0.969872,0.000000,0.000000,1.000000,0.000000,0.000000,-0.969872,0.000000,-0.243616,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 150;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 152;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 160;16;0.208361,0.000000,0.978052,0.000000,0.000000,1.000000,0.000000,0.000000,-0.978052,0.000000,0.208361,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 180;16;0.338737,0.000000,0.940881,0.000000,0.000000,1.000000,0.000000,0.000000,-0.940881,0.000000,0.338737,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 200;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 202;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 210;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 230;16;-0.078461,0.000000,0.996917,0.000000,0.000000,1.000000,0.000000,0.000000,-0.996917,0.000000,-0.078461,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 250;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 252;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 260;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 280;16;-0.078461,0.000000,0.996917,0.000000,0.000000,1.000000,0.000000,0.000000,-0.996917,0.000000,-0.078461,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 300;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 302;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 310;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 330;16;-0.219848,0.000000,0.975534,0.000000,0.000000,1.000000,0.000000,0.000000,-0.975534,0.000000,-0.219848,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 350;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 360;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 400;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 420;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 430;16;0.178802,0.000000,0.983885,0.000000,-0.004501,0.999990,0.000818,0.000000,-0.983875,-0.004575,0.178801,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 440;16;0.106262,-0.000000,0.994338,0.000000,-0.009241,0.999957,0.000988,0.000000,-0.994295,-0.009294,0.106258,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 455;16;-0.151262,-0.000000,0.988494,0.000000,-0.021841,0.999756,-0.003342,0.000000,-0.988252,-0.022095,-0.151225,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 470;16;-0.151262,0.000000,0.988494,0.000000,-0.023243,0.999723,-0.003557,0.000000,-0.988220,-0.023514,-0.151220,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 500;16;-0.160728,0.000000,0.986999,0.000000,0.154377,0.987692,0.025140,0.000000,-0.974851,0.156411,-0.158750,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 510;16;-0.160728,0.000000,0.986999,0.000000,0.154377,0.987692,0.025140,0.000000,-0.974851,0.156410,-0.158750,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 517;16;-0.284967,-0.000000,0.958537,0.000000,-0.103351,0.994170,-0.030726,0.000000,-0.952949,-0.107822,-0.283306,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 525;16;-0.303097,0.000000,0.952960,0.000000,-0.140011,0.989148,-0.044532,0.000000,-0.942618,-0.146922,-0.299807,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 540;16;-0.160728,0.000000,0.986999,0.000000,0.154377,0.987692,0.025140,0.000000,-0.974851,0.156410,-0.158750,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 600;16;-0.160728,0.000000,0.986999,0.000000,0.154377,0.987692,0.025140,0.000000,-0.974851,0.156410,-0.158750,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 607;16;-0.160728,0.000000,0.986999,0.000000,0.154377,0.987692,0.025140,0.000000,-0.974851,0.156410,-0.158750,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 615;16;-0.160728,0.000000,0.986999,0.000000,0.154377,0.987692,0.025140,0.000000,-0.974851,0.156410,-0.158750,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 650;16;0.145235,-0.000000,0.989397,0.000000,-0.082815,0.996491,0.012156,0.000000,-0.985925,-0.083702,0.144725,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 655;16;0.145235,-0.000000,0.989397,0.000000,-0.082815,0.996491,0.012156,0.000000,-0.985925,-0.083702,0.144725,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 665;16;0.156080,-0.000000,0.987744,0.000000,-0.091140,0.995734,0.014402,0.000000,-0.983531,-0.092271,0.155414,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 670;16;0.145235,0.000000,0.989397,0.000000,-0.082815,0.996491,0.012156,0.000000,-0.985925,-0.083702,0.144725,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 680;16;0.145235,-0.000000,0.989397,0.000000,-0.082815,0.996491,0.012156,0.000000,-0.985925,-0.083702,0.144725,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 700;16;0.145235,-0.000000,0.989397,0.000000,-0.082815,0.996491,0.012156,0.000000,-0.985925,-0.083702,0.144725,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 715;16;-0.479443,-0.000000,0.877573,0.000000,-0.073455,0.996491,-0.040130,0.000000,-0.874493,-0.083702,-0.477761,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 720;16;-0.410750,-0.000000,0.911748,0.000000,0.004554,0.999988,0.002052,0.000000,-0.911737,0.004995,-0.410745,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 725;16;-0.260271,0.000000,0.965536,0.000000,0.101210,0.994491,0.027282,0.000000,-0.960216,0.104822,-0.258837,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 735;16;-0.160728,0.000000,0.986999,0.000000,0.154377,0.987692,0.025140,0.000000,-0.974851,0.156410,-0.158750,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1000;16;-0.151262,0.000000,0.988494,0.000000,-0.267487,0.962692,-0.040932,0.000000,-0.951615,-0.270600,-0.145619,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1010;16;-0.151262,0.000000,0.988494,0.000000,-0.267487,0.962692,-0.040932,0.000000,-0.951615,-0.270601,-0.145619,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1020;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1030;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1050;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1100;16;-0.151262,0.000000,0.988494,0.000000,-0.267486,0.962692,-0.040932,0.000000,-0.951615,-0.270600,-0.145619,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1110;16;-0.151262,0.000000,0.988494,0.000000,-0.658863,0.745476,-0.100821,0.000000,-0.736898,-0.666533,-0.112762,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1120;16;-0.151262,-0.000000,0.988494,0.000000,-0.663992,0.740804,-0.101606,0.000000,-0.732280,-0.671721,-0.112056,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1130;16;-0.151262,0.000000,0.988494,0.000000,-0.662713,0.741976,-0.101410,0.000000,-0.733438,-0.670427,-0.112233,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1135;16;-0.151262,0.000000,0.988494,0.000000,-0.640662,0.761539,-0.098036,0.000000,-0.752776,-0.648120,-0.115192,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1150;16;-0.151262,0.000000,0.988494,0.000000,-0.662712,0.741976,-0.101410,0.000000,-0.733438,-0.670427,-0.112233,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1200;16;-0.151262,-0.000000,0.988494,0.000000,-0.267487,0.962692,-0.040932,0.000000,-0.951615,-0.270600,-0.145619,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1210;16;-0.151262,0.000000,0.988494,0.000000,0.473185,0.877982,0.072408,0.000000,-0.867880,0.478693,-0.132805,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1220;16;-0.151262,0.000000,0.988494,0.000000,0.473184,0.877983,0.072408,0.000000,-0.867880,0.478692,-0.132806,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1230;16;-0.151262,0.000000,0.988494,0.000000,0.473184,0.877983,0.072408,0.000000,-0.867880,0.478692,-0.132806,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1235;16;-0.151262,0.000000,0.988494,0.000000,0.473184,0.877983,0.072408,0.000000,-0.867880,0.478692,-0.132806,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1250;16;-0.151262,0.000000,0.988494,0.000000,0.473184,0.877983,0.072408,0.000000,-0.867880,0.478692,-0.132806,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1500;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1510;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1523;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1530;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1532;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1536;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1546;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1550;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1560;16;-0.151262,0.000000,0.988494,0.000000,0.000000,1.000000,0.000000,0.000000,-0.988494,0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1561;16;-0.151262,-0.000000,0.988494,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.988494,-0.000000,-0.151262,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1600;16;-0.152987,-0.000000,0.988228,0.000000,-0.757027,0.642787,-0.117195,0.000000,-0.635220,-0.766045,-0.098338,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1620;16;-0.152987,-0.000000,0.988228,0.000000,-0.757027,0.642788,-0.117195,0.000000,-0.635221,-0.766044,-0.098338,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1630;16;-0.152987,-0.000000,0.988228,0.000000,-0.757027,0.642788,-0.117195,0.000000,-0.635221,-0.766044,-0.098338,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1632;16;-0.152987,-0.000000,0.988228,0.000000,-0.757027,0.642788,-0.117195,0.000000,-0.635221,-0.766044,-0.098338,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1636;16;-0.152987,-0.000000,0.988228,0.000000,-0.757027,0.642788,-0.117195,0.000000,-0.635221,-0.766044,-0.098338,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1650;16;-0.152987,-0.000000,0.988228,0.000000,-0.757027,0.642788,-0.117195,0.000000,-0.635221,-0.766044,-0.098338,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1700;16;-0.151262,-0.000000,0.988494,0.000000,0.635391,0.766045,0.097229,0.000000,-0.757231,0.642787,-0.115873,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1725;16;-0.151262,0.000000,0.988494,0.000000,0.635391,0.766044,0.097229,0.000000,-0.757230,0.642788,-0.115874,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1730;16;-0.151262,0.000000,0.988494,0.000000,0.635391,0.766044,0.097229,0.000000,-0.757230,0.642788,-0.115874,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1732;16;-0.151262,0.000000,0.988494,0.000000,0.635391,0.766044,0.097229,0.000000,-0.757230,0.642788,-0.115874,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1736;16;-0.151262,0.000000,0.988494,0.000000,0.635391,0.766044,0.097229,0.000000,-0.757230,0.642788,-0.115874,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1750;16;-0.151262,0.000000,0.988494,0.000000,0.635391,0.766044,0.097229,0.000000,-0.757230,0.642788,-0.115874,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 1760;16;-0.151262,0.000000,0.988494,0.000000,0.635392,0.766044,0.097229,0.000000,-0.757230,0.642788,-0.115873,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2000;16;-0.052336,0.000000,0.998630,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.998630,-0.000000,-0.052336,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2015;16;-0.052336,0.000000,0.998630,0.000000,0.000000,1.000000,0.000000,0.000000,-0.998630,0.000000,-0.052336,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2020;16;-0.052335,0.000000,0.998630,0.000000,0.000000,1.000000,0.000000,0.000000,-0.998630,0.000000,-0.052335,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2022;16;-0.108000,0.000000,0.994151,0.000000,0.000000,1.000000,0.000000,0.000000,-0.994151,0.000000,-0.108000,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2025;16;-0.052336,0.000000,0.998630,0.000000,0.000000,1.000000,0.000000,0.000000,-0.998630,0.000000,-0.052336,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2050;16;0.030808,-0.059730,0.997739,0.000000,-0.515633,0.854182,0.067058,0.000000,-0.856256,-0.516533,-0.004483,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2060;16;0.030808,-0.059730,0.997739,0.000000,-0.515634,0.854181,0.067058,0.000000,-0.856255,-0.516534,-0.004483,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2065;16;0.030808,-0.059730,0.997739,0.000000,-0.515634,0.854181,0.067058,0.000000,-0.856255,-0.516534,-0.004483,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2070;16;0.030808,-0.059730,0.997739,0.000000,-0.515634,0.854181,0.067058,0.000000,-0.856255,-0.516534,-0.004483,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2071;16;0.030808,-0.059730,0.997739,0.000000,-0.515634,0.854181,0.067058,0.000000,-0.856255,-0.516534,-0.004483,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2072;16;0.030808,-0.059730,0.997739,0.000000,-0.515634,0.854181,0.067058,0.000000,-0.856255,-0.516534,-0.004483,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2075;16;0.030808,-0.059730,0.997739,0.000000,-0.515631,0.854183,0.067058,0.000000,-0.856257,-0.516531,-0.004483,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2100;16;-0.049121,-0.054211,0.997321,0.000000,0.627413,0.775253,0.073042,0.000000,-0.777136,0.629320,-0.004069,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2115;16;-0.049121,-0.054211,0.997321,0.000000,0.627413,0.775253,0.073042,0.000000,-0.777136,0.629320,-0.004069,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2120;16;-0.049121,-0.054211,0.997321,0.000000,0.627413,0.775253,0.073042,0.000000,-0.777136,0.629320,-0.004069,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2121;16;-0.049121,-0.054211,0.997321,0.000000,0.627413,0.775253,0.073042,0.000000,-0.777136,0.629320,-0.004069,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2122;16;-0.049121,-0.054211,0.997321,0.000000,0.627413,0.775253,0.073042,0.000000,-0.777136,0.629320,-0.004069,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2125;16;-0.049121,-0.054211,0.997321,0.000000,0.627413,0.775253,0.073042,0.000000,-0.777135,0.629320,-0.004069,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2200;16;-0.151262,-0.000000,0.988494,0.000000,0.003451,0.999994,0.000528,0.000000,-0.988488,0.003491,-0.151261,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2220;16;-0.151262,-0.000000,0.988494,0.000000,0.003450,0.999994,0.000528,0.000000,-0.988488,0.003491,-0.151261,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2230;16;-0.151262,-0.000000,0.988494,0.000000,0.003450,0.999994,0.000528,0.000000,-0.988488,0.003491,-0.151261,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2235;16;-0.151262,-0.000000,0.988494,0.000000,0.003450,0.999994,0.000528,0.000000,-0.988488,0.003491,-0.151261,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2260;16;-0.151262,-0.000000,0.988494,0.000000,0.003451,0.999994,0.000528,0.000000,-0.988488,0.003491,-0.151261,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2400;16;-0.157790,0.000000,0.987473,0.000000,-0.425391,0.902454,-0.067974,0.000000,-0.891148,-0.430787,-0.142398,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2420;16;-0.160728,0.000000,0.986999,0.000000,-0.837036,0.529897,-0.136307,0.000000,-0.523007,-0.848062,-0.085169,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2430;16;-0.160728,0.000000,0.986999,0.000000,-0.837035,0.529898,-0.136307,0.000000,-0.523009,-0.848061,-0.085170,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2435;16;-0.160728,0.000000,0.986999,0.000000,0.415544,0.907053,0.067669,0.000000,-0.895260,0.421017,-0.145789,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2460;16;-0.160728,-0.000000,0.986999,0.000000,0.527967,0.844902,0.085977,0.000000,-0.833917,0.534922,-0.135799,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2490;16;-0.249521,-0.000000,0.968369,0.000000,0.779421,0.593438,0.200835,0.000000,-0.574667,0.804880,-0.148075,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2500;16;-0.249521,-0.000000,0.968369,0.000000,0.779421,0.593438,0.200835,0.000000,-0.574667,0.804880,-0.148075,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2510;16;-0.249521,-0.000000,0.968369,0.000000,0.779421,0.593438,0.200835,0.000000,-0.574667,0.804880,-0.148075,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2530;16;-0.249521,-0.000000,0.968369,0.000000,0.779424,0.593433,0.200836,0.000000,-0.574663,0.804883,-0.148074,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2535;16;-0.160728,0.000000,0.986999,0.000000,-0.595385,0.797569,-0.096956,0.000000,-0.787200,-0.603227,-0.128192,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2560;16;-0.149969,0.000000,0.988691,0.000000,-0.734572,0.669319,-0.111423,0.000000,-0.661750,-0.742975,-0.100377,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2600;16;-0.292214,-0.005230,0.956339,0.000000,0.000854,0.999983,0.005729,0.000000,-0.956353,0.002490,-0.292204,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2630;16;-0.292214,-0.005230,0.956339,0.000000,0.000853,0.999983,0.005729,0.000000,-0.956353,0.002490,-0.292204,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2635;16;-0.292213,-0.005230,0.956339,0.000000,0.000853,0.999983,0.005729,0.000000,-0.956353,0.002490,-0.292204,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2640;16;-0.340223,-0.005230,0.940330,0.000000,0.000562,0.999983,0.005765,0.000000,-0.940345,0.002490,-0.340214,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2650;16;-0.292214,-0.005230,0.956339,0.000000,0.000853,0.999983,0.005729,0.000000,-0.956353,0.002490,-0.292204,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2700;16;-0.292214,-0.005230,0.956339,0.000000,0.000853,0.999983,0.005729,0.000000,-0.956353,0.002490,-0.292204,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2730;16;-0.292214,-0.005230,0.956339,0.000000,0.000853,0.999983,0.005729,0.000000,-0.956353,0.002490,-0.292204,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2735;16;-0.292214,-0.005230,0.956339,0.000000,0.000853,0.999983,0.005729,0.000000,-0.956353,0.002490,-0.292205,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2740;16;-0.340223,-0.005230,0.940330,0.000000,0.000562,0.999983,0.005765,0.000000,-0.940345,0.002490,-0.340214,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2755;16;-0.292214,-0.005230,0.956339,0.000000,0.000853,0.999983,0.005729,0.000000,-0.956353,0.002490,-0.292205,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2800;16;0.019359,-0.005230,0.999799,0.000000,0.002590,0.999983,0.005181,0.000000,-0.999809,0.002490,0.019372,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2830;16;0.019360,-0.005230,0.999799,0.000000,0.002590,0.999983,0.005181,0.000000,-0.999809,0.002490,0.019373,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2835;16;-0.182074,-0.005230,0.983271,0.000000,0.001496,0.999983,0.005596,0.000000,-0.983284,0.002490,-0.182064,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2850;16;0.019359,-0.005230,0.999799,0.000000,0.002590,0.999983,0.005181,0.000000,-0.999809,0.002490,0.019372,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2900;16;-0.160728,0.000000,0.986999,0.000000,-0.007948,0.999968,-0.001294,0.000000,-0.986967,-0.008053,-0.160723,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2910;16;-0.160728,-0.000000,0.986999,0.000000,-0.007948,0.999968,-0.001294,0.000000,-0.986967,-0.008053,-0.160723,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2930;16;-0.160728,-0.000000,0.986999,0.000000,-0.007948,0.999968,-0.001294,0.000000,-0.986967,-0.008053,-0.160723,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2932;16;-0.161664,-0.000000,0.986846,0.000000,-0.007969,0.999967,-0.001306,0.000000,-0.986814,-0.008076,-0.161659,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 2935;16;-0.160728,0.000000,0.986999,0.000000,-0.007948,0.999968,-0.001294,0.000000,-0.986967,-0.008053,-0.160723,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3100;16;0.173648,0.000000,0.984808,0.000000,-0.000000,1.000000,0.000000,0.000000,-0.984808,-0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3104;16;0.191316,-0.000000,0.981528,0.000000,-0.006557,0.999978,0.001278,0.000000,-0.981506,-0.006680,0.191312,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3110;16;0.199814,0.000000,0.979834,0.000000,-0.006025,0.999981,0.001229,0.000000,-0.979815,-0.006149,0.199810,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3116;16;0.205530,0.000000,0.978651,0.000000,-0.004060,0.999991,0.000853,0.000000,-0.978642,-0.004149,0.205528,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3120;16;0.208359,-0.000000,0.978052,0.000000,-0.002928,0.999996,0.000624,0.000000,-0.978048,-0.002994,0.208358,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3124;16;0.209077,-0.000000,0.977899,0.000000,-0.001805,0.999998,0.000386,0.000000,-0.977898,-0.001845,0.209077,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3128;16;0.205722,-0.000000,0.978610,0.000000,-0.000728,1.000000,0.000153,0.000000,-0.978610,-0.000744,0.205722,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3132;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3150;16;0.173648,0.000000,0.984808,0.000000,0.000000,1.000000,0.000000,0.000000,-0.984808,0.000000,0.173648,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3154;16;0.191317,0.000000,0.981528,0.000000,-0.006557,0.999978,0.001278,0.000000,-0.981506,-0.006680,0.191313,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3160;16;0.199813,-0.000000,0.979834,0.000000,-0.006025,0.999981,0.001229,0.000000,-0.979815,-0.006149,0.199810,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3166;16;0.205530,-0.000000,0.978651,0.000000,-0.004060,0.999991,0.000853,0.000000,-0.978642,-0.004149,0.205528,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3170;16;0.208359,-0.000000,0.978052,0.000000,-0.002928,0.999996,0.000624,0.000000,-0.978048,-0.002994,0.208358,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3174;16;0.209077,0.000000,0.977899,0.000000,-0.001805,0.999998,0.000386,0.000000,-0.977897,-0.001845,0.209077,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3178;16;0.205722,-0.000000,0.978611,0.000000,-0.000728,1.000000,0.000153,0.000000,-0.978610,-0.000744,0.205721,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3182;16;0.173649,0.000000,0.984808,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.984808,-0.000000,0.173649,0.000000,0.000000,0.000000,1.407194,1.000000;;, + 3200;16;0.019359,-0.005230,0.999799,0.000000,0.002590,0.999983,0.005181,0.000000,-0.999809,0.002490,0.019372,0.000000,0.000000,0.000000,1.407194,1.000000;;; + } + } + + Animation Animation37 { + { Frame38_R_Wpn2 } + AnimationKey { + 4; + 9; + 0;16;0.999848,-0.000000,-0.017452,0.000000,-0.000000,-1.000000,-0.000000,0.000000,-0.017452,0.000000,-0.999848,0.000000,0.100000,-0.265000,0.600000,1.000000;;, + 5;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.100000,-0.265000,0.600000,1.000000;;, + 2850;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.100000,-0.265000,0.600000,1.000000;;, + 2900;16;1.000000,-0.000000,0.000283,0.000000,0.000014,0.998707,-0.050832,0.000000,-0.000282,0.050832,0.998707,0.000000,0.100000,-0.265000,0.600000,1.000000;;, + 2910;16;1.000000,-0.000000,0.000283,0.000000,0.000014,0.998707,-0.050832,0.000000,-0.000282,0.050832,0.998707,0.000000,0.100000,-0.265000,0.600000,1.000000;;, + 2930;16;1.000000,-0.000000,0.000283,0.000000,0.000014,0.998707,-0.050832,0.000000,-0.000282,0.050832,0.998707,0.000000,0.100000,-0.265000,0.600000,1.000000;;, + 2932;16;1.000000,0.000000,0.000283,0.000000,0.000014,0.998703,-0.050922,0.000000,-0.000283,0.050922,0.998703,0.000000,0.100000,-0.265000,0.600000,1.000000;;, + 2935;16;1.000000,0.000000,0.000283,0.000000,0.000014,0.998707,-0.050832,0.000000,-0.000282,0.050832,0.998707,0.000000,0.100000,-0.265000,0.600000,1.000000;;, + 3200;16;1.000000,-0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.100000,-0.265000,0.600000,1.000000;;; + } + } + + Animation Animation38 { + { Frame39_L_Wpn } + AnimationKey { + 4; + 170; + 0;16;0.999848,0.000000,-0.017452,0.000000,0.000000,1.000000,0.000000,0.000000,0.017452,0.000000,0.999848,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 5;16;1.000000,0.000000,-0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 10;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 50;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 54;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 60;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 66;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 70;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 74;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 78;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 82;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 103;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 108;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 112;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 116;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 124;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 132;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 150;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 152;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 160;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 180;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 202;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 210;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 250;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 252;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 260;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 280;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 300;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 302;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 310;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 330;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 350;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 360;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 400;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 420;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 430;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 440;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 455;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 470;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 500;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 517;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 525;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 540;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 607;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 615;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 665;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 670;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 680;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 715;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 720;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1010;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1020;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1030;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1110;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1130;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1135;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1150;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1210;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1220;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1235;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1250;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2015;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2020;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2022;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2025;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2400;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2420;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2430;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2435;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2460;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2490;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2500;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2530;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2535;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2635;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2640;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2740;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2755;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2800;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2830;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2850;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.500001,0.800000,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.500000,0.800000,1.000000;;, + 2930;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.500000,0.800000,1.000000;;, + 2932;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.501412,0.800000,1.000000;;, + 2935;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.500000,0.800000,1.000000;;, + 3100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000001,0.800001,1.000000;;, + 3104;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3110;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3116;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3124;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3132;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3150;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3154;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3160;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3166;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3170;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3174;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3178;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3182;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;, + 3200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.800001,1.000000;;; + } + } + + Animation Animation39 { + { Frame40_BarniaBaseR } + AnimationKey { + 4; + 126; + 0;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 5;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 10;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 50;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 54;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 60;16;-0.000000,1.000000,0.000000,0.000000,-0.004865,-0.000000,1.033046,0.000000,0.999989,0.000000,0.004710,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 66;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 78;16;-0.000000,1.000000,0.000000,0.000000,0.049025,-0.000000,1.031894,0.000000,0.998873,0.000000,-0.047456,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 103;16;-0.000000,1.000000,0.000000,0.000000,0.158313,-0.000000,1.020855,0.000000,0.988188,0.000000,-0.153247,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 108;16;0.000000,1.000000,0.000000,0.000000,0.178415,0.000000,1.017535,0.000000,0.984974,0.000000,-0.172706,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 112;16;-0.000000,1.000000,0.000000,0.000000,0.193663,-0.000000,1.014743,0.000000,0.982271,0.000000,-0.187466,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 120;16;-0.000000,1.000000,0.000000,0.000000,0.222928,-0.000000,1.008718,0.000000,0.976439,0.000000,-0.215794,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 124;16;0.000000,1.000000,0.000000,0.000000,0.237892,-0.000000,1.005294,0.000000,0.973125,0.000000,-0.230279,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 128;16;-0.000000,1.000000,0.000000,0.000000,0.251787,-0.000000,1.001904,0.000000,0.969843,0.000000,-0.243730,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 180;16;-0.000000,1.000000,0.000000,0.000000,0.405305,-0.000000,0.950230,0.000000,0.919822,0.000000,-0.392335,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 399;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 400;16;-0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 415;16;0.000000,1.000000,0.000000,0.000000,0.664037,-0.000000,0.791368,0.000000,0.766044,0.000000,-0.642788,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 430;16;0.000000,1.000000,0.000000,0.000000,0.664037,-0.000000,0.791368,0.000000,0.766044,0.000000,-0.642788,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 470;16;0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 500;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 510;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 517;16;-0.000000,1.000000,0.000000,0.000000,-0.000095,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 525;16;-0.000000,1.000000,0.000000,0.000000,-0.000109,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 540;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 600;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 607;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 615;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 650;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 655;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 665;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 670;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 680;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 700;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 715;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 720;16;-0.000000,1.000000,0.000000,0.000000,0.000046,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000045,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 725;16;-0.000000,1.000000,0.000000,0.000000,0.000084,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000081,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 735;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1000;16;0.000000,1.000000,0.000000,0.000000,-0.010890,-0.000000,1.033000,0.000000,0.999944,0.000000,0.010541,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1010;16;0.000000,1.000000,0.000000,0.000000,-0.011114,-0.000000,1.032998,0.000000,0.999942,0.000000,0.010759,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1050;16;-0.000000,1.000000,0.000000,0.000000,-0.009064,-0.000000,1.033018,0.000000,0.999961,0.000000,0.008774,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1100;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1110;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1120;16;-0.000000,1.000000,0.000000,0.000000,-0.009546,-0.000000,1.033014,0.000000,0.999957,0.000000,0.009241,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1130;16;-0.000000,1.000000,0.000000,0.000000,-0.006630,-0.000000,1.033037,0.000000,0.999979,0.000000,0.006418,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1135;16;-0.000000,1.000000,0.000000,0.000000,-0.005706,-0.000000,1.033042,0.000000,0.999985,0.000000,0.005524,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1150;16;-0.000000,1.000000,0.000000,0.000000,-0.006630,-0.000000,1.033037,0.000000,0.999979,0.000000,0.006418,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1200;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1210;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1220;16;-0.000000,1.000000,0.000000,0.000000,-0.010709,-0.000000,1.033002,0.000000,0.999946,0.000000,0.010367,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1230;16;-0.000000,1.000000,0.000000,0.000000,-0.009547,-0.000000,1.033014,0.000000,0.999957,0.000000,0.009241,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1235;16;-0.000000,1.000000,0.000000,0.000000,-0.008812,-0.000000,1.033020,0.000000,0.999964,0.000000,0.008530,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1250;16;-0.000000,1.000000,0.000000,0.000000,-0.006630,-0.000000,1.033037,0.000000,0.999979,0.000000,0.006418,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1500;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1510;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1523;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1530;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1532;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1536;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1550;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1560;16;-0.000000,1.000000,0.000000,0.000000,-0.006530,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006321,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1600;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1620;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1630;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1632;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1636;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1650;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1700;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1725;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1730;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1732;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1736;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1750;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1760;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2000;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2050;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2060;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2065;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2070;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2071;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2072;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2075;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2100;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2115;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2120;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2121;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2122;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2125;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2200;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2220;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2230;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2235;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2260;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2400;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2420;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2430;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2600;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2630;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2635;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2640;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2650;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2700;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2730;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2735;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2740;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2755;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2800;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2830;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2835;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2850;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2900;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2910;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2930;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2932;16;-0.000000,1.000000,0.000000,0.000000,-0.006536,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006327,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2935;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3100;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3104;16;0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3110;16;-0.000000,1.000000,0.000000,0.000000,-0.004865,-0.000000,1.033046,0.000000,0.999989,0.000000,0.004710,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3116;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3128;16;-0.000000,1.000000,0.000000,0.000000,0.049025,-0.000000,1.031894,0.000000,0.998873,0.000000,-0.047456,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3150;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3154;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3160;16;-0.000000,1.000000,0.000000,0.000000,-0.004865,-0.000000,1.033046,0.000000,0.999989,0.000000,0.004710,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3166;16;-0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3178;16;-0.000000,1.000000,0.000000,0.000000,0.049025,-0.000000,1.031894,0.000000,0.998873,0.000000,-0.047456,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3200;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;; + } + } + + Animation Animation40 { + { Frame41_BarniaBaseL } + AnimationKey { + 4; + 127; + 0;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 5;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 10;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 50;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 54;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 60;16;-0.000000,1.000000,0.000000,0.000000,-0.007878,-0.000000,1.033028,0.000000,0.999971,0.000000,0.007626,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 66;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 78;16;0.000000,1.000000,0.000000,0.000000,0.079326,-0.000000,1.030008,0.000000,0.997048,0.000000,-0.076787,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 103;16;0.000000,1.000000,0.000000,0.000000,0.254678,-0.000000,1.001173,0.000000,0.969135,0.000000,-0.246529,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 108;16;-0.000000,1.000000,0.000000,0.000000,0.286513,-0.000000,0.992532,0.000000,0.960771,0.000000,-0.277344,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 112;16;-0.000000,1.000000,0.000000,0.000000,0.310539,-0.000000,0.985279,0.000000,0.953750,0.000000,-0.300602,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 120;16;0.000000,1.000000,0.000000,0.000000,0.356322,-0.000000,0.969661,0.000000,0.938632,0.000000,-0.344919,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 124;16;0.000000,1.000000,0.000000,0.000000,0.379545,-0.000000,0.960809,0.000000,0.930063,0.000000,-0.367400,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 128;16;-0.000000,1.000000,0.000000,0.000000,0.400985,-0.000000,0.952061,0.000000,0.921595,0.000000,-0.388154,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 180;16;0.000000,1.000000,0.000000,0.000000,0.627454,-0.000000,0.820677,0.000000,0.794415,0.000000,-0.607375,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 399;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 400;16;-0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 415;16;0.000000,1.000000,0.000000,0.000000,0.664037,-0.000000,0.791368,0.000000,0.766044,0.000000,-0.642788,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 430;16;0.000000,1.000000,0.000000,0.000000,0.884858,0.000000,0.533136,0.000000,0.516076,0.000000,-0.856543,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 440;16;0.000000,1.000000,0.000000,0.000000,0.884858,-0.000000,0.533136,0.000000,0.516076,0.000000,-0.856543,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 470;16;-0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 500;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 510;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 517;16;-0.000000,1.000000,0.000000,0.000000,-0.000095,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000092,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 525;16;-0.000000,1.000000,0.000000,0.000000,-0.000109,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000106,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 540;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 600;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 607;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 615;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 650;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 655;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 665;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 670;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 680;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 700;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 715;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 720;16;-0.000000,1.000000,0.000000,0.000000,0.000046,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000045,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 725;16;-0.000000,1.000000,0.000000,0.000000,0.000084,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000081,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 735;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1000;16;0.000000,1.000000,0.000000,0.000000,-0.010890,-0.000000,1.033000,0.000000,0.999944,0.000000,0.010541,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1010;16;0.000000,1.000000,0.000000,0.000000,-0.011114,-0.000000,1.032998,0.000000,0.999942,0.000000,0.010759,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1050;16;-0.000000,1.000000,0.000000,0.000000,-0.009064,-0.000000,1.033018,0.000000,0.999961,0.000000,0.008774,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1100;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1110;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1120;16;-0.000000,1.000000,0.000000,0.000000,-0.009546,-0.000000,1.033014,0.000000,0.999957,0.000000,0.009241,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1130;16;-0.000000,1.000000,0.000000,0.000000,-0.006630,-0.000000,1.033037,0.000000,0.999979,0.000000,0.006418,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1135;16;-0.000000,1.000000,0.000000,0.000000,-0.005706,-0.000000,1.033042,0.000000,0.999985,0.000000,0.005524,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1150;16;-0.000000,1.000000,0.000000,0.000000,-0.006630,-0.000000,1.033037,0.000000,0.999979,0.000000,0.006418,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1200;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1210;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1220;16;-0.000000,1.000000,0.000000,0.000000,-0.010709,-0.000000,1.033002,0.000000,0.999946,0.000000,0.010367,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1230;16;-0.000000,1.000000,0.000000,0.000000,-0.009547,-0.000000,1.033014,0.000000,0.999957,0.000000,0.009241,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1235;16;-0.000000,1.000000,0.000000,0.000000,-0.008812,-0.000000,1.033020,0.000000,0.999964,0.000000,0.008530,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1250;16;-0.000000,1.000000,0.000000,0.000000,-0.006630,-0.000000,1.033037,0.000000,0.999979,0.000000,0.006418,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1500;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1510;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1523;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1530;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1532;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1536;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1550;16;-0.000000,1.000000,0.000000,0.000000,-0.006526,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006317,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1560;16;-0.000000,1.000000,0.000000,0.000000,-0.006530,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006321,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1600;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1620;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1630;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1632;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1636;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1650;16;-0.000000,1.000000,0.000000,0.000000,-0.006572,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006361,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1700;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1725;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1730;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1732;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1736;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1750;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 1760;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2000;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2050;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2060;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2065;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2070;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2071;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2072;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2075;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2100;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2115;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2120;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2121;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2122;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2125;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2200;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2220;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2230;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2235;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2260;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2400;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2420;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2430;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2600;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2630;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2635;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2640;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2650;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2700;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2730;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2735;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2740;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2755;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2800;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2830;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2835;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2850;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2900;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2910;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2930;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2932;16;-0.000000,1.000000,0.000000,0.000000,-0.006536,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006327,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 2935;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3100;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3104;16;0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3110;16;-0.000000,1.000000,0.000000,0.000000,-0.007878,-0.000000,1.033028,0.000000,0.999971,0.000000,0.007626,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3116;16;-0.000000,1.000000,0.000000,0.000000,-0.000001,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000001,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3128;16;0.000000,1.000000,0.000000,0.000000,0.079326,-0.000000,1.030008,0.000000,0.997048,0.000000,-0.076787,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3150;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3154;16;-0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3160;16;-0.000000,1.000000,0.000000,0.000000,-0.007878,-0.000000,1.033028,0.000000,0.999971,0.000000,0.007626,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3166;16;-0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.033058,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3178;16;-0.000000,1.000000,0.000000,0.000000,0.079325,-0.000000,1.030008,0.000000,0.997048,0.000000,-0.076787,0.000000,0.000000,0.000000,0.000000,1.000000;;, + 3200;16;-0.000000,1.000000,0.000000,0.000000,-0.006518,-0.000000,1.033037,0.000000,0.999980,0.000000,0.006309,0.000000,0.000000,0.000000,0.000000,1.000000;;; + } + } + + Animation Animation41 { + { Frame42_BarniaBaseL_2 } + AnimationKey { + 4; + 95; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.999848,0.017452,0.000000,0.000000,-0.017452,0.999848,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 10;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 50;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 54;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 60;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 66;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 78;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 103;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 108;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 112;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 124;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 720;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2400;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2420;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2430;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2635;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2640;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2740;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2755;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2800;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2830;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2850;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2930;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2932;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2935;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3104;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3110;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3116;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3150;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3154;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3160;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3166;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3178;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;; + } + } + + Animation Animation42 { + { Frame43_BarniaBaseR_2 } + AnimationKey { + 4; + 95; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,0.999848,0.017452,0.000000,0.000000,-0.017452,0.999848,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 10;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 50;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 54;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 60;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 66;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 78;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 103;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 108;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 112;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 124;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 720;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2000;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2400;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2420;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2430;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2635;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2640;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2740;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2755;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2800;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2830;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2850;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2930;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2932;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 2935;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3104;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3110;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3116;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3150;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3154;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3160;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3166;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3178;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;, + 3200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.500000,1.000000;;; + } + } + + Animation Animation43 { + { Frame44_SW2_R_mp } + AnimationKey { + 4; + 92; + 0;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 5;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 10;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 50;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 54;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 60;16;0.732611,0.000000,-0.680647,0.000000,0.000000,1.000000,0.000000,0.000000,0.680647,0.000000,0.732611,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 66;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 78;16;0.731828,0.000000,-0.681489,0.000000,0.000000,1.000000,0.000000,0.000000,0.681489,0.000000,0.731828,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 103;16;0.730289,0.000000,-0.683139,0.000000,0.000000,1.000000,0.000000,0.000000,0.683139,0.000000,0.730289,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 108;16;0.730165,0.000000,-0.683270,0.000000,0.000000,1.000000,0.000000,0.000000,0.683270,0.000000,0.730165,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 112;16;0.730130,0.000000,-0.683308,0.000000,0.000000,1.000000,0.000000,0.000000,0.683308,0.000000,0.730130,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 120;16;0.730033,0.000000,-0.683412,0.000000,0.000000,1.000000,0.000000,0.000000,0.683412,0.000000,0.730033,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 124;16;0.729966,0.000000,-0.683483,0.000000,0.000000,1.000000,0.000000,0.000000,0.683483,0.000000,0.729966,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 128;16;0.729934,0.000000,-0.683518,0.000000,0.000000,1.000000,0.000000,0.000000,0.683518,0.000000,0.729934,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 650;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 655;16;0.990510,0.000000,0.137444,0.000000,0.000000,1.000000,0.000000,0.000000,-0.137444,0.000000,0.990510,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 720;16;0.801214,0.000000,-0.598378,0.000000,0.000000,1.000000,0.000000,0.000000,0.598378,0.000000,0.801214,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 735;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1000;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1050;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1100;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1200;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1500;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1510;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1523;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1530;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1532;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1536;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1550;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1560;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1600;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1620;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1630;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1632;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1636;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1650;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1700;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1725;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1730;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1732;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1736;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1750;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 1760;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2000;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2050;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2060;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2065;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2070;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2071;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2072;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2075;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2100;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2115;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2120;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2121;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2122;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2125;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2200;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2220;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2230;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2235;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2260;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2400;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2420;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2430;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2600;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2650;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2700;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2730;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2735;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2740;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2755;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2800;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2830;16;0.732542,0.000000,-0.680722,0.000000,0.000000,1.000000,0.000000,0.000000,0.680722,0.000000,0.732542,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2835;16;0.860742,0.000000,-0.509042,0.000000,0.000000,1.000000,0.000000,0.000000,0.509042,0.000000,0.860742,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2850;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2900;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2910;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2930;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2932;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 2935;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3100;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3104;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3110;16;0.732611,0.000000,-0.680647,0.000000,0.000000,1.000000,0.000000,0.000000,0.680647,0.000000,0.732611,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3116;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3128;16;0.731828,0.000000,-0.681489,0.000000,0.000000,1.000000,0.000000,0.000000,0.681489,0.000000,0.731828,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3150;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3154;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3160;16;0.732611,0.000000,-0.680647,0.000000,0.000000,1.000000,0.000000,0.000000,0.680647,0.000000,0.732611,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3166;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3178;16;0.731828,0.000000,-0.681489,0.000000,0.000000,1.000000,0.000000,0.000000,0.681489,0.000000,0.731828,0.000000,1.300000,-1.000000,3.000000,1.000000;;, + 3200;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,-1.000000,3.000000,1.000000;;; + } + } + + Animation Animation44 { + { Frame45_SW2_R_mp_2 } + AnimationKey { + 4; + 87; + 0;16;-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 5;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 60;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 78;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 103;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 108;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 112;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 120;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 124;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 128;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 160;16;0.000000,1.000000,-0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 180;16;-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 200;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 650;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 655;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 720;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 735;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1050;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1500;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1510;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1523;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1530;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1532;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1536;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1550;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1560;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1600;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1620;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1630;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1632;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1636;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1650;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1700;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1725;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1730;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1732;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1736;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1750;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1760;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2050;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2060;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2065;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2070;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2071;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2072;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2075;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2100;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2115;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2120;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2121;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2122;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2125;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2200;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2220;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2230;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2235;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2260;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2400;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2420;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2430;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2500;16;-0.000000,1.000000,-0.000000,0.000000,-0.784776,0.000000,0.619780,0.000000,0.619780,0.000000,0.784776,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2520;16;0.000000,1.000000,-0.000000,0.000000,-0.766044,0.000000,0.642788,0.000000,0.642788,0.000000,0.766044,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2530;16;0.000000,1.000000,-0.000000,0.000000,-0.784776,0.000000,0.619779,0.000000,0.619779,0.000000,0.784776,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2540;16;0.000000,1.000000,-0.000000,0.000000,-0.784776,0.000000,0.619779,0.000000,0.619779,0.000000,0.784776,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2550;16;0.000000,1.000000,-0.000000,0.000000,-0.784776,0.000000,0.619779,0.000000,0.619779,0.000000,0.784776,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2600;16;-0.000000,1.000000,-0.000000,0.000000,0.000001,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000001,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2620;16;-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2630;16;-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2635;16;-0.000000,1.000000,-0.000000,0.000000,0.012840,0.000000,0.999918,0.000000,0.999918,0.000000,-0.012840,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2640;16;-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2700;16;0.000000,1.000000,-0.000000,0.000000,-0.658689,0.000000,0.752415,0.000000,0.752415,0.000000,0.658689,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2715;16;-0.000000,1.000000,-0.000000,0.000000,-0.817978,0.000000,0.575250,0.000000,0.575250,0.000000,0.817978,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2730;16;-0.000000,1.000000,-0.000000,0.000000,-0.793509,0.000000,0.608558,0.000000,0.608558,0.000000,0.793509,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2820;16;-0.000000,1.000000,-0.000000,0.000000,-0.642788,0.000000,0.766044,0.000000,0.766044,0.000000,0.642788,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2830;16;-0.000000,1.000000,-0.000000,0.000000,-0.642788,0.000000,0.766044,0.000000,0.766044,0.000000,0.642788,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2835;16;-0.000000,1.000000,-0.000000,0.000000,-0.642788,0.000000,0.766044,0.000000,0.766044,0.000000,0.642788,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2850;16;0.000000,1.000000,-0.000000,0.000000,-0.658689,0.000000,0.752415,0.000000,0.752415,0.000000,0.658689,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2900;16;0.000000,1.000000,-0.000000,0.000000,-0.557880,0.000000,0.829922,0.000000,0.829922,0.000000,0.557880,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2910;16;0.000000,1.000000,-0.000000,0.000000,-0.557880,0.000000,0.829922,0.000000,0.829922,0.000000,0.557880,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2930;16;0.000000,1.000000,-0.000000,0.000000,-0.557880,0.000000,0.829922,0.000000,0.829922,0.000000,0.557880,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2932;16;0.000000,1.000000,-0.000000,0.000000,-0.558417,0.000000,0.829560,0.000000,0.829560,0.000000,0.558417,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2935;16;0.000000,1.000000,-0.000000,0.000000,-0.557880,0.000000,0.829921,0.000000,0.829921,0.000000,0.557880,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3110;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3128;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3160;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3178;16;-0.000000,1.000000,-0.000000,0.000000,-0.342021,0.000000,0.939692,0.000000,0.939692,0.000000,0.342021,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3200;16;-0.000000,1.000000,-0.000000,0.000000,-0.658689,0.000000,0.752415,0.000000,0.752415,0.000000,0.658689,0.000000,0.000000,0.000000,1.000000,1.000000;;; + } + } + + Animation Animation45 { + { Frame46_SW2_L_mp } + AnimationKey { + 4; + 89; + 0;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 5;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 10;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 50;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 60;16;0.731977,0.000000,-0.681329,0.000000,0.000000,1.000000,0.000000,0.000000,0.681329,0.000000,0.731977,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 78;16;0.730481,0.000000,-0.682933,0.000000,0.000000,1.000000,0.000000,0.000000,0.682933,0.000000,0.730481,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 103;16;0.728448,0.000000,-0.685101,0.000000,0.000000,1.000000,0.000000,0.000000,0.685101,0.000000,0.728448,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 108;16;0.728312,0.000000,-0.685246,0.000000,0.000000,1.000000,0.000000,0.000000,0.685246,0.000000,0.728312,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 112;16;0.728296,0.000000,-0.685262,0.000000,0.000000,1.000000,0.000000,0.000000,0.685262,0.000000,0.728296,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 120;16;0.728231,0.000000,-0.685332,0.000000,0.000000,1.000000,0.000000,0.000000,0.685332,0.000000,0.728231,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 124;16;0.728181,0.000000,-0.685385,0.000000,0.000000,1.000000,0.000000,0.000000,0.685385,0.000000,0.728181,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 128;16;0.728165,0.000000,-0.685402,0.000000,0.000000,1.000000,0.000000,0.000000,0.685402,0.000000,0.728165,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 650;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 655;16;0.994881,0.000000,0.101056,0.000000,0.000000,1.000000,0.000000,0.000000,-0.101056,0.000000,0.994881,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 720;16;0.798552,0.000000,-0.601925,0.000000,0.000000,1.000000,0.000000,0.000000,0.601925,0.000000,0.798552,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 735;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1000;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1050;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1100;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1200;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1500;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1510;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1523;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1530;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1532;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1536;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1550;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1560;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1600;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1620;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1630;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1632;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1636;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1650;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1700;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1725;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1730;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1732;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1736;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1750;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 1760;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2000;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2050;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2060;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2065;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2070;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2071;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2072;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2075;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2100;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2115;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2120;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2121;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2122;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2125;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2200;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2220;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2230;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2235;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2260;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2400;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2420;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2430;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2600;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2630;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2635;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2640;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2650;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2700;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2730;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2735;16;0.876306,0.000000,-0.481755,0.000000,0.000000,1.000000,0.000000,0.000000,0.481755,0.000000,0.876306,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2740;16;0.652098,0.000000,-0.758134,0.000000,0.000000,1.000000,0.000000,0.000000,0.758134,0.000000,0.652098,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2755;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2800;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2830;16;0.732542,0.000000,-0.680722,0.000000,0.000000,1.000000,0.000000,0.000000,0.680722,0.000000,0.732542,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2835;16;0.855365,0.000000,-0.518026,0.000000,0.000000,1.000000,0.000000,0.000000,0.518026,0.000000,0.855365,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2850;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2900;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2910;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2930;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2932;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 2935;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 3100;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 3110;16;0.731977,0.000000,-0.681329,0.000000,0.000000,1.000000,0.000000,0.000000,0.681329,0.000000,0.731977,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 3128;16;0.730481,0.000000,-0.682933,0.000000,0.000000,1.000000,0.000000,0.000000,0.682933,0.000000,0.730481,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 3150;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 3160;16;0.731977,0.000000,-0.681329,0.000000,0.000000,1.000000,0.000000,0.000000,0.681329,0.000000,0.731977,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 3178;16;0.730481,0.000000,-0.682933,0.000000,0.000000,1.000000,0.000000,0.000000,0.682933,0.000000,0.730481,0.000000,1.300000,1.000000,3.000000,1.000000;;, + 3200;16;0.732543,0.000000,-0.680721,0.000000,0.000000,1.000000,0.000000,0.000000,0.680721,0.000000,0.732543,0.000000,1.300000,1.000000,3.000000,1.000000;;; + } + } + + Animation Animation46 { + { Frame47_SW2_L_mp_2 } + AnimationKey { + 4; + 83; + 0;16;-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 5;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 60;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 78;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 103;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 108;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 112;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 120;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 124;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 128;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 160;16;0.000000,1.000000,-0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 180;16;-0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,1.000000,0.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 200;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 650;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 655;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 720;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 735;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1050;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1500;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1510;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1523;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1530;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1532;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1536;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1550;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1560;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1600;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1620;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1630;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1632;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1636;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1650;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1700;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1725;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1730;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1732;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1736;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1750;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 1760;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2050;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2060;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2065;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2070;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2071;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2072;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2075;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2100;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2115;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2120;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2121;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2122;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2125;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2200;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2220;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2230;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2235;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2260;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2400;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2420;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2430;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2550;16;-0.000000,1.000000,-0.000000,0.000000,0.139707,0.000000,0.990193,0.000000,0.990193,0.000000,-0.139707,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2600;16;0.000000,1.000000,-0.000000,0.000000,-0.791224,0.000000,0.611526,0.000000,0.611526,0.000000,0.791224,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2620;16;0.000000,1.000000,-0.000000,0.000000,-0.791223,0.000000,0.611527,0.000000,0.611527,0.000000,0.791223,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2630;16;-0.000000,1.000000,-0.000000,0.000000,-0.791223,0.000000,0.611527,0.000000,0.611527,0.000000,0.791223,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2635;16;-0.000000,1.000000,-0.000000,0.000000,-0.787096,0.000000,0.616830,0.000000,0.616830,0.000000,0.787096,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2640;16;0.000000,1.000000,-0.000000,0.000000,-0.787248,0.000000,0.616636,0.000000,0.616636,0.000000,0.787248,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2655;16;-0.000000,1.000000,-0.000000,0.000000,-0.787689,0.000000,0.616073,0.000000,0.616073,0.000000,0.787689,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2700;16;-0.000000,1.000000,-0.000000,0.000000,-0.371370,0.000000,0.928485,0.000000,0.928485,0.000000,0.371370,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2820;16;0.000000,1.000000,-0.000000,0.000000,-0.662619,0.000000,0.748956,0.000000,0.748956,0.000000,0.662619,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2830;16;0.000000,1.000000,-0.000000,0.000000,-0.662619,0.000000,0.748956,0.000000,0.748956,0.000000,0.662619,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2835;16;0.000000,1.000000,-0.000000,0.000000,-0.662619,0.000000,0.748956,0.000000,0.748956,0.000000,0.662619,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2840;16;0.000000,1.000000,-0.000000,0.000000,-0.662619,0.000000,0.748956,0.000000,0.748956,0.000000,0.662619,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2850;16;0.000000,1.000000,-0.000000,0.000000,-0.662619,0.000000,0.748956,0.000000,0.748956,0.000000,0.662619,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2900;16;-0.000000,1.000000,-0.000000,0.000000,-0.189314,0.000000,0.981917,0.000000,0.981917,0.000000,0.189314,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2910;16;0.000000,1.000000,-0.000000,0.000000,-0.189315,0.000000,0.981916,0.000000,0.981916,0.000000,0.189315,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2930;16;0.000000,1.000000,-0.000000,0.000000,-0.189315,0.000000,0.981916,0.000000,0.981916,0.000000,0.189315,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2932;16;0.000000,1.000000,-0.000000,0.000000,-0.188899,0.000000,0.981996,0.000000,0.981996,0.000000,0.188899,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 2935;16;0.000000,1.000000,-0.000000,0.000000,-0.189315,0.000000,0.981916,0.000000,0.981916,0.000000,0.189315,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3110;16;0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3128;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3160;16;-0.000000,1.000000,-0.000000,0.000000,-0.342020,0.000000,0.939693,0.000000,0.939693,0.000000,0.342020,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3178;16;-0.000000,1.000000,-0.000000,0.000000,-0.342021,0.000000,0.939692,0.000000,0.939692,0.000000,0.342021,0.000000,0.000000,0.000000,1.000000,1.000000;;, + 3200;16;0.000000,1.000000,-0.000000,0.000000,-0.662619,0.000000,0.748956,0.000000,0.748956,0.000000,0.662619,0.000000,0.000000,0.000000,1.000000,1.000000;;; + } + } + + Animation Animation47 { + { Frame48_L_Mune_A2 } + AnimationKey { + 4; + 71; + 0;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 60;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 78;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 103;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 108;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 112;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 124;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 720;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2400;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2420;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2430;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2740;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2930;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2932;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2935;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3110;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3128;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3160;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3178;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;; + } + } + + Animation Animation48 { + { Frame49_R_Mune2 } + AnimationKey { + 4; + 71; + 0;16;0.999848,0.000000,0.017452,0.000000,0.000000,1.000000,0.000000,0.000000,-0.017452,0.000000,0.999848,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 5;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 60;16;0.999996,0.000000,-0.002869,0.000000,0.000000,1.000000,0.000000,0.000000,0.002869,0.000000,0.999996,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 78;16;0.999996,0.000000,-0.002699,0.000000,0.000000,1.000000,0.000000,0.000000,0.002699,0.000000,0.999996,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 103;16;0.999998,0.000000,-0.001893,0.000000,0.000000,1.000000,0.000000,0.000000,0.001893,0.000000,0.999998,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 108;16;0.999998,0.000000,-0.001871,0.000000,0.000000,1.000000,0.000000,0.000000,0.001871,0.000000,0.999998,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 112;16;0.999998,0.000000,-0.001892,0.000000,0.000000,1.000000,0.000000,0.000000,0.001892,0.000000,0.999998,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 120;16;0.999998,0.000000,-0.001864,0.000000,0.000000,1.000000,0.000000,0.000000,0.001864,0.000000,0.999998,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 124;16;0.999998,0.000000,-0.001850,0.000000,0.000000,1.000000,0.000000,0.000000,0.001850,0.000000,0.999998,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 128;16;0.999998,0.000000,-0.001836,0.000000,0.000000,1.000000,0.000000,0.000000,0.001836,0.000000,0.999998,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 655;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 720;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1500;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1510;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1523;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1530;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1532;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1536;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1550;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1560;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1600;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1620;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1630;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1632;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1636;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1700;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1725;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1730;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1732;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1736;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1750;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 1760;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2050;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2060;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2065;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2070;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2071;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2072;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2075;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2100;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2115;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2120;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2121;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2122;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2125;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2200;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2220;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2230;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2235;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2260;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2400;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2420;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2430;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2650;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2735;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2740;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2835;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2900;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2910;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2930;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2932;16;1.000000,0.000000,0.000008,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000008,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 2935;16;1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3110;16;0.999996,0.000000,-0.002869,0.000000,0.000000,1.000000,0.000000,0.000000,0.002869,0.000000,0.999996,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3128;16;0.999996,0.000000,-0.002699,0.000000,0.000000,1.000000,0.000000,0.000000,0.002699,0.000000,0.999996,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3160;16;0.999996,0.000000,-0.002869,0.000000,0.000000,1.000000,0.000000,0.000000,0.002869,0.000000,0.999996,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3178;16;0.999996,0.000000,-0.002698,0.000000,0.000000,1.000000,0.000000,0.000000,0.002698,0.000000,0.999996,0.000000,0.000000,0.000000,1.051190,1.000000;;, + 3200;16;1.000000,0.000000,-0.000122,0.000000,0.000000,1.000000,0.000000,0.000000,0.000122,0.000000,1.000000,0.000000,0.000000,0.000000,1.051190,1.000000;;; + } + } + + Animation Animation49 { + { Frame50_M_barnia1_1 } + AnimationKey { + 4; + 72; + 0;16;-0.058452,-0.000000,-0.998290,0.000000,0.017423,0.999848,-0.001020,0.000000,0.998138,-0.017452,-0.058443,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 5;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,-0.000000,0.000000,0.998290,-0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 10;16;-0.058452,0.000000,-0.998290,0.000000,-0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 60;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 78;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 103;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 108;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 112;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 120;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 124;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 128;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 650;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 655;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 720;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 735;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1050;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1500;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1510;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1523;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1530;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1532;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1536;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1550;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1560;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1600;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1620;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1630;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1632;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1636;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1650;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1700;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1725;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1730;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1732;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1736;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1750;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1760;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2050;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2060;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2065;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2070;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2071;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2072;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2075;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2100;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2115;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2120;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2121;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2122;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2125;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2200;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2220;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2230;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2235;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2260;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2400;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2420;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2430;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2650;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2735;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2740;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2835;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2900;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2910;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2930;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2932;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2935;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3110;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3128;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3160;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3178;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3200;16;-0.058452,0.000000,-0.998290,0.000000,0.000000,1.000000,0.000000,0.000000,0.998290,0.000000,-0.058452,0.000000,0.000000,0.000000,3.000000,1.000000;;; + } + } + + Animation Animation50 { + { Frame51_M_barnia1_2 } + AnimationKey { + 4; + 72; + 0;16;0.029667,0.000000,0.999560,0.000000,0.000000,1.000000,0.000000,0.000000,-0.999560,0.000000,0.029667,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 5;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 10;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 60;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 78;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 103;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 108;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 112;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 120;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 124;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 128;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 650;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 655;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 720;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 735;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1050;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1500;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1510;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1523;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1530;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1532;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1536;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1550;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1560;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1600;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1620;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1630;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1632;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1636;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1650;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1700;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1725;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1730;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1732;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1736;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1750;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 1760;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2050;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2060;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2065;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2070;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2071;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2072;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2075;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2100;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2115;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2120;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2121;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2122;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2125;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2200;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2220;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2230;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2235;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2260;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2400;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2420;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2430;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2650;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2735;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2740;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2835;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2900;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2910;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2930;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2932;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 2935;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 3110;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 3128;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 3160;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 3178;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;, + 3200;16;0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,2.548788,1.000000;;; + } + } + + Animation Animation51 { + { Frame52_M_barnia2_1 } + AnimationKey { + 4; + 72; + 0;16;-0.399620,0.000000,-0.916681,0.000000,0.015998,0.999848,-0.006974,0.000000,0.916541,-0.017452,-0.399560,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 5;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 10;16;-0.399620,0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 60;16;-0.399620,0.000000,-0.916681,0.000000,-0.000000,1.000000,0.000000,0.000000,0.916681,0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 78;16;-0.399620,0.000000,-0.916681,0.000000,-0.000000,1.000000,0.000000,0.000000,0.916681,0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 103;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 108;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 112;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 120;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 124;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 128;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 650;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 655;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 720;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 735;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1050;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1500;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1510;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1523;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1530;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1532;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1536;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1550;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1560;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1600;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1620;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1630;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1632;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1636;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1650;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1700;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1725;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1730;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1732;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1736;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1750;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 1760;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2050;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2060;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2065;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2070;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2071;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2072;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2075;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2100;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2115;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2120;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2121;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2122;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2125;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2200;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2220;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2230;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2235;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2260;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2400;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2420;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2430;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2650;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2735;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2740;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2835;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2900;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2910;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2930;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2932;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 2935;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3110;16;-0.399620,0.000000,-0.916681,0.000000,-0.000000,1.000000,0.000000,0.000000,0.916681,0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3128;16;-0.399620,0.000000,-0.916681,0.000000,-0.000000,1.000000,0.000000,0.000000,0.916681,0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3160;16;-0.399620,0.000000,-0.916681,0.000000,-0.000000,1.000000,0.000000,0.000000,0.916681,0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3178;16;-0.399620,-0.000000,-0.916681,0.000000,-0.000000,1.000000,0.000000,0.000000,0.916681,0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;, + 3200;16;-0.399620,-0.000000,-0.916681,0.000000,0.000000,1.000000,-0.000000,0.000000,0.916681,-0.000000,-0.399620,0.000000,0.000000,0.000000,3.000000,1.000000;;; + } + } + + Animation Animation52 { + { Frame53_M_barnia2_2 } + AnimationKey { + 4; + 72; + 0;16;-0.277314,-0.000000,0.960779,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.960779,-0.000000,-0.277314,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 5;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 10;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 60;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 78;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 103;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 108;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 112;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 120;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 124;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 128;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 650;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 655;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 720;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 735;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1050;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1500;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1510;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1523;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1530;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1532;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1536;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1550;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1560;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1600;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1620;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1630;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1632;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1636;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1650;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1700;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1725;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1730;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1732;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1736;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1750;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 1760;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2050;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2060;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2065;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2070;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2071;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2072;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2075;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2100;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2115;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2120;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2121;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2122;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2125;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2200;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2220;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2230;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2235;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2260;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2400;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2420;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2430;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2650;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2735;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2740;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2835;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2900;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2910;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2930;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2932;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 2935;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 3110;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 3128;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 3160;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 3178;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;, + 3200;16;-0.376224,0.000000,0.926529,0.000000,-0.000000,1.000000,-0.000000,0.000000,-0.926529,-0.000000,-0.376224,0.000000,0.000000,0.000000,2.261806,1.000000;;; + } + } +} diff --git a/examples/models/xfile/texture/SSR06_Born2_bp_base.png b/examples/models/xfile/texture/SSR06_Born2_bp_base.png new file mode 100644 index 0000000000000000000000000000000000000000..a5b7ab06821ccf2c531663a96f7762e4982ff753 Binary files /dev/null and b/examples/models/xfile/texture/SSR06_Born2_bp_base.png differ diff --git a/examples/models/xfile/texture/SSR06_Born2_dif.png b/examples/models/xfile/texture/SSR06_Born2_dif.png new file mode 100644 index 0000000000000000000000000000000000000000..bcd9af82045e781e7fede36b469185a8d4259349 Binary files /dev/null and b/examples/models/xfile/texture/SSR06_Born2_dif.png differ diff --git a/examples/webgl_loader_gltf.html b/examples/webgl_loader_gltf.html index a309c6f86990234d117cce755f18f7ab12aa35c3..a5743a46c32677f741f601fe37ba272cacaf50d2 100644 --- a/examples/webgl_loader_gltf.html +++ b/examples/webgl_loader_gltf.html @@ -1,7 +1,7 @@ - three.js webgl - glTF + three.js webgl - glTF 1.0 + + + +
+ three.js - + glTF 2.0 loader +
+ BoomBox by Microsoft +
+
+
+
Loading...
+
+
+ Model + +
+
+ Camera + +
+
+ Animations + Play +
+
+ Extension + +
+
+ + + + + + + + diff --git a/examples/webgl_loader_x.html b/examples/webgl_loader_x.html new file mode 100644 index 0000000000000000000000000000000000000000..dc8eeba691c1b6f73525392e4b2cbe5eb49c6b2f --- /dev/null +++ b/examples/webgl_loader_x.html @@ -0,0 +1,336 @@ + + + + + three.js webgl - loaders - X-File loader + + + + + + + + +
+ three.js - X-File Loader test
+
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/webvr_daydream.html b/examples/webvr_daydream.html index c8aad669e69f5cae9e41af76885306dda3f20290..5d85f505eb4275384f3c26e5ddadc3251bd18734 100644 --- a/examples/webvr_daydream.html +++ b/examples/webvr_daydream.html @@ -4,8 +4,8 @@ three.js webvr - daydream - - + +