diff --git a/build/Three.js b/build/Three.js index 8c983369..d7d0b9f4 100755 --- a/build/Three.js +++ b/build/Three.js @@ -49,7 +49,7 @@ THREE.Quaternion.prototype={set:function(b,d,c,f){this.x=b;this.y=d;this.z=c;thi b.y*f;this.z=b.z*f;this.w=Math.cos(c);return this},calculateW:function(){this.w=-Math.sqrt(Math.abs(1-this.x*this.x-this.y*this.y-this.z*this.z));return this},inverse:function(){this.x*=-1;this.y*=-1;this.z*=-1;return this},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)},normalize:function(){var b=Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w);if(b==0)this.w=this.z=this.y=this.x=0;else{b=1/b;this.x*=b;this.y*=b;this.z*=b;this.w*=b}return this}, multiplySelf:function(b){var d=this.x,c=this.y,f=this.z,g=this.w,h=b.x,j=b.y,k=b.z;b=b.w;this.x=d*b+g*h+c*k-f*j;this.y=c*b+g*j+f*h-d*k;this.z=f*b+g*k+d*j-c*h;this.w=g*b-d*h-c*j-f*k;return this},multiply:function(b,d){this.x=b.x*d.w+b.y*d.z-b.z*d.y+b.w*d.x;this.y=-b.x*d.z+b.y*d.w+b.z*d.x+b.w*d.y;this.z=b.x*d.y-b.y*d.x+b.z*d.w+b.w*d.z;this.w=-b.x*d.x-b.y*d.y-b.z*d.z+b.w*d.w;return this},multiplyVector3:function(b,d){d||(d=b);var c=b.x,f=b.y,g=b.z,h=this.x,j=this.y,k=this.z,m=this.w,o=m*c+j*g-k*f,t= m*f+k*c-h*g,u=m*g+h*f-j*c;c=-h*c-j*f-k*g;d.x=o*m+c*-h+t*-k-u*-j;d.y=t*m+c*-j+u*-h-o*-k;d.z=u*m+c*-k+o*-j-t*-h;return d}}; -THREE.Quaternion.slerp=function(b,d,c,f){var g=b.w*d.w+b.x*d.x+b.y*d.y+b.z*d.z;if(Math.abs(g)>=1){c.w=b.w;c.x=b.x;c.y=b.y;c.z=b.z;return c}var h=Math.acos(g),j=Math.sqrt(1-g*g);if(Math.abs(j)<0.001){c.w=0.5*(b.w+d.w);c.x=0.5*(b.x+d.x);c.y=0.5*(b.y+d.y);c.z=0.5*(b.z+d.z);return c}g=Math.sin((1-f)*h)/j;f=Math.sin(f*h)/j;c.w=b.w*g+d.w*f;c.x=b.x*g+d.x*f;c.y=b.y*g+d.y*f;c.z=b.z*g+d.z*f;return c};THREE.Vertex=function(b){this.position=b||new THREE.Vector3}; +THREE.Quaternion.slerp=function(b,d,c,f){var g=b.w*d.w+b.x*d.x+b.y*d.y+b.z*d.z;if(Math.abs(g)>=1){c.w=b.w;c.x=b.x;c.y=b.y;c.z=b.z;return c}var h=Math.acos(g),j=Math.sqrt(1-g*g);if(Math.abs(j)<0.0010){c.w=0.5*(b.w+d.w);c.x=0.5*(b.x+d.x);c.y=0.5*(b.y+d.y);c.z=0.5*(b.z+d.z);return c}g=Math.sin((1-f)*h)/j;f=Math.sin(f*h)/j;c.w=b.w*g+d.w*f;c.x=b.x*g+d.x*f;c.y=b.y*g+d.y*f;c.z=b.z*g+d.z*f;return c};THREE.Vertex=function(b){this.position=b||new THREE.Vector3}; THREE.Face3=function(b,d,c,f,g,h){this.a=b;this.b=d;this.c=c;this.normal=f instanceof THREE.Vector3?f:new THREE.Vector3;this.vertexNormals=f instanceof Array?f:[];this.color=g instanceof THREE.Color?g:new THREE.Color;this.vertexColors=g instanceof Array?g:[];this.vertexTangents=[];this.materials=h instanceof Array?h:[h];this.centroid=new THREE.Vector3}; THREE.Face4=function(b,d,c,f,g,h,j){this.a=b;this.b=d;this.c=c;this.d=f;this.normal=g instanceof THREE.Vector3?g:new THREE.Vector3;this.vertexNormals=g instanceof Array?g:[];this.color=h instanceof THREE.Color?h:new THREE.Color;this.vertexColors=h instanceof Array?h:[];this.vertexTangents=[];this.materials=j instanceof Array?j:[j];this.centroid=new THREE.Vector3};THREE.UV=function(b,d){this.set(b||0,d||0)}; THREE.UV.prototype={set:function(b,d){this.u=b;this.v=d;return this},copy:function(b){this.set(b.u,b.v);return this}};THREE.Geometry=function(){this.id="Geometry"+THREE.GeometryIdCounter++;this.vertices=[];this.colors=[];this.faces=[];this.edges=[];this.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.morphColors=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; @@ -254,7 +254,7 @@ I*A.scale.y;e.uniform2f(K.uvScale,A.uvScale.x,A.uvScale.y);e.uniform2f(K.uvOffse D){var y,x,A=n.__webglLensFlares.length,K,M,I,N=new THREE.Vector3,H=Aa/Fa,L=Fa*0.5,J=Aa*0.5,$=16/Aa,X=[$*H,$],Ca=[1,1,0],Ha=[1,1],Da=S.uniforms;y=S.attributes;e.useProgram(S.program);Ba=S.program;na="";if(!Ma){e.enableVertexAttribArray(S.attributes.vertex);e.enableVertexAttribArray(S.attributes.uv);Ma=!0}e.uniform1i(Da.occlusionMap,0);e.uniform1i(Da.map,1);e.bindBuffer(e.ARRAY_BUFFER,S.vertexBuffer);e.vertexAttribPointer(y.vertex,2,e.FLOAT,!1,16,0);e.vertexAttribPointer(y.uv,2,e.FLOAT,!1,16,8);e.bindBuffer(e.ELEMENT_ARRAY_BUFFER, S.elementBuffer);e.disable(e.CULL_FACE);e.depthMask(!1);e.activeTexture(e.TEXTURE0);e.bindTexture(e.TEXTURE_2D,S.occlusionTexture);e.activeTexture(e.TEXTURE1);for(x=0;x0&&Ha[0]0&&Ha[1]0.001&&I.scale>0.001){Ca[0]=I.x;Ca[1]=I.y;Ca[2]=I.z;$=I.size*I.scale/Aa;X[0]=$*H;X[1]=$;e.uniform3fv(Da.screenPosition,Ca);e.uniform2fv(Da.scale,X);e.uniform1f(Da.rotation,I.rotation);e.uniform1f(Da.opacity,I.opacity);V(I.blending);Q(I.texture,1);e.drawElements(e.TRIANGLES, +Ca[0];y.positionScreen.y=Ca[1];y.positionScreen.z=Ca[2];y.customUpdateCallback?y.customUpdateCallback(y):y.updateLensFlares();e.uniform1i(Da.renderType,2);e.enable(e.BLEND);K=0;for(M=y.lensFlares.length;K0.0010&&I.scale>0.0010){Ca[0]=I.x;Ca[1]=I.y;Ca[2]=I.z;$=I.size*I.scale/Aa;X[0]=$*H;X[1]=$;e.uniform3fv(Da.screenPosition,Ca);e.uniform2fv(Da.scale,X);e.uniform1f(Da.rotation,I.rotation);e.uniform1f(Da.opacity,I.opacity);V(I.blending);Q(I.texture,1);e.drawElements(e.TRIANGLES, 6,e.UNSIGNED_SHORT,0)}}}}e.enable(e.CULL_FACE);e.enable(e.DEPTH_TEST);e.depthMask(ra)}function F(n,D){n._modelViewMatrix.multiplyToArray(D.matrixWorldInverse,n.matrixWorld,n._modelViewMatrixArray);THREE.Matrix4.makeInvert3x3(n._modelViewMatrix).transposeIntoArray(n._normalMatrixArray)}function B(n){var D,y,x,A,K;if(n instanceof THREE.Mesh){y=n.geometry;for(D in y.geometryGroups){x=y.geometryGroups[D];K=!1;for(A in x.__webglCustomAttributes)if(x.__webglCustomAttributes[A].needsUpdate){K=!0;break}if(y.__dirtyVertices|| y.__dirtyMorphTargets||y.__dirtyElements||y.__dirtyUvs||y.__dirtyNormals||y.__dirtyColors||y.__dirtyTangents||K){K=e.DYNAMIC_DRAW;var M=void 0,I=void 0,N=void 0,H=void 0;N=void 0;var L=void 0,J=void 0,$=void 0,X=void 0,Ca=void 0,Ha=void 0,Da=void 0,La=void 0,Xa=void 0,ma=void 0,ya=void 0,Ga=void 0,Pa=void 0;J=void 0;$=void 0;H=void 0;X=void 0;H=void 0;var E=void 0,da=void 0;J=void 0;E=void 0;da=void 0;var v=void 0,ab=void 0;E=void 0;da=void 0;v=void 0;ab=void 0;E=void 0;da=void 0;v=void 0;ab=void 0; E=void 0;da=void 0;v=void 0;H=void 0;X=void 0;L=void 0;N=void 0;N=void 0;E=void 0;da=void 0;v=void 0;var gb=void 0,Ua=0,Ta=0,fb=0,db=0,$a=0,Za=0,Oa=0,Ya=0,Va=0,Y=0,Ea=0;da=E=0;var Qa=x.__vertexArray,hb=x.__uvArray,lb=x.__uv2Array,cb=x.__normalArray,Ia=x.__tangentArray,U=x.__colorArray,la=x.__skinVertexAArray,ia=x.__skinVertexBArray,ca=x.__skinIndexArray,wa=x.__skinWeightArray,Na=x.__morphTargetsArrays,ta=x.__webglCustomAttributes;v=void 0;var W=x.__faceArray,Ka=x.__lineArray,kb=x.__needsSmoothNormals; @@ -379,7 +379,7 @@ value:0,texture:null},uImageIncrement:{type:"v2",value:new THREE.Vector2(0.00195 film:{uniforms:{tDiffuse:{type:"t",value:0,texture:null},time:{type:"f",value:0},nIntensity:{type:"f",value:0.5},sIntensity:{type:"f",value:0.05},sCount:{type:"f",value:4096},grayscale:{type:"i",value:1}},vertexShader:"varying vec2 vUv;\nvoid main() {\nvUv = vec2( uv.x, 1.0 - uv.y );\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"varying vec2 vUv;\nuniform sampler2D tDiffuse;\nuniform float time;\nuniform bool grayscale;\nuniform float nIntensity;\nuniform float sIntensity;\nuniform float sCount;\nvoid main() {\nvec4 cTextureScreen = texture2D( tDiffuse, vUv );\nfloat x = vUv.x * vUv.y * time * 1000.0;\nx = mod( x, 13.0 ) * mod( x, 123.0 );\nfloat dx = mod( x, 0.01 );\nvec3 cResult = cTextureScreen.rgb + cTextureScreen.rgb * clamp( 0.1 + dx * 100.0, 0.0, 1.0 );\nvec2 sc = vec2( sin( vUv.y * sCount ), cos( vUv.y * sCount ) );\ncResult += cTextureScreen.rgb * vec3( sc.x, sc.y, sc.x ) * sIntensity;\ncResult = cTextureScreen.rgb + clamp( nIntensity, 0.0,1.0 ) * ( cResult - cTextureScreen.rgb );\nif( grayscale ) {\ncResult = vec3( cResult.r * 0.3 + cResult.g * 0.59 + cResult.b * 0.11 );\n}\ngl_FragColor = vec4( cResult, cTextureScreen.a );\n}"}, screen:{uniforms:{tDiffuse:{type:"t",value:0,texture:null},opacity:{type:"f",value:1}},vertexShader:"varying vec2 vUv;\nvoid main() {\nvUv = vec2( uv.x, 1.0 - uv.y );\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"varying vec2 vUv;\nuniform sampler2D tDiffuse;\nuniform float opacity;\nvoid main() {\nvec4 texel = texture2D( tDiffuse, vUv );\ngl_FragColor = opacity * texel;\n}"},basic:{uniforms:{},vertexShader:"void main() {\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}", fragmentShader:"void main() {\ngl_FragColor = vec4( 1.0, 0.0, 0.0, 0.5 );\n}"}},buildKernel:function(b){var d,c,f,g,h=2*Math.ceil(b*3)+1;h>25&&(h=25);g=(h-1)*0.5;c=Array(h);for(d=f=0;d=0?w:w+g;w=this.verticalAngleMap.srcRange;p=this.verticalAngleMap.dstRange; this.phi=(this.phi-w[0])*(p[1]-p[0])/(w[1]-w[0])+p[0];w=this.horizontalAngleMap.srcRange;p=this.horizontalAngleMap.dstRange;this.theta=(this.theta-w[0])*(p[1]-p[0])/(w[1]-w[0])+p[0];w=this.target.position;w.x=100*Math.sin(this.phi)*Math.cos(this.theta);w.y=100*Math.cos(this.phi);w.z=100*Math.sin(this.phi)*Math.sin(this.theta);this.supr.update.call(this,o,t,u)};this.onMouseMove=function(o){this.mouseX=o.clientX-this.windowHalfX;this.mouseY=o.clientY-this.windowHalfY};this.spline=new THREE.Spline;this.spline.initFromArray(this.waypoints); this.useConstantSpeed&&this.spline.reparametrizeByArcLength(this.resamplingCoef);if(this.createDebugDummy){b=new THREE.MeshLambertMaterial({color:30719});var j=new THREE.MeshLambertMaterial({color:65280}),k=new THREE.Cube(10,10,20),m=new THREE.Cube(2,2,10);this.animationParent=new THREE.Mesh(k,b);b=new THREE.Mesh(m,j);b.position.set(0,10,0);this.animation=d(this.animationParent,this.spline,this.id,this.duration);this.animationParent.addChild(this);this.animationParent.addChild(this.target);this.animationParent.addChild(b)}else{this.animation= d(this.animationParent,this.spline,this.id,this.duration);this.animationParent.addChild(this.target);this.animationParent.addChild(this)}this.createDebugPath&&f(this.debugPath,this.spline);this.domElement.addEventListener("mousemove",function(o,t){return function(){t.apply(o,arguments)}}(this,this.onMouseMove),!1)};THREE.PathCamera.prototype=new THREE.Camera;THREE.PathCamera.prototype.constructor=THREE.PathCamera;THREE.PathCamera.prototype.supr=THREE.Camera.prototype;THREE.PathCameraIdCounter=0; -THREE.FlyCamera=function(b){function d(c,f){return function(){f.apply(c,arguments)}}THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.tmpQuaternion=new THREE.Quaternion;this.movementSpeed=1;this.rollSpeed=0.005;this.dragToLook=!1;this.autoForward=!1;this.domElement=document;if(b){if(b.movementSpeed!==undefined)this.movementSpeed=b.movementSpeed;if(b.rollSpeed!==undefined)this.rollSpeed=b.rollSpeed;if(b.dragToLook!==undefined)this.dragToLook=b.dragToLook;if(b.autoForward!==undefined)this.autoForward= +THREE.FlyCamera=function(b){function d(c,f){return function(){f.apply(c,arguments)}}THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.tmpQuaternion=new THREE.Quaternion;this.movementSpeed=1;this.rollSpeed=0.0050;this.dragToLook=!1;this.autoForward=!1;this.domElement=document;if(b){if(b.movementSpeed!==undefined)this.movementSpeed=b.movementSpeed;if(b.rollSpeed!==undefined)this.rollSpeed=b.rollSpeed;if(b.dragToLook!==undefined)this.dragToLook=b.dragToLook;if(b.autoForward!==undefined)this.autoForward= b.autoForward;if(b.domElement!==undefined)this.domElement=b.domElement}this.useTarget=!1;this.useQuaternion=!0;this.mouseStatus=0;this.moveState={up:0,down:0,left:0,right:0,forward:0,back:0,pitchUp:0,pitchDown:0,yawLeft:0,yawRight:0,rollLeft:0,rollRight:0};this.moveVector=new THREE.Vector3(0,0,0);this.rotationVector=new THREE.Vector3(0,0,0);this.lastUpdate=-1;this.tdiff=0;this.handleEvent=function(c){if(typeof this[c.type]=="function")this[c.type](c)};this.keydown=function(c){if(!c.altKey){switch(c.keyCode){case 16:this.movementSpeedMultiplier= 0.1;break;case 87:this.moveState.forward=1;break;case 83:this.moveState.back=1;break;case 65:this.moveState.left=1;break;case 68:this.moveState.right=1;break;case 82:this.moveState.up=1;break;case 70:this.moveState.down=1;break;case 38:this.moveState.pitchUp=1;break;case 40:this.moveState.pitchDown=1;break;case 37:this.moveState.yawLeft=1;break;case 39:this.moveState.yawRight=1;break;case 81:this.moveState.rollLeft=1;break;case 69:this.moveState.rollRight=1}this.updateMovementVector();this.updateRotationVector()}}; this.keyup=function(c){switch(c.keyCode){case 16:this.movementSpeedMultiplier=1;break;case 87:this.moveState.forward=0;break;case 83:this.moveState.back=0;break;case 65:this.moveState.left=0;break;case 68:this.moveState.right=0;break;case 82:this.moveState.up=0;break;case 70:this.moveState.down=0;break;case 38:this.moveState.pitchUp=0;break;case 40:this.moveState.pitchDown=0;break;case 37:this.moveState.yawLeft=0;break;case 39:this.moveState.yawRight=0;break;case 81:this.moveState.rollLeft=0;break; @@ -426,7 +426,7 @@ f));c instanceof THREE.Face4&&d.push(new THREE.UV(0.5+Math.atan2(u.position.x,u. THREE.Icosahedron=function(b){function d(u,w,p){var z=Math.sqrt(u*u+w*w+p*p);return g.vertices.push(new THREE.Vertex(new THREE.Vector3(u/z,w/z,p/z)))-1}function c(u,w,p,z){z.faces.push(new THREE.Face3(u,w,p))}function f(u,w){var p=g.vertices[u].position,z=g.vertices[w].position;return d((p.x+z.x)/2,(p.y+z.y)/2,(p.z+z.z)/2)}var g=this,h=new THREE.Geometry,j;this.subdivisions=b||0;THREE.Geometry.call(this);b=(1+Math.sqrt(5))/2;d(-1,b,0);d(1,b,0);d(-1,-b,0);d(1,-b,0);d(0,-1,b);d(0,1,b);d(0,-1,-b);d(0, 1,-b);d(b,0,-1);d(b,0,1);d(-b,0,-1);d(-b,0,1);c(0,11,5,h);c(0,5,1,h);c(0,1,7,h);c(0,7,10,h);c(0,10,11,h);c(1,5,9,h);c(5,11,4,h);c(11,10,2,h);c(10,7,6,h);c(7,1,8,h);c(3,9,4,h);c(3,4,2,h);c(3,2,6,h);c(3,6,8,h);c(3,8,9,h);c(4,9,5,h);c(2,4,11,h);c(6,2,10,h);c(8,6,7,h);c(9,8,1,h);for(b=0;b=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var g=Math.acos(e),f=Math.sqrt(1-e*e);if(Math.abs(f)<0.001){c.w=0.5*(a.w+b.w);c.x=0.5*(a.x+b.x);c.y=0.5*(a.y+b.y);c.z=0.5*(a.z+b.z);return c}e=Math.sin((1-d)*g)/f;d=Math.sin(d*g)/f;c.w=a.w*e+b.w*d;c.x=a.x*e+b.x*d;c.y=a.y*e+b.y*d;c.z=a.z*e+b.z*d;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; +THREE.Quaternion.slerp=function(a,b,c,d){var e=a.w*b.w+a.x*b.x+a.y*b.y+a.z*b.z;if(Math.abs(e)>=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var g=Math.acos(e),f=Math.sqrt(1-e*e);if(Math.abs(f)<0.0010){c.w=0.5*(a.w+b.w);c.x=0.5*(a.x+b.x);c.y=0.5*(a.y+b.y);c.z=0.5*(a.z+b.z);return c}e=Math.sin((1-d)*g)/f;d=Math.sin(d*g)/f;c.w=a.w*e+b.w*d;c.x=a.x*e+b.x*d;c.y=a.y*e+b.y*d;c.z=a.z*e+b.z*d;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; THREE.Face3=function(a,b,c,d,e,g){this.a=a;this.b=b;this.c=c;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.color=e instanceof THREE.Color?e:new THREE.Color;this.vertexColors=e instanceof Array?e:[];this.vertexTangents=[];this.materials=g instanceof Array?g:[g];this.centroid=new THREE.Vector3}; THREE.Face4=function(a,b,c,d,e,g,f){this.a=a;this.b=b;this.c=c;this.d=d;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=g instanceof THREE.Color?g:new THREE.Color;this.vertexColors=g instanceof Array?g:[];this.vertexTangents=[];this.materials=f instanceof Array?f:[f];this.centroid=new THREE.Vector3};THREE.UV=function(a,b){this.set(a||0,b||0)}; THREE.UV.prototype={set:function(a,b){this.u=a;this.v=b;return this},copy:function(a){this.set(a.u,a.v);return this}};THREE.Geometry=function(){this.id="Geometry"+THREE.GeometryIdCounter++;this.vertices=[];this.colors=[];this.faces=[];this.edges=[];this.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.morphColors=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; diff --git a/build/custom/ThreeDOM.js b/build/custom/ThreeDOM.js index c48aa8f1..b62f12c3 100644 --- a/build/custom/ThreeDOM.js +++ b/build/custom/ThreeDOM.js @@ -49,7 +49,7 @@ THREE.Quaternion.prototype={set:function(a,b,c,d){this.x=a;this.y=b;this.z=c;thi a.y*d;this.z=a.z*d;this.w=Math.cos(c);return this},calculateW:function(){this.w=-Math.sqrt(Math.abs(1-this.x*this.x-this.y*this.y-this.z*this.z));return this},inverse:function(){this.x*=-1;this.y*=-1;this.z*=-1;return this},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=Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w);if(a==0)this.w=this.z=this.y=this.x=0;else{a=1/a;this.x*=a;this.y*=a;this.z*=a;this.w*=a}return this}, multiplySelf:function(a){var b=this.x,c=this.y,d=this.z,e=this.w,h=a.x,f=a.y,j=a.z;a=a.w;this.x=b*a+e*h+c*j-d*f;this.y=c*a+e*f+d*h-b*j;this.z=d*a+e*j+b*f-c*h;this.w=e*a-b*h-c*f-d*j;return this},multiply:function(a,b){this.x=a.x*b.w+a.y*b.z-a.z*b.y+a.w*b.x;this.y=-a.x*b.z+a.y*b.w+a.z*b.x+a.w*b.y;this.z=a.x*b.y-a.y*b.x+a.z*b.w+a.w*b.z;this.w=-a.x*b.x-a.y*b.y-a.z*b.z+a.w*b.w;return this},multiplyVector3:function(a,b){b||(b=a);var c=a.x,d=a.y,e=a.z,h=this.x,f=this.y,j=this.z,g=this.w,i=g*c+f*e-j*d,l= g*d+j*c-h*e,k=g*e+h*d-f*c;c=-h*c-f*d-j*e;b.x=i*g+c*-h+l*-j-k*-f;b.y=l*g+c*-f+k*-h-i*-j;b.z=k*g+c*-j+i*-f-l*-h;return b}}; -THREE.Quaternion.slerp=function(a,b,c,d){var e=a.w*b.w+a.x*b.x+a.y*b.y+a.z*b.z;if(Math.abs(e)>=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var h=Math.acos(e),f=Math.sqrt(1-e*e);if(Math.abs(f)<0.001){c.w=0.5*(a.w+b.w);c.x=0.5*(a.x+b.x);c.y=0.5*(a.y+b.y);c.z=0.5*(a.z+b.z);return c}e=Math.sin((1-d)*h)/f;d=Math.sin(d*h)/f;c.w=a.w*e+b.w*d;c.x=a.x*e+b.x*d;c.y=a.y*e+b.y*d;c.z=a.z*e+b.z*d;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; +THREE.Quaternion.slerp=function(a,b,c,d){var e=a.w*b.w+a.x*b.x+a.y*b.y+a.z*b.z;if(Math.abs(e)>=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var h=Math.acos(e),f=Math.sqrt(1-e*e);if(Math.abs(f)<0.0010){c.w=0.5*(a.w+b.w);c.x=0.5*(a.x+b.x);c.y=0.5*(a.y+b.y);c.z=0.5*(a.z+b.z);return c}e=Math.sin((1-d)*h)/f;d=Math.sin(d*h)/f;c.w=a.w*e+b.w*d;c.x=a.x*e+b.x*d;c.y=a.y*e+b.y*d;c.z=a.z*e+b.z*d;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; THREE.Face3=function(a,b,c,d,e,h){this.a=a;this.b=b;this.c=c;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.color=e instanceof THREE.Color?e:new THREE.Color;this.vertexColors=e instanceof Array?e:[];this.vertexTangents=[];this.materials=h instanceof Array?h:[h];this.centroid=new THREE.Vector3}; THREE.Face4=function(a,b,c,d,e,h,f){this.a=a;this.b=b;this.c=c;this.d=d;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=h instanceof THREE.Color?h:new THREE.Color;this.vertexColors=h instanceof Array?h:[];this.vertexTangents=[];this.materials=f instanceof Array?f:[f];this.centroid=new THREE.Vector3};THREE.UV=function(a,b){this.set(a||0,b||0)}; THREE.UV.prototype={set:function(a,b){this.u=a;this.v=b;return this},copy:function(a){this.set(a.u,a.v);return this}};THREE.Camera=function(a,b,c,d,e){THREE.Object3D.call(this);this.fov=a||50;this.aspect=b||1;this.near=c||0.1;this.far=d||2E3;this.target=e||new THREE.Object3D;this.useTarget=!0;this.matrixWorldInverse=new THREE.Matrix4;this.projectionMatrix=null;this.updateProjectionMatrix()};THREE.Camera.prototype=new THREE.Object3D;THREE.Camera.prototype.constructor=THREE.Camera; diff --git a/build/custom/ThreeExtras.js b/build/custom/ThreeExtras.js index 9ee8060d..09c69526 100644 --- a/build/custom/ThreeExtras.js +++ b/build/custom/ThreeExtras.js @@ -35,7 +35,7 @@ value:0,texture:null},uImageIncrement:{type:"v2",value:new THREE.Vector2(0.00195 film:{uniforms:{tDiffuse:{type:"t",value:0,texture:null},time:{type:"f",value:0},nIntensity:{type:"f",value:0.5},sIntensity:{type:"f",value:0.05},sCount:{type:"f",value:4096},grayscale:{type:"i",value:1}},vertexShader:"varying vec2 vUv;\nvoid main() {\nvUv = vec2( uv.x, 1.0 - uv.y );\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"varying vec2 vUv;\nuniform sampler2D tDiffuse;\nuniform float time;\nuniform bool grayscale;\nuniform float nIntensity;\nuniform float sIntensity;\nuniform float sCount;\nvoid main() {\nvec4 cTextureScreen = texture2D( tDiffuse, vUv );\nfloat x = vUv.x * vUv.y * time * 1000.0;\nx = mod( x, 13.0 ) * mod( x, 123.0 );\nfloat dx = mod( x, 0.01 );\nvec3 cResult = cTextureScreen.rgb + cTextureScreen.rgb * clamp( 0.1 + dx * 100.0, 0.0, 1.0 );\nvec2 sc = vec2( sin( vUv.y * sCount ), cos( vUv.y * sCount ) );\ncResult += cTextureScreen.rgb * vec3( sc.x, sc.y, sc.x ) * sIntensity;\ncResult = cTextureScreen.rgb + clamp( nIntensity, 0.0,1.0 ) * ( cResult - cTextureScreen.rgb );\nif( grayscale ) {\ncResult = vec3( cResult.r * 0.3 + cResult.g * 0.59 + cResult.b * 0.11 );\n}\ngl_FragColor = vec4( cResult, cTextureScreen.a );\n}"}, screen:{uniforms:{tDiffuse:{type:"t",value:0,texture:null},opacity:{type:"f",value:1}},vertexShader:"varying vec2 vUv;\nvoid main() {\nvUv = vec2( uv.x, 1.0 - uv.y );\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"varying vec2 vUv;\nuniform sampler2D tDiffuse;\nuniform float opacity;\nvoid main() {\nvec4 texel = texture2D( tDiffuse, vUv );\ngl_FragColor = opacity * texel;\n}"},basic:{uniforms:{},vertexShader:"void main() {\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}", fragmentShader:"void main() {\ngl_FragColor = vec4( 1.0, 0.0, 0.0, 0.5 );\n}"}},buildKernel:function(a){var c,b,e,f,d=2*Math.ceil(a*3)+1;d>25&&(d=25);f=(d-1)*0.5;b=Array(d);for(c=e=0;c=0?p:p+f;p=this.verticalAngleMap.srcRange;n=this.verticalAngleMap.dstRange; this.phi=(this.phi-p[0])*(n[1]-n[0])/(p[1]-p[0])+n[0];p=this.horizontalAngleMap.srcRange;n=this.horizontalAngleMap.dstRange;this.theta=(this.theta-p[0])*(n[1]-n[0])/(p[1]-p[0])+n[0];p=this.target.position;p.x=100*Math.sin(this.phi)*Math.cos(this.theta);p.y=100*Math.cos(this.phi);p.z=100*Math.sin(this.phi)*Math.sin(this.theta);this.supr.update.call(this,l,k,m)};this.onMouseMove=function(l){this.mouseX=l.clientX-this.windowHalfX;this.mouseY=l.clientY-this.windowHalfY};this.spline=new THREE.Spline;this.spline.initFromArray(this.waypoints); this.useConstantSpeed&&this.spline.reparametrizeByArcLength(this.resamplingCoef);if(this.createDebugDummy){a=new THREE.MeshLambertMaterial({color:30719});var g=new THREE.MeshLambertMaterial({color:65280}),h=new THREE.Cube(10,10,20),j=new THREE.Cube(2,2,10);this.animationParent=new THREE.Mesh(h,a);a=new THREE.Mesh(j,g);a.position.set(0,10,0);this.animation=c(this.animationParent,this.spline,this.id,this.duration);this.animationParent.addChild(this);this.animationParent.addChild(this.target);this.animationParent.addChild(a)}else{this.animation= c(this.animationParent,this.spline,this.id,this.duration);this.animationParent.addChild(this.target);this.animationParent.addChild(this)}this.createDebugPath&&e(this.debugPath,this.spline);this.domElement.addEventListener("mousemove",function(l,k){return function(){k.apply(l,arguments)}}(this,this.onMouseMove),!1)};THREE.PathCamera.prototype=new THREE.Camera;THREE.PathCamera.prototype.constructor=THREE.PathCamera;THREE.PathCamera.prototype.supr=THREE.Camera.prototype;THREE.PathCameraIdCounter=0; -THREE.FlyCamera=function(a){function c(b,e){return function(){e.apply(b,arguments)}}THREE.Camera.call(this,a.fov,a.aspect,a.near,a.far,a.target);this.tmpQuaternion=new THREE.Quaternion;this.movementSpeed=1;this.rollSpeed=0.005;this.dragToLook=!1;this.autoForward=!1;this.domElement=document;if(a){if(a.movementSpeed!==undefined)this.movementSpeed=a.movementSpeed;if(a.rollSpeed!==undefined)this.rollSpeed=a.rollSpeed;if(a.dragToLook!==undefined)this.dragToLook=a.dragToLook;if(a.autoForward!==undefined)this.autoForward= +THREE.FlyCamera=function(a){function c(b,e){return function(){e.apply(b,arguments)}}THREE.Camera.call(this,a.fov,a.aspect,a.near,a.far,a.target);this.tmpQuaternion=new THREE.Quaternion;this.movementSpeed=1;this.rollSpeed=0.0050;this.dragToLook=!1;this.autoForward=!1;this.domElement=document;if(a){if(a.movementSpeed!==undefined)this.movementSpeed=a.movementSpeed;if(a.rollSpeed!==undefined)this.rollSpeed=a.rollSpeed;if(a.dragToLook!==undefined)this.dragToLook=a.dragToLook;if(a.autoForward!==undefined)this.autoForward= a.autoForward;if(a.domElement!==undefined)this.domElement=a.domElement}this.useTarget=!1;this.useQuaternion=!0;this.mouseStatus=0;this.moveState={up:0,down:0,left:0,right:0,forward:0,back:0,pitchUp:0,pitchDown:0,yawLeft:0,yawRight:0,rollLeft:0,rollRight:0};this.moveVector=new THREE.Vector3(0,0,0);this.rotationVector=new THREE.Vector3(0,0,0);this.lastUpdate=-1;this.tdiff=0;this.handleEvent=function(b){if(typeof this[b.type]=="function")this[b.type](b)};this.keydown=function(b){if(!b.altKey){switch(b.keyCode){case 16:this.movementSpeedMultiplier= 0.1;break;case 87:this.moveState.forward=1;break;case 83:this.moveState.back=1;break;case 65:this.moveState.left=1;break;case 68:this.moveState.right=1;break;case 82:this.moveState.up=1;break;case 70:this.moveState.down=1;break;case 38:this.moveState.pitchUp=1;break;case 40:this.moveState.pitchDown=1;break;case 37:this.moveState.yawLeft=1;break;case 39:this.moveState.yawRight=1;break;case 81:this.moveState.rollLeft=1;break;case 69:this.moveState.rollRight=1}this.updateMovementVector();this.updateRotationVector()}}; this.keyup=function(b){switch(b.keyCode){case 16:this.movementSpeedMultiplier=1;break;case 87:this.moveState.forward=0;break;case 83:this.moveState.back=0;break;case 65:this.moveState.left=0;break;case 68:this.moveState.right=0;break;case 82:this.moveState.up=0;break;case 70:this.moveState.down=0;break;case 38:this.moveState.pitchUp=0;break;case 40:this.moveState.pitchDown=0;break;case 37:this.moveState.yawLeft=0;break;case 39:this.moveState.yawRight=0;break;case 81:this.moveState.rollLeft=0;break; @@ -82,7 +82,7 @@ e));b instanceof THREE.Face4&&c.push(new THREE.UV(0.5+Math.atan2(m.position.x,m. THREE.Icosahedron=function(a){function c(m,p,n){var v=Math.sqrt(m*m+p*p+n*n);return f.vertices.push(new THREE.Vertex(new THREE.Vector3(m/v,p/v,n/v)))-1}function b(m,p,n,v){v.faces.push(new THREE.Face3(m,p,n))}function e(m,p){var n=f.vertices[m].position,v=f.vertices[p].position;return c((n.x+v.x)/2,(n.y+v.y)/2,(n.z+v.z)/2)}var f=this,d=new THREE.Geometry,g;this.subdivisions=a||0;THREE.Geometry.call(this);a=(1+Math.sqrt(5))/2;c(-1,a,0);c(1,a,0);c(-1,-a,0);c(1,-a,0);c(0,-1,a);c(0,1,a);c(0,-1,-a);c(0, 1,-a);c(a,0,-1);c(a,0,1);c(-a,0,-1);c(-a,0,1);b(0,11,5,d);b(0,5,1,d);b(0,1,7,d);b(0,7,10,d);b(0,10,11,d);b(1,5,9,d);b(5,11,4,d);b(11,10,2,d);b(10,7,6,d);b(7,1,8,d);b(3,9,4,d);b(3,4,2,d);b(3,2,6,d);b(3,6,8,d);b(3,8,9,d);b(4,9,5,d);b(2,4,11,d);b(6,2,10,d);b(8,6,7,d);b(9,8,1,d);for(a=0;a=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var g=Math.acos(e),f=Math.sqrt(1-e*e);if(Math.abs(f)<0.001){c.w=0.5*(a.w+b.w);c.x=0.5*(a.x+b.x);c.y=0.5*(a.y+b.y);c.z=0.5*(a.z+b.z);return c}e=Math.sin((1-d)*g)/f;d=Math.sin(d*g)/f;c.w=a.w*e+b.w*d;c.x=a.x*e+b.x*d;c.y=a.y*e+b.y*d;c.z=a.z*e+b.z*d;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; +THREE.Quaternion.slerp=function(a,b,c,d){var e=a.w*b.w+a.x*b.x+a.y*b.y+a.z*b.z;if(Math.abs(e)>=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var g=Math.acos(e),f=Math.sqrt(1-e*e);if(Math.abs(f)<0.0010){c.w=0.5*(a.w+b.w);c.x=0.5*(a.x+b.x);c.y=0.5*(a.y+b.y);c.z=0.5*(a.z+b.z);return c}e=Math.sin((1-d)*g)/f;d=Math.sin(d*g)/f;c.w=a.w*e+b.w*d;c.x=a.x*e+b.x*d;c.y=a.y*e+b.y*d;c.z=a.z*e+b.z*d;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; THREE.Face3=function(a,b,c,d,e,g){this.a=a;this.b=b;this.c=c;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.color=e instanceof THREE.Color?e:new THREE.Color;this.vertexColors=e instanceof Array?e:[];this.vertexTangents=[];this.materials=g instanceof Array?g:[g];this.centroid=new THREE.Vector3}; THREE.Face4=function(a,b,c,d,e,g,f){this.a=a;this.b=b;this.c=c;this.d=d;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=g instanceof THREE.Color?g:new THREE.Color;this.vertexColors=g instanceof Array?g:[];this.vertexTangents=[];this.materials=f instanceof Array?f:[f];this.centroid=new THREE.Vector3};THREE.UV=function(a,b){this.set(a||0,b||0)}; THREE.UV.prototype={set:function(a,b){this.u=a;this.v=b;return this},copy:function(a){this.set(a.u,a.v);return this}};THREE.Geometry=function(){this.id="Geometry"+THREE.GeometryIdCounter++;this.vertices=[];this.colors=[];this.faces=[];this.edges=[];this.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.morphColors=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; diff --git a/build/custom/ThreeWebGL.js b/build/custom/ThreeWebGL.js index 8610ed47..829fd055 100644 --- a/build/custom/ThreeWebGL.js +++ b/build/custom/ThreeWebGL.js @@ -49,7 +49,7 @@ THREE.Quaternion.prototype={set:function(b,d,e,g){this.x=b;this.y=d;this.z=e;thi b.y*g;this.z=b.z*g;this.w=Math.cos(e);return this},calculateW:function(){this.w=-Math.sqrt(Math.abs(1-this.x*this.x-this.y*this.y-this.z*this.z));return this},inverse:function(){this.x*=-1;this.y*=-1;this.z*=-1;return this},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)},normalize:function(){var b=Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w);if(b==0)this.w=this.z=this.y=this.x=0;else{b=1/b;this.x*=b;this.y*=b;this.z*=b;this.w*=b}return this}, multiplySelf:function(b){var d=this.x,e=this.y,g=this.z,h=this.w,o=b.x,n=b.y,q=b.z;b=b.w;this.x=d*b+h*o+e*q-g*n;this.y=e*b+h*n+g*o-d*q;this.z=g*b+h*q+d*n-e*o;this.w=h*b-d*o-e*n-g*q;return this},multiply:function(b,d){this.x=b.x*d.w+b.y*d.z-b.z*d.y+b.w*d.x;this.y=-b.x*d.z+b.y*d.w+b.z*d.x+b.w*d.y;this.z=b.x*d.y-b.y*d.x+b.z*d.w+b.w*d.z;this.w=-b.x*d.x-b.y*d.y-b.z*d.z+b.w*d.w;return this},multiplyVector3:function(b,d){d||(d=b);var e=b.x,g=b.y,h=b.z,o=this.x,n=this.y,q=this.z,r=this.w,v=r*e+n*h-q*g,E= r*g+q*e-o*h,F=r*h+o*g-n*e;e=-o*e-n*g-q*h;d.x=v*r+e*-o+E*-q-F*-n;d.y=E*r+e*-n+F*-o-v*-q;d.z=F*r+e*-q+v*-n-E*-o;return d}}; -THREE.Quaternion.slerp=function(b,d,e,g){var h=b.w*d.w+b.x*d.x+b.y*d.y+b.z*d.z;if(Math.abs(h)>=1){e.w=b.w;e.x=b.x;e.y=b.y;e.z=b.z;return e}var o=Math.acos(h),n=Math.sqrt(1-h*h);if(Math.abs(n)<0.001){e.w=0.5*(b.w+d.w);e.x=0.5*(b.x+d.x);e.y=0.5*(b.y+d.y);e.z=0.5*(b.z+d.z);return e}h=Math.sin((1-g)*o)/n;g=Math.sin(g*o)/n;e.w=b.w*h+d.w*g;e.x=b.x*h+d.x*g;e.y=b.y*h+d.y*g;e.z=b.z*h+d.z*g;return e};THREE.Vertex=function(b){this.position=b||new THREE.Vector3}; +THREE.Quaternion.slerp=function(b,d,e,g){var h=b.w*d.w+b.x*d.x+b.y*d.y+b.z*d.z;if(Math.abs(h)>=1){e.w=b.w;e.x=b.x;e.y=b.y;e.z=b.z;return e}var o=Math.acos(h),n=Math.sqrt(1-h*h);if(Math.abs(n)<0.0010){e.w=0.5*(b.w+d.w);e.x=0.5*(b.x+d.x);e.y=0.5*(b.y+d.y);e.z=0.5*(b.z+d.z);return e}h=Math.sin((1-g)*o)/n;g=Math.sin(g*o)/n;e.w=b.w*h+d.w*g;e.x=b.x*h+d.x*g;e.y=b.y*h+d.y*g;e.z=b.z*h+d.z*g;return e};THREE.Vertex=function(b){this.position=b||new THREE.Vector3}; THREE.Face3=function(b,d,e,g,h,o){this.a=b;this.b=d;this.c=e;this.normal=g instanceof THREE.Vector3?g:new THREE.Vector3;this.vertexNormals=g instanceof Array?g:[];this.color=h instanceof THREE.Color?h:new THREE.Color;this.vertexColors=h instanceof Array?h:[];this.vertexTangents=[];this.materials=o instanceof Array?o:[o];this.centroid=new THREE.Vector3}; THREE.Face4=function(b,d,e,g,h,o,n){this.a=b;this.b=d;this.c=e;this.d=g;this.normal=h instanceof THREE.Vector3?h:new THREE.Vector3;this.vertexNormals=h instanceof Array?h:[];this.color=o instanceof THREE.Color?o:new THREE.Color;this.vertexColors=o instanceof Array?o:[];this.vertexTangents=[];this.materials=n instanceof Array?n:[n];this.centroid=new THREE.Vector3};THREE.UV=function(b,d){this.set(b||0,d||0)}; THREE.UV.prototype={set:function(b,d){this.u=b;this.v=d;return this},copy:function(b){this.set(b.u,b.v);return this}};THREE.Geometry=function(){this.id="Geometry"+THREE.GeometryIdCounter++;this.vertices=[];this.colors=[];this.faces=[];this.edges=[];this.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.morphColors=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; @@ -204,7 +204,7 @@ m.rotation);c.uniform2fv(x.scale,A);if(m.mergeWith3D&&!z){c.enable(c.DEPTH_TEST) c.enableVertexAttribArray(J.attributes.uv);qb=!0}c.uniform1i(P.occlusionMap,0);c.uniform1i(P.map,1);c.bindBuffer(c.ARRAY_BUFFER,J.vertexBuffer);c.vertexAttribPointer(j.vertex,2,c.FLOAT,!1,16,0);c.vertexAttribPointer(j.uv,2,c.FLOAT,!1,16,8);c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,J.elementBuffer);c.disable(c.CULL_FACE);c.depthMask(!1);c.activeTexture(c.TEXTURE0);c.bindTexture(c.TEXTURE_2D,J.occlusionTexture);c.activeTexture(c.TEXTURE1);for(k=0;k0&&W[0]0&&W[1] -0.001&&u.scale>0.001){O[0]=u.x;O[1]=u.y;O[2]=u.z;D=u.size*u.scale/Aa;B[0]=D*t;B[1]=D;c.uniform3fv(P.screenPosition,O);c.uniform2fv(P.scale,B);c.uniform1f(P.rotation,u.rotation);c.uniform1f(P.opacity,u.opacity);pa(u.blending);K(u.texture,1);c.drawElements(c.TRIANGLES,6,c.UNSIGNED_SHORT,0)}}}}c.enable(c.CULL_FACE);c.enable(c.DEPTH_TEST);c.depthMask(Y)}function V(f,p){f._modelViewMatrix.multiplyToArray(p.matrixWorldInverse,f.matrixWorld,f._modelViewMatrixArray);THREE.Matrix4.makeInvert3x3(f._modelViewMatrix).transposeIntoArray(f._normalMatrixArray)} +0.0010&&u.scale>0.0010){O[0]=u.x;O[1]=u.y;O[2]=u.z;D=u.size*u.scale/Aa;B[0]=D*t;B[1]=D;c.uniform3fv(P.screenPosition,O);c.uniform2fv(P.scale,B);c.uniform1f(P.rotation,u.rotation);c.uniform1f(P.opacity,u.opacity);pa(u.blending);K(u.texture,1);c.drawElements(c.TRIANGLES,6,c.UNSIGNED_SHORT,0)}}}}c.enable(c.CULL_FACE);c.enable(c.DEPTH_TEST);c.depthMask(Y)}function V(f,p){f._modelViewMatrix.multiplyToArray(p.matrixWorldInverse,f.matrixWorld,f._modelViewMatrixArray);THREE.Matrix4.makeInvert3x3(f._modelViewMatrix).transposeIntoArray(f._normalMatrixArray)} function L(f){var p,j,k,m,x;if(f instanceof THREE.Mesh){j=f.geometry;for(p in j.geometryGroups){k=j.geometryGroups[p];x=!1;for(m in k.__webglCustomAttributes)if(k.__webglCustomAttributes[m].needsUpdate){x=!0;break}if(j.__dirtyVertices||j.__dirtyMorphTargets||j.__dirtyElements||j.__dirtyUvs||j.__dirtyNormals||j.__dirtyColors||j.__dirtyTangents||x){x=c.DYNAMIC_DRAW;var y=void 0,u=void 0,A=void 0,t=void 0;A=void 0;var w=void 0,z=void 0,D=void 0,B=void 0,O=void 0,W=void 0,P=void 0,X=void 0,Ga=void 0, T=void 0,R=void 0,U=void 0,ta=void 0;z=void 0;D=void 0;t=void 0;B=void 0;t=void 0;var s=void 0,G=void 0;z=void 0;s=void 0;G=void 0;var i=void 0,Ka=void 0;s=void 0;G=void 0;i=void 0;Ka=void 0;s=void 0;G=void 0;i=void 0;Ka=void 0;s=void 0;G=void 0;i=void 0;t=void 0;B=void 0;w=void 0;A=void 0;A=void 0;s=void 0;G=void 0;i=void 0;var Va=void 0,ua=0,Ba=0,Za=0,$a=0,Ja=0,La=0,ea=0,Ma=0,wa=0,C=0,Ca=0;G=s=0;var Da=k.__vertexArray,gb=k.__uvArray,hb=k.__uv2Array,Qa=k.__normalArray,ia=k.__tangentArray,Ea=k.__colorArray, ja=k.__skinVertexAArray,ka=k.__skinVertexBArray,la=k.__skinIndexArray,ma=k.__skinWeightArray,ib=k.__morphTargetsArrays,Ra=k.__webglCustomAttributes;i=void 0;var Na=k.__faceArray,Oa=k.__lineArray,rb=k.__needsSmoothNormals;W=k.__vertexColorType;O=k.__uvType;P=k.__normalType;var Ha=f.geometry,jb=Ha.__dirtyVertices,kb=Ha.__dirtyElements,fb=Ha.__dirtyUvs,lb=Ha.__dirtyNormals,mb=Ha.__dirtyTangents,nb=Ha.__dirtyColors,ob=Ha.__dirtyMorphTargets,ab=Ha.vertices,sb=k.faces,vb=Ha.faces,tb=Ha.faceVertexUvs[0], diff --git a/examples/obj/female02/Female02_slim.js b/examples/obj/female02/Female02_slim.js index f6f88982..05aa483f 100644 --- a/examples/obj/female02/Female02_slim.js +++ b/examples/obj/female02/Female02_slim.js @@ -107,11 +107,11 @@ var model = { "morphColors": [], - "normals": [0.945372,0.300211,0.126926,0.794275,0.212683,0.569079,0.792047,0.184729,0.581805,0.951781,0.291086,0.096561,0.863002,0.371380,-0.342418,0.838313,0.329997,-0.433943,0.638417,0.432508,-0.636647,0.540574,0.354747,-0.762810,0.326823,0.450911,-0.830561,0.677389,0.266579,-0.685598,0.927885,0.240638,-0.284768,0.967528,0.191107,0.165349,0.838099,0.132511,0.529130,0.522813,0.159307,0.837397,0.465560,0.142491,0.873440,0.497147,0.127506,0.858211,0.145054,0.104831,0.983825,0.178381,0.070467,0.981414,-0.100925,0.009674,0.994842,0.167150,-0.021027,0.985687,-0.038057,-0.060884,0.997406,-0.297037,-0.083651,0.951170,-0.296487,-0.036103,0.954344,-0.573412,-0.019776,0.818995,-0.641072,0.042177,0.766289,-0.586840,0.018952,0.809442,-0.905637,-0.044160,0.421705,-0.887265,0.081393,0.453993,-0.996979,0.042146,0.064852,-0.891903,0.089084,0.443342,-0.991882,0.126560,0.009980,-0.932035,-0.031190,-0.360942,-0.897183,0.072420,-0.435652,-0.617725,-0.160161,-0.769860,-0.533006,-0.018647,-0.845882,-0.108921,-0.217566,-0.969939,-0.525864,-0.190191,-0.829005,-0.097476,-0.252571,-0.962645,-0.558733,-0.166387,-0.812464,-0.154546,-0.243721,-0.957427,-0.531083,-0.200629,-0.823206,-0.197821,-0.159368,-0.967162,-0.252388,-0.130589,-0.958739,-0.006287,-0.000519,-0.999969,0.001007,0.299539,-0.954070,0.051149,0.367077,-0.928770,-0.097964,0.791833,-0.602802,-0.207801,0.817560,-0.537004,0.034394,0.470565,-0.881649,0.113132,0.373272,-0.920774,0.138890,0.430372,-0.891873,0.138127,0.415845,-0.898862,0.183599,0.466659,-0.865139,0.368542,0.495163,-0.786737,0.117985,0.315104,-0.941679,0.567888,0.330546,-0.753777,0.456252,0.033723,-0.889187,0.887082,0.121952,-0.445174,0.109409,-0.080966,-0.990661,-0.242409,-0.073000,-0.967406,-0.369243,0.388104,-0.844386,-0.121158,0.545762,-0.829096,-0.514573,0.764122,-0.388928,-0.343760,0.934965,0.087313,-0.278237,0.959899,0.033662,-0.194769,0.815210,-0.545396,-0.132511,0.271279,-0.953307,-0.349834,-0.266274,-0.898160,-0.846767,0.058992,-0.528672,-0.925596,-0.056063,-0.374310,-0.910154,-0.102420,-0.401379,-0.914548,-0.099429,-0.392041,-0.996582,-0.077212,0.029237,-0.960601,-0.162267,0.225532,-0.788751,-0.268990,0.552721,-0.514603,-0.467055,0.719016,-0.326853,-0.007477,0.945006,-0.038759,-0.065920,0.997040,0.208075,-0.046480,0.976989,0.446822,0.038728,0.893765,0.490829,0.076449,0.867855,0.825556,0.186468,0.532579,0.808588,0.124790,0.574938,0.784845,0.091586,0.612842,0.513688,0.047334,0.856655,0.466536,-0.062532,0.882260,0.223060,-0.041932,0.973876,-0.056429,-0.009888,0.998352,-0.268746,-0.376965,0.886349,-0.144902,-0.606952,0.781396,-0.064119,-0.583697,0.809412,-0.076754,-0.046327,0.995941,-0.059145,-0.145695,0.987548,-0.384350,-0.106174,0.917051,-0.498672,-0.602008,0.623585,-0.768059,-0.151677,0.622120,-0.794916,-0.468673,0.385235,-0.986908,-0.117618,0.110294,-0.999603,-0.001099,-0.027802,-0.994598,-0.089297,-0.052736,-0.864681,0.460280,-0.201056,-0.920804,0.146062,-0.361614,-0.990417,0.078066,0.113742,-0.936491,0.109104,0.333232,-0.933531,-0.208716,0.291391,-0.623280,0.287240,0.727287,-0.331156,0.303781,0.893307,0.003113,0.303171,0.952910,0.177007,0.334697,0.925535,-0.052736,0.413923,0.908780,-0.284555,0.379254,0.880428,-0.127903,0.287179,0.949278,-0.136204,-0.211768,0.967772,-0.037690,-0.655080,0.754570,0.125034,-0.385876,0.913999,0.303415,-0.539354,0.785485,0.230140,-0.726768,0.647145,0.523606,-0.660909,0.537584,0.543229,-0.370464,0.753410,0.168218,-0.248512,0.953887,0.189673,0.206000,0.959990,0.497055,0.132878,0.857448,0.848476,-0.097995,0.520035,0.754997,-0.442854,0.483505,0.888760,-0.324870,0.323283,0.954344,-0.140110,0.263771,0.776360,0.212439,0.593371,0.822993,0.186468,0.536515,0.837886,-0.486373,0.247627,0.888089,-0.141057,0.437452,0.563402,-0.596515,0.571581,0.772271,-0.127506,0.622333,0.666524,-0.038453,0.744469,0.633320,-0.329417,0.700247,0.116855,-0.730277,0.673025,0.650105,-0.722373,0.235511,0.961638,-0.259499,0.088778,0.965453,-0.176458,0.191565,0.809259,-0.371685,0.454848,0.549669,-0.443922,0.707633,-0.057588,-0.271554,0.960662,0.776116,-0.126835,0.617664,0.974029,-0.006745,0.226203,0.942503,-0.258644,0.211585,0.947172,-0.272744,0.168706,0.945647,-0.261483,-0.193213,0.985748,-0.060701,0.156774,0.903623,-0.149754,-0.401257,-0.051576,0.098575,-0.993774,-0.945708,-0.255837,-0.200323,-0.653493,0.034639,-0.756127,-0.721549,0.101657,-0.684835,-0.921201,-0.334605,-0.198401,-0.532395,-0.574908,-0.621265,-0.435804,-0.880154,-0.187964,0.400861,-0.753044,-0.521683,0.134190,-0.913633,0.383679,0.688009,-0.678915,0.256264,0.522233,-0.467696,0.713065,0.909391,0.029786,0.414808,0.914945,0.224219,0.335551,0.823908,0.523240,-0.217627,0.613727,0.773003,-0.160588,0.263955,0.620136,-0.738731,0.379955,0.595080,-0.708121,0.847438,0.469344,-0.247993,0.938353,-0.339000,-0.067263,0.855403,-0.242531,-0.457625,0.658467,0.048921,-0.750999,0.138859,0.019868,-0.990112,-0.249794,-0.225745,-0.941588,-0.190344,0.477554,-0.857692,0.344493,0.617206,-0.707358,-0.214667,0.412793,-0.885128,-0.099887,0.407025,-0.907926,0.120518,0.683309,-0.720084,0.297617,0.944639,-0.137944,0.067171,0.554613,-0.829371,-0.080630,0.302316,-0.949767,0.116794,0.032289,-0.992615,0.268990,-0.202094,-0.941679,0.593463,-0.308176,-0.743461,0.647725,-0.304117,-0.698508,0.917051,-0.335215,-0.215888,0.940306,-0.258675,-0.221137,0.972411,-0.091037,-0.214698,0.977325,0.145482,0.153722,0.944487,0.087008,-0.316813,0.746055,-0.232704,-0.623859,0.657186,-0.322184,-0.681356,0.240486,-0.283059,-0.928434,0.262917,-0.249977,-0.931852,0.641407,-0.024049,-0.766808,0.312784,0.007721,-0.949767,0.201117,0.387158,-0.899777,0.010498,0.411176,-0.911466,0.298196,0.244087,-0.922758,0.684286,0.103732,-0.721763,0.919462,0.107517,-0.378185,0.986541,0.124393,0.106052,0.846004,0.127659,0.517624,0.543443,0.130741,0.829157,0.152684,0.137577,0.978637,0.149449,0.136509,0.979278,0.134281,0.093234,0.986541,-0.129490,0.064638,0.989441,-0.130161,0.061617,0.989563,-0.323222,0.066744,0.943937,-0.351604,0.009919,0.936064,-0.601459,-0.018647,0.798669,-0.904935,0.062227,0.420911,-0.889981,0.072970,0.450087,-0.622272,0.077151,0.778954,-0.886746,0.109317,0.449110,-0.567156,0.077425,0.819941,-0.644765,0.046937,0.762902,-0.915891,0.084078,0.392499,-0.682485,0.028291,0.730308,-0.926695,0.061678,0.370647,-0.776330,0.036073,0.629261,-0.955504,0.055239,0.289651,-0.965972,0.090762,0.242164,-0.721519,0.087069,0.686850,-0.820887,0.103916,0.561510,-0.972961,0.122288,0.195929,-0.979888,0.113620,-0.163945,-0.982879,0.087497,-0.161992,-0.992309,0.073763,-0.099338,-0.993469,0.107273,-0.038087,-0.991760,0.127262,-0.013184,-0.989868,0.135594,0.041688,-0.991089,0.129490,0.030793,-0.991852,0.126652,-0.011383,-0.835963,0.195227,-0.512833,-0.889065,0.212531,-0.405377,-0.923368,0.186285,-0.335673,-0.882046,0.177465,-0.436415,-0.873806,0.129093,-0.468764,-0.840877,0.104282,-0.531053,-0.875576,0.123142,-0.467086,-0.788324,0.134831,-0.600269,-0.473403,0.163305,-0.865566,-0.462966,0.185339,-0.866756,-0.017884,0.226875,-0.973754,0.090701,0.170049,-0.981231,0.357006,0.172674,-0.917966,0.316904,0.124027,-0.940275,0.350108,0.094577,-0.931913,0.232887,0.008576,-0.972442,0.209998,-0.031495,-0.977172,0.198798,-0.035554,-0.979369,0.195532,-0.038179,-0.979919,0.124454,0.079836,-0.988983,0.281045,-0.044008,-0.958678,0.324198,0.088565,-0.941801,0.051424,0.239631,-0.969481,0.644002,-0.019776,-0.764763,0.922086,0.032716,-0.385571,0.994324,0.085177,0.063631,0.887600,0.105960,0.448195,0.602405,0.113834,0.790002,0.210700,0.120640,0.970061,-0.144780,0.131260,0.980712,-0.116825,0.131230,0.984436,-0.164281,0.073794,0.983642,-0.306681,0.060610,0.949858,-0.346843,0.038453,0.937101,-0.400189,0.038392,0.915616,-0.489181,0.054323,0.870479,-0.515549,0.098209,0.851192,-0.591571,0.093051,0.800836,-0.481613,0.170354,0.859645,-0.400128,0.112033,0.909574,-0.336924,0.090365,0.937162,-0.286019,0.066836,0.955870,-0.263741,0.099033,0.959471,-0.316202,0.117649,0.941343,-0.386364,0.167119,0.907041,-0.407361,0.234779,0.882534,-0.209174,0.191107,0.959014,-0.143040,0.158361,0.976959,0.196570,0.153050,0.968444,0.188482,0.170293,0.967193,0.484787,0.138554,0.863582,0.614277,0.138859,0.776757,0.872646,0.096255,0.478713,0.998321,0.054140,0.019684,0.900601,0.010010,-0.434523,0.998169,0.050996,-0.032350,0.998596,0.049074,0.019196,0.883511,0.083926,0.460799,0.928434,0.038697,-0.369427,0.662282,0.046052,-0.747795,0.652882,-0.025849,-0.756981,0.349406,-0.025941,-0.936583,0.316233,0.091067,-0.944273,0.424055,0.112857,-0.898556,0.679525,0.082736,-0.728935,0.882931,0.055300,-0.466201,0.245582,0.156987,-0.956542,0.264077,0.091342,-0.960143,0.218909,-0.029420,-0.975280,0.364025,0.164556,-0.916715,-0.221717,0.266732,-0.937895,-0.187628,0.167058,-0.967895,-0.050111,0.040071,-0.997925,0.130955,-0.014893,-0.991272,-0.057283,0.095492,-0.993774,-0.501144,0.129154,-0.855647,-0.514939,0.107089,-0.850490,-0.587817,0.192511,-0.785730,-0.628864,0.246742,-0.737297,-0.639607,0.308115,-0.704215,-0.506088,0.261940,-0.821711,-0.188726,-0.002350,-0.981994,-0.156621,0.347179,-0.924589,0.067995,-0.003540,-0.997650,0.024415,0.352336,-0.935514,0.081149,-0.204657,-0.975433,0.077364,-0.245308,-0.966338,0.072970,-0.276864,-0.958098,0.270089,-0.290109,-0.918058,0.079470,-0.175024,-0.981323,0.088839,0.055330,-0.994476,0.148350,0.437696,-0.886776,0.293100,0.900540,-0.321055,0.436964,0.856166,0.275674,0.446638,0.784082,-0.430891,0.728111,0.622974,-0.285836,0.919401,0.287912,-0.267830,0.999603,0.015656,0.022340,-0.764611,-0.074953,-0.640095,-0.814478,0.403760,-0.416639,-0.658742,0.744957,0.105228,-0.306742,0.781213,0.543687,-0.285592,0.830195,0.478713,-0.361095,0.932340,-0.018006,-0.498489,0.563189,-0.658986,-0.063173,0.137883,-0.988403,0.160894,-0.314737,-0.935423,0.481338,0.756096,-0.443373,0.647328,-0.053133,-0.760338,0.999786,-0.003052,-0.019105,0.689352,0.559130,0.460555,-0.433241,0.901242,-0.002686,0.375927,0.119419,0.918882,0.413709,-0.117466,0.902768,-0.501053,-0.211005,0.839259,-0.659505,0.001679,0.751671,-0.910184,-0.014588,0.413923,-0.879421,-0.063417,0.471786,-0.441664,-0.563158,0.698386,-0.806207,-0.567186,0.168126,-0.157659,-0.979736,-0.123508,0.334330,-0.724815,0.602344,0.859523,0.071139,0.506088,0.992492,-0.021821,-0.120182,0.651784,-0.035737,-0.757530,0.697562,-0.633778,-0.334208,0.685446,-0.701315,0.195624,0.435835,-0.543596,-0.717277,-0.116337,-0.500595,-0.857814,-0.470260,-0.625507,-0.622517,-0.778802,-0.516465,-0.355907,-0.983764,0.031495,-0.176580,-0.951201,0.212439,-0.223670,-0.847255,0.294198,0.442244,-0.695822,0.189947,0.692587,-0.749535,-0.101871,0.654042,-0.832179,0.141331,0.536149,-0.815516,0.308054,0.489883,-0.816889,0.367351,0.444624,-0.548051,0.551256,0.629078,-0.458357,0.621509,0.635273,-0.272896,0.574145,0.771905,0.054323,0.577258,0.814722,0.158238,0.542589,0.824915,-0.025788,0.575030,0.817682,-0.211982,0.579241,0.787072,-0.109897,0.588336,0.801080,0.219642,0.515610,0.828181,0.514267,0.452345,0.728599,0.482955,0.532884,0.694784,0.543107,0.522660,0.657125,0.246223,0.641377,0.726615,0.207953,0.648061,0.732627,0.005799,0.664388,0.747337,0.109043,0.630024,0.768853,0.401837,0.685812,0.606739,0.085330,0.607105,0.790002,0.301187,0.401563,0.864864,-0.035005,0.578082,0.815210,0.051973,0.349864,0.935331,0.290902,0.015870,0.956603,0.114170,-0.008850,0.993408,0.295297,-0.518082,0.802728,-0.071535,-0.457625,0.886227,0.467238,-0.262459,0.844234,0.771844,0.100711,0.627735,0.669485,0.447371,0.592944,0.828974,0.514817,0.218451,0.541307,0.825739,0.158391,0.487197,0.617115,0.617847,0.742790,0.253578,0.619587,0.564470,0.389111,0.727958,0.731803,0.533891,0.423505,0.435224,0.812830,0.387097,0.966002,0.186865,0.178564,0.859859,-0.132939,0.492874,-0.955260,-0.206885,-0.211310,-0.956877,0.290139,0.011719,-0.837764,0.254524,0.483047,-0.605518,0.649342,0.460036,-0.357646,0.502670,0.787011,-0.463149,0.067324,0.883694,-0.171789,0.390393,0.904447,-0.018647,0.576403,0.816919,-0.111728,0.626026,0.771722,-0.132847,0.651631,0.746788,-0.211035,0.680837,0.701346,-0.376751,0.628895,0.680074,-0.533860,0.457411,0.711112,-0.483108,0.738639,0.470046,-0.720115,0.689077,-0.081149,-0.592639,0.165990,-0.788171,-0.521897,0.060427,-0.850856,0.162633,0.043703,-0.985687,0.019349,0.028260,-0.999390,-0.201941,0.693167,0.691885,-0.027680,0.667196,0.744346,0.042787,0.618397,0.784661,0.051668,0.611347,0.789666,-0.029298,0.563250,0.825739,-0.023072,0.598254,0.800928,-0.089175,0.625965,0.774712,-0.078677,0.630940,0.771813,-0.074526,0.281747,0.956572,-0.305368,0.011475,0.952147,-0.370342,-0.601489,0.707816,-0.601428,-0.371868,0.707053,-0.907285,-0.321818,0.270547,-0.101566,-0.033082,0.994263,-0.311899,0.387799,-0.867336,-0.550798,-0.763329,0.337474,0.738182,-0.323069,-0.592151,0.319590,-0.324961,-0.890072,0.939940,-0.267403,-0.212012,0.870724,-0.448805,-0.200964,0.887204,-0.352306,-0.297769,0.623127,-0.411451,-0.665120,0.704001,-0.262185,-0.660024,0.942625,-0.197851,-0.268777,0.850459,0.009705,-0.525925,0.382763,-0.027833,-0.923399,0.336558,-0.307962,-0.889859,0.403211,-0.406995,-0.819605,0.134556,-0.426923,-0.894192,0.129612,-0.348064,-0.928434,-0.065279,-0.389111,-0.918851,-0.509415,-0.493179,-0.705130,0.053774,-0.954711,0.292581,0.425306,-0.892300,0.151189,0.108188,-0.991974,-0.065157,0.564226,-0.822810,0.067782,0.359355,-0.913236,0.191931,0.599475,-0.629139,0.494736,0.737297,-0.570147,0.362377,0.743309,-0.591083,0.313150,0.709189,-0.700919,0.075594,0.816919,-0.450942,0.359478,0.848201,-0.521958,0.089785,0.854885,-0.401288,0.328745,0.894498,-0.439100,0.083895,0.926176,-0.267251,0.265999,0.957091,-0.279641,0.075594,0.953734,-0.231941,0.191260,0.943999,-0.136845,0.300150,0.902676,-0.162450,0.398450,0.735221,-0.438215,0.517075,0.792993,-0.173528,0.583941,0.742607,-0.101474,0.661946,0.953093,-0.100009,0.285653,0.654530,-0.093051,0.750237,0.743675,-0.274422,0.609577,0.687490,-0.333934,0.644795,-0.002350,-0.910947,0.412427,0.009919,-0.980041,-0.198401,-0.187933,-0.818110,-0.543443,0.638142,-0.759117,0.128300,0.825495,-0.564379,-0.001495,0.901151,-0.383740,0.201575,0.717978,-0.079440,0.691488,0.804712,-0.019288,0.593310,0.659993,-0.087588,0.746117,0.770135,-0.194189,0.607532,0.865963,-0.187445,0.463607,0.810205,-0.357158,0.464736,0.856960,-0.227119,0.462600,0.790796,-0.180029,0.584979,0.932035,0.358684,0.051210,0.782037,0.584796,0.215400,0.108463,0.749260,-0.653310,0.292215,0.362316,-0.885037,0.195227,0.484878,-0.852504,0.387829,-0.078372,-0.918363,0.989410,0.144261,0.014649,0.761467,0.022065,0.647786,0.985961,-0.111515,-0.124088,0.858425,-0.454207,-0.238289,0.391949,-0.524949,-0.755486,0.285440,-0.597339,-0.749443,0.729392,-0.640187,-0.241066,0.928404,-0.357006,0.102756,0.900845,-0.432905,0.032502,0.825861,-0.561663,-0.049654,0.754082,-0.652608,-0.073519,0.648030,-0.706992,0.283151,0.937101,-0.294992,0.186468,0.969207,-0.245399,-0.020081,0.923826,-0.380963,-0.036805,0.880032,-0.457106,-0.128605,0.568255,-0.412458,-0.711966,0.634968,-0.212348,-0.742759,0.998596,0.052614,0.004700,0.928068,0.112156,-0.355083,0.511856,0.081057,-0.855220,0.095523,0.053316,-0.993988,0.108737,-0.078982,-0.990905,0.124088,-0.262520,-0.956877,-0.083956,-0.351024,-0.932585,-0.141972,-0.462813,-0.874996,-0.382794,-0.514420,-0.767327,-0.491317,-0.384564,-0.781457,-0.721091,-0.516984,-0.461196,-0.705191,-0.610157,-0.361095,-0.777459,-0.493362,-0.390027,-0.522111,-0.845180,0.114017,-0.248268,-0.966918,0.058321,-0.389660,-0.920469,-0.029115,-0.199713,-0.970489,0.135105,0.080996,-0.978637,0.188910,0.282449,-0.748070,0.600482,0.476089,-0.248268,0.843593,0.230354,-0.305063,0.924009,0.194281,0.008789,0.980895,-0.093387,-0.072878,0.992950,-0.067232,-0.290384,0.954527,-0.383374,-0.050325,0.922208,-0.271920,-0.536851,0.798608,0.045656,-0.892117,0.449446,0.209571,-0.487564,0.847530,0.267708,-0.842769,0.466903,0.426618,-0.391430,0.815332,0.572039,-0.619465,0.537553,0.467696,-0.426008,0.774438,0.687216,-0.137516,0.713309,0.596728,-0.214789,0.773125,0.698996,0.060396,0.712546,0.427534,0.258309,0.866268,0.586535,0.397626,0.705557,0.565905,0.087039,0.819819,0.401898,0.360912,0.841517,0.379254,0.488052,0.786065,0.067507,-0.402783,0.912778,0.253761,-0.080905,0.963866,0.353465,-0.221015,0.908933,0.409497,-0.230598,0.882656,0.483077,-0.133946,0.865230,0.403821,-0.008850,0.914762,0.678274,-0.240089,0.694418,0.747368,-0.299753,0.592914,0.778680,-0.340251,0.527116,0.799829,-0.397351,0.449782,0.832545,-0.248970,0.494797,0.847285,-0.181555,0.499069,0.931333,-0.113590,0.345958,0.754540,-0.143071,0.640431,0.801843,-0.027345,0.596881,0.800684,0.109684,0.588916,0.935087,-0.005463,0.354350,0.840175,0.178228,0.512162,0.896176,0.064028,0.438978,0.863399,0.011811,0.504349,0.902005,0.003754,0.431654,0.924131,0.016816,0.381634,0.915494,0.043794,0.399884,0.945921,0.046968,0.320902,0.941618,0.118809,0.315012,0.983490,0.150517,0.100284,-0.261940,0.902615,-0.341502,0.202429,0.746788,0.633473,0.764580,-0.013184,0.644368,0.891354,-0.115848,0.438185,0.798486,-0.048372,0.600024,0.006623,0.258370,0.966002,0.614582,0.193609,0.764702,0.649129,0.548967,0.526505,0.011963,0.989654,-0.142827,0.290536,-0.512680,-0.807886,0.899564,-0.435286,0.035371,0.849666,-0.479904,0.218390,-0.178442,0.901273,0.394757,-0.548845,0.713401,0.435591,0.993255,-0.108066,0.041566,0.894406,-0.399030,0.201972,0.918424,-0.293283,0.265450,0.888607,0.115177,0.443892,0.876400,0.112094,0.468307,0.752678,0.330241,0.569536,0.714408,0.387799,0.582385,0.469039,0.614307,0.634480,0.296945,0.600238,0.742637,0.184027,0.753868,0.630696,0.182257,0.778436,0.600665,0.484390,0.648946,0.586657,-0.142491,0.743950,0.652852,-0.140843,0.807794,0.572375,-0.450545,0.713614,0.536363,-0.453291,0.688589,0.565966,-0.699454,0.494675,0.515763,-0.711600,0.526505,0.465163,-0.878994,0.224647,0.420515,-0.901608,0.160863,0.401440,-0.963866,-0.074465,0.255715,-0.956389,-0.075533,0.282113,-0.966582,-0.148869,0.208655,-0.951933,-0.186041,0.243294,-0.965819,-0.176641,0.189642,-0.959899,-0.125980,0.250404,-0.966399,-0.200140,0.161168,-0.919004,-0.301187,0.254250,-0.912595,-0.348308,0.214026,-0.875668,-0.219764,0.429914,-0.842097,-0.340953,0.417829,-0.939360,-0.305918,-0.154759,-0.818110,-0.574358,0.028016,-0.951048,-0.294931,0.092196,-0.874966,-0.476913,0.083254,-0.885342,-0.366741,0.285684,-0.764031,-0.233375,0.601428,-0.810419,-0.235908,0.536210,-0.886135,-0.192419,0.421522,-0.827570,-0.560717,0.025941,-0.684866,-0.612232,-0.395123,-0.120273,-0.577380,-0.807520,-0.678335,-0.718345,-0.154241,-0.004791,-0.627064,-0.778924,-0.320627,-0.503464,-0.802301,-0.523240,-0.768456,-0.368358,-0.726859,-0.621632,-0.291879,-0.802423,-0.557726,-0.212165,-0.851924,-0.477798,-0.214179,-0.848964,-0.527879,-0.024171,-0.744102,-0.667257,0.032411,-0.577776,-0.788995,-0.208838,-0.554735,-0.830317,-0.052797,-0.656789,-0.734428,0.170904,-0.664998,-0.713706,0.219886,-0.547319,-0.746544,0.378216,-0.740715,-0.385388,0.550249,-0.574786,-0.355876,0.736839,-0.240394,-0.801599,0.547380,0.036988,-0.862362,0.504929,-0.037141,-0.497269,0.866787,-0.343699,-0.363842,0.865688,-0.567675,-0.108310,0.816065,-0.608753,-0.245735,0.754326,-0.774804,-0.455611,0.438246,-0.764733,-0.612903,0.198767,-0.726829,-0.683218,-0.070193,-0.804987,-0.571245,0.160100,-0.783593,-0.500198,0.368389,-0.630268,-0.350383,0.692770,-0.522263,-0.325968,0.787988,-0.475661,-0.305918,0.824702,-0.515549,-0.359966,0.777551,-0.711722,-0.457503,0.533006,-0.707083,-0.374004,0.600085,-0.847163,-0.420942,0.324137,-0.777062,-0.558824,0.289590,-0.887753,-0.452956,0.081698,-0.786645,-0.611225,-0.086856,-0.669637,-0.714774,-0.201605,-0.783746,-0.605365,-0.138615,-0.877041,-0.467422,-0.110721,-0.906400,-0.422376,0.002289,-0.839412,-0.538011,-0.076815,-0.782617,-0.607532,-0.135502,0.226539,-0.957884,-0.176397,-0.720267,-0.587237,0.369213,-0.937834,-0.329508,0.108951,-0.875698,-0.357952,0.324015,-0.670827,-0.333384,0.662404,-0.422254,-0.409680,0.808588,-0.258248,-0.299722,0.918393,-0.419050,-0.149815,0.895505,-0.683218,-0.345866,0.643086,-0.492996,-0.485549,0.721885,-0.180670,-0.888699,0.421339,-0.531480,-0.732444,0.425459,-0.517319,-0.526872,0.674337,-0.259743,-0.591571,0.763237,-0.024445,-0.573565,0.818781,-0.340007,0.212165,0.916166,-0.642048,0.307199,0.702384,-0.773583,-0.287088,0.564867,-0.782830,0.257393,0.566454,-0.824458,-0.095584,0.557756,-0.634358,0.149602,0.758385,-0.165624,-0.426649,0.889096,-0.190222,-0.831690,0.521592,-0.512833,-0.437056,0.738884,-0.659108,-0.310221,0.685049,-0.617542,-0.153539,0.771386,-0.647633,0.064119,0.759209,-0.512070,-0.080599,0.855129,-0.469863,-0.208167,0.857814,-0.640645,-0.213324,0.737571,-0.447432,-0.129795,0.884823,-0.480178,-0.081362,0.873379,-0.463942,-0.013672,0.885739,-0.533403,-0.183142,0.825770,-0.538285,-0.072237,0.839625,-0.488815,0.087588,0.867946,-0.544725,0.012085,0.838496,-0.407819,0.113742,0.905911,-0.557146,-0.074587,0.827021,-0.358104,-0.035066,0.933012,-0.508133,0.011505,0.861171,-0.661031,0.066805,0.747337,-0.715659,-0.008515,0.698386,-0.709525,-0.101382,0.697317,-0.804559,-0.036287,0.592730,-0.907285,-0.065157,0.415387,-0.727439,-0.008240,0.686117,-0.882473,-0.199805,0.425764,-0.939451,-0.305124,0.155889,-0.822565,-0.304544,0.480209,-0.943632,-0.004364,0.330943,-0.906949,-0.086428,0.412244,-0.786767,-0.265908,0.556993,-0.624500,-0.603626,0.495560,-0.575884,-0.338023,0.744346,-0.624470,0.059236,0.778771,-0.542772,0.149968,0.826350,-0.359294,-0.088351,0.929014,-0.166875,-0.087680,0.982055,-0.204077,0.170476,0.963988,-0.308115,0.342479,0.887539,-0.193732,0.187078,0.963042,-0.277749,0.248939,0.927824,-0.198981,-0.489547,0.848933,-0.218726,-0.606525,0.764367,-0.063387,-0.719352,0.691733,-0.077303,-0.712638,0.697256,-0.033448,-0.769799,0.637379,-0.012085,-0.830042,0.557512,-0.151891,-0.753960,0.639088,-0.095157,-0.940886,0.325053,-0.330943,-0.805872,0.490921,-0.178991,-0.732749,0.656514,-0.224525,-0.676992,0.700888,-0.163274,-0.439436,0.883297,-0.350688,-0.414686,0.839656,-0.338420,-0.361705,0.868679,-0.460891,-0.292550,0.837825,-0.615711,0.008057,0.787896,-0.676534,-0.279336,0.681356,-0.867183,-0.016968,0.497665,-0.913236,-0.139531,0.382733,-0.791070,-0.400464,0.462386,-0.876156,-0.275613,0.395398,-0.772668,-0.364971,0.519364,-0.885830,-0.301492,0.352641,-0.930967,-0.171850,0.322062,-0.932951,-0.133824,0.334147,-0.924986,-0.034242,0.378399,-0.847194,0.080691,0.525101,-0.602435,0.087710,0.793298,-0.405835,-0.000671,0.913938,-0.261361,-0.078066,0.962066,-0.262795,-0.299142,0.917295,-0.254097,-0.694754,0.672811,-0.177557,-0.601062,0.779199,-0.206305,-0.709677,0.673605,-0.192785,-0.591235,0.783105,-0.165014,-0.282022,0.945097,-0.314493,-0.590320,0.743339,-0.351238,-0.640339,0.683035,-0.128758,-0.623218,0.771325,-0.271828,-0.626301,0.730644,-0.513016,-0.732780,0.447005,-0.368297,-0.759301,0.536454,-0.348674,-0.709861,0.611927,-0.634144,-0.642659,0.429914,-0.390210,-0.605029,0.693991,-0.210700,-0.480911,0.851039,-0.581317,-0.188513,0.791498,-0.593127,-0.048311,0.803644,-0.636067,0.007538,0.771569,-0.455000,0.444441,0.771630,-0.307474,0.126438,0.943083,-0.139348,-0.099246,0.985229,-0.048463,-0.037233,0.998108,-0.054109,-0.000824,0.998505,-0.402448,0.155126,0.902188,-0.256142,0.225318,0.940001,-0.292550,0.310800,0.904294,-0.481979,0.291910,0.826106,-0.499405,0.070528,0.863460,-0.661184,0.058809,0.747887,-0.630757,0.335002,0.699911,-0.503708,0.376537,0.777459,-0.215827,0.423597,0.879727,-0.668264,0.249245,0.700919,-0.718406,0.301004,0.627094,-0.828059,0.228004,0.512131,-0.889615,0.079562,0.449690,-0.671407,-0.133213,0.728996,-0.818110,-0.016877,0.574786,-0.953124,0.159581,0.257027,-0.943663,-0.055330,0.326151,-0.729789,-0.050661,0.681783,-0.708762,-0.613514,0.348155,-0.442335,-0.513993,0.734916,-0.039430,-0.950530,0.308023,-0.280862,-0.918699,0.277627,-0.257668,-0.955870,0.140996,-0.327219,-0.941496,0.080325,-0.429395,-0.828394,0.359600,-0.739769,-0.463424,0.487777,-0.446699,-0.484542,0.752098,-0.577441,-0.028748,0.815882,-0.044618,-0.449446,0.892178,0.022919,-0.808130,0.588519,0.025056,-0.816858,0.576281,0.506516,-0.732566,0.454695,0.375988,-0.400281,0.835688,0.705496,-0.315470,0.634602,0.397290,0.071017,0.914914,-0.108005,0.071139,0.991577,-0.134587,0.427839,0.893765,-0.676473,0.280313,0.681021,-0.566271,0.468856,0.677816,-0.881832,0.221473,0.416242,-0.941679,0.154241,0.299020,-0.937773,-0.053499,0.343028,-0.620411,-0.714133,0.324137,-0.902127,0.052919,0.428175,-0.671407,0.335185,0.660939,-0.736290,0.081027,0.671773,-0.587512,-0.395764,0.705802,-0.466567,-0.334330,0.818842,-0.505173,0.195532,0.840541,-0.137852,0.495529,0.857570,-0.139988,0.550798,0.822779,0.314219,0.559008,0.767296,0.445235,0.449507,0.774377,0.646626,0.378979,0.661977,0.718619,0.385357,0.578845,0.457106,0.396344,0.796167,0.769494,0.224067,0.598010,0.812830,0.333872,0.477279,0.747887,0.247200,0.616047,0.473556,0.174963,0.863186,0.525651,-0.010651,0.850612,0.673757,0.135838,0.726341,0.831080,0.342265,0.438276,0.842006,0.128697,0.523850,0.673849,-0.581622,0.455611,0.733665,-0.465804,0.494675,0.851405,0.128422,0.508530,0.510514,-0.095462,0.854518,0.574480,0.082827,0.814264,0.303079,-0.001160,0.952940,0.293008,0.151646,0.943968,0.239326,0.365764,0.899380,0.398511,0.440382,0.804498,0.503891,0.426130,0.751305,0.556291,0.213385,0.803095,0.278054,0.275735,0.920133,-0.127049,0.303995,0.944151,-0.081057,-0.180670,0.980193,-0.218421,-0.443403,0.869289,-0.196570,-0.125462,0.972411,-0.267312,0.087374,0.959624,-0.406446,0.135868,0.903470,-0.437574,0.120518,0.891049,-0.712485,0.084964,0.696493,-0.432417,0.278207,0.857662,-0.795068,0.161626,0.584582,-0.553056,0.513199,0.656270,-0.908231,-0.037629,0.416700,-0.908963,-0.033937,0.415448,-0.860561,0.006226,0.509293,-0.138310,0.506485,0.851039,-0.128178,0.320719,0.938444,-0.120304,0.213080,0.969573,-0.111301,0.106815,0.988006,-0.094333,-0.064364,0.993439,-0.065798,-0.301065,0.951323,0.125431,-0.408185,0.904202,0.020173,-0.103275,0.994446,0.047884,0.119633,0.991638,0.182775,0.196204,0.963347,0.207495,0.062075,0.976257,0.074892,-0.043641,0.996216,0.026734,-0.262398,0.964568,0.272134,-0.530259,0.802942,0.351634,-0.250557,0.901944,0.502487,-0.284158,0.816523,0.437910,-0.084170,0.895047,0.451491,0.363872,0.814661,0.252907,0.453993,0.854335,0.038301,0.344676,0.937925,0.188055,0.174749,0.966460,0.278542,0.166173,0.945921,0.271462,0.061586,0.960448,0.279122,-0.055422,0.958647,0.321726,-0.127110,0.938231,0.337168,0.006317,0.941404,0.381146,-0.429701,0.818567,0.167180,-0.929380,0.329020,0.410810,-0.887417,0.208930,0.486801,-0.858150,0.162999,0.398450,-0.849147,0.346629,0.755638,-0.241615,0.608753,0.455947,-0.270730,0.847804,-0.028748,-0.548326,0.835749,-0.551805,-0.373913,0.745415,-0.797540,-0.400647,0.450972,-0.698721,-0.039674,0.714255,-0.551866,0.031007,0.833338,-0.523179,0.022095,0.851894,-0.402448,-0.561205,0.723197,-0.439802,-0.699545,0.563189,-0.180761,-0.909085,0.375286,-0.723502,-0.044923,0.688803,-0.094150,-0.935942,0.339305,-0.261116,-0.839534,0.476394,-0.040895,-0.900662,0.432539,-0.191992,-0.529893,0.826014,-0.230171,0.032807,0.972564,-0.233375,-0.049989,0.971099,-0.105960,0.049623,0.993103,-0.102908,0.018220,0.994507,-0.022309,-0.585772,0.810144,-0.123508,-0.906705,0.403241,0.049806,-0.958190,0.281747,0.077425,-0.972839,0.218116,0.047914,-0.899411,0.434462,0.220099,-0.871517,0.438154,0.126072,-0.497330,0.858333,0.133824,-0.882748,0.450301,0.354656,-0.483688,0.800134,0.324107,-0.779626,0.535844,0.450087,-0.608448,0.653584,0.558123,-0.185614,0.808710,0.327860,0.109226,0.938383,0.020600,0.058473,0.998047,0.040590,-0.021943,0.998932,0.357280,0.124088,0.925687,0.536027,0.086734,0.839686,0.457259,0.177252,0.871456,0.469619,-0.042238,0.881832,0.432539,-0.340251,0.834925,0.245491,-0.787072,0.565874,0.281075,-0.861782,0.422224,0.210547,-0.904721,0.370281,0.009827,-0.958129,0.286142,0.088321,-0.954222,0.285653,0.044252,-0.983428,-0.175695,0.326273,-0.333048,0.884640,0.436201,-0.192206,0.879055,0.392865,-0.190741,0.899564,0.500351,-0.183355,0.846156,0.384014,-0.089206,0.918973,0.363720,0.020081,0.931272,0.353191,0.104007,0.929746,0.384808,0.021821,0.922727,0.164830,0.018433,0.986145,0.013398,0.252907,0.967376,-0.017792,-0.072390,0.997192,-0.144719,-0.047090,0.988342,-0.053041,0.440230,0.896298,0.081851,0.166356,0.982635,0.193670,0.510910,0.837519,0.455031,0.119327,0.882412,0.418653,0.055300,0.906430,0.651631,-0.511002,0.560533,0.357555,-0.528520,0.769921,0.550127,-0.623951,0.554949,0.240944,-0.573779,0.782739,0.129185,-0.446120,0.885556,0.329417,-0.570666,0.752159,0.147679,-0.556352,0.817682,0.129490,-0.258980,0.957152,0.224250,-0.304086,0.925840,0.432142,0.115360,0.894375,0.402387,0.190588,0.895383,0.218207,0.187658,0.957671,0.188238,0.341746,0.920713,0.613849,0.305856,0.727714,0.527757,0.211921,0.822504,0.691946,0.238289,0.681478,0.736167,0.147160,0.660573,0.569384,-0.151769,0.807917,0.334025,-0.211158,0.918577,0.252449,-0.352916,0.900937,0.068941,-0.415662,0.906888,0.135807,-0.568987,0.811029,0.249184,-0.643239,0.723960,0.206183,-0.667440,0.715506,0.094974,-0.600330,0.794061,0.211676,-0.632313,0.745201,0.381420,-0.732933,0.563280,0.187994,-0.695120,0.693838,0.193213,-0.706687,0.680593,0.215308,-0.909055,0.356700,0.169744,-0.721030,0.671743,0.398846,-0.680776,0.614338,0.355052,-0.637806,0.683432,0.120090,-0.456893,0.881344,-0.043367,0.202490,0.978301,0.175329,0.214331,0.960875,-0.042512,-0.089267,0.995086,-0.146672,-0.010285,0.989105,-0.030274,0.188299,0.981628,0.177435,-0.033357,0.983551,0.313669,0.095645,0.944670,0.471938,0.182806,0.862453,0.326060,0.238929,0.914640,0.432112,0.167394,0.886105,0.191778,0.337504,0.921537,0.149937,0.334605,0.930326,0.031800,0.280648,0.959258,0.245460,-0.447493,0.859890,0.179327,-0.565783,0.804804,0.050172,0.379223,0.923917,0.067415,-0.705954,0.705008,0.078310,-0.696707,0.713034,0.067141,-0.821925,0.565600,0.243751,-0.592090,0.768090,0.432783,-0.248939,0.866421,0.747124,-0.242988,0.618641,0.559984,-0.489761,0.668203,0.352733,-0.690512,0.631458,0.059603,-0.760277,0.646809,0.151280,-0.819422,0.552843,0.475631,-0.704123,0.527207,0.621509,-0.476058,0.622150,0.817042,-0.102268,0.567400,0.827815,0.038697,0.559618,0.818842,0.144261,0.555559,0.796045,0.140599,0.588672,0.722831,0.168340,0.670156,0.795831,0.136814,0.589831,0.855251,0.049226,0.515824,0.840022,-0.124790,0.528001,0.710990,-0.213050,0.670095,0.697165,-0.113956,0.707755,0.562151,0.028779,0.826502,0.472060,-0.230689,0.850826,0.323466,-0.814783,0.481094,0.549181,0.120945,0.826868,0.562853,0.123844,0.817194,0.553911,-0.051973,0.830927,0.439802,-0.085849,0.893948,0.578539,-0.205481,0.789331,0.633839,-0.236702,0.736320,0.411969,-0.264992,0.871792,0.125065,-0.260475,0.957335,0.536973,-0.230903,0.811365,0.668386,-0.316202,0.673208,0.661061,0.113712,0.741630,0.805261,0.088839,0.586200,0.080305,-0.196581,-0.977193,0.125797,-0.946257,0.297891,0.189795,-0.968535,-0.160924,0.156915,-0.188725,-0.969412,-0.618152,0.385968,0.684713,-0.625416,0.255806,0.737144,-0.526048,0.644398,0.554949,-0.311502,0.703635,0.638600,-0.352702,0.791406,0.499222,-0.137700,0.863277,0.485519,-0.142735,0.713706,0.685720,-0.127049,0.304361,0.944029,0.101199,0.257332,0.960997,0.030519,0.738639,0.673360,0.080172,0.835749,0.543199,0.264870,0.725394,0.635304,0.414441,0.415387,0.809717,0.215918,-0.542863,0.811548,-0.571917,-0.605640,0.553209,-0.325541,-0.759911,0.562578,-0.419935,-0.795801,0.436232,-0.267953,-0.644490,0.716086,-0.537675,-0.348308,0.767815,-0.179022,-0.744896,0.642689,-0.090793,-0.844203,0.528245,-0.242561,-0.872768,0.423536,-0.316843,-0.505112,0.802759,-0.435102,0.273324,0.857845,-0.396161,0.278664,0.874844,-0.611621,-0.297189,0.733177,-0.554826,-0.293680,0.778375,-0.517655,-0.283944,0.807062,-0.582598,-0.190497,0.790094,-0.686300,-0.178930,0.704917,-0.823756,-0.261849,0.502823,-0.720847,-0.478133,0.501724,0.102908,-0.900174,0.423139,-0.485397,-0.874142,0.014191,0.452559,-0.752556,-0.478347,-0.779656,-0.430372,0.454817,-0.758538,-0.237739,0.606677,-0.418653,-0.320231,-0.849788,-0.014985,-0.543962,-0.838954,-0.173498,-0.135838,-0.975402,-0.114841,0.453108,-0.883999,-0.969390,-0.148839,-0.195227,-0.811029,-0.377392,-0.446944,-0.713065,-0.150334,-0.684774,-0.842067,-0.069063,-0.534928,-0.993561,-0.051881,-0.100558,-0.980682,-0.150243,0.125187,0.138188,0.943602,-0.300821,-0.124302,0.725425,-0.676962,-0.176824,0.314280,-0.932707,-0.980956,-0.057466,-0.185492,-0.898709,-0.304483,-0.315561,-0.863796,-0.144292,0.482681,-0.820734,-0.357067,0.445906,-0.798029,-0.521805,0.301340,-0.859035,-0.179418,0.479415,-0.470077,0.677938,0.565111,-0.250465,0.232063,0.939879,0.296670,0.799982,0.521500,-0.989746,-0.078921,0.118778,-0.088198,0.910520,0.403912,-0.181585,0.969848,-0.162481,-0.837611,0.396741,0.375439,-0.910337,0.411512,0.043458,-0.976196,0.163305,-0.142613,-0.838893,-0.346873,0.419416,-0.868557,-0.403790,0.287301,-0.780572,0.050783,0.622944,-0.337016,-0.005829,-0.941465,-0.177770,-0.085238,-0.980346,-0.323954,0.904324,0.277871,-0.709891,0.639912,0.294137,-0.341350,0.876003,0.340648,-0.747917,0.658376,0.084323,-0.243171,0.969695,0.022126,-0.673025,0.718589,-0.175024,-0.406659,0.561418,0.720695,-0.631123,0.700400,0.333262,-0.371258,0.900754,0.225288,-0.284371,0.947172,0.148137,-0.880551,0.460433,-0.112217,-0.316752,0.911435,0.262551,-0.312265,0.927610,0.204901,-0.932340,0.298990,-0.203284,-0.665700,0.629536,-0.400616,-0.174688,0.971068,-0.162694,-0.593554,0.719443,-0.360637,-0.168340,0.971801,-0.164983,-0.634388,0.654561,-0.411176,-0.928831,-0.118412,-0.350993,-0.927213,-0.090365,-0.363445,-0.681204,0.576220,-0.451521,-0.972808,-0.040040,-0.228034,-0.645741,0.652852,-0.395917,-0.959014,-0.125004,-0.254158,-0.583026,0.685629,-0.435804,-0.849361,-0.021210,-0.527329,-0.713950,-0.460402,-0.527512,-0.735771,-0.455763,-0.500900,-0.634724,-0.714530,-0.294107,-0.732231,-0.662679,-0.156987,-0.584307,-0.811243,0.021302,-0.759087,-0.650044,0.034455,-0.675832,-0.702933,0.221564,-0.807276,-0.560198,0.185614,-0.846400,-0.388714,0.363964,-0.855800,-0.491226,0.162053,-0.855525,-0.482620,-0.187414,-0.892331,-0.443678,-0.082888,-0.698569,-0.449904,-0.556383,0.228767,-0.907956,-0.351085,0.831782,0.227149,0.506455,0.905393,-0.343486,0.249519,0.756401,0.436384,0.487228,0.868557,0.400433,0.291910,0.741050,0.586352,0.327097,0.842250,0.497391,0.207739,0.822657,0.474715,0.312815,0.767724,0.545061,0.336894,0.739158,0.611652,0.281930,0.648488,0.665059,0.370312,0.746117,0.634114,0.202826,0.660543,0.732841,0.163091,0.789270,0.574023,0.217933,0.391797,0.807459,0.440992,0.194128,0.980682,-0.023133,-0.562487,0.790429,0.242439,0.113376,0.756737,0.643788,-0.618000,0.739921,0.265572,0.021455,0.860256,0.509354,-0.661641,0.727653,0.180914,-0.537767,0.735069,0.412793,0.239937,0.666494,0.705802,-0.418378,0.760155,0.497055,-0.922788,0.381542,0.053377,-0.836421,0.507859,0.206030,-0.985046,-0.019410,-0.171117,-0.919767,-0.257118,-0.296426,-0.773156,-0.482315,-0.411756,-0.792047,-0.457198,-0.404431,-0.420698,-0.747795,-0.513565,-0.231971,-0.829371,-0.508225,0.414960,-0.852351,-0.318217,0.469710,-0.827570,-0.307321,0.903287,-0.404218,0.143651,0.904386,-0.417341,0.088595,0.872890,-0.483627,0.064150,0.842586,0.155065,0.515702,0.898404,0.028840,0.438185,0.820185,-0.567827,-0.069430,0.914701,0.030030,0.402936,0.979034,-0.004669,0.203558,0.551775,0.571337,0.607501,0.711447,0.434980,0.551897,0.849269,0.117771,0.514634,0.999176,0.031739,0.025025,0.919889,0.275979,-0.278542,0.959258,-0.079348,0.271065,0.958708,0.231147,0.165532,0.693197,0.555193,-0.459578,0.282998,0.554552,-0.782495,0.502792,0.343608,-0.793146,-0.195746,0.114719,-0.973907,0.681143,-0.167516,-0.712668,0.749992,-0.504257,-0.428022,0.196509,-0.613880,-0.764519,0.235206,-0.822565,-0.517685,0.281961,-0.885708,-0.368694,-0.449202,-0.724235,-0.523087,-0.841823,-0.340159,-0.419019,-0.974731,0.200262,-0.098849,-0.760125,0.593585,0.264199,-0.212775,0.797327,0.564776,-0.661214,0.696554,0.278481,-0.145207,0.803919,0.576678,0.074068,0.848720,0.523576,-0.590045,0.784539,0.190497,0.036714,0.585894,-0.809534,0.282388,0.887783,-0.363353,0.723258,-0.634877,0.271584,-0.624306,-0.774637,-0.100895,0.679006,-0.244118,0.692312,0.774132,-0.154912,0.613727,0.911649,0.406842,-0.057863,0.539171,0.626240,-0.563097,-0.082369,0.555071,-0.827693,-0.526231,0.226966,-0.819453,-0.819300,-0.088412,-0.566485,-0.799036,-0.060183,-0.598224,-0.589557,-0.153142,-0.793054,-0.046632,-0.259926,-0.964476,-0.582232,-0.237342,-0.777581,-0.525346,-0.566851,-0.634541,-0.843715,-0.172246,-0.508347,-0.941771,0.295999,-0.159398,-0.881771,0.363628,-0.300363,-0.774194,-0.081851,-0.627583,-0.758904,0.075045,-0.646840,0.471114,0.721610,-0.507248,-0.029054,-0.996460,0.078677,0.352458,-0.932676,-0.076357,0.098178,-0.618519,0.779565,-0.554521,-0.703238,0.444868,-0.525803,-0.665242,0.530015,0.295419,-0.516404,0.803735,0.137577,-0.579455,0.803278,-0.455000,-0.647420,0.611377,-0.914212,-0.399670,0.066744,-0.916318,-0.399792,-0.022523,-0.886258,-0.451247,-0.104465,-0.878048,0.042238,-0.476699,-0.903104,-0.096957,-0.418317,-0.938078,-0.108798,-0.328806,-0.810450,0.176641,-0.558489,-0.670614,0.246040,-0.699789,-0.206336,0.581378,-0.787011,0.565477,0.631855,-0.530015,0.946348,0.276009,0.167913,0.724021,-0.206275,0.658193,0.407147,0.638020,0.653523,0.339457,0.635456,0.693472,0.775231,0.271981,0.570055,0.699728,0.468429,0.539384,0.720420,0.306650,0.621998,0.837245,0.334574,0.432508,0.939573,0.311624,0.141636,0.868007,0.421979,0.261666,0.938963,0.263527,0.221076,0.914121,0.343516,0.215217,0.850368,0.426710,0.307840,0.859676,0.384228,0.336589,0.929380,0.254830,0.266915,0.907590,0.162633,0.387036,0.713828,0.358318,0.601642,-0.329661,0.799127,0.502670,-0.965514,0.188421,-0.179571,-0.879879,-0.473708,-0.037324,-0.756310,-0.440565,-0.483566,-0.821894,-0.560350,0.102268,-0.004364,-0.852596,-0.522477,0.899106,0.009064,0.437574,0.868679,-0.493179,0.046175,0.872890,0.252205,0.417615,0.754570,0.238807,0.611194,-0.160405,0.652943,0.740196,-0.991546,0.119755,-0.049379,-0.744163,-0.666738,0.040437,-0.757714,-0.411542,-0.506424,-0.120640,-0.955321,-0.269784,-0.008820,-0.771325,-0.636341,0.857662,-0.510575,-0.060701,0.921964,-0.380963,0.069491,0.941221,0.245216,0.232307,0.971709,0.187048,0.144078,0.967345,0.164769,0.192450,0.944090,0.277993,0.177129,0.996033,0.034150,-0.082003,0.950316,-0.296030,0.096042,0.931730,-0.296823,0.209082,0.970763,-0.121433,0.206946,0.655202,-0.669393,-0.350108,0.552049,-0.773705,-0.310770,0.526231,-0.788781,-0.317545,0.712272,-0.519730,-0.471694,0.738701,-0.545213,-0.396252,0.999725,-0.021363,0.007935,0.869198,-0.487136,-0.084506,0.920743,-0.387402,-0.046175,-0.023560,-0.999207,0.031770,-0.753288,-0.609760,0.246376,-0.801904,-0.596912,-0.024628,0.043794,-0.968841,-0.243660,-0.074892,-0.836543,-0.542711,-0.784234,-0.547258,-0.292306,-0.737236,-0.424940,-0.525224,-0.093844,-0.722495,-0.684927,-0.294290,-0.794946,-0.530503,-0.712241,-0.469314,-0.521928,-0.745842,-0.446883,-0.493942,-0.850124,-0.266518,-0.454085,-0.824610,-0.296823,-0.481491,-0.947295,0.104434,-0.302805,-0.880306,-0.027314,-0.473586,-0.739708,0.649373,-0.176275,-0.941008,0.148167,-0.304147,-0.958922,0.067568,-0.275399,-0.867611,-0.281442,-0.409864,-0.692862,-0.485794,-0.532823,-0.245460,-0.821497,-0.514634,-0.039430,-0.783288,-0.620380,0.030793,0.979492,-0.199072,-0.080050,0.982055,-0.170598,-0.187414,0.956206,-0.224769,-0.113590,0.988647,-0.098148,0.388592,0.874935,0.288858,0.234199,0.915830,0.326151,0.396374,0.900693,0.177770,0.673696,0.718253,0.173742,0.737144,0.496628,0.458205,0.566942,0.601459,0.562822,0.324992,0.575976,0.750053,0.574328,0.284768,0.767479,0.776452,0.318033,0.543962,0.297098,0.951567,0.078768,0.421827,0.903226,0.078738,0.613453,0.698630,0.368114,0.462020,0.795831,0.391339,-0.065493,0.835231,0.545946,-0.255379,0.928831,0.268349,0.273476,0.944945,0.179571,0.185919,0.880978,0.435072,0.032105,0.817133,0.575488,-0.376415,0.783563,0.494247,-0.708457,0.557207,0.433088,-0.855098,0.320444,0.407514,-0.825709,0.306681,0.473403,-0.655019,0.744987,0.126072,-0.639576,0.735038,0.224982,-0.990783,0.111484,-0.076632,-0.934141,-0.334941,-0.123081,-0.897183,-0.376049,-0.231452,-0.776391,-0.429792,-0.460921,-0.421461,-0.903897,-0.072665,-0.176672,-0.623585,-0.761498,0.376782,-0.809931,-0.449416,0.177099,-0.966002,0.188299,0.703543,-0.616749,0.352947,0.844264,-0.276070,-0.459334,0.992309,0.068636,0.102725,0.689810,-0.121494,0.713706,0.831263,0.261025,0.490738,0.270516,-0.463698,0.843654,-0.326548,-0.409528,0.851833,0.365520,-0.259163,-0.893948,-0.749077,-0.661275,0.039430,-0.617847,-0.736839,0.274331,-0.929502,-0.258065,-0.263405,-0.725120,-0.687185,0.043733,-0.108127,-0.858791,0.500717,-0.007660,-0.430158,0.902707,-0.448714,0.172185,0.876888,-0.968505,-0.200049,0.148015,-0.990966,-0.133885,-0.004242,-0.905942,-0.414350,-0.086825,-0.917447,-0.385693,0.097415,-0.944273,0.309793,-0.111209,-0.962920,0.259194,-0.074557,-0.801111,-0.557237,-0.218299,-0.026429,-0.915311,-0.401837,0.886990,-0.439039,0.143010,0.660298,0.424818,0.619251,0.769860,0.292764,0.567064,0.816858,0.504776,0.279122,0.763451,0.594256,0.252907,0.245125,0.922452,0.298257,0.375958,0.620746,0.687979,-0.820978,0.550401,0.151646,-0.964446,0.063997,-0.256325,-0.772881,-0.577013,-0.263985,-0.002533,-0.986633,-0.162847,-0.670553,-0.529466,-0.519608,0.150304,-0.955412,-0.254067,0.875851,-0.356578,0.325083,0.897824,-0.076968,0.433485,0.589068,0.549547,0.592395,0.717490,0.558763,0.415815,0.027070,0.948759,0.314798,-0.267251,0.817927,0.509445,-0.133641,0.863002,0.487167,-0.224738,0.786645,0.574999,-0.972106,0.231941,-0.033937,-0.786676,-0.300729,-0.539109,-0.146336,-0.884640,-0.442701,0.816309,-0.530869,0.227515,0.718680,-0.532884,0.446638,0.549181,0.227851,0.804010,0.393323,0.074160,0.916379,-0.195410,0.630421,0.751213,0.385815,0.067934,0.920042,-0.350841,0.762383,0.543718,-0.729911,0.580035,-0.361553,0.697836,0.399060,0.594745,-0.392895,-0.121342,-0.911527,0.332316,-0.726829,-0.601032,0.759423,-0.627857,0.170293,0.611438,-0.724204,0.318796,0.065737,-0.210028,0.975463,-0.429487,0.603229,0.672018,-0.592181,0.495956,0.635060,-0.808252,0.513871,-0.287423,-0.358623,0.757744,-0.545122,-0.143254,0.148778,-0.978423,-0.603839,-0.293405,-0.741111,0.180517,-0.758568,-0.626057,0.459090,-0.296457,-0.837428,0.428541,-0.830409,0.355968,-0.136509,-0.259590,0.955992,-0.465926,0.488998,0.737388,-0.619282,0.680532,-0.391552,-0.149998,0.146153,-0.977813,0.053865,0.304025,-0.951109,0.378155,-0.558702,-0.738090,0.577349,-0.757408,0.304880,0.065554,-0.289224,0.954985,0.078402,-0.204321,0.975738,-0.365459,-0.059358,0.928892,-0.734306,0.556352,0.388867,-0.792779,0.504044,-0.342631,-0.308786,0.009705,-0.951079,0.187597,-0.707968,-0.680837,0.436293,-0.899503,-0.022340,0.094119,-0.631092,0.769951,-0.297769,-0.470077,0.830836,-0.133030,-0.139378,0.981231,-0.350780,-0.013550,0.936338,-0.954253,0.187719,0.232704,-0.510788,-0.143773,0.847560,-0.985809,-0.089084,-0.142247,-0.775536,0.067476,0.627644,-0.937010,0.193304,-0.290841,-0.675100,-0.375744,-0.634816,-0.410871,-0.086795,-0.907529,-0.355480,-0.862026,-0.361187,-0.120731,-0.811457,-0.571764,0.001953,-0.994720,-0.102573,0.141484,-0.627918,0.765282,0.124424,-0.166784,0.978088,0.337107,-0.720908,0.605487,0.492813,-0.604816,0.625538,-0.043428,-0.296854,0.953917,-0.430525,0.235755,0.871212,-0.280374,0.356365,0.891263,-0.495743,-0.005860,0.868404,-0.805750,-0.094943,0.584582,-0.585864,-0.205695,0.783837,-0.515122,-0.589984,0.621723,-0.134800,-0.768059,0.625965,-0.135746,-0.927366,0.348582,0.094455,-0.742302,0.663350,0.033998,-0.938627,0.343181,-0.042238,-0.727836,0.684439,0.226325,-0.588916,0.775842,-0.126530,-0.356548,0.925657,-0.274422,-0.455489,0.846858,0.089236,-0.415265,0.905271,0.228278,-0.708243,-0.667989,-0.767296,0.547288,-0.334147,-0.372417,0.870357,0.322092,-0.955168,0.274483,-0.110721,-0.585406,-0.458785,-0.668416,0.204413,-0.694113,-0.690207,0.757408,-0.620228,0.203986,0.358287,-0.660726,-0.659536,0.663289,-0.461806,0.588855,0.448897,0.315806,0.835902,0.285775,0.240852,0.927519,-0.407239,0.643849,0.647755,-0.102786,0.690146,0.716300,-0.857082,0.418867,-0.299844,-0.686636,0.497177,-0.530351,-0.505783,0.777551,0.373577,0.065584,0.841914,0.535569,0.591662,0.465224,0.658376,-0.744224,0.349467,-0.569170,-0.180944,-0.057405,-0.981811,-0.466781,-0.342906,-0.815149,0.293985,-0.844997,-0.446638,0.787713,-0.300272,0.537858,0.418500,0.203528,0.885098,0.250710,0.122013,0.960326,-0.566759,0.712729,0.413221,-0.628620,0.490219,-0.603687,-0.413312,-0.284371,-0.865017,0.345988,-0.588549,-0.730644,0.693319,-0.678121,0.243812,0.399640,-0.653127,-0.643178,-0.083834,0.040407,-0.995636,-0.680563,0.540147,-0.494980,-0.359050,-0.213141,-0.908628,0.307199,-0.752342,-0.582720,0.528611,-0.616169,0.583819,0.732170,-0.553819,0.396435,0.294626,0.059755,0.953734,0.073183,0.079073,0.994171,-0.391186,0.677145,0.623218,-0.544694,0.524583,0.654286,-0.784936,0.451003,-0.424757,-0.893368,0.314463,-0.320872,-0.468764,-0.317179,-0.824396,0.172246,-0.862209,-0.476302,0.553758,-0.816919,0.160985,0.303781,-0.345134,0.888028,0.255074,0.131016,0.957976,-0.209265,0.215094,0.953887,-0.726035,0.598315,0.338908,-0.987701,0.015625,-0.155400,-0.717307,-0.596667,-0.359752,-0.112613,-0.952849,-0.281747,0.102573,-0.972930,0.207068,0.340983,-0.340251,0.876309,-0.111362,-0.209479,0.971435,0.290017,-0.101199,0.951628,-0.193732,0.251808,0.948180,0.031343,0.177282,0.983642,-0.923093,0.156865,0.351054,-0.970794,-0.221351,0.092410,-0.531419,-0.410779,-0.740806,-0.306986,-0.951689,-0.002228,0.195868,-0.773339,0.602954,0.023011,-0.775780,0.630543,0.282785,-0.478286,0.831416,-0.357555,0.223884,0.906644,-0.666951,0.180975,0.722770,-0.688498,0.022950,0.724845,-0.310495,0.468795,0.826899,-0.346629,0.084811,0.934141,-0.167547,0.609790,0.774621,0.296060,0.176702,0.938658,0.137822,0.027619,0.990051,0.055696,-0.046663,0.997345,0.523331,-0.450117,0.723502,0.675863,-0.310099,0.668569,0.158300,-0.474410,0.865932,-0.613544,-0.471023,0.633747,-0.555132,-0.628132,0.545183,-0.870754,-0.444563,0.210089,-0.806177,-0.537309,0.247597,-0.720359,-0.528398,0.449232,0.894375,0.083926,0.439344,0.825312,0.124393,0.550737,0.656606,0.518387,0.547807,-0.005005,0.885952,0.463729,0.060976,0.916684,0.394848,0.190191,0.565508,0.802484,0.131932,0.530747,0.837153,-0.407483,0.554796,0.725333,-0.024598,0.719657,0.693869,0.297739,-0.168432,0.939634,0.050264,-0.893521,0.446150,0.365734,0.023743,0.930387,-0.087344,-0.702475,0.706290,-0.834742,-0.271615,0.478927,-0.722922,-0.404584,0.560045,-0.679800,0.583850,0.443800,-0.670034,-0.708945,0.219977,0.600299,-0.383374,0.701865,-0.058168,0.731559,0.679281,0.757805,0.240181,0.606616,-0.089846,0.692465,0.715812,-0.897000,0.052980,0.438765,-0.825922,-0.508774,-0.242775,-0.083834,-0.984405,-0.154546,0.857845,-0.513596,0.016938,0.683554,0.118564,0.720176,-0.218329,0.757073,0.615741,-0.766564,0.642048,-0.010620,-0.785241,-0.619160,0.000671,-0.267129,0.335368,-0.903409,0.243660,-0.601520,-0.760765,0.832698,-0.527879,-0.167089,0.202551,-0.465957,-0.861293,-0.734275,-0.222205,-0.641438,0.082247,-0.813685,-0.575427,0.727470,-0.664205,0.172002,0.893185,-0.343394,0.290231,0.569536,-0.026246,0.821528,-0.201422,0.473983,0.857173,0.145970,0.542955,0.826960,-0.908231,0.395917,0.135380,-0.734581,0.657735,-0.166570,-0.764763,-0.297067,-0.571703,0.069735,-0.490249,-0.868770,0.692343,-0.713309,-0.108676,0.300607,-0.366131,-0.880642,-0.204627,0.383831,-0.900418,-0.796319,0.554613,-0.241310,-0.408673,0.601215,0.686636,-0.656667,0.727012,-0.200415,-0.355358,0.244606,-0.902127,0.227210,-0.454970,-0.861019,0.513962,-0.802759,0.302316,0.707297,-0.699240,0.103671,0.357494,-0.315256,0.879055,0.149113,-0.340159,0.928465,-0.294351,0.377606,0.877895,0.327799,-0.272530,0.904569,-0.186804,-0.220893,0.957213,-0.679342,0.445906,0.582781,-0.795770,0.565935,-0.215430,-0.752647,0.633015,-0.181005,-0.459426,0.133702,-0.878079,-0.412702,0.255684,0.874233,0.486984,-0.114536,0.865841,0.613269,0.040590,0.788781,0.141240,-0.486312,-0.862270,0.479873,-0.847133,-0.228126,0.266030,-0.721946,0.638722,-0.133915,-0.616352,0.775964,0.050478,-0.283670,0.957579,-0.179113,-0.184851,0.966277,-0.908200,0.027833,0.417554,-0.966552,0.197516,-0.163518,-0.707633,-0.229896,-0.668081,-0.978942,-0.203040,0.019959,-0.588824,-0.112094,-0.800409,-0.458235,-0.726402,-0.512131,-0.172887,-0.682363,-0.710227,0.005066,-0.973998,-0.226478,0.110385,-0.970641,0.213599,0.317270,-0.281808,0.905484,0.474136,-0.757714,0.448347,0.645131,-0.613056,0.455947,0.142003,-0.433576,0.889828,-0.258980,0.056490,0.964202,-0.095523,0.207343,0.973571,-0.340465,-0.320170,0.884030,-0.647114,-0.134800,0.750328,-0.325144,-0.204840,0.923185,0.051088,-0.500870,0.863979,0.223914,-0.814539,0.535112,0.300302,-0.717734,0.628193,0.107883,-0.815943,0.567919,0.275796,-0.532517,0.800195,0.997497,-0.064486,-0.028687,0.724723,0.332041,0.603717,0.218970,0.899136,0.378857,-0.666128,0.220588,0.712424,-0.814020,-0.569872,-0.112125,0.230598,-0.927549,0.294015,0.551103,0.819849,0.155248,0.543657,0.124485,0.830012,0.483047,0.073244,0.872494,0.823511,-0.408032,0.394055,0.347575,-0.078555,0.934324,0.055025,0.658406,0.750633,0.416333,-0.309275,-0.854976,0.455519,-0.794763,0.401013,0.265572,-0.051210,0.962706,-0.547594,0.323588,0.771599,-0.072848,0.554796,0.828761,-0.880642,0.461592,-0.106510,-0.521836,0.724967,-0.449538,0.786370,0.614612,0.061892,-0.569628,-0.151677,-0.807733,0.144536,-0.766320,-0.625965,0.808435,-0.487930,0.329112,0.453139,-0.089175,0.886929,0.370708,-0.063540,0.926542,-0.437422,0.698721,0.566057,-0.687277,0.570849,-0.449141,-0.638203,-0.153630,-0.754357,0.108554,-0.377148,-0.919767,0.705466,-0.708701,0.004425,0.335917,-0.434065,-0.835871,-0.203711,0.308542,-0.929106,-0.584948,0.742454,-0.326365,-0.231300,0.226295,-0.946165,0.339732,-0.501846,-0.795404,0.525498,-0.765435,0.371349,0.665944,-0.713401,0.218024,0.257332,-0.281747,0.924314,0.093600,-0.190100,0.977264,-0.358745,0.491165,0.793725,0.161351,-0.255104,0.953337,-0.315500,-0.125217,0.940611,-0.713187,0.519822,0.470199,-0.788446,0.530808,-0.310770,-0.630940,0.712394,-0.307199,-0.456374,0.421247,0.783715,-0.332194,0.102237,-0.937620,0.164129,-0.606403,-0.778008,0.458724,-0.881130,-0.114689,0.157353,-0.689779,0.706687,-0.264412,-0.550920,0.791528,-0.079409,-0.204840,0.975555,-0.304941,-0.091800,0.947905,-0.948576,0.117954,0.293741,-0.946226,0.158574,-0.281899,-0.980682,-0.154027,-0.120487,-0.682028,-0.310099,-0.662282,-0.462233,-0.031129,-0.886196,-0.414289,-0.817866,-0.399274,-0.189123,-0.734764,-0.651387,-0.017335,-0.985351,-0.169469,0.190954,-0.686331,0.701743,-0.461837,-0.224464,0.858058,-0.740501,-0.029817,0.671377,-0.775140,-0.200262,0.599170,0.116245,-0.782495,0.611652,-0.147038,-0.947325,0.284433,0.039186,-0.958708,0.281625,0.290414,-0.630818,0.719504,0.384625,-0.743797,0.546587,0.568194,-0.601520,0.561480,0.200568,-0.221198,0.954375,0.012665,-0.370739,0.928648,-0.365459,0.154790,0.917844,-0.189734,0.304086,0.933531,-0.442366,-0.113224,0.889615,-0.539567,-0.319315,0.779015,-0.493210,-0.655690,0.571612,-0.083132,-0.438398,0.894894,0.001801,-0.778344,0.627796,0.156285,-0.485702,0.860012,-0.291574,0.056734,0.954833,-0.785516,-0.606128,-0.124485,-0.408246,-0.566210,-0.716025,-0.813990,-0.072359,-0.576312,-0.129612,0.335856,0.932920,-0.444105,-0.795343,-0.412488,0.049593,-0.536119,0.842647,-0.097995,-0.178869,0.978973,-0.352062,-0.395611,0.848231,-0.443770,0.008057,0.896084,-0.876370,-0.324534,-0.355815,-0.718497,-0.665822,0.201025,0.428510,-0.280801,0.858760,-0.297647,-0.212989,0.930601,-0.429731,-0.751640,0.500351,0.278909,-0.583789,0.762474,0.395703,-0.659047,0.639546,-0.101566,-0.106693,0.989074,-0.679861,-0.289315,0.673818,-0.899777,-0.090548,-0.426801,-0.818751,-0.490188,-0.298837,-0.379589,-0.719657,0.581378,-0.062075,-0.969970,0.235084,-0.014008,-0.853725,0.520493,-0.107944,-0.601764,0.791314,-0.425428,-0.397992,0.812738,-0.376568,-0.850612,-0.366894,-0.225043,-0.013245,0.974242,-0.848567,-0.077181,-0.523362,-0.781579,-0.605182,-0.151158,-0.130528,-0.808161,0.574297,-0.233863,-0.533372,0.812891,-0.461135,-0.528214,-0.712943,-0.789697,-0.248268,0.560961,-0.134617,-0.298624,0.944823,-0.030488,-0.260292,0.965026,-0.810999,-0.168523,0.560198,-0.999939,0.002441,0.009033,-0.737602,-0.053163,0.673116,-0.997314,0.044618,0.057619,-0.820704,-0.057070,0.568468,-0.999268,-0.023103,-0.029908,-0.792566,-0.031983,0.608936,-0.997528,-0.009949,0.069460,-0.863155,0.059114,0.501419,-0.977599,0.082858,-0.193365,-0.969695,0.243416,-0.020112,-0.822077,0.174444,0.541948,-0.964293,0.262764,0.032929,-0.765526,0.162114,0.622608,-0.811365,0.221351,0.540971,-0.996826,-0.064699,0.045961,-0.984436,0.104831,0.140904,-0.892727,-0.448958,-0.037965,-0.691580,-0.617725,-0.374279,0.752037,-0.589312,-0.295083,0.424268,-0.586963,-0.689505,-0.663564,-0.740593,-0.105686,0.774590,-0.520249,-0.359600,0.673910,-0.718528,0.171758,-0.022884,-0.999736,0.001915,-0.022885,-0.999736,0.001912,0.673330,0.197851,0.712333,0.427534,-0.609668,0.667409,0.970611,0.165685,0.174413,0.970885,0.085177,-0.223823,0.929075,0.077486,-0.361583,0.914212,-0.114933,-0.388501,0.468093,-0.063417,-0.881375,0.972503,0.135899,-0.189001,0.439497,0.378643,-0.814508,-0.397076,0.473190,-0.786370,-0.020753,0.432691,-0.901273,0.455611,0.283944,-0.843654,0.012818,0.148564,-0.988800,0.643117,-0.001831,-0.765740,-0.045198,-0.104923,-0.993439,0.759697,-0.171209,-0.627308,0.013611,-0.085879,-0.996185,0.704489,-0.132145,-0.697256,0.986694,-0.149876,-0.062624,0.800439,0.045656,-0.597644,0.987426,-0.066591,0.143315,0.998810,0.037660,0.030183,0.643300,0.227119,-0.731132,-0.019684,0.287484,-0.957579,0.009980,0.087069,-0.996124,-0.792749,0.089297,-0.602954,-0.672353,0.231391,-0.703116,-0.618580,0.223518,-0.753227,0.016968,0.357158,-0.933866,-0.643178,0.081790,-0.761315,0.079165,0.219398,-0.972411,-0.673574,-0.028382,-0.738548,0.104587,0.022645,-0.994232,0.081149,-0.128941,-0.988311,0.734489,-0.036531,-0.677602,0.700125,-0.275307,-0.658773,0.003601,-0.248909,-0.968505,0.619892,-0.348155,-0.703207,0.035157,-0.241646,-0.969695,0.716056,-0.258827,-0.648244,0.040712,-0.132878,-0.990265,0.734153,-0.147435,-0.662740,0.039521,-0.054262,-0.997742,0.740104,-0.061220,-0.669668,0.151463,-0.022828,-0.988189,0.849574,0.013398,-0.527268,0.998627,-0.022004,0.047304,0.988159,0.052065,0.144139,0.716483,0.033418,0.696768,0.597461,0.079836,0.797876,-0.039125,0.071993,0.996612,-0.180242,0.093326,0.979156,-0.781701,0.081820,0.618213,-0.874538,0.103427,0.473769,-0.997589,0.058748,-0.036348,-0.999451,0.016205,-0.028138,-0.698508,-0.068941,-0.712241,-0.701132,-0.139561,-0.699179,-0.693258,0.004303,-0.720664,-0.543474,0.018860,-0.839167,-0.987976,0.078372,-0.133183,-0.761834,-0.114628,-0.637532,-0.673086,-0.119510,-0.729789,-0.987915,-0.045351,-0.148045,-0.995972,-0.087771,0.017243,-0.978607,-0.067598,-0.194220,-0.703360,-0.040956,-0.709647,-0.829341,-0.040681,-0.557207,-0.578112,0.078127,-0.812189,-0.602893,0.378002,-0.702536,-0.753960,-0.104984,-0.648427,-0.650899,-0.329814,-0.683737,0.165471,-0.301004,-0.939146,0.560625,-0.241951,-0.791925,0.860591,-0.139042,0.489914,0.189835,-0.010230,0.981763,0.190086,-0.010590,0.981710,-0.646870,-0.226508,-0.728141,-0.621601,-0.150914,0.768639,-0.667714,-0.684011,-0.293680,0.438368,-0.407361,-0.801172,0.444105,-0.856960,0.261483,0.189445,-0.012767,0.981808,0.189768,-0.012976,0.981743,-0.271859,-0.474349,0.837275,-0.022885,-0.999736,0.001919,-0.022884,-0.999736,0.001919,-0.738517,-0.155004,0.656117,-0.004089,-0.152104,0.988342,0.709006,-0.154241,0.688070,0.733268,-0.177435,0.656331,0.624287,-0.175512,0.761193,0.007935,-0.165502,0.986175,-0.084689,-0.098575,0.991485,-0.072237,-0.036256,0.996704,-0.167882,0.065828,0.983581,0.172216,0.154271,0.972900,0.096438,0.274514,0.956725,0.113071,0.577105,0.808771,-0.668661,0.496536,0.553453,-0.642140,0.620106,0.450636,-0.959044,0.169897,0.226508,-0.831446,0.125645,0.541185,-0.578356,-0.707877,0.405408,-0.266182,0.107028,0.957945,-0.233009,-0.533494,0.813044,-0.022882,-0.999736,0.001906,-0.213507,0.630818,0.745933,-0.657308,0.602069,0.453230,0.113926,0.913846,0.389691,0.132908,0.744346,0.654408,0.852962,0.504501,0.133732,0.817743,0.529252,0.226051,0.920743,0.322092,0.220069,0.860805,0.206946,0.464888,0.908750,0.035096,0.415845,0.958922,0.069918,-0.274850,0.993133,-0.098605,-0.062807,0.974578,-0.173772,0.141179,0.765526,-0.156102,0.624134,0.669118,-0.109165,0.735069,0.990570,0.096072,-0.097629,0.743522,0.307505,-0.593768,0.630360,0.317423,-0.708396,0.991150,-0.130558,0.022950,0.966552,-0.255440,-0.021912,0.965972,-0.258339,-0.010437,0.982757,-0.175207,0.058992,0.992798,-0.105747,0.055910,0.720969,-0.045503,0.691427,-0.034333,0.029511,0.998962,-0.782342,0.046571,0.621082,-0.999146,0.015259,-0.038118,-0.999695,0.010437,-0.022217,-0.812098,-0.048708,0.581469,-0.703177,-0.097507,0.704276,-0.004517,-0.130833,0.991363,-0.007752,-0.082308,0.996551,0.037416,-0.056154,0.997711,-0.706076,0.028291,0.707541,-0.783166,0.051912,0.619617,-0.024873,0.003052,0.999664,0.711264,-0.088290,0.697348,0.760247,-0.167241,0.627705,0.703452,-0.196600,0.682943,0.715629,-0.217200,0.663808,0.633625,-0.137455,0.761315,0.768731,-0.061342,0.636616,0.815119,0.553575,0.170629,0.606739,0.630848,0.483596,-0.581469,-0.077731,0.809809,-0.191382,-0.274178,0.942412,-0.101627,-0.094821,0.990265,-0.577929,-0.146458,0.802789,-0.842830,-0.271798,0.464461,-0.789758,-0.423322,0.443892,-0.556963,-0.320353,0.766228,-0.801660,-0.566759,0.189917,-0.473739,-0.604938,0.639973,-0.189642,-0.421247,0.886868,0.033662,-0.564440,0.824763,0.065462,-0.510971,0.857082,0.457930,-0.836726,0.300211,-0.428724,-0.813074,-0.393780,-0.844844,-0.509262,0.163823,-0.597247,-0.731468,-0.328929,-0.918668,-0.082675,0.386212,-0.568499,0.191504,0.800073,-0.082064,0.171300,0.981780,-0.231239,-0.081149,0.969481,-0.275582,-0.165868,0.946837,-0.228187,-0.417707,0.879452,0.454299,-0.753960,0.474410,-0.859340,-0.070620,0.506455,-0.908994,0.192694,0.369518,-0.793023,-0.265603,0.548173,-0.831538,-0.162023,0.531266,-0.636860,-0.043245,0.769738,-0.960540,-0.155431,-0.230598,-0.759514,-0.221534,-0.611560,-0.329569,-0.567431,-0.754570,-0.720969,-0.110324,-0.684072,-0.078219,-0.290536,-0.953642,-0.627308,0.141881,-0.765709,-0.057527,0.332194,-0.941435,0.571337,0.119083,-0.812006,0.518998,-0.397595,-0.756645,0.918302,-0.321726,-0.230628,0.931730,0.255684,-0.257820,0.530412,0.343028,-0.775201,-0.143071,0.122105,-0.982147,-0.742973,0.064791,-0.666158,-0.114353,-0.412793,-0.903592,0.522263,-0.431989,-0.735252,0.547777,-0.587970,-0.595141,0.911893,-0.393262,-0.117374,0.895016,-0.445326,0.023896,0.614277,-0.762810,-0.201819,0.785852,-0.602527,0.139073,0.676229,-0.074862,0.732841,0.836848,-0.081179,0.541337,0.158849,0.524918,0.836177,0.124607,0.381787,0.915799,-0.545122,0.465194,0.697409,-0.528459,0.617634,0.582415,-0.870724,0.244514,0.426618,-0.879086,0.369518,0.301004,-0.861904,0.092959,0.498398,-0.939024,0.265481,0.218360,-0.800989,0.146825,0.580340,-0.933012,0.354320,-0.062441,-0.871822,0.392438,0.293069,-0.853938,0.432813,-0.288827,-0.859920,0.289834,-0.420118,-0.882778,0.296487,-0.364391,-0.843043,-0.035585,-0.536637,-0.900204,0.032411,-0.434248,-0.940397,-0.090670,-0.327738,-0.303659,-0.248543,-0.919767,-0.177007,-0.240944,-0.954222,0.707877,-0.278664,-0.649007,0.856563,-0.292093,-0.425367,0.931272,0.008728,0.364147,0.761498,-0.370952,0.531480,0.792016,-0.321512,0.518937,0.594653,-0.691519,0.410047,0.684927,-0.528123,0.501907,0.410627,0.115604,0.904416,-0.683889,0.142766,0.715445,-0.816431,-0.008393,-0.577349,-0.917600,-0.155431,-0.365825,-0.945433,-0.017731,0.325236,-0.880184,-0.313578,-0.356243,-0.362835,-0.288003,-0.886227,-0.076876,-0.244087,-0.966674,-0.740959,0.058504,-0.668966,-0.640980,-0.043184,-0.766320,-0.682913,0.232917,-0.692343,-0.755303,0.061861,-0.652425,-0.876797,-0.174230,-0.448134,-0.232948,-0.314615,-0.920164,-0.874996,-0.354320,-0.329814,-0.162755,-0.610492,-0.775079,0.652516,-0.745384,-0.136296,0.881436,-0.171911,-0.439833,0.814112,-0.270608,0.513749,0.919340,-0.041017,0.391308,0.846583,-0.382427,-0.370098,0.744072,-0.554460,0.372692,0.710746,-0.504501,-0.490158,0.554582,-0.732231,0.395245,0.741997,-0.529435,0.411237,0.792627,-0.304605,-0.528123,0.040193,0.064486,-0.997101,0.233680,0.030091,-0.971831,0.906339,-0.171209,-0.386242,0.217933,0.004028,-0.975951,0.899167,-0.117008,-0.421644,0.273659,-0.301401,-0.913358,0.846736,-0.378857,-0.373424,0.760369,-0.471816,-0.446303,0.934812,-0.324595,0.144047,0.937254,-0.345408,0.046663,0.673574,-0.397168,-0.623310,0.722221,-0.516984,-0.459426,0.895810,-0.411573,0.167638,0.819117,-0.514206,-0.254189,0.884793,-0.411908,0.217750,0.836421,-0.499741,-0.224982,0.897031,-0.326975,0.297250,0.921110,-0.371044,-0.117801,0.916623,-0.152379,0.369518,0.930906,-0.103763,0.350169,0.981140,-0.190924,0.029054,0.895596,-0.133457,0.424329,0.963713,-0.263253,0.043825,0.942961,-0.287179,0.168187,0.833308,-0.215125,-0.509201,0.958403,-0.228645,0.170812,0.931944,-0.133671,-0.337046,0.320292,0.026551,-0.946928,0.632557,0.015381,-0.774346,0.979522,-0.043245,-0.196478,0.713675,0.082430,-0.695578,-0.005341,0.087924,-0.996094,-0.190954,0.097415,-0.976745,-0.494797,0.109653,-0.862026,0.176092,0.051607,-0.983001,0.034455,-0.109653,-0.993347,0.829279,-0.268990,-0.489822,0.588214,-0.364696,-0.721763,0.426099,-0.469192,-0.773461,0.323008,-0.512680,-0.795465,0.190252,-0.460799,-0.866848,0.143132,-0.421552,-0.895413,0.024079,-0.252449,-0.967284,0.128574,-0.335093,-0.933348,-0.488907,-0.029145,-0.871822,-0.599719,0.098148,-0.794122,-0.471999,0.099979,-0.875881,-0.644917,0.229926,-0.728813,-0.591815,0.265877,-0.760918,-0.066012,0.099216,-0.992859,0.004120,-0.046754,-0.998871,-0.668416,0.228889,-0.707663,-0.688162,0.287637,-0.666066,-0.699911,0.338237,-0.629017,-0.813837,0.214606,-0.539964,-0.800623,0.253517,-0.542833,-0.793664,0.224311,-0.565477,-0.771203,0.394116,-0.499863,-0.812891,0.321543,-0.485580,-0.824488,0.182012,-0.535783,-0.903989,0.250343,-0.346538,-0.866421,0.350902,-0.355144,-0.935301,0.343669,-0.084109,-0.634053,0.629505,0.449049,0.066500,0.610340,0.789300,0.094943,0.455794,0.884976,-0.239509,0.401440,0.883999,-0.828730,0.543382,0.133763,-0.769097,0.465957,0.437422,-0.937590,0.262917,-0.227454,-0.890744,0.251167,-0.378765,-0.605701,-0.042085,-0.794549,-0.719291,0.041597,-0.693442,-0.559832,-0.156407,-0.813685,-0.511887,-0.133732,-0.848567,-0.455641,-0.204718,-0.866268,-0.328837,-0.249825,-0.910733,-0.142369,-0.218970,-0.965270,-0.765709,0.165227,-0.621570,-0.842463,0.125950,-0.523789,-0.874172,0.066622,-0.480972,-0.926481,0.153935,-0.343394,-0.966063,0.165929,-0.197882,-0.949065,0.298746,-0.099979,-0.643269,0.467025,0.606647,-0.076571,0.373028,0.924650,0.627613,-0.003632,0.778497,0.787042,0.201819,0.582904,0.769127,0.303018,0.562639,0.989654,-0.134312,0.049928,0.955535,-0.146855,0.255593,0.876522,-0.220405,0.427900,0.685873,-0.035554,0.726829,0.895962,-0.255898,0.362896,0.761742,-0.087344,0.641926,0.896664,-0.283914,0.339610,0.846797,-0.308847,0.432997,0.428297,0.066805,0.901120,0.721183,-0.193152,0.665242,0.217689,0.132023,0.967040,-0.296762,0.329020,0.896451,-0.154271,0.305490,0.939604,-0.836909,0.332987,0.434370,-0.867794,0.352855,0.349834,0.075594,0.336528,0.938627,-0.889645,0.360179,0.280679,-0.495163,0.369060,0.786493,0.106632,0.189032,0.976135,0.604327,-0.041231,0.795648,0.610309,0.076662,0.788415,0.600269,0.198309,0.774773,0.549181,-0.013367,0.835566,0.825831,-0.272866,0.493454,0.699789,-0.238258,0.673391,0.947264,-0.118229,0.297739,0.999939,0.004761,0.006684,0.922575,-0.073183,0.378796,0.628193,-0.097629,0.771874,0.680685,-0.144597,0.718131,0.006806,-0.138859,0.990265,-0.093356,-0.095798,0.990997,-0.667226,-0.058565,0.742515,-0.783563,-0.040040,0.619983,-0.991974,0.041932,0.119053,-0.998169,0.048891,0.035127,-0.628742,-0.094119,0.771844,-0.981719,0.039125,0.186132,-0.919797,0.147557,0.363567,-0.467147,0.043794,0.883084,-0.154942,0.381787,0.911161,-0.737907,0.474075,0.480300,-0.944578,0.275613,-0.178259,-0.620808,0.527299,0.580065,-0.911008,0.401379,-0.094485,-0.919218,0.376141,0.116184,-0.546648,0.384289,0.743950,0.016968,0.291757,0.956328,0.034913,0.422895,0.905484,0.184393,-0.150670,0.971221,0.071871,-0.208258,0.975402,-0.711570,0.138890,-0.688711,-0.944578,0.081240,-0.318033,-0.831782,0.101108,-0.545793,-0.629933,0.108463,-0.769005,-0.044374,0.104617,-0.993500,-0.808832,0.118076,-0.576037,0.964690,-0.212928,0.154820,0.941740,-0.123814,0.312662,0.868954,-0.289499,0.401318,0.843043,-0.469741,0.261818,0.906461,-0.406964,-0.112522,0.744316,-0.661458,0.091586,0.496200,-0.865474,0.068606,0.336100,-0.920408,-0.199622,-0.189428,-0.862178,-0.469832,-0.863826,-0.120243,-0.489181,-0.930265,0.220832,0.292947,-0.998901,0.035524,-0.029847,-0.992492,0.034181,0.117191,-0.582141,0.057466,0.811029,-0.585315,-0.009827,0.810724,0.179022,0.003021,0.983825,-0.300455,-0.273690,0.913663,-0.473281,-0.601215,0.643818,0.479354,-0.178808,0.859188,0.798059,-0.255226,0.545824,0.853755,-0.158208,0.495987,0.793237,-0.603534,0.080477,0.925413,0.029847,0.377758,0.985321,-0.037477,-0.166448,0.839229,-0.026612,0.543107,0.718650,-0.027863,0.694784,0.657796,-0.021271,0.752861,0.027650,0.294992,0.955077,-0.482650,0.376049,0.790948,-0.869747,0.112918,0.480331,-0.741234,-0.242775,0.625751,-0.049165,-0.061251,0.996887,-0.869106,0.255013,0.423780,-0.928129,0.138524,-0.345470,-0.951262,-0.045534,-0.304910,-0.242836,-0.228614,-0.942717,-0.493118,-0.130314,-0.860103,0.786401,-0.295480,-0.542405,0.842555,-0.312510,-0.438612,0.916959,-0.040468,0.396863,0.874813,-0.237190,0.422376,0.634175,-0.438917,0.636494,0.701407,-0.396863,0.591998,0.560442,-0.657796,0.503159,0.277749,-0.867275,0.413099,0.289865,-0.941954,0.169347,0.162420,-0.969604,-0.182836,0.616840,-0.782647,0.083071,0.259316,0.110782,0.959380,-0.737571,0.062410,0.672353,-0.817957,0.158544,0.552965,-0.921110,-0.092410,-0.378155,-0.134526,-0.392987,-0.909635,0.904904,-0.152532,-0.397259,0.820978,-0.321757,0.471603,0.263283,0.048219,0.963500,-0.781823,-0.001373,0.623463,-0.869167,-0.416913,-0.265816,-0.221351,-0.557939,-0.799768,0.693533,0.090243,-0.714713,0.772729,0.622974,0.121494,0.826289,0.311960,0.468947,0.229469,0.064730,0.971129,-0.801569,-0.200293,0.563341,-0.789056,-0.586383,-0.183081,-0.789300,-0.584216,-0.188818,-0.701590,0.000793,0.712546,-0.666402,-0.190344,0.720847,-0.551561,-0.833979,-0.014374,-0.007416,-0.588946,-0.808100,0.121586,-0.724113,-0.678854,-0.417768,-0.894314,0.160100,-0.463912,-0.884976,-0.039277,-0.619465,-0.298105,0.726188,-0.509537,-0.239418,0.826441,0.053896,0.623585,0.779870,0.025910,0.825129,0.564318,0.144536,0.461348,0.875332,0.167364,0.458296,0.872860,0.089663,0.603870,0.791986,0.890072,0.340587,0.302835,0.798029,0.081210,-0.597064,-0.007019,-0.420545,-0.907224,0.792718,0.073977,-0.605029,0.571062,0.820429,0.027528,0.420911,0.904935,-0.062044,0.571520,0.491104,-0.657369,0.698630,0.240150,-0.673940,0.608539,0.791375,0.057955,0.738426,0.655690,0.157323,0.833461,0.070376,-0.548021,0.911954,0.110050,0.395184,0.194922,0.444014,0.874538,-0.333079,-0.039399,0.942045,-0.435652,-0.778710,0.451369,-0.542436,-0.839991,-0.011689,-0.133122,-0.967101,0.216712,-0.508103,-0.834925,0.211310,-0.475204,-0.755760,0.450514,0.079562,-0.195471,0.977447,-0.276681,-0.797967,0.535386,-0.561113,-0.551042,0.617603,-0.710166,-0.464400,0.529099,-0.585589,-0.809503,-0.041688,-0.381146,-0.715476,0.585467,-0.422193,-0.904386,0.061800,-0.060121,-0.856807,-0.512070,0.006897,-0.957976,-0.286660,-0.333506,-0.935942,0.112827,0.134861,-0.987091,-0.086215,-0.161718,-0.965972,0.201727,0.163915,-0.925077,0.342540,-0.022950,-0.609455,0.792474,-0.164373,-0.796808,0.581408,0.510941,-0.105838,0.853053,-0.166723,-0.531785,0.830287,0.407636,0.183325,0.894528,0.808222,0.545213,0.222449,0.421613,-0.886990,-0.188208,0.368419,-0.860317,-0.352214,-0.218329,-0.918302,-0.330180,-0.204352,-0.767449,-0.607654,0.710654,-0.574541,-0.406018,0.932401,-0.356883,-0.056581,0.949248,-0.129887,-0.286325,0.426008,-0.492752,-0.758721,-0.155156,-0.950896,-0.267678,0.032929,-0.988891,-0.144841,-0.134434,-0.965148,-0.224372,0.067202,-0.615162,-0.785485,-0.362774,-0.924589,-0.116123,0.727409,-0.592883,0.345470,0.638050,-0.514847,0.572527,0.902799,-0.078829,0.422712,0.856624,-0.203497,0.474044,0.113834,-0.199683,0.973205,-0.680105,-0.033937,0.732292,-0.791284,-0.557054,-0.252022,-0.628101,-0.327586,0.705771,-0.106143,0.776452,0.621143,-0.255074,0.772515,0.581469,-0.030824,0.967650,-0.250374,0.394971,-0.830409,0.392895,0.376598,0.457411,-0.805567,0.505814,0.469253,-0.723808,0.079470,-0.405499,-0.910611,-0.039796,-0.690420,-0.722282,0.920957,-0.222755,-0.319620,0.866939,0.379498,0.323038,0.302591,0.055757,0.951476,-0.684011,-0.343699,0.643391,-0.671804,-0.739860,-0.035524,-0.592273,-0.784539,-0.183447,0.763390,-0.520157,-0.382916,0.877010,-0.179052,-0.445784,-0.802210,0.041108,0.595599,-0.772912,-0.209693,0.598804,-0.699057,-0.707327,-0.104678,-0.168218,-0.353801,-0.920042,-0.254280,-0.009278,-0.967071,0.263833,0.457747,-0.848994,0.041078,-0.736015,-0.675680,0.953795,-0.281167,-0.105808,0.873775,0.448347,0.188330,-0.320078,0.865963,-0.384167,-0.221351,-0.951109,0.215339,0.140141,-0.369427,0.918607,0.387524,0.139622,0.911191,-0.522355,0.368542,0.768944,-0.660451,0.012513,0.750755,-0.491470,-0.326426,0.807367,-0.151097,0.764122,0.627064,0.563097,0.005921,0.826350,-0.515763,-0.486587,0.705100,-0.497909,-0.864345,0.070589,-0.288888,-0.836360,-0.465835,-0.526200,-0.846095,0.084719,-0.239051,-0.943449,0.229621,0.045808,-0.659413,-0.750359,-0.639424,-0.712516,-0.288858,0.317942,-0.842860,-0.434126,-0.525864,0.337260,-0.780816,0.251473,0.293924,-0.922117,0.210120,-0.754173,-0.622120,0.325144,0.335215,-0.884243,0.140172,0.942717,-0.302622,-0.008698,0.940153,-0.340556,-0.936521,0.154790,-0.314524,0.377514,-0.837703,0.394574,0.073977,-0.082675,0.993805,-0.345622,-0.210761,0.914365,0.170141,-0.160405,0.972259,-0.283090,0.834162,0.473251,-0.116489,0.814753,0.567949,-0.108463,-0.282632,0.953063,0.318918,-0.839320,0.440230,0.182897,-0.939817,0.288522,0.047121,-0.936033,0.348643,0.279885,-0.645070,0.710990,0.583178,-0.704031,0.405194,0.205847,-0.810602,0.548173,-0.009247,0.155187,0.987823,0.245643,-0.647267,0.721549,-0.040864,0.836573,0.546281,0.580584,0.802026,-0.140080,0.661000,0.340190,-0.668813,0.856044,0.353862,-0.376751,0.418500,0.868984,-0.263924,0.695059,0.484115,0.531480,0.358074,0.756096,0.547746,0.458022,0.246406,0.854091,0.441359,-0.545030,0.712821,0.448592,-0.197943,0.871517,0.085940,-0.496902,0.863521,-0.124485,-0.541765,0.831233,0.060183,-0.934080,0.351909,0.281564,-0.877255,0.388714,0.335490,-0.530076,0.778710,0.386486,-0.830927,0.400159,0.560015,-0.825617,-0.068422,0.375774,-0.888424,-0.263588,0.161321,-0.937895,-0.307077,0.459120,-0.888211,0.015564,0.293069,-0.934446,0.202185,0.436720,-0.899503,-0.010498,0.810022,-0.214057,-0.545885,0.752922,-0.588031,-0.295450,0.442061,-0.440138,-0.781549,0.625507,-0.779656,0.029054,-0.162572,-0.599414,-0.783715,-0.358043,-0.932951,0.037446,0.444258,-0.681356,-0.581683,-0.369243,-0.593799,-0.714835,0.460646,-0.805200,0.373333,-0.890011,0.069979,0.450484,-0.763207,-0.205237,0.612659,-0.230384,-0.393139,0.890133,-0.658834,0.669912,0.342174,-0.824824,0.362011,-0.434217,-0.339824,0.517869,-0.785028,0.266060,-0.746178,-0.610218,0.361644,0.428846,-0.827815,0.010956,0.986877,-0.161046,-0.296579,0.705954,0.643117,-0.318064,-0.415571,0.852107,0.066775,-0.944365,0.322001,0.108371,-0.985778,0.128269,0.044923,-0.976074,0.212683,0.151128,-0.748894,0.645192,0.516434,-0.766015,0.382733,0.457961,-0.886593,-0.064394,0.261208,-0.961486,0.085330,0.438551,-0.893918,-0.092563,0.794610,-0.546312,-0.264748,0.415723,-0.839808,-0.349071,0.341990,-0.928281,-0.145909,0.568072,-0.815760,-0.108585,0.870693,-0.480911,-0.102756,0.954253,0.259804,-0.147801,0.659169,0.737266,0.147893,0.337321,0.940672,-0.036439,0.801904,0.426374,-0.418439,0.534135,0.447462,-0.717246,0.565905,-0.318461,-0.760460,0.890988,-0.134465,-0.433607,0.615772,-0.787896,0.000183,0.302683,-0.636189,-0.709647,0.165899,0.978912,-0.118931,-0.066713,0.707266,0.703757,-0.176336,-0.006714,0.984283,0.118931,-0.753624,0.646413,0.109684,-0.891110,0.440321,-0.067751,-0.624287,0.778222,-0.279183,-0.658650,0.698691,-0.002350,-0.981262,0.192572,0.291726,0.111942,0.949889,0.310007,-0.657125,0.687063,0.323496,0.624775,0.710593,0.589923,0.409619,0.695791,0.283578,-0.331400,0.899838,0.200232,-0.651357,0.731834,0.217994,-0.934385,0.281716,0.324534,-0.889615,0.321268,0.736137,-0.521378,0.431532,0.708426,-0.702078,0.071902,0.454543,-0.305246,0.836756,0.204474,-0.873379,-0.442000,0.775414,-0.622150,-0.107730,-0.278481,-0.761895,0.584765,-0.844569,-0.530168,-0.074587,-0.944365,0.053529,0.324503,-0.896390,0.216254,0.386853,-0.558702,0.204230,0.803797,-0.572863,-0.071780,0.816492,0.323862,-0.028230,0.945647,0.005097,0.200842,0.979583,-0.086245,0.246010,0.965392,-0.552202,0.281899,0.784570,-0.617756,0.275521,0.736473,0.450453,0.005219,0.892758,-0.690146,0.117344,0.714072,-0.955657,0.104770,0.275124,-0.926908,-0.083834,-0.365764,-0.905576,-0.284616,-0.314463,0.061495,-0.295236,-0.953429,0.891507,0.114017,-0.438337,0.927091,0.075137,0.367199,0.166723,0.027070,0.985626,-0.628956,0.048952,0.775872,-0.765435,-0.193365,0.613758,-0.897183,-0.383282,-0.219337,-0.285134,-0.477432,-0.831080,-0.876675,-0.319437,-0.359630,-0.384686,-0.290902,-0.875973,0.791101,-0.126011,-0.598529,0.814631,0.129246,-0.565355,0.922849,0.174474,0.343303,0.812952,0.538347,0.221961,0.371624,0.370800,0.851100,0.235969,0.414045,0.879116,0.156743,0.184149,0.970306,-0.938780,-0.086398,0.333445,-0.825556,-0.511765,-0.237709,0.085177,-0.365093,-0.927061,0.796136,0.278268,-0.537309,0.897122,0.319010,0.305551,0.251289,0.541642,0.802149,-0.608631,-0.029878,0.792871,-0.663411,-0.306711,0.682455,0.168859,0.455672,0.873959,0.683981,0.715842,0.140294,0.774682,0.172948,-0.608203,-0.147954,-0.613910,-0.775353,0.827174,0.024903,-0.561357,0.881436,0.360790,0.304697,0.207068,0.303018,0.930204,-0.783105,-0.133030,0.607471,-0.775506,-0.624592,-0.091647,-0.791223,-0.527940,-0.308481,-0.107822,-0.367809,-0.923612,-0.839595,-0.485427,-0.243690,-0.493698,-0.722678,-0.483718,0.267159,-0.432905,-0.860897,0.855068,-0.165502,-0.491348,0.912992,0.199011,0.356120,0.242744,0.112644,0.963500,-0.442427,-0.093936,0.891842,-0.777917,-0.586718,0.224891,-0.542619,-0.838527,-0.049196,-0.835597,-0.548997,-0.018525,-0.801843,-0.554735,0.221900,-0.125919,-0.443617,0.887295,-0.647633,-0.703238,0.293191,-0.865017,-0.427015,-0.263375,-0.821314,-0.369793,0.434339,-0.910123,-0.195410,0.365337,-0.769066,-0.612384,-0.182958,-0.357830,-0.593982,-0.720481,-0.361431,-0.772179,-0.522538,-0.706839,-0.693625,-0.138737,0.814295,-0.380596,0.438215,0.926298,0.061739,0.371654,0.689383,-0.714652,-0.118137,0.308542,-0.522629,0.794733,0.334758,-0.215583,0.917295,0.844020,-0.457228,-0.280221,0.448134,-0.726951,-0.520249,-0.502457,-0.695059,-0.514176,-0.363506,-0.839442,-0.403912,0.012177,-0.835078,-0.549974,0.035707,-0.917997,-0.394940,-0.693350,-0.615802,-0.374157,-0.441054,-0.415693,-0.795373,-0.472304,-0.597949,0.647572,-0.368084,-0.708304,0.602313,-0.711722,-0.596942,0.370220,0.267983,-0.870907,-0.411878,0.431898,-0.650166,-0.625080,-0.813715,0.170751,-0.555559,-0.788903,0.128849,-0.600848,-0.844997,0.333048,-0.418378,-0.857082,0.458327,-0.235206,-0.775658,-0.420667,0.470443,-0.071078,-0.995361,0.064455,0.575091,-0.804132,-0.150334,-0.052797,-0.777642,-0.626453,-0.534898,-0.047548,0.843562,-0.555010,-0.712516,0.429243,0.765435,-0.427198,0.481216,0.728629,0.254524,0.635823,0.993896,0.091586,0.061068,0.139714,-0.674886,0.724540,0.595019,-0.183630,0.782403,0.556749,-0.725028,0.405316,0.550340,-0.469466,0.690420,0.803430,-0.463179,0.374035,0.856777,0.506943,0.094333,0.563646,0.801508,0.199530,0.915830,0.156896,-0.369610,0.846614,-0.503403,-0.172552,0.722068,-0.689810,0.052248,0.335765,-0.941191,-0.037202,0.753197,0.641713,-0.144353,0.010804,-0.779443,0.626362,0.485092,-0.790857,0.373058,0.904355,0.234809,0.356334,0.509507,0.748100,0.425092,0.434462,-0.581439,0.687826,-0.860347,-0.468368,0.200934,-0.571368,-0.819178,-0.049684,-0.277078,-0.901273,-0.332957,-0.274911,-0.955718,0.104801,0.455367,-0.807550,0.374737,0.918210,-0.381359,0.106967,-0.545824,-0.614887,-0.569140,-0.544877,-0.756737,0.361126,0.677511,-0.251686,0.691061,0.651265,-0.417127,0.633869,0.636769,-0.482681,0.601215,-0.093142,-0.667531,0.738701,0.960021,-0.042848,0.276498,0.997833,-0.014130,0.063997,0.802942,0.489731,-0.339702,0.762505,0.505814,-0.403333,0.219337,0.667409,-0.711600,0.230018,0.495865,-0.837367,0.916288,0.296457,-0.269234,0.942473,-0.031343,0.332743,0.554949,-0.356700,0.751488,-0.244575,-0.559679,0.791772,-0.779870,-0.437391,0.447707,-0.817774,-0.385876,0.426954,-0.974700,0.073305,-0.211127,-0.982482,-0.089267,-0.163518,-0.882138,-0.377117,0.282052,-0.157384,-0.505142,0.848537,-0.790185,-0.421308,0.445021,-0.961028,-0.184362,-0.205817,-0.893246,-0.262062,0.365246,-0.164708,-0.451064,0.877132,-0.048891,-0.301096,0.952330,-0.381756,-0.207221,0.900693,-0.979034,-0.043733,0.198828,-0.938261,0.047426,0.342601,-0.326060,-0.222327,0.918821,-0.956755,0.230720,0.177038,-0.317972,0.023347,0.947783,-0.875790,0.363262,0.317789,-0.310953,0.234901,0.920896,-0.881741,0.420911,0.212928,-0.201025,0.664357,0.719840,-0.836360,0.500626,0.223212,-0.897488,0.296915,-0.326029,-0.983215,0.181860,0.013123,-0.662221,-0.153935,-0.733299,-0.701804,-0.633900,-0.324931,0.699362,-0.629048,-0.339305,0.452498,-0.873714,0.178411,0.699057,-0.216041,0.681600,0.884457,-0.063387,0.462233,0.786035,-0.344340,-0.513352,0.919675,-0.097537,0.380322,0.899472,-0.422742,-0.110477,0.962371,-0.174627,0.208167,0.884213,0.221809,-0.410993,0.911710,0.126774,0.390728,0.547838,0.780297,-0.301645,-0.247383,0.503159,-0.827998,0.067843,0.335368,-0.939634,0.805139,0.080447,-0.587573,0.806116,0.189642,-0.560503,-0.352855,0.333476,-0.874203,-0.223518,0.195105,-0.954955,0.750664,-0.435896,-0.496414,0.437300,-0.638874,0.632923,-0.407582,-0.574419,0.709873,-0.407368,-0.574186,0.710184,-0.941313,-0.318400,0.111911,-0.634449,-0.220588,-0.740776,-0.448042,-0.795587,-0.407697,0.072323,-0.800574,-0.594854,0.072323,-0.800574,-0.594853,0.097903,-0.903439,0.417371,-0.407159,-0.576372,0.708531,-0.406870,-0.576275,0.708776,-0.793695,0.222999,-0.565905,-0.827265,0.362835,-0.428877,-0.231544,-0.035340,-0.972167,-0.906095,0.308969,-0.288919,-0.865230,0.231269,-0.444807,-0.936399,-0.010132,-0.350719,-0.554888,0.131535,-0.821436,-0.922117,-0.076235,-0.379254,-0.622059,0.330241,-0.709891,-0.486770,0.195044,-0.851436,0.244697,0.334819,-0.909940,0.304239,0.308878,-0.901089,0.865169,0.225684,-0.447768,0.967528,-0.048250,0.248054,0.656606,-0.315348,0.685110,0.607715,-0.312449,0.730094,0.708396,-0.184027,0.681387,0.650075,-0.091647,0.754295,0.569262,-0.217811,0.792749,0.642659,-0.193335,0.741325,0.499252,0.000916,0.866421,0.513474,0.222968,0.828608,0.553697,0.298776,0.777245,0.070925,0.267830,0.960845,-0.691366,0.484298,0.536119,-0.825373,-0.012421,0.564409,-0.598834,-0.757164,0.260903,0.016999,-0.836299,0.547990,0.048891,-0.315195,0.947752,0.929838,0.153630,0.334269,0.768426,0.551042,-0.325358,0.991363,0.078890,0.104617,0.765862,0.330973,-0.551256,0.242683,0.463118,-0.852412,0.945585,0.153569,-0.286782,0.944823,-0.085116,0.316233,-0.417402,0.307199,-0.855190,-0.242500,0.593341,-0.767541,0.233253,0.755730,-0.611866,-0.254372,0.770959,-0.583819,-0.466536,0.540513,-0.700095,-0.600513,0.533525,-0.595538,-0.947295,0.154057,-0.280801,-0.859035,-0.389691,0.331919,-0.217078,-0.618915,0.754845,0.545640,-0.391186,0.741081,-0.269295,-0.459151,0.846522,-0.282174,-0.361370,0.888668,-0.854579,-0.348949,0.384564,-0.962004,-0.095584,-0.255715,-0.863826,-0.339366,0.372295,-0.291116,-0.223212,0.930265,-0.865108,-0.266427,0.424940,-0.906949,-0.302805,-0.292734,-0.542680,0.095614,-0.834468,-0.467360,0.584704,-0.663045,0.171026,0.708884,-0.684225,0.804559,0.374615,-0.460738,0.153386,0.607044,-0.779687,0.180822,0.198370,-0.963286,0.861080,0.090091,-0.500412,0.213691,-0.138615,-0.966979,0.857509,-0.132420,-0.497085,0.982543,-0.098758,0.157445,0.961058,-0.013459,0.275979,0.914243,-0.051180,-0.401898,0.967772,-0.002167,0.251686,0.874142,-0.066927,-0.480972,0.965209,-0.002472,0.261391,0.874355,0.004791,-0.485244,0.973022,0.031159,0.228492,0.854488,0.080782,-0.513108,0.246864,-0.007691,-0.968993,0.247902,-0.118259,-0.961516,0.277871,-0.126316,-0.952239,-0.473525,-0.295419,-0.829737,-0.919218,-0.259285,-0.296213,-0.901944,-0.220374,0.371319,-0.330821,-0.150273,0.931639,-0.880367,-0.161901,0.445723,-0.957976,-0.156682,-0.240211,-0.493149,-0.157994,-0.855464,-0.379101,-0.243110,-0.892819,-0.511063,-0.047548,-0.858211,-0.965484,-0.089938,-0.244362,-0.888211,-0.115268,0.444685,-0.262856,-0.121891,0.957091,0.472579,-0.059542,0.879238,0.616749,-0.135685,0.775353,0.489059,-0.264412,0.831202,0.959777,-0.115696,0.255684,0.571734,-0.042879,0.819269,0.570635,-0.048341,0.819758,0.595813,-0.023316,0.802759,0.777978,0.032228,0.627400,0.992431,0.112247,0.049623,0.678579,0.131657,-0.722587,0.220130,0.057466,-0.973754,-0.542375,0.021729,-0.839839,-0.976287,-0.023072,-0.215094,-0.872097,-0.036500,0.487930,-0.253975,-0.095798,0.962432,-0.219581,-0.053713,0.974090,-0.727012,0.028779,0.685995,-0.997131,0.071688,-0.023133,-0.744987,0.084994,-0.661611,0.021302,0.111332,-0.993530,0.006104,-0.003388,0.999969,-0.221137,0.817499,-0.531754,-0.109897,0.498795,-0.859706,-0.404584,0.752556,-0.519547,-0.004669,0.555406,-0.831538,0.068361,0.937010,-0.342509,-0.345683,0.924497,-0.160558,-0.523850,0.840114,-0.140416,-0.393323,0.892972,0.218787,-0.392071,0.917020,0.072878,-0.622822,0.676168,-0.393475,-0.568529,0.435804,-0.697684,-0.352702,0.400403,-0.845698,-0.352763,0.115177,-0.928587,0.013520,0.161992,-0.986694,0.200049,0.211554,-0.956664,0.363933,0.681845,-0.634510,0.605762,0.392346,-0.692129,0.554765,0.736808,-0.386395,0.537797,0.839503,-0.077151,0.856655,0.472701,-0.206610,0.907651,0.380840,0.176305,0.510147,0.788781,0.342845,0.183935,0.964507,0.189337,0.062349,0.997253,-0.039521,-0.307871,0.949889,-0.053591,-0.753594,0.620533,-0.216803,-0.824549,0.442701,-0.352275,-0.561083,0.808069,0.179418,-0.512467,0.850917,-0.115207,-0.557665,0.829249,0.036103,-0.756890,0.636525,-0.148015,-0.871426,0.480270,-0.099521,-0.832026,0.363353,-0.419141,-0.938383,0.276101,-0.207770,-0.807306,0.087985,-0.583483,-0.916288,0.114383,-0.383770,-0.917844,-0.079043,-0.388958,-0.647267,-0.124119,-0.752068,-0.861446,-0.169897,-0.478530,-0.579363,-0.189550,-0.792688,-0.416181,-0.160863,-0.894894,-0.432936,-0.063417,-0.899167,-0.101199,-0.068972,-0.992462,0.060945,-0.131108,-0.989471,-0.328288,-0.138218,-0.934385,-0.250191,-0.169866,-0.953154,-0.316202,-0.171117,-0.933103,-0.186224,-0.076876,-0.979461,0.051759,-0.078372,-0.995575,0.269723,-0.116184,-0.955870,0.153478,-0.114048,-0.981536,0.232276,-0.047578,-0.971465,0.609485,0.079287,-0.788781,0.458632,-0.020875,-0.888363,0.814722,0.163182,-0.556383,0.768395,0.377819,-0.516465,0.890896,0.230689,-0.391217,0.986145,0.165471,-0.010895,0.795556,-0.076479,0.601001,0.307413,-0.168615,0.936491,0.612476,-0.037385,0.789575,0.894467,0.028901,0.446150,0.946379,0.147496,0.287393,0.956359,0.109348,-0.270821,0.887234,0.107242,-0.448592,0.746055,0.046663,-0.664205,0.264229,0.043428,-0.963469,0.700980,0.144688,-0.698325,0.891354,0.164495,-0.422376,0.908322,0.185888,-0.374645,0.977416,0.099155,0.186468,0.576586,-0.060488,0.814783,0.133763,-0.217200,0.966887,0.107852,-0.408124,0.906522,0.410627,-0.319346,0.854030,0.046571,-0.503922,0.862453,0.245979,-0.407971,0.879208,0.027894,-0.548173,0.835871,0.249031,-0.364605,0.897214,0.910977,0.371838,0.178381,0.964629,0.081576,0.250587,0.862300,0.315531,-0.396008,0.857509,0.333872,-0.391369,0.564348,0.360637,-0.742576,0.888150,0.435072,-0.147862,0.430189,0.573504,-0.697104,0.757500,0.557451,-0.339702,0.347148,0.621967,-0.701865,-0.011505,0.485214,-0.874294,-0.123936,0.468947,-0.874477,-0.381207,0.339702,-0.859798,-0.145054,0.500290,-0.853603,0.106357,0.264595,-0.958464,0.101444,0.305979,-0.946593,-0.043245,0.001068,-0.999054,0.173864,-0.020051,-0.984558,0.148442,0.252327,-0.956175,0.396405,0.495987,-0.772515,0.003357,0.507431,-0.861660,0.361400,0.625538,-0.691397,-0.107364,0.569536,-0.814905,-0.414502,0.443739,-0.794519,-0.285379,0.387402,-0.876614,0.193487,0.244118,-0.950224,0.179418,-0.010529,-0.983703,0.446394,0.046236,-0.893613,0.272500,0.209998,-0.938932,0.595233,0.361797,-0.717460,0.380718,0.471999,-0.795129,-0.299905,0.191748,-0.934477,-0.289102,0.452162,-0.843745,0.240669,0.552507,-0.797967,0.670217,0.457259,-0.584521,-0.564318,0.423200,-0.708792,-0.160253,0.447584,-0.879727,-0.115848,0.216285,-0.969420,-0.274819,-0.097507,-0.956511,-0.124607,-0.059786,-0.990387,-0.058565,-0.021577,-0.998047,0.141240,0.285562,-0.947874,0.011902,0.517716,-0.855434,0.458571,0.539018,-0.706473,-0.121403,0.680532,-0.722556,-0.037812,0.505936,-0.861721,-0.324686,0.700980,-0.634938,-0.226753,0.218940,-0.949004,-0.401624,-0.041169,-0.914853,-0.144047,0.270821,-0.951781,0.037355,0.503769,-0.863002,0.486373,0.426344,-0.762627,-0.099094,0.675283,-0.730827,-0.404096,0.563677,-0.720359,-0.393445,0.678945,-0.619800,-0.770775,0.445357,-0.455550,-0.855373,0.453658,-0.249977,-0.980255,0.180944,-0.079592,-0.674245,0.466384,-0.572558,-0.799890,0.277108,-0.532304,-0.993530,0.109409,-0.029420,-0.943754,0.330576,0.005005,-0.420667,0.604846,-0.676138,-0.887631,-0.106540,0.448042,-0.317362,-0.511948,0.798212,-0.167699,-0.658956,0.733238,-0.033601,-0.726341,0.686483,-0.101169,-0.620045,0.777978,-0.154210,-0.462325,0.873165,-0.484115,-0.353771,0.800287,-0.654805,-0.220527,0.722892,-0.309488,-0.348491,0.884732,-0.660543,-0.224128,0.716544,-0.829737,-0.182195,0.527543,-0.992340,-0.119602,0.030305,-0.934111,-0.030488,-0.355632,-0.954711,-0.152440,-0.255470,-0.935087,-0.036561,-0.352489,-0.924009,-0.036897,-0.380535,-0.801874,0.239174,-0.547502,-0.496445,0.283486,-0.820460,-0.572771,-0.012207,-0.819605,-0.993316,-0.076510,-0.086337,-0.930815,-0.189978,0.312174,-0.900052,-0.201086,0.386608,-0.980651,-0.030732,0.193213,-0.924039,-0.119358,0.363109,-0.981475,0.134434,-0.136357,-0.966887,0.251228,-0.044282,-0.987426,0.109653,-0.113681,-0.859615,0.510666,-0.015412,-0.981506,0.167211,0.093142,-0.804773,-0.095035,-0.585864,-0.390179,-0.194678,-0.899899,-0.178289,-0.141026,-0.973785,-0.862941,-0.171087,-0.475387,-0.720145,-0.168493,-0.673025,-0.336283,-0.066317,-0.939390,-0.801935,-0.154790,-0.576983,-0.412427,-0.082217,-0.907254,-0.793786,-0.155950,-0.587848,-0.252144,-0.103427,-0.962127,-0.621143,-0.114994,-0.775170,-0.169164,-0.131962,-0.976684,-0.984466,-0.175512,0.000244,-0.976562,-0.207831,-0.055422,-0.975677,-0.180090,0.124912,-0.969848,-0.196875,-0.143559,-0.949553,-0.193365,-0.246864,-0.975494,-0.216132,-0.041017,-0.926420,-0.189795,0.325053,-0.929106,-0.110935,0.352763,-0.923887,-0.048647,0.379528,-0.897488,-0.058779,0.437086,-0.824122,-0.092502,0.558763,-0.758690,-0.119541,0.640370,-0.486984,-0.078188,0.869869,-0.642537,-0.098849,0.759819,-0.767815,-0.154668,0.621693,-0.936155,-0.191015,0.295083,-0.981903,-0.170965,-0.081362,-0.995422,-0.089480,-0.033143,-0.966186,-0.094699,0.239723,-0.788141,-0.167852,0.592120,-0.678610,-0.159978,0.716819,-0.756432,-0.152104,0.636097,-0.757378,-0.108829,0.643818,-0.753075,-0.092044,0.651448,-0.735618,-0.097232,0.670339,-0.702109,-0.156407,0.694632,-0.655934,-0.108432,0.746971,-0.818690,-0.074435,0.569353,-0.966704,0.017792,0.255257,-0.838038,0.016114,0.545335,-0.668599,-0.045167,0.742210,-0.672109,0.056887,0.738243,-0.805872,0.105075,0.582629,-0.958831,0.110569,0.261513,-0.995849,0.006439,0.090609,-0.894345,0.420850,0.151708,-0.862148,0.322489,0.390698,-0.716788,0.168279,0.676656,-0.643483,0.114048,0.756890,-0.587695,0.198340,0.784387,-0.515519,0.497940,0.697317,-0.427595,0.745933,0.510605,-0.719626,0.558245,0.412854,-0.671285,0.710410,0.211249,-0.779077,0.607410,0.155034,-0.698630,0.569353,0.433210,-0.731864,0.309854,0.606891,-0.648305,0.436720,0.623646,-0.420911,0.265816,0.867244,-0.372509,0.180517,0.910276,-0.082247,0.301950,0.949736,-0.330363,0.532792,0.779077,-0.267953,0.784692,0.558916,-0.327006,0.893399,0.308023,-0.232307,0.962371,0.140812,-0.767327,0.637532,-0.068545,-0.627888,0.778283,-0.003235,-0.436140,0.892300,0.116428,-0.510422,0.818628,0.263131,0.159276,0.925199,0.344371,0.141179,0.921445,0.361888,0.081576,0.743187,0.664052,0.020081,0.587390,0.809015,0.418226,0.473373,0.775201,0.396954,0.186377,0.898679,-0.011078,0.111332,0.993713,0.247475,0.083743,0.965239,0.453352,0.019013,0.891110,0.528764,0.020325,0.848506,0.582110,-0.027863,0.812616,0.583483,-0.051637,0.810450,0.555956,-0.084902,0.826838,0.519517,-0.088046,0.849879,0.519913,-0.089236,0.849513,0.692923,0.277505,0.665426,0.667959,0.183325,0.721244,0.703330,0.142827,0.696341,0.644490,-0.044130,0.763329,0.528550,-0.140934,0.837092,0.827448,-0.084841,0.555040,0.950804,0.155187,0.268075,0.932310,-0.187841,0.309000,0.737754,-0.258522,0.623554,0.926023,0.181341,0.331004,0.965056,0.047639,0.257576,0.534043,0.041871,0.844386,0.102878,-0.013337,0.994598,0.417096,0.017060,0.908689,0.090762,0.021210,0.995636,0.410474,0.059023,0.909940,0.216132,0.044923,0.975311,0.269509,0.043519,0.962004,0.407971,0.098331,0.907651,0.990509,0.074068,0.115513,0.918302,0.143406,0.368908,0.640034,0.094333,0.762505,0.818567,0.066164,-0.570544,0.999908,-0.007721,0.008820,0.994171,0.021119,0.105655,0.969817,-0.060701,0.236030,0.853542,-0.020264,0.520615,0.482681,-0.015870,0.875637,0.928739,0.025391,0.369793,0.869747,0.026887,-0.492691,0.934202,-0.027802,-0.355602,0.595599,-0.005554,-0.803217,0.469253,0.093875,-0.878048,0.732139,0.122440,-0.670003,0.441755,0.139134,-0.886258,0.796777,0.010010,-0.604175,0.949797,-0.011414,-0.312632,0.703726,-0.008789,-0.710379,0.919706,0.024903,-0.391736,0.989349,0.022309,0.143773,0.965392,0.143468,0.217780,0.966887,0.124332,-0.222785,0.873592,0.347270,0.340861,0.880886,0.449446,0.148198,0.595782,0.721427,0.352855,0.555437,0.743248,0.372845,0.686666,-0.027863,-0.726402,0.507462,0.601856,0.616627,0.982086,0.140904,0.124973,0.989349,-0.012391,0.144932,0.946135,-0.060945,0.317911,-0.961364,0.021699,-0.274392,0.926633,0.077120,0.367931,0.956542,0.253883,0.143254,0.649709,0.546525,-0.528336,0.509323,0.696432,-0.505509,0.812159,0.463332,0.354534,-0.386639,0.033113,-0.921598,-0.513321,0.144597,-0.845912,-0.988342,-0.152104,-0.000519,-0.992981,-0.115879,-0.023072,-0.995300,-0.067446,-0.069277,-0.974944,-0.211158,0.069582,-0.996734,-0.043123,-0.067904,0.644398,-0.213630,-0.734184,0.848415,-0.143040,-0.509598,0.582537,-0.301614,-0.754723,0.869503,-0.094272,-0.484817,0.629109,-0.024110,-0.776940,0.850307,-0.012238,-0.526109,0.706168,0.024628,-0.707572,0.179632,0.002503,-0.983703,0.151677,-0.051332,-0.987091,0.180059,-0.351726,-0.918607,0.173315,-0.436933,-0.882626,0.430128,0.049471,-0.901395,0.706870,0.112430,-0.698325,0.404981,0.414624,-0.814875,0.139470,0.349712,-0.926389,0.290567,0.560350,-0.775597,-0.217170,0.540147,-0.813044,0.214026,0.798730,-0.562304,-0.264901,0.684988,-0.678640,-0.239113,0.768059,-0.594043,0.241432,0.853816,-0.461165,-0.629078,0.435255,-0.644002,-0.551897,0.577349,-0.601672,-0.646352,0.279458,-0.709983,0.147557,-0.067843,-0.986694,0.149388,0.304025,-0.940855,0.146794,0.518632,-0.842280,0.096957,0.642720,-0.759911,0.091525,0.783441,-0.614673,-0.080355,0.803888,-0.589282,0.099246,0.863155,-0.495010,-0.165136,0.848262,-0.503128,-0.330393,0.765801,-0.551653,-0.026673,0.803735,-0.594348,0.085360,0.586657,-0.805292,-0.283517,0.777581,-0.561174,-0.087924,0.887692,-0.451949,0.150456,0.871944,-0.465865,-0.565020,0.727134,-0.389813,-0.167913,0.756920,-0.631519,-0.251625,0.592730,-0.765069,-0.142644,0.370678,-0.917722,-0.135105,-0.082339,-0.987396,-0.215003,-0.421827,-0.880795,-0.338786,-0.424451,-0.839656,-0.390667,-0.145207,-0.908994,-0.300821,-0.007935,-0.953642,-0.728050,-0.117527,-0.675344,-0.698904,-0.240852,-0.673391,-0.580584,-0.330424,-0.744102,-0.358531,-0.298929,-0.884335,-0.242378,0.113071,-0.963561,-0.247414,0.427686,-0.869381,-0.071108,0.423200,-0.903226,-0.258370,0.565172,-0.783441,0.076785,0.803186,-0.590747,0.398328,0.777154,-0.487136,0.164098,0.851772,-0.497513,-0.024079,0.851405,-0.523942,-0.020478,0.796960,-0.603656,0.087680,0.559771,-0.823969,-0.004517,0.620899,-0.783837,0.569048,0.594836,-0.567705,0.179510,0.814570,-0.551561,-0.245705,0.853908,-0.458724,-0.228309,0.856075,-0.463637,0.055483,0.830439,-0.554308,0.508835,0.673025,-0.536699,-0.416364,0.578906,-0.701041,0.847804,0.024842,-0.529710,-0.406598,0.352886,-0.842677,-0.416852,0.413068,-0.809656,-0.233833,0.481033,-0.844905,-0.362987,0.574206,-0.733818,-0.394452,0.594409,-0.700736,-0.321757,0.647542,-0.690725,-0.221198,0.655049,-0.722434,-0.067476,0.469924,-0.880093,0.116276,0.550615,-0.826594,0.034181,0.788049,-0.614643,0.079257,0.794305,-0.602283,-0.035585,0.903073,-0.427961,-0.096957,0.912748,-0.396802,0.123325,0.519944,-0.845210,0.098148,0.506455,-0.856624,0.056520,0.595782,-0.801111,0.101840,0.780114,-0.617237,0.072726,0.844081,-0.531205,0.040712,0.896023,-0.442091,0.013398,0.875851,-0.482315,-0.015625,0.470382,-0.882321,0.000427,0.582476,-0.812830,0.005371,0.770837,-0.636982,0.010041,0.842311,-0.538865,0.009186,0.902982,-0.429548,0.003113,0.905698,-0.423841,0.362163,0.443709,-0.819697,0.447615,0.503098,-0.739219,0.024384,0.767785,-0.640217,0.028565,0.840999,-0.540239,0.038270,0.896695,-0.440962,0.034211,0.899777,-0.434950,0.614246,0.358013,-0.703177,0.558000,0.487869,-0.671255,0.686666,0.407483,-0.601978,0.675375,0.461837,-0.574908,0.639912,0.537797,-0.548845,0.509751,0.739708,-0.439253,0.738456,0.229041,-0.634144,0.439619,0.354289,-0.825343,0.934538,0.253670,-0.249458,0.593616,0.265328,-0.759728,0.917936,0.368633,0.146519,0.224006,-0.043947,-0.973571,-0.085696,-0.120212,-0.989013,-0.068667,-0.245949,-0.966826,0.135380,-0.077029,-0.987762,0.171331,-0.144475,-0.974548,0.238868,-0.081729,-0.967589,0.303720,-0.199530,-0.931608,-0.267617,-0.016907,-0.963347,-0.740745,0.144475,-0.656026,-0.951262,0.022797,-0.307505,-0.652852,0.026368,-0.757012,-0.167821,0.238533,-0.956511,0.143834,0.264962,-0.953459,0.117008,0.288949,-0.950133,-0.051759,0.277169,-0.959410,-0.997131,0.055452,-0.050874,0.974670,0.057039,0.216193,0.982879,0.043336,0.178991,0.971374,0.005768,0.237465,0.972259,0.158574,0.171880,0.953612,0.084017,0.289041], + "normals": [0.94537,0.30021,0.12693,0.79427,0.21268,0.56908,0.79205,0.18473,0.58181,0.95178,0.29109,0.096561,0.863,0.37138,-0.34242,0.83831,0.33,-0.43394,0.63842,0.43251,-0.63665,0.54057,0.35475,-0.76281,0.32682,0.45091,-0.83056,0.67739,0.26658,-0.6856,0.92788,0.24064,-0.28477,0.96753,0.19111,0.16535,0.8381,0.13251,0.52913,0.52281,0.15931,0.8374,0.46556,0.14249,0.87344,0.49715,0.12751,0.85821,0.14505,0.10483,0.98382,0.17838,0.070467,0.98141,-0.10093,0.009674,0.99484,0.16715,-0.021027,0.98569,-0.038057,-0.060884,0.99741,-0.29704,-0.083651,0.95117,-0.29649,-0.036103,0.95434,-0.57341,-0.019776,0.819,-0.64107,0.042177,0.76629,-0.58684,0.018952,0.80944,-0.90564,-0.04416,0.42171,-0.88726,0.081393,0.45399,-0.99698,0.042146,0.064852,-0.8919,0.089084,0.44334,-0.99188,0.12656,0.00998,-0.93203,-0.03119,-0.36094,-0.89718,0.07242,-0.43565,-0.61772,-0.16016,-0.76986,-0.53301,-0.018647,-0.84588,-0.10892,-0.21757,-0.96994,-0.52586,-0.19019,-0.829,-0.097476,-0.25257,-0.96264,-0.55873,-0.16639,-0.81246,-0.15455,-0.24372,-0.95743,-0.53108,-0.20063,-0.82321,-0.19782,-0.15937,-0.96716,-0.25239,-0.13059,-0.95874,-0.006287,-0.000519,-0.99997,0.001007,0.29954,-0.95407,0.051149,0.36708,-0.92877,-0.097964,0.79183,-0.6028,-0.2078,0.81756,-0.537,0.034394,0.47057,-0.88165,0.11313,0.37327,-0.92077,0.13889,0.43037,-0.89187,0.13813,0.41585,-0.89886,0.1836,0.46666,-0.86514,0.36854,0.49516,-0.78674,0.11799,0.3151,-0.94168,0.56789,0.33055,-0.75378,0.45625,0.033723,-0.88919,0.88708,0.12195,-0.44517,0.10941,-0.080966,-0.99066,-0.24241,-0.073,-0.96741,-0.36924,0.3881,-0.84439,-0.12116,0.54576,-0.8291,-0.51457,0.76412,-0.38893,-0.34376,0.93497,0.087313,-0.27824,0.9599,0.033662,-0.19477,0.81521,-0.5454,-0.13251,0.27128,-0.95331,-0.34983,-0.26627,-0.89816,-0.84677,0.058992,-0.52867,-0.9256,-0.056063,-0.37431,-0.91015,-0.10242,-0.40138,-0.91455,-0.099429,-0.39204,-0.99658,-0.077212,0.029237,-0.9606,-0.16227,0.22553,-0.78875,-0.26899,0.55272,-0.5146,-0.46706,0.71902,-0.32685,-0.007477,0.94501,-0.038759,-0.06592,0.99704,0.20808,-0.04648,0.97699,0.44682,0.038728,0.89377,0.49083,0.076449,0.86786,0.82556,0.18647,0.53258,0.80859,0.12479,0.57494,0.78485,0.091586,0.61284,0.51369,0.047334,0.85666,0.46654,-0.062532,0.88226,0.22306,-0.041932,0.97388,-0.056429,-0.009888,0.99835,-0.26875,-0.37696,0.88635,-0.1449,-0.60695,0.7814,-0.064119,-0.5837,0.80941,-0.076754,-0.046327,0.99594,-0.059145,-0.14569,0.98755,-0.38435,-0.10617,0.91705,-0.49867,-0.60201,0.62358,-0.76806,-0.15168,0.62212,-0.79492,-0.46867,0.38523,-0.98691,-0.11762,0.11029,-0.9996,-0.001099,-0.027802,-0.9946,-0.089297,-0.052736,-0.86468,0.46028,-0.20106,-0.9208,0.14606,-0.36161,-0.99042,0.078066,0.11374,-0.93649,0.1091,0.33323,-0.93353,-0.20872,0.29139,-0.62328,0.28724,0.72729,-0.33116,0.30378,0.89331,0.003113,0.30317,0.95291,0.17701,0.3347,0.92554,-0.052736,0.41392,0.90878,-0.28456,0.37925,0.88043,-0.1279,0.28718,0.94928,-0.1362,-0.21177,0.96777,-0.03769,-0.65508,0.75457,0.12503,-0.38588,0.914,0.30341,-0.53935,0.78548,0.23014,-0.72677,0.64714,0.52361,-0.66091,0.53758,0.54323,-0.37046,0.75341,0.16822,-0.24851,0.95389,0.18967,0.206,0.95999,0.49706,0.13288,0.85745,0.84848,-0.097995,0.52004,0.755,-0.44285,0.48351,0.88876,-0.32487,0.32328,0.95434,-0.14011,0.26377,0.77636,0.21244,0.59337,0.82299,0.18647,0.53651,0.83789,-0.48637,0.24763,0.88809,-0.14106,0.43745,0.5634,-0.59652,0.57158,0.77227,-0.12751,0.62233,0.66652,-0.038453,0.74447,0.63332,-0.32942,0.70025,0.11686,-0.73028,0.67302,0.65011,-0.72237,0.23551,0.96164,-0.2595,0.088778,0.96545,-0.17646,0.19157,0.80926,-0.37168,0.45485,0.54967,-0.44392,0.70763,-0.057588,-0.27155,0.96066,0.77612,-0.12684,0.61766,0.97403,-0.006745,0.2262,0.9425,-0.25864,0.21159,0.94717,-0.27274,0.16871,0.94565,-0.26148,-0.19321,0.98575,-0.060701,0.15677,0.90362,-0.14975,-0.40126,-0.051576,0.098575,-0.99377,-0.94571,-0.25584,-0.20032,-0.65349,0.034639,-0.75613,-0.72155,0.10166,-0.68483,-0.9212,-0.3346,-0.1984,-0.53239,-0.57491,-0.62126,-0.4358,-0.88015,-0.18796,0.40086,-0.75304,-0.52168,0.13419,-0.91363,0.38368,0.68801,-0.67892,0.25626,0.52223,-0.4677,0.71306,0.90939,0.029786,0.41481,0.91495,0.22422,0.33555,0.82391,0.52324,-0.21763,0.61373,0.773,-0.16059,0.26396,0.62014,-0.73873,0.37995,0.59508,-0.70812,0.84744,0.46934,-0.24799,0.93835,-0.339,-0.067263,0.8554,-0.24253,-0.45763,0.65847,0.048921,-0.751,0.13886,0.019868,-0.99011,-0.24979,-0.22575,-0.94159,-0.19034,0.47755,-0.85769,0.34449,0.61721,-0.70736,-0.21467,0.41279,-0.88513,-0.099887,0.40703,-0.90793,0.12052,0.68331,-0.72008,0.29762,0.94464,-0.13794,0.067171,0.55461,-0.82937,-0.08063,0.30232,-0.94977,0.11679,0.032289,-0.99262,0.26899,-0.20209,-0.94168,0.59346,-0.30818,-0.74346,0.64773,-0.30412,-0.69851,0.91705,-0.33521,-0.21589,0.94031,-0.25867,-0.22114,0.97241,-0.091037,-0.2147,0.97733,0.14548,0.15372,0.94449,0.087008,-0.31681,0.74606,-0.2327,-0.62386,0.65719,-0.32218,-0.68136,0.24049,-0.28306,-0.92843,0.26292,-0.24998,-0.93185,0.64141,-0.024049,-0.76681,0.31278,0.007721,-0.94977,0.20112,0.38716,-0.89978,0.010498,0.41118,-0.91147,0.2982,0.24409,-0.92276,0.68429,0.10373,-0.72176,0.91946,0.10752,-0.37818,0.98654,0.12439,0.10605,0.846,0.12766,0.51762,0.54344,0.13074,0.82916,0.15268,0.13758,0.97864,0.14945,0.13651,0.97928,0.13428,0.093234,0.98654,-0.12949,0.064638,0.98944,-0.13016,0.061617,0.98956,-0.32322,0.066744,0.94394,-0.3516,0.009919,0.93606,-0.60146,-0.018647,0.79867,-0.90494,0.062227,0.42091,-0.88998,0.07297,0.45009,-0.62227,0.077151,0.77895,-0.88675,0.10932,0.44911,-0.56716,0.077425,0.81994,-0.64477,0.046937,0.7629,-0.91589,0.084078,0.3925,-0.68249,0.028291,0.73031,-0.9267,0.061678,0.37065,-0.77633,0.036073,0.62926,-0.9555,0.055239,0.28965,-0.96597,0.090762,0.24216,-0.72152,0.087069,0.68685,-0.82089,0.10392,0.56151,-0.97296,0.12229,0.19593,-0.97989,0.11362,-0.16395,-0.98288,0.087497,-0.16199,-0.99231,0.073763,-0.099338,-0.99347,0.10727,-0.038087,-0.99176,0.12726,-0.013184,-0.98987,0.13559,0.041688,-0.99109,0.12949,0.030793,-0.99185,0.12665,-0.011383,-0.83596,0.19523,-0.51283,-0.88906,0.21253,-0.40538,-0.92337,0.18629,-0.33567,-0.88205,0.17747,-0.43642,-0.87381,0.12909,-0.46876,-0.84088,0.10428,-0.53105,-0.87558,0.12314,-0.46709,-0.78832,0.13483,-0.60027,-0.4734,0.16331,-0.86557,-0.46297,0.18534,-0.86676,-0.017884,0.22687,-0.97375,0.090701,0.17005,-0.98123,0.35701,0.17267,-0.91797,0.3169,0.12403,-0.94027,0.35011,0.094577,-0.93191,0.23289,0.008576,-0.97244,0.21,-0.031495,-0.97717,0.1988,-0.035554,-0.97937,0.19553,-0.038179,-0.97992,0.12445,0.079836,-0.98898,0.28104,-0.044008,-0.95868,0.3242,0.088565,-0.9418,0.051424,0.23963,-0.96948,0.644,-0.019776,-0.76476,0.92209,0.032716,-0.38557,0.99432,0.085177,0.063631,0.8876,0.10596,0.4482,0.6024,0.11383,0.79,0.2107,0.12064,0.97006,-0.14478,0.13126,0.98071,-0.11683,0.13123,0.98444,-0.16428,0.073794,0.98364,-0.30668,0.06061,0.94986,-0.34684,0.038453,0.9371,-0.40019,0.038392,0.91562,-0.48918,0.054323,0.87048,-0.51555,0.098209,0.85119,-0.59157,0.093051,0.80084,-0.48161,0.17035,0.85964,-0.40013,0.11203,0.90957,-0.33692,0.090365,0.93716,-0.28602,0.066836,0.95587,-0.26374,0.099033,0.95947,-0.3162,0.11765,0.94134,-0.38636,0.16712,0.90704,-0.40736,0.23478,0.88253,-0.20917,0.19111,0.95901,-0.14304,0.15836,0.97696,0.19657,0.15305,0.96844,0.18848,0.17029,0.96719,0.48479,0.13855,0.86358,0.61428,0.13886,0.77676,0.87265,0.096255,0.47871,0.99832,0.05414,0.019684,0.9006,0.01001,-0.43452,0.99817,0.050996,-0.03235,0.9986,0.049074,0.019196,0.88351,0.083926,0.4608,0.92843,0.038697,-0.36943,0.66228,0.046052,-0.74779,0.65288,-0.025849,-0.75698,0.34941,-0.025941,-0.93658,0.31623,0.091067,-0.94427,0.42406,0.11286,-0.89856,0.67953,0.082736,-0.72894,0.88293,0.0553,-0.4662,0.24558,0.15699,-0.95654,0.26408,0.091342,-0.96014,0.21891,-0.02942,-0.97528,0.36402,0.16456,-0.91671,-0.22172,0.26673,-0.9379,-0.18763,0.16706,-0.96789,-0.050111,0.040071,-0.99792,0.13095,-0.014893,-0.99127,-0.057283,0.095492,-0.99377,-0.50114,0.12915,-0.85565,-0.51494,0.10709,-0.85049,-0.58782,0.19251,-0.78573,-0.62886,0.24674,-0.7373,-0.63961,0.30812,-0.70422,-0.50609,0.26194,-0.82171,-0.18873,-0.00235,-0.98199,-0.15662,0.34718,-0.92459,0.067995,-0.00354,-0.99765,0.024415,0.35234,-0.93551,0.081149,-0.20466,-0.97543,0.077364,-0.24531,-0.96634,0.07297,-0.27686,-0.9581,0.27009,-0.29011,-0.91806,0.07947,-0.17502,-0.98132,0.088839,0.05533,-0.99448,0.14835,0.4377,-0.88678,0.2931,0.90054,-0.32105,0.43696,0.85617,0.27567,0.44664,0.78408,-0.43089,0.72811,0.62297,-0.28584,0.9194,0.28791,-0.26783,0.9996,0.015656,0.02234,-0.76461,-0.074953,-0.64009,-0.81448,0.40376,-0.41664,-0.65874,0.74496,0.10523,-0.30674,0.78121,0.54369,-0.28559,0.8302,0.47871,-0.3611,0.93234,-0.018006,-0.49849,0.56319,-0.65899,-0.063173,0.13788,-0.9884,0.16089,-0.31474,-0.93542,0.48134,0.7561,-0.44337,0.64733,-0.053133,-0.76034,0.99979,-0.003052,-0.019105,0.68935,0.55913,0.46055,-0.43324,0.90124,-0.002686,0.37593,0.11942,0.91888,0.41371,-0.11747,0.90277,-0.50105,-0.21101,0.83926,-0.65951,0.001679,0.75167,-0.91018,-0.014588,0.41392,-0.87942,-0.063417,0.47179,-0.44166,-0.56316,0.69839,-0.80621,-0.56719,0.16813,-0.15766,-0.97974,-0.12351,0.33433,-0.72481,0.60234,0.85952,0.071139,0.50609,0.99249,-0.021821,-0.12018,0.65178,-0.035737,-0.75753,0.69756,-0.63378,-0.33421,0.68545,-0.70132,0.19562,0.43583,-0.5436,-0.71728,-0.11634,-0.5006,-0.85781,-0.47026,-0.62551,-0.62252,-0.7788,-0.51646,-0.35591,-0.98376,0.031495,-0.17658,-0.9512,0.21244,-0.22367,-0.84725,0.2942,0.44224,-0.69582,0.18995,0.69259,-0.74953,-0.10187,0.65404,-0.83218,0.14133,0.53615,-0.81552,0.30805,0.48988,-0.81689,0.36735,0.44462,-0.54805,0.55126,0.62908,-0.45836,0.62151,0.63527,-0.2729,0.57415,0.7719,0.054323,0.57726,0.81472,0.15824,0.54259,0.82491,-0.025788,0.57503,0.81768,-0.21198,0.57924,0.78707,-0.1099,0.58834,0.80108,0.21964,0.51561,0.82818,0.51427,0.45235,0.7286,0.48296,0.53288,0.69478,0.54311,0.52266,0.65712,0.24622,0.64138,0.72662,0.20795,0.64806,0.73263,0.005799,0.66439,0.74734,0.10904,0.63002,0.76885,0.40184,0.68581,0.60674,0.08533,0.60711,0.79,0.30119,0.40156,0.86486,-0.035005,0.57808,0.81521,0.051973,0.34986,0.93533,0.2909,0.01587,0.9566,0.11417,-0.00885,0.99341,0.2953,-0.51808,0.80273,-0.071535,-0.45763,0.88623,0.46724,-0.26246,0.84423,0.77184,0.10071,0.62774,0.66949,0.44737,0.59294,0.82897,0.51482,0.21845,0.54131,0.82574,0.15839,0.4872,0.61711,0.61785,0.74279,0.25358,0.61959,0.56447,0.38911,0.72796,0.7318,0.53389,0.42351,0.43522,0.81283,0.3871,0.966,0.18687,0.17856,0.85986,-0.13294,0.49287,-0.95526,-0.20689,-0.21131,-0.95688,0.29014,0.011719,-0.83776,0.25452,0.48305,-0.60552,0.64934,0.46004,-0.35765,0.50267,0.78701,-0.46315,0.067324,0.88369,-0.17179,0.39039,0.90445,-0.018647,0.5764,0.81692,-0.11173,0.62603,0.77172,-0.13285,0.65163,0.74679,-0.21104,0.68084,0.70135,-0.37675,0.62889,0.68007,-0.53386,0.45741,0.71111,-0.48311,0.73864,0.47005,-0.72011,0.68908,-0.081149,-0.59264,0.16599,-0.78817,-0.5219,0.060427,-0.85086,0.16263,0.043703,-0.98569,0.019349,0.02826,-0.99939,-0.20194,0.69317,0.69188,-0.02768,0.6672,0.74435,0.042787,0.6184,0.78466,0.051668,0.61135,0.78967,-0.029298,0.56325,0.82574,-0.023072,0.59825,0.80093,-0.089175,0.62596,0.77471,-0.078677,0.63094,0.77181,-0.074526,0.28175,0.95657,-0.30537,0.011475,0.95215,-0.37034,-0.60149,0.70782,-0.60143,-0.37187,0.70705,-0.90729,-0.32182,0.27055,-0.10157,-0.033082,0.99426,-0.3119,0.3878,-0.86734,-0.5508,-0.76333,0.33747,0.73818,-0.32307,-0.59215,0.31959,-0.32496,-0.89007,0.93994,-0.2674,-0.21201,0.87072,-0.44881,-0.20096,0.8872,-0.35231,-0.29777,0.62313,-0.41145,-0.66512,0.704,-0.26219,-0.66002,0.94263,-0.19785,-0.26878,0.85046,0.009705,-0.52592,0.38276,-0.027833,-0.9234,0.33656,-0.30796,-0.88986,0.40321,-0.407,-0.81961,0.13456,-0.42692,-0.89419,0.12961,-0.34806,-0.92843,-0.065279,-0.38911,-0.91885,-0.50941,-0.49318,-0.70513,0.053774,-0.95471,0.29258,0.42531,-0.8923,0.15119,0.10819,-0.99197,-0.065157,0.56423,-0.82281,0.067782,0.35935,-0.91324,0.19193,0.59947,-0.62914,0.49474,0.7373,-0.57015,0.36238,0.74331,-0.59108,0.31315,0.70919,-0.70092,0.075594,0.81692,-0.45094,0.35948,0.8482,-0.52196,0.089785,0.85489,-0.40129,0.32875,0.8945,-0.4391,0.083895,0.92618,-0.26725,0.266,0.95709,-0.27964,0.075594,0.95373,-0.23194,0.19126,0.944,-0.13684,0.30015,0.90268,-0.16245,0.39845,0.73522,-0.43822,0.51707,0.79299,-0.17353,0.58394,0.74261,-0.10147,0.66195,0.95309,-0.10001,0.28565,0.65453,-0.093051,0.75024,0.74367,-0.27442,0.60958,0.68749,-0.33393,0.6448,-0.00235,-0.91095,0.41243,0.009919,-0.98004,-0.1984,-0.18793,-0.81811,-0.54344,0.63814,-0.75912,0.1283,0.82549,-0.56438,-0.001495,0.90115,-0.38374,0.20158,0.71798,-0.07944,0.69149,0.80471,-0.019288,0.59331,0.65999,-0.087588,0.74612,0.77014,-0.19419,0.60753,0.86596,-0.18745,0.46361,0.8102,-0.35716,0.46474,0.85696,-0.22712,0.4626,0.7908,-0.18003,0.58498,0.93203,0.35868,0.05121,0.78204,0.5848,0.2154,0.10846,0.74926,-0.65331,0.29222,0.36232,-0.88504,0.19523,0.48488,-0.8525,0.38783,-0.078372,-0.91836,0.98941,0.14426,0.014649,0.76147,0.022065,0.64779,0.98596,-0.11152,-0.12409,0.85842,-0.45421,-0.23829,0.39195,-0.52495,-0.75549,0.28544,-0.59734,-0.74944,0.72939,-0.64019,-0.24107,0.9284,-0.35701,0.10276,0.90085,-0.4329,0.032502,0.82586,-0.56166,-0.049654,0.75408,-0.65261,-0.073519,0.64803,-0.70699,0.28315,0.9371,-0.29499,0.18647,0.96921,-0.2454,-0.020081,0.92383,-0.38096,-0.036805,0.88003,-0.45711,-0.12861,0.56825,-0.41246,-0.71197,0.63497,-0.21235,-0.74276,0.9986,0.052614,0.0047,0.92807,0.11216,-0.35508,0.51186,0.081057,-0.85522,0.095523,0.053316,-0.99399,0.10874,-0.078982,-0.99091,0.12409,-0.26252,-0.95688,-0.083956,-0.35102,-0.93259,-0.14197,-0.46281,-0.875,-0.38279,-0.51442,-0.76733,-0.49132,-0.38456,-0.78146,-0.72109,-0.51698,-0.4612,-0.70519,-0.61016,-0.3611,-0.77746,-0.49336,-0.39003,-0.52211,-0.84518,0.11402,-0.24827,-0.96692,0.058321,-0.38966,-0.92047,-0.029115,-0.19971,-0.97049,0.13511,0.080996,-0.97864,0.18891,0.28245,-0.74807,0.60048,0.47609,-0.24827,0.84359,0.23035,-0.30506,0.92401,0.19428,0.008789,0.98089,-0.093387,-0.072878,0.99295,-0.067232,-0.29038,0.95453,-0.38337,-0.050325,0.92221,-0.27192,-0.53685,0.79861,0.045656,-0.89212,0.44945,0.20957,-0.48756,0.84753,0.26771,-0.84277,0.4669,0.42662,-0.39143,0.81533,0.57204,-0.61947,0.53755,0.4677,-0.42601,0.77444,0.68722,-0.13752,0.71331,0.59673,-0.21479,0.77312,0.699,0.060396,0.71255,0.42753,0.25831,0.86627,0.58654,0.39763,0.70556,0.5659,0.087039,0.81982,0.4019,0.36091,0.84152,0.37925,0.48805,0.78607,0.067507,-0.40278,0.91278,0.25376,-0.080905,0.96387,0.35346,-0.22101,0.90893,0.4095,-0.2306,0.88266,0.48308,-0.13395,0.86523,0.40382,-0.00885,0.91476,0.67827,-0.24009,0.69442,0.74737,-0.29975,0.59291,0.77868,-0.34025,0.52712,0.79983,-0.39735,0.44978,0.83254,-0.24897,0.4948,0.84728,-0.18155,0.49907,0.93133,-0.11359,0.34596,0.75454,-0.14307,0.64043,0.80184,-0.027345,0.59688,0.80068,0.10968,0.58892,0.93509,-0.005463,0.35435,0.84018,0.17823,0.51216,0.89618,0.064028,0.43898,0.8634,0.011811,0.50435,0.902,0.003754,0.43165,0.92413,0.016816,0.38163,0.91549,0.043794,0.39988,0.94592,0.046968,0.3209,0.94162,0.11881,0.31501,0.98349,0.15052,0.10028,-0.26194,0.90261,-0.3415,0.20243,0.74679,0.63347,0.76458,-0.013184,0.64437,0.89135,-0.11585,0.43818,0.79849,-0.048372,0.60002,0.006623,0.25837,0.966,0.61458,0.19361,0.7647,0.64913,0.54897,0.52651,0.011963,0.98965,-0.14283,0.29054,-0.51268,-0.80789,0.89956,-0.43529,0.035371,0.84967,-0.4799,0.21839,-0.17844,0.90127,0.39476,-0.54885,0.7134,0.43559,0.99326,-0.10807,0.041566,0.89441,-0.39903,0.20197,0.91842,-0.29328,0.26545,0.88861,0.11518,0.44389,0.8764,0.11209,0.46831,0.75268,0.33024,0.56954,0.71441,0.3878,0.58239,0.46904,0.61431,0.63448,0.29695,0.60024,0.74264,0.18403,0.75387,0.6307,0.18226,0.77844,0.60067,0.48439,0.64895,0.58666,-0.14249,0.74395,0.65285,-0.14084,0.80779,0.57237,-0.45054,0.71361,0.53636,-0.45329,0.68859,0.56597,-0.69945,0.49467,0.51576,-0.7116,0.52651,0.46516,-0.87899,0.22465,0.42052,-0.90161,0.16086,0.40144,-0.96387,-0.074465,0.25572,-0.95639,-0.075533,0.28211,-0.96658,-0.14887,0.20866,-0.95193,-0.18604,0.24329,-0.96582,-0.17664,0.18964,-0.9599,-0.12598,0.2504,-0.9664,-0.20014,0.16117,-0.919,-0.30119,0.25425,-0.9126,-0.34831,0.21403,-0.87567,-0.21976,0.42991,-0.8421,-0.34095,0.41783,-0.93936,-0.30592,-0.15476,-0.81811,-0.57436,0.028016,-0.95105,-0.29493,0.092196,-0.87497,-0.47691,0.083254,-0.88534,-0.36674,0.28568,-0.76403,-0.23338,0.60143,-0.81042,-0.23591,0.53621,-0.88614,-0.19242,0.42152,-0.82757,-0.56072,0.025941,-0.68487,-0.61223,-0.39512,-0.12027,-0.57738,-0.80752,-0.67834,-0.71835,-0.15424,-0.004791,-0.62706,-0.77892,-0.32063,-0.50346,-0.8023,-0.52324,-0.76846,-0.36836,-0.72686,-0.62163,-0.29188,-0.80242,-0.55773,-0.21216,-0.85192,-0.4778,-0.21418,-0.84896,-0.52788,-0.024171,-0.7441,-0.66726,0.032411,-0.57778,-0.789,-0.20884,-0.55473,-0.83032,-0.052797,-0.65679,-0.73443,0.1709,-0.665,-0.71371,0.21989,-0.54732,-0.74654,0.37822,-0.74072,-0.38539,0.55025,-0.57479,-0.35588,0.73684,-0.24039,-0.8016,0.54738,0.036988,-0.86236,0.50493,-0.037141,-0.49727,0.86679,-0.3437,-0.36384,0.86569,-0.56768,-0.10831,0.81607,-0.60875,-0.24574,0.75433,-0.7748,-0.45561,0.43825,-0.76473,-0.6129,0.19877,-0.72683,-0.68322,-0.070193,-0.80499,-0.57125,0.1601,-0.78359,-0.5002,0.36839,-0.63027,-0.35038,0.69277,-0.52226,-0.32597,0.78799,-0.47566,-0.30592,0.8247,-0.51555,-0.35997,0.77755,-0.71172,-0.4575,0.53301,-0.70708,-0.374,0.60008,-0.84716,-0.42094,0.32414,-0.77706,-0.55882,0.28959,-0.88775,-0.45296,0.081698,-0.78665,-0.61123,-0.086856,-0.66964,-0.71477,-0.20161,-0.78375,-0.60537,-0.13861,-0.87704,-0.46742,-0.11072,-0.9064,-0.42238,0.002289,-0.83941,-0.53801,-0.076815,-0.78262,-0.60753,-0.1355,0.22654,-0.95788,-0.1764,-0.72027,-0.58724,0.36921,-0.93783,-0.32951,0.10895,-0.8757,-0.35795,0.32402,-0.67083,-0.33338,0.6624,-0.42225,-0.40968,0.80859,-0.25825,-0.29972,0.91839,-0.41905,-0.14982,0.89551,-0.68322,-0.34587,0.64309,-0.493,-0.48555,0.72189,-0.18067,-0.8887,0.42134,-0.53148,-0.73244,0.42546,-0.51732,-0.52687,0.67434,-0.25974,-0.59157,0.76324,-0.024445,-0.57356,0.81878,-0.34001,0.21216,0.91617,-0.64205,0.3072,0.70238,-0.77358,-0.28709,0.56487,-0.78283,0.25739,0.56645,-0.82446,-0.095584,0.55776,-0.63436,0.1496,0.75838,-0.16562,-0.42665,0.8891,-0.19022,-0.83169,0.52159,-0.51283,-0.43706,0.73888,-0.65911,-0.31022,0.68505,-0.61754,-0.15354,0.77139,-0.64763,0.064119,0.75921,-0.51207,-0.080599,0.85513,-0.46986,-0.20817,0.85781,-0.64065,-0.21332,0.73757,-0.44743,-0.12979,0.88482,-0.48018,-0.081362,0.87338,-0.46394,-0.013672,0.88574,-0.5334,-0.18314,0.82577,-0.53829,-0.072237,0.83962,-0.48882,0.087588,0.86795,-0.54473,0.012085,0.8385,-0.40782,0.11374,0.90591,-0.55715,-0.074587,0.82702,-0.3581,-0.035066,0.93301,-0.50813,0.011505,0.86117,-0.66103,0.066805,0.74734,-0.71566,-0.008515,0.69839,-0.70952,-0.10138,0.69732,-0.80456,-0.036287,0.59273,-0.90729,-0.065157,0.41539,-0.72744,-0.00824,0.68612,-0.88247,-0.19981,0.42576,-0.93945,-0.30512,0.15589,-0.82256,-0.30454,0.48021,-0.94363,-0.004364,0.33094,-0.90695,-0.086428,0.41224,-0.78677,-0.26591,0.55699,-0.6245,-0.60363,0.49556,-0.57588,-0.33802,0.74435,-0.62447,0.059236,0.77877,-0.54277,0.14997,0.82635,-0.35929,-0.088351,0.92901,-0.16688,-0.08768,0.98206,-0.20408,0.17048,0.96399,-0.30812,0.34248,0.88754,-0.19373,0.18708,0.96304,-0.27775,0.24894,0.92782,-0.19898,-0.48955,0.84893,-0.21873,-0.60652,0.76437,-0.063387,-0.71935,0.69173,-0.077303,-0.71264,0.69726,-0.033448,-0.7698,0.63738,-0.012085,-0.83004,0.55751,-0.15189,-0.75396,0.63909,-0.095157,-0.94089,0.32505,-0.33094,-0.80587,0.49092,-0.17899,-0.73275,0.65651,-0.22453,-0.67699,0.70089,-0.16327,-0.43944,0.8833,-0.35069,-0.41469,0.83966,-0.33842,-0.36171,0.86868,-0.46089,-0.29255,0.83783,-0.61571,0.008057,0.7879,-0.67653,-0.27934,0.68136,-0.86718,-0.016968,0.49767,-0.91324,-0.13953,0.38273,-0.79107,-0.40046,0.46239,-0.87616,-0.27561,0.3954,-0.77267,-0.36497,0.51936,-0.88583,-0.30149,0.35264,-0.93097,-0.17185,0.32206,-0.93295,-0.13382,0.33415,-0.92499,-0.034242,0.3784,-0.84719,0.080691,0.5251,-0.60244,0.08771,0.7933,-0.40584,-0.000671,0.91394,-0.26136,-0.078066,0.96207,-0.2628,-0.29914,0.91729,-0.2541,-0.69475,0.67281,-0.17756,-0.60106,0.7792,-0.2063,-0.70968,0.67361,-0.19279,-0.59123,0.78311,-0.16501,-0.28202,0.9451,-0.31449,-0.59032,0.74334,-0.35124,-0.64034,0.68303,-0.12876,-0.62322,0.77133,-0.27183,-0.6263,0.73064,-0.51302,-0.73278,0.447,-0.3683,-0.7593,0.53645,-0.34867,-0.70986,0.61193,-0.63414,-0.64266,0.42991,-0.39021,-0.60503,0.69399,-0.2107,-0.48091,0.85104,-0.58132,-0.18851,0.7915,-0.59313,-0.048311,0.80364,-0.63607,0.007538,0.77157,-0.455,0.44444,0.77163,-0.30747,0.12644,0.94308,-0.13935,-0.099246,0.98523,-0.048463,-0.037233,0.99811,-0.054109,-0.000824,0.9985,-0.40245,0.15513,0.90219,-0.25614,0.22532,0.94,-0.29255,0.3108,0.90429,-0.48198,0.29191,0.82611,-0.4994,0.070528,0.86346,-0.66118,0.058809,0.74789,-0.63076,0.335,0.69991,-0.50371,0.37654,0.77746,-0.21583,0.4236,0.87973,-0.66826,0.24924,0.70092,-0.71841,0.301,0.62709,-0.82806,0.228,0.51213,-0.88962,0.079562,0.44969,-0.67141,-0.13321,0.729,-0.81811,-0.016877,0.57479,-0.95312,0.15958,0.25703,-0.94366,-0.05533,0.32615,-0.72979,-0.050661,0.68178,-0.70876,-0.61351,0.34815,-0.44233,-0.51399,0.73492,-0.03943,-0.95053,0.30802,-0.28086,-0.9187,0.27763,-0.25767,-0.95587,0.141,-0.32722,-0.9415,0.080325,-0.4294,-0.82839,0.3596,-0.73977,-0.46342,0.48778,-0.4467,-0.48454,0.7521,-0.57744,-0.028748,0.81588,-0.044618,-0.44945,0.89218,0.022919,-0.80813,0.58852,0.025056,-0.81686,0.57628,0.50652,-0.73257,0.4547,0.37599,-0.40028,0.83569,0.7055,-0.31547,0.6346,0.39729,0.071017,0.91491,-0.10801,0.071139,0.99158,-0.13459,0.42784,0.89377,-0.67647,0.28031,0.68102,-0.56627,0.46886,0.67782,-0.88183,0.22147,0.41624,-0.94168,0.15424,0.29902,-0.93777,-0.053499,0.34303,-0.62041,-0.71413,0.32414,-0.90213,0.052919,0.42817,-0.67141,0.33519,0.66094,-0.73629,0.081027,0.67177,-0.58751,-0.39576,0.7058,-0.46657,-0.33433,0.81884,-0.50517,0.19553,0.84054,-0.13785,0.49553,0.85757,-0.13999,0.5508,0.82278,0.31422,0.55901,0.7673,0.44523,0.44951,0.77438,0.64663,0.37898,0.66198,0.71862,0.38536,0.57885,0.45711,0.39634,0.79617,0.76949,0.22407,0.59801,0.81283,0.33387,0.47728,0.74789,0.2472,0.61605,0.47356,0.17496,0.86319,0.52565,-0.010651,0.85061,0.67376,0.13584,0.72634,0.83108,0.34226,0.43828,0.84201,0.1287,0.52385,0.67385,-0.58162,0.45561,0.73367,-0.4658,0.49467,0.8514,0.12842,0.50853,0.51051,-0.095462,0.85452,0.57448,0.082827,0.81426,0.30308,-0.00116,0.95294,0.29301,0.15165,0.94397,0.23933,0.36576,0.89938,0.39851,0.44038,0.8045,0.50389,0.42613,0.75131,0.55629,0.21338,0.8031,0.27805,0.27574,0.92013,-0.12705,0.304,0.94415,-0.081057,-0.18067,0.98019,-0.21842,-0.4434,0.86929,-0.19657,-0.12546,0.97241,-0.26731,0.087374,0.95962,-0.40645,0.13587,0.90347,-0.43757,0.12052,0.89105,-0.71249,0.084964,0.69649,-0.43242,0.27821,0.85766,-0.79507,0.16163,0.58458,-0.55306,0.5132,0.65627,-0.90823,-0.037629,0.4167,-0.90896,-0.033937,0.41545,-0.86056,0.006226,0.50929,-0.13831,0.50648,0.85104,-0.12818,0.32072,0.93844,-0.1203,0.21308,0.96957,-0.1113,0.10681,0.98801,-0.094333,-0.064364,0.99344,-0.065798,-0.30107,0.95132,0.12543,-0.40819,0.9042,0.020173,-0.10328,0.99445,0.047884,0.11963,0.99164,0.18277,0.1962,0.96335,0.2075,0.062075,0.97626,0.074892,-0.043641,0.99622,0.026734,-0.2624,0.96457,0.27213,-0.53026,0.80294,0.35163,-0.25056,0.90194,0.50249,-0.28416,0.81652,0.43791,-0.08417,0.89505,0.45149,0.36387,0.81466,0.25291,0.45399,0.85433,0.038301,0.34468,0.93793,0.18806,0.17475,0.96646,0.27854,0.16617,0.94592,0.27146,0.061586,0.96045,0.27912,-0.055422,0.95865,0.32173,-0.12711,0.93823,0.33717,0.006317,0.9414,0.38115,-0.4297,0.81857,0.16718,-0.92938,0.32902,0.41081,-0.88742,0.20893,0.4868,-0.85815,0.163,0.39845,-0.84915,0.34663,0.75564,-0.24162,0.60875,0.45595,-0.27073,0.8478,-0.028748,-0.54833,0.83575,-0.5518,-0.37391,0.74542,-0.79754,-0.40065,0.45097,-0.69872,-0.039674,0.71425,-0.55187,0.031007,0.83334,-0.52318,0.022095,0.85189,-0.40245,-0.5612,0.7232,-0.4398,-0.69954,0.56319,-0.18076,-0.90909,0.37529,-0.7235,-0.044923,0.6888,-0.09415,-0.93594,0.33931,-0.26112,-0.83953,0.47639,-0.040895,-0.90066,0.43254,-0.19199,-0.52989,0.82601,-0.23017,0.032807,0.97256,-0.23338,-0.049989,0.9711,-0.10596,0.049623,0.9931,-0.10291,0.01822,0.99451,-0.022309,-0.58577,0.81014,-0.12351,-0.9067,0.40324,0.049806,-0.95819,0.28175,0.077425,-0.97284,0.21812,0.047914,-0.89941,0.43446,0.2201,-0.87152,0.43815,0.12607,-0.49733,0.85833,0.13382,-0.88275,0.4503,0.35466,-0.48369,0.80013,0.32411,-0.77963,0.53584,0.45009,-0.60845,0.65358,0.55812,-0.18561,0.80871,0.32786,0.10923,0.93838,0.0206,0.058473,0.99805,0.04059,-0.021943,0.99893,0.35728,0.12409,0.92569,0.53603,0.086734,0.83969,0.45726,0.17725,0.87146,0.46962,-0.042238,0.88183,0.43254,-0.34025,0.83493,0.24549,-0.78707,0.56587,0.28108,-0.86178,0.42222,0.21055,-0.90472,0.37028,0.009827,-0.95813,0.28614,0.088321,-0.95422,0.28565,0.044252,-0.98343,-0.17569,0.32627,-0.33305,0.88464,0.4362,-0.19221,0.87906,0.39287,-0.19074,0.89956,0.50035,-0.18335,0.84616,0.38401,-0.089206,0.91897,0.36372,0.020081,0.93127,0.35319,0.10401,0.92975,0.38481,0.021821,0.92273,0.16483,0.018433,0.98615,0.013398,0.25291,0.96738,-0.017792,-0.07239,0.99719,-0.14472,-0.04709,0.98834,-0.053041,0.44023,0.8963,0.081851,0.16636,0.98264,0.19367,0.51091,0.83752,0.45503,0.11933,0.88241,0.41865,0.0553,0.90643,0.65163,-0.511,0.56053,0.35756,-0.52852,0.76992,0.55013,-0.62395,0.55495,0.24094,-0.57378,0.78274,0.12918,-0.44612,0.88556,0.32942,-0.57067,0.75216,0.14768,-0.55635,0.81768,0.12949,-0.25898,0.95715,0.22425,-0.30409,0.92584,0.43214,0.11536,0.89438,0.40239,0.19059,0.89538,0.21821,0.18766,0.95767,0.18824,0.34175,0.92071,0.61385,0.30586,0.72771,0.52776,0.21192,0.8225,0.69195,0.23829,0.68148,0.73617,0.14716,0.66057,0.56938,-0.15177,0.80792,0.33403,-0.21116,0.91858,0.25245,-0.35292,0.90094,0.068941,-0.41566,0.90689,0.13581,-0.56899,0.81103,0.24918,-0.64324,0.72396,0.20618,-0.66744,0.71551,0.094974,-0.60033,0.79406,0.21168,-0.63231,0.7452,0.38142,-0.73293,0.56328,0.18799,-0.69512,0.69384,0.19321,-0.70669,0.68059,0.21531,-0.90905,0.3567,0.16974,-0.72103,0.67174,0.39885,-0.68078,0.61434,0.35505,-0.63781,0.68343,0.12009,-0.45689,0.88134,-0.043367,0.20249,0.9783,0.17533,0.21433,0.96088,-0.042512,-0.089267,0.99509,-0.14667,-0.010285,0.98911,-0.030274,0.1883,0.98163,0.17744,-0.033357,0.98355,0.31367,0.095645,0.94467,0.47194,0.18281,0.86245,0.32606,0.23893,0.91464,0.43211,0.16739,0.88611,0.19178,0.3375,0.92154,0.14994,0.3346,0.93033,0.0318,0.28065,0.95926,0.24546,-0.44749,0.85989,0.17933,-0.56578,0.8048,0.050172,0.37922,0.92392,0.067415,-0.70595,0.70501,0.07831,-0.69671,0.71303,0.067141,-0.82193,0.5656,0.24375,-0.59209,0.76809,0.43278,-0.24894,0.86642,0.74712,-0.24299,0.61864,0.55998,-0.48976,0.6682,0.35273,-0.69051,0.63146,0.059603,-0.76028,0.64681,0.15128,-0.81942,0.55284,0.47563,-0.70412,0.52721,0.62151,-0.47606,0.62215,0.81704,-0.10227,0.5674,0.82781,0.038697,0.55962,0.81884,0.14426,0.55556,0.79605,0.1406,0.58867,0.72283,0.16834,0.67016,0.79583,0.13681,0.58983,0.85525,0.049226,0.51582,0.84002,-0.12479,0.528,0.71099,-0.21305,0.6701,0.69717,-0.11396,0.70776,0.56215,0.028779,0.8265,0.47206,-0.23069,0.85083,0.32347,-0.81478,0.48109,0.54918,0.12095,0.82687,0.56285,0.12384,0.81719,0.55391,-0.051973,0.83093,0.4398,-0.085849,0.89395,0.57854,-0.20548,0.78933,0.63384,-0.2367,0.73632,0.41197,-0.26499,0.87179,0.12507,-0.26048,0.95734,0.53697,-0.2309,0.81137,0.66839,-0.3162,0.67321,0.66106,0.11371,0.74163,0.80526,0.088839,0.5862,0.080305,-0.19658,-0.97719,0.1258,-0.94626,0.29789,0.18979,-0.96854,-0.16092,0.15692,-0.18873,-0.96941,-0.61815,0.38597,0.68471,-0.62542,0.25581,0.73714,-0.52605,0.6444,0.55495,-0.3115,0.70364,0.6386,-0.3527,0.79141,0.49922,-0.1377,0.86328,0.48552,-0.14274,0.71371,0.68572,-0.12705,0.30436,0.94403,0.1012,0.25733,0.961,0.030519,0.73864,0.67336,0.080172,0.83575,0.5432,0.26487,0.72539,0.6353,0.41444,0.41539,0.80972,0.21592,-0.54286,0.81155,-0.57192,-0.60564,0.55321,-0.32554,-0.75991,0.56258,-0.41994,-0.7958,0.43623,-0.26795,-0.64449,0.71609,-0.53768,-0.34831,0.76782,-0.17902,-0.7449,0.64269,-0.090793,-0.8442,0.52824,-0.24256,-0.87277,0.42354,-0.31684,-0.50511,0.80276,-0.4351,0.27332,0.85784,-0.39616,0.27866,0.87484,-0.61162,-0.29719,0.73318,-0.55483,-0.29368,0.77838,-0.51765,-0.28394,0.80706,-0.5826,-0.1905,0.79009,-0.6863,-0.17893,0.70492,-0.82376,-0.26185,0.50282,-0.72085,-0.47813,0.50172,0.10291,-0.90017,0.42314,-0.4854,-0.87414,0.014191,0.45256,-0.75256,-0.47835,-0.77966,-0.43037,0.45482,-0.75854,-0.23774,0.60668,-0.41865,-0.32023,-0.84979,-0.014985,-0.54396,-0.83895,-0.1735,-0.13584,-0.9754,-0.11484,0.45311,-0.884,-0.96939,-0.14884,-0.19523,-0.81103,-0.37739,-0.44694,-0.71306,-0.15033,-0.68477,-0.84207,-0.069063,-0.53493,-0.99356,-0.051881,-0.10056,-0.98068,-0.15024,0.12519,0.13819,0.9436,-0.30082,-0.1243,0.72542,-0.67696,-0.17682,0.31428,-0.93271,-0.98096,-0.057466,-0.18549,-0.89871,-0.30448,-0.31556,-0.8638,-0.14429,0.48268,-0.82073,-0.35707,0.44591,-0.79803,-0.5218,0.30134,-0.85903,-0.17942,0.47941,-0.47008,0.67794,0.56511,-0.25046,0.23206,0.93988,0.29667,0.79998,0.5215,-0.98975,-0.078921,0.11878,-0.088198,0.91052,0.40391,-0.18159,0.96985,-0.16248,-0.83761,0.39674,0.37544,-0.91034,0.41151,0.043458,-0.9762,0.16331,-0.14261,-0.83889,-0.34687,0.41942,-0.86856,-0.40379,0.2873,-0.78057,0.050783,0.62294,-0.33702,-0.005829,-0.94147,-0.17777,-0.085238,-0.98035,-0.32395,0.90432,0.27787,-0.70989,0.63991,0.29414,-0.34135,0.876,0.34065,-0.74792,0.65838,0.084323,-0.24317,0.96969,0.022126,-0.67302,0.71859,-0.17502,-0.40666,0.56142,0.72069,-0.63112,0.7004,0.33326,-0.37126,0.90075,0.22529,-0.28437,0.94717,0.14814,-0.88055,0.46043,-0.11222,-0.31675,0.91144,0.26255,-0.31227,0.92761,0.2049,-0.93234,0.29899,-0.20328,-0.6657,0.62954,-0.40062,-0.17469,0.97107,-0.16269,-0.59355,0.71944,-0.36064,-0.16834,0.9718,-0.16498,-0.63439,0.65456,-0.41118,-0.92883,-0.11841,-0.35099,-0.92721,-0.090365,-0.36345,-0.6812,0.57622,-0.45152,-0.97281,-0.04004,-0.22803,-0.64574,0.65285,-0.39592,-0.95901,-0.125,-0.25416,-0.58303,0.68563,-0.4358,-0.84936,-0.02121,-0.52733,-0.71395,-0.4604,-0.52751,-0.73577,-0.45576,-0.5009,-0.63472,-0.71453,-0.29411,-0.73223,-0.66268,-0.15699,-0.58431,-0.81124,0.021302,-0.75909,-0.65004,0.034455,-0.67583,-0.70293,0.22156,-0.80728,-0.5602,0.18561,-0.8464,-0.38871,0.36396,-0.8558,-0.49123,0.16205,-0.85552,-0.48262,-0.18741,-0.89233,-0.44368,-0.082888,-0.69857,-0.4499,-0.55638,0.22877,-0.90796,-0.35108,0.83178,0.22715,0.50645,0.90539,-0.34349,0.24952,0.7564,0.43638,0.48723,0.86856,0.40043,0.29191,0.74105,0.58635,0.3271,0.84225,0.49739,0.20774,0.82266,0.47472,0.31282,0.76772,0.54506,0.33689,0.73916,0.61165,0.28193,0.64849,0.66506,0.37031,0.74612,0.63411,0.20283,0.66054,0.73284,0.16309,0.78927,0.57402,0.21793,0.3918,0.80746,0.44099,0.19413,0.98068,-0.023133,-0.56249,0.79043,0.24244,0.11338,0.75674,0.64379,-0.618,0.73992,0.26557,0.021455,0.86026,0.50935,-0.66164,0.72765,0.18091,-0.53777,0.73507,0.41279,0.23994,0.66649,0.7058,-0.41838,0.76016,0.49706,-0.92279,0.38154,0.053377,-0.83642,0.50786,0.20603,-0.98505,-0.01941,-0.17112,-0.91977,-0.25712,-0.29643,-0.77316,-0.48231,-0.41176,-0.79205,-0.4572,-0.40443,-0.4207,-0.74779,-0.51357,-0.23197,-0.82937,-0.50823,0.41496,-0.85235,-0.31822,0.46971,-0.82757,-0.30732,0.90329,-0.40422,0.14365,0.90439,-0.41734,0.088595,0.87289,-0.48363,0.06415,0.84259,0.15507,0.5157,0.8984,0.02884,0.43818,0.82019,-0.56783,-0.06943,0.9147,0.03003,0.40294,0.97903,-0.004669,0.20356,0.55178,0.57134,0.6075,0.71145,0.43498,0.5519,0.84927,0.11777,0.51463,0.99918,0.031739,0.025025,0.91989,0.27598,-0.27854,0.95926,-0.079348,0.27107,0.95871,0.23115,0.16553,0.6932,0.55519,-0.45958,0.283,0.55455,-0.7825,0.50279,0.34361,-0.79315,-0.19575,0.11472,-0.97391,0.68114,-0.16752,-0.71267,0.74999,-0.50426,-0.42802,0.19651,-0.61388,-0.76452,0.23521,-0.82256,-0.51768,0.28196,-0.88571,-0.36869,-0.4492,-0.72423,-0.52309,-0.84182,-0.34016,-0.41902,-0.97473,0.20026,-0.098849,-0.76013,0.59359,0.2642,-0.21277,0.79733,0.56478,-0.66121,0.69655,0.27848,-0.14521,0.80392,0.57668,0.074068,0.84872,0.52358,-0.59005,0.78454,0.1905,0.036714,0.58589,-0.80953,0.28239,0.88778,-0.36335,0.72326,-0.63488,0.27158,-0.62431,-0.77464,-0.1009,0.67901,-0.24412,0.69231,0.77413,-0.15491,0.61373,0.91165,0.40684,-0.057863,0.53917,0.62624,-0.5631,-0.082369,0.55507,-0.82769,-0.52623,0.22697,-0.81945,-0.8193,-0.088412,-0.56649,-0.79904,-0.060183,-0.59822,-0.58956,-0.15314,-0.79305,-0.046632,-0.25993,-0.96448,-0.58223,-0.23734,-0.77758,-0.52535,-0.56685,-0.63454,-0.84371,-0.17225,-0.50835,-0.94177,0.296,-0.1594,-0.88177,0.36363,-0.30036,-0.77419,-0.081851,-0.62758,-0.7589,0.075045,-0.64684,0.47111,0.72161,-0.50725,-0.029054,-0.99646,0.078677,0.35246,-0.93268,-0.076357,0.098178,-0.61852,0.77956,-0.55452,-0.70324,0.44487,-0.5258,-0.66524,0.53002,0.29542,-0.5164,0.80373,0.13758,-0.57946,0.80328,-0.455,-0.64742,0.61138,-0.91421,-0.39967,0.066744,-0.91632,-0.39979,-0.022523,-0.88626,-0.45125,-0.10447,-0.87805,0.042238,-0.4767,-0.9031,-0.096957,-0.41832,-0.93808,-0.1088,-0.32881,-0.81045,0.17664,-0.55849,-0.67061,0.24604,-0.69979,-0.20634,0.58138,-0.78701,0.56548,0.63186,-0.53002,0.94635,0.27601,0.16791,0.72402,-0.20627,0.65819,0.40715,0.63802,0.65352,0.33946,0.63546,0.69347,0.77523,0.27198,0.57005,0.69973,0.46843,0.53938,0.72042,0.30665,0.622,0.83725,0.33457,0.43251,0.93957,0.31162,0.14164,0.86801,0.42198,0.26167,0.93896,0.26353,0.22108,0.91412,0.34352,0.21522,0.85037,0.42671,0.30784,0.85968,0.38423,0.33659,0.92938,0.25483,0.26692,0.90759,0.16263,0.38704,0.71383,0.35832,0.60164,-0.32966,0.79913,0.50267,-0.96551,0.18842,-0.17957,-0.87988,-0.47371,-0.037324,-0.75631,-0.44056,-0.48357,-0.82189,-0.56035,0.10227,-0.004364,-0.8526,-0.52248,0.89911,0.009064,0.43757,0.86868,-0.49318,0.046175,0.87289,0.25221,0.41762,0.75457,0.23881,0.61119,-0.1604,0.65294,0.7402,-0.99155,0.11976,-0.049379,-0.74416,-0.66674,0.040437,-0.75771,-0.41154,-0.50642,-0.12064,-0.95532,-0.26978,-0.00882,-0.77133,-0.63634,0.85766,-0.51058,-0.060701,0.92196,-0.38096,0.069491,0.94122,0.24522,0.23231,0.97171,0.18705,0.14408,0.96735,0.16477,0.19245,0.94409,0.27799,0.17713,0.99603,0.03415,-0.082003,0.95032,-0.29603,0.096042,0.93173,-0.29682,0.20908,0.97076,-0.12143,0.20695,0.6552,-0.66939,-0.35011,0.55205,-0.7737,-0.31077,0.52623,-0.78878,-0.31755,0.71227,-0.51973,-0.47169,0.7387,-0.54521,-0.39625,0.99972,-0.021363,0.007935,0.8692,-0.48714,-0.084506,0.92074,-0.3874,-0.046175,-0.02356,-0.99921,0.03177,-0.75329,-0.60976,0.24638,-0.8019,-0.59691,-0.024628,0.043794,-0.96884,-0.24366,-0.074892,-0.83654,-0.54271,-0.78423,-0.54726,-0.29231,-0.73724,-0.42494,-0.52522,-0.093844,-0.7225,-0.68493,-0.29429,-0.79495,-0.5305,-0.71224,-0.46931,-0.52193,-0.74584,-0.44688,-0.49394,-0.85012,-0.26652,-0.45409,-0.82461,-0.29682,-0.48149,-0.9473,0.10443,-0.3028,-0.88031,-0.027314,-0.47359,-0.73971,0.64937,-0.17627,-0.94101,0.14817,-0.30415,-0.95892,0.067568,-0.2754,-0.86761,-0.28144,-0.40986,-0.69286,-0.48579,-0.53282,-0.24546,-0.8215,-0.51463,-0.03943,-0.78329,-0.62038,0.030793,0.97949,-0.19907,-0.08005,0.98206,-0.1706,-0.18741,0.95621,-0.22477,-0.11359,0.98865,-0.098148,0.38859,0.87494,0.28886,0.2342,0.91583,0.32615,0.39637,0.90069,0.17777,0.6737,0.71825,0.17374,0.73714,0.49663,0.4582,0.56694,0.60146,0.56282,0.32499,0.57598,0.75005,0.57433,0.28477,0.76748,0.77645,0.31803,0.54396,0.2971,0.95157,0.078768,0.42183,0.90323,0.078738,0.61345,0.69863,0.36811,0.46202,0.79583,0.39134,-0.065493,0.83523,0.54595,-0.25538,0.92883,0.26835,0.27348,0.94495,0.17957,0.18592,0.88098,0.43507,0.032105,0.81713,0.57549,-0.37642,0.78356,0.49425,-0.70846,0.55721,0.43309,-0.8551,0.32044,0.40751,-0.82571,0.30668,0.4734,-0.65502,0.74499,0.12607,-0.63958,0.73504,0.22498,-0.99078,0.11148,-0.076632,-0.93414,-0.33494,-0.12308,-0.89718,-0.37605,-0.23145,-0.77639,-0.42979,-0.46092,-0.42146,-0.9039,-0.072665,-0.17667,-0.62358,-0.7615,0.37678,-0.80993,-0.44942,0.1771,-0.966,0.1883,0.70354,-0.61675,0.35295,0.84426,-0.27607,-0.45933,0.99231,0.068636,0.10273,0.68981,-0.12149,0.71371,0.83126,0.26103,0.49074,0.27052,-0.4637,0.84365,-0.32655,-0.40953,0.85183,0.36552,-0.25916,-0.89395,-0.74908,-0.66127,0.03943,-0.61785,-0.73684,0.27433,-0.9295,-0.25806,-0.26341,-0.72512,-0.68719,0.043733,-0.10813,-0.85879,0.50072,-0.00766,-0.43016,0.90271,-0.44871,0.17219,0.87689,-0.9685,-0.20005,0.14802,-0.99097,-0.13389,-0.004242,-0.90594,-0.41435,-0.086825,-0.91745,-0.38569,0.097415,-0.94427,0.30979,-0.11121,-0.96292,0.25919,-0.074557,-0.80111,-0.55724,-0.2183,-0.026429,-0.91531,-0.40184,0.88699,-0.43904,0.14301,0.6603,0.42482,0.61925,0.76986,0.29276,0.56706,0.81686,0.50478,0.27912,0.76345,0.59426,0.25291,0.24513,0.92245,0.29826,0.37596,0.62075,0.68798,-0.82098,0.5504,0.15165,-0.96445,0.063997,-0.25633,-0.77288,-0.57701,-0.26399,-0.002533,-0.98663,-0.16285,-0.67055,-0.52947,-0.51961,0.1503,-0.95541,-0.25407,0.87585,-0.35658,0.32508,0.89782,-0.076968,0.43349,0.58907,0.54955,0.5924,0.71749,0.55876,0.41581,0.02707,0.94876,0.3148,-0.26725,0.81793,0.50945,-0.13364,0.863,0.48717,-0.22474,0.78665,0.575,-0.97211,0.23194,-0.033937,-0.78668,-0.30073,-0.53911,-0.14634,-0.88464,-0.4427,0.81631,-0.53087,0.22752,0.71868,-0.53288,0.44664,0.54918,0.22785,0.80401,0.39332,0.07416,0.91638,-0.19541,0.63042,0.75121,0.38582,0.067934,0.92004,-0.35084,0.76238,0.54372,-0.72991,0.58003,-0.36155,0.69784,0.39906,0.59474,-0.39289,-0.12134,-0.91153,0.33232,-0.72683,-0.60103,0.75942,-0.62786,0.17029,0.61144,-0.7242,0.3188,0.065737,-0.21003,0.97546,-0.42949,0.60323,0.67202,-0.59218,0.49596,0.63506,-0.80825,0.51387,-0.28742,-0.35862,0.75774,-0.54512,-0.14325,0.14878,-0.97842,-0.60384,-0.29341,-0.74111,0.18052,-0.75857,-0.62606,0.45909,-0.29646,-0.83743,0.42854,-0.83041,0.35597,-0.13651,-0.25959,0.95599,-0.46593,0.489,0.73739,-0.61928,0.68053,-0.39155,-0.15,0.14615,-0.97781,0.053865,0.30402,-0.95111,0.37816,-0.5587,-0.73809,0.57735,-0.75741,0.30488,0.065554,-0.28922,0.95498,0.078402,-0.20432,0.97574,-0.36546,-0.059358,0.92889,-0.73431,0.55635,0.38887,-0.79278,0.50404,-0.34263,-0.30879,0.009705,-0.95108,0.1876,-0.70797,-0.68084,0.43629,-0.8995,-0.02234,0.094119,-0.63109,0.76995,-0.29777,-0.47008,0.83084,-0.13303,-0.13938,0.98123,-0.35078,-0.01355,0.93634,-0.95425,0.18772,0.2327,-0.51079,-0.14377,0.84756,-0.98581,-0.089084,-0.14225,-0.77554,0.067476,0.62764,-0.93701,0.1933,-0.29084,-0.6751,-0.37574,-0.63482,-0.41087,-0.086795,-0.90753,-0.35548,-0.86203,-0.36119,-0.12073,-0.81146,-0.57176,0.001953,-0.99472,-0.10257,0.14148,-0.62792,0.76528,0.12442,-0.16678,0.97809,0.33711,-0.72091,0.60549,0.49281,-0.60482,0.62554,-0.043428,-0.29685,0.95392,-0.43052,0.23575,0.87121,-0.28037,0.35636,0.89126,-0.49574,-0.00586,0.8684,-0.80575,-0.094943,0.58458,-0.58586,-0.20569,0.78384,-0.51512,-0.58998,0.62172,-0.1348,-0.76806,0.62596,-0.13575,-0.92737,0.34858,0.094455,-0.7423,0.66335,0.033998,-0.93863,0.34318,-0.042238,-0.72784,0.68444,0.22633,-0.58892,0.77584,-0.12653,-0.35655,0.92566,-0.27442,-0.45549,0.84686,0.089236,-0.41527,0.90527,0.22828,-0.70824,-0.66799,-0.7673,0.54729,-0.33415,-0.37242,0.87036,0.32209,-0.95517,0.27448,-0.11072,-0.58541,-0.45879,-0.66842,0.20441,-0.69411,-0.69021,0.75741,-0.62023,0.20399,0.35829,-0.66073,-0.65954,0.66329,-0.46181,0.58886,0.4489,0.31581,0.8359,0.28578,0.24085,0.92752,-0.40724,0.64385,0.64775,-0.10279,0.69015,0.7163,-0.85708,0.41887,-0.29984,-0.68664,0.49718,-0.53035,-0.50578,0.77755,0.37358,0.065584,0.84191,0.53557,0.59166,0.46522,0.65838,-0.74422,0.34947,-0.56917,-0.18094,-0.057405,-0.98181,-0.46678,-0.34291,-0.81515,0.29399,-0.845,-0.44664,0.78771,-0.30027,0.53786,0.4185,0.20353,0.8851,0.25071,0.12201,0.96033,-0.56676,0.71273,0.41322,-0.62862,0.49022,-0.60369,-0.41331,-0.28437,-0.86502,0.34599,-0.58855,-0.73064,0.69332,-0.67812,0.24381,0.39964,-0.65313,-0.64318,-0.083834,0.040407,-0.99564,-0.68056,0.54015,-0.49498,-0.35905,-0.21314,-0.90863,0.3072,-0.75234,-0.58272,0.52861,-0.61617,0.58382,0.73217,-0.55382,0.39643,0.29463,0.059755,0.95373,0.073183,0.079073,0.99417,-0.39119,0.67715,0.62322,-0.54469,0.52458,0.65429,-0.78494,0.451,-0.42476,-0.89337,0.31446,-0.32087,-0.46876,-0.31718,-0.8244,0.17225,-0.86221,-0.4763,0.55376,-0.81692,0.16098,0.30378,-0.34513,0.88803,0.25507,0.13102,0.95798,-0.20927,0.21509,0.95389,-0.72603,0.59832,0.33891,-0.9877,0.015625,-0.1554,-0.71731,-0.59667,-0.35975,-0.11261,-0.95285,-0.28175,0.10257,-0.97293,0.20707,0.34098,-0.34025,0.87631,-0.11136,-0.20948,0.97144,0.29002,-0.1012,0.95163,-0.19373,0.25181,0.94818,0.031343,0.17728,0.98364,-0.92309,0.15687,0.35105,-0.97079,-0.22135,0.09241,-0.53142,-0.41078,-0.74081,-0.30699,-0.95169,-0.002228,0.19587,-0.77334,0.60295,0.023011,-0.77578,0.63054,0.28279,-0.47829,0.83142,-0.35756,0.22388,0.90664,-0.66695,0.18098,0.72277,-0.6885,0.02295,0.72484,-0.3105,0.4688,0.8269,-0.34663,0.084811,0.93414,-0.16755,0.60979,0.77462,0.29606,0.1767,0.93866,0.13782,0.027619,0.99005,0.055696,-0.046663,0.99735,0.52333,-0.45012,0.7235,0.67586,-0.3101,0.66857,0.1583,-0.47441,0.86593,-0.61354,-0.47102,0.63375,-0.55513,-0.62813,0.54518,-0.87075,-0.44456,0.21009,-0.80618,-0.53731,0.2476,-0.72036,-0.5284,0.44923,0.89438,0.083926,0.43934,0.82531,0.12439,0.55074,0.65661,0.51839,0.54781,-0.005005,0.88595,0.46373,0.060976,0.91668,0.39485,0.19019,0.56551,0.80248,0.13193,0.53075,0.83715,-0.40748,0.5548,0.72533,-0.024598,0.71966,0.69387,0.29774,-0.16843,0.93963,0.050264,-0.89352,0.44615,0.36573,0.023743,0.93039,-0.087344,-0.70247,0.70629,-0.83474,-0.27162,0.47893,-0.72292,-0.40458,0.56005,-0.6798,0.58385,0.4438,-0.67003,-0.70895,0.21998,0.6003,-0.38337,0.70186,-0.058168,0.73156,0.67928,0.7578,0.24018,0.60662,-0.089846,0.69247,0.71581,-0.897,0.05298,0.43877,-0.82592,-0.50877,-0.24277,-0.083834,-0.9844,-0.15455,0.85784,-0.5136,0.016938,0.68355,0.11856,0.72018,-0.21833,0.75707,0.61574,-0.76656,0.64205,-0.01062,-0.78524,-0.61916,0.000671,-0.26713,0.33537,-0.90341,0.24366,-0.60152,-0.76077,0.8327,-0.52788,-0.16709,0.20255,-0.46596,-0.86129,-0.73428,-0.22221,-0.64144,0.082247,-0.81368,-0.57543,0.72747,-0.66421,0.172,0.89319,-0.34339,0.29023,0.56954,-0.026246,0.82153,-0.20142,0.47398,0.85717,0.14597,0.54295,0.82696,-0.90823,0.39592,0.13538,-0.73458,0.65773,-0.16657,-0.76476,-0.29707,-0.5717,0.069735,-0.49025,-0.86877,0.69234,-0.71331,-0.10868,0.30061,-0.36613,-0.88064,-0.20463,0.38383,-0.90042,-0.79632,0.55461,-0.24131,-0.40867,0.60122,0.68664,-0.65667,0.72701,-0.20042,-0.35536,0.24461,-0.90213,0.22721,-0.45497,-0.86102,0.51396,-0.80276,0.30232,0.7073,-0.69924,0.10367,0.35749,-0.31526,0.87906,0.14911,-0.34016,0.92846,-0.29435,0.37761,0.87789,0.3278,-0.27253,0.90457,-0.1868,-0.22089,0.95721,-0.67934,0.44591,0.58278,-0.79577,0.56593,-0.21543,-0.75265,0.63301,-0.18101,-0.45943,0.1337,-0.87808,-0.4127,0.25568,0.87423,0.48698,-0.11454,0.86584,0.61327,0.04059,0.78878,0.14124,-0.48631,-0.86227,0.47987,-0.84713,-0.22813,0.26603,-0.72195,0.63872,-0.13392,-0.61635,0.77596,0.050478,-0.28367,0.95758,-0.17911,-0.18485,0.96628,-0.9082,0.027833,0.41755,-0.96655,0.19752,-0.16352,-0.70763,-0.2299,-0.66808,-0.97894,-0.20304,0.019959,-0.58882,-0.11209,-0.80041,-0.45824,-0.7264,-0.51213,-0.17289,-0.68236,-0.71023,0.005066,-0.974,-0.22648,0.11039,-0.97064,0.2136,0.31727,-0.28181,0.90548,0.47414,-0.75771,0.44835,0.64513,-0.61306,0.45595,0.142,-0.43358,0.88983,-0.25898,0.05649,0.9642,-0.095523,0.20734,0.97357,-0.34047,-0.32017,0.88403,-0.64711,-0.1348,0.75033,-0.32514,-0.20484,0.92319,0.051088,-0.50087,0.86398,0.22391,-0.81454,0.53511,0.3003,-0.71773,0.62819,0.10788,-0.81594,0.56792,0.2758,-0.53252,0.80019,0.9975,-0.064486,-0.028687,0.72472,0.33204,0.60372,0.21897,0.89914,0.37886,-0.66613,0.22059,0.71242,-0.81402,-0.56987,-0.11213,0.2306,-0.92755,0.29402,0.5511,0.81985,0.15525,0.54366,0.12449,0.83001,0.48305,0.073244,0.87249,0.82351,-0.40803,0.39405,0.34758,-0.078555,0.93432,0.055025,0.65841,0.75063,0.41633,-0.30928,-0.85498,0.45552,-0.79476,0.40101,0.26557,-0.05121,0.96271,-0.54759,0.32359,0.7716,-0.072848,0.5548,0.82876,-0.88064,0.46159,-0.10651,-0.52184,0.72497,-0.44954,0.78637,0.61461,0.061892,-0.56963,-0.15168,-0.80773,0.14454,-0.76632,-0.62596,0.80844,-0.48793,0.32911,0.45314,-0.089175,0.88693,0.37071,-0.06354,0.92654,-0.43742,0.69872,0.56606,-0.68728,0.57085,-0.44914,-0.6382,-0.15363,-0.75436,0.10855,-0.37715,-0.91977,0.70547,-0.7087,0.004425,0.33592,-0.43406,-0.83587,-0.20371,0.30854,-0.92911,-0.58495,0.74245,-0.32637,-0.2313,0.2263,-0.94617,0.33973,-0.50185,-0.7954,0.5255,-0.76543,0.37135,0.66594,-0.7134,0.21802,0.25733,-0.28175,0.92431,0.0936,-0.1901,0.97726,-0.35874,0.49117,0.79373,0.16135,-0.2551,0.95334,-0.3155,-0.12522,0.94061,-0.71319,0.51982,0.4702,-0.78845,0.53081,-0.31077,-0.63094,0.71239,-0.3072,-0.45637,0.42125,0.78372,-0.33219,0.10224,-0.93762,0.16413,-0.6064,-0.77801,0.45872,-0.88113,-0.11469,0.15735,-0.68978,0.70669,-0.26441,-0.55092,0.79153,-0.079409,-0.20484,0.97555,-0.30494,-0.0918,0.94791,-0.94858,0.11795,0.29374,-0.94623,0.15857,-0.2819,-0.98068,-0.15403,-0.12049,-0.68203,-0.3101,-0.66228,-0.46223,-0.031129,-0.8862,-0.41429,-0.81787,-0.39927,-0.18912,-0.73476,-0.65139,-0.017335,-0.98535,-0.16947,0.19095,-0.68633,0.70174,-0.46184,-0.22446,0.85806,-0.7405,-0.029817,0.67138,-0.77514,-0.20026,0.59917,0.11625,-0.7825,0.61165,-0.14704,-0.94732,0.28443,0.039186,-0.95871,0.28163,0.29041,-0.63082,0.7195,0.38462,-0.7438,0.54659,0.56819,-0.60152,0.56148,0.20057,-0.2212,0.95437,0.012665,-0.37074,0.92865,-0.36546,0.15479,0.91784,-0.18973,0.30409,0.93353,-0.44237,-0.11322,0.88962,-0.53957,-0.31932,0.77902,-0.49321,-0.65569,0.57161,-0.083132,-0.4384,0.89489,0.001801,-0.77834,0.6278,0.15629,-0.4857,0.86001,-0.29157,0.056734,0.95483,-0.78552,-0.60613,-0.12449,-0.40825,-0.56621,-0.71603,-0.81399,-0.072359,-0.57631,-0.12961,0.33586,0.93292,-0.44411,-0.79534,-0.41249,0.049593,-0.53612,0.84265,-0.097995,-0.17887,0.97897,-0.35206,-0.39561,0.84823,-0.44377,0.008057,0.89608,-0.87637,-0.32453,-0.35581,-0.7185,-0.66582,0.20103,0.42851,-0.2808,0.85876,-0.29765,-0.21299,0.9306,-0.42973,-0.75164,0.50035,0.27891,-0.58379,0.76247,0.3957,-0.65905,0.63955,-0.10157,-0.10669,0.98907,-0.67986,-0.28931,0.67382,-0.89978,-0.090548,-0.4268,-0.81875,-0.49019,-0.29884,-0.37959,-0.71966,0.58138,-0.062075,-0.96997,0.23508,-0.014008,-0.85372,0.52049,-0.10794,-0.60176,0.79131,-0.42543,-0.39799,0.81274,-0.37657,-0.85061,-0.36689,-0.22504,-0.013245,0.97424,-0.84857,-0.077181,-0.52336,-0.78158,-0.60518,-0.15116,-0.13053,-0.80816,0.5743,-0.23386,-0.53337,0.81289,-0.46114,-0.52821,-0.71294,-0.7897,-0.24827,0.56096,-0.13462,-0.29862,0.94482,-0.030488,-0.26029,0.96503,-0.811,-0.16852,0.5602,-0.99994,0.002441,0.009033,-0.7376,-0.053163,0.67312,-0.99731,0.044618,0.057619,-0.8207,-0.05707,0.56847,-0.99927,-0.023103,-0.029908,-0.79257,-0.031983,0.60894,-0.99753,-0.009949,0.06946,-0.86316,0.059114,0.50142,-0.9776,0.082858,-0.19337,-0.96969,0.24342,-0.020112,-0.82208,0.17444,0.54195,-0.96429,0.26276,0.032929,-0.76553,0.16211,0.62261,-0.81137,0.22135,0.54097,-0.99683,-0.064699,0.045961,-0.98444,0.10483,0.1409,-0.89273,-0.44896,-0.037965,-0.69158,-0.61772,-0.37428,0.75204,-0.58931,-0.29508,0.42427,-0.58696,-0.68951,-0.66356,-0.74059,-0.10569,0.77459,-0.52025,-0.3596,0.67391,-0.71853,0.17176,-0.022884,-0.99974,0.001915,-0.022885,-0.99974,0.001912,0.67333,0.19785,0.71233,0.42753,-0.60967,0.66741,0.97061,0.16569,0.17441,0.97089,0.085177,-0.22382,0.92907,0.077486,-0.36158,0.91421,-0.11493,-0.3885,0.46809,-0.063417,-0.88138,0.9725,0.1359,-0.189,0.4395,0.37864,-0.81451,-0.39708,0.47319,-0.78637,-0.020753,0.43269,-0.90127,0.45561,0.28394,-0.84365,0.012818,0.14856,-0.9888,0.64312,-0.001831,-0.76574,-0.045198,-0.10492,-0.99344,0.7597,-0.17121,-0.62731,0.013611,-0.085879,-0.99618,0.70449,-0.13215,-0.69726,0.98669,-0.14988,-0.062624,0.80044,0.045656,-0.59764,0.98743,-0.066591,0.14332,0.99881,0.03766,0.030183,0.6433,0.22712,-0.73113,-0.019684,0.28748,-0.95758,0.00998,0.087069,-0.99612,-0.79275,0.089297,-0.60295,-0.67235,0.23139,-0.70312,-0.61858,0.22352,-0.75323,0.016968,0.35716,-0.93387,-0.64318,0.08179,-0.76131,0.079165,0.2194,-0.97241,-0.67357,-0.028382,-0.73855,0.10459,0.022645,-0.99423,0.081149,-0.12894,-0.98831,0.73449,-0.036531,-0.6776,0.70013,-0.27531,-0.65877,0.003601,-0.24891,-0.9685,0.61989,-0.34815,-0.70321,0.035157,-0.24165,-0.96969,0.71606,-0.25883,-0.64824,0.040712,-0.13288,-0.99026,0.73415,-0.14744,-0.66274,0.039521,-0.054262,-0.99774,0.7401,-0.06122,-0.66967,0.15146,-0.022828,-0.98819,0.84957,0.013398,-0.52727,0.99863,-0.022004,0.047304,0.98816,0.052065,0.14414,0.71648,0.033418,0.69677,0.59746,0.079836,0.79788,-0.039125,0.071993,0.99661,-0.18024,0.093326,0.97916,-0.7817,0.08182,0.61821,-0.87454,0.10343,0.47377,-0.99759,0.058748,-0.036348,-0.99945,0.016205,-0.028138,-0.69851,-0.068941,-0.71224,-0.70113,-0.13956,-0.69918,-0.69326,0.004303,-0.72066,-0.54347,0.01886,-0.83917,-0.98798,0.078372,-0.13318,-0.76183,-0.11463,-0.63753,-0.67309,-0.11951,-0.72979,-0.98791,-0.045351,-0.14805,-0.99597,-0.087771,0.017243,-0.97861,-0.067598,-0.19422,-0.70336,-0.040956,-0.70965,-0.82934,-0.040681,-0.55721,-0.57811,0.078127,-0.81219,-0.60289,0.378,-0.70254,-0.75396,-0.10498,-0.64843,-0.6509,-0.32981,-0.68374,0.16547,-0.301,-0.93915,0.56063,-0.24195,-0.79192,0.86059,-0.13904,0.48991,0.18984,-0.01023,0.98176,0.19009,-0.01059,0.98171,-0.64687,-0.22651,-0.72814,-0.6216,-0.15091,0.76864,-0.66771,-0.68401,-0.29368,0.43837,-0.40736,-0.80117,0.44411,-0.85696,0.26148,0.18945,-0.012767,0.98181,0.18977,-0.012976,0.98174,-0.27186,-0.47435,0.83727,-0.022885,-0.99974,0.001919,-0.022884,-0.99974,0.001919,-0.73852,-0.155,0.65612,-0.004089,-0.1521,0.98834,0.70901,-0.15424,0.68807,0.73327,-0.17744,0.65633,0.62429,-0.17551,0.76119,0.007935,-0.1655,0.98618,-0.084689,-0.098575,0.99148,-0.072237,-0.036256,0.9967,-0.16788,0.065828,0.98358,0.17222,0.15427,0.9729,0.096438,0.27451,0.95673,0.11307,0.5771,0.80877,-0.66866,0.49654,0.55345,-0.64214,0.62011,0.45064,-0.95904,0.1699,0.22651,-0.83145,0.12565,0.54119,-0.57836,-0.70788,0.40541,-0.26618,0.10703,0.95795,-0.23301,-0.53349,0.81304,-0.022882,-0.99974,0.001906,-0.21351,0.63082,0.74593,-0.65731,0.60207,0.45323,0.11393,0.91385,0.38969,0.13291,0.74435,0.65441,0.85296,0.5045,0.13373,0.81774,0.52925,0.22605,0.92074,0.32209,0.22007,0.86081,0.20695,0.46489,0.90875,0.035096,0.41585,0.95892,0.069918,-0.27485,0.99313,-0.098605,-0.062807,0.97458,-0.17377,0.14118,0.76553,-0.1561,0.62413,0.66912,-0.10917,0.73507,0.99057,0.096072,-0.097629,0.74352,0.3075,-0.59377,0.63036,0.31742,-0.7084,0.99115,-0.13056,0.02295,0.96655,-0.25544,-0.021912,0.96597,-0.25834,-0.010437,0.98276,-0.17521,0.058992,0.9928,-0.10575,0.05591,0.72097,-0.045503,0.69143,-0.034333,0.029511,0.99896,-0.78234,0.046571,0.62108,-0.99915,0.015259,-0.038118,-0.9997,0.010437,-0.022217,-0.8121,-0.048708,0.58147,-0.70318,-0.097507,0.70428,-0.004517,-0.13083,0.99136,-0.007752,-0.082308,0.99655,0.037416,-0.056154,0.99771,-0.70608,0.028291,0.70754,-0.78317,0.051912,0.61962,-0.024873,0.003052,0.99966,0.71126,-0.08829,0.69735,0.76025,-0.16724,0.6277,0.70345,-0.1966,0.68294,0.71563,-0.2172,0.66381,0.63362,-0.13745,0.76131,0.76873,-0.061342,0.63662,0.81512,0.55358,0.17063,0.60674,0.63085,0.4836,-0.58147,-0.077731,0.80981,-0.19138,-0.27418,0.94241,-0.10163,-0.094821,0.99026,-0.57793,-0.14646,0.80279,-0.84283,-0.2718,0.46446,-0.78976,-0.42332,0.44389,-0.55696,-0.32035,0.76623,-0.80166,-0.56676,0.18992,-0.47374,-0.60494,0.63997,-0.18964,-0.42125,0.88687,0.033662,-0.56444,0.82476,0.065462,-0.51097,0.85708,0.45793,-0.83673,0.30021,-0.42872,-0.81307,-0.39378,-0.84484,-0.50926,0.16382,-0.59725,-0.73147,-0.32893,-0.91867,-0.082675,0.38621,-0.5685,0.1915,0.80007,-0.082064,0.1713,0.98178,-0.23124,-0.081149,0.96948,-0.27558,-0.16587,0.94684,-0.22819,-0.41771,0.87945,0.4543,-0.75396,0.47441,-0.85934,-0.07062,0.50645,-0.90899,0.19269,0.36952,-0.79302,-0.2656,0.54817,-0.83154,-0.16202,0.53127,-0.63686,-0.043245,0.76974,-0.96054,-0.15543,-0.2306,-0.75951,-0.22153,-0.61156,-0.32957,-0.56743,-0.75457,-0.72097,-0.11032,-0.68407,-0.078219,-0.29054,-0.95364,-0.62731,0.14188,-0.76571,-0.057527,0.33219,-0.94144,0.57134,0.11908,-0.81201,0.519,-0.39759,-0.75665,0.9183,-0.32173,-0.23063,0.93173,0.25568,-0.25782,0.53041,0.34303,-0.7752,-0.14307,0.12211,-0.98215,-0.74297,0.064791,-0.66616,-0.11435,-0.41279,-0.90359,0.52226,-0.43199,-0.73525,0.54778,-0.58797,-0.59514,0.91189,-0.39326,-0.11737,0.89502,-0.44533,0.023896,0.61428,-0.76281,-0.20182,0.78585,-0.60253,0.13907,0.67623,-0.074862,0.73284,0.83685,-0.081179,0.54134,0.15885,0.52492,0.83618,0.12461,0.38179,0.9158,-0.54512,0.46519,0.69741,-0.52846,0.61763,0.58242,-0.87072,0.24451,0.42662,-0.87909,0.36952,0.301,-0.8619,0.092959,0.4984,-0.93902,0.26548,0.21836,-0.80099,0.14683,0.58034,-0.93301,0.35432,-0.062441,-0.87182,0.39244,0.29307,-0.85394,0.43281,-0.28883,-0.85992,0.28983,-0.42012,-0.88278,0.29649,-0.36439,-0.84304,-0.035585,-0.53664,-0.9002,0.032411,-0.43425,-0.9404,-0.09067,-0.32774,-0.30366,-0.24854,-0.91977,-0.17701,-0.24094,-0.95422,0.70788,-0.27866,-0.64901,0.85656,-0.29209,-0.42537,0.93127,0.008728,0.36415,0.7615,-0.37095,0.53148,0.79202,-0.32151,0.51894,0.59465,-0.69152,0.41005,0.68493,-0.52812,0.50191,0.41063,0.1156,0.90442,-0.68389,0.14277,0.71545,-0.81643,-0.008393,-0.57735,-0.9176,-0.15543,-0.36583,-0.94543,-0.017731,0.32524,-0.88018,-0.31358,-0.35624,-0.36284,-0.288,-0.88623,-0.076876,-0.24409,-0.96667,-0.74096,0.058504,-0.66897,-0.64098,-0.043184,-0.76632,-0.68291,0.23292,-0.69234,-0.7553,0.061861,-0.65243,-0.8768,-0.17423,-0.44813,-0.23295,-0.31461,-0.92016,-0.875,-0.35432,-0.32981,-0.16276,-0.61049,-0.77508,0.65252,-0.74538,-0.1363,0.88144,-0.17191,-0.43983,0.81411,-0.27061,0.51375,0.91934,-0.041017,0.39131,0.84658,-0.38243,-0.3701,0.74407,-0.55446,0.37269,0.71075,-0.5045,-0.49016,0.55458,-0.73223,0.39525,0.742,-0.52943,0.41124,0.79263,-0.30461,-0.52812,0.040193,0.064486,-0.9971,0.23368,0.030091,-0.97183,0.90634,-0.17121,-0.38624,0.21793,0.004028,-0.97595,0.89917,-0.11701,-0.42164,0.27366,-0.3014,-0.91336,0.84674,-0.37886,-0.37342,0.76037,-0.47182,-0.4463,0.93481,-0.3246,0.14405,0.93725,-0.34541,0.046663,0.67357,-0.39717,-0.62331,0.72222,-0.51698,-0.45943,0.89581,-0.41157,0.16764,0.81912,-0.51421,-0.25419,0.88479,-0.41191,0.21775,0.83642,-0.49974,-0.22498,0.89703,-0.32698,0.29725,0.92111,-0.37104,-0.1178,0.91662,-0.15238,0.36952,0.93091,-0.10376,0.35017,0.98114,-0.19092,0.029054,0.8956,-0.13346,0.42433,0.96371,-0.26325,0.043825,0.94296,-0.28718,0.16819,0.83331,-0.21513,-0.5092,0.9584,-0.22864,0.17081,0.93194,-0.13367,-0.33705,0.32029,0.026551,-0.94693,0.63256,0.015381,-0.77435,0.97952,-0.043245,-0.19648,0.71367,0.08243,-0.69558,-0.005341,0.087924,-0.99609,-0.19095,0.097415,-0.97674,-0.4948,0.10965,-0.86203,0.17609,0.051607,-0.983,0.034455,-0.10965,-0.99335,0.82928,-0.26899,-0.48982,0.58821,-0.3647,-0.72176,0.4261,-0.46919,-0.77346,0.32301,-0.51268,-0.79546,0.19025,-0.4608,-0.86685,0.14313,-0.42155,-0.89541,0.024079,-0.25245,-0.96728,0.12857,-0.33509,-0.93335,-0.48891,-0.029145,-0.87182,-0.59972,0.098148,-0.79412,-0.472,0.099979,-0.87588,-0.64492,0.22993,-0.72881,-0.59181,0.26588,-0.76092,-0.066012,0.099216,-0.99286,0.00412,-0.046754,-0.99887,-0.66842,0.22889,-0.70766,-0.68816,0.28764,-0.66607,-0.69991,0.33824,-0.62902,-0.81384,0.21461,-0.53996,-0.80062,0.25352,-0.54283,-0.79366,0.22431,-0.56548,-0.7712,0.39412,-0.49986,-0.81289,0.32154,-0.48558,-0.82449,0.18201,-0.53578,-0.90399,0.25034,-0.34654,-0.86642,0.3509,-0.35514,-0.9353,0.34367,-0.084109,-0.63405,0.6295,0.44905,0.0665,0.61034,0.7893,0.094943,0.45579,0.88498,-0.23951,0.40144,0.884,-0.82873,0.54338,0.13376,-0.7691,0.46596,0.43742,-0.93759,0.26292,-0.22745,-0.89074,0.25117,-0.37877,-0.6057,-0.042085,-0.79455,-0.71929,0.041597,-0.69344,-0.55983,-0.15641,-0.81368,-0.51189,-0.13373,-0.84857,-0.45564,-0.20472,-0.86627,-0.32884,-0.24982,-0.91073,-0.14237,-0.21897,-0.96527,-0.76571,0.16523,-0.62157,-0.84246,0.12595,-0.52379,-0.87417,0.066622,-0.48097,-0.92648,0.15393,-0.34339,-0.96606,0.16593,-0.19788,-0.94907,0.29875,-0.099979,-0.64327,0.46703,0.60665,-0.076571,0.37303,0.92465,0.62761,-0.003632,0.7785,0.78704,0.20182,0.5829,0.76913,0.30302,0.56264,0.98965,-0.13431,0.049928,0.95554,-0.14686,0.25559,0.87652,-0.2204,0.4279,0.68587,-0.035554,0.72683,0.89596,-0.2559,0.3629,0.76174,-0.087344,0.64193,0.89666,-0.28391,0.33961,0.8468,-0.30885,0.433,0.4283,0.066805,0.90112,0.72118,-0.19315,0.66524,0.21769,0.13202,0.96704,-0.29676,0.32902,0.89645,-0.15427,0.30549,0.9396,-0.83691,0.33299,0.43437,-0.86779,0.35285,0.34983,0.075594,0.33653,0.93863,-0.88965,0.36018,0.28068,-0.49516,0.36906,0.78649,0.10663,0.18903,0.97613,0.60433,-0.041231,0.79565,0.61031,0.076662,0.78841,0.60027,0.19831,0.77477,0.54918,-0.013367,0.83557,0.82583,-0.27287,0.49345,0.69979,-0.23826,0.67339,0.94726,-0.11823,0.29774,0.99994,0.004761,0.006684,0.92258,-0.073183,0.3788,0.62819,-0.097629,0.77187,0.68068,-0.1446,0.71813,0.006806,-0.13886,0.99026,-0.093356,-0.095798,0.991,-0.66723,-0.058565,0.74252,-0.78356,-0.04004,0.61998,-0.99197,0.041932,0.11905,-0.99817,0.048891,0.035127,-0.62874,-0.094119,0.77184,-0.98172,0.039125,0.18613,-0.9198,0.14756,0.36357,-0.46715,0.043794,0.88308,-0.15494,0.38179,0.91116,-0.73791,0.47408,0.4803,-0.94458,0.27561,-0.17826,-0.62081,0.5273,0.58007,-0.91101,0.40138,-0.094485,-0.91922,0.37614,0.11618,-0.54665,0.38429,0.74395,0.016968,0.29176,0.95633,0.034913,0.4229,0.90548,0.18439,-0.15067,0.97122,0.071871,-0.20826,0.9754,-0.71157,0.13889,-0.68871,-0.94458,0.08124,-0.31803,-0.83178,0.10111,-0.54579,-0.62993,0.10846,-0.76901,-0.044374,0.10462,-0.9935,-0.80883,0.11808,-0.57604,0.96469,-0.21293,0.15482,0.94174,-0.12381,0.31266,0.86895,-0.2895,0.40132,0.84304,-0.46974,0.26182,0.90646,-0.40696,-0.11252,0.74432,-0.66146,0.091586,0.4962,-0.86547,0.068606,0.3361,-0.92041,-0.19962,-0.18943,-0.86218,-0.46983,-0.86383,-0.12024,-0.48918,-0.93027,0.22083,0.29295,-0.9989,0.035524,-0.029847,-0.99249,0.034181,0.11719,-0.58214,0.057466,0.81103,-0.58532,-0.009827,0.81072,0.17902,0.003021,0.98382,-0.30046,-0.27369,0.91366,-0.47328,-0.60122,0.64382,0.47935,-0.17881,0.85919,0.79806,-0.25523,0.54582,0.85376,-0.15821,0.49599,0.79324,-0.60353,0.080477,0.92541,0.029847,0.37776,0.98532,-0.037477,-0.16645,0.83923,-0.026612,0.54311,0.71865,-0.027863,0.69478,0.6578,-0.021271,0.75286,0.02765,0.29499,0.95508,-0.48265,0.37605,0.79095,-0.86975,0.11292,0.48033,-0.74123,-0.24277,0.62575,-0.049165,-0.061251,0.99689,-0.86911,0.25501,0.42378,-0.92813,0.13852,-0.34547,-0.95126,-0.045534,-0.30491,-0.24284,-0.22861,-0.94272,-0.49312,-0.13031,-0.8601,0.7864,-0.29548,-0.54241,0.84256,-0.31251,-0.43861,0.91696,-0.040468,0.39686,0.87481,-0.23719,0.42238,0.63418,-0.43892,0.63649,0.70141,-0.39686,0.592,0.56044,-0.6578,0.50316,0.27775,-0.86728,0.4131,0.28986,-0.94195,0.16935,0.16242,-0.9696,-0.18284,0.61684,-0.78265,0.083071,0.25932,0.11078,0.95938,-0.73757,0.06241,0.67235,-0.81796,0.15854,0.55297,-0.92111,-0.09241,-0.37816,-0.13453,-0.39299,-0.90963,0.9049,-0.15253,-0.39726,0.82098,-0.32176,0.4716,0.26328,0.048219,0.9635,-0.78182,-0.001373,0.62346,-0.86917,-0.41691,-0.26582,-0.22135,-0.55794,-0.79977,0.69353,0.090243,-0.71471,0.77273,0.62297,0.12149,0.82629,0.31196,0.46895,0.22947,0.06473,0.97113,-0.80157,-0.20029,0.56334,-0.78906,-0.58638,-0.18308,-0.7893,-0.58422,-0.18882,-0.70159,0.000793,0.71255,-0.6664,-0.19034,0.72085,-0.55156,-0.83398,-0.014374,-0.007416,-0.58895,-0.8081,0.12159,-0.72411,-0.67885,-0.41777,-0.89431,0.1601,-0.46391,-0.88498,-0.039277,-0.61947,-0.29811,0.72619,-0.50954,-0.23942,0.82644,0.053896,0.62358,0.77987,0.02591,0.82513,0.56432,0.14454,0.46135,0.87533,0.16736,0.4583,0.87286,0.089663,0.60387,0.79199,0.89007,0.34059,0.30284,0.79803,0.08121,-0.59706,-0.007019,-0.42055,-0.90722,0.79272,0.073977,-0.60503,0.57106,0.82043,0.027528,0.42091,0.90494,-0.062044,0.57152,0.4911,-0.65737,0.69863,0.24015,-0.67394,0.60854,0.79138,0.057955,0.73843,0.65569,0.15732,0.83346,0.070376,-0.54802,0.91195,0.11005,0.39518,0.19492,0.44401,0.87454,-0.33308,-0.039399,0.94205,-0.43565,-0.77871,0.45137,-0.54244,-0.83999,-0.011689,-0.13312,-0.9671,0.21671,-0.5081,-0.83493,0.21131,-0.4752,-0.75576,0.45051,0.079562,-0.19547,0.97745,-0.27668,-0.79797,0.53539,-0.56111,-0.55104,0.6176,-0.71017,-0.4644,0.5291,-0.58559,-0.8095,-0.041688,-0.38115,-0.71548,0.58547,-0.42219,-0.90439,0.0618,-0.060121,-0.85681,-0.51207,0.006897,-0.95798,-0.28666,-0.33351,-0.93594,0.11283,0.13486,-0.98709,-0.086215,-0.16172,-0.96597,0.20173,0.16392,-0.92508,0.34254,-0.02295,-0.60945,0.79247,-0.16437,-0.79681,0.58141,0.51094,-0.10584,0.85305,-0.16672,-0.53178,0.83029,0.40764,0.18332,0.89453,0.80822,0.54521,0.22245,0.42161,-0.88699,-0.18821,0.36842,-0.86032,-0.35221,-0.21833,-0.9183,-0.33018,-0.20435,-0.76745,-0.60765,0.71065,-0.57454,-0.40602,0.9324,-0.35688,-0.056581,0.94925,-0.12989,-0.28633,0.42601,-0.49275,-0.75872,-0.15516,-0.9509,-0.26768,0.032929,-0.98889,-0.14484,-0.13443,-0.96515,-0.22437,0.067202,-0.61516,-0.78548,-0.36277,-0.92459,-0.11612,0.72741,-0.59288,0.34547,0.63805,-0.51485,0.57253,0.9028,-0.078829,0.42271,0.85662,-0.2035,0.47404,0.11383,-0.19968,0.9732,-0.6801,-0.033937,0.73229,-0.79128,-0.55705,-0.25202,-0.6281,-0.32759,0.70577,-0.10614,0.77645,0.62114,-0.25507,0.77251,0.58147,-0.030824,0.96765,-0.25037,0.39497,-0.83041,0.39289,0.3766,0.45741,-0.80557,0.50581,0.46925,-0.72381,0.07947,-0.4055,-0.91061,-0.039796,-0.69042,-0.72228,0.92096,-0.22276,-0.31962,0.86694,0.3795,0.32304,0.30259,0.055757,0.95148,-0.68401,-0.3437,0.64339,-0.6718,-0.73986,-0.035524,-0.59227,-0.78454,-0.18345,0.76339,-0.52016,-0.38292,0.87701,-0.17905,-0.44578,-0.80221,0.041108,0.5956,-0.77291,-0.20969,0.5988,-0.69906,-0.70733,-0.10468,-0.16822,-0.3538,-0.92004,-0.25428,-0.009278,-0.96707,0.26383,0.45775,-0.84899,0.041078,-0.73601,-0.67568,0.95379,-0.28117,-0.10581,0.87377,0.44835,0.18833,-0.32008,0.86596,-0.38417,-0.22135,-0.95111,0.21534,0.14014,-0.36943,0.91861,0.38752,0.13962,0.91119,-0.52236,0.36854,0.76894,-0.66045,0.012513,0.75075,-0.49147,-0.32643,0.80737,-0.1511,0.76412,0.62706,0.5631,0.005921,0.82635,-0.51576,-0.48659,0.7051,-0.49791,-0.86435,0.070589,-0.28889,-0.83636,-0.46584,-0.5262,-0.8461,0.084719,-0.23905,-0.94345,0.22962,0.045808,-0.65941,-0.75036,-0.63942,-0.71252,-0.28886,0.31794,-0.84286,-0.43413,-0.52586,0.33726,-0.78082,0.25147,0.29392,-0.92212,0.21012,-0.75417,-0.62212,0.32514,0.33521,-0.88424,0.14017,0.94272,-0.30262,-0.008698,0.94015,-0.34056,-0.93652,0.15479,-0.31452,0.37751,-0.8377,0.39457,0.073977,-0.082675,0.99381,-0.34562,-0.21076,0.91436,0.17014,-0.1604,0.97226,-0.28309,0.83416,0.47325,-0.11649,0.81475,0.56795,-0.10846,-0.28263,0.95306,0.31892,-0.83932,0.44023,0.1829,-0.93982,0.28852,0.047121,-0.93603,0.34864,0.27988,-0.64507,0.71099,0.58318,-0.70403,0.40519,0.20585,-0.8106,0.54817,-0.009247,0.15519,0.98782,0.24564,-0.64727,0.72155,-0.040864,0.83657,0.54628,0.58058,0.80203,-0.14008,0.661,0.34019,-0.66881,0.85604,0.35386,-0.37675,0.4185,0.86898,-0.26392,0.69506,0.48412,0.53148,0.35807,0.7561,0.54775,0.45802,0.24641,0.85409,0.44136,-0.54503,0.71282,0.44859,-0.19794,0.87152,0.08594,-0.4969,0.86352,-0.12449,-0.54177,0.83123,0.060183,-0.93408,0.35191,0.28156,-0.87726,0.38871,0.33549,-0.53008,0.77871,0.38649,-0.83093,0.40016,0.56002,-0.82562,-0.068422,0.37577,-0.88842,-0.26359,0.16132,-0.9379,-0.30708,0.45912,-0.88821,0.015564,0.29307,-0.93445,0.20219,0.43672,-0.8995,-0.010498,0.81002,-0.21406,-0.54588,0.75292,-0.58803,-0.29545,0.44206,-0.44014,-0.78155,0.62551,-0.77966,0.029054,-0.16257,-0.59941,-0.78372,-0.35804,-0.93295,0.037446,0.44426,-0.68136,-0.58168,-0.36924,-0.5938,-0.71484,0.46065,-0.8052,0.37333,-0.89001,0.069979,0.45048,-0.76321,-0.20524,0.61266,-0.23038,-0.39314,0.89013,-0.65883,0.66991,0.34217,-0.82482,0.36201,-0.43422,-0.33982,0.51787,-0.78503,0.26606,-0.74618,-0.61022,0.36164,0.42885,-0.82781,0.010956,0.98688,-0.16105,-0.29658,0.70595,0.64312,-0.31806,-0.41557,0.85211,0.066775,-0.94437,0.322,0.10837,-0.98578,0.12827,0.044923,-0.97607,0.21268,0.15113,-0.74889,0.64519,0.51643,-0.76602,0.38273,0.45796,-0.88659,-0.064394,0.26121,-0.96149,0.08533,0.43855,-0.89392,-0.092563,0.79461,-0.54631,-0.26475,0.41572,-0.83981,-0.34907,0.34199,-0.92828,-0.14591,0.56807,-0.81576,-0.10859,0.87069,-0.48091,-0.10276,0.95425,0.2598,-0.1478,0.65917,0.73727,0.14789,0.33732,0.94067,-0.036439,0.8019,0.42637,-0.41844,0.53414,0.44746,-0.71725,0.5659,-0.31846,-0.76046,0.89099,-0.13447,-0.43361,0.61577,-0.7879,0.000183,0.30268,-0.63619,-0.70965,0.1659,0.97891,-0.11893,-0.066713,0.70727,0.70376,-0.17634,-0.006714,0.98428,0.11893,-0.75362,0.64641,0.10968,-0.89111,0.44032,-0.067751,-0.62429,0.77822,-0.27918,-0.65865,0.69869,-0.00235,-0.98126,0.19257,0.29173,0.11194,0.94989,0.31001,-0.65712,0.68706,0.3235,0.62477,0.71059,0.58992,0.40962,0.69579,0.28358,-0.3314,0.89984,0.20023,-0.65136,0.73183,0.21799,-0.93439,0.28172,0.32453,-0.88962,0.32127,0.73614,-0.52138,0.43153,0.70843,-0.70208,0.071902,0.45454,-0.30525,0.83676,0.20447,-0.87338,-0.442,0.77541,-0.62215,-0.10773,-0.27848,-0.76189,0.58476,-0.84457,-0.53017,-0.074587,-0.94437,0.053529,0.3245,-0.89639,0.21625,0.38685,-0.5587,0.20423,0.8038,-0.57286,-0.07178,0.81649,0.32386,-0.02823,0.94565,0.005097,0.20084,0.97958,-0.086245,0.24601,0.96539,-0.5522,0.2819,0.78457,-0.61776,0.27552,0.73647,0.45045,0.005219,0.89276,-0.69015,0.11734,0.71407,-0.95566,0.10477,0.27512,-0.92691,-0.083834,-0.36576,-0.90558,-0.28462,-0.31446,0.061495,-0.29524,-0.95343,0.89151,0.11402,-0.43834,0.92709,0.075137,0.3672,0.16672,0.02707,0.98563,-0.62896,0.048952,0.77587,-0.76543,-0.19337,0.61376,-0.89718,-0.38328,-0.21934,-0.28513,-0.47743,-0.83108,-0.87667,-0.31944,-0.35963,-0.38469,-0.2909,-0.87597,0.7911,-0.12601,-0.59853,0.81463,0.12925,-0.56536,0.92285,0.17447,0.3433,0.81295,0.53835,0.22196,0.37162,0.3708,0.8511,0.23597,0.41405,0.87912,0.15674,0.18415,0.97031,-0.93878,-0.086398,0.33344,-0.82556,-0.51177,-0.23771,0.085177,-0.36509,-0.92706,0.79614,0.27827,-0.53731,0.89712,0.31901,0.30555,0.25129,0.54164,0.80215,-0.60863,-0.029878,0.79287,-0.66341,-0.30671,0.68246,0.16886,0.45567,0.87396,0.68398,0.71584,0.14029,0.77468,0.17295,-0.6082,-0.14795,-0.61391,-0.77535,0.82717,0.024903,-0.56136,0.88144,0.36079,0.3047,0.20707,0.30302,0.9302,-0.78311,-0.13303,0.60747,-0.77551,-0.62459,-0.091647,-0.79122,-0.52794,-0.30848,-0.10782,-0.36781,-0.92361,-0.83959,-0.48543,-0.24369,-0.4937,-0.72268,-0.48372,0.26716,-0.4329,-0.8609,0.85507,-0.1655,-0.49135,0.91299,0.19901,0.35612,0.24274,0.11264,0.9635,-0.44243,-0.093936,0.89184,-0.77792,-0.58672,0.22489,-0.54262,-0.83853,-0.049196,-0.8356,-0.549,-0.018525,-0.80184,-0.55473,0.2219,-0.12592,-0.44362,0.88729,-0.64763,-0.70324,0.29319,-0.86502,-0.42701,-0.26338,-0.82131,-0.36979,0.43434,-0.91012,-0.19541,0.36534,-0.76907,-0.61238,-0.18296,-0.35783,-0.59398,-0.72048,-0.36143,-0.77218,-0.52254,-0.70684,-0.69363,-0.13874,0.81429,-0.3806,0.43822,0.9263,0.061739,0.37165,0.68938,-0.71465,-0.11814,0.30854,-0.52263,0.79473,0.33476,-0.21558,0.91729,0.84402,-0.45723,-0.28022,0.44813,-0.72695,-0.52025,-0.50246,-0.69506,-0.51418,-0.36351,-0.83944,-0.40391,0.012177,-0.83508,-0.54997,0.035707,-0.918,-0.39494,-0.69335,-0.6158,-0.37416,-0.44105,-0.41569,-0.79537,-0.4723,-0.59795,0.64757,-0.36808,-0.7083,0.60231,-0.71172,-0.59694,0.37022,0.26798,-0.87091,-0.41188,0.4319,-0.65017,-0.62508,-0.81371,0.17075,-0.55556,-0.7889,0.12885,-0.60085,-0.845,0.33305,-0.41838,-0.85708,0.45833,-0.23521,-0.77566,-0.42067,0.47044,-0.071078,-0.99536,0.064455,0.57509,-0.80413,-0.15033,-0.052797,-0.77764,-0.62645,-0.5349,-0.047548,0.84356,-0.55501,-0.71252,0.42924,0.76543,-0.4272,0.48122,0.72863,0.25452,0.63582,0.9939,0.091586,0.061068,0.13971,-0.67489,0.72454,0.59502,-0.18363,0.7824,0.55675,-0.72503,0.40532,0.55034,-0.46947,0.69042,0.80343,-0.46318,0.37404,0.85678,0.50694,0.094333,0.56365,0.80151,0.19953,0.91583,0.1569,-0.36961,0.84661,-0.5034,-0.17255,0.72207,-0.68981,0.052248,0.33576,-0.94119,-0.037202,0.7532,0.64171,-0.14435,0.010804,-0.77944,0.62636,0.48509,-0.79086,0.37306,0.90436,0.23481,0.35633,0.50951,0.7481,0.42509,0.43446,-0.58144,0.68783,-0.86035,-0.46837,0.20093,-0.57137,-0.81918,-0.049684,-0.27708,-0.90127,-0.33296,-0.27491,-0.95572,0.1048,0.45537,-0.80755,0.37474,0.91821,-0.38136,0.10697,-0.54582,-0.61489,-0.56914,-0.54488,-0.75674,0.36113,0.67751,-0.25169,0.69106,0.65126,-0.41713,0.63387,0.63677,-0.48268,0.60122,-0.093142,-0.66753,0.7387,0.96002,-0.042848,0.2765,0.99783,-0.01413,0.063997,0.80294,0.48973,-0.3397,0.7625,0.50581,-0.40333,0.21934,0.66741,-0.7116,0.23002,0.49587,-0.83737,0.91629,0.29646,-0.26923,0.94247,-0.031343,0.33274,0.55495,-0.3567,0.75149,-0.24457,-0.55968,0.79177,-0.77987,-0.43739,0.44771,-0.81777,-0.38588,0.42695,-0.9747,0.073305,-0.21113,-0.98248,-0.089267,-0.16352,-0.88214,-0.37712,0.28205,-0.15738,-0.50514,0.84854,-0.79019,-0.42131,0.44502,-0.96103,-0.18436,-0.20582,-0.89325,-0.26206,0.36525,-0.16471,-0.45106,0.87713,-0.048891,-0.3011,0.95233,-0.38176,-0.20722,0.90069,-0.97903,-0.043733,0.19883,-0.93826,0.047426,0.3426,-0.32606,-0.22233,0.91882,-0.95676,0.23072,0.17704,-0.31797,0.023347,0.94778,-0.87579,0.36326,0.31779,-0.31095,0.2349,0.9209,-0.88174,0.42091,0.21293,-0.20103,0.66436,0.71984,-0.83636,0.50063,0.22321,-0.89749,0.29691,-0.32603,-0.98321,0.18186,0.013123,-0.66222,-0.15393,-0.7333,-0.7018,-0.6339,-0.32493,0.69936,-0.62905,-0.33931,0.4525,-0.87371,0.17841,0.69906,-0.21604,0.6816,0.88446,-0.063387,0.46223,0.78604,-0.34434,-0.51335,0.91968,-0.097537,0.38032,0.89947,-0.42274,-0.11048,0.96237,-0.17463,0.20817,0.88421,0.22181,-0.41099,0.91171,0.12677,0.39073,0.54784,0.7803,-0.30165,-0.24738,0.50316,-0.828,0.067843,0.33537,-0.93963,0.80514,0.080447,-0.58757,0.80612,0.18964,-0.5605,-0.35285,0.33348,-0.8742,-0.22352,0.19511,-0.95496,0.75066,-0.4359,-0.49641,0.4373,-0.63887,0.63292,-0.40758,-0.57442,0.70987,-0.40737,-0.57419,0.71018,-0.94131,-0.3184,0.11191,-0.63445,-0.22059,-0.74078,-0.44804,-0.79559,-0.4077,0.072323,-0.80057,-0.59485,0.072323,-0.80057,-0.59485,0.097903,-0.90344,0.41737,-0.40716,-0.57637,0.70853,-0.40687,-0.57627,0.70878,-0.7937,0.223,-0.5659,-0.82727,0.36284,-0.42888,-0.23154,-0.03534,-0.97217,-0.90609,0.30897,-0.28892,-0.86523,0.23127,-0.44481,-0.9364,-0.010132,-0.35072,-0.55489,0.13154,-0.82144,-0.92212,-0.076235,-0.37925,-0.62206,0.33024,-0.70989,-0.48677,0.19504,-0.85144,0.2447,0.33482,-0.90994,0.30424,0.30888,-0.90109,0.86517,0.22568,-0.44777,0.96753,-0.04825,0.24805,0.65661,-0.31535,0.68511,0.60772,-0.31245,0.73009,0.7084,-0.18403,0.68139,0.65007,-0.091647,0.7543,0.56926,-0.21781,0.79275,0.64266,-0.19334,0.74133,0.49925,0.000916,0.86642,0.51347,0.22297,0.82861,0.5537,0.29878,0.77724,0.070925,0.26783,0.96084,-0.69137,0.4843,0.53612,-0.82537,-0.012421,0.56441,-0.59883,-0.75716,0.2609,0.016999,-0.8363,0.54799,0.048891,-0.3152,0.94775,0.92984,0.15363,0.33427,0.76843,0.55104,-0.32536,0.99136,0.07889,0.10462,0.76586,0.33097,-0.55126,0.24268,0.46312,-0.85241,0.94559,0.15357,-0.28678,0.94482,-0.085116,0.31623,-0.4174,0.3072,-0.85519,-0.2425,0.59334,-0.76754,0.23325,0.75573,-0.61187,-0.25437,0.77096,-0.58382,-0.46654,0.54051,-0.7001,-0.60051,0.53353,-0.59554,-0.9473,0.15406,-0.2808,-0.85903,-0.38969,0.33192,-0.21708,-0.61891,0.75484,0.54564,-0.39119,0.74108,-0.2693,-0.45915,0.84652,-0.28217,-0.36137,0.88867,-0.85458,-0.34895,0.38456,-0.962,-0.095584,-0.25572,-0.86383,-0.33937,0.37229,-0.29112,-0.22321,0.93027,-0.86511,-0.26643,0.42494,-0.90695,-0.3028,-0.29273,-0.54268,0.095614,-0.83447,-0.46736,0.5847,-0.66305,0.17103,0.70888,-0.68422,0.80456,0.37461,-0.46074,0.15339,0.60704,-0.77969,0.18082,0.19837,-0.96329,0.86108,0.090091,-0.50041,0.21369,-0.13861,-0.96698,0.85751,-0.13242,-0.49709,0.98254,-0.098758,0.15745,0.96106,-0.013459,0.27598,0.91424,-0.05118,-0.4019,0.96777,-0.002167,0.25169,0.87414,-0.066927,-0.48097,0.96521,-0.002472,0.26139,0.87435,0.004791,-0.48524,0.97302,0.031159,0.22849,0.85449,0.080782,-0.51311,0.24686,-0.007691,-0.96899,0.2479,-0.11826,-0.96152,0.27787,-0.12632,-0.95224,-0.47352,-0.29542,-0.82974,-0.91922,-0.25928,-0.29621,-0.90194,-0.22037,0.37132,-0.33082,-0.15027,0.93164,-0.88037,-0.1619,0.44572,-0.95798,-0.15668,-0.24021,-0.49315,-0.15799,-0.85546,-0.3791,-0.24311,-0.89282,-0.51106,-0.047548,-0.85821,-0.96548,-0.089938,-0.24436,-0.88821,-0.11527,0.44469,-0.26286,-0.12189,0.95709,0.47258,-0.059542,0.87924,0.61675,-0.13569,0.77535,0.48906,-0.26441,0.8312,0.95978,-0.1157,0.25568,0.57173,-0.042879,0.81927,0.57064,-0.048341,0.81976,0.59581,-0.023316,0.80276,0.77798,0.032228,0.6274,0.99243,0.11225,0.049623,0.67858,0.13166,-0.72259,0.22013,0.057466,-0.97375,-0.54238,0.021729,-0.83984,-0.97629,-0.023072,-0.21509,-0.8721,-0.0365,0.48793,-0.25398,-0.095798,0.96243,-0.21958,-0.053713,0.97409,-0.72701,0.028779,0.686,-0.99713,0.071688,-0.023133,-0.74499,0.084994,-0.66161,0.021302,0.11133,-0.99353,0.006104,-0.003388,0.99997,-0.22114,0.8175,-0.53175,-0.1099,0.49879,-0.85971,-0.40458,0.75256,-0.51955,-0.004669,0.55541,-0.83154,0.068361,0.93701,-0.34251,-0.34568,0.9245,-0.16056,-0.52385,0.84011,-0.14042,-0.39332,0.89297,0.21879,-0.39207,0.91702,0.072878,-0.62282,0.67617,-0.39348,-0.56853,0.4358,-0.69768,-0.3527,0.4004,-0.8457,-0.35276,0.11518,-0.92859,0.01352,0.16199,-0.98669,0.20005,0.21155,-0.95666,0.36393,0.68185,-0.63451,0.60576,0.39235,-0.69213,0.55476,0.73681,-0.38639,0.5378,0.8395,-0.077151,0.85666,0.4727,-0.20661,0.90765,0.38084,0.1763,0.51015,0.78878,0.34285,0.18393,0.96451,0.18934,0.062349,0.99725,-0.039521,-0.30787,0.94989,-0.053591,-0.75359,0.62053,-0.2168,-0.82455,0.4427,-0.35228,-0.56108,0.80807,0.17942,-0.51247,0.85092,-0.11521,-0.55766,0.82925,0.036103,-0.75689,0.63653,-0.14802,-0.87143,0.48027,-0.099521,-0.83203,0.36335,-0.41914,-0.93838,0.2761,-0.20777,-0.80731,0.087985,-0.58348,-0.91629,0.11438,-0.38377,-0.91784,-0.079043,-0.38896,-0.64727,-0.12412,-0.75207,-0.86145,-0.1699,-0.47853,-0.57936,-0.18955,-0.79269,-0.41618,-0.16086,-0.89489,-0.43294,-0.063417,-0.89917,-0.1012,-0.068972,-0.99246,0.060945,-0.13111,-0.98947,-0.32829,-0.13822,-0.93439,-0.25019,-0.16987,-0.95315,-0.3162,-0.17112,-0.9331,-0.18622,-0.076876,-0.97946,0.051759,-0.078372,-0.99557,0.26972,-0.11618,-0.95587,0.15348,-0.11405,-0.98154,0.23228,-0.047578,-0.97147,0.60949,0.079287,-0.78878,0.45863,-0.020875,-0.88836,0.81472,0.16318,-0.55638,0.7684,0.37782,-0.51646,0.8909,0.23069,-0.39122,0.98615,0.16547,-0.010895,0.79556,-0.076479,0.601,0.30741,-0.16861,0.93649,0.61248,-0.037385,0.78958,0.89447,0.028901,0.44615,0.94638,0.1475,0.28739,0.95636,0.10935,-0.27082,0.88723,0.10724,-0.44859,0.74606,0.046663,-0.66421,0.26423,0.043428,-0.96347,0.70098,0.14469,-0.69832,0.89135,0.1645,-0.42238,0.90832,0.18589,-0.37465,0.97742,0.099155,0.18647,0.57659,-0.060488,0.81478,0.13376,-0.2172,0.96689,0.10785,-0.40812,0.90652,0.41063,-0.31935,0.85403,0.046571,-0.50392,0.86245,0.24598,-0.40797,0.87921,0.027894,-0.54817,0.83587,0.24903,-0.36461,0.89721,0.91098,0.37184,0.17838,0.96463,0.081576,0.25059,0.8623,0.31553,-0.39601,0.85751,0.33387,-0.39137,0.56435,0.36064,-0.74258,0.88815,0.43507,-0.14786,0.43019,0.5735,-0.6971,0.7575,0.55745,-0.3397,0.34715,0.62197,-0.70186,-0.011505,0.48521,-0.87429,-0.12394,0.46895,-0.87448,-0.38121,0.3397,-0.8598,-0.14505,0.50029,-0.8536,0.10636,0.2646,-0.95846,0.10144,0.30598,-0.94659,-0.043245,0.001068,-0.99905,0.17386,-0.020051,-0.98456,0.14844,0.25233,-0.95618,0.39641,0.49599,-0.77251,0.003357,0.50743,-0.86166,0.3614,0.62554,-0.6914,-0.10736,0.56954,-0.8149,-0.4145,0.44374,-0.79452,-0.28538,0.3874,-0.87661,0.19349,0.24412,-0.95022,0.17942,-0.010529,-0.9837,0.44639,0.046236,-0.89361,0.2725,0.21,-0.93893,0.59523,0.3618,-0.71746,0.38072,0.472,-0.79513,-0.2999,0.19175,-0.93448,-0.2891,0.45216,-0.84374,0.24067,0.55251,-0.79797,0.67022,0.45726,-0.58452,-0.56432,0.4232,-0.70879,-0.16025,0.44758,-0.87973,-0.11585,0.21629,-0.96942,-0.27482,-0.097507,-0.95651,-0.12461,-0.059786,-0.99039,-0.058565,-0.021577,-0.99805,0.14124,0.28556,-0.94787,0.011902,0.51772,-0.85543,0.45857,0.53902,-0.70647,-0.1214,0.68053,-0.72256,-0.037812,0.50594,-0.86172,-0.32469,0.70098,-0.63494,-0.22675,0.21894,-0.949,-0.40162,-0.041169,-0.91485,-0.14405,0.27082,-0.95178,0.037355,0.50377,-0.863,0.48637,0.42634,-0.76263,-0.099094,0.67528,-0.73083,-0.4041,0.56368,-0.72036,-0.39344,0.67895,-0.6198,-0.77077,0.44536,-0.45555,-0.85537,0.45366,-0.24998,-0.98025,0.18094,-0.079592,-0.67424,0.46638,-0.57256,-0.79989,0.27711,-0.5323,-0.99353,0.10941,-0.02942,-0.94375,0.33058,0.005005,-0.42067,0.60485,-0.67614,-0.88763,-0.10654,0.44804,-0.31736,-0.51195,0.79821,-0.1677,-0.65896,0.73324,-0.033601,-0.72634,0.68648,-0.10117,-0.62004,0.77798,-0.15421,-0.46232,0.87316,-0.48412,-0.35377,0.80029,-0.6548,-0.22053,0.72289,-0.30949,-0.34849,0.88473,-0.66054,-0.22413,0.71654,-0.82974,-0.1822,0.52754,-0.99234,-0.1196,0.030305,-0.93411,-0.030488,-0.35563,-0.95471,-0.15244,-0.25547,-0.93509,-0.036561,-0.35249,-0.92401,-0.036897,-0.38054,-0.80187,0.23917,-0.5475,-0.49645,0.28349,-0.82046,-0.57277,-0.012207,-0.81961,-0.99332,-0.07651,-0.086337,-0.93081,-0.18998,0.31217,-0.90005,-0.20109,0.38661,-0.98065,-0.030732,0.19321,-0.92404,-0.11936,0.36311,-0.98147,0.13443,-0.13636,-0.96689,0.25123,-0.044282,-0.98743,0.10965,-0.11368,-0.85962,0.51067,-0.015412,-0.98151,0.16721,0.093142,-0.80477,-0.095035,-0.58586,-0.39018,-0.19468,-0.8999,-0.17829,-0.14103,-0.97379,-0.86294,-0.17109,-0.47539,-0.72015,-0.16849,-0.67302,-0.33628,-0.066317,-0.93939,-0.80193,-0.15479,-0.57698,-0.41243,-0.082217,-0.90725,-0.79379,-0.15595,-0.58785,-0.25214,-0.10343,-0.96213,-0.62114,-0.11499,-0.77517,-0.16916,-0.13196,-0.97668,-0.98447,-0.17551,0.000244,-0.97656,-0.20783,-0.055422,-0.97568,-0.18009,0.12491,-0.96985,-0.19687,-0.14356,-0.94955,-0.19337,-0.24686,-0.97549,-0.21613,-0.041017,-0.92642,-0.18979,0.32505,-0.92911,-0.11094,0.35276,-0.92389,-0.048647,0.37953,-0.89749,-0.058779,0.43709,-0.82412,-0.092502,0.55876,-0.75869,-0.11954,0.64037,-0.48698,-0.078188,0.86987,-0.64254,-0.098849,0.75982,-0.76782,-0.15467,0.62169,-0.93615,-0.19101,0.29508,-0.9819,-0.17097,-0.081362,-0.99542,-0.08948,-0.033143,-0.96619,-0.094699,0.23972,-0.78814,-0.16785,0.59212,-0.67861,-0.15998,0.71682,-0.75643,-0.1521,0.6361,-0.75738,-0.10883,0.64382,-0.75308,-0.092044,0.65145,-0.73562,-0.097232,0.67034,-0.70211,-0.15641,0.69463,-0.65593,-0.10843,0.74697,-0.81869,-0.074435,0.56935,-0.9667,0.017792,0.25526,-0.83804,0.016114,0.54534,-0.6686,-0.045167,0.74221,-0.67211,0.056887,0.73824,-0.80587,0.10508,0.58263,-0.95883,0.11057,0.26151,-0.99585,0.006439,0.090609,-0.89434,0.42085,0.15171,-0.86215,0.32249,0.3907,-0.71679,0.16828,0.67666,-0.64348,0.11405,0.75689,-0.58769,0.19834,0.78439,-0.51552,0.49794,0.69732,-0.4276,0.74593,0.5106,-0.71963,0.55824,0.41285,-0.67129,0.71041,0.21125,-0.77908,0.60741,0.15503,-0.69863,0.56935,0.43321,-0.73186,0.30985,0.60689,-0.64831,0.43672,0.62365,-0.42091,0.26582,0.86724,-0.37251,0.18052,0.91028,-0.082247,0.30195,0.94974,-0.33036,0.53279,0.77908,-0.26795,0.78469,0.55892,-0.32701,0.8934,0.30802,-0.23231,0.96237,0.14081,-0.76733,0.63753,-0.068545,-0.62789,0.77828,-0.003235,-0.43614,0.8923,0.11643,-0.51042,0.81863,0.26313,0.15928,0.9252,0.34437,0.14118,0.92144,0.36189,0.081576,0.74319,0.66405,0.020081,0.58739,0.80902,0.41823,0.47337,0.7752,0.39695,0.18638,0.89868,-0.011078,0.11133,0.99371,0.24748,0.083743,0.96524,0.45335,0.019013,0.89111,0.52876,0.020325,0.84851,0.58211,-0.027863,0.81262,0.58348,-0.051637,0.81045,0.55596,-0.084902,0.82684,0.51952,-0.088046,0.84988,0.51991,-0.089236,0.84951,0.69292,0.27751,0.66543,0.66796,0.18332,0.72124,0.70333,0.14283,0.69634,0.64449,-0.04413,0.76333,0.52855,-0.14093,0.83709,0.82745,-0.084841,0.55504,0.9508,0.15519,0.26808,0.93231,-0.18784,0.309,0.73775,-0.25852,0.62355,0.92602,0.18134,0.331,0.96506,0.047639,0.25758,0.53404,0.041871,0.84439,0.10288,-0.013337,0.9946,0.4171,0.01706,0.90869,0.090762,0.02121,0.99564,0.41047,0.059023,0.90994,0.21613,0.044923,0.97531,0.26951,0.043519,0.962,0.40797,0.098331,0.90765,0.99051,0.074068,0.11551,0.9183,0.14341,0.36891,0.64003,0.094333,0.7625,0.81857,0.066164,-0.57054,0.99991,-0.007721,0.00882,0.99417,0.021119,0.10566,0.96982,-0.060701,0.23603,0.85354,-0.020264,0.52062,0.48268,-0.01587,0.87564,0.92874,0.025391,0.36979,0.86975,0.026887,-0.49269,0.9342,-0.027802,-0.3556,0.5956,-0.005554,-0.80322,0.46925,0.093875,-0.87805,0.73214,0.12244,-0.67,0.44176,0.13913,-0.88626,0.79678,0.01001,-0.60418,0.9498,-0.011414,-0.31263,0.70373,-0.008789,-0.71038,0.91971,0.024903,-0.39174,0.98935,0.022309,0.14377,0.96539,0.14347,0.21778,0.96689,0.12433,-0.22279,0.87359,0.34727,0.34086,0.88089,0.44945,0.1482,0.59578,0.72143,0.35285,0.55544,0.74325,0.37284,0.68667,-0.027863,-0.7264,0.50746,0.60186,0.61663,0.98209,0.1409,0.12497,0.98935,-0.012391,0.14493,0.94613,-0.060945,0.31791,-0.96136,0.021699,-0.27439,0.92663,0.07712,0.36793,0.95654,0.25388,0.14325,0.64971,0.54653,-0.52834,0.50932,0.69643,-0.50551,0.81216,0.46333,0.35453,-0.38664,0.033113,-0.9216,-0.51332,0.1446,-0.84591,-0.98834,-0.1521,-0.000519,-0.99298,-0.11588,-0.023072,-0.9953,-0.067446,-0.069277,-0.97494,-0.21116,0.069582,-0.99673,-0.043123,-0.067904,0.6444,-0.21363,-0.73418,0.84842,-0.14304,-0.5096,0.58254,-0.30161,-0.75472,0.8695,-0.094272,-0.48482,0.62911,-0.02411,-0.77694,0.85031,-0.012238,-0.52611,0.70617,0.024628,-0.70757,0.17963,0.002503,-0.9837,0.15168,-0.051332,-0.98709,0.18006,-0.35173,-0.91861,0.17332,-0.43693,-0.88263,0.43013,0.049471,-0.90139,0.70687,0.11243,-0.69832,0.40498,0.41462,-0.81488,0.13947,0.34971,-0.92639,0.29057,0.56035,-0.7756,-0.21717,0.54015,-0.81304,0.21403,0.79873,-0.5623,-0.2649,0.68499,-0.67864,-0.23911,0.76806,-0.59404,0.24143,0.85382,-0.46116,-0.62908,0.43526,-0.644,-0.5519,0.57735,-0.60167,-0.64635,0.27946,-0.70998,0.14756,-0.067843,-0.98669,0.14939,0.30402,-0.94086,0.14679,0.51863,-0.84228,0.096957,0.64272,-0.75991,0.091525,0.78344,-0.61467,-0.080355,0.80389,-0.58928,0.099246,0.86316,-0.49501,-0.16514,0.84826,-0.50313,-0.33039,0.7658,-0.55165,-0.026673,0.80373,-0.59435,0.08536,0.58666,-0.80529,-0.28352,0.77758,-0.56117,-0.087924,0.88769,-0.45195,0.15046,0.87194,-0.46586,-0.56502,0.72713,-0.38981,-0.16791,0.75692,-0.63152,-0.25162,0.59273,-0.76507,-0.14264,0.37068,-0.91772,-0.13511,-0.082339,-0.9874,-0.215,-0.42183,-0.88079,-0.33879,-0.42445,-0.83966,-0.39067,-0.14521,-0.90899,-0.30082,-0.007935,-0.95364,-0.72805,-0.11753,-0.67534,-0.6989,-0.24085,-0.67339,-0.58058,-0.33042,-0.7441,-0.35853,-0.29893,-0.88433,-0.24238,0.11307,-0.96356,-0.24741,0.42769,-0.86938,-0.071108,0.4232,-0.90323,-0.25837,0.56517,-0.78344,0.076785,0.80319,-0.59075,0.39833,0.77715,-0.48714,0.1641,0.85177,-0.49751,-0.024079,0.8514,-0.52394,-0.020478,0.79696,-0.60366,0.08768,0.55977,-0.82397,-0.004517,0.6209,-0.78384,0.56905,0.59484,-0.56771,0.17951,0.81457,-0.55156,-0.24571,0.85391,-0.45872,-0.22831,0.85608,-0.46364,0.055483,0.83044,-0.55431,0.50884,0.67302,-0.5367,-0.41636,0.57891,-0.70104,0.8478,0.024842,-0.52971,-0.4066,0.35289,-0.84268,-0.41685,0.41307,-0.80966,-0.23383,0.48103,-0.84491,-0.36299,0.57421,-0.73382,-0.39445,0.59441,-0.70074,-0.32176,0.64754,-0.69073,-0.2212,0.65505,-0.72243,-0.067476,0.46992,-0.88009,0.11628,0.55061,-0.82659,0.034181,0.78805,-0.61464,0.079257,0.79431,-0.60228,-0.035585,0.90307,-0.42796,-0.096957,0.91275,-0.3968,0.12333,0.51994,-0.84521,0.098148,0.50645,-0.85662,0.05652,0.59578,-0.80111,0.10184,0.78011,-0.61724,0.072726,0.84408,-0.53121,0.040712,0.89602,-0.44209,0.013398,0.87585,-0.48231,-0.015625,0.47038,-0.88232,0.000427,0.58248,-0.81283,0.005371,0.77084,-0.63698,0.010041,0.84231,-0.53887,0.009186,0.90298,-0.42955,0.003113,0.9057,-0.42384,0.36216,0.44371,-0.8197,0.44761,0.5031,-0.73922,0.024384,0.76779,-0.64022,0.028565,0.841,-0.54024,0.03827,0.8967,-0.44096,0.034211,0.89978,-0.43495,0.61425,0.35801,-0.70318,0.558,0.48787,-0.67126,0.68667,0.40748,-0.60198,0.67537,0.46184,-0.57491,0.63991,0.5378,-0.54885,0.50975,0.73971,-0.43925,0.73846,0.22904,-0.63414,0.43962,0.35429,-0.82534,0.93454,0.25367,-0.24946,0.59362,0.26533,-0.75973,0.91794,0.36863,0.14652,0.22401,-0.043947,-0.97357,-0.085696,-0.12021,-0.98901,-0.068667,-0.24595,-0.96683,0.13538,-0.077029,-0.98776,0.17133,-0.14447,-0.97455,0.23887,-0.081729,-0.96759,0.30372,-0.19953,-0.93161,-0.26762,-0.016907,-0.96335,-0.74074,0.14447,-0.65603,-0.95126,0.022797,-0.3075,-0.65285,0.026368,-0.75701,-0.16782,0.23853,-0.95651,0.14383,0.26496,-0.95346,0.11701,0.28895,-0.95013,-0.051759,0.27717,-0.95941,-0.99713,0.055452,-0.050874,0.97467,0.057039,0.21619,0.98288,0.043336,0.17899,0.97137,0.005768,0.23747,0.97226,0.15857,0.17188,0.95361,0.084017,0.28904], "colors": [], - "uvs": [[0.389887,0.320977,0.361250,0.320977,0.361250,0.356654,0.389887,0.288480,0.417280,0.320977,0.417280,0.288480,0.462829,0.320977,0.462829,0.288480,0.497736,0.320977,0.462829,0.356654,0.417280,0.356654,0.389887,0.356654,0.361250,0.391448,0.332124,0.391448,0.332124,0.356654,0.332124,0.320977,0.300832,0.320977,0.300832,0.288480,0.268793,0.288480,0.300832,0.254807,0.268793,0.254807,0.236754,0.254807,0.237523,0.231829,0.205461,0.254807,0.207386,0.231829,0.211930,0.211122,0.178089,0.206675,0.176336,0.231829,0.147699,0.231829,0.176336,0.254807,0.147699,0.254807,0.120305,0.231829,0.120305,0.254807,0.074757,0.231829,0.074757,0.254807,0.039850,0.231829,0.075062,0.211568,0.039850,0.211870,0.074537,0.193130,0.039850,0.195120,0.074782,0.166897,0.039850,0.168543,0.077997,0.126444,0.039850,0.126900,0.070557,0.092132,0.038695,0.090059,0.069402,0.055464,0.046275,0.044598,0.023319,0.041835,0.005547,0.089467,0.005547,0.042151,0.005547,0.027741,0.532039,0.027741,0.514266,0.041835,0.532039,0.042151,0.517620,0.027448,0.532039,0.014462,0.518729,0.014525,0.520046,0.002447,0.506732,0.002447,0.532039,0.002447,0.005547,0.002447,0.005547,0.014462,0.017540,0.002447,0.018857,0.014525,0.019966,0.027448,0.034968,0.026467,0.049659,0.020387,0.072523,0.021424,0.087388,0.056234,0.088928,0.092132,0.094496,0.121372,0.094260,0.154066,0.120305,0.171313,0.120305,0.189081,0.120305,0.207017,0.146621,0.205309,0.172959,0.185698,0.197380,0.191046,0.218050,0.195180,0.239277,0.213807,0.268793,0.231829,0.300062,0.231829,0.332124,0.254807,0.332124,0.288480,0.361250,0.288480,0.361250,0.254807,0.361250,0.231829,0.330200,0.231829,0.325655,0.211122,0.298309,0.213807,0.268793,0.213020,0.241681,0.195634,0.243592,0.183311,0.268793,0.180936,0.268793,0.164315,0.243621,0.165196,0.222851,0.165947,0.220277,0.185357,0.206338,0.164441,0.201664,0.180765,0.167269,0.164305,0.147796,0.166626,0.148087,0.186690,0.120305,0.151412,0.146268,0.145332,0.166494,0.140798,0.186440,0.143998,0.184846,0.164190,0.207231,0.147225,0.223426,0.149582,0.242702,0.147947,0.260621,0.147420,0.268793,0.147129,0.276965,0.147420,0.294883,0.147947,0.293965,0.165196,0.293994,0.183311,0.295904,0.195634,0.319535,0.195180,0.317309,0.185357,0.335922,0.180765,0.331248,0.164441,0.314734,0.165947,0.314159,0.149582,0.330355,0.147225,0.351145,0.143998,0.352740,0.164190,0.370317,0.164305,0.371092,0.140798,0.343882,0.131977,0.356764,0.117319,0.383405,0.131693,0.378401,0.109594,0.581760,0.166494,0.554134,0.177034,0.554134,0.198022,0.554134,0.162884,0.554134,0.141630,0.581760,0.141630,0.604617,0.166494,0.581760,0.195004,0.554134,0.208298,0.391318,0.145332,0.389790,0.166626,0.364627,0.185698,0.340205,0.191046,0.268793,0.191608,0.359497,0.206675,0.389887,0.231829,0.390965,0.205309,0.389498,0.186690,0.417280,0.171313,0.417280,0.151412,0.443326,0.154066,0.433387,0.138073,0.554134,0.034928,0.581760,0.013179,0.554134,0.013179,0.581760,0.034928,0.604617,0.034928,0.604617,0.013179,0.635116,0.013179,0.635116,0.224612,0.635116,0.196193,0.604617,0.224612,0.578168,0.634378,0.589587,0.645336,0.593562,0.635077,0.579033,0.649902,0.569340,0.644738,0.604617,0.141630,0.635116,0.166494,0.635116,0.141630,0.604617,0.118259,0.581760,0.118259,0.581760,0.093107,0.554134,0.093107,0.554134,0.073929,0.581760,0.073929,0.604617,0.093107,0.635116,0.118259,0.562939,0.635390,0.566165,0.624626,0.574006,0.618871,0.583550,0.619488,0.590412,0.625243,0.635116,0.034928,0.604617,0.054226,0.635116,0.054226,0.604617,0.073929,0.635116,0.073929,0.581760,0.054226,0.554134,0.054226,0.448658,0.092132,0.434166,0.092132,0.434166,0.119902,0.434166,0.056234,0.450198,0.056234,0.467028,0.092132,0.443090,0.121372,0.459588,0.126444,0.497736,0.126900,0.497736,0.168543,0.462804,0.166897,0.463049,0.193130,0.417280,0.189081,0.417280,0.207017,0.417280,0.231829,0.389887,0.254807,0.417280,0.254807,0.462829,0.231829,0.462524,0.211568,0.497736,0.211870,0.497736,0.231829,0.462829,0.254807,0.497736,0.254807,0.497736,0.288480,0.532039,0.320977,0.497736,0.356654,0.462829,0.391448,0.417280,0.391448,0.389887,0.391448,0.361250,0.423238,0.332124,0.423238,0.300832,0.423238,0.300832,0.391448,0.300832,0.356654,0.268793,0.356654,0.268793,0.320977,0.236754,0.320977,0.236754,0.288480,0.205461,0.288480,0.176336,0.288480,0.176336,0.320977,0.205461,0.320977,0.176336,0.356654,0.205461,0.356654,0.205461,0.391448,0.176336,0.391448,0.205461,0.423238,0.176336,0.423238,0.205461,0.456226,0.176336,0.456226,0.176336,0.498395,0.205461,0.498395,0.205461,0.539814,0.176336,0.539814,0.147699,0.539814,0.147699,0.498395,0.147699,0.456226,0.147699,0.423238,0.147699,0.391448,0.147699,0.356654,0.147699,0.320977,0.147699,0.288480,0.120305,0.288480,0.120305,0.320977,0.120305,0.356654,0.120305,0.391448,0.120305,0.423238,0.120305,0.456226,0.120305,0.498395,0.120305,0.539814,0.074757,0.498395,0.074757,0.539814,0.039850,0.539814,0.039850,0.498395,0.021640,0.539814,0.021448,0.498395,0.005547,0.498395,0.021634,0.456226,0.005547,0.456226,0.005547,0.423238,0.532039,0.423238,0.517229,0.423238,0.532039,0.456226,0.532039,0.391448,0.497736,0.423238,0.497736,0.391448,0.532039,0.356654,0.462829,0.423238,0.417280,0.423238,0.389887,0.423238,0.361250,0.456226,0.332124,0.456226,0.300832,0.456226,0.284270,0.456226,0.285300,0.423238,0.268793,0.391448,0.236754,0.356654,0.236754,0.391448,0.236754,0.423238,0.236754,0.456226,0.236754,0.498395,0.236754,0.539814,0.255294,0.539814,0.254859,0.498395,0.254176,0.456226,0.253321,0.423238,0.268793,0.423238,0.268793,0.456226,0.268793,0.498395,0.268793,0.539814,0.282813,0.539814,0.283405,0.498395,0.300832,0.498395,0.300832,0.539814,0.332124,0.498395,0.332124,0.539814,0.361250,0.498395,0.389887,0.456226,0.417280,0.456226,0.389887,0.498395,0.389887,0.539814,0.361250,0.539814,0.417280,0.498395,0.462829,0.498395,0.462829,0.456226,0.497736,0.456226,0.497736,0.498395,0.497736,0.539814,0.462829,0.539814,0.417280,0.539814,0.516564,0.539814,0.516824,0.498395,0.517022,0.456226,0.532039,0.498395,0.532039,0.539814,0.005547,0.539814,0.005547,0.320977,0.005547,0.356654,0.039850,0.356654,0.039850,0.391448,0.005547,0.391448,0.039850,0.423238,0.021885,0.423238,0.039850,0.456226,0.074757,0.456226,0.074757,0.423238,0.074757,0.391448,0.074757,0.356654,0.074757,0.320977,0.074757,0.288480,0.039850,0.254807,0.039850,0.288480,0.005547,0.254807,0.005547,0.288480,0.532039,0.254807,0.532039,0.288480,0.532039,0.231829,0.532039,0.212202,0.532039,0.195381,0.497736,0.195120,0.532039,0.168337,0.532039,0.126627,0.005547,0.126627,0.005547,0.168337,0.498891,0.090059,0.532039,0.089467,0.468183,0.055464,0.465063,0.021424,0.491311,0.044598,0.502618,0.026467,0.504825,0.012518,0.495845,0.002447,0.030854,0.002447,0.032761,0.012518,0.045009,0.016634,0.223853,0.017256,0.218153,0.020595,0.219609,0.040117,0.192626,0.022964,0.198278,0.045798,0.177226,0.022964,0.087388,0.021424,0.103420,0.056234,0.103420,0.092132,0.103420,0.119902,0.104199,0.138073,0.554134,0.284516,0.554134,0.265218,0.581760,0.284516,0.581760,0.265218,0.581760,0.243469,0.554134,0.243469,0.581760,0.454902,0.554134,0.454902,0.581760,0.434629,0.554134,0.438588,0.581760,0.425294,0.604617,0.426483,0.604617,0.396784,0.581760,0.396784,0.581760,0.371920,0.604617,0.371920,0.635116,0.396784,0.635116,0.371920,0.635116,0.426483,0.604617,0.454902,0.604617,0.265218,0.604617,0.243469,0.604617,0.284516,0.635116,0.265218,0.635116,0.243469,0.635116,0.454902,0.635116,0.348549,0.604617,0.348549,0.581760,0.348549,0.554134,0.371920,0.554134,0.393174,0.554134,0.407324,0.554134,0.428312,0.155432,0.131693,0.180822,0.117319,0.193704,0.131977,0.207717,0.129832,0.204035,0.104071,0.223025,0.130811,0.239769,0.129851,0.254982,0.130157,0.268793,0.128978,0.282604,0.130157,0.297817,0.129851,0.314561,0.130811,0.329869,0.129832,0.333551,0.104071,0.335748,0.079983,0.316703,0.081499,0.316088,0.103497,0.301497,0.104028,0.300543,0.086783,0.317977,0.040117,0.296255,0.056672,0.291751,0.034846,0.283410,0.063141,0.280601,0.038349,0.288711,0.018340,0.277481,0.019726,0.276532,0.004376,0.268793,0.004376,0.286537,0.004376,0.300109,0.015782,0.305390,0.026933,0.313732,0.017256,0.319433,0.020595,0.487926,0.020387,0.492577,0.016634,0.344960,0.022964,0.339308,0.045798,0.356766,0.083525,0.378401,0.084762,0.359606,0.047102,0.378401,0.048225,0.378401,0.022964,0.360360,0.022964,0.434166,0.021424,0.450198,0.021424,0.554134,0.118259,0.495283,0.010477,0.307450,0.010764,0.305549,0.004200,0.296353,0.004376,0.041740,0.002447,0.042303,0.010477,0.237477,0.015782,0.230136,0.010764,0.232196,0.026933,0.245834,0.034846,0.248874,0.018340,0.256985,0.038349,0.254176,0.063141,0.241331,0.056672,0.237043,0.086783,0.220883,0.081499,0.201838,0.079983,0.180820,0.083525,0.177980,0.047102,0.160436,0.022964,0.103420,0.021424,0.554134,0.323398,0.554134,0.348549,0.581760,0.323398,0.604617,0.323398,0.635116,0.323398,0.635116,0.304219,0.604617,0.304219,0.581760,0.304219,0.554134,0.304219,0.635116,0.284516,0.160436,0.048225,0.160436,0.084762,0.160436,0.109594,0.221497,0.103497,0.236089,0.104028,0.250914,0.112571,0.252272,0.090935,0.268793,0.064740,0.268793,0.092146,0.285313,0.090935,0.286671,0.112571,0.268793,0.037870,0.260105,0.019726,0.261054,0.004376,0.251048,0.004376,0.241233,0.004376,0.232037,0.004200,0.268793,0.020349,0.005547,0.195381,0.005547,0.212202,0.005547,0.231829,0.039850,0.320977,0.635116,0.093107,0.604617,0.196193,0.581760,0.204339,0.581760,0.224612,0.846946,0.727739,0.831937,0.665882,0.781062,0.720166,0.863661,0.676279,0.897177,0.736338,0.765896,0.654617,0.711761,0.727244,0.790884,0.601630,0.811270,0.550866,0.856148,0.600223,0.862262,0.522995,0.818700,0.497810,0.837398,0.429692,0.929456,0.470354,0.903249,0.545102,0.879175,0.611107,0.919067,0.626267,0.902081,0.689861,0.846945,0.727739,0.512091,0.771521,0.405127,0.751108,0.405125,0.789010,0.490154,0.743954,0.405127,0.731931,0.488877,0.705076,0.448173,0.706861,0.455169,0.696419,0.488148,0.693683,0.513922,0.688261,0.550580,0.691626,0.550220,0.678784,0.601085,0.662559,0.593391,0.645021,0.631581,0.643197,0.618446,0.600180,0.662755,0.621366,0.691755,0.575865,0.626372,0.559965,0.705620,0.514538,0.723115,0.545637,0.723511,0.509143,0.885979,0.165819,0.858113,0.155526,0.862920,0.187935,0.878985,0.152740,0.914710,0.159382,0.922602,0.174083,0.889115,0.191199,0.882238,0.206010,0.890163,0.217146,0.906427,0.207695,0.903545,0.202895,0.936813,0.173876,0.952282,0.148521,0.933216,0.143757,0.949307,0.113434,0.917720,0.115307,0.914666,0.066192,0.884352,0.104650,0.875328,0.072927,0.903992,0.043822,0.935523,0.058380,0.948732,0.042365,0.925338,0.028543,0.951982,0.038217,0.971548,0.062125,0.974294,0.022063,0.976518,0.100727,0.967388,0.065474,0.945662,0.081499,0.971637,0.101817,0.960274,0.121778,0.961837,0.145763,0.944890,0.174719,0.957134,0.200594,0.746038,0.554150,0.737640,0.554795,0.707015,0.579645,0.672924,0.631514,0.648189,0.659896,0.600401,0.686361,0.553055,0.720376,0.512092,0.771521,0.570039,0.758433,0.671399,0.676179,0.614062,0.748491,0.726606,0.670841,0.737828,0.624350,0.748403,0.568523,0.755814,0.504584,0.764790,0.467292,0.777225,0.404367,0.856028,0.357342,0.945389,0.398776,0.991255,0.425055,0.970960,0.495458,0.944711,0.565285,0.240214,0.758433,0.257199,0.720376,0.196192,0.748490,0.298161,0.771521,0.240213,0.758433,0.320100,0.743954,0.321377,0.705076,0.362081,0.706861,0.405127,0.720864,0.430878,0.705635,0.457586,0.683405,0.429990,0.687801,0.427156,0.661126,0.405127,0.660541,0.405127,0.641348,0.383098,0.661126,0.386684,0.642702,0.405127,0.636783,0.423570,0.642702,0.420172,0.637551,0.443196,0.638734,0.442876,0.628581,0.428208,0.625371,0.439969,0.620869,0.455005,0.623401,0.454070,0.615526,0.464963,0.611220,0.452749,0.609398,0.451070,0.606069,0.458977,0.608109,0.464547,0.607213,0.472264,0.606245,0.471613,0.618341,0.478295,0.625530,0.459701,0.630210,0.477567,0.652464,0.453128,0.658176,0.483420,0.674620,0.507729,0.663522,0.538006,0.650822,0.565863,0.632856,0.582414,0.593914,0.583489,0.555513,0.639301,0.513763,0.564979,0.513125,0.576609,0.484635,0.586076,0.460994,0.647157,0.457901,0.597607,0.437666,0.657203,0.403987,0.605360,0.400852,0.650834,0.360374,0.691436,0.404238,0.688510,0.358544,0.728101,0.354461,0.727797,0.292313,0.788180,0.328823,0.751307,0.421539,0.740906,0.408705,0.726347,0.420515,0.710409,0.455744,0.731461,0.457763,0.849034,0.073406,0.852579,0.103989,0.861616,0.056137,0.877516,0.043075,0.896028,0.030104,0.927854,0.026498,0.893336,0.004384,0.759373,0.437314,0.987335,0.096616,0.970015,0.122532,0.985446,0.139602,0.717454,0.590353,0.628432,0.700501,0.614062,0.748490,0.614061,0.748491,0.570040,0.758433,0.896197,0.024739,0.875164,0.037397,0.857107,0.022615,0.873563,0.122648,0.868605,0.144803,0.883964,0.126491,0.681590,0.284765,0.656799,0.317971,0.615023,0.232109,0.653594,0.181455,0.585007,0.165305,0.509837,0.187610,0.513964,0.141647,0.544221,0.098627,0.619630,0.143851,0.405127,0.119729,0.405127,0.064379,0.266033,0.098627,0.296290,0.141647,0.225247,0.165305,0.190624,0.143851,0.156660,0.181455,0.195231,0.232109,0.128664,0.284765,0.153455,0.317971,0.121744,0.358544,0.159420,0.360374,0.118818,0.404238,0.153051,0.403987,0.163097,0.457901,0.099845,0.455744,0.104634,0.514538,0.078793,0.457763,0.086743,0.509143,0.054440,0.504584,0.061851,0.568523,0.064216,0.554150,0.098493,0.727244,0.138855,0.676179,0.083648,0.670841,0.181822,0.700501,0.209853,0.686361,0.259674,0.691626,0.296332,0.688261,0.322106,0.693683,0.355085,0.696419,0.326834,0.674620,0.352668,0.683405,0.379376,0.705635,0.405127,0.711996,0.405127,0.685170,0.380264,0.687801,0.357126,0.658176,0.332687,0.652464,0.302525,0.663522,0.260034,0.678784,0.209169,0.662559,0.216863,0.645021,0.272248,0.650822,0.314897,0.640727,0.350553,0.630210,0.331959,0.625530,0.317630,0.613688,0.285344,0.611687,0.281376,0.594659,0.227840,0.593914,0.244391,0.632856,0.191808,0.600180,0.178673,0.643197,0.162065,0.659896,0.137330,0.631514,0.147499,0.621366,0.118499,0.575865,0.103239,0.579645,0.092800,0.590353,0.072426,0.624350,0.072614,0.554795,0.087139,0.545637,0.183882,0.559965,0.226765,0.555513,0.279145,0.571240,0.328971,0.602248,0.332757,0.613268,0.338641,0.618341,0.355249,0.623401,0.367058,0.638734,0.390082,0.637551,0.367378,0.628581,0.382046,0.625371,0.393347,0.627087,0.405272,0.624965,0.391657,0.613499,0.374398,0.612183,0.370285,0.620869,0.357505,0.609398,0.356184,0.615526,0.345291,0.611220,0.337990,0.606245,0.340775,0.602605,0.337108,0.596721,0.355831,0.585291,0.351031,0.568405,0.370353,0.567254,0.362213,0.545494,0.342884,0.546585,0.353866,0.524112,0.330891,0.526241,0.341529,0.496542,0.330783,0.491970,0.319486,0.526406,0.295163,0.493386,0.316350,0.468210,0.281333,0.467568,0.311598,0.442986,0.278488,0.441396,0.286411,0.428335,0.276863,0.425922,0.266550,0.418914,0.259215,0.436786,0.255861,0.409665,0.245543,0.427652,0.224178,0.460994,0.260159,0.468589,0.233645,0.484635,0.170953,0.513763,0.245275,0.513125,0.212647,0.437666,0.224316,0.416410,0.245435,0.404918,0.257013,0.399863,0.263268,0.405216,0.270037,0.412917,0.278810,0.419414,0.288068,0.423045,0.312544,0.423187,0.313763,0.420052,0.290498,0.418283,0.312871,0.411346,0.285693,0.408627,0.304052,0.394107,0.283414,0.396373,0.281439,0.394523,0.291454,0.390521,0.278969,0.388793,0.290161,0.387613,0.316140,0.391073,0.316533,0.388918,0.335482,0.396748,0.316688,0.386137,0.336978,0.394091,0.315210,0.377809,0.290279,0.376609,0.324971,0.361716,0.292673,0.362060,0.290817,0.346988,0.273336,0.363347,0.268608,0.353371,0.249564,0.366843,0.257647,0.387249,0.244614,0.378994,0.244904,0.396392,0.224647,0.389567,0.204894,0.400852,0.201625,0.354177,0.232402,0.338111,0.260333,0.324292,0.292794,0.314264,0.328727,0.343744,0.351643,0.353028,0.344172,0.360979,0.344845,0.371686,0.340014,0.385851,0.358810,0.384917,0.364349,0.371223,0.365421,0.364474,0.373304,0.383571,0.366336,0.395110,0.353319,0.393478,0.339826,0.400662,0.337786,0.401187,0.333607,0.398331,0.331099,0.402717,0.343237,0.409639,0.346008,0.407809,0.360119,0.400668,0.363546,0.410982,0.354843,0.416551,0.345105,0.416237,0.343432,0.420491,0.337717,0.417097,0.338079,0.415662,0.331873,0.418911,0.332215,0.416871,0.339222,0.411558,0.309148,0.430871,0.336334,0.433371,0.345924,0.455764,0.339203,0.473534,0.361943,0.473381,0.366188,0.445059,0.345754,0.427360,0.334882,0.427242,0.365161,0.418683,0.376651,0.440998,0.380546,0.466066,0.369054,0.492720,0.359311,0.489035,0.358519,0.499559,0.364722,0.504127,0.362729,0.517391,0.353543,0.508077,0.363925,0.528283,0.366527,0.542661,0.370307,0.529736,0.377007,0.538026,0.382315,0.524858,0.392766,0.525178,0.397313,0.530239,0.395594,0.517016,0.400492,0.518163,0.398850,0.506093,0.405127,0.519649,0.405127,0.532158,0.405127,0.544842,0.412941,0.530239,0.409762,0.518163,0.414660,0.517016,0.411404,0.506093,0.405127,0.505934,0.405127,0.496390,0.399904,0.498017,0.394334,0.453878,0.395706,0.488475,0.379852,0.495268,0.376570,0.513356,0.379631,0.523045,0.390945,0.507457,0.390802,0.431183,0.381008,0.413203,0.372447,0.404676,0.381323,0.397408,0.386804,0.411044,0.405127,0.429023,0.405127,0.449549,0.415920,0.453878,0.419452,0.431183,0.429708,0.466066,0.414548,0.488475,0.410350,0.498017,0.419309,0.507457,0.430402,0.495268,0.441200,0.492720,0.448311,0.473381,0.450943,0.489035,0.451735,0.499559,0.445532,0.504127,0.433684,0.513356,0.430623,0.523045,0.446329,0.528283,0.447525,0.517391,0.456388,0.524112,0.456711,0.508077,0.468725,0.496542,0.471051,0.473534,0.464330,0.455764,0.444066,0.445059,0.433603,0.440998,0.429246,0.413203,0.423450,0.411044,0.405127,0.411049,0.405127,0.394055,0.382224,0.376545,0.372504,0.346400,0.359769,0.320826,0.334039,0.313500,0.325129,0.283080,0.286122,0.289961,0.315602,0.220846,0.249677,0.240611,0.300417,0.187610,0.215171,0.271565,0.209753,0.312813,0.237218,0.304757,0.405127,0.164153,0.405127,0.202240,0.405127,0.276249,0.405127,0.320712,0.405127,0.344114,0.405127,0.375497,0.428030,0.376545,0.437750,0.346400,0.450485,0.320826,0.476215,0.313500,0.481527,0.343744,0.458611,0.353028,0.444833,0.364474,0.436950,0.383571,0.428931,0.397408,0.437807,0.404676,0.446708,0.410982,0.445093,0.418683,0.464500,0.427360,0.473920,0.433371,0.498656,0.442986,0.493904,0.468210,0.479471,0.491970,0.479363,0.526241,0.467370,0.546585,0.448040,0.545494,0.443727,0.542661,0.439947,0.529736,0.427939,0.524858,0.417488,0.525178,0.433247,0.538026,0.418633,0.547510,0.420111,0.554314,0.405127,0.555020,0.390143,0.554314,0.391621,0.547510,0.373580,0.550608,0.391298,0.568675,0.384050,0.576886,0.386915,0.592108,0.359235,0.594429,0.355734,0.601620,0.359326,0.605072,0.369733,0.602476,0.369387,0.599079,0.383279,0.595994,0.398478,0.591787,0.398857,0.577477,0.399155,0.568696,0.405127,0.566655,0.405127,0.576015,0.405127,0.592966,0.397676,0.597169,0.393368,0.601009,0.405127,0.599833,0.405127,0.597280,0.412578,0.597169,0.411776,0.591787,0.426975,0.595994,0.423339,0.592108,0.440867,0.599079,0.451019,0.594429,0.454423,0.585291,0.426203,0.576886,0.411397,0.577477,0.411099,0.568696,0.418956,0.568675,0.436674,0.550608,0.439901,0.567254,0.459223,0.568405,0.473146,0.596721,0.469479,0.602605,0.454520,0.601620,0.440521,0.602476,0.430028,0.601211,0.416886,0.601009,0.450928,0.605072,0.465416,0.605505,0.481283,0.602248,0.478639,0.574394,0.480569,0.549785,0.528152,0.539904,0.490768,0.526406,0.515091,0.493386,0.528921,0.467568,0.531766,0.441396,0.523843,0.428335,0.501106,0.430871,0.497710,0.423187,0.478381,0.418911,0.475372,0.427242,0.472537,0.417097,0.466822,0.420491,0.465149,0.416237,0.455411,0.416551,0.467017,0.409639,0.464246,0.407809,0.472468,0.401187,0.470428,0.400662,0.450135,0.400668,0.443918,0.395110,0.445905,0.371223,0.466082,0.360979,0.485283,0.361716,0.519437,0.346988,0.517460,0.314264,0.485125,0.283080,0.494652,0.220846,0.560577,0.240611,0.524132,0.289961,0.549921,0.324292,0.541646,0.353371,0.536918,0.363347,0.517581,0.362060,0.519975,0.376609,0.495044,0.377809,0.470240,0.385851,0.465409,0.371686,0.451444,0.384917,0.456935,0.393478,0.473276,0.394091,0.474772,0.396748,0.493566,0.386137,0.520115,0.386005,0.493721,0.388918,0.494114,0.391073,0.476647,0.398331,0.479155,0.402717,0.506202,0.394107,0.497383,0.411346,0.471032,0.411558,0.472175,0.415662,0.478039,0.416871,0.496491,0.420052,0.522186,0.423045,0.533391,0.425922,0.543704,0.418914,0.531444,0.419414,0.540217,0.412917,0.533577,0.409488,0.527259,0.414917,0.524561,0.408627,0.540739,0.402636,0.526840,0.396373,0.519756,0.418283,0.528815,0.394523,0.518800,0.390521,0.520093,0.387613,0.531066,0.387730,0.536550,0.385086,0.552607,0.387249,0.550027,0.392378,0.544135,0.393049,0.531285,0.388793,0.540445,0.397846,0.551247,0.397675,0.553240,0.399863,0.565640,0.378994,0.560690,0.366843,0.577852,0.338111,0.600501,0.312813,0.573036,0.304757,0.595083,0.271565,0.608629,0.354177,0.585607,0.389567,0.565350,0.396392,0.564819,0.404918,0.554393,0.409665,0.546986,0.405216,0.548717,0.400916,0.551039,0.436786,0.550095,0.468589,0.543114,0.486212,0.525278,0.512276,0.531109,0.571240,0.528878,0.594659,0.492624,0.613688,0.477497,0.613268,0.495357,0.640727,0.524910,0.611687,0.564711,0.427652,0.585938,0.416410,0.380226,0.601211,0.344838,0.605505,0.345707,0.607213,0.351277,0.608109,0.359184,0.606069,0.371932,0.606091,0.389543,0.605544,0.381068,0.602176,0.405127,0.601542,0.405127,0.606382,0.405127,0.611377,0.418597,0.613499,0.420711,0.605544,0.429186,0.602176,0.438322,0.606091,0.435856,0.612183,0.416907,0.627087,0.260227,0.392378,0.266119,0.393049,0.259007,0.397675,0.279188,0.387730,0.273704,0.385086,0.290139,0.386005,0.269809,0.397846,0.261537,0.400916,0.269515,0.402636,0.276677,0.409488,0.282995,0.414917,0.282102,0.539904,0.331615,0.574394,0.329685,0.549785,0.284976,0.512276,0.267140,0.486212,0.033023,0.404367,0.045458,0.467292,0.050872,0.437314,0.787811,0.328823,0.776862,0.404367,0.727732,0.354461,0.058947,0.421539,0.082153,0.354461,0.083907,0.420515,0.069348,0.408705,0.082457,0.292313,0.727428,0.292313,0.405126,0.789009,0.298160,0.771521,1.943993,-109.732338,1.542073,-109.982864,1.456450,-109.901825,2.649404,-98.925919,2.677207,-99.186661,2.388169,-98.776688,0.842838,0.821201,0.837437,0.816913,0.836889,0.820755,0.842760,0.816606,0.850879,0.821718,0.850172,0.816827,0.851508,0.821790,0.851544,0.815460,0.850744,0.816359,0.852638,0.821894,0.852830,0.813929,0.853937,0.821927,0.860863,0.821768,0.860973,0.815716,0.866608,0.815107,0.867317,0.821525,0.872031,0.814995,0.872213,0.821472,0.889567,0.813619,0.872480,0.805344,0.888193,0.802809,0.905086,0.811724,0.901780,0.799450,0.921865,0.810929,0.919124,0.793570,0.935857,0.814964,0.939017,0.800078,0.939545,0.786356,0.950337,0.780653,0.930718,0.775506,0.938332,0.768904,0.920052,0.763323,0.923241,0.755291,0.909130,0.759916,0.907829,0.741042,0.899586,0.763539,0.889426,0.755563,0.887664,0.738223,0.895025,0.728535,0.879729,0.732293,0.883057,0.726770,0.888495,0.714229,0.881285,0.708042,0.901318,0.912219,0.894843,0.902842,0.888649,0.917186,0.901691,0.898306,0.900746,0.886486,0.911588,0.891889,0.926547,0.883643,0.919041,0.871544,0.934242,0.862563,0.910020,0.858104,0.924464,0.850676,0.949019,0.853518,0.955912,0.865068,0.961960,0.838999,0.941225,0.840618,0.959489,0.821136,0.632098,0.537438,0.621712,0.519742,0.621712,0.537438,0.632098,0.519742,0.643476,0.537438,0.643476,0.519742,0.662016,0.519742,0.662016,0.537438,0.710575,0.519741,0.662016,0.502397,0.710574,0.502396,0.710574,0.485161,0.662016,0.485162,0.662016,0.471244,0.710574,0.471243,0.710575,0.614243,0.662017,0.629288,0.710576,0.629287,0.662017,0.614243,0.710575,0.595127,0.662017,0.595128,0.662017,0.578798,0.710575,0.578797,0.759343,0.578797,0.710575,0.557864,0.759343,0.557864,0.783904,0.578796,0.783904,0.557863,0.812735,0.557863,0.783904,0.537436,0.812734,0.537436,0.827711,0.537436,0.827711,0.557863,0.842607,0.557863,0.842607,0.537436,0.886032,0.537435,0.886033,0.557862,0.886033,0.578795,0.842607,0.578796,0.842607,0.595126,0.827711,0.578796,0.812735,0.578796,0.812735,0.595126,0.783905,0.595127,0.759344,0.595127,0.759344,0.614242,0.759344,0.629287,0.759342,0.471242,0.759343,0.485161,0.759343,0.502395,0.759343,0.519740,0.783904,0.502395,0.783904,0.519740,0.812734,0.519740,0.812734,0.502395,0.827710,0.502395,0.827711,0.519740,0.842607,0.519739,0.886032,0.519739,0.932329,0.519738,0.932329,0.537435,0.932329,0.557862,0.932329,0.578795,0.886033,0.595125,0.886033,0.614240,0.842607,0.614241,0.827711,0.614241,0.827711,0.595126,0.812735,0.614241,0.783905,0.614242,0.783905,0.629286,0.783903,0.471242,0.783904,0.485161,0.812734,0.485160,0.812734,0.471242,0.812735,0.629286,0.827712,0.629286,0.827710,0.471241,0.827710,0.485160,0.842606,0.485160,0.842606,0.502394,0.886032,0.502394,0.886032,0.485159,0.932328,0.485159,0.932329,0.502393,0.993005,0.502393,0.993005,0.485158,0.993005,0.471240,0.932328,0.471240,0.886032,0.471241,0.842606,0.471241,0.842608,0.629286,0.886033,0.629285,0.932330,0.614240,0.932330,0.629284,0.993006,0.629284,0.993006,0.614239,0.993006,0.595124,0.932329,0.595125,0.993006,0.578794,0.993006,0.557861,0.993005,0.537434,0.993005,0.519738,0.759343,0.537437,0.710575,0.537437,0.662017,0.557865,0.643476,0.557865,0.632099,0.557865,0.621712,0.557865,0.972508,0.858495,0.962546,0.874274,0.942201,0.873720,0.934831,0.895825,0.923149,0.904656,0.911762,0.902840,0.914923,0.912188,0.926818,0.917507,0.909238,0.918935,0.901133,0.932087,0.893855,0.926005,0.891278,0.918614,0.885932,0.924023,0.907151,0.724300,0.890900,0.712751,0.898241,0.712030,0.919415,0.716308,0.905550,0.705412,0.916489,0.702328,0.910973,0.696289,0.919804,0.928087,0.908500,0.937986,0.929717,0.934738,0.923837,0.946539,0.917206,0.943472,0.913940,0.934624,0.910506,0.941923,0.928500,0.712904,0.917180,0.698658,0.923339,0.696984,0.938220,0.708910,0.929000,0.693318,0.945755,0.696034,0.938477,0.686111,0.938439,0.937715,0.930458,0.949724,0.931634,0.926873,0.938510,0.919172,0.944071,0.908053,0.950081,0.884168,0.969822,0.885677,0.983376,0.875067,0.632099,0.578798,0.621713,0.578798,0.643476,0.578798,0.643476,0.595128,0.632099,0.595128,0.621713,0.595128,0.993702,0.885883,0.980695,0.898840,0.969288,0.908551,0.958815,0.896223,0.955134,0.918613,0.943241,0.929571,0.941609,0.719764,0.953068,0.706233,0.927623,0.728903,0.937469,0.744444,0.950210,0.730743,0.960878,0.744263,0.949657,0.757588,0.959730,0.768836,0.969837,0.755380,0.984609,0.742216,0.974715,0.730005,0.962396,0.714963,0.994849,0.757738,0.984444,0.771321,0.978415,0.783340,0.621713,0.614243,0.621713,0.629288,0.632099,0.629288,0.632098,0.471244,0.621712,0.471244,0.632098,0.485162,0.621712,0.485162,0.972000,0.794356,0.963062,0.807175,0.951660,0.803001,0.949215,0.819631,0.621712,0.502397,0.632098,0.502397,0.643475,0.502397,0.643475,0.485162,0.643475,0.471244,0.643477,0.629288,0.632099,0.614243,0.643476,0.614243,0.926981,0.834519,0.915046,0.830141,0.903282,0.826447,0.889440,0.822491,0.889684,0.831233,0.899403,0.835113,0.907238,0.839247,0.917457,0.844073,0.906039,0.850866,0.902890,0.844418,0.890615,0.847683,0.887138,0.841490,0.871924,0.836666,0.871968,0.827681,0.866428,0.827824,0.860639,0.827878,0.852414,0.829999,0.851279,0.828234,0.850420,0.827079,0.849847,0.826490,0.842424,0.825772,0.837243,0.824586,0.836051,0.820692,0.836567,0.817654,0.836249,0.816196,0.835453,0.817353,0.842534,0.815618,0.842253,0.815189,0.842046,0.813405,0.843028,0.809698,0.849652,0.807217,0.861522,0.805831,0.845010,0.803051,0.861286,0.799470,0.859931,0.793952,0.843967,0.798301,0.841280,0.793888,0.857091,0.788781,0.853559,0.782880,0.860837,0.786523,0.857180,0.780909,0.864846,0.785976,0.867825,0.791287,0.864364,0.792562,0.865959,0.799463,0.869702,0.797383,0.866499,0.806552,0.884714,0.793532,0.881629,0.785521,0.876243,0.776528,0.861338,0.779019,0.868306,0.772885,0.875768,0.769115,0.882294,0.764915,0.886790,0.770748,0.871093,0.759407,0.875471,0.749216,0.873562,0.735841,0.853736,0.725079,0.858020,0.718337,0.861389,0.711310,0.863367,0.698350,0.883887,0.909029,0.868928,0.928510,0.887265,0.893836,0.890426,0.879990,0.901235,0.874448,0.890344,0.866549,0.890186,0.855677,0.871595,0.859328,0.881625,0.852178,0.868455,0.769755,0.866051,0.766329,0.857998,0.764435,0.862997,0.756287,0.865288,0.747730,0.841825,0.749603,0.844412,0.742710,0.862803,0.735949,0.842902,0.728978,0.876478,0.893320,0.873698,0.883390,0.850496,0.897240,0.881545,0.882065,0.877745,0.870445,0.869938,0.738732,0.875099,0.895087,0.878817,0.900782,0.871558,0.896349,0.859751,0.914190,0.855237,0.901347,0.856788,0.915817,0.850359,0.906316,0.849466,0.721805,0.853005,0.715508,0.856052,0.708739,0.860691,0.696299,0.857300,0.695693,0.861670,0.923252,0.862675,0.932200,0.866070,0.930611,0.855694,0.926742,0.854262,0.917865,0.845071,0.932931,0.837731,0.927953,0.844280,0.908438,0.868683,0.918768,0.844281,0.719325,0.847602,0.712964,0.850809,0.706801,0.840307,0.686410,0.845476,0.941532,0.842098,0.943719,0.838800,0.936505,0.835094,0.929884,0.832058,0.931272,0.827913,0.919442,0.822642,0.921238,0.825883,0.710228,0.829020,0.703745,0.820925,0.708203,0.833049,0.705752,0.832388,0.696804,0.827349,0.695429,0.833830,0.683623,0.837423,0.684291,0.838087,0.944957,0.832857,0.939119,0.823346,0.934452,0.816431,0.926176,0.816624,0.698198,0.813560,0.704289,0.824800,0.702054,0.820364,0.692466,0.824221,0.682522,0.828525,0.940804,0.829214,0.948836,0.826871,0.941453,0.822882,0.936933,0.813789,0.938775,0.809149,0.932946,0.808374,0.693204,0.804827,0.697900,0.811869,0.688601,0.813160,0.681483,0.827037,0.947438,0.819020,0.952392,0.825233,0.942085,0.821760,0.938328,0.814674,0.940323,0.807218,0.942817,0.808517,0.943963,0.806927,0.944559,0.808387,0.944506,0.800807,0.691548,0.797904,0.687181,0.797597,0.688245,0.803523,0.688625,0.799938,0.683950,0.803428,0.682458,0.806460,0.685890,0.804822,0.682179,0.818618,0.950512,0.811000,0.952955,0.824497,0.942362,0.818593,0.948963,0.824482,0.946839,0.817482,0.945020,0.815682,0.941352,0.821450,0.939027,0.809652,0.944551,0.808021,0.945669,0.809116,0.945430,0.809294,0.947889,0.810847,0.949862,0.809862,0.950374,0.811843,0.950199,0.810941,0.951000,0.809762,0.951894,0.811433,0.951328,0.818751,0.950002,0.810875,0.947334,0.810103,0.947603,0.825158,0.947143,0.806143,0.938743,0.837121,0.699481,0.830381,0.712833,0.831812,0.915519,0.869919,0.874256,0.864567,0.863734,0.843603,0.868503,0.839765,0.756971,0.836713,0.748084,0.838153,0.741453,0.839836,0.727097,0.832422,0.741203,0.835985,0.728344,0.844360,0.891359,0.842332,0.899610,0.846452,0.898687,0.836743,0.892941,0.837466,0.884382,0.822861,0.888713,0.820810,0.875955,0.833077,0.871635,0.841212,0.883494,0.844520,0.881936,0.852934,0.888302,0.838832,0.871764,0.834438,0.754981,0.831421,0.747560,0.817994,0.745499,0.819439,0.739060,0.819117,0.726527,0.827251,0.895006,0.825786,0.902330,0.821229,0.896318,0.819876,0.889700,0.816655,0.878698,0.817099,0.752185,0.813208,0.744616,0.812143,0.751013,0.814373,0.737705,0.815823,0.725430,0.809460,0.738080,0.808275,0.744099,0.807027,0.750297,0.801012,0.742885,0.802334,0.736703,0.812164,0.726545,0.802828,0.726993,0.818198,0.903660,0.810357,0.897185,0.809020,0.904152,0.815568,0.896817,0.807853,0.890740,0.816544,0.889523,0.804611,0.881521,0.797163,0.885205,0.799188,0.748629,0.792800,0.740509,0.790761,0.745392,0.811473,0.878400,0.822135,0.903309,0.794681,0.735335,0.793465,0.728961,0.807535,0.902397,0.799742,0.904684,0.808882,0.897306,0.806837,0.892700,0.798933,0.891578,0.792640,0.889375,0.787070,0.737642,0.785531,0.740767,0.789023,0.734376,0.786730,0.731585,0.799880,0.902954,0.793000,0.902998,0.807354,0.897397,0.806047,0.901652,0.799243,0.893134,0.805545,0.893567,0.792478,0.893143,0.781941,0.737786,0.781930,0.738804,0.782803,0.734548,0.785576,0.732204,0.793451,0.901275,0.792714,0.900452,0.792232,0.901737,0.794390,0.900824,0.794030,0.895333,0.792994,0.894939,0.792381,0.895831,0.799795,0.894281,0.793253,0.894490,0.791754,0.894566,0.805115,0.894073,0.806674,0.897434,0.800261,0.897774,0.794268,0.897922,0.800220,0.901604,0.805566,0.901216,0.793794,0.901715,0.830067,0.754246,0.888914,0.774996,0.890604,0.779743,0.896127,0.790437,0.911432,0.783638,0.904746,0.769652,0.866270,0.836016,0.861248,0.838003,0.848684,0.836989,0.842023,0.833111,0.841732,0.829123,0.842032,0.827241,0.842213,0.826791,0.836132,0.825063,0.835344,0.823906,0.835202,0.820640,0.836453,0.823728,0.827846,0.800835,0.828236,0.805569,0.828031,0.799571,0.832936,0.803558,0.832052,0.810154,0.835804,0.813631,0.834918,0.815634,0.836618,0.815437,0.836102,0.808430,0.831817,0.797954,0.841822,0.787387,0.834859,0.791118,0.835689,0.827332,0.835289,0.831314,0.836571,0.825812,0.834792,0.825536,0.920690,0.954255,0.913233,0.955041,0.905398,0.950349,0.918029,0.684746,0.912345,0.687196,0.923716,0.682832,0.931313,0.675518,0.925257,0.960146,0.918597,0.959562,0.912685,0.957225,0.904180,0.953906,0.917003,0.681641,0.911300,0.683210,0.915684,0.678216,0.922806,0.679095,0.931280,0.674142,0.920893,0.675674,0.913150,0.669042,0.918868,0.667974,0.930082,0.672961,0.926590,0.663411,0.923447,0.964302,0.916489,0.964453,0.919148,0.973698,0.924623,0.962190,0.911515,0.959438,0.908151,0.969275,0.900384,0.965027,0.902372,0.957404,0.909721,0.679120,0.907434,0.670830,0.912539,0.665696,0.918669,0.664277,0.927045,0.661548,0.916995,0.660956,0.911775,0.662415,0.906762,0.666852,0.900258,0.968706,0.907885,0.971326,0.897689,0.972181,0.906274,0.662826,0.910817,0.657051,0.915912,0.656265,0.925712,0.659949,0.922350,0.653450,0.917288,0.978155,0.909499,0.980688,0.913811,0.984753,0.911103,0.977597,0.903591,0.979555,0.908822,0.982025,0.904518,0.981124,0.900407,0.985914,0.896705,0.984479,0.896779,0.977331,0.905629,0.657419,0.910284,0.650362,0.905424,0.649953,0.906783,0.973109,0.913143,0.973436,0.918547,0.975948,0.914799,0.968856,0.915117,0.649648,0.918381,0.647319,0.911978,0.985046,0.910415,0.991315,0.908275,0.983072,0.904594,0.982420,0.901648,0.986399,0.898888,0.990980,0.896248,0.989324,0.910303,0.644952,0.908153,0.641205,0.907228,0.644910,0.911261,0.640791,0.914007,0.642251,0.913300,0.645453,0.906431,0.995163,0.905394,0.994093,0.905202,0.995138,0.908045,0.983508,0.908411,0.989642,0.910315,0.985879,0.905656,0.987936,0.902714,0.986598,0.904779,0.982948,0.900177,0.991030,0.899608,0.992129,0.900405,0.991448,0.901122,0.990940,0.903314,0.992062,0.905464,0.993249,0.909252,0.990465,0.905877,0.994050,0.910821,0.985754,0.914827,0.642988,0.894918,0.953283,0.891594,0.944624,0.882337,0.943564,0.873689,0.935727,0.888022,0.695748,0.882654,0.701259,0.894149,0.691952,0.900939,0.682624,0.900274,0.679986,0.893571,0.955518,0.887330,0.950509,0.881188,0.945940,0.871629,0.938420,0.880543,0.696284,0.885779,0.692494,0.891293,0.688038,0.888428,0.684737,0.897824,0.678070,0.891463,0.957802,0.883335,0.955365,0.879151,0.947747,0.869177,0.960638,0.860795,0.951747,0.868009,0.941521,0.883266,0.689523,0.876969,0.693319,0.875063,0.678587,0.880466,0.675051,0.888058,0.665812,0.877424,0.962590,0.880783,0.970039,0.873548,0.967378,0.868061,0.962939,0.859336,0.956488,0.869986,0.682762,0.872277,0.674950,0.867065,0.678611,0.877336,0.670805,0.887412,0.663230,0.874551,0.667255,0.869507,0.671370,0.863489,0.675162,0.865546,0.665722,0.871514,0.661989,0.884877,0.661627,0.878088,0.655072,0.876825,0.974729,0.866278,0.975227,0.870504,0.981862,0.869803,0.971428,0.859518,0.971241,0.865254,0.976311,0.860101,0.973480,0.852956,0.977610,0.847424,0.973862,0.851988,0.965579,0.865778,0.964662,0.855764,0.959947,0.878961,0.972287,0.859597,0.669289,0.861023,0.658280,0.866233,0.655041,0.869986,0.649729,0.868089,0.981428,0.863692,0.988628,0.864112,0.977424,0.859679,0.975071,0.854339,0.978708,0.848975,0.983158,0.846388,0.979796,0.854541,0.653634,0.853664,0.648611,0.852922,0.649447,0.858676,0.652244,0.857362,0.646339,0.861682,0.646449,0.862801,0.650799,0.863096,0.646815,0.862579,0.987064,0.857244,0.991812,0.850614,0.983759,0.849462,0.984896,0.850744,0.984355,0.850870,0.985507,0.856790,0.989013,0.855204,0.989885,0.856380,0.990036,0.855722,0.991281,0.862416,0.986578,0.861832,0.985707,0.865650,0.981800,0.863634,0.977871,0.858908,0.982358,0.855640,0.979352,0.859706,0.975763,0.851874,0.984016,0.851771,0.984973,0.853180,0.987561,0.854353,0.986505,0.857001,0.990164,0.866340,0.981854,0.855109,0.660393,-8.460990,-59.379379,-8.206886,-59.027504,-8.177965,-59.097862,8.822780,-59.157089,8.622465,-58.762329,8.876925,-59.113945,13.984315,-32.484772,13.545693,-32.495609,13.557876,-32.427456,-13.842990,-34.611324,-13.416310,-34.555832,-13.795394,-34.670319,13.732314,-40.635761,13.432740,-40.596081,13.432357,-40.502579,10.591091,-69.149979,10.352279,-68.962463,10.657739,-69.084396,10.596660,-95.431725,10.737661,-95.324959,10.695921,-95.415802,12.362244,-49.874660,12.629207,-49.493816,12.697278,-49.500587,13.274964,-37.945854,13.229000,-37.919163,13.387772,-37.494656,12.961361,-32.529961,13.098976,-31.857960,13.140035,-31.891712,10.274218,-90.115471,10.401778,-89.998207,10.420089,-90.058258,15.043215,-94.362648,14.556004,-93.944740,15.222637,-94.352165,13.853507,-95.861801,13.357208,-95.495041,13.365824,-95.444450,-0.005246,-70.136879,-0.078272,-70.101875,-0.165084,-69.540825,4.350590,-97.258423,4.555058,-96.919731,4.633071,-96.941452,14.941442,-83.228706,14.476690,-82.901382,14.551892,-82.834091,14.951837,-84.180748,14.485497,-83.776413,14.952966,-84.099838,11.537032,-91.546165,11.009404,-91.179054,11.056707,-91.158539,10.781414,-92.818336,10.378214,-92.334496,10.828910,-92.798271,11.280144,-93.746971,10.821638,-93.290909,10.834367,-93.229439,14.309192,-88.817635,13.883385,-88.283554,14.387814,-88.754364,13.999948,-95.757965,13.843659,-95.646820,13.951166,-95.667999,13.024047,-84.402336,13.109818,-84.415741,13.035783,-84.632477,13.689115,-52.779064,13.669120,-53.006664,13.584809,-52.985977,13.883405,-65.477402,13.787733,-65.666740,13.695630,-65.612862,11.872072,-79.083267,12.009585,-78.921730,12.112242,-78.931953,11.414100,-51.589828,11.312364,-51.572723,11.256871,-51.478642,1.277762,-33.954334,1.142531,-33.941746,1.189699,-33.884022,12.364657,-45.585289,12.305268,-45.809265,12.293865,-45.561935,-8.850468,-93.506126,-8.986697,-93.304855,-8.784489,-93.447731,-8.904322,-93.420799,-9.151699,-93.235748,-9.040214,-93.219299,-11.453515,-95.623665,-11.631572,-95.456261,-11.562709,-95.401299,-11.518900,-95.763405,-11.662234,-95.489403,-11.484176,-95.656807,12.775829,-93.652481,12.849409,-93.638603,12.794418,-93.763039,11.944618,-84.375519,11.990527,-84.132072,12.018049,-84.360870,8.311617,-28.876398,8.467346,-28.885519,8.467771,-28.948776,12.984776,-95.667610,12.427067,-95.337982,12.993793,-95.617081,12.741583,-95.253860,12.128497,-94.948189,12.185697,-94.921173,-1.656981,-57.302326,-1.812845,-56.709999,-1.762474,-56.619122,13.401567,-95.215141,13.465030,-94.939438,13.551427,-94.994499,14.073084,-90.479324,14.064716,-90.249565,14.164513,-90.287346,11.400860,-84.161392,11.321863,-84.096161,11.567871,-83.954544,10.660368,-85.731979,10.631994,-85.656189,10.954362,-85.421272,13.749856,-96.569511,14.065606,-96.280945,14.126808,-96.325729,10.312885,-88.995880,10.257381,-88.944199,10.484790,-88.585663,14.327634,-89.165489,14.172054,-89.142807,13.858109,-88.689438,7.517989,-99.126396,7.470605,-99.081993,7.679803,-98.769737,12.330380,-91.019043,12.623640,-90.819656,12.669532,-90.865601,8.438109,-65.257118,8.416486,-65.189331,8.685714,-65.003250,14.627237,-73.901558,14.341627,-73.456146,14.651048,-73.834511,9.095107,-99.294472,8.643851,-98.975883,8.687460,-98.957146,-6.309224,-97.510368,-6.545047,-97.329575,-6.446133,-97.318855,4.028459,-60.067886,3.913655,-60.110489,3.931307,-60.046432,8.799510,-78.670860,8.710743,-78.651558,8.670444,-78.565216,9.568031,-95.426865,9.717682,-95.284653,9.807284,-95.299614,11.939561,-86.682671,11.871679,-86.619507,12.072275,-86.524536,13.927516,-97.568817,13.967184,-97.378014,14.042761,-97.431732,13.965070,-97.528076,13.878999,-97.486481,14.004469,-97.337219,14.193977,-96.568817,14.091134,-96.438324,14.177069,-96.480202,14.296133,-84.012596,14.099771,-83.459465,14.381691,-83.980103,8.925035,-98.374161,8.556691,-97.959877,8.573243,-97.904312,8.355353,-98.762405,8.031160,-98.329025,8.398997,-98.743759,12.722656,-92.308640,12.866405,-92.244400,12.863041,-92.302277,13.491662,-93.995811,13.510197,-93.898415,13.576399,-93.906883,-9.795903,-89.552467,-9.939250,-89.324028,-9.777518,-89.455040,-9.659293,-88.855782,-9.820530,-88.724167,-9.766180,-88.671822,-6.329675,-97.525833,-6.466587,-97.334320,-6.272655,-97.476410,14.236825,-64.708870,14.086831,-64.876488,14.191666,-64.660141,13.860793,-73.542923,13.754999,-73.738510,13.693391,-73.693153,11.955026,-85.668877,12.096678,-85.497459,12.155069,-85.572754,14.094174,-93.348129,14.144268,-93.158401,14.212454,-93.193100,13.778739,-91.720879,13.886901,-91.537666,13.844940,-91.729362,14.652312,-72.932625,14.350537,-72.548126,14.434138,-72.510887,12.250713,-96.071533,12.342727,-95.845619,12.407582,-95.904831,13.054151,-97.105659,13.033602,-97.017815,13.149135,-96.880974,9.101338,-97.300018,9.037855,-97.239342,9.278923,-97.115562,-0.050920,-77.449059,-0.365604,-77.028038,-0.351800,-76.938019,1.437961,-79.934807,1.370195,-79.995255,1.034846,-79.506149,-0.723387,-88.372421,-0.981118,-87.973755,-0.907505,-87.920578,1.322317,-95.630188,1.107918,-95.938904,1.251752,-95.621597,-0.157121,-88.901726,-0.227442,-88.891335,-0.420165,-88.443085,11.951973,-95.731445,11.584839,-95.350975,11.600670,-95.306366,11.020895,-94.728928,10.576371,-94.396385,11.036303,-94.684166,10.654741,-95.849701,10.154050,-95.540581,10.208461,-95.519516,14.392215,-44.911674,14.354063,-44.955818,14.295015,-44.811089,9.191957,-56.408825,9.712980,-55.998264,9.759926,-56.023338,3.365324,-57.796097,3.295102,-57.824638,2.766390,-57.510960,6.938125,-70.070847,6.598969,-69.793655,6.578622,-69.700493,11.444744,-69.973648,11.361409,-69.917107,11.360862,-69.817390,13.257736,-54.382694,12.945033,-54.283054,13.188460,-54.309608,13.022527,-72.978523,12.778499,-72.958221,12.776807,-72.861237,12.086400,-91.181671,12.357642,-91.200325,12.309743,-91.284683,12.822961,-100.882309,13.093884,-100.908287,13.067163,-100.982201,12.866620,-102.817566,12.866247,-102.748840,13.137600,-102.842941,9.073038,-103.838890,9.182030,-103.856033,9.176656,-103.924553,-5.391347,-52.312393,-5.301504,-52.056511,-5.199717,-52.013935,-5.479293,-52.366909,-5.556515,-52.344051,-5.387825,-52.111603,-13.340547,-16.656225,-13.141463,-16.450745,-13.105744,-16.522923,12.688135,-95.984390,12.430875,-95.894440,12.715661,-95.921913,12.907287,-91.773567,12.645102,-91.758293,12.651335,-91.679962,7.995609,-85.981514,8.009230,-85.914604,8.118314,-85.929680,-13.297531,-16.633982,-13.275479,-16.526093,-13.042585,-16.389481,13.618537,-73.607079,13.307432,-73.436752,13.230067,-73.368889,13.055981,-103.305473,12.987640,-103.302452,12.969307,-103.159668,10.624401,-63.001595,10.575675,-62.980179,10.872732,-62.622421,12.881230,-51.586823,13.034289,-51.108406,13.074604,-51.163929,12.682769,-102.708878,12.618953,-102.683678,12.754676,-102.585388,2.995959,-99.839607,3.625276,-99.631645,3.062109,-99.877167,0.985841,-85.628029,1.208674,-85.424957,1.215383,-85.499542,-5.641085,-61.351681,-5.567578,-61.367226,-5.794451,-61.565639,3.659934,-22.160139,3.677361,-22.206676,3.548326,-22.188721,15.122074,-91.502365,14.718477,-91.268417,14.764106,-91.248741,-0.767049,-59.732559,-0.841659,-59.744831,-0.855953,-59.274609,-1.695662,-74.418571,-1.716778,-74.045013,-1.641710,-74.035957,16.863859,-89.267563,16.527975,-89.073776,16.582449,-89.020607,16.882736,-90.074554,16.547045,-89.825439,16.884001,-90.017349,13.784990,-85.789040,13.434640,-85.527672,13.471901,-85.512047,13.153358,-88.131516,12.920868,-87.772179,13.190841,-88.116432,9.921888,-81.386375,10.002102,-81.282799,10.021733,-81.327881,12.937485,-94.946350,12.973832,-94.852158,13.013388,-94.922813,14.108507,-95.074722,14.161071,-95.058762,14.125189,-95.153130,12.065913,-73.084190,12.107476,-73.268417,12.055941,-73.287437,13.738688,-72.776955,13.801112,-72.779839,13.762624,-72.964287,14.166249,-36.977837,14.176563,-37.165897,14.114274,-37.160873,16.438196,-49.926250,16.296507,-50.047066,16.378389,-49.877457,16.414982,-51.364521,16.335911,-51.519943,16.271051,-51.482655,14.615581,-70.237648,14.417015,-70.350235,14.542040,-70.228661,13.892673,-76.693336,13.843441,-76.644051,14.047186,-76.541138,15.962428,-90.301476,16.031305,-90.085304,16.088772,-90.124687,16.244465,-88.752647,16.217203,-88.684731,16.305099,-88.534027,15.778230,-91.860542,15.666670,-91.787521,15.743754,-91.795982,15.715800,-92.313393,15.641265,-92.312592,15.604035,-92.240685,15.974903,-92.645164,15.618763,-92.339897,15.693297,-92.340706,16.144955,-93.696373,15.841523,-93.345139,16.201698,-93.645638,13.684156,-89.106331,13.406111,-88.768555,13.423233,-88.722450,-3.678336,-59.681759,-3.676804,-59.265232,-3.622738,-59.214615,12.968405,-41.026463,12.872578,-40.932632,12.951640,-40.954327,13.470295,-42.023144,13.398257,-42.005836,13.370124,-41.933960,-14.997254,-17.236189,-14.942761,-17.174932,-14.928212,-17.274948,-5.667913,-32.948902,-5.748567,-32.888000,-5.696026,-32.872982,11.026681,-31.728348,11.025577,-31.918613,10.972424,-31.721851,-11.192471,-90.810699,-11.450079,-90.728493,-11.370812,-90.712029,-11.231830,-90.855171,-14.070986,-94.888214,-14.222600,-94.756950,-14.179515,-94.716080,-14.083763,-94.967354,15.895675,-80.430206,15.818715,-80.420677,15.889191,-80.245941,15.967819,-80.565758,15.963218,-80.381439,16.034391,-80.404495,13.107097,-88.970459,13.094746,-88.914589,13.341142,-88.757545,16.110559,-95.035599,16.349346,-94.828011,16.389048,-94.860359,11.833025,-83.766594,11.800739,-83.726837,12.012625,-83.495049,5.979960,-96.253494,5.730341,-96.444046,5.926861,-96.231606,-0.867450,-74.270615,-0.914430,-74.237587,-0.873793,-73.853333,16.091070,-91.954453,15.786285,-91.669373,15.799109,-91.631371,15.376079,-92.465897,15.015273,-92.216316,15.389645,-92.428146,17.124796,-94.898666,16.815971,-94.591660,17.253653,-94.888863,16.279768,-95.354126,15.871772,-94.964226,16.448288,-95.337158,15.324058,-93.707718,14.914047,-93.355026,14.928859,-93.304855,0.136135,-72.859138,0.069894,-72.823715,0.073586,-72.321930,5.507284,-96.593239,5.191533,-96.873856,5.435730,-96.570374,11.645545,-85.543243,11.599204,-85.495865,11.858644,-85.162498,15.194614,-96.072105,15.497373,-95.773209,15.550689,-95.812569,11.699844,-86.615936,11.676986,-86.544579,11.984038,-86.299339,15.985688,-86.304291,15.542723,-85.992256,15.987007,-86.229362,13.301128,-88.324387,12.816893,-88.030441,12.863181,-88.005348,12.501411,-90.346687,12.158634,-89.910431,12.548094,-90.322342,9.783461,-86.254456,9.900790,-86.125786,9.922644,-86.186081,13.209686,-95.052200,13.280584,-95.032661,13.228017,-95.154716,11.567734,-77.950783,11.612552,-78.221008,11.542404,-78.243088,13.035908,-77.983078,13.119053,-77.989151,13.058098,-78.256104,13.532085,-46.543018,13.536371,-46.816601,13.453534,-46.807217,15.398338,-56.720455,15.212923,-56.914993,15.315252,-56.661232,15.392078,-58.224716,15.291290,-58.458763,15.202640,-58.415337,13.665044,-75.611969,13.833150,-75.420448,13.929326,-75.425293,13.548158,-44.233585,13.452291,-44.224491,13.402527,-44.135414,0.001862,-30.061199,-0.126949,-30.028395,-0.069010,-29.983660,11.201356,-41.581013,11.182499,-41.855991,11.129482,-41.567146,-10.621209,-92.316437,-10.807416,-92.097084,-10.565503,-92.263573,-10.463736,-92.649689,-10.755214,-92.445099,-10.651076,-92.431305,-12.858312,-95.494370,-13.060287,-95.287666,-13.001489,-95.238274,-12.782778,-95.608658,-12.961254,-95.300743,-12.759067,-95.507240,6.024398,-27.599247,6.036228,-27.662916,5.870605,-27.612684,14.297214,-93.135323,13.759997,-92.858749,13.818041,-92.830040,15.973365,-85.226151,15.530773,-84.985901,15.602290,-84.914131,15.195488,-91.575905,14.800208,-91.122337,15.271385,-91.508781,12.965125,-91.374001,12.567835,-90.969635,12.584834,-90.907791,14.763447,-94.373466,14.616173,-94.279488,14.718170,-94.289703,14.922017,-84.655708,14.922029,-84.389191,15.016222,-84.418739,15.070126,-91.742210,15.031642,-91.655121,15.153987,-91.431366,14.844934,-92.600609,14.935725,-92.291718,15.012579,-92.339661,13.310709,-79.829193,13.241305,-79.770981,13.512307,-79.594215,-1.892520,-57.109173,-1.963500,-56.574100,-1.901098,-56.498367,14.518498,-93.922890,14.036775,-93.621651,14.534103,-93.872963,0.361417,0.710308,0.387721,0.721915,0.388185,0.708474,0.359763,0.724900,0.329997,0.732285,0.360000,0.763238,0.332180,0.767645,0.360243,0.801083,0.334420,0.801083,0.364335,0.857759,0.344672,0.857759,0.369350,0.912841,0.349500,0.912841,0.602125,0.819013,0.626654,0.820690,0.613056,0.808364,0.619411,0.837899,0.593353,0.828086,0.613112,0.852730,0.604672,0.873226,0.578523,0.841828,0.579047,0.883266,0.563233,0.846656,0.567046,0.889087,0.658022,0.714551,0.623045,0.752308,0.658175,0.748031,0.622845,0.708325,0.587916,0.756585,0.587668,0.702100,0.560591,0.703966,0.550585,0.755769,0.528614,0.716865,0.679042,0.973118,0.651725,0.985913,0.653994,0.994469,0.673855,0.963265,0.704631,0.934375,0.693939,0.925431,0.709031,0.892035,0.697042,0.885933,0.716795,0.852219,0.703227,0.846995,0.724197,0.818838,0.691096,0.835082,0.709011,0.805332,0.724476,0.790512,0.700193,0.788648,0.695845,0.796186,0.691069,0.782556,0.681385,0.794602,0.478183,0.857759,0.445347,0.912841,0.470812,0.912841,0.454679,0.857758,0.490898,0.802707,0.452678,0.857759,0.467984,0.801083,0.441022,0.801083,0.471667,0.772141,0.443950,0.767856,0.446724,0.733533,0.471871,0.746594,0.490898,0.749078,0.490898,0.773687,0.304832,0.771756,0.285437,0.772180,0.285437,0.801194,0.304957,0.745141,0.285437,0.747683,0.306819,0.729705,0.285437,0.729717,0.309032,0.717921,0.285437,0.719986,0.310837,0.708433,0.285437,0.710531,0.285437,0.696294,0.490898,0.697685,0.465212,0.709316,0.490898,0.711856,0.466804,0.697146,0.490898,0.680327,0.468599,0.680327,0.490898,0.651963,0.467191,0.651963,0.490898,0.627227,0.467591,0.626820,0.490898,0.603928,0.467959,0.603928,0.490898,0.567772,0.468531,0.567772,0.440927,0.603928,0.440336,0.567772,0.412093,0.603928,0.411463,0.567772,0.389465,0.603928,0.389304,0.567772,0.366309,0.603928,0.366757,0.567772,0.337678,0.603928,0.337411,0.627227,0.310940,0.626820,0.311334,0.651963,0.285437,0.651963,0.285437,0.627227,0.310579,0.603928,0.285437,0.603928,0.310016,0.567772,0.285437,0.567772,0.338095,0.567772,0.285437,0.680327,0.308769,0.680327,0.309969,0.696238,0.333643,0.693503,0.334291,0.705620,0.331877,0.714319,0.308274,0.801083,0.298474,0.857759,0.318593,0.857759,0.323632,0.912841,0.304117,0.912841,0.695835,0.769622,0.705684,0.779954,0.569629,0.801507,0.580783,0.794324,0.548896,0.813334,0.544333,0.821336,0.739906,0.800347,0.728952,0.825031,0.748397,0.806289,0.745367,0.837029,0.728728,0.856508,0.670512,0.744079,0.670392,0.717802,0.532108,0.835011,0.549145,0.853777,0.502808,0.864493,0.760078,0.823497,0.775289,0.865916,0.786210,0.855890,0.762916,0.880436,0.704713,0.740519,0.704623,0.720751,0.515688,0.878745,0.720007,0.736428,0.719951,0.724216,0.597698,0.792846,0.362095,0.701484,0.388380,0.700149,0.414803,0.702038,0.415070,0.711047,0.417628,0.725604,0.387641,0.761722,0.387562,0.801083,0.387655,0.857759,0.386459,0.912841,0.639240,0.825269,0.638952,0.847315,0.639181,0.862617,0.637715,0.891894,0.601214,0.892678,0.597756,0.912130,0.583392,0.918336,0.571315,0.931289,0.603188,0.960815,0.593496,0.970687,0.625740,0.985950,0.621503,0.994614,0.528717,0.739695,0.627991,0.975710,0.610781,0.954659,0.636878,0.921540,0.637296,0.906890,0.676089,0.913894,0.675362,0.895135,0.672673,0.876850,0.663429,0.855160,0.659778,0.841556,0.675889,0.820161,0.665696,0.809158,0.423091,0.912841,0.430049,0.857759,0.414066,0.801083,0.415968,0.762967,0.444665,0.715398,0.470241,0.730810,0.467269,0.718930,0.490898,0.730960,0.490898,0.721244,0.442333,0.706442,0.443291,0.694043,0.443033,0.680327,0.441710,0.651963,0.441306,0.627227,0.412498,0.627223,0.389568,0.627227,0.366021,0.627223,0.337126,0.651963,0.334369,0.680327,0.363089,0.691578,0.362592,0.695548,0.388516,0.692940,0.388655,0.690088,0.388945,0.680327,0.364916,0.680327,0.365715,0.651963,0.389678,0.651963,0.412929,0.651963,0.412512,0.680327,0.414057,0.691794,0.414421,0.696053,0.408038,0.857759,0.404498,0.912841,0.652291,0.820828,0.665640,0.952891,0.650395,0.977645,0.842838,0.821201,0.837437,0.816913,0.842760,0.816606,0.836889,0.820755,0.837243,0.824586,0.836453,0.823728,0.836051,0.820692,0.835344,0.823906,0.835202,0.820640,0.836567,0.817654,0.835453,0.817353,0.836249,0.816196,0.834918,0.815634,0.834792,0.825536,0.836132,0.825063,0.835689,0.827332,0.842424,0.825772,0.850879,0.821718,0.850172,0.816827,0.842534,0.815618,0.842253,0.815189,0.836618,0.815437,0.835804,0.813631,0.842213,0.826791,0.849847,0.826490,0.851279,0.828234,0.842032,0.827241,0.850420,0.827079,0.841732,0.829123,0.842023,0.833111,0.835289,0.831314,0.841822,0.787387,0.831817,0.797954,0.834859,0.791118,0.841280,0.793888,0.853559,0.782880,0.857091,0.788781,0.859931,0.793952,0.843967,0.798301,0.845010,0.803051,0.861286,0.799470,0.864364,0.792562,0.860837,0.786523,0.857180,0.780909,0.864846,0.785976,0.867825,0.791287,0.881629,0.785521,0.869702,0.797383,0.884714,0.793532,0.890604,0.779743,0.896127,0.790437,0.901780,0.799450,0.919124,0.793570,0.921865,0.810929,0.905086,0.811724,0.915046,0.830141,0.926981,0.834519,0.907238,0.839247,0.917457,0.844073,0.902890,0.844418,0.906039,0.850866,0.890186,0.855677,0.910020,0.858104,0.890344,0.866549,0.901235,0.874448,0.890426,0.879990,0.900746,0.886486,0.887265,0.893836,0.894843,0.902842,0.883887,0.909029,0.888649,0.917186,0.868928,0.928510,0.883057,0.726770,0.863367,0.698350,0.881285,0.708042,0.861389,0.711310,0.879729,0.732293,0.895025,0.728535,0.887664,0.738223,0.907829,0.741042,0.907151,0.724300,0.890900,0.712751,0.891278,0.918614,0.893855,0.926005,0.885932,0.924023,0.901318,0.912219,0.901133,0.932087,0.882337,0.943564,0.891594,0.944624,0.894918,0.953283,0.908500,0.937986,0.909238,0.918935,0.919804,0.928087,0.926818,0.917507,0.929717,0.934738,0.923837,0.946539,0.930458,0.949724,0.920690,0.954255,0.925257,0.960146,0.938477,0.686111,0.923716,0.682832,0.931313,0.675518,0.929000,0.693318,0.918029,0.684746,0.923339,0.696984,0.938220,0.708910,0.928500,0.712904,0.941609,0.719764,0.927623,0.728903,0.937469,0.744444,0.950210,0.730743,0.962396,0.714963,0.974715,0.730005,0.960878,0.744263,0.984609,0.742216,0.969837,0.755380,0.994849,0.757738,0.984444,0.771321,0.632099,0.614243,0.621713,0.614243,0.621713,0.595128,0.632099,0.629288,0.643477,0.629288,0.643476,0.614243,0.662017,0.614243,0.662017,0.629288,0.710575,0.614243,0.710576,0.629287,0.759344,0.614242,0.759344,0.629287,0.783905,0.614242,0.783905,0.629286,0.812735,0.629286,0.812735,0.614241,0.827712,0.629286,0.827711,0.614241,0.842607,0.614241,0.842607,0.595126,0.886033,0.614240,0.886033,0.595125,0.886033,0.578795,0.932329,0.578795,0.932329,0.595125,0.993006,0.578794,0.932329,0.557862,0.886033,0.557862,0.842607,0.557863,0.842607,0.578796,0.827711,0.578796,0.827711,0.595126,0.812735,0.595126,0.783905,0.595127,0.759344,0.595127,0.710575,0.595127,0.662017,0.595128,0.643476,0.595128,0.632099,0.595128,0.621713,0.578798,0.983376,0.875067,0.993702,0.885883,0.980695,0.898840,0.969822,0.885677,0.969288,0.908551,0.958815,0.896223,0.955134,0.918613,0.944071,0.908053,0.938510,0.919172,0.943241,0.929571,0.953068,0.706233,0.945755,0.696034,0.938439,0.937715,0.931634,0.926873,0.934831,0.895825,0.923149,0.904656,0.914923,0.912188,0.911762,0.902840,0.901691,0.898306,0.888495,0.714229,0.911588,0.891889,0.926547,0.883643,0.942201,0.873720,0.934242,0.862563,0.919041,0.871544,0.924464,0.850676,0.941225,0.840618,0.935857,0.814964,0.949215,0.819631,0.959489,0.821136,0.961960,0.838999,0.632098,0.537438,0.621712,0.537438,0.621712,0.519742,0.632099,0.557865,0.621712,0.557865,0.632099,0.578798,0.643476,0.578798,0.662017,0.578798,0.710575,0.578797,0.759343,0.578797,0.783904,0.578796,0.812735,0.578796,0.812735,0.557863,0.783904,0.557863,0.759343,0.557864,0.710575,0.557864,0.662017,0.557865,0.643476,0.557865,0.643476,0.537438,0.632098,0.519742,0.621712,0.502397,0.963062,0.807175,0.951660,0.803001,0.939017,0.800078,0.939545,0.786356,0.950337,0.780653,0.972000,0.794356,0.621712,0.485162,0.632098,0.502397,0.632098,0.485162,0.643475,0.502397,0.643475,0.485162,0.662016,0.485162,0.662016,0.502397,0.710574,0.485161,0.710574,0.502396,0.710575,0.519741,0.662016,0.519742,0.662016,0.537438,0.710575,0.537437,0.643476,0.519742,0.759343,0.537437,0.759343,0.519740,0.759343,0.502395,0.759343,0.485161,0.759342,0.471242,0.783903,0.471242,0.783904,0.485161,0.812734,0.485160,0.812734,0.471242,0.827710,0.471241,0.827710,0.485160,0.842606,0.471241,0.842608,0.629286,0.886033,0.629285,0.932330,0.614240,0.993006,0.595124,0.993006,0.614239,0.993006,0.629284,0.932330,0.629284,0.993005,0.471240,0.932328,0.485159,0.932328,0.471240,0.993005,0.485158,0.993005,0.502393,0.932329,0.502393,0.993005,0.519738,0.932329,0.519738,0.886032,0.502394,0.886032,0.519739,0.842607,0.519739,0.842606,0.502394,0.827710,0.502395,0.827711,0.519740,0.827711,0.537436,0.812734,0.519740,0.812734,0.537436,0.783904,0.537436,0.783904,0.519740,0.783904,0.502395,0.812734,0.502395,0.842606,0.485160,0.886032,0.485159,0.886032,0.471241,0.827711,0.557863,0.842607,0.537436,0.886032,0.537435,0.932329,0.537435,0.993006,0.557861,0.993005,0.537434,0.710574,0.471243,0.662016,0.471244,0.643475,0.471244,0.632098,0.471244,0.621712,0.471244,0.978415,0.783340,0.959730,0.768836,0.949657,0.757588,0.938332,0.768904,0.930718,0.775506,0.911432,0.783638,0.904746,0.769652,0.888914,0.774996,0.876243,0.776528,0.861338,0.779019,0.871924,0.836666,0.866270,0.836016,0.866428,0.827824,0.860639,0.827878,0.861248,0.838003,0.848684,0.836989,0.852414,0.829999,0.852638,0.821894,0.853937,0.821927,0.852830,0.813929,0.851544,0.815460,0.851508,0.821790,0.842046,0.813405,0.843028,0.809698,0.849652,0.807217,0.836102,0.808430,0.861522,0.805831,0.865959,0.799463,0.866499,0.806552,0.872480,0.805344,0.888193,0.802809,0.889567,0.813619,0.903282,0.826447,0.899403,0.835113,0.890615,0.847683,0.871595,0.859328,0.877745,0.870445,0.881545,0.882065,0.873698,0.883390,0.876478,0.893320,0.850496,0.897240,0.862803,0.735949,0.844412,0.742710,0.842902,0.728978,0.865288,0.747730,0.841825,0.749603,0.862997,0.756287,0.875471,0.749216,0.871093,0.759407,0.889426,0.755563,0.882294,0.764915,0.899586,0.763539,0.886790,0.770748,0.909130,0.759916,0.873562,0.735841,0.875099,0.895087,0.878817,0.900782,0.871558,0.896349,0.859751,0.914190,0.868683,0.918768,0.866070,0.930611,0.860691,0.696299,0.856052,0.708739,0.858020,0.718337,0.853736,0.725079,0.855237,0.901347,0.856788,0.915817,0.861670,0.923252,0.862675,0.932200,0.857300,0.695693,0.850809,0.706801,0.847602,0.712964,0.853005,0.715508,0.849466,0.721805,0.850359,0.906316,0.854262,0.917865,0.855694,0.926742,0.845071,0.932931,0.837731,0.927953,0.835094,0.929884,0.838800,0.936505,0.842098,0.943719,0.838087,0.944957,0.832857,0.939119,0.828525,0.940804,0.823346,0.934452,0.832058,0.931272,0.816431,0.926176,0.822642,0.921238,0.827913,0.919442,0.831812,0.915519,0.844280,0.908438,0.844281,0.719325,0.830381,0.712833,0.833049,0.705752,0.837121,0.699481,0.840307,0.686410,0.837423,0.684291,0.832388,0.696804,0.829020,0.703745,0.825883,0.710228,0.820925,0.708203,0.824800,0.702054,0.827349,0.695429,0.833830,0.683623,0.820364,0.692466,0.816624,0.698198,0.813560,0.704289,0.808374,0.693204,0.811869,0.688601,0.803523,0.688625,0.804827,0.697900,0.809149,0.932946,0.813789,0.938775,0.822882,0.936933,0.826871,0.941453,0.825233,0.942085,0.821760,0.938328,0.814674,0.940323,0.807218,0.942817,0.808517,0.943963,0.815682,0.941352,0.821450,0.939027,0.824497,0.942362,0.809652,0.944551,0.817482,0.945020,0.818593,0.948963,0.811843,0.950199,0.810875,0.947334,0.810847,0.949862,0.810103,0.947603,0.809294,0.947889,0.808021,0.945669,0.809116,0.945430,0.806927,0.944559,0.808387,0.944506,0.806143,0.938743,0.800807,0.691548,0.797904,0.687181,0.799938,0.683950,0.809862,0.950374,0.810941,0.951000,0.818751,0.950002,0.824482,0.946839,0.811000,0.952955,0.809762,0.951894,0.806460,0.685890,0.803428,0.682458,0.804822,0.682179,0.813160,0.681483,0.818618,0.950512,0.819020,0.952392,0.811433,0.951328,0.827037,0.947438,0.829214,0.948836,0.825158,0.947143,0.824221,0.682522,0.845476,0.941532,0.869938,0.738732,0.923241,0.755291,0.919415,0.716308,0.898241,0.712030,0.888022,0.695748,0.882654,0.701259,0.873689,0.935727,0.881188,0.945940,0.887330,0.950509,0.879151,0.947747,0.868009,0.941521,0.871629,0.938420,0.883266,0.689523,0.880543,0.696284,0.876969,0.693319,0.885779,0.692494,0.891293,0.688038,0.888428,0.684737,0.900274,0.679986,0.897824,0.678070,0.880466,0.675051,0.875063,0.678587,0.869986,0.682762,0.860795,0.951747,0.869177,0.960638,0.883335,0.955365,0.877424,0.962590,0.891463,0.957802,0.893571,0.955518,0.894149,0.691952,0.900939,0.682624,0.905550,0.705412,0.916489,0.702328,0.910973,0.696289,0.913940,0.934624,0.917206,0.943472,0.913233,0.955041,0.918597,0.959562,0.924623,0.962190,0.922806,0.679095,0.931280,0.674142,0.920893,0.675674,0.930082,0.672961,0.918868,0.667974,0.913150,0.669042,0.915684,0.678216,0.917003,0.681641,0.912345,0.687196,0.917180,0.698658,0.910506,0.941923,0.905398,0.950349,0.904180,0.953906,0.912685,0.957225,0.911515,0.959438,0.902372,0.957404,0.911300,0.683210,0.909721,0.679120,0.907434,0.670830,0.900384,0.965027,0.908151,0.969275,0.916489,0.964453,0.923447,0.964302,0.919148,0.973698,0.914799,0.968856,0.913143,0.973436,0.918547,0.975948,0.918669,0.664277,0.927045,0.661548,0.926590,0.663411,0.925712,0.659949,0.916995,0.660956,0.915912,0.656265,0.922350,0.653450,0.915117,0.649648,0.910284,0.650362,0.910817,0.657051,0.911775,0.662415,0.912539,0.665696,0.906762,0.666852,0.900258,0.968706,0.907885,0.971326,0.906783,0.973109,0.897689,0.972181,0.906274,0.662826,0.905629,0.657419,0.896779,0.977331,0.903591,0.979555,0.911103,0.977597,0.917288,0.978155,0.909499,0.980688,0.908822,0.982025,0.904518,0.981124,0.908275,0.983072,0.904594,0.982420,0.900407,0.985914,0.901648,0.986399,0.896705,0.984479,0.905424,0.649953,0.910303,0.644952,0.913300,0.645453,0.914007,0.642251,0.911261,0.640791,0.908153,0.641205,0.907228,0.644910,0.896248,0.989324,0.898888,0.990980,0.900177,0.991030,0.900405,0.991448,0.899608,0.992129,0.902714,0.986598,0.904779,0.982948,0.908045,0.983508,0.905656,0.987936,0.901122,0.990940,0.903314,0.992062,0.905464,0.993249,0.908411,0.989642,0.910315,0.985879,0.911978,0.985046,0.910821,0.985754,0.909252,0.990465,0.906431,0.995163,0.905202,0.995138,0.905394,0.994093,0.914827,0.642988,0.918381,0.647319,0.910415,0.991315,0.905877,0.994050,0.913811,0.984753,0.880783,0.970039,0.873548,0.967378,0.878961,0.972287,0.887412,0.663230,0.888058,0.665812,0.877336,0.670805,0.872277,0.674950,0.867065,0.678611,0.859336,0.956488,0.868061,0.962939,0.865778,0.964662,0.855764,0.959947,0.869507,0.671370,0.863489,0.675162,0.874551,0.667255,0.884877,0.661627,0.871514,0.661989,0.865546,0.665722,0.859597,0.669289,0.851988,0.965579,0.859518,0.971241,0.869803,0.971428,0.876825,0.974729,0.866278,0.975227,0.865254,0.976311,0.860101,0.973480,0.864112,0.977424,0.868089,0.981428,0.866340,0.981854,0.862579,0.987064,0.856380,0.990036,0.861832,0.985707,0.862416,0.986578,0.856790,0.989013,0.855204,0.989885,0.855722,0.991281,0.861682,0.646449,0.858676,0.652244,0.857362,0.646339,0.862801,0.650799,0.866233,0.655041,0.869986,0.649729,0.863096,0.646815,0.857244,0.991812,0.857001,0.990164,0.863692,0.988628,0.870504,0.981862,0.878088,0.655072,0.861023,0.658280,0.855109,0.660393,0.847424,0.973862,0.852956,0.977610,0.854339,0.978708,0.859679,0.975071,0.855640,0.979352,0.859706,0.975763,0.863634,0.977871,0.848975,0.983158,0.850614,0.983759,0.846388,0.979796,0.854541,0.653634,0.853664,0.648611,0.850744,0.984355,0.849462,0.984896,0.851874,0.984016,0.858908,0.982358,0.854353,0.986505,0.853180,0.987561,0.855797,0.989044,0.850870,0.985507,0.865650,0.981800,0.920052,0.763323,0.621713,0.629288,0.875768,0.769115,0.868306,0.772885,0.887138,0.841490,0.889684,0.831233,0.871968,0.827681,0.867317,0.821525,0.860863,0.821768,0.860973,0.815716,0.866608,0.815107,0.872031,0.814995,0.872213,0.821472,0.889440,0.822491,0.868455,0.769755,0.881625,0.852178,0.866051,0.766329,0.857998,0.764435,0.869919,0.874256,0.864567,0.863734,0.844520,0.881936,0.852934,0.888302,0.844360,0.891359,0.846452,0.898687,0.839836,0.727097,0.838153,0.741453,0.836713,0.748084,0.839765,0.756971,0.843603,0.868503,0.841212,0.883494,0.837466,0.884382,0.836743,0.892941,0.842332,0.899610,0.827251,0.895006,0.825786,0.902330,0.835985,0.728344,0.819439,0.739060,0.819117,0.726527,0.832422,0.741203,0.817994,0.745499,0.831421,0.747560,0.834438,0.754981,0.838832,0.871764,0.833077,0.871635,0.820810,0.875955,0.822861,0.888713,0.821229,0.896318,0.822135,0.903309,0.815823,0.725430,0.814373,0.737705,0.813208,0.744616,0.817099,0.752185,0.830067,0.754246,0.812143,0.751013,0.819876,0.889700,0.816655,0.878698,0.816544,0.889523,0.811473,0.878400,0.808275,0.744099,0.807027,0.750297,0.809460,0.738080,0.812164,0.726545,0.802334,0.736703,0.801012,0.742885,0.799188,0.748629,0.804611,0.881521,0.807853,0.890740,0.815568,0.896817,0.810357,0.897185,0.818198,0.903660,0.809020,0.904152,0.808882,0.897306,0.807535,0.902397,0.799742,0.904684,0.802828,0.726993,0.794681,0.735335,0.793465,0.728961,0.792800,0.740509,0.790761,0.745392,0.797163,0.885205,0.798933,0.891578,0.806837,0.892700,0.807354,0.897397,0.805545,0.893567,0.799243,0.893134,0.792478,0.893143,0.793253,0.894490,0.806674,0.897434,0.799795,0.894281,0.805115,0.894073,0.800261,0.897774,0.800220,0.901604,0.794390,0.900824,0.794268,0.897922,0.787070,0.737642,0.782803,0.734548,0.785576,0.732204,0.781941,0.737786,0.785531,0.740767,0.792640,0.889375,0.789023,0.734376,0.786730,0.731585,0.793000,0.902998,0.799880,0.902954,0.793794,0.901715,0.792232,0.901737,0.793451,0.901275,0.792714,0.900452,0.806047,0.901652,0.805566,0.901216,0.792994,0.894939,0.791754,0.894566,0.792381,0.895831,0.794030,0.895333,0.832936,0.803558,0.832052,0.810154,0.828236,0.805569,0.831055,0.809340,0.828031,0.799571,0.972508,0.858495,0.962546,0.874274,0.950081,0.884168,0.955912,0.865068,0.949019,0.853518,0.836571,0.825812,-13.280798,-80.907349,-12.966859,-80.744247,-12.962575,-80.846642,-4.901785,-81.697876,-4.853787,-81.794609,-4.904505,-81.892227,-6.062336,-72.020782,-6.030817,-72.099609,-6.290397,-72.208443,-24.108358,-60.043045,-24.380100,-59.948093,-24.347284,-59.869804,-23.168671,-73.542068,-23.426643,-73.468399,-23.405106,-73.365005,-22.420420,-78.664818,-22.742420,-78.507454,-22.482708,-78.574738,-21.501467,-79.734955,-21.828615,-79.685127,-21.825912,-79.582687,-24.539267,-73.774750,-24.593559,-73.679634,-24.544312,-73.582306,-24.720654,-67.965935,-24.853746,-67.902687,-24.788773,-67.866089,-24.642443,-53.815594,-24.697002,-53.866425,-24.923187,-53.676853,20.527197,-74.708702,20.827028,-74.618347,20.822268,-74.706467,15.069846,-73.377930,14.780270,-73.365578,14.779616,-73.277321,15.147603,-73.347206,14.783456,-73.241791,15.073033,-73.254150,22.319008,-28.725336,22.637953,-28.930254,22.714128,-29.008217,6.021642,-81.272835,6.082910,-81.170525,6.146212,-81.206207,-3.392055,-68.992538,-3.604435,-69.197769,-3.657134,-69.147736,-24.982498,-79.808250,-25.033176,-79.148163,-24.929272,-79.136566,-25.184652,-76.232193,-25.189497,-75.753197,-25.124523,-75.671219,-17.347164,-80.583336,-17.477264,-80.049355,-17.408880,-80.077522,-24.965441,-35.990669,-25.106844,-36.056370,-25.150936,-35.996990,-13.939616,-80.056671,-13.817569,-80.537354,-13.869593,-80.561409,-14.723388,-79.664238,-14.729911,-78.937370,-14.677851,-78.913383,-25.048264,-79.853653,-25.110710,-79.798485,-25.057501,-79.126808,-21.421728,-58.112392,-21.000635,-58.011219,-20.950727,-58.077950,-20.822660,-80.163696,-20.823622,-80.087761,-20.352224,-80.059280,-15.007541,-80.060905,-14.545848,-80.072983,-14.544574,-80.148911,-14.615086,-52.961464,-14.572099,-52.892414,-14.153472,-52.976227,3.087521,-78.545944,3.150949,-79.216942,3.092438,-79.273430,-18.649740,-80.545967,-18.599796,-80.038437,-18.531853,-80.007858,-21.422457,-80.067307,-21.475929,-80.045052,-21.364342,-79.560638,-20.859776,-79.796547,-20.930107,-79.047058,-20.876602,-79.069229,-15.758815,-66.223358,-16.313395,-66.291840,-15.859357,-66.130402,-2.035691,-80.422890,-1.993118,-79.671852,-1.912670,-80.483025,23.437548,-36.366653,24.005960,-36.893520,23.830179,-36.865952,8.616843,-50.366055,8.577897,-50.992306,8.529596,-51.003117,9.252394,-47.405434,9.300345,-47.393166,9.122686,-48.002995,-18.070995,-76.872025,-18.045179,-76.795334,-17.504133,-76.642738,-1.592973,-78.387001,-1.229029,-78.509552,-1.232568,-78.590401,-18.154575,-76.858070,-17.659897,-76.617889,-17.613264,-76.706413,-19.675653,-75.488716,-19.718773,-75.398422,-19.066320,-75.185745,-20.030107,-75.876526,-19.473112,-75.632156,-19.376259,-75.668167,13.383660,-34.481831,13.636287,-34.379208,13.641295,-34.480663,-6.654805,9.365225,-6.634789,9.469424,-6.437697,9.412366,-22.366480,-44.558010,-22.520136,-44.725204,-22.467236,-44.524754,-22.178465,-45.121540,-22.370176,-45.241550,-22.239649,-45.060287,-21.651302,-51.232330,-21.682096,-51.164497,-21.481995,-51.059071,-21.933920,-73.361923,-21.905722,-73.229233,-21.854258,-73.283089,-21.903875,-63.307571,-21.952784,-63.159195,-21.895351,-63.135887,5.222324,-52.074017,5.261543,-52.122009,5.087721,-52.741074,-17.565931,-75.028709,-17.691360,-74.688889,-17.628849,-74.615814,3.340878,-66.729027,3.153528,-66.965942,3.141085,-66.854561,3.179656,-66.878967,3.233875,-66.947433,3.033646,-67.072273,-12.329519,-55.470474,-12.559288,-55.528862,-12.566625,-55.441841,-12.276855,-55.189835,-12.209578,-55.276009,-12.506487,-55.248760,15.233047,-40.448120,15.276448,-40.387516,15.321365,-40.512554,-8.533902,-27.092340,-8.771352,-27.066711,-8.553642,-27.020460,-9.949520,-16.450905,-10.164249,-16.509457,-10.168746,-16.422993,15.664044,-13.831587,15.758834,-13.777785,15.852901,-13.811986,23.269117,-52.401058,22.737137,-52.098820,23.254719,-52.322948,-7.668017,-58.672302,-7.655995,-58.721519,-8.107017,-59.134964,-4.960114,-59.649776,-5.442257,-60.070023,-5.458311,-60.021969,-3.031946,-57.470219,-3.542770,-57.910431,-3.091305,-57.457394,-3.318071,-39.952904,-3.409355,-39.809219,-3.349289,-39.800262,16.696817,-45.509789,17.111588,-45.529202,17.124531,-45.603233,17.180601,-70.488686,17.215401,-70.417297,17.595713,-70.498428,-10.437354,-65.672501,-10.133651,-65.953621,-10.497066,-65.718147,-21.436953,-63.840187,-21.348379,-63.788948,-21.246161,-63.825592,-16.611483,-53.277634,-16.569214,-53.480591,-16.639660,-53.554798,-13.177969,-55.648956,-13.159972,-55.926968,-13.269915,-55.692135,-21.622169,-48.433235,-21.709473,-48.729713,-21.668186,-48.410831,-18.974735,-62.596191,-19.011845,-62.639744,-19.113567,-62.347900,-22.102947,-76.317871,-22.490812,-76.163521,-22.442757,-76.132462,-12.119361,-13.233775,-12.264164,-12.822655,-12.094280,-13.203976,8.407323,-15.310186,8.603148,-14.819048,8.637774,-14.940213,-14.266129,-12.162105,-14.572497,-11.863295,-14.551475,-11.830507,-16.000809,-17.071709,-16.046944,-17.084570,-16.365974,-16.785240,-11.593095,-80.764191,-11.643042,-80.884987,-11.640715,-80.769302,-18.935415,-79.680809,-18.942732,-79.601746,-18.862934,-79.610916,-18.351240,-71.949760,-18.430992,-71.940193,-18.458384,-71.870880,-21.478188,-78.117897,-21.908772,-77.931801,-21.511641,-78.051300,-21.378986,-76.941895,-21.828686,-76.827087,-21.808691,-76.753777,-22.092714,-76.864502,-22.433155,-76.680252,-22.075806,-76.790413,-18.071188,-46.372688,-18.262735,-46.484516,-18.122690,-46.325787,-17.223572,-51.291683,-17.348658,-51.407093,-17.420132,-51.394447,-13.715596,-62.991695,-13.892319,-63.025307,-13.753313,-62.927109,-13.654475,-63.842590,-13.804609,-63.948738,-13.831252,-63.875916,-10.624310,-73.467674,-10.803354,-73.507584,-10.647633,-73.409821,-10.045069,-77.490166,-10.220023,-77.584106,-10.224277,-77.529335,21.423227,-39.709637,21.460184,-39.900852,21.366217,-39.725914,21.534981,-39.928646,-19.859163,-79.002586,-19.786373,-78.933014,-19.780779,-78.987671,16.433493,-1.311489,16.328476,-1.073427,16.473440,-1.267678,16.319803,-1.152127,0.917863,-71.905502,0.724840,-71.938110,0.890703,-71.858734,-0.533980,-66.203041,-0.698285,-66.285591,-0.713459,-66.225090,-1.481217,-49.679893,-1.660182,-49.705791,-1.508716,-49.608021,-1.781858,-48.605221,-1.932562,-48.704159,-1.947334,-48.630840,-3.581584,-26.337696,-3.745150,-26.373541,-3.550321,-26.271770,-5.867065,-19.552500,-5.883842,-19.484892,-5.681700,-19.434368,7.875409,-40.703487,8.155315,-40.711731,7.856202,-40.756355,-1.937450,-1.308768,-2.237119,-1.268038,-2.238681,-1.216882,-19.248594,-36.934601,-19.281847,-36.955376,-19.632938,-36.729897,-19.568060,-34.432007,-19.908785,-34.157215,-19.876650,-34.134743,-18.838043,-29.929428,-19.151180,-29.586153,-18.828705,-29.882147,17.285658,-47.556179,17.645647,-47.254337,17.684103,-47.317162,18.142324,-52.423328,18.159569,-52.351711,18.515976,-52.138569,7.795896,-46.056297,7.734661,-46.108875,7.782682,-45.983833,13.246961,-67.168839,13.154365,-67.136734,13.222898,-67.094101,14.119160,-61.008713,14.042029,-61.026592,14.027302,-60.974552,5.081212,-76.564758,4.976224,-76.494034,5.018115,-76.470200,7.104720,-45.187252,7.059463,-45.313324,7.051177,-45.236820,20.553385,-45.190582,20.528040,-45.121414,20.868734,-44.967319,20.329258,-43.141109,20.639849,-42.911270,20.691383,-42.933811,-18.170467,-71.144310,-18.277231,-71.064919,-18.205360,-71.075066,-5.981986,-75.909927,-6.060046,-75.661385,-6.006419,-75.610451,-20.831814,-27.352118,-20.878057,-27.374393,-21.300076,-27.038624,-20.968763,-24.818407,-21.374475,-24.426769,-21.329800,-24.401499,-20.184708,-19.576321,-20.524796,-19.084469,-20.163666,-19.517557,10.904166,-62.844948,10.802372,-62.850113,10.794060,-62.777676,3.550812,16.745242,3.473444,16.811595,3.815094,16.832639,-0.337098,-74.908051,-0.457584,-74.788940,-0.398881,-74.767746,9.040662,-19.383110,9.486972,-18.864929,9.477864,-19.031254,-22.886127,-41.405945,-23.020880,-41.797577,-22.944971,-41.376152,-12.196471,-61.899807,-11.947727,-62.187943,-11.982423,-62.254375,-21.307568,-74.460373,-21.755302,-74.238380,-21.289335,-74.361069,-21.407801,-73.769936,-21.914968,-73.589737,-21.854376,-73.545631,-10.477211,-4.101058,-10.522665,-4.123186,-10.489478,-3.562965,-12.546290,-1.243105,-12.754499,-0.729528,-12.711775,-0.702503,-13.211301,-74.516907,-13.261633,-74.164192,-13.182330,-74.108345,-16.872229,-77.879494,-16.853344,-77.725609,-16.790434,-77.726494,-16.060448,-6.160186,-16.123280,-6.156952,-16.396542,-5.662013,-21.816919,-73.980873,-22.400045,-73.835617,-22.374529,-73.737938,-21.717464,-75.573074,-22.277285,-75.335274,-21.761637,-75.485161,-5.384160,-14.659034,-5.687891,-14.723919,-5.681312,-14.633886,-4.754492,-20.752655,-4.999167,-20.737196,-4.693703,-20.681036,-5.339038,-45.912880,-5.582036,-46.001263,-5.583987,-45.902634,-5.435813,-63.705956,-5.691222,-63.777733,-5.698783,-63.694710,-4.554210,-69.919029,-4.836420,-69.919472,-4.580134,-69.850891,4.907545,15.103659,5.176854,15.174056,5.189714,15.098816,21.298248,-32.546387,21.372538,-32.528851,21.423166,-32.804314,21.149830,-33.255199,21.282768,-33.576263,21.188374,-33.532608,-21.807652,-76.128235,-21.710119,-76.038353,-21.704981,-76.111641,-20.855980,-66.502411,-20.988501,-66.388557,-20.895575,-66.408150,-19.609715,-42.009243,-19.811665,-42.154465,-19.902605,-42.127113,-17.075439,-56.944859,-16.853191,-56.833153,-16.814964,-56.924095,-17.025242,-58.195992,-17.047201,-58.096146,-16.786703,-58.075665,-14.825747,-68.958633,-14.804604,-69.039276,-15.070571,-69.065598,-14.575618,-73.771454,-14.844608,-73.870323,-14.841670,-73.796913,-20.065704,-37.901302,-20.353678,-38.030724,-20.125092,-37.833321,4.778853,-46.048828,4.687734,-46.197681,4.697696,-46.096138,18.226814,-43.045017,18.586111,-42.923355,18.226284,-43.118408,5.109795,-0.761745,4.802361,-0.491548,4.837121,-0.435493,19.124901,-49.551624,19.563044,-49.308277,19.624464,-49.348457,23.102766,-64.727600,23.296207,-65.363670,23.171272,-65.270592,13.897008,-73.596352,13.897177,-73.043549,13.940557,-73.582253,12.174642,-74.223862,12.153668,-73.638092,12.199791,-73.671631,-16.996925,-77.631783,-17.071316,-77.581520,-16.684879,-77.135597,-15.165278,-77.626877,-14.894351,-77.240150,-14.818876,-77.288765,15.879554,-64.857178,16.126783,-64.771866,16.128199,-64.859116,16.959105,-59.826309,17.158522,-59.807487,16.915016,-59.902912,18.540630,-40.365143,18.714703,-40.241707,18.737965,-40.330780,19.145311,-38.476791,19.356520,-38.432465,19.187044,-38.562145,22.916019,6.409994,22.890692,6.624705,22.966583,6.619797,2.114069,12.838032,1.934391,12.986060,2.133392,12.901556,-15.306681,-75.267967,-15.531266,-75.314453,-15.537746,-75.239594,-15.253809,-75.373199,-15.540181,-75.344475,-15.315587,-75.298042,-21.055426,-57.724087,-21.215376,-57.442673,-21.167120,-57.369671,4.603061,-6.450190,4.590902,-6.295102,4.642870,-6.316085,23.306105,-44.939995,23.289036,-44.844212,23.353600,-44.828709,25.048914,-41.279079,25.128967,-41.330242,25.136259,-41.418324,25.380068,-60.340065,25.146841,-59.807037,25.462463,-60.302536,6.507969,-76.048309,6.708241,-75.535553,6.763387,-75.525551,4.758768,-76.718781,5.011839,-76.245789,4.792472,-76.750679,3.295539,-76.411102,3.414363,-75.874008,3.447109,-75.906883,18.123306,-71.439171,18.487347,-71.493896,18.489887,-71.558449,19.471191,-76.817299,19.510464,-76.758789,19.836651,-76.861588,25.652040,-68.435463,25.397581,-67.974525,25.679745,-68.370674,25.708574,-68.620079,25.422039,-68.227081,25.506004,-68.193199,-1.403004,-78.924065,-1.376065,-78.865341,-1.046874,-78.954231,2.028239,-74.877831,2.342114,-74.887886,2.360008,-74.956551,-14.731518,-77.890511,-14.386044,-77.551453,-14.716591,-77.959885,14.365649,-72.156265,14.434658,-71.635384,14.477988,-71.620621,-25.398106,-48.771484,-25.492441,-48.669220,-25.453745,-48.627327,-18.219036,-77.373703,-17.914734,-76.947784,-17.825687,-76.933861,-1.132264,-73.645004,-1.090567,-73.568359,-0.939541,-73.753502,-4.819042,-70.704155,-4.684138,-70.813225,-4.686984,-70.903267,-12.080206,-60.351814,-12.050611,-60.541508,-12.156161,-60.403828,-12.635977,-59.993122,-12.523940,-60.145214,-12.610312,-60.183388,-22.052896,-44.977966,-22.097242,-45.164902,-22.128944,-44.978676,-24.535780,-42.427784,-24.565491,-42.632359,-24.622484,-42.599228,-4.171913,-78.476830,-4.367951,-78.516937,-4.194127,-78.405045,-4.075748,-78.368965,-4.299883,-78.504105,-4.271725,-78.409370,-21.100924,-73.569733,-21.141153,-73.455101,-21.077887,-73.473625,-15.694207,-69.871223,-15.815965,-69.983810,-15.784316,-69.899467,20.446611,-74.716385,20.526869,-74.626007,20.821939,-74.623764,3.057908,-59.271179,3.019642,-59.335114,2.881572,-59.273376,-9.558550,-80.101013,-9.330141,-79.913712,-9.309689,-80.017326,0.359763,0.724900,0.361417,0.710308,0.387721,0.721915,0.329997,0.732285,0.331877,0.714319,0.304957,0.745141,0.306819,0.729705,0.285437,0.747683,0.285437,0.772180,0.304832,0.771756,0.332180,0.767645,0.360000,0.763238,0.387641,0.761722,0.417628,0.725604,0.415968,0.762967,0.446724,0.733533,0.443950,0.767856,0.414066,0.801083,0.387562,0.801083,0.408038,0.857759,0.430049,0.857759,0.404498,0.912841,0.387655,0.857759,0.386459,0.912841,0.652291,0.820828,0.638952,0.847315,0.639240,0.825269,0.659778,0.841556,0.663429,0.855160,0.639181,0.862617,0.672673,0.876850,0.637715,0.891894,0.675362,0.895135,0.637296,0.906890,0.676089,0.913894,0.636878,0.921540,0.665640,0.952891,0.693939,0.925431,0.673855,0.963265,0.704631,0.934375,0.679042,0.973118,0.587916,0.756585,0.560591,0.703966,0.587668,0.702100,0.550585,0.755769,0.571315,0.931289,0.603188,0.960815,0.593496,0.970687,0.583392,0.918336,0.567046,0.889087,0.579047,0.883266,0.563233,0.846656,0.578523,0.841828,0.548896,0.813334,0.593353,0.828086,0.569629,0.801507,0.739906,0.800347,0.724197,0.818838,0.724476,0.790512,0.728952,0.825031,0.748397,0.806289,0.544333,0.821336,0.532108,0.835011,0.760078,0.823497,0.745367,0.837029,0.775289,0.865916,0.786210,0.855890,0.502808,0.864493,0.549145,0.853777,0.658022,0.714551,0.670512,0.744079,0.658175,0.748031,0.670392,0.717802,0.728728,0.856508,0.716795,0.852219,0.762916,0.880436,0.720007,0.736428,0.704623,0.720751,0.719951,0.724216,0.704713,0.740519,0.515688,0.878745,0.703227,0.846995,0.697042,0.885933,0.709031,0.892035,0.623045,0.752308,0.622845,0.708325,0.691096,0.835082,0.675889,0.820161,0.665696,0.809158,0.423091,0.912841,0.454679,0.857759,0.441022,0.801083,0.471667,0.772141,0.467984,0.801083,0.452678,0.857759,0.490898,0.802707,0.478183,0.857759,0.285437,0.801194,0.308274,0.801083,0.298474,0.857759,0.334420,0.801083,0.360243,0.801083,0.364335,0.857759,0.369350,0.912841,0.626654,0.820690,0.619411,0.837899,0.613112,0.852730,0.604672,0.873226,0.601214,0.892678,0.597756,0.912130,0.610781,0.954659,0.627991,0.975710,0.650395,0.977645,0.651725,0.985913,0.653994,0.994469,0.528614,0.716865,0.528717,0.739695,0.625740,0.985950,0.621503,0.994614,0.602125,0.819013,0.580783,0.794324,0.613056,0.808364,0.597698,0.792846,0.691069,0.782556,0.695835,0.769622,0.705684,0.779954,0.323632,0.912841,0.304117,0.912841,0.318593,0.857759,0.344672,0.857759,0.349500,0.912841,0.470812,0.912841,0.445347,0.912841,0.695845,0.796186,0.681385,0.794602,0.700193,0.788648,0.709011,0.805332,0.490898,0.773687,0.490898,0.749078,0.471871,0.746594,0.470241,0.730810,0.444665,0.715398,0.415070,0.711047,0.388185,0.708474,0.362095,0.701484,0.388380,0.700149,0.388516,0.692940,0.414803,0.702038,0.442333,0.706442,0.414421,0.696053,0.388655,0.690088,0.414057,0.691794,0.443291,0.694043,0.465212,0.709316,0.467269,0.718930,0.490898,0.730960,0.285437,0.729717,0.309032,0.717921,0.285437,0.719986,0.490898,0.721244,0.490898,0.711856,0.285437,0.710531,0.310837,0.708433,0.285437,0.696294,0.309969,0.696238,0.333643,0.693503,0.334369,0.680327,0.308769,0.680327,0.337126,0.651963,0.311334,0.651963,0.337411,0.627227,0.310940,0.626820,0.337678,0.603928,0.310579,0.603928,0.285437,0.627227,0.285437,0.651963,0.285437,0.680327,0.490898,0.680327,0.490898,0.697685,0.466804,0.697146,0.443033,0.680327,0.412512,0.680327,0.388945,0.680327,0.412929,0.651963,0.441710,0.651963,0.467191,0.651963,0.468599,0.680327,0.490898,0.651963,0.490898,0.627227,0.467591,0.626820,0.441306,0.627227,0.412498,0.627223,0.389678,0.651963,0.364916,0.680327,0.363089,0.691578,0.362592,0.695548,0.334291,0.705620,0.365715,0.651963,0.366021,0.627223,0.366309,0.603928,0.366757,0.567772,0.338095,0.567772,0.310016,0.567772,0.285437,0.603928,0.490898,0.603928,0.467959,0.603928,0.440927,0.603928,0.412093,0.603928,0.389568,0.627227,0.389465,0.603928,0.411463,0.567772,0.440336,0.567772,0.468531,0.567772,0.490898,0.567772,0.285437,0.567772,0.389304,0.567772,-2.463109,0.349271,-2.463558,0.436827,-2.373443,0.349269,0.354054,-0.912290,0.333771,-0.819441,0.378839,-0.818533,-2.550449,0.439612,-2.564688,0.302988,-2.624807,0.302948,-2.612620,0.230532,-2.581828,0.230528,-2.463123,0.301738,-2.374175,0.301738,-2.855901,-0.607822,-2.793762,-0.690004,-2.854887,-0.690003,-2.793705,-0.607819,-2.793714,-0.532495,-2.857061,-0.532476,-2.372533,0.436723,-2.374507,0.500396,-2.463560,0.500254,0.378784,-0.750039,0.333994,-0.750540,-2.626461,0.439371,-2.550083,0.500276,-2.626446,0.500273,-2.665589,0.500273,-2.665605,0.439371,-2.731901,0.439899,-2.732049,0.372172,-2.834209,0.440428,-2.834221,0.501132,-2.977791,0.501446,-2.977797,0.440452,-2.977803,0.371361,-2.834208,0.371357,-2.834220,0.371365,-2.824912,0.281276,-2.732111,0.281265,-2.824899,0.216720,-2.732233,0.216421,-2.598114,0.188417,-2.375268,0.249601,-2.463090,0.249830,-2.819541,-0.826156,-1.739334,-0.814037,-1.739268,-0.706816,-1.668487,-0.814252,-1.668442,-0.705934,-1.739636,-0.633204,-1.669037,-0.633213,-1.739641,-0.566507,-1.668132,-0.566497,-1.739356,-0.524493,-1.668221,-0.524493,-1.681686,-0.478040,-1.739349,-0.478077,-1.702212,-0.418091,-1.739272,-0.418139,-1.825044,-0.418227,-1.825057,-0.478054,-2.855851,-0.436203,-2.793705,-0.386653,-2.793705,-0.436203,-2.855659,-0.386797,0.519797,-0.683077,0.527950,-0.588816,0.525738,-0.683121,0.519816,-0.588990,0.493505,-0.588981,0.493671,-0.683119,-2.463563,0.548441,-2.375280,0.605725,-2.375255,0.548476,-2.463563,0.605692,0.378679,-0.670801,0.334501,-0.578217,0.378692,-0.576659,0.334232,-0.671301,-2.626446,0.547981,-2.549251,0.604745,-2.549692,0.548137,-2.626462,0.604241,-2.665590,0.547981,-2.731867,0.548296,-2.663826,0.604241,-2.731904,0.500625,-2.834229,0.548869,0.143786,-0.735482,0.124364,-0.844476,0.091613,-0.732997,-2.833867,0.548925,-2.944967,0.548933,-2.984907,0.549032,-2.984903,0.607238,-2.944995,0.607229,-2.834000,0.607204,0.091595,-0.642934,0.067934,-0.640262,0.143786,-0.641960,-2.834156,0.607206,-2.731714,0.606792,-2.666289,0.653271,-2.731600,0.655309,-2.834173,0.654788,0.143324,-0.521587,0.087499,-0.522187,0.036129,-0.522164,-2.944999,0.654761,-2.834010,0.654654,-2.984907,0.654987,-2.984911,0.729164,-2.944976,0.728942,-2.984913,0.804235,-2.944945,0.803163,-2.984921,0.866754,-2.944965,0.866059,-2.833978,0.802658,-2.834006,0.728880,0.035388,-0.428105,0.087552,-0.428381,0.143336,-0.427850,-2.834184,0.728882,-2.731429,0.728882,-2.834193,0.802131,-2.731212,0.801649,-2.834190,0.864007,-2.731541,0.865003,-2.666304,0.801506,-2.665609,0.865533,-2.630138,0.801638,-2.630205,0.865682,-2.629981,0.728696,-2.665520,0.728718,-2.629955,0.653276,-2.549606,0.653294,-2.549549,0.728655,-2.630014,0.801549,-2.549309,0.800435,-2.630234,0.865097,-2.548728,0.866510,0.334465,-0.256431,0.334819,-0.147781,0.375281,-0.148495,0.375310,-0.256479,0.375304,-0.374475,0.334319,-0.374464,0.375367,-0.498608,0.334284,-0.498384,-2.646033,0.604241,0.417989,-0.565796,0.404787,-0.487745,0.422890,-0.487768,0.404724,-0.363612,0.422603,-0.363614,0.404726,-0.245631,0.422667,-0.245631,-2.463429,0.728647,-2.463427,0.800397,-2.375309,0.728679,-2.375240,0.801031,-2.463426,0.866671,0.422701,-0.136653,0.404741,-0.138168,-2.375335,0.865880,0.519794,-0.268200,0.493770,-0.267827,0.493136,-0.161193,0.520070,-0.386766,0.493306,-0.386801,0.519910,-0.510208,0.493350,-0.510604,-2.375303,0.653389,-2.463421,0.653144,0.528025,-0.509684,0.528269,-0.386719,0.528260,-0.268128,0.518339,-0.161749,0.527932,-0.161557,-2.855633,-0.218787,-2.855661,-0.162954,-2.793740,-0.217727,-2.793743,-0.163305,-2.793740,-0.280879,-2.855632,-0.280917,-2.855653,-0.345339,-2.793707,-0.345418,0.619936,-0.427020,0.594762,-0.308664,0.618965,-0.307230,0.592139,-0.230125,0.618909,-0.230289,0.581000,-0.143521,0.616274,-0.143263,-1.825045,-0.224423,-1.825012,-0.171487,-1.739137,-0.224909,-1.738959,-0.170947,-1.701568,-0.224693,-1.701688,-0.171142,-1.666371,-0.171710,-1.665724,-0.224664,-1.665980,-0.272064,-1.633971,-0.272431,-1.634013,-0.224955,-1.666089,-0.171261,-1.634000,-0.171199,-1.497598,-0.224955,-1.497605,-0.171199,-1.413546,-0.225039,-1.413545,-0.170437,-1.375414,-0.170251,-1.375487,-0.224617,-1.375166,-0.272714,-1.413545,-0.272858,-1.497620,-0.272431,-1.413545,-0.345498,-1.374969,-0.345914,-1.374874,-0.417735,-1.413545,-0.417742,-1.497634,-0.417930,-1.497647,-0.345930,-1.666094,-0.418062,-1.633918,-0.345930,-1.633943,-0.417930,-1.666033,-0.345125,-1.701865,-0.344672,-1.701604,-0.271988,-1.739182,-0.271614,-1.825045,-0.271226,-1.739304,-0.344251,-1.825058,-0.344093,-1.633977,-0.478138,-1.497617,-0.478446,-1.413544,-0.478639,-1.387826,-0.478744,-1.413544,-0.524693,-1.384910,-0.524692,-1.417123,-0.565879,-1.497811,-0.565559,-1.497288,-0.524692,-1.634630,-0.524493,-1.634113,-0.567340,-1.496837,-0.634129,-1.430463,-0.634311,-0.620650,-0.625443,-0.620634,-0.510871,-0.676796,-0.510972,-0.620647,-0.457854,-0.591002,-0.456032,-0.591648,-0.397122,-0.620563,-0.397305,-0.620470,-0.333959,-0.591666,-0.334407,-0.620470,-0.283293,-0.591576,-0.283343,-0.620470,-0.210619,-0.591498,-0.210619,-0.620471,-0.148685,-0.591416,-0.148603,-0.676409,-0.148054,-0.674931,-0.210689,0.285364,-0.329540,0.274282,-0.250142,0.251746,-0.335495,0.281562,-0.379641,-0.674931,-0.283085,-0.674931,-0.333696,0.282076,-0.529999,0.249673,-0.378296,-0.674908,-0.283016,-0.674871,-0.210702,-0.737321,-0.283147,-0.736376,-0.210617,-0.678495,-0.147988,-0.729749,-0.148203,-0.788808,-0.148849,-0.790769,-0.210497,-0.821725,-0.148536,-0.822991,-0.210493,-0.794718,-0.283377,-0.737617,-0.333466,-0.674829,-0.333464,0.243449,-0.530031,0.259920,-0.608232,-0.676909,-0.397763,-0.735322,-0.397722,-0.812623,-0.333006,-0.822341,-0.283380,-0.911067,-0.283483,-0.911100,-0.210470,-0.824290,-0.148987,-0.911167,-0.149106,-0.911034,-0.333511,-0.910950,-0.396247,-0.812830,-0.396917,-0.736659,-0.458403,-0.812579,-0.457221,-0.910866,-0.456184,-0.910815,-0.510800,-0.812624,-0.510745,-0.742048,-0.510862,-0.676877,-0.457732,-0.674929,-0.625493,-0.745745,-0.625613,-0.812969,-0.625642,-0.910645,-0.625561,-0.910635,-0.697862,-0.812785,-0.697664,-0.747058,-0.698278,-0.750051,-0.789610,-0.676876,-0.790150,-1.510699,0.182980,-1.623167,0.182111,-1.510699,0.258417,-1.623167,0.258226,-1.772027,0.182212,-1.854554,0.264667,-1.772055,0.264672,-1.854476,0.182334,-0.806746,-0.790262,-0.852865,-0.791595,-1.938104,0.264665,-1.938919,0.316772,-0.368967,-0.745210,-0.378932,-0.814640,-0.394226,-0.742139,-0.368854,-0.684687,-1.854553,0.316740,-1.938901,0.383698,-1.772057,0.316764,-1.510700,0.309038,-1.623165,0.309036,-1.408642,0.302622,-1.408535,0.258593,-2.854098,0.281413,-2.977807,0.216761,-2.977808,0.281434,-2.854088,0.216941,-2.977798,0.182205,-2.854088,0.182925,-2.824899,0.182628,-2.732252,0.181520,-1.493053,-0.803956,-1.496840,-0.705934,-1.453622,-0.706579,-0.620663,-0.697106,-0.676850,-0.697003,-0.620646,-0.790394,-1.408535,0.183918,-1.380023,0.363593,-1.408591,0.362328,-1.510701,0.364647,-1.623159,0.364647,-1.772061,0.383656,-1.854554,0.383621,-1.854554,0.488646,-1.938900,0.486787,-0.394250,-0.684742,-0.368611,-0.611489,-0.394319,-0.611930,-0.394250,-0.457876,-0.368537,-0.457977,-0.394320,-0.397638,-0.368774,-0.398216,-0.394318,-0.316296,-0.369444,-0.315343,-0.384437,-0.207227,-1.854520,0.549634,-1.938972,0.546374,-1.857489,0.644584,-1.938565,0.645006,-1.958974,0.644943,-1.938568,0.728038,-1.958996,0.728128,-1.938578,0.842032,-1.857477,0.728639,-1.634492,0.484987,-1.624545,0.571961,-1.552856,0.572054,-1.553475,0.638062,-1.624217,0.637985,-1.747856,0.385831,-1.764792,0.451359,-1.730884,0.451720,-1.731063,0.536853,-1.764870,0.537581,-1.731036,0.606850,-1.764866,0.607188,-1.731085,0.688998,-1.764818,0.688909,-1.624515,0.723118,-1.624470,0.793115,-1.553752,0.793029,-1.554342,0.875255,-1.622333,0.875161,-1.510609,0.875287,-1.510654,0.792329,-1.553393,0.722880,-1.510637,0.721766,-1.479796,0.792314,-1.510639,0.875280,-1.479804,0.875400,-1.408537,0.791468,-1.408537,0.720674,-1.380331,0.719982,-1.380329,0.791254,-1.408537,0.875518,-1.380327,0.875519,-1.380333,0.638720,-1.408537,0.638409,-1.380336,0.572020,-1.408537,0.571956,-1.479780,0.638424,-1.479773,0.572044,-1.408534,0.546920,-1.510701,0.484987,-1.408527,0.484987,-1.510700,0.428320,-1.408479,0.435012,-1.380089,0.434326,-1.380390,0.485003,-1.380351,0.546732,-1.623148,0.428297,-1.772068,0.486758,-1.510658,0.572046,-1.510619,0.638375,-1.479789,0.721636,0.519644,-0.161110,0.143361,-0.178114,0.143391,-0.275189,0.089078,-0.178467,0.088637,-0.274447,0.035784,-0.274776,0.087642,-0.274526,0.087155,-0.178540,0.036548,-0.178089,-2.834004,0.865469,0.498637,-0.762181,0.511813,-0.761916,-2.857056,-0.477484,-2.793706,-0.477414,-1.825054,-0.524493,-1.825048,-0.566520,-1.825046,-0.633210,0.501530,-0.863507,-3.154820,-44.448380,-4.087114,-43.562412,-3.407222,-43.562752,0.110143,-1.715881,0.215065,-1.785608,0.118081,-1.788776,0.224880,-1.711631,0.170875,-1.860480,1.449784,0.405155,1.610980,0.483793,1.449492,0.483904,1.613561,0.404682,1.450199,0.348493,1.622192,0.349146,1.450401,0.283640,1.294702,0.283148,1.294702,0.348374,1.294702,0.405338,1.294702,0.483952,1.449327,0.555323,1.610425,0.555271,1.612866,0.610454,1.449182,0.610515,1.613450,0.669821,1.474464,0.670352,1.613756,0.713953,1.491997,0.717402,1.499509,0.764472,1.615596,0.767159,1.455550,0.728677,1.466242,0.768190,1.449541,0.674680,1.296023,0.555354,1.295592,0.610565,1.432169,0.673883,1.303197,0.670380,1.428874,0.729200,1.310298,0.724959,1.414331,0.782858,1.313338,0.777267,1.291003,0.775892,1.286301,0.730171,1.293144,0.675933,1.157307,0.722137,1.171500,0.767861,1.284943,0.773371,1.136505,0.771680,1.134456,0.730096,1.150850,0.676039,1.149097,0.610539,1.149030,0.555354,1.148919,0.483903,1.148799,0.405155,1.148669,0.348493,1.148605,0.283640,-0.395750,0.223631,-0.623513,0.109647,-0.395797,0.111590,-0.623610,0.221630,-0.395651,0.321522,-0.623724,0.317575,-0.395560,0.457569,-0.623725,0.454244,-0.395477,0.581009,-0.623924,0.577737,-0.395427,0.676346,-0.623939,0.676117,-0.506553,0.679846,-0.411150,0.755656,-0.392767,0.755652,-0.410760,0.840822,-0.391750,0.841151,-0.391356,0.929743,-0.412268,0.929379,-0.485229,0.929901,-0.498996,0.840718,-0.507882,0.755149,-0.529315,0.754525,-0.507501,0.840830,-0.536038,0.840929,-0.623491,0.840773,-0.622894,0.930784,-0.536046,0.929417,-0.510026,0.929732,-0.623793,0.753587,1.629622,0.284327,0.628988,0.528191,0.629376,0.689182,0.550484,0.689190,0.630448,0.834674,0.550481,0.834977,0.550645,0.952571,0.631569,0.954754,0.550485,0.528191,0.428951,0.689196,0.550483,0.834514,0.429690,0.834566,0.430640,0.955941,0.551789,0.951435,0.428909,0.528191,0.330174,0.528191,0.330161,0.688324,0.429009,0.834617,0.330183,0.834569,0.429201,0.955375,0.330259,0.958164,0.222027,0.528191,0.222043,0.689200,0.222041,0.834516,0.330078,0.834683,0.222023,0.955318,0.330012,0.957582,0.111695,0.528191,0.111615,0.689189,0.111553,0.834381,0.222161,0.834586,0.111557,0.952624,0.222306,0.955615,0.026622,0.528191,0.025960,0.689183,0.025024,0.834667,0.111079,0.834854,0.024205,0.946472,0.110622,0.949164,0.026900,0.385183,0.111812,0.386443,0.027139,0.222451,0.111766,0.223453,0.027181,0.113032,0.111548,0.113116,0.221972,0.225420,0.221920,0.113816,0.330167,0.226068,0.330167,0.114048,0.429014,0.225447,0.428921,0.113816,0.550484,0.224994,0.550482,0.113116,0.628549,0.222502,0.628705,0.385177,0.550486,0.386401,0.429036,0.386527,0.330177,0.386744,0.221983,0.386435,0.627982,0.113032,0.362241,-1.768412,0.245931,-1.772480,0.255329,-1.709453,0.299178,-1.824075,0.346708,-1.708301]], + "uvs": [[0.38989,0.32098,0.36125,0.32098,0.36125,0.35665,0.38989,0.28848,0.41728,0.32098,0.41728,0.28848,0.46283,0.32098,0.46283,0.28848,0.49774,0.32098,0.46283,0.35665,0.41728,0.35665,0.38989,0.35665,0.36125,0.39145,0.33212,0.39145,0.33212,0.35665,0.33212,0.32098,0.30083,0.32098,0.30083,0.28848,0.26879,0.28848,0.30083,0.25481,0.26879,0.25481,0.23675,0.25481,0.23752,0.23183,0.20546,0.25481,0.20739,0.23183,0.21193,0.21112,0.17809,0.20668,0.17634,0.23183,0.1477,0.23183,0.17634,0.25481,0.1477,0.25481,0.12031,0.23183,0.12031,0.25481,0.074757,0.23183,0.074757,0.25481,0.03985,0.23183,0.075062,0.21157,0.03985,0.21187,0.074537,0.19313,0.03985,0.19512,0.074782,0.1669,0.03985,0.16854,0.077997,0.12644,0.03985,0.1269,0.070557,0.092132,0.038695,0.090059,0.069402,0.055464,0.046275,0.044598,0.023319,0.041835,0.005547,0.089467,0.005547,0.042151,0.005547,0.027741,0.53204,0.027741,0.51427,0.041835,0.53204,0.042151,0.51762,0.027448,0.53204,0.014462,0.51873,0.014525,0.52005,0.002447,0.50673,0.002447,0.53204,0.002447,0.005547,0.002447,0.005547,0.014462,0.01754,0.002447,0.018857,0.014525,0.019966,0.027448,0.034968,0.026467,0.049659,0.020387,0.072523,0.021424,0.087388,0.056234,0.088928,0.092132,0.094496,0.12137,0.09426,0.15407,0.12031,0.17131,0.12031,0.18908,0.12031,0.20702,0.14662,0.20531,0.17296,0.1857,0.19738,0.19105,0.21805,0.19518,0.23928,0.21381,0.26879,0.23183,0.30006,0.23183,0.33212,0.25481,0.33212,0.28848,0.36125,0.28848,0.36125,0.25481,0.36125,0.23183,0.3302,0.23183,0.32565,0.21112,0.29831,0.21381,0.26879,0.21302,0.24168,0.19563,0.24359,0.18331,0.26879,0.18094,0.26879,0.16431,0.24362,0.1652,0.22285,0.16595,0.22028,0.18536,0.20634,0.16444,0.20166,0.18076,0.16727,0.16431,0.1478,0.16663,0.14809,0.18669,0.12031,0.15141,0.14627,0.14533,0.16649,0.1408,0.18644,0.144,0.18485,0.16419,0.20723,0.14723,0.22343,0.14958,0.2427,0.14795,0.26062,0.14742,0.26879,0.14713,0.27697,0.14742,0.29488,0.14795,0.29396,0.1652,0.29399,0.18331,0.2959,0.19563,0.31954,0.19518,0.31731,0.18536,0.33592,0.18076,0.33125,0.16444,0.31473,0.16595,0.31416,0.14958,0.33036,0.14723,0.35114,0.144,0.35274,0.16419,0.37032,0.16431,0.37109,0.1408,0.34388,0.13198,0.35676,0.11732,0.38341,0.13169,0.3784,0.10959,0.58176,0.16649,0.55413,0.17703,0.55413,0.19802,0.55413,0.16288,0.55413,0.14163,0.58176,0.14163,0.60462,0.16649,0.58176,0.195,0.55413,0.2083,0.39132,0.14533,0.38979,0.16663,0.36463,0.1857,0.3402,0.19105,0.26879,0.19161,0.3595,0.20668,0.38989,0.23183,0.39097,0.20531,0.3895,0.18669,0.41728,0.17131,0.41728,0.15141,0.44333,0.15407,0.43339,0.13807,0.55413,0.034928,0.58176,0.013179,0.55413,0.013179,0.58176,0.034928,0.60462,0.034928,0.60462,0.013179,0.63512,0.013179,0.63512,0.22461,0.63512,0.19619,0.60462,0.22461,0.57817,0.63438,0.58959,0.64534,0.59356,0.63508,0.57903,0.6499,0.56934,0.64474,0.60462,0.14163,0.63512,0.16649,0.63512,0.14163,0.60462,0.11826,0.58176,0.11826,0.58176,0.093107,0.55413,0.093107,0.55413,0.073929,0.58176,0.073929,0.60462,0.093107,0.63512,0.11826,0.56294,0.63539,0.56617,0.62463,0.57401,0.61887,0.58355,0.61949,0.59041,0.62524,0.63512,0.034928,0.60462,0.054226,0.63512,0.054226,0.60462,0.073929,0.63512,0.073929,0.58176,0.054226,0.55413,0.054226,0.44866,0.092132,0.43417,0.092132,0.43417,0.1199,0.43417,0.056234,0.4502,0.056234,0.46703,0.092132,0.44309,0.12137,0.45959,0.12644,0.49774,0.1269,0.49774,0.16854,0.4628,0.1669,0.46305,0.19313,0.41728,0.18908,0.41728,0.20702,0.41728,0.23183,0.38989,0.25481,0.41728,0.25481,0.46283,0.23183,0.46252,0.21157,0.49774,0.21187,0.49774,0.23183,0.46283,0.25481,0.49774,0.25481,0.49774,0.28848,0.53204,0.32098,0.49774,0.35665,0.46283,0.39145,0.41728,0.39145,0.38989,0.39145,0.36125,0.42324,0.33212,0.42324,0.30083,0.42324,0.30083,0.39145,0.30083,0.35665,0.26879,0.35665,0.26879,0.32098,0.23675,0.32098,0.23675,0.28848,0.20546,0.28848,0.17634,0.28848,0.17634,0.32098,0.20546,0.32098,0.17634,0.35665,0.20546,0.35665,0.20546,0.39145,0.17634,0.39145,0.20546,0.42324,0.17634,0.42324,0.20546,0.45623,0.17634,0.45623,0.17634,0.4984,0.20546,0.4984,0.20546,0.53981,0.17634,0.53981,0.1477,0.53981,0.1477,0.4984,0.1477,0.45623,0.1477,0.42324,0.1477,0.39145,0.1477,0.35665,0.1477,0.32098,0.1477,0.28848,0.12031,0.28848,0.12031,0.32098,0.12031,0.35665,0.12031,0.39145,0.12031,0.42324,0.12031,0.45623,0.12031,0.4984,0.12031,0.53981,0.074757,0.4984,0.074757,0.53981,0.03985,0.53981,0.03985,0.4984,0.02164,0.53981,0.021448,0.4984,0.005547,0.4984,0.021634,0.45623,0.005547,0.45623,0.005547,0.42324,0.53204,0.42324,0.51723,0.42324,0.53204,0.45623,0.53204,0.39145,0.49774,0.42324,0.49774,0.39145,0.53204,0.35665,0.46283,0.42324,0.41728,0.42324,0.38989,0.42324,0.36125,0.45623,0.33212,0.45623,0.30083,0.45623,0.28427,0.45623,0.2853,0.42324,0.26879,0.39145,0.23675,0.35665,0.23675,0.39145,0.23675,0.42324,0.23675,0.45623,0.23675,0.4984,0.23675,0.53981,0.25529,0.53981,0.25486,0.4984,0.25418,0.45623,0.25332,0.42324,0.26879,0.42324,0.26879,0.45623,0.26879,0.4984,0.26879,0.53981,0.28281,0.53981,0.28341,0.4984,0.30083,0.4984,0.30083,0.53981,0.33212,0.4984,0.33212,0.53981,0.36125,0.4984,0.38989,0.45623,0.41728,0.45623,0.38989,0.4984,0.38989,0.53981,0.36125,0.53981,0.41728,0.4984,0.46283,0.4984,0.46283,0.45623,0.49774,0.45623,0.49774,0.4984,0.49774,0.53981,0.46283,0.53981,0.41728,0.53981,0.51656,0.53981,0.51682,0.4984,0.51702,0.45623,0.53204,0.4984,0.53204,0.53981,0.005547,0.53981,0.005547,0.32098,0.005547,0.35665,0.03985,0.35665,0.03985,0.39145,0.005547,0.39145,0.03985,0.42324,0.021885,0.42324,0.03985,0.45623,0.074757,0.45623,0.074757,0.42324,0.074757,0.39145,0.074757,0.35665,0.074757,0.32098,0.074757,0.28848,0.03985,0.25481,0.03985,0.28848,0.005547,0.25481,0.005547,0.28848,0.53204,0.25481,0.53204,0.28848,0.53204,0.23183,0.53204,0.2122,0.53204,0.19538,0.49774,0.19512,0.53204,0.16834,0.53204,0.12663,0.005547,0.12663,0.005547,0.16834,0.49889,0.090059,0.53204,0.089467,0.46818,0.055464,0.46506,0.021424,0.49131,0.044598,0.50262,0.026467,0.50482,0.012518,0.49584,0.002447,0.030854,0.002447,0.032761,0.012518,0.045009,0.016634,0.22385,0.017256,0.21815,0.020595,0.21961,0.040117,0.19263,0.022964,0.19828,0.045798,0.17723,0.022964,0.087388,0.021424,0.10342,0.056234,0.10342,0.092132,0.10342,0.1199,0.1042,0.13807,0.55413,0.28452,0.55413,0.26522,0.58176,0.28452,0.58176,0.26522,0.58176,0.24347,0.55413,0.24347,0.58176,0.4549,0.55413,0.4549,0.58176,0.43463,0.55413,0.43859,0.58176,0.42529,0.60462,0.42648,0.60462,0.39678,0.58176,0.39678,0.58176,0.37192,0.60462,0.37192,0.63512,0.39678,0.63512,0.37192,0.63512,0.42648,0.60462,0.4549,0.60462,0.26522,0.60462,0.24347,0.60462,0.28452,0.63512,0.26522,0.63512,0.24347,0.63512,0.4549,0.63512,0.34855,0.60462,0.34855,0.58176,0.34855,0.55413,0.37192,0.55413,0.39317,0.55413,0.40732,0.55413,0.42831,0.15543,0.13169,0.18082,0.11732,0.1937,0.13198,0.20772,0.12983,0.20403,0.10407,0.22303,0.13081,0.23977,0.12985,0.25498,0.13016,0.26879,0.12898,0.2826,0.13016,0.29782,0.12985,0.31456,0.13081,0.32987,0.12983,0.33355,0.10407,0.33575,0.079983,0.3167,0.081499,0.31609,0.1035,0.3015,0.10403,0.30054,0.086783,0.31798,0.040117,0.29625,0.056672,0.29175,0.034846,0.28341,0.063141,0.2806,0.038349,0.28871,0.01834,0.27748,0.019726,0.27653,0.004376,0.26879,0.004376,0.28654,0.004376,0.30011,0.015782,0.30539,0.026933,0.31373,0.017256,0.31943,0.020595,0.48793,0.020387,0.49258,0.016634,0.34496,0.022964,0.33931,0.045798,0.35677,0.083525,0.3784,0.084762,0.35961,0.047102,0.3784,0.048225,0.3784,0.022964,0.36036,0.022964,0.43417,0.021424,0.4502,0.021424,0.55413,0.11826,0.49528,0.010477,0.30745,0.010764,0.30555,0.0042,0.29635,0.004376,0.04174,0.002447,0.042303,0.010477,0.23748,0.015782,0.23014,0.010764,0.2322,0.026933,0.24583,0.034846,0.24887,0.01834,0.25699,0.038349,0.25418,0.063141,0.24133,0.056672,0.23704,0.086783,0.22088,0.081499,0.20184,0.079983,0.18082,0.083525,0.17798,0.047102,0.16044,0.022964,0.10342,0.021424,0.55413,0.3234,0.55413,0.34855,0.58176,0.3234,0.60462,0.3234,0.63512,0.3234,0.63512,0.30422,0.60462,0.30422,0.58176,0.30422,0.55413,0.30422,0.63512,0.28452,0.16044,0.048225,0.16044,0.084762,0.16044,0.10959,0.2215,0.1035,0.23609,0.10403,0.25091,0.11257,0.25227,0.090935,0.26879,0.06474,0.26879,0.092146,0.28531,0.090935,0.28667,0.11257,0.26879,0.03787,0.2601,0.019726,0.26105,0.004376,0.25105,0.004376,0.24123,0.004376,0.23204,0.0042,0.26879,0.020349,0.005547,0.19538,0.005547,0.2122,0.005547,0.23183,0.03985,0.32098,0.63512,0.093107,0.60462,0.19619,0.58176,0.20434,0.58176,0.22461,0.84695,0.72774,0.83194,0.66588,0.78106,0.72017,0.86366,0.67628,0.89718,0.73634,0.7659,0.65462,0.71176,0.72724,0.79088,0.60163,0.81127,0.55087,0.85615,0.60022,0.86226,0.52299,0.8187,0.49781,0.8374,0.42969,0.92946,0.47035,0.90325,0.5451,0.87918,0.61111,0.91907,0.62627,0.90208,0.68986,0.84694,0.72774,0.51209,0.77152,0.40513,0.75111,0.40513,0.78901,0.49015,0.74395,0.40513,0.73193,0.48888,0.70508,0.44817,0.70686,0.45517,0.69642,0.48815,0.69368,0.51392,0.68826,0.55058,0.69163,0.55022,0.67878,0.60108,0.66256,0.59339,0.64502,0.63158,0.6432,0.61845,0.60018,0.66275,0.62137,0.69176,0.57587,0.62637,0.55997,0.70562,0.51454,0.72311,0.54564,0.72351,0.50914,0.88598,0.16582,0.85811,0.15553,0.86292,0.18793,0.87899,0.15274,0.91471,0.15938,0.9226,0.17408,0.88911,0.1912,0.88224,0.20601,0.89016,0.21715,0.90643,0.20769,0.90355,0.2029,0.93681,0.17388,0.95228,0.14852,0.93322,0.14376,0.94931,0.11343,0.91772,0.11531,0.91467,0.066192,0.88435,0.10465,0.87533,0.072927,0.90399,0.043822,0.93552,0.05838,0.94873,0.042365,0.92534,0.028543,0.95198,0.038217,0.97155,0.062125,0.97429,0.022063,0.97652,0.10073,0.96739,0.065474,0.94566,0.081499,0.97164,0.10182,0.96027,0.12178,0.96184,0.14576,0.94489,0.17472,0.95713,0.20059,0.74604,0.55415,0.73764,0.55479,0.70701,0.57964,0.67292,0.63151,0.64819,0.6599,0.6004,0.68636,0.55305,0.72038,0.51209,0.77152,0.57004,0.75843,0.6714,0.67618,0.61406,0.74849,0.72661,0.67084,0.73783,0.62435,0.7484,0.56852,0.75581,0.50458,0.76479,0.46729,0.77723,0.40437,0.85603,0.35734,0.94539,0.39878,0.99126,0.42505,0.97096,0.49546,0.94471,0.56529,0.24021,0.75843,0.2572,0.72038,0.19619,0.74849,0.29816,0.77152,0.24021,0.75843,0.3201,0.74395,0.32138,0.70508,0.36208,0.70686,0.40513,0.72086,0.43088,0.70564,0.45759,0.68341,0.42999,0.6878,0.42716,0.66113,0.40513,0.66054,0.40513,0.64135,0.3831,0.66113,0.38668,0.6427,0.40513,0.63678,0.42357,0.6427,0.42017,0.63755,0.4432,0.63873,0.44288,0.62858,0.42821,0.62537,0.43997,0.62087,0.455,0.6234,0.45407,0.61553,0.46496,0.61122,0.45275,0.6094,0.45107,0.60607,0.45898,0.60811,0.46455,0.60721,0.47226,0.60624,0.47161,0.61834,0.4783,0.62553,0.4597,0.63021,0.47757,0.65246,0.45313,0.65818,0.48342,0.67462,0.50773,0.66352,0.53801,0.65082,0.56586,0.63286,0.58241,0.59391,0.58349,0.55551,0.6393,0.51376,0.56498,0.51313,0.57661,0.48464,0.58608,0.46099,0.64716,0.4579,0.59761,0.43767,0.6572,0.40399,0.60536,0.40085,0.65083,0.36037,0.69144,0.40424,0.68851,0.35854,0.7281,0.35446,0.7278,0.29231,0.78818,0.32882,0.75131,0.42154,0.74091,0.4087,0.72635,0.42051,0.71041,0.45574,0.73146,0.45776,0.84903,0.073406,0.85258,0.10399,0.86162,0.056137,0.87752,0.043075,0.89603,0.030104,0.92785,0.026498,0.89334,0.004384,0.75937,0.43731,0.98733,0.096616,0.97001,0.12253,0.98545,0.1396,0.71745,0.59035,0.62843,0.7005,0.61406,0.74849,0.61406,0.74849,0.57004,0.75843,0.8962,0.024739,0.87516,0.037397,0.85711,0.022615,0.87356,0.12265,0.8686,0.1448,0.88396,0.12649,0.68159,0.28477,0.6568,0.31797,0.61502,0.23211,0.65359,0.18146,0.58501,0.16531,0.50984,0.18761,0.51396,0.14165,0.54422,0.098627,0.61963,0.14385,0.40513,0.11973,0.40513,0.064379,0.26603,0.098627,0.29629,0.14165,0.22525,0.16531,0.19062,0.14385,0.15666,0.18146,0.19523,0.23211,0.12866,0.28477,0.15346,0.31797,0.12174,0.35854,0.15942,0.36037,0.11882,0.40424,0.15305,0.40399,0.1631,0.4579,0.099845,0.45574,0.10463,0.51454,0.078793,0.45776,0.086743,0.50914,0.05444,0.50458,0.061851,0.56852,0.064216,0.55415,0.098493,0.72724,0.13886,0.67618,0.083648,0.67084,0.18182,0.7005,0.20985,0.68636,0.25967,0.69163,0.29633,0.68826,0.32211,0.69368,0.35508,0.69642,0.32683,0.67462,0.35267,0.68341,0.37938,0.70564,0.40513,0.712,0.40513,0.68517,0.38026,0.6878,0.35713,0.65818,0.33269,0.65246,0.30252,0.66352,0.26003,0.67878,0.20917,0.66256,0.21686,0.64502,0.27225,0.65082,0.3149,0.64073,0.35055,0.63021,0.33196,0.62553,0.31763,0.61369,0.28534,0.61169,0.28138,0.59466,0.22784,0.59391,0.24439,0.63286,0.19181,0.60018,0.17867,0.6432,0.16206,0.6599,0.13733,0.63151,0.1475,0.62137,0.1185,0.57587,0.10324,0.57964,0.0928,0.59035,0.072426,0.62435,0.072614,0.55479,0.087139,0.54564,0.18388,0.55997,0.22676,0.55551,0.27914,0.57124,0.32897,0.60225,0.33276,0.61327,0.33864,0.61834,0.35525,0.6234,0.36706,0.63873,0.39008,0.63755,0.36738,0.62858,0.38205,0.62537,0.39335,0.62709,0.40527,0.62496,0.39166,0.6135,0.3744,0.61218,0.37028,0.62087,0.35751,0.6094,0.35618,0.61553,0.34529,0.61122,0.33799,0.60624,0.34077,0.60261,0.33711,0.59672,0.35583,0.58529,0.35103,0.56841,0.37035,0.56725,0.36221,0.54549,0.34288,0.54658,0.35387,0.52411,0.33089,0.52624,0.34153,0.49654,0.33078,0.49197,0.31949,0.52641,0.29516,0.49339,0.31635,0.46821,0.28133,0.46757,0.3116,0.44299,0.27849,0.4414,0.28641,0.42834,0.27686,0.42592,0.26655,0.41891,0.25921,0.43679,0.25586,0.40966,0.24554,0.42765,0.22418,0.46099,0.26016,0.46859,0.23364,0.48464,0.17095,0.51376,0.24527,0.51313,0.21265,0.43767,0.22432,0.41641,0.24543,0.40492,0.25701,0.39986,0.26327,0.40522,0.27004,0.41292,0.27881,0.41941,0.28807,0.42305,0.31254,0.42319,0.31376,0.42005,0.2905,0.41828,0.31287,0.41135,0.28569,0.40863,0.30405,0.39411,0.28341,0.39637,0.28144,0.39452,0.29145,0.39052,0.27897,0.38879,0.29016,0.38761,0.31614,0.39107,0.31653,0.38892,0.33548,0.39675,0.31669,0.38614,0.33698,0.39409,0.31521,0.37781,0.29028,0.37661,0.32497,0.36172,0.29267,0.36206,0.29082,0.34699,0.27334,0.36335,0.26861,0.35337,0.24956,0.36684,0.25765,0.38725,0.24461,0.37899,0.2449,0.39639,0.22465,0.38957,0.20489,0.40085,0.20163,0.35418,0.2324,0.33811,0.26033,0.32429,0.29279,0.31426,0.32873,0.34374,0.35164,0.35303,0.34417,0.36098,0.34485,0.37169,0.34001,0.38585,0.35881,0.38492,0.36435,0.37122,0.36542,0.36447,0.3733,0.38357,0.36634,0.39511,0.35332,0.39348,0.33983,0.40066,0.33779,0.40119,0.33361,0.39833,0.3311,0.40272,0.34324,0.40964,0.34601,0.40781,0.36012,0.40067,0.36355,0.41098,0.35484,0.41655,0.34511,0.41624,0.34343,0.42049,0.33772,0.4171,0.33808,0.41566,0.33187,0.41891,0.33221,0.41687,0.33922,0.41156,0.30915,0.43087,0.33633,0.43337,0.34592,0.45576,0.3392,0.47353,0.36194,0.47338,0.36619,0.44506,0.34575,0.42736,0.33488,0.42724,0.36516,0.41868,0.37665,0.441,0.38055,0.46607,0.36905,0.49272,0.35931,0.48904,0.35852,0.49956,0.36472,0.50413,0.36273,0.51739,0.35354,0.50808,0.36393,0.52828,0.36653,0.54266,0.37031,0.52974,0.37701,0.53803,0.38232,0.52486,0.39277,0.52518,0.39731,0.53024,0.39559,0.51702,0.40049,0.51816,0.39885,0.50609,0.40513,0.51965,0.40513,0.53216,0.40513,0.54484,0.41294,0.53024,0.40976,0.51816,0.41466,0.51702,0.4114,0.50609,0.40513,0.50593,0.40513,0.49639,0.3999,0.49802,0.39433,0.45388,0.39571,0.48847,0.37985,0.49527,0.37657,0.51336,0.37963,0.52304,0.39094,0.50746,0.3908,0.43118,0.38101,0.4132,0.37245,0.40468,0.38132,0.39741,0.3868,0.41104,0.40513,0.42902,0.40513,0.44955,0.41592,0.45388,0.41945,0.43118,0.42971,0.46607,0.41455,0.48847,0.41035,0.49802,0.41931,0.50746,0.4304,0.49527,0.4412,0.49272,0.44831,0.47338,0.45094,0.48904,0.45174,0.49956,0.44553,0.50413,0.43368,0.51336,0.43062,0.52304,0.44633,0.52828,0.44753,0.51739,0.45639,0.52411,0.45671,0.50808,0.46873,0.49654,0.47105,0.47353,0.46433,0.45576,0.44407,0.44506,0.4336,0.441,0.42925,0.4132,0.42345,0.41104,0.40513,0.41105,0.40513,0.39406,0.38222,0.37655,0.3725,0.3464,0.35977,0.32083,0.33404,0.3135,0.32513,0.28308,0.28612,0.28996,0.3156,0.22085,0.24968,0.24061,0.30042,0.18761,0.21517,0.27156,0.20975,0.31281,0.23722,0.30476,0.40513,0.16415,0.40513,0.20224,0.40513,0.27625,0.40513,0.32071,0.40513,0.34411,0.40513,0.3755,0.42803,0.37655,0.43775,0.3464,0.45049,0.32083,0.47622,0.3135,0.48153,0.34374,0.45861,0.35303,0.44483,0.36447,0.43695,0.38357,0.42893,0.39741,0.43781,0.40468,0.44671,0.41098,0.44509,0.41868,0.4645,0.42736,0.47392,0.43337,0.49866,0.44299,0.4939,0.46821,0.47947,0.49197,0.47936,0.52624,0.46737,0.54658,0.44804,0.54549,0.44373,0.54266,0.43995,0.52974,0.42794,0.52486,0.41749,0.52518,0.43325,0.53803,0.41863,0.54751,0.42011,0.55431,0.40513,0.55502,0.39014,0.55431,0.39162,0.54751,0.37358,0.55061,0.3913,0.56868,0.38405,0.57689,0.38692,0.59211,0.35924,0.59443,0.35573,0.60162,0.35933,0.60507,0.36973,0.60248,0.36939,0.59908,0.38328,0.59599,0.39848,0.59179,0.39886,0.57748,0.39915,0.5687,0.40513,0.56666,0.40513,0.57601,0.40513,0.59297,0.39768,0.59717,0.39337,0.60101,0.40513,0.59983,0.40513,0.59728,0.41258,0.59717,0.41178,0.59179,0.42697,0.59599,0.42334,0.59211,0.44087,0.59908,0.45102,0.59443,0.45442,0.58529,0.4262,0.57689,0.4114,0.57748,0.4111,0.5687,0.41896,0.56868,0.43667,0.55061,0.4399,0.56725,0.45922,0.56841,0.47315,0.59672,0.46948,0.60261,0.45452,0.60162,0.44052,0.60248,0.43003,0.60121,0.41689,0.60101,0.45093,0.60507,0.46542,0.6055,0.48128,0.60225,0.47864,0.57439,0.48057,0.54978,0.52815,0.5399,0.49077,0.52641,0.51509,0.49339,0.52892,0.46757,0.53177,0.4414,0.52384,0.42834,0.50111,0.43087,0.49771,0.42319,0.47838,0.41891,0.47537,0.42724,0.47254,0.4171,0.46682,0.42049,0.46515,0.41624,0.45541,0.41655,0.46702,0.40964,0.46425,0.40781,0.47247,0.40119,0.47043,0.40066,0.45014,0.40067,0.44392,0.39511,0.44591,0.37122,0.46608,0.36098,0.48528,0.36172,0.51944,0.34699,0.51746,0.31426,0.48512,0.28308,0.49465,0.22085,0.56058,0.24061,0.52413,0.28996,0.54992,0.32429,0.54165,0.35337,0.53692,0.36335,0.51758,0.36206,0.51997,0.37661,0.49504,0.37781,0.47024,0.38585,0.46541,0.37169,0.45144,0.38492,0.45693,0.39348,0.47328,0.39409,0.47477,0.39675,0.49357,0.38614,0.52011,0.38601,0.49372,0.38892,0.49411,0.39107,0.47665,0.39833,0.47916,0.40272,0.5062,0.39411,0.49738,0.41135,0.47103,0.41156,0.47218,0.41566,0.47804,0.41687,0.49649,0.42005,0.52219,0.42305,0.53339,0.42592,0.5437,0.41891,0.53144,0.41941,0.54022,0.41292,0.53358,0.40949,0.52726,0.41492,0.52456,0.40863,0.54074,0.40264,0.52684,0.39637,0.51976,0.41828,0.52882,0.39452,0.5188,0.39052,0.52009,0.38761,0.53107,0.38773,0.53655,0.38509,0.55261,0.38725,0.55003,0.39238,0.54414,0.39305,0.53129,0.38879,0.54044,0.39785,0.55125,0.39768,0.55324,0.39986,0.56564,0.37899,0.56069,0.36684,0.57785,0.33811,0.6005,0.31281,0.57304,0.30476,0.59508,0.27156,0.60863,0.35418,0.58561,0.38957,0.56535,0.39639,0.56482,0.40492,0.55439,0.40966,0.54699,0.40522,0.54872,0.40092,0.55104,0.43679,0.5501,0.46859,0.54311,0.48621,0.52528,0.51228,0.53111,0.57124,0.52888,0.59466,0.49262,0.61369,0.4775,0.61327,0.49536,0.64073,0.52491,0.61169,0.56471,0.42765,0.58594,0.41641,0.38023,0.60121,0.34484,0.6055,0.34571,0.60721,0.35128,0.60811,0.35918,0.60607,0.37193,0.60609,0.38954,0.60554,0.38107,0.60218,0.40513,0.60154,0.40513,0.60638,0.40513,0.61138,0.4186,0.6135,0.42071,0.60554,0.42919,0.60218,0.43832,0.60609,0.43586,0.61218,0.41691,0.62709,0.26023,0.39238,0.26612,0.39305,0.25901,0.39768,0.27919,0.38773,0.2737,0.38509,0.29014,0.38601,0.26981,0.39785,0.26154,0.40092,0.26952,0.40264,0.27668,0.40949,0.283,0.41492,0.2821,0.5399,0.33161,0.57439,0.32969,0.54978,0.28498,0.51228,0.26714,0.48621,0.033023,0.40437,0.045458,0.46729,0.050872,0.43731,0.78781,0.32882,0.77686,0.40437,0.72773,0.35446,0.058947,0.42154,0.082153,0.35446,0.083907,0.42051,0.069348,0.4087,0.082457,0.29231,0.72743,0.29231,0.40513,0.78901,0.29816,0.77152,1.944,-109.73,1.5421,-109.98,1.4565,-109.9,2.6494,-98.926,2.6772,-99.187,2.3882,-98.777,0.84284,0.8212,0.83744,0.81691,0.83689,0.82076,0.84276,0.81661,0.85088,0.82172,0.85017,0.81683,0.85151,0.82179,0.85154,0.81546,0.85074,0.81636,0.85264,0.82189,0.85283,0.81393,0.85394,0.82193,0.86086,0.82177,0.86097,0.81572,0.86661,0.81511,0.86732,0.82153,0.87203,0.815,0.87221,0.82147,0.88957,0.81362,0.87248,0.80534,0.88819,0.80281,0.90509,0.81172,0.90178,0.79945,0.92187,0.81093,0.91912,0.79357,0.93586,0.81496,0.93902,0.80008,0.93954,0.78636,0.95034,0.78065,0.93072,0.77551,0.93833,0.7689,0.92005,0.76332,0.92324,0.75529,0.90913,0.75992,0.90783,0.74104,0.89959,0.76354,0.88943,0.75556,0.88766,0.73822,0.89502,0.72853,0.87973,0.73229,0.88306,0.72677,0.8885,0.71423,0.88128,0.70804,0.90132,0.91222,0.89484,0.90284,0.88865,0.91719,0.90169,0.89831,0.90075,0.88649,0.91159,0.89189,0.92655,0.88364,0.91904,0.87154,0.93424,0.86256,0.91002,0.8581,0.92446,0.85068,0.94902,0.85352,0.95591,0.86507,0.96196,0.839,0.94122,0.84062,0.95949,0.82114,0.6321,0.53744,0.62171,0.51974,0.62171,0.53744,0.6321,0.51974,0.64348,0.53744,0.64348,0.51974,0.66202,0.51974,0.66202,0.53744,0.71057,0.51974,0.66202,0.5024,0.71057,0.5024,0.71057,0.48516,0.66202,0.48516,0.66202,0.47124,0.71057,0.47124,0.71057,0.61424,0.66202,0.62929,0.71058,0.62929,0.66202,0.61424,0.71057,0.59513,0.66202,0.59513,0.66202,0.5788,0.71057,0.5788,0.75934,0.5788,0.71057,0.55786,0.75934,0.55786,0.7839,0.5788,0.7839,0.55786,0.81273,0.55786,0.7839,0.53744,0.81273,0.53744,0.82771,0.53744,0.82771,0.55786,0.84261,0.55786,0.84261,0.53744,0.88603,0.53744,0.88603,0.55786,0.88603,0.57879,0.84261,0.5788,0.84261,0.59513,0.82771,0.5788,0.81273,0.5788,0.81273,0.59513,0.7839,0.59513,0.75934,0.59513,0.75934,0.61424,0.75934,0.62929,0.75934,0.47124,0.75934,0.48516,0.75934,0.50239,0.75934,0.51974,0.7839,0.50239,0.7839,0.51974,0.81273,0.51974,0.81273,0.50239,0.82771,0.50239,0.82771,0.51974,0.84261,0.51974,0.88603,0.51974,0.93233,0.51974,0.93233,0.53744,0.93233,0.55786,0.93233,0.57879,0.88603,0.59513,0.88603,0.61424,0.84261,0.61424,0.82771,0.61424,0.82771,0.59513,0.81273,0.61424,0.7839,0.61424,0.7839,0.62929,0.7839,0.47124,0.7839,0.48516,0.81273,0.48516,0.81273,0.47124,0.81273,0.62929,0.82771,0.62929,0.82771,0.47124,0.82771,0.48516,0.84261,0.48516,0.84261,0.50239,0.88603,0.50239,0.88603,0.48516,0.93233,0.48516,0.93233,0.50239,0.99301,0.50239,0.99301,0.48516,0.99301,0.47124,0.93233,0.47124,0.88603,0.47124,0.84261,0.47124,0.84261,0.62929,0.88603,0.62928,0.93233,0.61424,0.93233,0.62928,0.99301,0.62928,0.99301,0.61424,0.99301,0.59512,0.93233,0.59513,0.99301,0.57879,0.99301,0.55786,0.99301,0.53743,0.99301,0.51974,0.75934,0.53744,0.71057,0.53744,0.66202,0.55787,0.64348,0.55787,0.6321,0.55787,0.62171,0.55787,0.97251,0.8585,0.96255,0.87427,0.9422,0.87372,0.93483,0.89582,0.92315,0.90466,0.91176,0.90284,0.91492,0.91219,0.92682,0.91751,0.90924,0.91894,0.90113,0.93209,0.89385,0.926,0.89128,0.91861,0.88593,0.92402,0.90715,0.7243,0.8909,0.71275,0.89824,0.71203,0.91941,0.71631,0.90555,0.70541,0.91649,0.70233,0.91097,0.69629,0.9198,0.92809,0.9085,0.93799,0.92972,0.93474,0.92384,0.94654,0.91721,0.94347,0.91394,0.93462,0.91051,0.94192,0.9285,0.7129,0.91718,0.69866,0.92334,0.69698,0.93822,0.70891,0.929,0.69332,0.94576,0.69603,0.93848,0.68611,0.93844,0.93771,0.93046,0.94972,0.93163,0.92687,0.93851,0.91917,0.94407,0.90805,0.95008,0.88417,0.96982,0.88568,0.98338,0.87507,0.6321,0.5788,0.62171,0.5788,0.64348,0.5788,0.64348,0.59513,0.6321,0.59513,0.62171,0.59513,0.9937,0.88588,0.98069,0.89884,0.96929,0.90855,0.95881,0.89622,0.95513,0.91861,0.94324,0.92957,0.94161,0.71976,0.95307,0.70623,0.92762,0.7289,0.93747,0.74444,0.95021,0.73074,0.96088,0.74426,0.94966,0.75759,0.95973,0.76884,0.96984,0.75538,0.98461,0.74222,0.97472,0.73001,0.9624,0.71496,0.99485,0.75774,0.98444,0.77132,0.97842,0.78334,0.62171,0.61424,0.62171,0.62929,0.6321,0.62929,0.6321,0.47124,0.62171,0.47124,0.6321,0.48516,0.62171,0.48516,0.972,0.79436,0.96306,0.80717,0.95166,0.803,0.94922,0.81963,0.62171,0.5024,0.6321,0.5024,0.64348,0.5024,0.64348,0.48516,0.64348,0.47124,0.64348,0.62929,0.6321,0.61424,0.64348,0.61424,0.92698,0.83452,0.91505,0.83014,0.90328,0.82645,0.88944,0.82249,0.88968,0.83123,0.8994,0.83511,0.90724,0.83925,0.91746,0.84407,0.90604,0.85087,0.90289,0.84442,0.89062,0.84768,0.88714,0.84149,0.87192,0.83667,0.87197,0.82768,0.86643,0.82782,0.86064,0.82788,0.85241,0.83,0.85128,0.82823,0.85042,0.82708,0.84985,0.82649,0.84242,0.82577,0.83724,0.82459,0.83605,0.82069,0.83657,0.81765,0.83625,0.8162,0.83545,0.81735,0.84253,0.81562,0.84225,0.81519,0.84205,0.8134,0.84303,0.8097,0.84965,0.80722,0.86152,0.80583,0.84501,0.80305,0.86129,0.79947,0.85993,0.79395,0.84397,0.7983,0.84128,0.79389,0.85709,0.78878,0.85356,0.78288,0.86084,0.78652,0.85718,0.78091,0.86485,0.78598,0.86782,0.79129,0.86436,0.79256,0.86596,0.79946,0.8697,0.79738,0.8665,0.80655,0.88471,0.79353,0.88163,0.78552,0.87624,0.77653,0.86134,0.77902,0.86831,0.77289,0.87577,0.76911,0.88229,0.76492,0.88679,0.77075,0.87109,0.75941,0.87547,0.74922,0.87356,0.73584,0.85374,0.72508,0.85802,0.71834,0.86139,0.71131,0.86337,0.69835,0.88389,0.90903,0.86893,0.92851,0.88726,0.89384,0.89043,0.87999,0.90124,0.87445,0.89034,0.86655,0.89019,0.85568,0.8716,0.85933,0.88162,0.85218,0.86845,0.76975,0.86605,0.76633,0.858,0.76443,0.863,0.75629,0.86529,0.74773,0.84183,0.7496,0.84441,0.74271,0.8628,0.73595,0.8429,0.72898,0.87648,0.89332,0.8737,0.88339,0.8505,0.89724,0.88155,0.88206,0.87775,0.87045,0.86994,0.73873,0.8751,0.89509,0.87882,0.90078,0.87156,0.89635,0.85975,0.91419,0.85524,0.90135,0.85679,0.91582,0.85036,0.90632,0.84947,0.72181,0.85301,0.71551,0.85605,0.70874,0.86069,0.6963,0.8573,0.69569,0.86167,0.92325,0.86267,0.9322,0.86607,0.93061,0.85569,0.92674,0.85426,0.91787,0.84507,0.93293,0.83773,0.92795,0.84428,0.90844,0.86868,0.91877,0.84428,0.71932,0.8476,0.71296,0.85081,0.7068,0.84031,0.68641,0.84548,0.94153,0.8421,0.94372,0.8388,0.93651,0.83509,0.92988,0.83206,0.93127,0.82791,0.91944,0.82264,0.92124,0.82588,0.71023,0.82902,0.70375,0.82093,0.7082,0.83305,0.70575,0.83239,0.6968,0.82735,0.69543,0.83383,0.68362,0.83742,0.68429,0.83809,0.94496,0.83286,0.93912,0.82335,0.93445,0.81643,0.92618,0.81662,0.6982,0.81356,0.70429,0.8248,0.70205,0.82036,0.69247,0.82422,0.68252,0.82852,0.9408,0.82921,0.94884,0.82687,0.94145,0.82288,0.93693,0.81379,0.93878,0.80915,0.93295,0.80837,0.6932,0.80483,0.6979,0.81187,0.6886,0.81316,0.68148,0.82704,0.94744,0.81902,0.95239,0.82523,0.94208,0.82176,0.93833,0.81467,0.94032,0.80722,0.94282,0.80852,0.94396,0.80693,0.94456,0.80839,0.94451,0.80081,0.69155,0.7979,0.68718,0.7976,0.68825,0.80352,0.68863,0.79994,0.68395,0.80343,0.68246,0.80646,0.68589,0.80482,0.68218,0.81862,0.95051,0.811,0.95296,0.8245,0.94236,0.81859,0.94896,0.82448,0.94684,0.81748,0.94502,0.81568,0.94135,0.82145,0.93903,0.80965,0.94455,0.80802,0.94567,0.80912,0.94543,0.80929,0.94789,0.81085,0.94986,0.80986,0.95037,0.81184,0.9502,0.81094,0.951,0.80976,0.95189,0.81143,0.95133,0.81875,0.95,0.81088,0.94733,0.8101,0.9476,0.82516,0.94714,0.80614,0.93874,0.83712,0.69948,0.83038,0.71283,0.83181,0.91552,0.86992,0.87426,0.86457,0.86373,0.8436,0.8685,0.83976,0.75697,0.83671,0.74808,0.83815,0.74145,0.83984,0.7271,0.83242,0.7412,0.83598,0.72834,0.84436,0.89136,0.84233,0.89961,0.84645,0.89869,0.83674,0.89294,0.83747,0.88438,0.82286,0.88871,0.82081,0.87596,0.83308,0.87163,0.84121,0.88349,0.84452,0.88194,0.85293,0.8883,0.83883,0.87176,0.83444,0.75498,0.83142,0.74756,0.81799,0.7455,0.81944,0.73906,0.81912,0.72653,0.82725,0.89501,0.82579,0.90233,0.82123,0.89632,0.81988,0.8897,0.81666,0.8787,0.8171,0.75218,0.81321,0.74462,0.81214,0.75101,0.81437,0.73771,0.81582,0.72543,0.80946,0.73808,0.80827,0.7441,0.80703,0.7503,0.80101,0.74289,0.80233,0.7367,0.81216,0.72655,0.80283,0.72699,0.8182,0.90366,0.81036,0.89719,0.80902,0.90415,0.81557,0.89682,0.80785,0.89074,0.81654,0.88952,0.80461,0.88152,0.79716,0.88521,0.79919,0.74863,0.7928,0.74051,0.79076,0.74539,0.81147,0.8784,0.82213,0.90331,0.79468,0.73534,0.79346,0.72896,0.80754,0.9024,0.79974,0.90468,0.80888,0.89731,0.80684,0.8927,0.79893,0.89158,0.79264,0.88938,0.78707,0.73764,0.78553,0.74077,0.78902,0.73438,0.78673,0.73158,0.79988,0.90295,0.793,0.903,0.80735,0.8974,0.80605,0.90165,0.79924,0.89313,0.80554,0.89357,0.79248,0.89314,0.78194,0.73779,0.78193,0.7388,0.7828,0.73455,0.78558,0.7322,0.79345,0.90128,0.79271,0.90045,0.79223,0.90174,0.79439,0.90082,0.79403,0.89533,0.79299,0.89494,0.79238,0.89583,0.7998,0.89428,0.79325,0.89449,0.79175,0.89457,0.80512,0.89407,0.80667,0.89743,0.80026,0.89777,0.79427,0.89792,0.80022,0.9016,0.80557,0.90122,0.79379,0.90172,0.83007,0.75425,0.88891,0.775,0.8906,0.77974,0.89613,0.79044,0.91143,0.78364,0.90475,0.76965,0.86627,0.83602,0.86125,0.838,0.84868,0.83699,0.84202,0.83311,0.84173,0.82912,0.84203,0.82724,0.84221,0.82679,0.83613,0.82506,0.83534,0.82391,0.8352,0.82064,0.83645,0.82373,0.82785,0.80083,0.82824,0.80557,0.82803,0.79957,0.83294,0.80356,0.83205,0.81015,0.8358,0.81363,0.83492,0.81563,0.83662,0.81544,0.8361,0.80843,0.83182,0.79795,0.84182,0.78739,0.83486,0.79112,0.83569,0.82733,0.83529,0.83131,0.83657,0.82581,0.83479,0.82554,0.92069,0.95425,0.91323,0.95504,0.9054,0.95035,0.91803,0.68475,0.91234,0.6872,0.92372,0.68283,0.93131,0.67552,0.92526,0.96015,0.9186,0.95956,0.91268,0.95722,0.90418,0.95391,0.917,0.68164,0.9113,0.68321,0.91568,0.67822,0.92281,0.6791,0.93128,0.67414,0.92089,0.67567,0.91315,0.66904,0.91887,0.66797,0.93008,0.67296,0.92659,0.66341,0.92345,0.9643,0.91649,0.96445,0.91915,0.9737,0.92462,0.96219,0.91151,0.95944,0.90815,0.96928,0.90038,0.96503,0.90237,0.9574,0.90972,0.67912,0.90743,0.67083,0.91254,0.6657,0.91867,0.66428,0.92705,0.66155,0.917,0.66096,0.91178,0.66241,0.90676,0.66685,0.90026,0.96871,0.90789,0.97133,0.89769,0.97218,0.90627,0.66283,0.91082,0.65705,0.91591,0.65626,0.92571,0.65995,0.92235,0.65345,0.91729,0.97816,0.9095,0.98069,0.91381,0.98475,0.9111,0.9776,0.90359,0.97955,0.90882,0.98203,0.90452,0.98112,0.90041,0.98591,0.8967,0.98448,0.89678,0.97733,0.90563,0.65742,0.91028,0.65036,0.90542,0.64995,0.90678,0.97311,0.91314,0.97344,0.91855,0.97595,0.9148,0.96886,0.91512,0.64965,0.91838,0.64732,0.91198,0.98505,0.91041,0.99131,0.90828,0.98307,0.90459,0.98242,0.90165,0.9864,0.89889,0.99098,0.89625,0.98932,0.9103,0.64495,0.90815,0.64121,0.90723,0.64491,0.91126,0.64079,0.91401,0.64225,0.9133,0.64545,0.90643,0.99516,0.90539,0.99409,0.9052,0.99514,0.90804,0.98351,0.90841,0.98964,0.91031,0.98588,0.90566,0.98794,0.90271,0.9866,0.90478,0.98295,0.90018,0.99103,0.89961,0.99213,0.90041,0.99145,0.90112,0.99094,0.90331,0.99206,0.90546,0.99325,0.90925,0.99047,0.90588,0.99405,0.91082,0.98575,0.91483,0.64299,0.89492,0.95328,0.89159,0.94462,0.88234,0.94356,0.87369,0.93573,0.88802,0.69575,0.88265,0.70126,0.89415,0.69195,0.90094,0.68262,0.90027,0.67999,0.89357,0.95552,0.88733,0.95051,0.88119,0.94594,0.87163,0.93842,0.88054,0.69628,0.88578,0.69249,0.89129,0.68804,0.88843,0.68474,0.89782,0.67807,0.89146,0.9578,0.88333,0.95537,0.87915,0.94775,0.86918,0.96064,0.86079,0.95175,0.86801,0.94152,0.88327,0.68952,0.87697,0.69332,0.87506,0.67859,0.88047,0.67505,0.88806,0.66581,0.87742,0.96259,0.88078,0.97004,0.87355,0.96738,0.86806,0.96294,0.85934,0.95649,0.86999,0.68276,0.87228,0.67495,0.86706,0.67861,0.87734,0.6708,0.88741,0.66323,0.87455,0.66725,0.86951,0.67137,0.86349,0.67516,0.86555,0.66572,0.87151,0.66199,0.88488,0.66163,0.87809,0.65507,0.87682,0.97473,0.86628,0.97523,0.8705,0.98186,0.8698,0.97143,0.85952,0.97124,0.86525,0.97631,0.8601,0.97348,0.85296,0.97761,0.84742,0.97386,0.85199,0.96558,0.86578,0.96466,0.85576,0.95995,0.87896,0.97229,0.8596,0.66929,0.86102,0.65828,0.86623,0.65504,0.86999,0.64973,0.86809,0.98143,0.86369,0.98863,0.86411,0.97742,0.85968,0.97507,0.85434,0.97871,0.84898,0.98316,0.84639,0.9798,0.85454,0.65363,0.85366,0.64861,0.85292,0.64945,0.85868,0.65224,0.85736,0.64634,0.86168,0.64645,0.8628,0.6508,0.8631,0.64681,0.86258,0.98706,0.85724,0.99181,0.85061,0.98376,0.84946,0.9849,0.85074,0.98435,0.85087,0.98551,0.85679,0.98901,0.8552,0.98989,0.85638,0.99004,0.85572,0.99128,0.86242,0.98658,0.86183,0.98571,0.86565,0.9818,0.86363,0.97787,0.85891,0.98236,0.85564,0.97935,0.85971,0.97576,0.85187,0.98402,0.85177,0.98497,0.85318,0.98756,0.85435,0.9865,0.857,0.99016,0.86634,0.98185,0.85511,0.66039,-8.461,-59.379,-8.2069,-59.028,-8.178,-59.098,8.8228,-59.157,8.6225,-58.762,8.8769,-59.114,13.984,-32.485,13.546,-32.496,13.558,-32.427,-13.843,-34.611,-13.416,-34.556,-13.795,-34.67,13.732,-40.636,13.433,-40.596,13.432,-40.503,10.591,-69.15,10.352,-68.962,10.658,-69.084,10.597,-95.432,10.738,-95.325,10.696,-95.416,12.362,-49.875,12.629,-49.494,12.697,-49.501,13.275,-37.946,13.229,-37.919,13.388,-37.495,12.961,-32.53,13.099,-31.858,13.14,-31.892,10.274,-90.115,10.402,-89.998,10.42,-90.058,15.043,-94.363,14.556,-93.945,15.223,-94.352,13.854,-95.862,13.357,-95.495,13.366,-95.444,-0.005246,-70.137,-0.078272,-70.102,-0.16508,-69.541,4.3506,-97.258,4.5551,-96.92,4.6331,-96.941,14.941,-83.229,14.477,-82.901,14.552,-82.834,14.952,-84.181,14.485,-83.776,14.953,-84.1,11.537,-91.546,11.009,-91.179,11.057,-91.159,10.781,-92.818,10.378,-92.334,10.829,-92.798,11.28,-93.747,10.822,-93.291,10.834,-93.229,14.309,-88.818,13.883,-88.284,14.388,-88.754,14,-95.758,13.844,-95.647,13.951,-95.668,13.024,-84.402,13.11,-84.416,13.036,-84.632,13.689,-52.779,13.669,-53.007,13.585,-52.986,13.883,-65.477,13.788,-65.667,13.696,-65.613,11.872,-79.083,12.01,-78.922,12.112,-78.932,11.414,-51.59,11.312,-51.573,11.257,-51.479,1.2778,-33.954,1.1425,-33.942,1.1897,-33.884,12.365,-45.585,12.305,-45.809,12.294,-45.562,-8.8505,-93.506,-8.9867,-93.305,-8.7845,-93.448,-8.9043,-93.421,-9.1517,-93.236,-9.0402,-93.219,-11.454,-95.624,-11.632,-95.456,-11.563,-95.401,-11.519,-95.763,-11.662,-95.489,-11.484,-95.657,12.776,-93.652,12.849,-93.639,12.794,-93.763,11.945,-84.376,11.991,-84.132,12.018,-84.361,8.3116,-28.876,8.4673,-28.886,8.4678,-28.949,12.985,-95.668,12.427,-95.338,12.994,-95.617,12.742,-95.254,12.128,-94.948,12.186,-94.921,-1.657,-57.302,-1.8128,-56.71,-1.7625,-56.619,13.402,-95.215,13.465,-94.939,13.551,-94.994,14.073,-90.479,14.065,-90.25,14.165,-90.287,11.401,-84.161,11.322,-84.096,11.568,-83.955,10.66,-85.732,10.632,-85.656,10.954,-85.421,13.75,-96.57,14.066,-96.281,14.127,-96.326,10.313,-88.996,10.257,-88.944,10.485,-88.586,14.328,-89.165,14.172,-89.143,13.858,-88.689,7.518,-99.126,7.4706,-99.082,7.6798,-98.77,12.33,-91.019,12.624,-90.82,12.67,-90.866,8.4381,-65.257,8.4165,-65.189,8.6857,-65.003,14.627,-73.902,14.342,-73.456,14.651,-73.835,9.0951,-99.294,8.6439,-98.976,8.6875,-98.957,-6.3092,-97.51,-6.545,-97.33,-6.4461,-97.319,4.0285,-60.068,3.9137,-60.11,3.9313,-60.046,8.7995,-78.671,8.7107,-78.652,8.6704,-78.565,9.568,-95.427,9.7177,-95.285,9.8073,-95.3,11.94,-86.683,11.872,-86.62,12.072,-86.525,13.928,-97.569,13.967,-97.378,14.043,-97.432,13.965,-97.528,13.879,-97.486,14.004,-97.337,14.194,-96.569,14.091,-96.438,14.177,-96.48,14.296,-84.013,14.1,-83.459,14.382,-83.98,8.925,-98.374,8.5567,-97.96,8.5732,-97.904,8.3554,-98.762,8.0312,-98.329,8.399,-98.744,12.723,-92.309,12.866,-92.244,12.863,-92.302,13.492,-93.996,13.51,-93.898,13.576,-93.907,-9.7959,-89.552,-9.9392,-89.324,-9.7775,-89.455,-9.6593,-88.856,-9.8205,-88.724,-9.7662,-88.672,-6.3297,-97.526,-6.4666,-97.334,-6.2727,-97.476,14.237,-64.709,14.087,-64.876,14.192,-64.66,13.861,-73.543,13.755,-73.739,13.693,-73.693,11.955,-85.669,12.097,-85.497,12.155,-85.573,14.094,-93.348,14.144,-93.158,14.212,-93.193,13.779,-91.721,13.887,-91.538,13.845,-91.729,14.652,-72.933,14.351,-72.548,14.434,-72.511,12.251,-96.072,12.343,-95.846,12.408,-95.905,13.054,-97.106,13.034,-97.018,13.149,-96.881,9.1013,-97.3,9.0379,-97.239,9.2789,-97.116,-0.05092,-77.449,-0.3656,-77.028,-0.3518,-76.938,1.438,-79.935,1.3702,-79.995,1.0348,-79.506,-0.72339,-88.372,-0.98112,-87.974,-0.90751,-87.921,1.3223,-95.63,1.1079,-95.939,1.2518,-95.622,-0.15712,-88.902,-0.22744,-88.891,-0.42017,-88.443,11.952,-95.731,11.585,-95.351,11.601,-95.306,11.021,-94.729,10.576,-94.396,11.036,-94.684,10.655,-95.85,10.154,-95.541,10.208,-95.52,14.392,-44.912,14.354,-44.956,14.295,-44.811,9.192,-56.409,9.713,-55.998,9.7599,-56.023,3.3653,-57.796,3.2951,-57.825,2.7664,-57.511,6.9381,-70.071,6.599,-69.794,6.5786,-69.7,11.445,-69.974,11.361,-69.917,11.361,-69.817,13.258,-54.383,12.945,-54.283,13.188,-54.31,13.023,-72.979,12.778,-72.958,12.777,-72.861,12.086,-91.182,12.358,-91.2,12.31,-91.285,12.823,-100.88,13.094,-100.91,13.067,-100.98,12.867,-102.82,12.866,-102.75,13.138,-102.84,9.073,-103.84,9.182,-103.86,9.1767,-103.92,-5.3913,-52.312,-5.3015,-52.057,-5.1997,-52.014,-5.4793,-52.367,-5.5565,-52.344,-5.3878,-52.112,-13.341,-16.656,-13.141,-16.451,-13.106,-16.523,12.688,-95.984,12.431,-95.894,12.716,-95.922,12.907,-91.774,12.645,-91.758,12.651,-91.68,7.9956,-85.982,8.0092,-85.915,8.1183,-85.93,-13.298,-16.634,-13.275,-16.526,-13.043,-16.389,13.619,-73.607,13.307,-73.437,13.23,-73.369,13.056,-103.31,12.988,-103.3,12.969,-103.16,10.624,-63.002,10.576,-62.98,10.873,-62.622,12.881,-51.587,13.034,-51.108,13.075,-51.164,12.683,-102.71,12.619,-102.68,12.755,-102.59,2.996,-99.84,3.6253,-99.632,3.0621,-99.877,0.98584,-85.628,1.2087,-85.425,1.2154,-85.5,-5.6411,-61.352,-5.5676,-61.367,-5.7945,-61.566,3.6599,-22.16,3.6774,-22.207,3.5483,-22.189,15.122,-91.502,14.718,-91.268,14.764,-91.249,-0.76705,-59.733,-0.84166,-59.745,-0.85595,-59.275,-1.6957,-74.419,-1.7168,-74.045,-1.6417,-74.036,16.864,-89.268,16.528,-89.074,16.582,-89.021,16.883,-90.075,16.547,-89.825,16.884,-90.017,13.785,-85.789,13.435,-85.528,13.472,-85.512,13.153,-88.132,12.921,-87.772,13.191,-88.116,9.9219,-81.386,10.002,-81.283,10.022,-81.328,12.937,-94.946,12.974,-94.852,13.013,-94.923,14.109,-95.075,14.161,-95.059,14.125,-95.153,12.066,-73.084,12.107,-73.268,12.056,-73.287,13.739,-72.777,13.801,-72.78,13.763,-72.964,14.166,-36.978,14.177,-37.166,14.114,-37.161,16.438,-49.926,16.297,-50.047,16.378,-49.877,16.415,-51.365,16.336,-51.52,16.271,-51.483,14.616,-70.238,14.417,-70.35,14.542,-70.229,13.893,-76.693,13.843,-76.644,14.047,-76.541,15.962,-90.301,16.031,-90.085,16.089,-90.125,16.244,-88.753,16.217,-88.685,16.305,-88.534,15.778,-91.861,15.667,-91.788,15.744,-91.796,15.716,-92.313,15.641,-92.313,15.604,-92.241,15.975,-92.645,15.619,-92.34,15.693,-92.341,16.145,-93.696,15.842,-93.345,16.202,-93.646,13.684,-89.106,13.406,-88.769,13.423,-88.722,-3.6783,-59.682,-3.6768,-59.265,-3.6227,-59.215,12.968,-41.026,12.873,-40.933,12.952,-40.954,13.47,-42.023,13.398,-42.006,13.37,-41.934,-14.997,-17.236,-14.943,-17.175,-14.928,-17.275,-5.6679,-32.949,-5.7486,-32.888,-5.696,-32.873,11.027,-31.728,11.026,-31.919,10.972,-31.722,-11.192,-90.811,-11.45,-90.728,-11.371,-90.712,-11.232,-90.855,-14.071,-94.888,-14.223,-94.757,-14.18,-94.716,-14.084,-94.967,15.896,-80.43,15.819,-80.421,15.889,-80.246,15.968,-80.566,15.963,-80.381,16.034,-80.404,13.107,-88.97,13.095,-88.915,13.341,-88.758,16.111,-95.036,16.349,-94.828,16.389,-94.86,11.833,-83.767,11.801,-83.727,12.013,-83.495,5.98,-96.253,5.7303,-96.444,5.9269,-96.232,-0.86745,-74.271,-0.91443,-74.238,-0.87379,-73.853,16.091,-91.954,15.786,-91.669,15.799,-91.631,15.376,-92.466,15.015,-92.216,15.39,-92.428,17.125,-94.899,16.816,-94.592,17.254,-94.889,16.28,-95.354,15.872,-94.964,16.448,-95.337,15.324,-93.708,14.914,-93.355,14.929,-93.305,0.13614,-72.859,0.069894,-72.824,0.073586,-72.322,5.5073,-96.593,5.1915,-96.874,5.4357,-96.57,11.646,-85.543,11.599,-85.496,11.859,-85.162,15.195,-96.072,15.497,-95.773,15.551,-95.813,11.7,-86.616,11.677,-86.545,11.984,-86.299,15.986,-86.304,15.543,-85.992,15.987,-86.229,13.301,-88.324,12.817,-88.03,12.863,-88.005,12.501,-90.347,12.159,-89.91,12.548,-90.322,9.7835,-86.254,9.9008,-86.126,9.9226,-86.186,13.21,-95.052,13.281,-95.033,13.228,-95.155,11.568,-77.951,11.613,-78.221,11.542,-78.243,13.036,-77.983,13.119,-77.989,13.058,-78.256,13.532,-46.543,13.536,-46.817,13.454,-46.807,15.398,-56.72,15.213,-56.915,15.315,-56.661,15.392,-58.225,15.291,-58.459,15.203,-58.415,13.665,-75.612,13.833,-75.42,13.929,-75.425,13.548,-44.234,13.452,-44.224,13.403,-44.135,0.001862,-30.061,-0.12695,-30.028,-0.06901,-29.984,11.201,-41.581,11.182,-41.856,11.129,-41.567,-10.621,-92.316,-10.807,-92.097,-10.566,-92.264,-10.464,-92.65,-10.755,-92.445,-10.651,-92.431,-12.858,-95.494,-13.06,-95.288,-13.001,-95.238,-12.783,-95.609,-12.961,-95.301,-12.759,-95.507,6.0244,-27.599,6.0362,-27.663,5.8706,-27.613,14.297,-93.135,13.76,-92.859,13.818,-92.83,15.973,-85.226,15.531,-84.986,15.602,-84.914,15.195,-91.576,14.8,-91.122,15.271,-91.509,12.965,-91.374,12.568,-90.97,12.585,-90.908,14.763,-94.373,14.616,-94.279,14.718,-94.29,14.922,-84.656,14.922,-84.389,15.016,-84.419,15.07,-91.742,15.032,-91.655,15.154,-91.431,14.845,-92.601,14.936,-92.292,15.013,-92.34,13.311,-79.829,13.241,-79.771,13.512,-79.594,-1.8925,-57.109,-1.9635,-56.574,-1.9011,-56.498,14.518,-93.923,14.037,-93.622,14.534,-93.873,0.36142,0.71031,0.38772,0.72191,0.38819,0.70847,0.35976,0.7249,0.33,0.73229,0.36,0.76324,0.33218,0.76765,0.36024,0.80108,0.33442,0.80108,0.36434,0.85776,0.34467,0.85776,0.36935,0.91284,0.3495,0.91284,0.60213,0.81901,0.62665,0.82069,0.61306,0.80836,0.61941,0.8379,0.59335,0.82809,0.61311,0.85273,0.60467,0.87323,0.57852,0.84183,0.57905,0.88327,0.56323,0.84666,0.56705,0.88909,0.65802,0.71455,0.62304,0.75231,0.65817,0.74803,0.62284,0.70832,0.58792,0.75659,0.58767,0.7021,0.56059,0.70397,0.55058,0.75577,0.52861,0.71686,0.67904,0.97312,0.65173,0.98591,0.65399,0.99447,0.67385,0.96327,0.70463,0.93437,0.69394,0.92543,0.70903,0.89204,0.69704,0.88593,0.71679,0.85222,0.70323,0.84699,0.7242,0.81884,0.6911,0.83508,0.70901,0.80533,0.72448,0.79051,0.70019,0.78865,0.69585,0.79619,0.69107,0.78256,0.68139,0.7946,0.47818,0.85776,0.44535,0.91284,0.47081,0.91284,0.45468,0.85776,0.4909,0.80271,0.45268,0.85776,0.46798,0.80108,0.44102,0.80108,0.47167,0.77214,0.44395,0.76786,0.44672,0.73353,0.47187,0.74659,0.4909,0.74908,0.4909,0.77369,0.30483,0.77176,0.28544,0.77218,0.28544,0.80119,0.30496,0.74514,0.28544,0.74768,0.30682,0.72971,0.28544,0.72972,0.30903,0.71792,0.28544,0.71999,0.31084,0.70843,0.28544,0.71053,0.28544,0.69629,0.4909,0.69769,0.46521,0.70932,0.4909,0.71186,0.4668,0.69715,0.4909,0.68033,0.4686,0.68033,0.4909,0.65196,0.46719,0.65196,0.4909,0.62723,0.46759,0.62682,0.4909,0.60393,0.46796,0.60393,0.4909,0.56777,0.46853,0.56777,0.44093,0.60393,0.44034,0.56777,0.41209,0.60393,0.41146,0.56777,0.38947,0.60393,0.3893,0.56777,0.36631,0.60393,0.36676,0.56777,0.33768,0.60393,0.33741,0.62723,0.31094,0.62682,0.31133,0.65196,0.28544,0.65196,0.28544,0.62723,0.31058,0.60393,0.28544,0.60393,0.31002,0.56777,0.28544,0.56777,0.33809,0.56777,0.28544,0.68033,0.30877,0.68033,0.30997,0.69624,0.33364,0.6935,0.33429,0.70562,0.33188,0.71432,0.30827,0.80108,0.29847,0.85776,0.31859,0.85776,0.32363,0.91284,0.30412,0.91284,0.69583,0.76962,0.70568,0.77995,0.56963,0.80151,0.58078,0.79432,0.5489,0.81333,0.54433,0.82134,0.73991,0.80035,0.72895,0.82503,0.7484,0.80629,0.74537,0.83703,0.72873,0.85651,0.67051,0.74408,0.67039,0.7178,0.53211,0.83501,0.54914,0.85378,0.50281,0.86449,0.76008,0.8235,0.77529,0.86592,0.78621,0.85589,0.76292,0.88044,0.70471,0.74052,0.70462,0.72075,0.51569,0.87875,0.72001,0.73643,0.71995,0.72422,0.5977,0.79285,0.3621,0.70148,0.38838,0.70015,0.4148,0.70204,0.41507,0.71105,0.41763,0.7256,0.38764,0.76172,0.38756,0.80108,0.38766,0.85776,0.38646,0.91284,0.63924,0.82527,0.63895,0.84732,0.63918,0.86262,0.63772,0.89189,0.60121,0.89268,0.59776,0.91213,0.58339,0.91834,0.57132,0.93129,0.60319,0.96081,0.5935,0.97069,0.62574,0.98595,0.6215,0.99461,0.52872,0.73969,0.62799,0.97571,0.61078,0.95466,0.63688,0.92154,0.6373,0.90689,0.67609,0.91389,0.67536,0.89514,0.67267,0.87685,0.66343,0.85516,0.65978,0.84156,0.67589,0.82016,0.6657,0.80916,0.42309,0.91284,0.43005,0.85776,0.41407,0.80108,0.41597,0.76297,0.44466,0.7154,0.47024,0.73081,0.46727,0.71893,0.4909,0.73096,0.4909,0.72124,0.44233,0.70644,0.44329,0.69404,0.44303,0.68033,0.44171,0.65196,0.44131,0.62723,0.4125,0.62722,0.38957,0.62723,0.36602,0.62722,0.33713,0.65196,0.33437,0.68033,0.36309,0.69158,0.36259,0.69555,0.38852,0.69294,0.38865,0.69009,0.38894,0.68033,0.36492,0.68033,0.36572,0.65196,0.38968,0.65196,0.41293,0.65196,0.41251,0.68033,0.41406,0.69179,0.41442,0.69605,0.40804,0.85776,0.4045,0.91284,0.65229,0.82083,0.66564,0.95289,0.65039,0.97764,0.84284,0.8212,0.83744,0.81691,0.84276,0.81661,0.83689,0.82076,0.83724,0.82459,0.83645,0.82373,0.83605,0.82069,0.83534,0.82391,0.8352,0.82064,0.83657,0.81765,0.83545,0.81735,0.83625,0.8162,0.83492,0.81563,0.83479,0.82554,0.83613,0.82506,0.83569,0.82733,0.84242,0.82577,0.85088,0.82172,0.85017,0.81683,0.84253,0.81562,0.84225,0.81519,0.83662,0.81544,0.8358,0.81363,0.84221,0.82679,0.84985,0.82649,0.85128,0.82823,0.84203,0.82724,0.85042,0.82708,0.84173,0.82912,0.84202,0.83311,0.83529,0.83131,0.84182,0.78739,0.83182,0.79795,0.83486,0.79112,0.84128,0.79389,0.85356,0.78288,0.85709,0.78878,0.85993,0.79395,0.84397,0.7983,0.84501,0.80305,0.86129,0.79947,0.86436,0.79256,0.86084,0.78652,0.85718,0.78091,0.86485,0.78598,0.86782,0.79129,0.88163,0.78552,0.8697,0.79738,0.88471,0.79353,0.8906,0.77974,0.89613,0.79044,0.90178,0.79945,0.91912,0.79357,0.92187,0.81093,0.90509,0.81172,0.91505,0.83014,0.92698,0.83452,0.90724,0.83925,0.91746,0.84407,0.90289,0.84442,0.90604,0.85087,0.89019,0.85568,0.91002,0.8581,0.89034,0.86655,0.90124,0.87445,0.89043,0.87999,0.90075,0.88649,0.88726,0.89384,0.89484,0.90284,0.88389,0.90903,0.88865,0.91719,0.86893,0.92851,0.88306,0.72677,0.86337,0.69835,0.88128,0.70804,0.86139,0.71131,0.87973,0.73229,0.89502,0.72853,0.88766,0.73822,0.90783,0.74104,0.90715,0.7243,0.8909,0.71275,0.89128,0.91861,0.89385,0.926,0.88593,0.92402,0.90132,0.91222,0.90113,0.93209,0.88234,0.94356,0.89159,0.94462,0.89492,0.95328,0.9085,0.93799,0.90924,0.91894,0.9198,0.92809,0.92682,0.91751,0.92972,0.93474,0.92384,0.94654,0.93046,0.94972,0.92069,0.95425,0.92526,0.96015,0.93848,0.68611,0.92372,0.68283,0.93131,0.67552,0.929,0.69332,0.91803,0.68475,0.92334,0.69698,0.93822,0.70891,0.9285,0.7129,0.94161,0.71976,0.92762,0.7289,0.93747,0.74444,0.95021,0.73074,0.9624,0.71496,0.97472,0.73001,0.96088,0.74426,0.98461,0.74222,0.96984,0.75538,0.99485,0.75774,0.98444,0.77132,0.6321,0.61424,0.62171,0.61424,0.62171,0.59513,0.6321,0.62929,0.64348,0.62929,0.64348,0.61424,0.66202,0.61424,0.66202,0.62929,0.71057,0.61424,0.71058,0.62929,0.75934,0.61424,0.75934,0.62929,0.7839,0.61424,0.7839,0.62929,0.81273,0.62929,0.81273,0.61424,0.82771,0.62929,0.82771,0.61424,0.84261,0.61424,0.84261,0.59513,0.88603,0.61424,0.88603,0.59513,0.88603,0.57879,0.93233,0.57879,0.93233,0.59513,0.99301,0.57879,0.93233,0.55786,0.88603,0.55786,0.84261,0.55786,0.84261,0.5788,0.82771,0.5788,0.82771,0.59513,0.81273,0.59513,0.7839,0.59513,0.75934,0.59513,0.71057,0.59513,0.66202,0.59513,0.64348,0.59513,0.6321,0.59513,0.62171,0.5788,0.98338,0.87507,0.9937,0.88588,0.98069,0.89884,0.96982,0.88568,0.96929,0.90855,0.95881,0.89622,0.95513,0.91861,0.94407,0.90805,0.93851,0.91917,0.94324,0.92957,0.95307,0.70623,0.94576,0.69603,0.93844,0.93771,0.93163,0.92687,0.93483,0.89582,0.92315,0.90466,0.91492,0.91219,0.91176,0.90284,0.90169,0.89831,0.8885,0.71423,0.91159,0.89189,0.92655,0.88364,0.9422,0.87372,0.93424,0.86256,0.91904,0.87154,0.92446,0.85068,0.94122,0.84062,0.93586,0.81496,0.94922,0.81963,0.95949,0.82114,0.96196,0.839,0.6321,0.53744,0.62171,0.53744,0.62171,0.51974,0.6321,0.55787,0.62171,0.55787,0.6321,0.5788,0.64348,0.5788,0.66202,0.5788,0.71057,0.5788,0.75934,0.5788,0.7839,0.5788,0.81273,0.5788,0.81273,0.55786,0.7839,0.55786,0.75934,0.55786,0.71057,0.55786,0.66202,0.55787,0.64348,0.55787,0.64348,0.53744,0.6321,0.51974,0.62171,0.5024,0.96306,0.80717,0.95166,0.803,0.93902,0.80008,0.93954,0.78636,0.95034,0.78065,0.972,0.79436,0.62171,0.48516,0.6321,0.5024,0.6321,0.48516,0.64348,0.5024,0.64348,0.48516,0.66202,0.48516,0.66202,0.5024,0.71057,0.48516,0.71057,0.5024,0.71057,0.51974,0.66202,0.51974,0.66202,0.53744,0.71057,0.53744,0.64348,0.51974,0.75934,0.53744,0.75934,0.51974,0.75934,0.50239,0.75934,0.48516,0.75934,0.47124,0.7839,0.47124,0.7839,0.48516,0.81273,0.48516,0.81273,0.47124,0.82771,0.47124,0.82771,0.48516,0.84261,0.47124,0.84261,0.62929,0.88603,0.62928,0.93233,0.61424,0.99301,0.59512,0.99301,0.61424,0.99301,0.62928,0.93233,0.62928,0.99301,0.47124,0.93233,0.48516,0.93233,0.47124,0.99301,0.48516,0.99301,0.50239,0.93233,0.50239,0.99301,0.51974,0.93233,0.51974,0.88603,0.50239,0.88603,0.51974,0.84261,0.51974,0.84261,0.50239,0.82771,0.50239,0.82771,0.51974,0.82771,0.53744,0.81273,0.51974,0.81273,0.53744,0.7839,0.53744,0.7839,0.51974,0.7839,0.50239,0.81273,0.50239,0.84261,0.48516,0.88603,0.48516,0.88603,0.47124,0.82771,0.55786,0.84261,0.53744,0.88603,0.53744,0.93233,0.53744,0.99301,0.55786,0.99301,0.53743,0.71057,0.47124,0.66202,0.47124,0.64348,0.47124,0.6321,0.47124,0.62171,0.47124,0.97842,0.78334,0.95973,0.76884,0.94966,0.75759,0.93833,0.7689,0.93072,0.77551,0.91143,0.78364,0.90475,0.76965,0.88891,0.775,0.87624,0.77653,0.86134,0.77902,0.87192,0.83667,0.86627,0.83602,0.86643,0.82782,0.86064,0.82788,0.86125,0.838,0.84868,0.83699,0.85241,0.83,0.85264,0.82189,0.85394,0.82193,0.85283,0.81393,0.85154,0.81546,0.85151,0.82179,0.84205,0.8134,0.84303,0.8097,0.84965,0.80722,0.8361,0.80843,0.86152,0.80583,0.86596,0.79946,0.8665,0.80655,0.87248,0.80534,0.88819,0.80281,0.88957,0.81362,0.90328,0.82645,0.8994,0.83511,0.89062,0.84768,0.8716,0.85933,0.87775,0.87045,0.88155,0.88206,0.8737,0.88339,0.87648,0.89332,0.8505,0.89724,0.8628,0.73595,0.84441,0.74271,0.8429,0.72898,0.86529,0.74773,0.84183,0.7496,0.863,0.75629,0.87547,0.74922,0.87109,0.75941,0.88943,0.75556,0.88229,0.76492,0.89959,0.76354,0.88679,0.77075,0.90913,0.75992,0.87356,0.73584,0.8751,0.89509,0.87882,0.90078,0.87156,0.89635,0.85975,0.91419,0.86868,0.91877,0.86607,0.93061,0.86069,0.6963,0.85605,0.70874,0.85802,0.71834,0.85374,0.72508,0.85524,0.90135,0.85679,0.91582,0.86167,0.92325,0.86267,0.9322,0.8573,0.69569,0.85081,0.7068,0.8476,0.71296,0.85301,0.71551,0.84947,0.72181,0.85036,0.90632,0.85426,0.91787,0.85569,0.92674,0.84507,0.93293,0.83773,0.92795,0.83509,0.92988,0.8388,0.93651,0.8421,0.94372,0.83809,0.94496,0.83286,0.93912,0.82852,0.9408,0.82335,0.93445,0.83206,0.93127,0.81643,0.92618,0.82264,0.92124,0.82791,0.91944,0.83181,0.91552,0.84428,0.90844,0.84428,0.71932,0.83038,0.71283,0.83305,0.70575,0.83712,0.69948,0.84031,0.68641,0.83742,0.68429,0.83239,0.6968,0.82902,0.70375,0.82588,0.71023,0.82093,0.7082,0.8248,0.70205,0.82735,0.69543,0.83383,0.68362,0.82036,0.69247,0.81662,0.6982,0.81356,0.70429,0.80837,0.6932,0.81187,0.6886,0.80352,0.68863,0.80483,0.6979,0.80915,0.93295,0.81379,0.93878,0.82288,0.93693,0.82687,0.94145,0.82523,0.94208,0.82176,0.93833,0.81467,0.94032,0.80722,0.94282,0.80852,0.94396,0.81568,0.94135,0.82145,0.93903,0.8245,0.94236,0.80965,0.94455,0.81748,0.94502,0.81859,0.94896,0.81184,0.9502,0.81088,0.94733,0.81085,0.94986,0.8101,0.9476,0.80929,0.94789,0.80802,0.94567,0.80912,0.94543,0.80693,0.94456,0.80839,0.94451,0.80614,0.93874,0.80081,0.69155,0.7979,0.68718,0.79994,0.68395,0.80986,0.95037,0.81094,0.951,0.81875,0.95,0.82448,0.94684,0.811,0.95296,0.80976,0.95189,0.80646,0.68589,0.80343,0.68246,0.80482,0.68218,0.81316,0.68148,0.81862,0.95051,0.81902,0.95239,0.81143,0.95133,0.82704,0.94744,0.82921,0.94884,0.82516,0.94714,0.82422,0.68252,0.84548,0.94153,0.86994,0.73873,0.92324,0.75529,0.91941,0.71631,0.89824,0.71203,0.88802,0.69575,0.88265,0.70126,0.87369,0.93573,0.88119,0.94594,0.88733,0.95051,0.87915,0.94775,0.86801,0.94152,0.87163,0.93842,0.88327,0.68952,0.88054,0.69628,0.87697,0.69332,0.88578,0.69249,0.89129,0.68804,0.88843,0.68474,0.90027,0.67999,0.89782,0.67807,0.88047,0.67505,0.87506,0.67859,0.86999,0.68276,0.86079,0.95175,0.86918,0.96064,0.88333,0.95537,0.87742,0.96259,0.89146,0.9578,0.89357,0.95552,0.89415,0.69195,0.90094,0.68262,0.90555,0.70541,0.91649,0.70233,0.91097,0.69629,0.91394,0.93462,0.91721,0.94347,0.91323,0.95504,0.9186,0.95956,0.92462,0.96219,0.92281,0.6791,0.93128,0.67414,0.92089,0.67567,0.93008,0.67296,0.91887,0.66797,0.91315,0.66904,0.91568,0.67822,0.917,0.68164,0.91234,0.6872,0.91718,0.69866,0.91051,0.94192,0.9054,0.95035,0.90418,0.95391,0.91268,0.95722,0.91151,0.95944,0.90237,0.9574,0.9113,0.68321,0.90972,0.67912,0.90743,0.67083,0.90038,0.96503,0.90815,0.96928,0.91649,0.96445,0.92345,0.9643,0.91915,0.9737,0.9148,0.96886,0.91314,0.97344,0.91855,0.97595,0.91867,0.66428,0.92705,0.66155,0.92659,0.66341,0.92571,0.65995,0.917,0.66096,0.91591,0.65626,0.92235,0.65345,0.91512,0.64965,0.91028,0.65036,0.91082,0.65705,0.91178,0.66241,0.91254,0.6657,0.90676,0.66685,0.90026,0.96871,0.90789,0.97133,0.90678,0.97311,0.89769,0.97218,0.90627,0.66283,0.90563,0.65742,0.89678,0.97733,0.90359,0.97955,0.9111,0.9776,0.91729,0.97816,0.9095,0.98069,0.90882,0.98203,0.90452,0.98112,0.90828,0.98307,0.90459,0.98242,0.90041,0.98591,0.90165,0.9864,0.8967,0.98448,0.90542,0.64995,0.9103,0.64495,0.9133,0.64545,0.91401,0.64225,0.91126,0.64079,0.90815,0.64121,0.90723,0.64491,0.89625,0.98932,0.89889,0.99098,0.90018,0.99103,0.90041,0.99145,0.89961,0.99213,0.90271,0.9866,0.90478,0.98295,0.90804,0.98351,0.90566,0.98794,0.90112,0.99094,0.90331,0.99206,0.90546,0.99325,0.90841,0.98964,0.91031,0.98588,0.91198,0.98505,0.91082,0.98575,0.90925,0.99047,0.90643,0.99516,0.9052,0.99514,0.90539,0.99409,0.91483,0.64299,0.91838,0.64732,0.91041,0.99131,0.90588,0.99405,0.91381,0.98475,0.88078,0.97004,0.87355,0.96738,0.87896,0.97229,0.88741,0.66323,0.88806,0.66581,0.87734,0.6708,0.87228,0.67495,0.86706,0.67861,0.85934,0.95649,0.86806,0.96294,0.86578,0.96466,0.85576,0.95995,0.86951,0.67137,0.86349,0.67516,0.87455,0.66725,0.88488,0.66163,0.87151,0.66199,0.86555,0.66572,0.8596,0.66929,0.85199,0.96558,0.85952,0.97124,0.8698,0.97143,0.87682,0.97473,0.86628,0.97523,0.86525,0.97631,0.8601,0.97348,0.86411,0.97742,0.86809,0.98143,0.86634,0.98185,0.86258,0.98706,0.85638,0.99004,0.86183,0.98571,0.86242,0.98658,0.85679,0.98901,0.8552,0.98989,0.85572,0.99128,0.86168,0.64645,0.85868,0.65224,0.85736,0.64634,0.8628,0.6508,0.86623,0.65504,0.86999,0.64973,0.8631,0.64681,0.85724,0.99181,0.857,0.99016,0.86369,0.98863,0.8705,0.98186,0.87809,0.65507,0.86102,0.65828,0.85511,0.66039,0.84742,0.97386,0.85296,0.97761,0.85434,0.97871,0.85968,0.97507,0.85564,0.97935,0.85971,0.97576,0.86363,0.97787,0.84898,0.98316,0.85061,0.98376,0.84639,0.9798,0.85454,0.65363,0.85366,0.64861,0.85074,0.98435,0.84946,0.9849,0.85187,0.98402,0.85891,0.98236,0.85435,0.9865,0.85318,0.98756,0.8558,0.98904,0.85087,0.98551,0.86565,0.9818,0.92005,0.76332,0.62171,0.62929,0.87577,0.76911,0.86831,0.77289,0.88714,0.84149,0.88968,0.83123,0.87197,0.82768,0.86732,0.82153,0.86086,0.82177,0.86097,0.81572,0.86661,0.81511,0.87203,0.815,0.87221,0.82147,0.88944,0.82249,0.86845,0.76975,0.88162,0.85218,0.86605,0.76633,0.858,0.76443,0.86992,0.87426,0.86457,0.86373,0.84452,0.88194,0.85293,0.8883,0.84436,0.89136,0.84645,0.89869,0.83984,0.7271,0.83815,0.74145,0.83671,0.74808,0.83976,0.75697,0.8436,0.8685,0.84121,0.88349,0.83747,0.88438,0.83674,0.89294,0.84233,0.89961,0.82725,0.89501,0.82579,0.90233,0.83598,0.72834,0.81944,0.73906,0.81912,0.72653,0.83242,0.7412,0.81799,0.7455,0.83142,0.74756,0.83444,0.75498,0.83883,0.87176,0.83308,0.87163,0.82081,0.87596,0.82286,0.88871,0.82123,0.89632,0.82213,0.90331,0.81582,0.72543,0.81437,0.73771,0.81321,0.74462,0.8171,0.75218,0.83007,0.75425,0.81214,0.75101,0.81988,0.8897,0.81666,0.8787,0.81654,0.88952,0.81147,0.8784,0.80827,0.7441,0.80703,0.7503,0.80946,0.73808,0.81216,0.72655,0.80233,0.7367,0.80101,0.74289,0.79919,0.74863,0.80461,0.88152,0.80785,0.89074,0.81557,0.89682,0.81036,0.89719,0.8182,0.90366,0.80902,0.90415,0.80888,0.89731,0.80754,0.9024,0.79974,0.90468,0.80283,0.72699,0.79468,0.73534,0.79346,0.72896,0.7928,0.74051,0.79076,0.74539,0.79716,0.88521,0.79893,0.89158,0.80684,0.8927,0.80735,0.8974,0.80554,0.89357,0.79924,0.89313,0.79248,0.89314,0.79325,0.89449,0.80667,0.89743,0.7998,0.89428,0.80512,0.89407,0.80026,0.89777,0.80022,0.9016,0.79439,0.90082,0.79427,0.89792,0.78707,0.73764,0.7828,0.73455,0.78558,0.7322,0.78194,0.73779,0.78553,0.74077,0.79264,0.88938,0.78902,0.73438,0.78673,0.73158,0.793,0.903,0.79988,0.90295,0.79379,0.90172,0.79223,0.90174,0.79345,0.90128,0.79271,0.90045,0.80605,0.90165,0.80557,0.90122,0.79299,0.89494,0.79175,0.89457,0.79238,0.89583,0.79403,0.89533,0.83294,0.80356,0.83205,0.81015,0.82824,0.80557,0.83105,0.80934,0.82803,0.79957,0.97251,0.8585,0.96255,0.87427,0.95008,0.88417,0.95591,0.86507,0.94902,0.85352,0.83657,0.82581,-13.281,-80.907,-12.967,-80.744,-12.963,-80.847,-4.9018,-81.698,-4.8538,-81.795,-4.9045,-81.892,-6.0623,-72.021,-6.0308,-72.1,-6.2904,-72.208,-24.108,-60.043,-24.38,-59.948,-24.347,-59.87,-23.169,-73.542,-23.427,-73.468,-23.405,-73.365,-22.42,-78.665,-22.742,-78.507,-22.483,-78.575,-21.501,-79.735,-21.829,-79.685,-21.826,-79.583,-24.539,-73.775,-24.594,-73.68,-24.544,-73.582,-24.721,-67.966,-24.854,-67.903,-24.789,-67.866,-24.642,-53.816,-24.697,-53.866,-24.923,-53.677,20.527,-74.709,20.827,-74.618,20.822,-74.706,15.07,-73.378,14.78,-73.366,14.78,-73.277,15.148,-73.347,14.783,-73.242,15.073,-73.254,22.319,-28.725,22.638,-28.93,22.714,-29.008,6.0216,-81.273,6.0829,-81.171,6.1462,-81.206,-3.3921,-68.993,-3.6044,-69.198,-3.6571,-69.148,-24.982,-79.808,-25.033,-79.148,-24.929,-79.137,-25.185,-76.232,-25.189,-75.753,-25.125,-75.671,-17.347,-80.583,-17.477,-80.049,-17.409,-80.078,-24.965,-35.991,-25.107,-36.056,-25.151,-35.997,-13.94,-80.057,-13.818,-80.537,-13.87,-80.561,-14.723,-79.664,-14.73,-78.937,-14.678,-78.913,-25.048,-79.854,-25.111,-79.798,-25.058,-79.127,-21.422,-58.112,-21.001,-58.011,-20.951,-58.078,-20.823,-80.164,-20.824,-80.088,-20.352,-80.059,-15.008,-80.061,-14.546,-80.073,-14.545,-80.149,-14.615,-52.961,-14.572,-52.892,-14.153,-52.976,3.0875,-78.546,3.1509,-79.217,3.0924,-79.273,-18.65,-80.546,-18.6,-80.038,-18.532,-80.008,-21.422,-80.067,-21.476,-80.045,-21.364,-79.561,-20.86,-79.797,-20.93,-79.047,-20.877,-79.069,-15.759,-66.223,-16.313,-66.292,-15.859,-66.13,-2.0357,-80.423,-1.9931,-79.672,-1.9127,-80.483,23.438,-36.367,24.006,-36.894,23.83,-36.866,8.6168,-50.366,8.5779,-50.992,8.5296,-51.003,9.2524,-47.405,9.3003,-47.393,9.1227,-48.003,-18.071,-76.872,-18.045,-76.795,-17.504,-76.643,-1.593,-78.387,-1.229,-78.51,-1.2326,-78.59,-18.155,-76.858,-17.66,-76.618,-17.613,-76.706,-19.676,-75.489,-19.719,-75.398,-19.066,-75.186,-20.03,-75.877,-19.473,-75.632,-19.376,-75.668,13.384,-34.482,13.636,-34.379,13.641,-34.481,-6.6548,9.3652,-6.6348,9.4694,-6.4377,9.4124,-22.366,-44.558,-22.52,-44.725,-22.467,-44.525,-22.178,-45.122,-22.37,-45.242,-22.24,-45.06,-21.651,-51.232,-21.682,-51.164,-21.482,-51.059,-21.934,-73.362,-21.906,-73.229,-21.854,-73.283,-21.904,-63.308,-21.953,-63.159,-21.895,-63.136,5.2223,-52.074,5.2615,-52.122,5.0877,-52.741,-17.566,-75.029,-17.691,-74.689,-17.629,-74.616,3.3409,-66.729,3.1535,-66.966,3.1411,-66.855,3.1797,-66.879,3.2339,-66.947,3.0336,-67.072,-12.33,-55.47,-12.559,-55.529,-12.567,-55.442,-12.277,-55.19,-12.21,-55.276,-12.506,-55.249,15.233,-40.448,15.276,-40.388,15.321,-40.513,-8.5339,-27.092,-8.7714,-27.067,-8.5536,-27.02,-9.9495,-16.451,-10.164,-16.509,-10.169,-16.423,15.664,-13.832,15.759,-13.778,15.853,-13.812,23.269,-52.401,22.737,-52.099,23.255,-52.323,-7.668,-58.672,-7.656,-58.722,-8.107,-59.135,-4.9601,-59.65,-5.4423,-60.07,-5.4583,-60.022,-3.0319,-57.47,-3.5428,-57.91,-3.0913,-57.457,-3.3181,-39.953,-3.4094,-39.809,-3.3493,-39.8,16.697,-45.51,17.112,-45.529,17.125,-45.603,17.181,-70.489,17.215,-70.417,17.596,-70.498,-10.437,-65.673,-10.134,-65.954,-10.497,-65.718,-21.437,-63.84,-21.348,-63.789,-21.246,-63.826,-16.611,-53.278,-16.569,-53.481,-16.64,-53.555,-13.178,-55.649,-13.16,-55.927,-13.27,-55.692,-21.622,-48.433,-21.709,-48.73,-21.668,-48.411,-18.975,-62.596,-19.012,-62.64,-19.114,-62.348,-22.103,-76.318,-22.491,-76.164,-22.443,-76.132,-12.119,-13.234,-12.264,-12.823,-12.094,-13.204,8.4073,-15.31,8.6031,-14.819,8.6378,-14.94,-14.266,-12.162,-14.572,-11.863,-14.551,-11.831,-16.001,-17.072,-16.047,-17.085,-16.366,-16.785,-11.593,-80.764,-11.643,-80.885,-11.641,-80.769,-18.935,-79.681,-18.943,-79.602,-18.863,-79.611,-18.351,-71.95,-18.431,-71.94,-18.458,-71.871,-21.478,-78.118,-21.909,-77.932,-21.512,-78.051,-21.379,-76.942,-21.829,-76.827,-21.809,-76.754,-22.093,-76.865,-22.433,-76.68,-22.076,-76.79,-18.071,-46.373,-18.263,-46.485,-18.123,-46.326,-17.224,-51.292,-17.349,-51.407,-17.42,-51.394,-13.716,-62.992,-13.892,-63.025,-13.753,-62.927,-13.654,-63.843,-13.805,-63.949,-13.831,-63.876,-10.624,-73.468,-10.803,-73.508,-10.648,-73.41,-10.045,-77.49,-10.22,-77.584,-10.224,-77.529,21.423,-39.71,21.46,-39.901,21.366,-39.726,21.535,-39.929,-19.859,-79.003,-19.786,-78.933,-19.781,-78.988,16.433,-1.3115,16.328,-1.0734,16.473,-1.2677,16.32,-1.1521,0.91786,-71.906,0.72484,-71.938,0.8907,-71.859,-0.53398,-66.203,-0.69829,-66.286,-0.71346,-66.225,-1.4812,-49.68,-1.6602,-49.706,-1.5087,-49.608,-1.7819,-48.605,-1.9326,-48.704,-1.9473,-48.631,-3.5816,-26.338,-3.7452,-26.374,-3.5503,-26.272,-5.8671,-19.552,-5.8838,-19.485,-5.6817,-19.434,7.8754,-40.703,8.1553,-40.712,7.8562,-40.756,-1.9374,-1.3088,-2.2371,-1.268,-2.2387,-1.2169,-19.249,-36.935,-19.282,-36.955,-19.633,-36.73,-19.568,-34.432,-19.909,-34.157,-19.877,-34.135,-18.838,-29.929,-19.151,-29.586,-18.829,-29.882,17.286,-47.556,17.646,-47.254,17.684,-47.317,18.142,-52.423,18.16,-52.352,18.516,-52.139,7.7959,-46.056,7.7347,-46.109,7.7827,-45.984,13.247,-67.169,13.154,-67.137,13.223,-67.094,14.119,-61.009,14.042,-61.027,14.027,-60.975,5.0812,-76.565,4.9762,-76.494,5.0181,-76.47,7.1047,-45.187,7.0595,-45.313,7.0512,-45.237,20.553,-45.191,20.528,-45.121,20.869,-44.967,20.329,-43.141,20.64,-42.911,20.691,-42.934,-18.17,-71.144,-18.277,-71.065,-18.205,-71.075,-5.982,-75.91,-6.06,-75.661,-6.0064,-75.61,-20.832,-27.352,-20.878,-27.374,-21.3,-27.039,-20.969,-24.818,-21.374,-24.427,-21.33,-24.401,-20.185,-19.576,-20.525,-19.084,-20.164,-19.518,10.904,-62.845,10.802,-62.85,10.794,-62.778,3.5508,16.745,3.4734,16.812,3.8151,16.833,-0.3371,-74.908,-0.45758,-74.789,-0.39888,-74.768,9.0407,-19.383,9.487,-18.865,9.4779,-19.031,-22.886,-41.406,-23.021,-41.798,-22.945,-41.376,-12.196,-61.9,-11.948,-62.188,-11.982,-62.254,-21.308,-74.46,-21.755,-74.238,-21.289,-74.361,-21.408,-73.77,-21.915,-73.59,-21.854,-73.546,-10.477,-4.1011,-10.523,-4.1232,-10.489,-3.563,-12.546,-1.2431,-12.754,-0.72953,-12.712,-0.7025,-13.211,-74.517,-13.262,-74.164,-13.182,-74.108,-16.872,-77.879,-16.853,-77.726,-16.79,-77.726,-16.06,-6.1602,-16.123,-6.157,-16.397,-5.662,-21.817,-73.981,-22.4,-73.836,-22.375,-73.738,-21.717,-75.573,-22.277,-75.335,-21.762,-75.485,-5.3842,-14.659,-5.6879,-14.724,-5.6813,-14.634,-4.7545,-20.753,-4.9992,-20.737,-4.6937,-20.681,-5.339,-45.913,-5.582,-46.001,-5.584,-45.903,-5.4358,-63.706,-5.6912,-63.778,-5.6988,-63.695,-4.5542,-69.919,-4.8364,-69.919,-4.5801,-69.851,4.9075,15.104,5.1769,15.174,5.1897,15.099,21.298,-32.546,21.373,-32.529,21.423,-32.804,21.15,-33.255,21.283,-33.576,21.188,-33.533,-21.808,-76.128,-21.71,-76.038,-21.705,-76.112,-20.856,-66.502,-20.989,-66.389,-20.896,-66.408,-19.61,-42.009,-19.812,-42.154,-19.903,-42.127,-17.075,-56.945,-16.853,-56.833,-16.815,-56.924,-17.025,-58.196,-17.047,-58.096,-16.787,-58.076,-14.826,-68.959,-14.805,-69.039,-15.071,-69.066,-14.576,-73.771,-14.845,-73.87,-14.842,-73.797,-20.066,-37.901,-20.354,-38.031,-20.125,-37.833,4.7789,-46.049,4.6877,-46.198,4.6977,-46.096,18.227,-43.045,18.586,-42.923,18.226,-43.118,5.1098,-0.76174,4.8024,-0.49155,4.8371,-0.43549,19.125,-49.552,19.563,-49.308,19.624,-49.348,23.103,-64.728,23.296,-65.364,23.171,-65.271,13.897,-73.596,13.897,-73.044,13.941,-73.582,12.175,-74.224,12.154,-73.638,12.2,-73.672,-16.997,-77.632,-17.071,-77.582,-16.685,-77.136,-15.165,-77.627,-14.894,-77.24,-14.819,-77.289,15.88,-64.857,16.127,-64.772,16.128,-64.859,16.959,-59.826,17.159,-59.807,16.915,-59.903,18.541,-40.365,18.715,-40.242,18.738,-40.331,19.145,-38.477,19.357,-38.432,19.187,-38.562,22.916,6.41,22.891,6.6247,22.967,6.6198,2.1141,12.838,1.9344,12.986,2.1334,12.902,-15.307,-75.268,-15.531,-75.314,-15.538,-75.24,-15.254,-75.373,-15.54,-75.344,-15.316,-75.298,-21.055,-57.724,-21.215,-57.443,-21.167,-57.37,4.6031,-6.4502,4.5909,-6.2951,4.6429,-6.3161,23.306,-44.94,23.289,-44.844,23.354,-44.829,25.049,-41.279,25.129,-41.33,25.136,-41.418,25.38,-60.34,25.147,-59.807,25.462,-60.303,6.508,-76.048,6.7082,-75.536,6.7634,-75.526,4.7588,-76.719,5.0118,-76.246,4.7925,-76.751,3.2955,-76.411,3.4144,-75.874,3.4471,-75.907,18.123,-71.439,18.487,-71.494,18.49,-71.558,19.471,-76.817,19.51,-76.759,19.837,-76.862,25.652,-68.435,25.398,-67.975,25.68,-68.371,25.709,-68.62,25.422,-68.227,25.506,-68.193,-1.403,-78.924,-1.3761,-78.865,-1.0469,-78.954,2.0282,-74.878,2.3421,-74.888,2.36,-74.957,-14.732,-77.891,-14.386,-77.551,-14.717,-77.96,14.366,-72.156,14.435,-71.635,14.478,-71.621,-25.398,-48.771,-25.492,-48.669,-25.454,-48.627,-18.219,-77.374,-17.915,-76.948,-17.826,-76.934,-1.1323,-73.645,-1.0906,-73.568,-0.93954,-73.754,-4.819,-70.704,-4.6841,-70.813,-4.687,-70.903,-12.08,-60.352,-12.051,-60.542,-12.156,-60.404,-12.636,-59.993,-12.524,-60.145,-12.61,-60.183,-22.053,-44.978,-22.097,-45.165,-22.129,-44.979,-24.536,-42.428,-24.565,-42.632,-24.622,-42.599,-4.1719,-78.477,-4.368,-78.517,-4.1941,-78.405,-4.0757,-78.369,-4.2999,-78.504,-4.2717,-78.409,-21.101,-73.57,-21.141,-73.455,-21.078,-73.474,-15.694,-69.871,-15.816,-69.984,-15.784,-69.899,20.447,-74.716,20.527,-74.626,20.822,-74.624,3.0579,-59.271,3.0196,-59.335,2.8816,-59.273,-9.5586,-80.101,-9.3301,-79.914,-9.3097,-80.017,0.35976,0.7249,0.36142,0.71031,0.38772,0.72191,0.33,0.73229,0.33188,0.71432,0.30496,0.74514,0.30682,0.72971,0.28544,0.74768,0.28544,0.77218,0.30483,0.77176,0.33218,0.76765,0.36,0.76324,0.38764,0.76172,0.41763,0.7256,0.41597,0.76297,0.44672,0.73353,0.44395,0.76786,0.41407,0.80108,0.38756,0.80108,0.40804,0.85776,0.43005,0.85776,0.4045,0.91284,0.38766,0.85776,0.38646,0.91284,0.65229,0.82083,0.63895,0.84732,0.63924,0.82527,0.65978,0.84156,0.66343,0.85516,0.63918,0.86262,0.67267,0.87685,0.63772,0.89189,0.67536,0.89514,0.6373,0.90689,0.67609,0.91389,0.63688,0.92154,0.66564,0.95289,0.69394,0.92543,0.67385,0.96327,0.70463,0.93437,0.67904,0.97312,0.58792,0.75659,0.56059,0.70397,0.58767,0.7021,0.55058,0.75577,0.57132,0.93129,0.60319,0.96081,0.5935,0.97069,0.58339,0.91834,0.56705,0.88909,0.57905,0.88327,0.56323,0.84666,0.57852,0.84183,0.5489,0.81333,0.59335,0.82809,0.56963,0.80151,0.73991,0.80035,0.7242,0.81884,0.72448,0.79051,0.72895,0.82503,0.7484,0.80629,0.54433,0.82134,0.53211,0.83501,0.76008,0.8235,0.74537,0.83703,0.77529,0.86592,0.78621,0.85589,0.50281,0.86449,0.54914,0.85378,0.65802,0.71455,0.67051,0.74408,0.65817,0.74803,0.67039,0.7178,0.72873,0.85651,0.71679,0.85222,0.76292,0.88044,0.72001,0.73643,0.70462,0.72075,0.71995,0.72422,0.70471,0.74052,0.51569,0.87875,0.70323,0.84699,0.69704,0.88593,0.70903,0.89204,0.62304,0.75231,0.62284,0.70832,0.6911,0.83508,0.67589,0.82016,0.6657,0.80916,0.42309,0.91284,0.45468,0.85776,0.44102,0.80108,0.47167,0.77214,0.46798,0.80108,0.45268,0.85776,0.4909,0.80271,0.47818,0.85776,0.28544,0.80119,0.30827,0.80108,0.29847,0.85776,0.33442,0.80108,0.36024,0.80108,0.36434,0.85776,0.36935,0.91284,0.62665,0.82069,0.61941,0.8379,0.61311,0.85273,0.60467,0.87323,0.60121,0.89268,0.59776,0.91213,0.61078,0.95466,0.62799,0.97571,0.65039,0.97764,0.65173,0.98591,0.65399,0.99447,0.52861,0.71686,0.52872,0.73969,0.62574,0.98595,0.6215,0.99461,0.60213,0.81901,0.58078,0.79432,0.61306,0.80836,0.5977,0.79285,0.69107,0.78256,0.69583,0.76962,0.70568,0.77995,0.32363,0.91284,0.30412,0.91284,0.31859,0.85776,0.34467,0.85776,0.3495,0.91284,0.47081,0.91284,0.44535,0.91284,0.69585,0.79619,0.68139,0.7946,0.70019,0.78865,0.70901,0.80533,0.4909,0.77369,0.4909,0.74908,0.47187,0.74659,0.47024,0.73081,0.44466,0.7154,0.41507,0.71105,0.38819,0.70847,0.3621,0.70148,0.38838,0.70015,0.38852,0.69294,0.4148,0.70204,0.44233,0.70644,0.41442,0.69605,0.38865,0.69009,0.41406,0.69179,0.44329,0.69404,0.46521,0.70932,0.46727,0.71893,0.4909,0.73096,0.28544,0.72972,0.30903,0.71792,0.28544,0.71999,0.4909,0.72124,0.4909,0.71186,0.28544,0.71053,0.31084,0.70843,0.28544,0.69629,0.30997,0.69624,0.33364,0.6935,0.33437,0.68033,0.30877,0.68033,0.33713,0.65196,0.31133,0.65196,0.33741,0.62723,0.31094,0.62682,0.33768,0.60393,0.31058,0.60393,0.28544,0.62723,0.28544,0.65196,0.28544,0.68033,0.4909,0.68033,0.4909,0.69769,0.4668,0.69715,0.44303,0.68033,0.41251,0.68033,0.38894,0.68033,0.41293,0.65196,0.44171,0.65196,0.46719,0.65196,0.4686,0.68033,0.4909,0.65196,0.4909,0.62723,0.46759,0.62682,0.44131,0.62723,0.4125,0.62722,0.38968,0.65196,0.36492,0.68033,0.36309,0.69158,0.36259,0.69555,0.33429,0.70562,0.36572,0.65196,0.36602,0.62722,0.36631,0.60393,0.36676,0.56777,0.33809,0.56777,0.31002,0.56777,0.28544,0.60393,0.4909,0.60393,0.46796,0.60393,0.44093,0.60393,0.41209,0.60393,0.38957,0.62723,0.38947,0.60393,0.41146,0.56777,0.44034,0.56777,0.46853,0.56777,0.4909,0.56777,0.28544,0.56777,0.3893,0.56777,-2.4631,0.34927,-2.4636,0.43683,-2.3734,0.34927,0.35405,-0.91229,0.33377,-0.81944,0.37884,-0.81853,-2.5504,0.43961,-2.5647,0.30299,-2.6248,0.30295,-2.6126,0.23053,-2.5818,0.23053,-2.4631,0.30174,-2.3742,0.30174,-2.8559,-0.60782,-2.7938,-0.69,-2.8549,-0.69,-2.7937,-0.60782,-2.7937,-0.53249,-2.8571,-0.53248,-2.3725,0.43672,-2.3745,0.5004,-2.4636,0.50025,0.37878,-0.75004,0.33399,-0.75054,-2.6265,0.43937,-2.5501,0.50028,-2.6264,0.50027,-2.6656,0.50027,-2.6656,0.43937,-2.7319,0.4399,-2.732,0.37217,-2.8342,0.44043,-2.8342,0.50113,-2.9778,0.50145,-2.9778,0.44045,-2.9778,0.37136,-2.8342,0.37136,-2.8342,0.37136,-2.8249,0.28128,-2.7321,0.28126,-2.8249,0.21672,-2.7322,0.21642,-2.5981,0.18842,-2.3753,0.2496,-2.4631,0.24983,-2.8195,-0.82616,-1.7393,-0.81404,-1.7393,-0.70682,-1.6685,-0.81425,-1.6684,-0.70593,-1.7396,-0.6332,-1.669,-0.63321,-1.7396,-0.56651,-1.6681,-0.5665,-1.7394,-0.52449,-1.6682,-0.52449,-1.6817,-0.47804,-1.7393,-0.47808,-1.7022,-0.41809,-1.7393,-0.41814,-1.825,-0.41823,-1.8251,-0.47805,-2.8559,-0.4362,-2.7937,-0.38665,-2.7937,-0.4362,-2.8557,-0.3868,0.5198,-0.68308,0.52795,-0.58882,0.52574,-0.68312,0.51982,-0.58899,0.49351,-0.58898,0.49367,-0.68312,-2.4636,0.54844,-2.3753,0.60573,-2.3753,0.54848,-2.4636,0.60569,0.37868,-0.6708,0.3345,-0.57822,0.37869,-0.57666,0.33423,-0.6713,-2.6264,0.54798,-2.5493,0.60474,-2.5497,0.54814,-2.6265,0.60424,-2.6656,0.54798,-2.7319,0.5483,-2.6638,0.60424,-2.7319,0.50062,-2.8342,0.54887,0.14379,-0.73548,0.12436,-0.84448,0.091613,-0.733,-2.8339,0.54893,-2.945,0.54893,-2.9849,0.54903,-2.9849,0.60724,-2.945,0.60723,-2.834,0.6072,0.091595,-0.64293,0.067934,-0.64026,0.14379,-0.64196,-2.8342,0.60721,-2.7317,0.60679,-2.6663,0.65327,-2.7316,0.65531,-2.8342,0.65479,0.14332,-0.52159,0.087499,-0.52219,0.036129,-0.52216,-2.945,0.65476,-2.834,0.65465,-2.9849,0.65499,-2.9849,0.72916,-2.945,0.72894,-2.9849,0.80424,-2.9449,0.80316,-2.9849,0.86675,-2.945,0.86606,-2.834,0.80266,-2.834,0.72888,0.035388,-0.4281,0.087552,-0.42838,0.14334,-0.42785,-2.8342,0.72888,-2.7314,0.72888,-2.8342,0.80213,-2.7312,0.80165,-2.8342,0.86401,-2.7315,0.865,-2.6663,0.80151,-2.6656,0.86553,-2.6301,0.80164,-2.6302,0.86568,-2.63,0.7287,-2.6655,0.72872,-2.63,0.65328,-2.5496,0.65329,-2.5495,0.72866,-2.63,0.80155,-2.5493,0.80044,-2.6302,0.8651,-2.5487,0.86651,0.33447,-0.25643,0.33482,-0.14778,0.37528,-0.1485,0.37531,-0.25648,0.3753,-0.37447,0.33432,-0.37446,0.37537,-0.49861,0.33428,-0.49838,-2.646,0.60424,0.41799,-0.5658,0.40479,-0.48775,0.42289,-0.48777,0.40472,-0.36361,0.4226,-0.36361,0.40473,-0.24563,0.42267,-0.24563,-2.4634,0.72865,-2.4634,0.8004,-2.3753,0.72868,-2.3752,0.80103,-2.4634,0.86667,0.4227,-0.13665,0.40474,-0.13817,-2.3753,0.86588,0.51979,-0.2682,0.49377,-0.26783,0.49314,-0.16119,0.52007,-0.38677,0.49331,-0.3868,0.51991,-0.51021,0.49335,-0.5106,-2.3753,0.65339,-2.4634,0.65314,0.52802,-0.50968,0.52827,-0.38672,0.52826,-0.26813,0.51834,-0.16175,0.52793,-0.16156,-2.8556,-0.21879,-2.8557,-0.16295,-2.7937,-0.21773,-2.7937,-0.16331,-2.7937,-0.28088,-2.8556,-0.28092,-2.8557,-0.34534,-2.7937,-0.34542,0.61994,-0.42702,0.59476,-0.30866,0.61896,-0.30723,0.59214,-0.23012,0.61891,-0.23029,0.581,-0.14352,0.61627,-0.14326,-1.825,-0.22442,-1.825,-0.17149,-1.7391,-0.22491,-1.739,-0.17095,-1.7016,-0.22469,-1.7017,-0.17114,-1.6664,-0.17171,-1.6657,-0.22466,-1.666,-0.27206,-1.634,-0.27243,-1.634,-0.22496,-1.6661,-0.17126,-1.634,-0.1712,-1.4976,-0.22496,-1.4976,-0.1712,-1.4135,-0.22504,-1.4135,-0.17044,-1.3754,-0.17025,-1.3755,-0.22462,-1.3752,-0.27271,-1.4135,-0.27286,-1.4976,-0.27243,-1.4135,-0.3455,-1.375,-0.34591,-1.3749,-0.41773,-1.4135,-0.41774,-1.4976,-0.41793,-1.4976,-0.34593,-1.6661,-0.41806,-1.6339,-0.34593,-1.6339,-0.41793,-1.666,-0.34512,-1.7019,-0.34467,-1.7016,-0.27199,-1.7392,-0.27161,-1.825,-0.27123,-1.7393,-0.34425,-1.8251,-0.34409,-1.634,-0.47814,-1.4976,-0.47845,-1.4135,-0.47864,-1.3878,-0.47874,-1.4135,-0.52469,-1.3849,-0.52469,-1.4171,-0.56588,-1.4978,-0.56556,-1.4973,-0.52469,-1.6346,-0.52449,-1.6341,-0.56734,-1.4968,-0.63413,-1.4305,-0.63431,-0.62065,-0.62544,-0.62063,-0.51087,-0.6768,-0.51097,-0.62065,-0.45785,-0.591,-0.45603,-0.59165,-0.39712,-0.62056,-0.39731,-0.62047,-0.33396,-0.59167,-0.33441,-0.62047,-0.28329,-0.59158,-0.28334,-0.62047,-0.21062,-0.5915,-0.21062,-0.62047,-0.14868,-0.59142,-0.1486,-0.67641,-0.14805,-0.67493,-0.21069,0.28536,-0.32954,0.27428,-0.25014,0.25175,-0.3355,0.28156,-0.37964,-0.67493,-0.28309,-0.67493,-0.3337,0.28208,-0.53,0.24967,-0.3783,-0.67491,-0.28302,-0.67487,-0.2107,-0.73732,-0.28315,-0.73638,-0.21062,-0.67849,-0.14799,-0.72975,-0.1482,-0.78881,-0.14885,-0.79077,-0.2105,-0.82173,-0.14854,-0.82299,-0.21049,-0.79472,-0.28338,-0.73762,-0.33347,-0.67483,-0.33346,0.24345,-0.53003,0.25992,-0.60823,-0.67691,-0.39776,-0.73532,-0.39772,-0.81262,-0.33301,-0.82234,-0.28338,-0.91107,-0.28348,-0.9111,-0.21047,-0.82429,-0.14899,-0.91117,-0.14911,-0.91103,-0.33351,-0.91095,-0.39625,-0.81283,-0.39692,-0.73666,-0.4584,-0.81258,-0.45722,-0.91087,-0.45618,-0.91082,-0.5108,-0.81262,-0.51075,-0.74205,-0.51086,-0.67688,-0.45773,-0.67493,-0.62549,-0.74574,-0.62561,-0.81297,-0.62564,-0.91065,-0.62556,-0.91063,-0.69786,-0.81278,-0.69766,-0.74706,-0.69828,-0.75005,-0.78961,-0.67688,-0.79015,-1.5107,0.18298,-1.6232,0.18211,-1.5107,0.25842,-1.6232,0.25823,-1.772,0.18221,-1.8546,0.26467,-1.7721,0.26467,-1.8545,0.18233,-0.80675,-0.79026,-0.85286,-0.7916,-1.9381,0.26467,-1.9389,0.31677,-0.36897,-0.74521,-0.37893,-0.81464,-0.39423,-0.74214,-0.36885,-0.68469,-1.8546,0.31674,-1.9389,0.3837,-1.7721,0.31676,-1.5107,0.30904,-1.6232,0.30904,-1.4086,0.30262,-1.4085,0.25859,-2.8541,0.28141,-2.9778,0.21676,-2.9778,0.28143,-2.8541,0.21694,-2.9778,0.1822,-2.8541,0.18293,-2.8249,0.18263,-2.7323,0.18152,-1.4931,-0.80396,-1.4968,-0.70593,-1.4536,-0.70658,-0.62066,-0.69711,-0.67685,-0.697,-0.62065,-0.79039,-1.4085,0.18392,-1.38,0.36359,-1.4086,0.36233,-1.5107,0.36465,-1.6232,0.36465,-1.7721,0.38366,-1.8546,0.38362,-1.8546,0.48865,-1.9389,0.48679,-0.39425,-0.68474,-0.36861,-0.61149,-0.39432,-0.61193,-0.39425,-0.45788,-0.36854,-0.45798,-0.39432,-0.39764,-0.36877,-0.39822,-0.39432,-0.3163,-0.36944,-0.31534,-0.38444,-0.20723,-1.8545,0.54963,-1.939,0.54637,-1.8575,0.64458,-1.9386,0.64501,-1.959,0.64494,-1.9386,0.72804,-1.959,0.72813,-1.9386,0.84203,-1.8575,0.72864,-1.6345,0.48499,-1.6245,0.57196,-1.5529,0.57205,-1.5535,0.63806,-1.6242,0.63799,-1.7479,0.38583,-1.7648,0.45136,-1.7309,0.45172,-1.7311,0.53685,-1.7649,0.53758,-1.731,0.60685,-1.7649,0.60719,-1.7311,0.689,-1.7648,0.68891,-1.6245,0.72312,-1.6245,0.79312,-1.5538,0.79303,-1.5543,0.87526,-1.6223,0.87516,-1.5106,0.87529,-1.5107,0.79233,-1.5534,0.72288,-1.5106,0.72177,-1.4798,0.79231,-1.5106,0.87528,-1.4798,0.8754,-1.4085,0.79147,-1.4085,0.72067,-1.3803,0.71998,-1.3803,0.79125,-1.4085,0.87552,-1.3803,0.87552,-1.3803,0.63872,-1.4085,0.63841,-1.3803,0.57202,-1.4085,0.57196,-1.4798,0.63842,-1.4798,0.57204,-1.4085,0.54692,-1.5107,0.48499,-1.4085,0.48499,-1.5107,0.42832,-1.4085,0.43501,-1.3801,0.43433,-1.3804,0.485,-1.3804,0.54673,-1.6231,0.4283,-1.7721,0.48676,-1.5107,0.57205,-1.5106,0.63838,-1.4798,0.72164,0.51964,-0.16111,0.14336,-0.17811,0.14339,-0.27519,0.089078,-0.17847,0.088637,-0.27445,0.035784,-0.27478,0.087642,-0.27453,0.087155,-0.17854,0.036548,-0.17809,-2.834,0.86547,0.49864,-0.76218,0.51181,-0.76192,-2.8571,-0.47748,-2.7937,-0.47741,-1.8251,-0.52449,-1.825,-0.56652,-1.825,-0.63321,0.50153,-0.86351,-3.1548,-44.448,-4.0871,-43.562,-3.4072,-43.563,0.11014,-1.7159,0.21507,-1.7856,0.11808,-1.7888,0.22488,-1.7116,0.17088,-1.8605,1.4498,0.40516,1.611,0.48379,1.4495,0.4839,1.6136,0.40468,1.4502,0.34849,1.6222,0.34915,1.4504,0.28364,1.2947,0.28315,1.2947,0.34837,1.2947,0.40534,1.2947,0.48395,1.4493,0.55532,1.6104,0.55527,1.6129,0.61045,1.4492,0.61051,1.6135,0.66982,1.4745,0.67035,1.6138,0.71395,1.492,0.7174,1.4995,0.76447,1.6156,0.76716,1.4555,0.72868,1.4662,0.76819,1.4495,0.67468,1.296,0.55535,1.2956,0.61057,1.4322,0.67388,1.3032,0.67038,1.4289,0.7292,1.3103,0.72496,1.4143,0.78286,1.3133,0.77727,1.291,0.77589,1.2863,0.73017,1.2931,0.67593,1.1573,0.72214,1.1715,0.76786,1.2849,0.77337,1.1365,0.77168,1.1345,0.7301,1.1508,0.67604,1.1491,0.61054,1.149,0.55535,1.1489,0.4839,1.1488,0.40516,1.1487,0.34849,1.1486,0.28364,-0.39575,0.22363,-0.62351,0.10965,-0.3958,0.11159,-0.62361,0.22163,-0.39565,0.32152,-0.62372,0.31758,-0.39556,0.45757,-0.62372,0.45424,-0.39548,0.58101,-0.62392,0.57774,-0.39543,0.67635,-0.62394,0.67612,-0.50655,0.67985,-0.41115,0.75566,-0.39277,0.75565,-0.41076,0.84082,-0.39175,0.84115,-0.39136,0.92974,-0.41227,0.92938,-0.48523,0.9299,-0.499,0.84072,-0.50788,0.75515,-0.52931,0.75453,-0.5075,0.84083,-0.53604,0.84093,-0.62349,0.84077,-0.62289,0.93078,-0.53605,0.92942,-0.51003,0.92973,-0.62379,0.75359,1.6296,0.28433,0.62899,0.52819,0.62938,0.68918,0.55048,0.68919,0.63045,0.83467,0.55048,0.83498,0.55065,0.95257,0.63157,0.95475,0.55049,0.52819,0.42895,0.6892,0.55048,0.83451,0.42969,0.83457,0.43064,0.95594,0.55179,0.95144,0.42891,0.52819,0.33017,0.52819,0.33016,0.68832,0.42901,0.83462,0.33018,0.83457,0.4292,0.95537,0.33026,0.95816,0.22203,0.52819,0.22204,0.6892,0.22204,0.83452,0.33008,0.83468,0.22202,0.95532,0.33001,0.95758,0.1117,0.52819,0.11162,0.68919,0.11155,0.83438,0.22216,0.83459,0.11156,0.95262,0.22231,0.95561,0.026622,0.52819,0.02596,0.68918,0.025024,0.83467,0.11108,0.83485,0.024205,0.94647,0.11062,0.94916,0.0269,0.38518,0.11181,0.38644,0.027139,0.22245,0.11177,0.22345,0.027181,0.11303,0.11155,0.11312,0.22197,0.22542,0.22192,0.11382,0.33017,0.22607,0.33017,0.11405,0.42901,0.22545,0.42892,0.11382,0.55048,0.22499,0.55048,0.11312,0.62855,0.2225,0.6287,0.38518,0.55049,0.3864,0.42904,0.38653,0.33018,0.38674,0.22198,0.38643,0.62798,0.11303,0.36224,-1.7684,0.24593,-1.7725,0.25533,-1.7095,0.29918,-1.8241,0.34671,-1.7083]], "faces": [42,0,1,2,0,0,1,2,0,1,2,42,0,3,1,0,0,3,1,0,3,1,42,3,0,4,0,3,0,4,3,0,4,42,4,5,3,0,4,5,3,4,5,3,42,6,5,4,0,6,5,4,6,5,4,42,6,7,5,0,6,7,5,6,7,5,42,7,6,8,0,7,6,8,7,6,8,42,6,9,8,0,6,9,8,6,9,8,42,9,6,4,0,9,6,4,9,6,4,42,9,4,10,0,9,4,10,9,4,10,42,4,0,10,0,4,0,10,4,0,10,42,10,0,11,0,10,0,11,10,0,11,42,11,0,2,0,11,0,2,11,0,2,42,11,2,12,0,11,2,12,11,2,12,42,2,13,12,0,2,13,12,2,13,12,42,2,14,13,0,2,14,13,2,14,13,42,15,14,2,0,15,14,2,15,14,2,42,15,16,14,0,15,16,14,15,16,14,42,17,16,15,0,17,16,15,17,16,15,42,17,18,16,0,17,18,16,17,18,16,42,19,18,17,0,19,18,17,19,18,17,42,20,18,19,0,20,18,19,20,18,19,42,20,21,18,0,20,21,18,20,21,18,42,22,21,20,0,22,21,20,22,21,20,42,22,23,21,0,22,23,21,22,23,21,42,22,24,23,0,22,24,23,22,24,23,42,25,24,22,0,25,24,22,25,24,22,42,26,24,25,0,26,24,25,26,24,25,42,26,27,24,0,26,27,24,26,27,24,42,28,27,26,0,28,27,26,28,27,26,42,28,29,27,0,28,29,27,28,29,27,42,28,30,29,0,28,30,29,28,30,29,42,31,30,28,0,31,30,28,31,30,28,42,31,32,30,0,31,32,30,31,32,30,42,33,32,31,0,33,32,31,33,32,31,42,33,34,32,0,33,34,32,33,34,32,42,33,35,34,0,33,35,34,33,35,34,42,36,35,33,0,36,35,33,36,35,33,42,36,37,35,0,36,37,35,36,37,35,42,38,37,36,0,38,37,36,38,37,36,42,38,39,37,0,38,39,37,38,39,37,42,40,39,38,0,40,39,38,40,39,38,42,40,41,39,0,40,41,39,40,41,39,42,42,41,40,0,42,41,40,42,41,40,42,42,43,41,0,42,43,41,42,43,41,42,44,43,42,0,44,43,42,44,43,42,42,44,45,43,0,44,45,43,44,45,43,42,46,45,44,0,46,45,44,46,45,44,42,47,45,46,0,47,45,46,47,45,46,42,48,45,47,0,48,45,47,48,45,47,42,48,49,45,0,48,49,45,48,49,45,42,48,50,49,0,48,50,49,48,50,49,42,51,50,48,0,51,50,48,51,50,48,42,51,52,50,0,52,53,54,51,52,50,42,51,53,52,0,52,55,53,51,53,52,42,54,53,51,0,56,55,52,54,53,51,42,54,55,53,0,56,57,55,54,55,53,42,56,55,54,0,58,57,56,56,55,54,42,55,56,57,0,57,58,59,55,56,57,42,56,54,60,0,58,56,60,56,54,58,42,60,54,61,0,61,62,63,58,54,59,42,61,54,62,0,63,62,64,59,54,60,42,62,54,63,0,64,62,65,60,54,61,42,54,51,63,0,62,51,65,54,51,61,42,63,51,48,0,65,51,48,61,51,48,42,63,48,47,0,65,48,47,61,48,47,42,63,47,64,0,65,47,66,61,47,62,42,64,47,65,0,66,47,67,62,47,63,42,47,66,65,0,47,68,67,47,64,63,42,47,46,66,0,47,46,68,47,46,64,42,46,67,66,0,46,69,68,46,65,64,42,46,44,67,0,46,44,69,46,44,65,42,67,44,68,0,69,44,70,65,44,66,42,44,69,68,0,44,71,70,44,67,66,42,44,42,69,0,44,42,71,44,42,67,42,69,42,70,0,71,42,72,67,42,68,42,42,40,70,0,42,40,72,42,40,68,42,70,40,71,0,72,40,73,68,40,69,42,40,38,71,0,40,38,73,40,38,69,42,38,72,71,0,38,74,73,38,70,69,42,38,36,72,0,38,36,74,38,36,70,42,36,73,72,0,36,75,74,36,71,70,42,36,33,73,0,36,33,75,36,33,71,42,33,31,73,0,33,31,75,33,31,71,42,73,31,28,0,75,31,28,71,31,28,42,73,28,74,0,75,28,76,71,28,72,42,74,28,26,0,76,28,26,72,28,26,42,74,26,75,0,76,26,77,72,26,73,42,75,26,76,0,77,26,78,73,26,74,42,26,25,76,0,26,25,78,26,25,74,42,76,25,77,0,78,25,79,74,25,75,42,77,25,78,0,79,25,80,75,25,76,42,25,22,78,0,25,22,80,25,22,76,42,78,22,79,0,80,22,81,76,22,77,42,22,20,79,0,22,20,81,22,20,77,42,79,20,80,0,81,20,82,77,20,78,42,80,20,19,0,82,20,19,78,20,19,42,80,19,81,0,82,19,83,78,19,79,42,81,19,82,0,83,19,84,79,19,80,42,19,17,82,0,19,17,84,19,17,80,42,82,17,15,0,84,17,15,80,17,15,42,82,15,1,0,84,15,1,80,15,1,42,1,15,2,0,1,15,2,1,15,2,42,83,82,1,0,85,84,1,81,80,1,42,84,82,83,0,86,84,85,82,80,81,42,84,81,82,0,86,83,84,82,79,80,42,85,81,84,0,87,83,86,83,79,82,42,86,81,85,0,88,83,87,84,79,83,42,80,81,86,0,82,83,88,78,79,84,42,87,80,86,0,89,82,88,85,78,84,42,88,80,87,0,90,82,89,86,78,85,42,88,79,80,0,90,81,82,86,77,78,42,89,79,88,0,91,81,90,87,77,86,42,78,79,89,0,80,81,91,76,77,87,42,90,78,89,0,92,80,91,88,76,87,42,77,78,90,0,79,80,92,75,76,88,42,90,91,77,0,92,93,79,88,89,75,42,92,91,90,0,94,93,92,90,89,88,42,93,91,92,0,95,93,94,91,89,90,42,94,91,93,0,96,93,95,92,89,91,42,95,91,94,0,97,93,96,93,89,92,42,95,96,91,0,97,98,93,93,94,89,42,97,96,95,0,99,98,97,95,94,93,42,98,96,97,0,100,98,99,96,94,95,42,77,96,98,0,79,98,100,75,94,96,42,91,96,77,0,93,98,79,89,94,75,42,77,98,76,0,79,100,78,75,96,74,42,75,76,98,0,77,78,100,73,74,96,42,99,75,98,0,101,77,100,97,73,96,42,100,75,99,0,102,77,101,98,73,97,42,101,75,100,0,103,77,102,99,73,98,42,101,74,75,0,103,76,77,99,72,73,42,72,74,101,0,74,76,103,70,72,99,42,72,73,74,0,74,75,76,70,71,72,42,71,72,101,0,73,74,103,69,70,99,42,71,101,100,0,73,103,102,69,99,98,42,71,100,102,0,73,102,104,69,98,100,42,102,100,103,0,104,102,105,100,98,101,42,103,100,104,0,105,102,106,101,98,102,42,100,99,104,0,102,101,106,98,97,102,42,104,99,105,0,106,101,107,102,97,103,42,99,106,105,0,101,108,107,97,104,103,42,99,98,106,0,101,100,108,97,96,104,42,106,98,97,0,108,100,99,104,96,95,42,106,97,105,0,108,99,107,104,95,103,42,105,97,107,0,107,99,109,103,95,105,42,107,97,95,0,109,99,97,105,95,93,42,107,95,108,0,109,97,110,105,93,106,42,108,95,109,0,110,97,111,106,93,107,42,109,95,94,0,111,97,96,107,93,92,42,109,94,93,0,111,96,95,107,92,91,42,109,93,110,0,111,95,112,107,91,108,42,110,93,111,0,112,95,113,108,91,109,42,111,93,112,0,113,95,114,109,91,110,42,112,93,113,0,114,95,115,110,91,111,42,113,93,114,0,115,95,116,111,91,112,42,93,115,114,0,95,117,116,91,113,112,42,93,92,115,0,95,94,117,91,90,113,42,116,115,92,0,118,117,94,114,113,90,42,117,115,116,0,119,117,118,115,113,114,42,117,118,115,0,119,120,117,115,116,113,42,119,118,117,0,121,120,119,117,116,115,42,120,118,119,0,122,120,121,118,116,117,42,121,118,120,0,123,120,122,119,116,118,42,121,115,118,0,123,117,120,119,113,116,42,114,115,121,0,116,117,123,112,113,119,42,113,114,121,0,115,116,123,111,112,119,42,113,121,122,0,115,123,124,111,119,120,42,122,121,123,0,124,123,125,120,119,121,42,123,121,120,0,125,123,122,121,119,118,42,123,120,124,0,125,122,126,121,118,122,42,125,124,120,0,127,126,122,123,122,118,42,126,124,125,0,128,126,127,124,122,123,42,127,124,126,0,129,126,128,125,122,124,42,127,128,124,0,129,130,126,125,126,122,42,127,129,128,0,129,131,130,125,127,126,42,130,129,127,0,132,131,129,128,127,125,42,130,131,129,0,132,133,131,128,129,127,42,132,131,130,0,134,135,136,130,129,128,42,132,133,131,0,134,137,135,130,131,129,42,132,134,133,0,134,138,137,130,132,131,42,134,132,135,0,138,134,139,132,130,133,42,135,132,136,0,139,134,140,133,130,134,42,136,132,137,0,140,134,141,134,130,135,42,132,130,137,0,134,136,141,130,128,135,42,137,130,138,0,141,136,142,135,128,136,42,138,130,127,0,143,132,129,136,128,125,42,138,127,139,0,143,129,144,136,125,137,42,139,127,126,0,144,129,128,137,125,124,42,139,126,140,0,144,128,145,137,124,138,42,126,119,140,0,128,121,145,124,117,138,42,126,125,119,0,128,127,121,124,123,117,42,125,120,119,0,127,122,121,123,118,117,42,140,119,141,0,145,121,146,138,117,139,42,141,119,117,0,146,121,119,139,117,115,42,117,87,141,0,119,89,146,115,85,139,42,117,88,87,0,119,90,89,115,86,85,42,116,88,117,0,118,90,119,114,86,115,42,116,89,88,0,118,91,90,114,87,86,42,142,89,116,0,147,91,118,140,87,114,42,90,89,142,0,92,91,147,88,87,140,42,92,90,142,0,94,92,147,90,88,140,42,92,142,116,0,94,147,118,90,140,114,42,141,87,143,0,146,89,148,139,85,141,42,87,86,143,0,89,88,148,85,84,141,42,143,86,85,0,148,88,87,141,84,83,42,144,143,85,0,149,148,87,142,141,83,42,145,143,144,0,150,148,149,143,141,142,42,145,140,143,0,150,145,148,143,138,141,42,146,140,145,0,151,145,150,144,138,143,42,139,140,146,0,144,145,151,137,138,144,42,147,139,146,0,152,144,151,145,137,144,42,147,148,139,0,152,153,144,145,146,137,42,149,148,147,0,154,153,152,147,146,145,42,150,148,149,0,155,153,154,148,146,147,42,150,151,148,0,156,157,158,148,149,146,42,152,151,150,0,159,157,156,150,149,148,42,153,151,152,0,160,157,159,151,149,150,42,153,154,151,0,160,161,157,151,152,149,42,155,154,153,0,162,161,160,153,152,151,42,155,156,154,0,163,164,165,153,154,152,42,157,156,155,0,166,167,168,155,154,153,42,157,158,156,0,166,169,167,155,156,154,42,159,158,157,0,170,169,166,157,156,155,42,160,158,159,0,171,172,173,158,156,157,42,160,136,158,0,171,140,172,158,134,156,42,135,136,160,0,139,140,171,133,134,158,42,161,135,160,0,174,139,171,159,133,158,42,161,162,135,0,174,175,139,159,160,133,42,163,162,161,0,176,175,174,161,160,159,42,163,164,162,0,176,177,175,161,162,160,42,164,163,165,0,177,176,178,162,161,163,42,163,166,165,0,176,179,178,161,164,163,42,166,163,167,0,179,176,180,164,161,165,42,167,163,161,0,180,176,174,165,161,159,42,167,161,168,0,180,174,181,165,159,166,42,161,159,168,0,174,173,181,159,157,166,42,159,161,160,0,173,174,171,157,159,158,42,168,159,157,0,182,170,166,166,157,155,42,168,157,169,0,182,166,183,166,155,167,42,169,157,170,0,183,166,184,167,155,168,42,170,157,171,0,184,166,185,168,155,169,42,157,172,171,0,166,186,185,155,170,169,42,157,155,172,0,166,168,186,155,153,170,42,172,155,153,0,187,162,160,170,153,151,42,173,172,153,0,188,187,160,171,170,151,42,173,171,172,0,188,189,187,171,169,170,42,174,171,173,0,190,189,188,172,169,171,42,174,170,171,0,190,191,189,172,168,169,42,170,174,167,0,191,190,180,168,172,165,42,174,166,167,0,190,179,180,172,164,165,42,166,174,173,0,179,190,188,164,172,171,42,166,173,175,0,179,188,192,164,171,173,42,175,173,153,0,192,188,160,173,171,151,42,175,153,152,0,192,160,159,173,151,150,42,150,175,152,0,156,192,159,148,173,150,42,176,175,150,0,193,192,156,174,173,148,42,165,175,176,0,178,192,193,163,173,174,42,165,166,175,0,178,179,192,163,164,173,42,177,165,176,0,194,195,196,175,163,174,42,164,165,177,0,197,195,194,162,163,175,42,164,177,178,0,197,194,198,162,175,176,42,178,177,179,0,198,194,199,176,175,177,42,179,177,180,0,199,194,200,177,175,178,42,177,176,180,0,194,196,200,175,174,178,42,180,176,150,0,200,196,155,178,174,148,42,179,180,150,0,199,200,201,177,178,148,42,179,150,181,0,199,201,202,177,148,179,42,150,182,181,0,201,203,202,148,180,179,42,150,183,182,0,201,204,203,148,181,180,42,150,149,183,0,201,154,204,148,147,181,42,183,149,147,0,204,154,152,181,147,145,42,183,147,184,0,204,152,205,181,145,182,42,184,147,185,0,205,152,206,182,145,183,42,147,146,185,0,152,151,206,145,144,183,42,185,146,145,0,206,151,150,183,144,143,42,185,145,186,0,206,150,207,183,143,184,42,186,145,144,0,207,150,149,184,143,142,42,186,144,187,0,207,149,208,184,142,185,42,187,144,188,0,208,149,209,185,142,186,42,144,84,188,0,149,86,209,142,82,186,42,144,85,84,0,149,87,86,142,83,82,42,188,84,83,0,209,86,85,186,82,81,42,3,188,83,0,3,209,85,3,186,81,42,189,188,3,0,210,209,3,187,186,3,42,187,188,189,0,208,209,210,185,186,187,42,190,187,189,0,211,208,210,188,185,187,42,190,186,187,0,211,207,208,188,184,185,42,191,186,190,0,212,207,211,189,184,188,42,191,185,186,0,212,206,207,189,183,184,42,184,185,191,0,205,206,212,182,183,189,42,184,191,192,0,205,212,213,182,189,190,42,192,191,193,0,213,212,214,190,189,191,42,191,190,193,0,212,211,214,189,188,191,42,190,194,193,0,211,215,214,188,192,191,42,190,189,194,0,211,210,215,188,187,192,42,194,189,5,0,215,210,5,192,187,5,42,5,189,3,0,5,210,3,5,187,3,42,7,194,5,0,7,215,5,7,192,5,42,194,7,195,0,215,7,216,192,7,193,42,195,7,196,0,216,7,217,193,7,194,42,7,8,196,0,7,8,217,7,8,194,42,196,8,197,0,217,8,218,194,8,195,42,8,198,197,0,8,219,218,8,196,195,42,8,9,198,0,8,9,219,8,9,196,42,9,199,198,0,9,220,219,9,197,196,42,199,9,200,0,220,9,221,197,9,198,42,9,10,200,0,9,10,221,9,10,198,42,200,10,201,0,221,10,222,198,10,199,42,10,11,201,0,10,11,222,10,11,199,42,201,11,12,0,222,11,12,199,11,12,42,201,12,202,0,222,12,223,199,12,200,42,12,203,202,0,12,224,223,12,201,200,42,12,13,203,0,12,13,224,12,13,201,42,13,204,203,0,13,225,224,13,202,201,42,13,205,204,0,13,226,225,13,203,202,42,14,205,13,0,14,226,13,14,203,13,42,14,206,205,0,14,227,226,14,204,203,42,16,206,14,0,16,227,14,16,204,14,42,16,207,206,0,16,228,227,16,205,204,42,16,208,207,0,16,229,228,16,206,205,42,18,208,16,0,18,229,16,18,206,16,42,18,209,208,0,18,230,229,18,207,206,42,18,210,209,0,18,231,230,18,208,207,42,21,210,18,0,21,231,18,21,208,18,42,21,211,210,0,21,232,231,21,209,208,42,21,23,211,0,21,23,232,21,23,209,42,29,211,23,0,29,232,23,29,209,23,42,212,211,29,0,233,232,29,210,209,29,42,213,211,212,0,234,232,233,211,209,210,42,213,214,211,0,234,235,232,211,212,209,42,215,214,213,0,236,235,234,213,212,211,42,215,216,214,0,236,237,235,213,214,212,42,215,217,216,0,236,238,237,213,215,214,42,218,217,215,0,239,238,236,216,215,213,42,218,219,217,0,239,240,238,216,217,215,42,220,219,218,0,241,240,239,218,217,216,42,220,221,219,0,241,242,240,218,219,217,42,222,221,220,0,243,242,241,220,219,218,42,223,221,222,0,244,242,243,221,219,220,42,223,224,221,0,244,245,242,221,222,219,42,223,225,224,0,244,246,245,221,223,222,42,226,225,223,0,247,246,244,224,223,221,42,227,226,223,0,248,247,244,225,224,221,42,227,223,228,0,248,244,249,225,221,226,42,228,223,229,0,249,244,250,226,221,227,42,229,223,222,0,250,244,243,227,221,220,42,229,222,230,0,250,243,251,227,220,228,42,230,222,220,0,251,243,241,228,220,218,42,230,220,231,0,251,241,252,228,218,229,42,231,220,218,0,252,241,239,229,218,216,42,231,218,232,0,252,239,253,229,216,230,42,232,218,215,0,253,239,236,230,216,213,42,232,215,233,0,253,236,254,230,213,231,42,233,215,213,0,254,236,234,231,213,211,42,233,213,234,0,254,234,255,231,211,232,42,234,213,212,0,255,234,233,232,211,210,42,234,212,30,0,255,233,30,232,210,30,42,30,212,29,0,30,233,29,30,210,29,42,32,234,30,0,32,255,30,32,232,30,42,235,234,32,0,256,255,32,233,232,32,42,236,234,235,0,257,255,256,234,232,233,42,236,233,234,0,257,254,255,234,231,232,42,237,233,236,0,258,254,257,235,231,234,42,237,232,233,0,258,253,254,235,230,231,42,237,231,232,0,258,252,253,235,229,230,42,238,231,237,0,259,252,258,236,229,235,42,238,230,231,0,259,251,252,236,228,229,42,239,230,238,0,260,251,259,237,228,236,42,239,229,230,0,260,250,251,237,227,228,42,240,229,239,0,261,250,260,238,227,237,42,240,228,229,0,261,249,250,238,226,227,42,241,228,240,0,262,249,261,239,226,238,42,241,227,228,0,262,248,249,239,225,226,42,242,227,241,0,263,248,262,240,225,239,42,243,242,241,0,264,263,262,241,240,239,42,243,244,242,0,264,265,263,241,242,240,42,243,245,244,0,264,266,265,241,243,242,42,246,245,243,0,267,266,264,244,243,241,42,246,247,245,0,267,268,266,244,245,243,42,248,247,246,0,269,268,267,246,245,244,42,248,249,247,0,269,270,268,246,247,245,42,250,249,248,0,271,270,269,248,247,246,42,250,251,249,0,271,272,270,248,249,247,42,252,251,250,0,273,272,271,250,249,248,42,252,253,251,0,274,275,276,250,251,249,42,254,253,252,0,277,275,274,252,251,250,42,254,255,253,0,277,278,275,252,253,251,42,254,256,255,0,277,279,278,252,254,253,42,257,256,254,0,280,279,277,255,254,252,42,198,256,257,0,219,279,280,196,254,255,42,198,199,256,0,219,220,279,196,197,254,42,256,199,258,0,279,220,281,254,197,256,42,258,199,259,0,281,220,282,256,197,257,42,199,200,259,0,220,221,282,197,198,257,42,200,260,259,0,221,283,282,198,258,257,42,200,201,260,0,221,222,283,198,199,258,42,201,202,260,0,222,223,283,199,200,258,42,260,202,261,0,283,223,284,258,200,259,42,202,262,261,0,223,285,284,200,260,259,42,202,203,262,0,223,224,285,200,201,260,42,203,263,262,0,224,286,285,201,261,260,42,204,263,203,0,225,286,224,202,261,201,42,204,264,263,0,225,287,286,202,262,261,42,204,265,264,0,225,288,287,202,263,262,42,205,265,204,0,226,288,225,203,263,202,42,205,266,265,0,226,289,288,203,264,263,42,206,266,205,0,227,289,226,204,264,203,42,206,207,266,0,227,228,289,204,205,264,42,207,267,266,0,228,290,289,205,265,264,42,209,267,207,0,230,290,228,207,265,205,42,209,216,267,0,230,237,290,207,214,265,42,209,214,216,0,230,235,237,207,212,214,42,210,214,209,0,231,235,230,208,212,207,42,210,211,214,0,231,232,235,208,209,212,42,267,216,268,0,290,237,291,265,214,266,42,216,217,268,0,237,238,291,214,215,266,42,268,217,269,0,291,238,292,266,215,267,42,217,219,269,0,238,240,292,215,217,267,42,269,219,270,0,292,240,293,267,217,268,42,219,221,270,0,240,242,293,217,219,268,42,270,221,224,0,293,242,245,268,219,222,42,270,224,271,0,293,245,294,268,222,269,42,271,224,272,0,294,245,295,269,222,270,42,224,225,272,0,245,246,295,222,223,270,42,271,272,273,0,294,295,296,269,270,271,42,274,271,273,0,297,294,296,272,269,271,42,270,271,274,0,293,294,297,268,269,272,42,275,270,274,0,298,293,297,273,268,272,42,269,270,275,0,292,293,298,267,268,273,42,276,269,275,0,299,292,298,274,267,273,42,268,269,276,0,291,292,299,266,267,274,42,266,268,276,0,289,291,299,264,266,274,42,267,268,266,0,290,291,289,265,266,264,42,266,276,277,0,289,299,300,264,274,275,42,277,276,278,0,300,299,301,275,274,276,42,276,275,278,0,299,298,301,274,273,276,42,278,275,279,0,301,298,302,276,273,277,42,275,274,279,0,298,297,302,273,272,277,42,279,274,273,0,302,297,296,277,272,271,42,279,273,280,0,302,296,303,277,271,278,42,279,280,281,0,302,303,304,277,278,279,42,282,279,281,0,305,302,304,280,277,279,42,278,279,282,0,301,302,305,276,277,280,42,264,278,282,0,287,301,305,262,276,280,42,277,278,264,0,300,301,287,275,276,262,42,265,277,264,0,288,300,287,263,275,262,42,266,277,265,0,289,300,288,264,275,263,42,263,264,282,0,286,287,305,261,262,280,42,263,282,283,0,286,305,306,261,280,281,42,283,282,284,0,306,305,307,281,280,282,42,282,281,284,0,305,304,307,280,279,282,42,283,284,285,0,306,307,308,281,282,283,42,285,284,286,0,308,307,309,283,282,284,42,287,285,286,0,310,308,309,285,283,284,42,262,285,287,0,285,308,310,260,283,285,42,263,285,262,0,286,308,285,261,283,260,42,263,283,285,0,286,306,308,261,281,283,42,261,262,287,0,284,285,310,259,260,285,42,288,261,287,0,311,284,310,286,259,285,42,260,261,288,0,283,284,311,258,259,286,42,259,260,288,0,282,283,311,257,258,286,42,259,288,289,0,282,311,312,257,286,287,42,289,288,290,0,312,311,313,287,286,288,42,288,287,290,0,311,310,313,286,285,288,42,290,287,291,0,313,310,314,288,285,289,42,291,287,292,0,314,310,315,289,285,290,42,287,286,292,0,310,309,315,285,284,290,42,293,290,291,0,316,313,314,291,288,289,42,289,290,293,0,312,313,316,287,288,291,42,294,289,293,0,317,312,316,292,287,291,42,295,289,294,0,318,312,317,293,287,292,42,258,289,295,0,281,312,318,256,287,293,42,258,259,289,0,281,282,312,256,257,287,42,258,295,296,0,281,318,319,256,293,294,42,296,295,294,0,319,318,317,294,293,292,42,296,294,297,0,319,317,320,294,292,295,42,297,294,298,0,320,317,321,295,292,296,42,294,299,298,0,317,322,321,292,297,296,42,299,294,300,0,322,317,323,297,292,298,42,294,293,300,0,317,316,323,292,291,298,42,300,293,291,0,323,316,314,298,291,289,42,297,298,301,0,320,321,324,295,296,299,42,302,297,301,0,325,320,324,300,295,299,42,296,297,302,0,319,320,325,294,295,300,42,296,302,303,0,319,325,326,294,300,301,42,303,302,249,0,326,325,327,301,300,247,42,249,302,304,0,327,325,328,247,300,302,42,302,301,304,0,325,324,328,300,299,302,42,249,304,247,0,270,329,268,247,302,245,42,251,303,249,0,276,326,327,249,301,247,42,253,303,251,0,275,326,276,251,301,249,42,253,255,303,0,275,278,326,251,253,301,42,255,296,303,0,278,319,326,253,294,301,42,255,258,296,0,278,281,319,253,256,294,42,256,258,255,0,279,281,278,254,256,253,42,208,209,207,0,229,230,228,206,207,205,42,197,198,257,0,218,219,280,195,196,255,42,197,257,305,0,330,331,332,195,255,303,42,257,306,305,0,331,333,332,255,304,303,42,257,254,306,0,331,334,333,255,252,304,42,254,307,306,0,334,335,333,252,305,304,42,254,308,307,0,334,336,335,252,306,305,42,254,252,308,0,334,273,336,252,250,306,42,252,250,308,0,273,271,336,250,248,306,42,308,250,307,0,336,271,335,306,248,305,42,307,250,309,0,335,271,337,305,248,307,42,250,248,309,0,271,269,337,248,246,307,42,309,248,246,0,337,269,267,307,246,244,42,309,246,243,0,337,267,264,307,244,241,42,309,243,310,0,337,264,338,307,241,308,42,243,240,310,0,264,261,338,241,238,308,42,240,243,241,0,261,264,262,238,241,239,42,310,240,311,0,338,261,339,308,238,309,42,311,240,239,0,339,261,260,309,238,237,42,311,239,312,0,339,260,340,309,237,310,42,312,239,238,0,340,260,259,310,237,236,42,312,238,313,0,340,259,341,310,236,311,42,313,238,237,0,341,259,258,311,236,235,42,313,237,236,0,341,258,257,311,235,234,42,313,236,314,0,341,257,342,311,234,312,42,314,236,235,0,342,257,256,312,234,233,42,314,235,315,0,342,256,343,312,233,313,42,315,235,34,0,343,256,34,313,233,34,42,34,235,32,0,34,256,32,34,233,32,42,316,315,34,0,344,343,34,314,313,34,42,316,317,315,0,344,345,343,314,315,313,42,318,317,316,0,346,345,344,316,315,314,42,318,319,317,0,346,347,345,316,317,315,42,318,196,319,0,348,217,349,316,194,317,42,195,196,318,0,216,217,348,193,194,316,42,193,195,318,0,214,216,348,191,193,316,42,193,194,195,0,214,215,216,191,192,193,42,320,193,318,0,350,214,348,318,191,316,42,321,193,320,0,351,214,350,319,191,318,42,321,192,193,0,351,213,214,319,190,191,42,322,192,321,0,352,213,351,320,190,319,42,322,323,192,0,352,353,213,320,321,190,42,324,323,322,0,354,353,352,322,321,320,42,324,182,323,0,354,203,353,322,180,321,42,181,182,324,0,202,203,354,179,180,322,42,181,324,325,0,202,354,355,179,322,323,42,43,325,324,0,43,356,357,43,323,322,42,45,325,43,0,45,356,43,45,323,43,42,45,49,325,0,45,49,356,45,49,323,42,326,325,49,0,358,355,359,324,323,49,42,326,181,325,0,358,202,355,324,179,323,42,179,181,326,0,199,202,358,177,179,324,42,327,179,326,0,360,199,358,325,177,324,42,178,179,327,0,198,199,360,176,177,325,42,178,327,328,0,198,360,361,176,325,326,42,327,329,328,0,360,362,361,325,327,326,42,329,327,326,0,362,360,358,327,325,324,42,52,329,326,0,53,362,358,52,327,324,42,53,329,52,0,55,362,53,53,327,52,42,329,53,330,0,362,55,363,327,53,328,42,53,55,330,0,55,57,363,53,55,328,42,55,331,330,0,57,364,363,55,329,328,42,55,57,331,0,57,59,364,55,57,329,42,331,57,332,0,364,59,365,329,57,330,42,61,62,347,0,63,64,366,59,60,331,42,347,62,348,0,366,64,367,331,60,332,42,62,64,348,0,64,66,367,60,62,332,42,62,63,64,0,64,65,66,60,61,62,42,64,349,348,0,66,368,367,62,333,332,42,64,65,349,0,66,67,368,62,63,333,42,349,65,350,0,369,370,371,333,63,334,42,65,66,350,0,370,372,371,63,64,334,42,350,66,351,0,371,372,373,334,64,335,42,351,66,352,0,373,372,374,335,64,336,42,66,67,352,0,68,69,375,64,65,336,42,67,353,352,0,69,376,375,65,337,336,42,67,68,353,0,69,70,376,65,66,337,42,353,68,354,0,376,70,377,337,66,338,42,68,355,354,0,70,378,377,66,339,338,42,68,69,355,0,70,71,378,66,67,339,42,356,355,69,0,379,378,71,340,339,67,42,355,356,357,0,380,381,382,339,340,341,42,357,356,358,0,382,381,383,341,340,342,42,356,359,358,0,381,384,383,340,343,342,42,356,102,359,0,381,385,384,340,100,343,42,70,102,356,0,72,104,379,68,100,340,42,70,71,102,0,72,73,104,68,69,100,42,69,70,356,0,71,72,379,67,68,340,42,359,102,360,0,386,387,388,343,100,344,42,102,103,360,0,387,389,388,100,101,344,42,361,360,103,0,390,388,389,345,344,101,42,361,362,360,0,390,391,388,345,346,344,42,361,363,362,0,390,392,391,345,347,346,42,364,363,361,0,393,392,390,348,347,345,42,365,363,364,0,394,392,393,349,347,348,42,366,363,365,0,395,392,394,350,347,349,42,366,367,363,0,395,396,392,350,351,347,42,368,367,366,0,397,396,395,352,351,350,42,369,367,368,0,166,169,170,353,351,352,42,370,367,369,0,167,169,166,354,351,353,42,362,367,370,0,391,396,398,346,351,354,42,362,363,367,0,391,392,396,346,347,351,42,371,362,370,0,399,391,398,355,346,354,42,359,362,371,0,386,391,399,343,346,355,42,359,360,362,0,386,388,391,343,344,346,42,372,359,371,0,400,384,401,356,343,355,42,372,358,359,0,400,383,384,356,342,343,42,357,358,372,0,382,383,400,341,342,356,42,357,372,373,0,382,400,402,341,356,357,42,373,372,374,0,402,400,403,357,356,358,42,374,372,375,0,403,400,404,358,356,359,42,372,371,375,0,400,401,404,356,355,359,42,375,371,370,0,405,399,398,359,355,354,42,375,370,369,0,168,167,166,359,354,353,42,374,375,369,0,186,168,166,358,359,353,42,374,369,376,0,186,166,185,358,353,360,42,376,369,377,0,185,166,184,360,353,361,42,377,369,378,0,184,166,183,361,353,362,42,369,379,378,0,166,182,183,353,363,362,42,369,368,379,0,166,170,182,353,352,363,42,379,368,380,0,406,397,407,363,352,364,42,380,368,366,0,407,397,395,364,352,350,42,380,366,365,0,407,395,394,364,350,349,42,380,365,381,0,407,394,408,364,349,365,42,381,365,382,0,408,394,409,365,349,366,42,365,364,382,0,394,393,409,349,348,366,42,382,364,383,0,409,393,410,366,348,367,42,364,384,383,0,393,411,410,348,368,367,42,384,364,385,0,411,393,412,368,348,369,42,361,385,364,0,390,412,393,345,369,348,42,103,385,361,0,389,412,390,101,369,345,42,103,104,385,0,105,106,413,101,102,369,42,385,104,386,0,413,106,414,369,102,370,42,104,387,386,0,106,415,414,102,371,370,42,104,105,387,0,106,107,415,102,103,371,42,105,107,387,0,107,109,415,103,105,371,42,388,387,107,0,416,415,109,372,371,105,42,388,386,387,0,416,414,415,372,370,371,42,386,388,389,0,414,416,417,370,372,373,42,389,388,390,0,417,416,418,373,372,374,42,388,107,390,0,416,109,418,372,105,374,42,390,107,108,0,418,109,110,374,105,106,42,390,108,109,0,418,110,111,374,106,107,42,390,109,391,0,418,111,419,374,107,375,42,391,109,392,0,419,111,420,375,107,376,42,392,109,110,0,420,111,112,376,107,108,42,392,110,111,0,420,112,113,376,108,109,42,392,111,393,0,420,113,421,376,109,377,42,393,111,394,0,421,113,422,377,109,378,42,394,111,112,0,422,113,114,378,109,110,42,394,112,113,0,422,114,115,378,110,111,42,394,113,395,0,422,115,423,378,111,379,42,395,113,396,0,423,115,424,379,111,380,42,396,113,122,0,424,115,124,380,111,120,42,396,122,123,0,424,124,125,380,120,121,42,396,123,397,0,424,125,425,380,121,381,42,397,123,128,0,425,125,130,381,121,126,42,128,123,124,0,130,125,126,126,121,122,42,129,397,128,0,131,425,130,127,381,126,42,129,398,397,0,131,426,425,127,382,381,42,399,398,129,0,427,426,131,383,382,127,42,400,398,399,0,428,426,427,384,382,383,42,400,401,398,0,428,429,426,384,385,382,42,400,402,401,0,428,430,429,384,386,385,42,400,403,402,0,428,431,430,384,387,386,42,404,403,400,0,432,431,428,388,387,384,42,404,405,403,0,432,433,431,388,389,387,42,406,405,404,0,434,433,432,390,389,388,42,406,407,405,0,434,435,433,390,391,389,42,406,408,407,0,434,436,435,390,392,391,42,409,408,406,0,437,436,434,393,392,390,42,409,410,408,0,437,438,436,393,394,392,42,411,410,409,0,439,438,437,395,394,393,42,411,412,410,0,439,440,438,395,396,394,42,470,411,409,0,441,439,437,397,395,393,42,470,409,471,0,441,437,442,397,393,398,42,471,409,406,0,442,437,434,398,393,390,42,471,406,472,0,442,434,443,398,390,399,42,472,406,404,0,443,434,432,399,390,388,42,404,473,472,0,432,444,443,388,400,399,42,474,473,404,0,445,444,432,401,400,388,42,474,330,473,0,446,363,447,401,328,400,42,474,329,330,0,446,362,363,401,327,328,42,328,329,474,0,361,362,446,326,327,401,42,328,474,404,0,448,445,432,326,401,388,42,328,404,475,0,448,432,449,326,388,402,42,404,399,475,0,432,427,449,388,383,402,42,404,400,399,0,432,428,427,388,384,383,42,475,399,476,0,449,427,450,402,383,403,42,399,129,476,0,427,131,450,383,127,403,42,131,476,129,0,133,450,131,129,403,127,42,133,476,131,0,451,450,133,131,403,129,42,133,477,476,0,451,452,450,131,404,403,42,477,133,134,0,452,451,453,404,131,132,42,478,477,134,0,454,452,453,405,404,132,42,478,479,477,0,454,455,452,405,406,404,42,478,164,479,0,456,197,457,405,162,406,42,164,478,162,0,177,458,175,162,405,160,42,162,478,134,0,175,458,138,160,405,132,42,162,134,135,0,175,138,139,160,132,133,42,164,178,479,0,197,198,457,162,176,406,42,479,178,328,0,457,198,361,406,176,326,42,479,328,475,0,455,448,449,406,326,402,42,479,475,477,0,455,449,452,406,402,404,42,475,476,477,0,449,450,452,402,403,404,42,330,331,473,0,363,364,447,328,329,400,42,331,480,473,0,364,459,447,329,407,400,42,331,332,480,0,364,365,459,329,330,407,42,480,332,481,0,460,461,462,407,330,408,42,348,501,347,0,367,463,366,332,409,331,42,348,502,501,0,367,464,463,332,410,409,42,348,349,502,0,367,368,464,332,333,410,42,349,503,502,0,369,465,466,333,411,410,42,349,504,503,0,369,467,465,333,412,411,42,504,349,350,0,467,369,371,412,333,334,42,505,504,350,0,468,467,371,413,412,334,42,504,505,503,0,467,468,465,412,413,411,42,503,505,506,0,465,468,469,411,413,414,42,506,505,507,0,469,468,470,414,413,415,42,505,508,507,0,468,471,470,413,416,415,42,505,509,508,0,468,472,471,413,417,416,42,350,509,505,0,371,472,468,334,417,413,42,350,510,509,0,371,473,472,334,418,417,42,350,511,510,0,371,474,473,334,419,418,42,350,512,511,0,371,475,474,334,420,419,42,350,351,512,0,371,373,475,334,335,420,42,512,351,513,0,475,373,476,420,335,421,42,351,514,513,0,373,477,476,335,422,421,42,351,352,514,0,373,374,477,335,336,422,42,352,515,514,0,374,478,477,336,423,422,42,352,353,515,0,375,376,479,336,337,423,42,353,381,515,0,480,408,481,337,365,423,42,516,381,353,0,482,408,480,424,365,337,42,516,380,381,0,482,407,408,424,364,365,42,517,380,516,0,483,407,482,425,364,424,42,517,379,380,0,483,406,407,425,363,364,42,378,379,517,0,484,406,483,362,363,425,42,517,377,378,0,483,485,484,425,361,362,42,517,518,377,0,483,486,485,425,426,361,42,519,518,517,0,487,486,483,427,426,425,42,519,373,518,0,487,402,486,427,357,426,42,519,357,373,0,487,382,402,427,341,357,42,354,357,519,0,488,382,487,338,341,427,42,354,355,357,0,488,380,382,338,339,341,42,354,519,516,0,488,487,482,338,427,424,42,516,519,517,0,482,487,483,424,427,425,42,353,354,516,0,480,488,482,337,338,424,42,518,373,376,0,486,402,489,426,357,360,42,376,373,374,0,489,402,403,360,357,358,42,518,376,377,0,486,489,485,426,360,361,42,381,382,515,0,408,409,481,365,366,423,42,514,515,382,0,477,478,490,422,423,366,42,514,382,383,0,477,490,491,422,366,367,42,514,383,513,0,477,491,476,422,367,421,42,513,383,384,0,476,491,492,421,367,368,42,384,386,513,0,492,414,476,368,370,421,42,385,386,384,0,413,414,492,369,370,368,42,512,513,386,0,475,476,414,420,421,370,42,512,386,389,0,475,414,417,420,370,373,42,512,389,511,0,475,417,474,420,373,419,42,511,389,520,0,474,417,493,419,373,428,42,520,389,390,0,493,417,418,428,373,374,42,520,390,521,0,493,418,494,428,374,429,42,521,390,391,0,494,418,419,429,374,375,42,521,391,392,0,494,419,420,429,375,376,42,521,392,522,0,494,420,495,429,376,430,42,523,522,392,0,496,495,420,431,430,376,42,523,521,522,0,496,494,495,431,429,430,42,510,521,523,0,473,494,496,418,429,431,42,511,521,510,0,474,494,473,419,429,418,42,511,520,521,0,474,493,494,419,428,429,42,509,510,523,0,472,473,496,417,418,431,42,509,523,508,0,472,496,471,417,431,416,42,508,523,524,0,471,496,497,416,431,432,42,524,523,525,0,497,496,498,432,431,433,42,523,393,525,0,496,421,498,431,377,433,42,523,392,393,0,496,420,421,431,376,377,42,526,525,393,0,499,498,421,434,433,377,42,524,525,526,0,497,498,499,432,433,434,42,524,526,407,0,497,499,435,432,434,391,42,405,407,526,0,433,435,499,389,391,434,42,405,526,403,0,433,499,431,389,434,387,42,403,526,402,0,431,499,430,387,434,386,42,526,527,402,0,499,500,430,434,435,386,42,526,394,527,0,499,422,500,434,378,435,42,526,393,394,0,499,421,422,434,377,378,42,402,527,394,0,430,500,422,386,435,378,42,402,394,395,0,430,422,423,386,378,379,42,402,395,396,0,430,423,424,386,379,380,42,402,396,401,0,430,424,429,386,380,385,42,401,396,398,0,429,424,426,385,380,382,42,398,396,397,0,426,424,425,382,380,381,42,408,524,407,0,436,497,435,392,432,391,42,528,524,408,0,501,497,436,436,432,392,42,507,524,528,0,470,497,501,415,432,436,42,507,508,524,0,470,471,497,415,416,432,42,529,507,528,0,502,470,501,437,415,436,42,506,507,529,0,469,470,502,414,415,437,42,530,506,529,0,503,469,502,438,414,437,42,531,506,530,0,504,469,503,439,414,438,42,503,506,531,0,465,469,504,411,414,439,42,503,531,532,0,465,504,505,411,439,440,42,481,470,471,0,462,441,442,408,397,398,42,480,481,471,0,460,462,442,407,408,398,42,473,480,471,0,444,460,442,400,407,398,42,473,471,472,0,444,442,443,400,398,399,42,502,532,501,0,466,505,506,410,440,409,42,502,503,532,0,466,465,505,410,411,440,42,530,529,412,0,503,502,440,438,437,396,42,412,529,1145,0,440,502,507,396,437,441,42,529,528,1145,0,502,501,507,437,436,441,42,410,1145,528,0,438,507,501,394,441,436,42,412,1145,410,0,440,507,438,396,441,394,42,410,528,408,0,438,501,436,394,436,392,42,52,326,49,0,53,358,359,52,324,49,42,50,52,49,0,54,53,359,50,52,49,42,43,324,41,0,43,357,41,43,322,41,42,41,324,39,0,41,357,39,41,322,39,42,324,322,39,0,357,508,39,322,320,39,42,39,322,37,0,39,508,37,39,320,37,42,322,321,37,0,508,509,37,320,319,37,42,37,321,35,0,37,509,35,37,319,35,42,321,320,35,0,509,510,35,319,318,35,42,35,320,318,0,35,510,346,35,318,316,42,35,318,316,0,35,346,344,35,316,314,42,35,316,34,0,35,344,34,35,314,34,42,183,323,182,0,204,353,203,181,321,180,42,183,184,323,0,204,205,353,181,182,321,42,184,192,323,0,205,213,353,182,190,321,42,196,197,319,0,217,218,349,194,195,317,42,319,197,317,0,347,330,345,317,195,315,42,317,197,1146,0,345,330,511,315,195,442,42,197,305,1146,0,330,332,511,195,303,442,42,1146,305,313,0,511,332,341,442,303,311,42,305,312,313,0,332,340,341,303,310,311,42,305,306,312,0,332,333,340,303,304,310,42,306,311,312,0,333,339,340,304,309,310,42,306,307,311,0,333,335,339,304,305,309,42,307,309,311,0,335,337,339,305,307,309,42,311,309,310,0,339,337,338,309,307,308,42,1146,313,314,0,511,341,342,442,311,312,42,315,1146,314,0,343,511,342,313,442,312,42,317,1146,315,0,345,511,343,315,442,313,42,29,23,27,0,29,23,27,29,23,27,42,27,23,24,0,27,23,24,27,23,24,42,3,83,1,0,3,85,1,3,81,1,42,170,167,169,0,191,180,512,168,165,167,42,169,167,168,0,512,180,181,167,165,166,42,136,1147,158,0,140,513,172,134,443,156,42,136,137,1147,0,140,141,513,134,135,443,42,1147,137,148,0,513,141,514,443,135,146,42,148,137,138,0,514,141,142,146,135,136,42,148,138,139,0,153,143,144,146,136,137,42,151,1147,148,0,515,513,514,149,443,146,42,154,1147,151,0,165,513,515,152,443,149,42,156,1147,154,0,164,513,165,154,443,152,42,158,1147,156,0,172,513,164,156,443,154,42,140,141,143,0,145,146,148,138,139,141,42,56,58,57,1,516,517,518,56,444,57,42,58,56,59,1,517,516,519,444,56,445,42,59,56,60,1,519,516,520,445,56,58,42,57,333,332,1,518,521,522,57,446,330,42,58,333,57,1,517,521,518,444,446,57,42,58,334,333,1,517,523,521,444,447,446,42,58,335,334,1,517,524,523,444,448,447,42,336,335,58,1,525,524,517,449,448,444,42,337,335,336,1,526,524,525,450,448,449,42,337,338,335,1,526,527,524,450,451,448,42,337,339,338,1,526,528,527,450,452,451,42,339,337,340,1,528,526,529,452,450,453,42,340,337,341,1,529,526,530,453,450,454,42,337,336,341,1,526,525,530,450,449,454,42,341,336,342,1,530,525,531,454,449,455,42,336,58,342,1,525,517,531,449,444,455,42,342,58,59,1,531,517,519,455,444,445,42,342,59,343,1,531,519,532,455,445,456,42,343,59,344,1,532,519,533,456,445,457,42,59,60,344,1,519,520,533,445,58,457,42,344,60,345,1,533,520,519,457,58,458,42,345,60,61,1,519,520,534,458,58,59,42,345,61,346,1,519,534,517,458,59,459,42,346,61,347,1,517,534,518,459,59,331,42,411,413,412,1,535,536,537,395,460,396,42,414,413,411,1,538,536,535,461,460,395,42,414,415,413,1,538,539,536,461,462,460,42,416,415,414,1,540,539,538,463,462,461,42,416,417,415,1,540,541,539,463,464,462,42,416,418,417,1,540,542,541,463,465,464,42,416,419,418,1,540,543,542,463,466,465,42,416,420,419,1,540,544,543,463,467,466,42,421,420,416,1,545,544,540,468,467,463,42,421,422,420,1,545,546,544,468,469,467,42,423,422,421,1,547,546,545,470,469,468,42,423,424,422,1,547,548,546,470,471,469,42,425,424,423,1,549,548,547,472,471,470,42,425,426,424,1,549,550,548,472,473,471,42,427,426,425,1,551,550,549,474,473,472,42,428,426,427,1,552,550,551,475,473,474,42,428,429,426,1,552,553,550,475,476,473,42,428,430,429,1,552,554,553,475,477,476,42,431,430,428,1,555,554,552,478,477,475,42,431,432,430,1,555,556,554,478,479,477,42,433,432,431,1,557,558,559,480,479,478,42,433,434,432,1,557,560,558,480,481,479,42,434,433,435,1,560,557,561,481,480,482,42,435,433,436,1,561,557,562,482,480,483,42,433,437,436,1,557,563,562,480,484,483,42,437,433,431,1,563,557,559,484,480,478,42,431,438,437,1,559,564,563,478,485,484,42,439,438,431,1,565,564,559,486,485,478,42,440,438,439,1,566,564,565,487,485,486,42,441,438,440,1,567,564,566,488,485,487,42,437,438,441,1,563,564,567,484,485,488,42,442,437,441,1,568,563,567,489,484,488,42,442,436,437,1,568,562,563,489,483,484,42,443,436,442,1,569,562,568,490,483,489,42,443,444,436,1,569,570,562,490,491,483,42,445,444,443,1,571,570,569,492,491,490,42,445,446,444,1,571,572,570,492,493,491,42,447,446,445,1,573,572,571,494,493,492,42,446,447,448,1,572,573,574,493,494,495,42,447,449,448,1,573,575,574,494,496,495,42,447,450,449,1,573,576,575,494,497,496,42,451,450,447,1,577,576,573,498,497,494,42,452,450,451,1,578,576,577,499,497,498,42,452,453,450,1,578,579,576,499,500,497,42,452,454,453,1,578,580,579,499,501,500,42,455,454,452,1,581,580,578,502,501,499,42,454,455,456,1,580,581,582,501,502,503,42,456,455,457,1,582,581,583,503,502,504,42,455,458,457,1,581,584,583,502,505,504,42,452,458,455,1,578,584,581,499,505,502,42,458,452,451,1,584,578,577,505,499,498,42,458,451,459,1,584,577,585,505,498,506,42,451,447,459,1,577,573,585,498,494,506,42,447,445,459,1,573,571,585,494,492,506,42,458,459,445,1,584,585,571,505,506,492,42,460,458,445,1,586,584,571,507,505,492,42,457,458,460,1,583,584,586,504,505,507,42,457,460,461,1,583,586,587,504,507,508,42,460,445,461,1,586,571,587,507,492,508,42,461,445,443,1,587,571,569,508,492,490,42,461,443,462,1,587,569,588,508,490,509,42,462,443,442,1,588,569,568,509,490,489,42,462,442,463,1,588,568,589,509,489,510,42,442,441,463,1,568,567,589,489,488,510,42,463,441,440,1,589,567,566,510,488,487,42,463,440,439,1,589,566,565,510,487,486,42,463,439,464,1,589,565,590,510,486,511,42,464,439,465,1,591,592,593,511,486,512,42,439,431,465,1,592,555,593,486,478,512,42,465,431,428,1,593,555,552,512,478,475,42,465,428,427,1,593,552,551,512,475,474,42,465,427,466,1,593,551,594,512,474,513,42,466,427,425,1,594,551,549,513,474,472,42,466,425,467,1,594,549,595,513,472,514,42,467,425,423,1,595,549,547,514,472,470,42,467,423,468,1,595,547,596,514,470,515,42,468,423,421,1,596,547,545,515,470,468,42,468,421,469,1,596,545,597,515,468,516,42,421,416,469,1,545,540,597,468,463,516,42,469,416,414,1,597,540,538,516,463,461,42,469,414,411,1,597,538,598,516,461,395,42,469,411,470,1,597,535,599,516,395,397,42,332,482,481,1,522,600,601,330,517,408,42,332,483,482,1,522,602,600,330,518,517,42,333,483,332,1,521,602,522,446,518,330,42,333,484,483,1,521,603,602,446,519,518,42,333,485,484,1,521,604,603,446,520,519,42,334,485,333,1,523,604,521,447,520,446,42,335,485,334,1,524,604,523,448,520,447,42,335,486,485,1,524,605,604,448,521,520,42,335,487,486,1,524,606,605,448,522,521,42,338,487,335,1,527,606,524,451,522,448,42,338,488,487,1,527,607,606,451,523,522,42,339,488,338,1,528,607,527,452,523,451,42,339,489,488,1,528,608,607,452,524,523,42,489,339,490,1,608,528,609,524,452,525,42,490,339,340,1,609,528,529,525,452,453,42,490,340,491,1,609,529,610,525,453,526,42,491,340,492,1,610,529,611,526,453,527,42,340,493,492,1,529,612,611,453,528,527,42,340,341,493,1,529,530,612,453,454,528,42,341,343,493,1,530,532,612,454,456,528,42,341,342,343,1,530,531,532,454,455,456,42,493,343,494,1,612,532,530,528,456,529,42,494,343,495,1,530,532,531,529,456,530,42,343,345,495,1,532,519,531,456,458,530,42,343,344,345,1,532,533,519,456,457,458,42,495,345,346,1,531,519,517,530,458,459,42,496,495,346,1,525,531,517,531,530,459,42,494,495,496,1,530,531,525,529,530,531,42,494,496,497,1,530,525,526,529,531,532,42,496,498,497,1,525,524,526,531,533,532,42,498,496,346,1,524,525,517,533,531,459,42,346,499,498,1,517,523,524,459,534,533,42,346,500,499,1,517,521,523,459,535,534,42,346,347,500,1,517,518,521,459,331,535,42,347,501,500,1,518,522,521,331,409,535,42,531,533,532,1,613,614,615,439,536,440,42,530,533,531,1,616,614,617,438,536,439,42,530,534,533,1,616,618,614,438,537,536,42,413,534,530,1,536,618,616,460,537,438,42,413,415,534,1,536,539,618,460,462,537,42,415,535,534,1,539,619,618,462,538,537,42,415,536,535,1,539,620,619,462,539,538,42,415,537,536,1,539,621,620,462,540,539,42,417,537,415,1,541,621,539,464,540,462,42,417,538,537,1,541,622,621,464,541,540,42,418,538,417,1,542,622,541,465,541,464,42,539,538,418,1,623,622,542,542,541,465,42,539,540,538,1,623,624,622,542,543,541,42,541,540,539,1,625,624,623,544,543,542,42,541,542,540,1,625,626,624,544,545,543,42,543,542,541,1,627,626,625,546,545,544,42,543,544,542,1,627,628,626,546,547,545,42,543,545,544,1,627,629,628,546,548,547,42,543,546,545,1,627,630,629,546,549,548,42,547,546,543,1,631,630,627,550,549,546,42,547,548,546,1,631,632,630,550,551,549,42,549,548,547,1,633,632,631,552,551,550,42,550,548,549,1,634,632,633,553,551,552,42,550,551,548,1,634,635,632,553,554,551,42,550,552,551,1,634,636,635,553,555,554,42,553,552,550,1,637,636,634,556,555,553,42,553,554,552,1,637,638,636,556,557,555,42,555,554,553,1,639,638,637,558,557,556,42,555,556,554,1,639,640,638,558,559,557,42,555,557,556,1,639,641,640,558,560,559,42,558,557,555,1,642,641,639,561,560,558,42,559,558,555,1,643,642,639,562,561,558,42,559,555,560,1,643,639,644,562,558,563,42,560,555,561,1,644,639,645,563,558,564,42,555,553,561,1,639,637,645,558,556,564,42,561,553,562,1,645,637,646,564,556,565,42,562,553,563,1,646,637,647,565,556,566,42,553,549,563,1,637,633,647,556,552,566,42,549,553,550,1,633,637,634,552,556,553,42,563,549,564,1,647,633,648,566,552,567,42,549,565,564,1,633,649,648,552,568,567,42,549,547,565,1,633,631,649,552,550,568,42,547,541,565,1,631,625,649,550,544,568,42,547,543,541,1,631,627,625,550,546,544,42,565,541,539,1,649,625,623,568,544,542,42,565,539,566,1,649,623,650,568,542,569,42,566,539,418,1,650,623,542,569,542,465,42,419,566,418,1,543,650,542,466,569,465,42,419,567,566,1,543,651,650,466,570,569,42,420,567,419,1,544,651,543,467,570,466,42,422,567,420,1,546,651,544,469,570,467,42,422,568,567,1,546,652,651,469,571,570,42,424,568,422,1,548,652,546,471,571,469,42,424,569,568,1,548,653,652,471,572,571,42,426,569,424,1,550,653,548,473,572,471,42,426,570,569,1,550,654,653,473,573,572,42,426,429,570,1,550,553,654,473,476,573,42,429,571,570,1,553,655,654,476,574,573,42,572,571,429,1,656,655,553,575,574,476,42,572,573,571,1,656,657,655,575,576,574,42,572,574,573,1,656,658,657,575,577,576,42,572,575,574,1,656,659,658,575,578,577,42,576,575,572,1,660,659,656,579,578,575,42,576,577,575,1,660,661,659,579,580,578,42,578,577,576,1,662,661,660,581,580,579,42,578,579,577,1,662,663,661,581,582,580,42,578,580,579,1,662,664,663,581,583,582,42,581,580,578,1,665,664,662,584,583,581,42,581,582,580,1,665,666,664,584,585,583,42,583,582,581,1,667,666,665,586,585,584,42,583,584,582,1,667,668,666,586,587,585,42,585,584,583,1,669,668,667,588,587,586,42,585,583,488,1,669,667,607,588,586,523,42,488,583,586,1,607,667,670,523,586,589,42,586,583,587,1,670,667,671,589,586,590,42,587,583,581,1,671,667,665,590,586,584,42,587,581,588,1,671,665,672,590,584,591,42,588,581,589,1,672,665,673,591,584,592,42,589,581,576,1,673,665,660,592,584,579,42,581,578,576,1,665,662,660,584,581,579,42,589,576,430,1,673,660,554,592,579,477,42,430,576,572,1,554,660,656,477,579,575,42,430,572,429,1,554,656,553,477,575,476,42,590,589,430,1,674,673,554,593,592,477,42,590,588,589,1,674,672,673,593,591,592,42,448,588,590,1,574,675,676,495,591,593,42,448,449,588,1,574,575,675,495,496,591,42,449,591,588,1,575,677,675,496,594,591,42,449,592,591,1,575,678,677,496,595,594,42,450,592,449,1,576,678,575,497,595,496,42,450,593,592,1,576,679,678,497,596,595,42,453,593,450,1,579,679,576,500,596,497,42,453,594,593,1,579,680,679,500,597,596,42,454,594,453,1,580,680,579,501,597,500,42,594,454,586,1,680,580,681,597,501,589,42,454,456,586,1,580,582,681,501,503,589,42,488,586,456,1,607,670,682,523,589,503,42,488,456,487,1,607,682,606,523,503,522,42,456,457,487,1,582,583,683,503,504,522,42,487,457,595,1,683,583,684,522,504,598,42,457,461,595,1,583,587,684,504,508,598,42,461,462,595,1,587,588,684,508,509,598,42,487,595,462,1,683,684,588,522,598,509,42,487,462,486,1,683,588,685,522,509,521,42,486,462,463,1,685,588,589,521,509,510,42,486,463,464,1,685,589,590,521,510,511,42,486,464,485,1,605,591,604,521,511,520,42,485,464,596,1,604,591,686,520,511,599,42,464,465,596,1,591,593,686,511,512,599,42,596,465,466,1,686,593,594,599,512,513,42,596,466,482,1,686,594,600,599,513,517,42,482,466,597,1,600,594,687,517,513,600,42,466,467,597,1,594,595,687,513,514,600,42,597,467,468,1,687,595,596,600,514,515,42,597,468,469,1,687,596,597,600,515,516,42,481,597,469,1,688,687,597,408,600,516,42,482,597,481,1,600,687,689,517,600,408,42,481,469,470,1,688,597,690,408,516,397,42,483,596,482,1,602,686,600,518,599,517,42,483,484,596,1,602,603,686,518,519,599,42,484,485,596,1,603,604,686,519,520,599,42,594,586,598,1,680,681,691,597,589,601,42,586,599,598,1,681,692,691,589,602,601,42,586,587,599,1,681,693,692,589,590,602,42,587,591,599,1,693,677,692,590,594,602,42,587,588,591,1,693,675,677,590,591,594,42,599,591,592,1,692,677,678,602,594,595,42,598,599,592,1,691,692,678,601,602,595,42,598,592,593,1,691,678,679,601,595,596,42,594,598,593,1,680,691,679,597,601,596,42,448,590,600,1,574,676,694,495,593,603,42,590,432,600,1,676,558,694,593,479,603,42,590,430,432,1,674,554,556,593,477,479,42,600,432,601,1,694,558,695,603,479,604,42,601,432,434,1,695,558,560,604,479,481,42,434,600,601,1,560,694,695,481,603,604,42,600,434,602,1,694,560,696,603,481,605,42,602,434,444,1,696,560,570,605,481,491,42,444,434,435,1,570,560,561,491,481,482,42,444,435,436,1,570,561,562,491,482,483,42,446,602,444,1,572,696,570,493,605,491,42,448,602,446,1,574,696,572,495,605,493,42,448,600,602,1,574,694,696,495,603,605,42,489,585,488,1,608,669,607,524,588,523,42,584,603,582,1,668,697,666,587,606,585,42,582,603,604,1,666,697,698,585,606,607,42,603,605,604,1,697,699,698,606,608,607,42,603,606,605,1,697,700,699,606,609,608,42,607,605,606,1,701,699,700,610,608,609,42,607,608,605,1,701,702,699,610,611,608,42,607,609,608,1,701,703,702,610,612,611,42,607,610,609,1,701,704,703,610,613,612,42,611,610,607,1,705,704,701,614,613,610,42,606,611,607,1,700,705,701,609,614,610,42,610,612,609,1,704,706,703,613,615,612,42,610,613,612,1,704,707,706,613,616,615,42,613,614,612,1,707,708,706,616,617,615,42,612,614,615,1,706,708,709,615,617,618,42,615,614,616,1,709,708,710,618,617,619,42,614,617,616,1,708,711,710,617,620,619,42,618,616,617,1,712,710,711,621,619,620,42,618,619,616,1,712,713,710,621,622,619,42,620,619,618,1,714,713,712,623,622,621,42,620,621,619,1,714,715,713,623,624,622,42,622,621,620,1,716,715,714,625,624,623,42,622,623,621,1,716,717,715,625,626,624,42,624,623,622,1,718,717,716,627,626,625,42,624,625,623,1,718,719,717,627,628,626,42,624,626,625,1,718,720,719,627,629,628,42,627,626,624,1,721,720,718,630,629,627,42,627,628,626,1,721,722,720,630,631,629,42,629,628,627,1,723,722,721,632,631,630,42,629,630,628,1,723,724,722,632,633,631,42,631,630,629,1,694,558,676,634,633,632,42,631,632,630,1,694,695,558,634,635,633,42,631,633,632,1,694,560,695,634,636,635,42,631,634,633,1,694,696,560,634,637,636,42,635,634,631,1,574,696,694,638,637,634,42,636,634,635,1,572,696,574,639,637,638,42,636,637,634,1,572,570,696,639,640,637,42,638,637,636,1,571,570,572,641,640,639,42,638,639,637,1,571,569,570,641,642,640,42,640,639,638,1,587,569,571,643,642,641,42,641,639,640,1,588,569,587,644,642,643,42,639,641,642,1,569,588,568,642,644,645,42,641,643,642,1,588,589,568,644,646,645,42,644,643,641,1,685,589,588,647,646,644,42,644,645,643,1,685,590,589,647,648,646,42,644,646,645,1,725,726,727,647,649,648,42,498,646,644,1,524,604,605,533,649,647,42,498,499,646,1,524,523,604,533,534,649,42,499,500,646,1,523,521,604,534,535,649,42,500,647,646,1,521,603,604,535,650,649,42,500,648,647,1,521,602,603,535,651,650,42,500,501,648,1,521,522,602,535,409,651,42,501,649,648,1,728,729,730,409,652,651,42,501,532,649,1,728,615,729,409,440,652,42,649,532,650,1,729,615,731,652,440,653,42,532,533,650,1,615,614,731,440,536,653,42,533,651,650,1,614,732,731,536,654,653,42,533,652,651,1,614,733,732,536,655,654,42,535,652,533,1,619,733,614,538,655,536,42,535,653,652,1,619,734,733,538,656,655,42,535,654,653,1,619,735,734,538,657,656,42,655,654,535,1,736,735,619,658,657,538,42,654,655,656,1,735,736,737,657,658,659,42,656,655,657,1,737,736,738,659,658,660,42,657,655,658,1,738,736,739,660,658,661,42,658,655,536,1,739,736,620,661,658,539,42,536,655,535,1,620,736,619,539,658,538,42,537,658,536,1,621,739,620,540,661,539,42,537,659,658,1,621,740,739,540,662,661,42,538,659,537,1,622,740,621,541,662,540,42,660,659,538,1,741,740,622,663,662,541,42,660,658,659,1,741,739,740,663,661,662,42,661,658,660,1,742,739,741,664,661,663,42,658,661,657,1,739,742,738,661,664,660,42,544,657,661,1,628,738,742,547,660,664,42,662,657,544,1,743,738,628,665,660,547,42,656,657,662,1,737,738,743,659,660,665,42,663,656,662,1,744,737,743,666,659,665,42,664,656,663,1,745,737,744,667,659,666,42,654,656,664,1,735,737,745,657,659,667,42,653,654,664,1,734,735,745,656,657,667,42,665,653,664,1,746,734,745,668,656,667,42,653,665,652,1,734,746,733,656,668,655,42,652,665,666,1,733,746,747,655,668,669,42,666,665,667,1,747,746,748,669,668,670,42,667,665,668,1,748,746,749,670,668,671,42,665,664,668,1,746,745,749,668,667,671,42,668,664,669,1,749,745,750,671,667,672,42,669,664,663,1,750,745,744,672,667,666,42,670,669,663,1,751,750,744,673,672,666,42,671,669,670,1,752,750,751,674,672,673,42,672,669,671,1,753,750,752,675,672,674,42,672,673,669,1,753,754,750,675,676,672,42,674,673,672,1,755,754,753,677,676,675,42,675,673,674,1,756,754,755,678,676,677,42,675,676,673,1,756,757,754,678,679,676,42,677,676,675,1,758,757,756,680,679,678,42,677,667,676,1,758,748,757,680,670,679,42,678,667,677,1,759,748,758,681,670,680,42,678,666,667,1,759,747,748,681,669,670,42,666,678,679,1,747,759,760,669,681,682,42,679,678,680,1,760,759,761,682,681,683,42,680,678,681,1,761,759,762,683,681,684,42,681,678,677,1,762,759,758,684,681,680,42,682,681,677,1,763,762,758,685,684,680,42,683,681,682,1,764,762,763,686,684,685,42,683,680,681,1,764,761,762,686,683,684,42,684,680,683,1,765,761,764,687,683,686,42,684,649,680,1,765,729,761,687,652,683,42,648,649,684,1,730,729,765,651,652,687,42,647,648,684,1,766,730,765,650,651,687,42,646,647,684,1,726,766,765,649,650,687,42,684,645,646,1,765,727,726,687,648,649,42,684,683,645,1,765,764,727,687,686,648,42,645,683,685,1,727,764,767,648,686,688,42,685,683,686,1,767,764,768,688,686,689,42,686,683,682,1,768,764,763,689,686,685,42,686,682,628,1,768,763,722,689,685,631,42,682,687,628,1,763,769,722,685,690,631,42,682,677,687,1,763,758,769,685,680,690,42,677,675,687,1,758,756,769,680,678,690,42,687,675,688,1,769,756,770,690,678,691,42,675,674,688,1,756,755,770,678,677,691,42,688,674,689,1,770,755,771,691,677,692,42,689,674,690,1,771,755,772,692,677,693,42,690,674,672,1,772,755,753,693,677,675,42,690,672,691,1,772,753,773,693,675,694,42,691,672,671,1,773,753,752,694,675,674,42,691,671,692,1,773,752,774,694,674,695,42,692,671,693,1,774,752,775,695,674,696,42,693,671,670,1,775,752,751,696,674,673,42,693,670,694,1,775,751,776,696,673,697,42,670,663,694,1,751,744,776,673,666,697,42,694,663,662,1,776,744,743,697,666,665,42,694,662,545,1,776,743,629,697,665,548,42,545,662,544,1,629,743,628,548,665,547,42,695,694,545,1,777,776,629,698,697,548,42,695,696,694,1,777,778,776,698,699,697,42,695,697,696,1,777,779,778,698,700,699,42,695,698,697,1,777,780,779,698,701,700,42,699,698,695,1,781,780,777,702,701,698,42,700,698,699,1,782,780,781,703,701,702,42,700,697,698,1,782,779,780,703,700,701,42,701,697,700,1,783,779,782,704,700,703,42,701,702,697,1,783,784,779,704,705,700,42,703,702,701,1,785,784,783,706,705,704,42,704,702,703,1,786,784,785,707,705,706,42,693,702,704,1,775,784,786,696,705,707,42,696,702,693,1,778,784,775,699,705,696,42,697,702,696,1,779,784,778,700,705,699,42,693,694,696,1,775,776,778,696,697,699,42,705,693,704,1,787,775,786,708,696,707,42,705,692,693,1,787,774,775,708,695,696,42,706,692,705,1,788,774,787,709,695,708,42,706,691,692,1,788,773,774,709,694,695,42,690,691,706,1,772,773,788,693,694,709,42,707,690,706,1,789,772,788,710,693,709,42,707,708,690,1,789,790,772,710,711,693,42,709,708,707,1,791,790,789,712,711,710,42,708,709,710,1,790,791,792,711,712,713,42,711,710,709,1,793,792,791,714,713,712,42,712,710,711,1,794,792,793,715,713,714,42,712,713,710,1,794,795,792,715,716,713,42,714,713,712,1,796,795,794,717,716,715,42,714,715,713,1,796,797,795,717,718,716,42,716,715,714,1,798,797,796,719,718,717,42,717,715,716,1,799,797,798,720,718,719,42,717,718,715,1,799,800,797,720,721,718,42,717,719,718,1,799,801,800,720,722,721,42,720,719,717,1,802,801,799,723,722,720,42,720,721,719,1,802,803,801,723,724,722,42,722,721,720,1,804,803,802,725,724,723,42,722,723,721,1,804,805,803,725,726,724,42,724,723,722,1,806,805,804,727,726,725,42,725,723,724,1,807,805,806,728,726,727,42,726,723,725,1,808,805,807,729,726,728,42,726,727,723,1,808,809,805,729,730,726,42,728,727,726,1,810,809,808,731,730,729,42,729,727,728,1,811,809,810,732,730,731,42,730,727,729,1,812,809,811,733,730,732,42,730,731,727,1,812,813,809,733,734,730,42,730,732,731,1,812,814,813,733,735,734,42,733,732,730,1,815,814,812,736,735,733,42,733,734,732,1,815,816,814,736,737,735,42,733,688,734,1,815,770,816,736,691,737,42,733,687,688,1,815,769,770,736,690,691,42,628,687,733,1,722,769,815,631,690,736,42,628,733,626,1,722,815,720,631,736,629,42,626,733,730,1,720,815,812,629,736,733,42,626,730,735,1,720,812,817,629,733,738,42,735,730,736,1,817,812,818,738,733,739,42,736,730,729,1,818,812,811,739,733,732,42,736,729,737,1,818,811,819,739,732,740,42,737,729,728,1,819,811,810,740,732,731,42,737,728,738,1,819,810,820,740,731,741,42,738,728,739,1,820,810,821,741,731,742,42,728,726,739,1,810,808,821,731,729,742,42,739,726,740,1,821,808,822,742,729,743,42,740,726,741,1,822,808,823,743,729,744,42,726,725,741,1,808,807,823,729,728,744,42,741,725,742,1,823,807,824,744,728,745,42,742,725,724,1,824,807,806,745,728,727,42,743,742,724,1,825,824,806,746,745,727,42,744,742,743,1,826,824,825,747,745,746,42,744,745,742,1,826,827,824,747,748,745,42,746,745,744,1,828,827,826,749,748,747,42,746,747,745,1,828,829,827,749,750,748,42,748,747,746,1,830,829,828,751,750,749,42,748,749,747,1,830,831,829,751,752,750,42,748,750,749,1,830,832,831,751,753,752,42,751,750,748,1,833,832,830,754,753,751,42,751,752,750,1,833,834,832,754,755,753,42,751,753,752,1,833,835,834,754,756,755,42,754,753,751,1,836,835,833,757,756,754,42,754,755,753,1,836,837,835,757,758,756,42,756,755,754,1,838,837,836,759,758,757,42,756,757,755,1,838,839,837,759,760,758,42,758,757,756,1,840,839,838,761,760,759,42,759,757,758,1,841,839,840,762,760,761,42,759,760,757,1,841,842,839,762,763,760,42,761,760,759,1,843,842,841,764,763,762,42,761,762,760,1,843,844,842,764,765,763,42,763,762,761,1,845,844,843,766,765,764,42,763,764,762,1,845,846,844,766,767,765,42,765,764,763,1,847,846,845,768,767,766,42,766,764,765,1,848,846,847,769,767,768,42,766,767,764,1,848,849,846,769,770,767,42,768,767,766,1,850,849,848,771,770,769,42,768,738,767,1,850,820,849,771,741,770,42,769,738,768,1,851,820,850,772,741,771,42,737,738,769,1,819,820,851,740,741,772,42,770,737,769,1,852,819,851,773,740,772,42,736,737,770,1,818,819,852,739,740,773,42,771,736,770,1,853,818,852,774,739,773,42,771,735,736,1,853,817,818,774,738,739,42,625,735,771,1,719,817,853,628,738,774,42,625,626,735,1,719,720,817,628,629,738,42,625,771,623,1,719,853,717,628,774,626,42,623,771,772,1,717,853,854,626,774,775,42,771,770,772,1,853,852,854,774,773,775,42,772,770,768,1,854,852,850,775,773,771,42,770,769,768,1,852,851,850,773,772,771,42,772,768,773,1,854,850,855,775,771,776,42,773,768,766,1,855,850,848,776,771,769,42,773,766,765,1,855,848,847,776,769,768,42,773,765,774,1,855,847,856,776,768,777,42,774,765,763,1,856,847,845,777,768,766,42,774,763,775,1,856,845,857,777,766,778,42,775,763,776,1,857,845,858,778,766,779,42,776,763,761,1,858,845,843,779,766,764,42,776,761,777,1,858,843,859,779,764,780,42,777,761,778,1,859,843,860,780,764,781,42,761,779,778,1,843,861,860,764,782,781,42,780,779,761,1,862,861,843,783,782,764,42,781,779,780,1,863,861,862,784,782,783,42,782,779,781,1,864,861,863,785,782,784,42,778,779,782,1,860,861,864,781,782,785,42,778,782,783,1,860,864,865,781,785,786,42,783,782,784,1,865,864,866,786,785,787,42,784,782,785,1,866,864,867,787,785,788,42,785,782,781,1,867,864,863,788,785,784,42,781,786,785,1,863,868,867,784,789,788,42,781,780,786,1,863,862,868,784,783,789,42,780,787,786,1,862,869,868,783,790,789,42,780,758,787,1,862,840,869,783,761,790,42,759,758,780,1,841,840,862,762,761,783,42,761,759,780,1,843,841,862,764,762,783,42,787,758,756,1,869,840,838,790,761,759,42,787,756,788,1,869,838,870,790,759,791,42,756,789,788,1,838,871,870,759,792,791,42,754,789,756,1,836,871,838,757,792,759,42,790,789,754,1,872,871,836,793,792,757,42,788,789,790,1,870,871,872,791,792,793,42,791,788,790,1,873,870,872,794,791,793,42,792,788,791,1,874,870,873,795,791,794,42,792,787,788,1,874,869,870,795,790,791,42,793,787,792,1,875,869,874,796,790,795,42,786,787,793,1,868,869,875,789,790,796,42,785,786,793,1,867,868,875,788,789,796,42,785,793,794,1,867,875,876,788,796,797,42,793,795,794,1,875,877,876,796,798,797,42,793,792,795,1,875,874,877,796,795,798,42,791,795,792,1,873,877,874,794,798,795,42,796,795,791,1,878,877,873,799,798,794,42,796,797,795,1,878,879,877,799,800,798,42,796,798,797,1,878,880,879,799,801,800,42,799,798,796,1,881,880,878,802,801,799,42,799,800,798,1,881,882,880,802,803,801,42,799,801,800,1,881,883,882,802,804,803,42,802,801,799,1,884,883,881,805,804,802,42,802,744,801,1,884,826,883,805,747,804,42,802,746,744,1,884,828,826,805,749,747,42,790,746,802,1,872,828,884,793,749,805,42,748,746,790,1,830,828,872,751,749,793,42,754,748,790,1,836,830,872,757,751,793,42,754,751,748,1,836,833,830,757,754,751,42,791,790,802,1,873,872,884,794,793,805,42,802,796,791,1,884,878,873,805,799,794,42,802,799,796,1,884,881,878,805,802,799,42,801,744,743,1,883,826,825,804,747,746,42,801,743,800,1,883,825,882,804,746,803,42,800,743,803,1,882,825,885,803,746,806,42,743,724,803,1,825,806,885,746,727,806,42,803,724,722,1,885,806,804,806,727,725,42,803,722,804,1,885,804,886,806,725,807,42,804,722,805,1,886,804,887,807,725,808,42,722,720,805,1,804,802,887,725,723,808,42,805,720,806,1,887,802,888,808,723,809,42,720,717,806,1,802,799,888,723,720,809,42,806,717,716,1,888,799,798,809,720,719,42,807,806,716,1,889,888,798,810,809,719,42,805,806,807,1,887,888,889,808,809,810,42,808,805,807,1,890,887,889,811,808,810,42,809,805,808,1,891,887,890,812,808,811,42,809,804,805,1,891,886,887,812,807,808,42,797,804,809,1,879,886,891,800,807,812,42,797,810,804,1,879,892,886,800,813,807,42,798,810,797,1,880,892,879,801,813,800,42,798,800,810,1,880,882,892,801,803,813,42,800,803,810,1,882,885,892,803,806,813,42,810,803,804,1,892,885,886,813,806,807,42,795,797,809,1,877,879,891,798,800,812,42,795,809,811,1,877,891,893,798,812,814,42,811,809,808,1,893,891,890,814,812,811,42,811,808,812,1,893,890,894,814,811,815,42,808,813,812,1,890,895,894,811,816,815,42,808,807,813,1,890,889,895,811,810,816,42,807,814,813,1,889,896,895,810,817,816,42,815,814,807,1,897,896,889,818,817,810,42,816,814,815,1,898,896,897,819,817,818,42,816,817,814,1,898,899,896,819,820,817,42,816,818,817,1,898,900,899,819,821,820,42,819,818,816,1,901,900,898,822,821,819,42,714,818,819,1,796,900,901,717,821,822,42,714,820,818,1,796,902,900,717,823,821,42,821,820,714,1,903,902,796,824,823,717,42,821,822,820,1,903,904,902,824,825,823,42,823,822,821,1,905,904,903,826,825,824,42,823,824,822,1,905,906,904,826,827,825,42,823,825,824,1,905,907,906,826,828,827,42,826,825,823,1,908,907,905,829,828,826,42,826,827,825,1,908,909,907,829,830,828,42,828,827,826,1,910,909,908,831,830,829,42,827,828,829,1,909,910,911,830,831,832,42,829,828,830,1,911,910,912,832,831,833,42,830,828,826,1,912,910,908,833,831,829,42,830,826,831,1,912,908,913,833,829,834,42,832,831,826,1,914,913,908,835,834,829,42,833,831,832,1,915,913,914,836,834,835,42,830,831,833,1,912,913,915,833,834,836,42,833,834,830,1,915,916,912,836,837,833,42,835,834,833,1,917,916,915,838,837,836,42,836,834,835,1,918,916,917,839,837,838,42,836,830,834,1,918,912,916,839,833,837,42,836,837,830,1,918,919,912,839,840,833,42,838,837,836,1,920,919,918,841,840,839,42,838,829,837,1,920,911,919,841,832,840,42,838,839,829,1,920,921,911,841,842,832,42,840,839,838,1,922,921,920,843,842,841,42,840,841,839,1,922,923,921,843,844,842,42,813,841,840,1,895,923,922,816,844,843,42,813,842,841,1,895,924,923,816,845,844,42,814,842,813,1,896,924,895,817,845,816,42,814,843,842,1,896,925,924,817,846,845,42,817,843,814,1,899,925,896,820,846,817,42,818,843,817,1,900,925,899,821,846,820,42,818,820,843,1,900,902,925,821,823,846,42,820,844,843,1,902,926,925,823,847,846,42,822,844,820,1,904,926,902,825,847,823,42,824,844,822,1,906,926,904,827,847,825,42,827,844,824,1,909,926,906,830,847,827,42,843,844,827,1,925,926,909,846,847,830,42,843,827,845,1,925,909,927,846,830,848,42,845,827,829,1,927,909,911,848,830,832,42,845,829,839,1,927,911,921,848,832,842,42,841,845,839,1,923,927,921,844,848,842,42,842,845,841,1,924,927,923,845,848,844,42,843,845,842,1,925,927,924,846,848,845,42,824,825,827,1,906,907,909,827,828,830,42,846,813,840,1,928,895,922,849,816,843,42,812,813,846,1,894,895,928,815,816,849,42,847,812,846,1,929,894,928,850,815,849,42,811,812,847,1,893,894,929,814,815,850,42,794,811,847,1,876,893,929,797,814,850,42,794,795,811,1,876,877,893,797,798,814,42,794,847,848,1,876,929,930,797,850,851,42,848,847,849,1,930,929,931,851,850,852,42,849,847,850,1,931,929,932,852,850,853,42,847,846,850,1,929,928,932,850,849,853,42,850,846,851,1,932,928,933,853,849,854,42,851,846,840,1,933,928,922,854,849,843,42,851,840,852,1,933,922,934,854,843,855,42,852,840,838,1,934,922,920,855,843,841,42,853,852,838,1,935,934,920,856,855,841,42,851,852,853,1,933,934,935,854,855,856,42,851,853,854,1,933,935,936,854,856,857,42,854,853,855,1,936,935,937,857,856,858,42,853,856,855,1,935,938,937,856,859,858,42,853,857,856,1,935,939,938,856,860,859,42,853,838,857,1,935,920,939,856,841,860,42,857,838,836,1,939,920,918,860,841,839,42,858,857,836,1,940,939,918,861,860,839,42,856,857,858,1,938,939,940,859,860,861,42,859,856,858,1,941,938,940,862,859,861,42,855,856,859,1,937,938,941,858,859,862,42,860,855,859,1,942,937,941,863,858,862,42,855,860,861,1,937,942,943,858,863,864,42,861,860,862,1,943,942,944,864,863,865,42,862,860,863,1,944,942,945,865,863,866,42,863,860,864,1,945,942,946,866,863,867,42,864,860,865,1,946,942,947,867,863,868,42,860,859,865,1,942,941,947,863,862,868,42,859,858,865,1,941,940,947,862,861,868,42,865,858,835,1,947,940,917,868,861,838,42,858,836,835,1,940,918,917,861,839,838,42,866,865,835,1,948,947,917,869,868,838,42,867,865,866,1,949,947,948,870,868,869,42,867,868,865,1,949,950,947,870,871,868,42,869,868,867,1,951,950,949,872,871,870,42,869,870,868,1,951,952,950,872,873,871,42,871,870,869,1,953,952,951,874,873,872,42,871,863,870,1,953,945,952,874,866,873,42,862,863,871,1,944,945,953,865,866,874,42,861,862,871,1,943,944,953,864,865,874,42,872,861,871,1,954,943,953,875,864,874,42,873,861,872,1,955,943,954,876,864,875,42,874,861,873,1,956,943,955,877,864,876,42,874,855,861,1,956,937,943,877,858,864,42,875,855,874,1,957,937,956,878,858,877,42,854,855,875,1,936,937,957,857,858,878,42,876,854,875,1,958,936,957,879,857,878,42,877,854,876,1,959,936,958,880,857,879,42,877,851,854,1,959,933,936,880,854,857,42,878,851,877,1,960,933,959,881,854,880,42,878,850,851,1,960,932,933,881,853,854,42,879,850,878,1,961,932,960,882,853,881,42,879,849,850,1,961,931,932,882,852,853,42,880,849,879,1,962,931,961,883,852,882,42,880,784,849,1,962,866,931,883,787,852,42,783,784,880,1,865,866,962,786,787,883,42,881,783,880,1,963,865,962,884,786,883,42,881,777,783,1,963,859,865,884,780,786,42,882,777,881,1,964,859,963,885,780,884,42,882,776,777,1,964,858,859,885,779,780,42,883,776,882,1,965,858,964,886,779,885,42,883,775,776,1,965,857,858,886,778,779,42,884,775,883,1,966,857,965,887,778,886,42,884,885,775,1,966,967,857,887,888,778,42,886,885,884,1,968,967,966,889,888,887,42,886,887,885,1,968,969,967,889,890,888,42,888,887,886,1,970,969,968,891,890,889,42,619,887,888,1,713,969,970,622,890,891,42,619,889,887,1,713,971,969,622,892,890,42,621,889,619,1,715,971,713,624,892,622,42,621,890,889,1,715,972,971,624,893,892,42,621,772,890,1,715,854,972,624,775,893,42,621,623,772,1,715,717,854,624,626,775,42,772,773,890,1,854,855,972,775,776,893,42,890,773,774,1,972,855,856,893,776,777,42,890,774,891,1,972,856,973,893,777,894,42,891,774,885,1,973,856,967,894,777,888,42,774,775,885,1,856,857,967,777,778,888,42,891,885,887,1,973,967,969,894,888,890,42,889,891,887,1,971,973,969,892,894,890,42,890,891,889,1,972,973,971,893,894,892,42,619,888,616,1,713,970,710,622,891,619,42,615,616,888,1,709,710,970,618,619,891,42,612,615,888,1,706,709,970,615,618,891,42,612,888,892,1,706,970,974,615,891,895,42,892,888,886,1,974,970,968,895,891,889,42,892,886,893,1,974,968,975,895,889,896,42,893,886,894,1,975,968,976,896,889,897,42,886,884,894,1,968,966,976,889,887,897,42,894,884,883,1,976,966,965,897,887,886,42,894,883,882,1,976,965,964,897,886,885,42,894,882,895,1,976,964,977,897,885,898,42,895,882,881,1,977,964,963,898,885,884,42,895,881,896,1,977,963,978,898,884,899,42,896,881,897,1,978,963,979,899,884,900,42,881,880,897,1,963,962,979,884,883,900,42,897,880,879,1,979,962,961,900,883,882,42,898,897,879,1,980,979,961,901,900,882,42,899,897,898,1,981,979,980,902,900,901,42,896,897,899,1,978,979,981,899,900,902,42,895,896,899,1,977,978,981,898,899,902,42,900,895,899,1,982,977,981,903,898,902,42,894,895,900,1,976,977,982,897,898,903,42,894,900,901,1,976,982,983,897,903,904,42,901,900,902,1,983,982,984,904,903,905,42,900,903,902,1,982,985,984,903,906,905,42,900,899,903,1,982,981,985,903,902,906,42,899,904,903,1,981,986,985,902,907,906,42,899,898,904,1,981,980,986,902,901,907,42,904,898,905,1,986,980,987,907,901,908,42,898,906,905,1,980,988,987,901,909,908,42,898,879,906,1,980,961,988,901,882,909,42,879,877,906,1,961,959,988,882,880,909,42,879,878,877,1,961,960,959,882,881,880,42,906,877,876,1,988,959,958,909,880,879,42,906,876,907,1,988,958,989,909,879,910,42,907,876,908,1,989,958,990,910,879,911,42,908,876,909,1,990,958,991,911,879,912,42,876,875,909,1,958,957,991,879,878,912,42,909,875,874,1,991,957,956,912,878,877,42,909,874,910,1,991,956,992,912,877,913,42,910,874,873,1,992,956,955,913,877,876,42,910,873,911,1,992,955,993,913,876,914,42,911,873,912,1,993,955,994,914,876,915,42,912,873,913,1,994,955,995,915,876,916,42,873,872,913,1,955,954,995,876,875,916,42,913,872,914,1,995,954,996,916,875,917,42,872,871,914,1,954,953,996,875,874,917,42,914,871,915,1,996,953,997,917,874,918,42,871,869,915,1,953,951,997,874,872,918,42,869,916,915,1,951,998,997,872,919,918,42,869,917,916,1,951,999,998,872,920,919,42,869,918,917,1,951,1000,999,872,921,920,42,869,867,918,1,951,949,1000,872,870,921,42,867,919,918,1,949,1001,1000,870,922,921,42,867,866,919,1,949,948,1001,870,869,922,42,919,866,920,1,1001,948,1002,922,869,923,42,866,835,920,1,948,917,1002,869,838,923,42,920,835,921,1,1002,917,1003,923,838,924,42,921,835,833,1,1003,917,915,924,838,836,42,921,833,922,1,1003,915,1004,924,836,925,42,922,833,923,1,1004,915,1005,925,836,926,42,923,833,832,1,1005,915,914,926,836,835,42,923,832,924,1,1005,914,1006,926,835,927,42,924,832,925,1,1006,914,1007,927,835,928,42,925,832,926,1,1007,914,1008,928,835,929,42,927,926,832,1,1009,1008,914,930,929,835,42,928,926,927,1,1010,1008,1009,931,929,930,42,928,929,926,1,1010,1011,1008,931,932,929,42,928,711,929,1,1010,793,1011,931,714,932,42,928,712,711,1,1010,794,793,931,715,714,42,821,712,928,1,903,794,1010,824,715,931,42,714,712,821,1,796,794,903,717,715,824,42,823,821,928,1,905,903,1010,826,824,931,42,928,927,823,1,1010,1009,905,931,930,826,42,823,927,826,1,905,1009,908,826,930,829,42,832,826,927,1,914,908,1009,835,829,930,42,929,711,930,1,1011,793,1012,932,714,933,42,709,930,711,1,791,1012,793,712,933,714,42,930,709,931,1,1012,791,1013,933,712,934,42,931,709,932,1,1013,791,1014,934,712,935,42,707,932,709,1,789,1014,791,710,935,712,42,932,707,933,1,1014,789,1015,935,710,936,42,934,933,707,1,1016,1015,789,937,936,710,42,935,933,934,1,1017,1015,1016,938,936,937,42,935,936,933,1,1017,1018,1015,938,939,936,42,937,936,935,1,1019,1018,1017,940,939,938,42,937,931,936,1,1019,1013,1018,940,934,939,42,938,931,937,1,1020,1013,1019,941,934,940,42,939,931,938,1,1021,1013,1020,942,934,941,42,939,930,931,1,1021,1012,1013,942,933,934,42,940,930,939,1,1022,1012,1021,943,933,942,42,940,929,930,1,1022,1011,1012,943,932,933,42,926,929,940,1,1008,1011,1022,929,932,943,42,925,926,940,1,1007,1008,1022,928,929,943,42,925,940,941,1,1007,1022,1023,928,943,944,42,941,940,939,1,1023,1022,1021,944,943,942,42,941,939,942,1,1023,1021,1024,944,942,945,42,939,938,942,1,1021,1020,1024,942,941,945,42,942,938,943,1,1024,1020,1025,945,941,946,42,943,938,944,1,1025,1020,1026,946,941,947,42,944,938,937,1,1026,1020,1019,947,941,940,42,945,944,937,1,1027,1026,1019,948,947,940,42,946,944,945,1,1028,1026,1027,949,947,948,42,946,947,944,1,1028,1029,1026,949,950,947,42,948,947,946,1,1030,1029,1028,951,950,949,42,943,947,948,1,1025,1029,1030,946,950,951,42,947,943,944,1,1029,1025,1026,950,946,947,42,948,949,943,1,1030,1031,1025,951,952,946,42,950,949,948,1,1032,1031,1030,953,952,951,42,950,951,949,1,1032,1033,1031,953,954,952,42,952,951,950,1,1034,1033,1032,955,954,953,42,953,951,952,1,1035,1033,1034,956,954,955,42,954,951,953,1,1036,1033,1035,957,954,956,42,955,951,954,1,1037,1033,1036,958,954,957,42,956,951,955,1,1038,1033,1037,959,954,958,42,956,949,951,1,1038,1031,1033,959,952,954,42,956,942,949,1,1038,1024,1031,959,945,952,42,941,942,956,1,1023,1024,1038,944,945,959,42,941,956,957,1,1023,1038,1039,944,959,960,42,957,956,955,1,1039,1038,1037,960,959,958,42,958,957,955,1,1040,1039,1037,961,960,958,42,924,957,958,1,1006,1039,1040,927,960,961,42,924,925,957,1,1006,1007,1039,927,928,960,42,925,941,957,1,1007,1023,1039,928,944,960,42,959,924,958,1,1041,1006,1040,962,927,961,42,959,923,924,1,1041,1005,1006,962,926,927,42,959,922,923,1,1041,1004,1005,962,925,926,42,922,959,918,1,1004,1041,1000,925,962,921,42,918,959,917,1,1000,1041,999,921,962,920,42,917,959,960,1,999,1041,1042,920,962,963,42,959,958,960,1,1041,1040,1042,962,961,963,42,960,958,955,1,1042,1040,1037,963,961,958,42,960,955,954,1,1042,1037,1036,963,958,957,42,960,954,961,1,1042,1036,1043,963,957,964,42,961,954,962,1,1043,1036,1044,964,957,965,42,954,963,962,1,1036,1045,1044,957,966,965,42,954,953,963,1,1036,1035,1045,957,956,966,42,963,953,964,1,1045,1035,1046,966,956,967,42,964,953,952,1,1046,1035,1034,967,956,955,42,964,952,965,1,1046,1034,1047,967,955,968,42,952,950,965,1,1034,1032,1047,955,953,968,42,965,950,966,1,1047,1032,1048,968,953,969,42,950,967,966,1,1032,1049,1048,953,970,969,42,950,948,967,1,1032,1030,1049,953,951,970,42,967,948,946,1,1049,1030,1028,970,951,949,42,964,965,557,1,1046,1047,1050,967,968,560,42,963,964,557,1,1045,1046,1050,966,967,560,42,963,557,968,1,1045,1050,1051,966,560,971,42,560,963,968,1,644,1045,1051,563,966,971,42,969,963,560,1,1052,1045,644,972,966,563,42,962,963,969,1,1044,1045,1052,965,966,972,42,970,962,969,1,1053,1044,1052,973,965,972,42,961,962,970,1,1043,1044,1053,964,965,973,42,916,961,970,1,998,1043,1053,919,964,973,42,917,961,916,1,999,1043,998,920,964,919,42,917,960,961,1,999,1042,1043,920,963,964,42,916,970,971,1,998,1053,1054,919,973,974,42,972,971,970,1,1055,1054,1053,975,974,973,42,973,971,972,1,1056,1054,1055,976,974,975,42,973,915,971,1,1056,997,1054,976,918,974,42,914,915,973,1,996,997,1056,917,918,976,42,974,914,973,1,1057,996,1056,977,917,976,42,913,914,974,1,995,996,1057,916,917,977,42,975,913,974,1,1058,995,1057,978,916,977,42,912,913,975,1,994,995,1058,915,916,978,42,976,912,975,1,1059,994,1058,979,915,978,42,977,912,976,1,1060,994,1059,980,915,979,42,977,978,912,1,1060,1061,994,980,981,915,42,979,978,977,1,1062,1061,1060,982,981,980,42,980,978,979,1,1063,1061,1062,983,981,982,42,980,981,978,1,1063,1064,1061,983,984,981,42,982,981,980,1,1065,1064,1063,985,984,983,42,982,983,981,1,1065,1066,1064,985,986,984,42,984,983,982,1,1067,1066,1065,987,986,985,42,984,985,983,1,1067,1068,1066,987,988,986,42,986,985,984,1,1069,1068,1067,989,988,987,42,986,987,985,1,1069,1070,1068,989,990,988,42,988,987,986,1,1071,1070,1069,991,990,989,42,989,987,988,1,1072,1070,1071,992,990,991,42,990,987,989,1,1073,1070,1072,993,990,992,42,990,985,987,1,1073,1068,1070,993,988,990,42,990,908,985,1,1073,990,1068,993,911,988,42,991,908,990,1,1074,990,1073,994,911,993,42,991,907,908,1,1074,989,990,994,910,911,42,905,907,991,1,987,989,1074,908,910,994,42,905,906,907,1,987,988,989,908,909,910,42,992,905,991,1,1075,987,1074,995,908,994,42,904,905,992,1,986,987,1075,907,908,995,42,993,904,992,1,1076,986,1075,996,907,995,42,903,904,993,1,985,986,1076,906,907,996,42,994,903,993,1,1077,985,1076,997,906,996,42,902,903,994,1,984,985,1077,905,906,997,42,995,902,994,1,1078,984,1077,998,905,997,42,996,902,995,1,1079,984,1078,999,905,998,42,996,901,902,1,1079,983,984,999,904,905,42,997,901,996,1,1080,983,1079,1000,904,999,42,997,894,901,1,1080,976,983,1000,897,904,42,998,894,997,1,1081,976,1080,1001,897,1000,42,893,894,998,1,975,976,1081,896,897,1001,42,892,893,998,1,974,975,1081,895,896,1001,42,608,892,998,1,702,974,1081,611,895,1001,42,612,892,608,1,706,974,702,615,895,611,42,608,609,612,1,702,703,706,611,612,615,42,608,998,999,1,702,1081,1082,611,1001,1002,42,998,1000,999,1,1081,1083,1082,1001,1003,1002,42,998,997,1000,1,1081,1080,1083,1001,1000,1003,42,997,996,1000,1,1080,1079,1083,1000,999,1003,42,1000,996,1001,1,1083,1079,1084,1003,999,1004,42,996,995,1001,1,1079,1078,1084,999,998,1004,42,1001,995,1002,1,1084,1078,1085,1004,998,1005,42,995,1003,1002,1,1078,1086,1085,998,1006,1005,42,995,1004,1003,1,1078,1087,1086,998,1007,1006,42,995,994,1004,1,1078,1077,1087,998,997,1007,42,1004,994,1005,1,1087,1077,1088,1007,997,1008,42,994,1006,1005,1,1077,1089,1088,997,1009,1008,42,994,1007,1006,1,1077,1090,1089,997,1010,1009,42,994,1008,1007,1,1077,1091,1090,997,1011,1010,42,994,993,1008,1,1077,1076,1091,997,996,1011,42,993,992,1008,1,1076,1075,1091,996,995,1011,42,1008,992,1009,1,1091,1075,1092,1011,995,1012,42,1009,992,991,1,1092,1075,1074,1012,995,994,42,1009,991,1010,1,1092,1074,1093,1012,994,1013,42,1010,991,990,1,1093,1074,1073,1013,994,993,42,1010,990,989,1,1093,1073,1072,1013,993,992,42,1007,1010,989,1,1090,1093,1072,1010,1013,992,42,1007,1009,1010,1,1090,1092,1093,1010,1012,1013,42,1008,1009,1007,1,1091,1092,1090,1011,1012,1010,42,1007,989,1011,1,1090,1072,1094,1010,992,1014,42,1012,1011,989,1,1095,1094,1072,1015,1014,992,42,1013,1011,1012,1,1096,1094,1095,1016,1014,1015,42,1006,1011,1013,1,1089,1094,1096,1009,1014,1016,42,1006,1007,1011,1,1089,1090,1094,1009,1010,1014,42,1005,1006,1013,1,1088,1089,1096,1008,1009,1016,42,1005,1013,1014,1,1088,1096,1097,1008,1016,1017,42,1014,1013,1015,1,1097,1096,1098,1017,1016,1018,42,1015,1013,1012,1,1098,1096,1095,1018,1016,1015,42,1015,1012,1016,1,1098,1095,1099,1018,1015,1019,42,1016,1012,1017,1,1099,1095,1100,1019,1015,1020,42,1012,988,1017,1,1095,1071,1100,1015,991,1020,42,1012,989,988,1,1095,1072,1071,1015,992,991,42,1018,1017,988,1,1101,1100,1071,1021,1020,991,42,1016,1017,1018,1,1099,1100,1101,1019,1020,1021,42,1016,1018,1019,1,1099,1101,1102,1019,1021,1022,42,1019,1018,1020,1,1102,1101,1103,1022,1021,1023,42,1018,1021,1020,1,1101,1104,1103,1021,1024,1023,42,1021,1018,986,1,1104,1101,1069,1024,1021,989,42,1018,988,986,1,1101,1071,1069,1021,991,989,42,1021,986,984,1,1104,1069,1067,1024,989,987,42,1021,984,1022,1,1104,1067,1105,1024,987,1025,42,1022,984,982,1,1105,1067,1065,1025,987,985,42,1022,982,980,1,1105,1065,1063,1025,985,983,42,1023,1022,980,1,1106,1105,1063,1026,1025,983,42,1021,1022,1023,1,1104,1105,1106,1024,1025,1026,42,1021,1023,1024,1,1104,1106,1107,1024,1026,1027,42,1023,979,1024,1,1106,1062,1107,1026,982,1027,42,1023,980,979,1,1106,1063,1062,1026,983,982,42,1024,979,1025,1,1107,1062,1108,1027,982,1028,42,1025,979,977,1,1108,1062,1060,1028,982,980,42,1025,977,1026,1,1108,1060,1109,1028,980,1029,42,1026,977,976,1,1109,1060,1059,1029,980,979,42,1027,1026,976,1,1110,1109,1059,1030,1029,979,42,1027,1028,1026,1,1110,1111,1109,1030,1031,1029,42,1029,1028,1027,1,1112,1111,1110,1032,1031,1030,42,1030,1028,1029,1,1113,1111,1112,1033,1031,1032,42,1030,1031,1028,1,1113,1114,1111,1033,1034,1031,42,1030,1032,1031,1,1113,1115,1114,1033,1035,1034,42,1033,1032,1030,1,1116,1115,1113,1036,1035,1033,42,1034,1032,1033,1,1117,1115,1116,1037,1035,1036,42,1019,1032,1034,1,1102,1115,1117,1022,1035,1037,42,1019,1020,1032,1,1102,1103,1115,1022,1023,1035,42,1032,1020,1035,1,1115,1103,1118,1035,1023,1038,42,1020,1024,1035,1,1103,1107,1118,1023,1027,1038,42,1021,1024,1020,1,1104,1107,1103,1024,1027,1023,42,1035,1024,1025,1,1118,1107,1108,1038,1027,1028,42,1031,1035,1025,1,1114,1118,1108,1034,1038,1028,42,1031,1032,1035,1,1114,1115,1118,1034,1035,1038,42,1031,1025,1028,1,1114,1108,1111,1034,1028,1031,42,1028,1025,1026,1,1111,1108,1109,1031,1028,1029,42,1036,1019,1034,1,1119,1102,1117,1039,1022,1037,42,1037,1019,1036,1,1120,1102,1119,1040,1022,1039,42,1037,1016,1019,1,1120,1099,1102,1040,1019,1022,42,1038,1016,1037,1,1121,1099,1120,1041,1019,1040,42,1038,1015,1016,1,1121,1098,1099,1041,1018,1019,42,1014,1015,1038,1,1097,1098,1121,1017,1018,1041,42,1039,1014,1038,1,1122,1097,1121,1042,1017,1041,42,1040,1014,1039,1,1123,1097,1122,1043,1017,1042,42,1005,1014,1040,1,1088,1097,1123,1008,1017,1043,42,1003,1005,1040,1,1086,1088,1123,1006,1008,1043,42,1004,1005,1003,1,1087,1088,1086,1007,1008,1006,42,1003,1040,1041,1,1086,1123,1124,1006,1043,1044,42,1040,1042,1041,1,1123,1125,1124,1043,1045,1044,42,1040,1039,1042,1,1123,1122,1125,1043,1042,1045,42,1039,1043,1042,1,1122,1126,1125,1042,1046,1045,42,1038,1044,1039,1,1121,1127,1122,1041,1047,1042,42,1044,1038,1037,1,1127,1121,1120,1047,1041,1040,42,1044,1037,1036,1,1127,1120,1119,1047,1040,1039,42,1045,1044,1036,1,1128,1127,1119,1048,1047,1039,42,1044,1045,1043,1,1127,1128,1126,1047,1048,1046,42,1046,1043,1045,1,1129,1126,1128,1049,1046,1048,42,1042,1043,1046,1,1125,1126,1129,1045,1046,1049,42,1047,1042,1046,1,1130,1125,1129,1050,1045,1049,42,1047,1041,1042,1,1130,1124,1125,1050,1044,1045,42,1048,1041,1047,1,1131,1124,1130,1051,1044,1050,42,1048,1049,1041,1,1131,1132,1124,1051,1052,1044,42,1050,1049,1048,1,1133,1132,1131,1053,1052,1051,42,1050,1002,1049,1,1133,1085,1132,1053,1005,1052,42,1050,1001,1002,1,1133,1084,1085,1053,1004,1005,42,1051,1001,1050,1,1134,1084,1133,1054,1004,1053,42,1051,1052,1001,1,1134,1135,1084,1054,1055,1004,42,1051,1053,1052,1,1134,1136,1135,1054,1056,1055,42,604,1053,1051,1,698,1136,1134,607,1056,1054,42,604,605,1053,1,698,699,1136,607,608,1056,42,605,999,1053,1,699,1082,1136,608,1002,1056,42,605,608,999,1,699,702,1082,608,611,1002,42,999,1052,1053,1,1082,1135,1136,1002,1055,1056,42,1052,999,1000,1,1135,1082,1083,1055,1002,1003,42,1052,1000,1001,1,1135,1083,1084,1055,1003,1004,42,604,1051,1054,1,698,1134,1137,607,1054,1057,42,1054,1051,1050,1,1137,1134,1133,1057,1054,1053,42,1054,1050,1048,1,1137,1133,1131,1057,1053,1051,42,1054,1048,1055,1,1137,1131,1138,1057,1051,1058,42,1055,1048,1056,1,1138,1131,1139,1058,1051,1059,42,1048,1047,1056,1,1131,1130,1139,1051,1050,1059,42,1056,1047,1057,1,1139,1130,1140,1059,1050,1060,42,1057,1047,1058,1,1140,1130,1141,1060,1050,1061,42,1047,1059,1058,1,1130,1142,1141,1050,1062,1061,42,1047,1060,1059,1,1130,1143,1142,1050,1063,1062,42,1047,1046,1060,1,1130,1129,1143,1050,1049,1063,42,1046,1045,1060,1,1129,1128,1143,1049,1048,1063,42,1060,1045,1033,1,1143,1128,1116,1063,1048,1036,42,1045,1034,1033,1,1128,1117,1116,1048,1037,1036,42,1036,1034,1045,1,1119,1117,1128,1039,1037,1048,42,1060,1033,1059,1,1143,1116,1142,1063,1036,1062,42,1033,1029,1059,1,1116,1112,1142,1036,1032,1062,42,1033,1030,1029,1,1116,1113,1112,1036,1033,1032,42,1059,1029,1027,1,1142,1112,1110,1062,1032,1030,42,1059,1027,1058,1,1142,1110,1141,1062,1030,1061,42,1058,1027,1061,1,1141,1110,1144,1061,1030,1064,42,1027,976,1061,1,1110,1059,1144,1030,979,1064,42,1061,976,1062,1,1144,1059,1145,1064,979,1065,42,976,975,1062,1,1059,1058,1145,979,978,1065,42,1062,975,1063,1,1145,1058,1146,1065,978,1066,42,975,1064,1063,1,1058,1147,1146,978,1067,1066,42,975,974,1064,1,1058,1057,1147,978,977,1067,42,974,973,1064,1,1057,1056,1147,977,976,1067,42,1064,973,972,1,1147,1056,1055,1067,976,975,42,1063,1064,972,1,1146,1147,1055,1066,1067,975,42,1063,972,573,1,1146,1055,657,1066,975,576,42,573,972,1065,1,657,1055,1148,576,975,1068,42,972,970,1065,1,1055,1053,1148,975,973,1068,42,1065,970,969,1,1148,1053,1052,1068,973,972,42,1065,969,1066,1,1148,1052,1149,1068,972,1069,42,1066,969,1067,1,1149,1052,1150,1069,972,1070,42,969,1068,1067,1,1052,1151,1150,972,1071,1070,42,969,560,1068,1,1052,644,1151,972,563,1071,42,560,561,1068,1,644,645,1151,563,564,1071,42,1068,561,562,1,1151,645,646,1071,564,565,42,1067,1068,562,1,1150,1151,646,1070,1071,565,42,1067,562,1069,1,1150,646,1152,1070,565,1072,42,562,563,1069,1,646,647,1152,565,566,1072,42,563,564,1069,1,647,648,1152,566,567,1072,42,1069,564,567,1,1152,648,651,1072,567,570,42,564,566,567,1,648,650,651,567,569,570,42,564,565,566,1,648,649,650,567,568,569,42,568,1069,567,1,652,1152,651,571,1072,570,42,568,1070,1069,1,652,1153,1152,571,1073,1072,42,569,1070,568,1,653,1153,652,572,1073,571,42,569,570,1070,1,653,654,1153,572,573,1073,42,570,1066,1070,1,654,1149,1153,573,1069,1073,42,570,571,1066,1,654,655,1149,573,574,1069,42,571,1065,1066,1,655,1148,1149,574,1068,1069,42,571,573,1065,1,655,657,1148,574,576,1068,42,1066,1067,1070,1,1149,1150,1153,1069,1070,1073,42,1067,1069,1070,1,1150,1152,1153,1070,1072,1073,42,574,1063,573,1,658,1146,657,577,1066,576,42,1062,1063,574,1,1145,1146,658,1065,1066,577,42,575,1062,574,1,659,1145,658,578,1065,577,42,1061,1062,575,1,1144,1145,659,1064,1065,578,42,1071,1061,575,1,1154,1144,659,1074,1064,578,42,1058,1061,1071,1,1141,1144,1154,1061,1064,1074,42,1057,1058,1071,1,1140,1141,1154,1060,1061,1074,42,1072,1057,1071,1,1155,1140,1154,1075,1060,1074,42,1072,1055,1057,1,1155,1138,1140,1075,1058,1060,42,579,1055,1072,1,663,1138,1155,582,1058,1075,42,579,1054,1055,1,663,1137,1138,582,1057,1058,42,580,1054,579,1,664,1137,663,583,1057,582,42,604,1054,580,1,698,1137,664,607,1057,583,42,582,604,580,1,666,698,664,585,607,583,42,579,1072,577,1,663,1155,661,582,1075,580,42,577,1072,575,1,661,1155,659,580,1075,578,42,1072,1071,575,1,1155,1154,659,1075,1074,578,42,1055,1056,1057,1,1138,1139,1140,1058,1059,1060,42,1049,1002,1003,1,1132,1085,1086,1052,1005,1006,42,1049,1003,1041,1,1132,1086,1124,1052,1006,1044,42,908,909,985,1,990,991,1068,911,912,988,42,985,909,910,1,1068,991,992,988,912,913,42,985,910,983,1,1068,992,1066,988,913,986,42,983,910,911,1,1066,992,993,986,913,914,42,983,911,981,1,1066,993,1064,986,914,984,42,981,911,978,1,1064,993,1061,984,914,981,42,978,911,912,1,1061,993,994,981,914,915,42,915,916,971,1,997,998,1054,918,919,974,42,559,560,968,1,643,644,1051,1076,1076,1076,42,918,919,922,1,1000,1001,1004,921,922,925,42,919,920,922,1,1001,1002,1004,922,923,925,42,920,921,922,1,1002,1003,1004,923,924,925,42,942,943,949,1,1024,1025,1031,945,946,952,42,945,937,1073,1,1027,1019,1156,948,940,1077,42,1073,937,935,1,1156,1019,1017,1077,940,938,42,931,932,936,1,1013,1014,1018,934,935,939,42,936,932,933,1,1018,1014,1015,939,935,936,42,934,707,1074,1,1016,789,1157,937,710,1078,42,1074,707,706,1,1157,789,788,1078,710,709,42,1074,706,1075,1,1157,788,1158,1079,1079,1079,42,1075,706,705,1,1158,788,787,1080,709,708,42,1076,1075,705,1,1159,1158,787,1081,1080,708,42,705,934,1076,1,787,1160,1159,708,937,1081,42,705,703,934,1,787,785,1160,708,706,937,42,705,704,703,1,787,786,785,708,707,706,42,934,703,701,1,1160,785,783,937,706,704,42,934,701,1077,1,1160,783,1161,937,704,1082,42,1078,1077,701,1,1162,1161,783,1083,1082,704,42,1078,1079,1077,1,1162,1163,1161,1083,1084,1082,42,1080,1079,1078,1,1164,1163,1162,1085,1084,1083,42,1080,1078,1081,1,1164,1162,1165,1085,1083,1086,42,1081,1078,700,1,1165,1162,782,1086,1083,703,42,1078,701,700,1,1162,783,782,1083,704,703,42,1081,700,1082,1,1165,782,1166,1086,703,1087,42,1082,700,699,1,1166,782,781,1087,703,702,42,1083,1082,699,1,1167,1166,781,1088,1087,702,42,1081,1082,1083,1,1165,1166,1167,1086,1087,1088,42,1084,1081,1083,1,1168,1165,1167,1089,1086,1088,42,1084,1080,1081,1,1168,1164,1165,1089,1085,1086,42,1085,1080,1084,1,1169,1164,1168,1090,1085,1089,42,1086,1085,1084,1,1170,1169,1168,1091,1090,1089,42,557,1085,1086,1,641,1169,1170,560,1090,1091,42,557,1086,1087,1,641,1170,1171,560,1091,1092,42,1086,1084,1087,1,1170,1168,1171,1091,1089,1092,42,1084,1083,1087,1,1168,1167,1171,1089,1088,1092,42,1087,1083,551,1,1171,1167,635,1092,1088,554,42,1083,1088,551,1,1167,1172,635,1088,1093,554,42,1083,699,1088,1,1167,781,1172,1088,702,1093,42,548,1088,699,1,632,1172,781,551,1093,702,42,551,1088,548,1,635,1172,632,554,1093,551,42,548,699,546,1,632,781,630,551,702,549,42,546,699,695,1,630,781,777,549,702,698,42,546,695,545,1,630,777,629,549,698,548,42,1087,551,552,1,1171,635,636,1092,554,555,42,556,1087,552,1,640,1171,636,559,1092,555,42,556,557,1087,1,640,641,1171,559,560,1092,42,556,552,554,1,640,636,638,559,555,557,42,1079,934,1077,1,1163,1160,1161,1084,937,1082,42,777,778,783,1,859,860,865,780,781,786,42,784,848,849,1,866,930,931,787,851,852,42,848,784,785,1,930,866,867,851,787,788,42,785,794,848,1,867,876,930,788,797,851,42,870,863,868,1,952,945,950,873,866,871,42,863,864,868,1,945,946,950,866,867,871,42,868,864,865,1,950,946,947,871,867,868,42,837,829,830,1,919,911,912,840,832,833,42,716,714,819,1,798,796,901,719,717,822,42,716,819,816,1,798,901,898,719,822,819,42,815,716,816,1,897,798,898,818,719,819,42,807,716,815,1,889,798,897,810,719,818,42,738,1089,767,1,820,1173,849,741,1094,770,42,1091,1089,1090,1,1174,1173,1175,1095,1094,1096,42,1092,1089,1091,1,1176,1173,1174,1097,1094,1095,42,1093,1089,1092,1,1177,1173,1176,1098,1094,1097,42,767,1089,1093,1,849,1173,1177,770,1094,1098,42,764,767,1093,1,846,849,1177,767,770,1098,42,764,1093,760,1,846,1177,842,767,1098,763,42,760,1093,1094,1,842,1177,1178,763,1098,1099,42,1094,1093,1092,1,1178,1177,1176,1099,1098,1097,42,753,1094,1092,1,835,1178,1176,756,1099,1097,42,755,1094,753,1,837,1178,835,758,1099,756,42,755,757,1094,1,837,839,1178,758,760,1099,42,760,1094,757,1,842,1178,839,763,1099,760,42,753,1092,752,1,835,1176,834,756,1097,755,42,752,1092,1091,1,834,1176,1174,755,1097,1095,42,752,1091,1095,1,834,1174,1179,755,1095,1100,42,1095,1091,1090,1,1179,1174,1175,1100,1095,1096,42,1095,1090,1096,1,1179,1175,1180,1100,1096,1101,42,1096,1090,738,1,1180,1175,820,1101,1096,741,42,739,1096,738,1,821,1180,820,742,1101,741,42,1097,1096,739,1,1181,1180,821,1102,1101,742,42,1097,1095,1096,1,1181,1179,1180,1102,1100,1101,42,749,1095,1097,1,831,1179,1181,752,1100,1102,42,750,1095,749,1,832,1179,831,753,1100,752,42,750,752,1095,1,832,834,1179,753,755,1100,42,749,1097,747,1,831,1181,829,752,1102,750,42,1097,1098,747,1,1181,1182,829,1102,1103,750,42,1097,740,1098,1,1181,822,1182,1102,743,1103,42,739,740,1097,1,821,822,1181,742,743,1102,42,1098,740,741,1,1182,822,823,1103,743,744,42,1098,741,1099,1,1182,823,1183,1103,744,1104,42,1099,741,742,1,1183,823,824,1104,744,745,42,1099,742,745,1,1183,824,827,1104,745,748,42,745,747,1099,1,827,829,1183,748,750,1104,42,1098,1099,747,1,1182,1183,829,1103,1104,750,42,762,764,760,1,844,846,842,765,767,763,42,688,689,734,1,770,771,816,691,692,737,42,734,689,1100,1,816,771,1184,737,692,1105,42,1100,689,1101,1,1184,771,1185,1105,692,1106,42,1101,689,690,1,1185,771,772,1106,692,693,42,1101,690,708,1,1185,772,790,1106,693,711,42,710,1101,708,1,792,1185,790,713,1106,711,42,713,1101,710,1,795,1185,792,716,1106,713,42,713,1102,1101,1,795,1186,1185,716,1107,1106,42,715,1102,713,1,797,1186,795,718,1107,716,42,715,718,1102,1,797,800,1186,718,721,1107,42,718,1100,1102,1,800,1184,1186,721,1105,1107,42,1103,1100,718,1,1187,1184,800,1108,1105,721,42,1104,1100,1103,1,1188,1184,1187,1109,1105,1108,42,1104,734,1100,1,1188,816,1184,1109,737,1105,42,732,734,1104,1,814,816,1188,735,737,1109,42,732,1104,731,1,814,1188,813,735,1109,734,42,721,731,1104,1,803,813,1188,724,734,1109,42,723,731,721,1,805,813,803,726,734,724,42,727,731,723,1,809,813,805,730,734,726,42,721,1104,1103,1,803,1188,1187,724,1109,1108,42,721,1103,719,1,803,1187,801,724,1108,722,42,719,1103,718,1,801,1187,800,722,1108,721,42,1100,1101,1102,1,1184,1185,1186,1105,1106,1107,42,686,628,630,1,768,722,724,689,631,633,42,1105,686,630,1,557,559,558,1110,689,633,42,1106,686,1105,1,563,559,557,1111,689,1110,42,1106,1107,686,1,563,564,559,1111,1112,689,42,1108,1107,1106,1,567,564,563,1113,1112,1111,42,1107,1108,1109,1,564,567,566,1112,1113,1114,42,1109,1108,643,1,566,567,589,1114,1113,646,42,1108,642,643,1,567,568,589,1113,645,646,42,642,1108,1106,1,568,567,563,645,1113,1111,42,642,1106,1110,1,568,563,562,645,1111,1115,42,1110,1106,1105,1,562,563,557,1115,1111,1110,42,1110,1105,1111,1,562,557,561,1115,1110,1116,42,1111,1105,633,1,561,557,560,1116,1110,636,42,1105,630,633,1,557,558,560,1110,633,636,42,630,632,633,1,558,695,560,633,635,636,42,637,1111,633,1,570,561,560,640,1116,636,42,637,1110,1111,1,570,562,561,640,1115,1116,42,639,1110,637,1,569,562,570,642,1115,640,42,639,642,1110,1,569,568,562,642,645,1115,42,637,633,634,1,570,560,696,640,636,637,42,643,685,1109,1,589,565,566,646,688,1114,42,685,643,645,1,565,589,590,688,646,648,42,1109,685,1107,1,566,565,564,1114,688,1112,42,685,686,1107,1,565,559,564,688,689,1112,42,649,650,680,1,729,731,761,652,653,683,42,680,650,679,1,761,731,760,683,653,682,42,650,651,679,1,731,732,760,653,654,682,42,651,666,679,1,732,747,760,654,669,682,42,652,666,651,1,733,747,732,655,669,654,42,668,676,667,1,749,757,748,671,679,670,42,676,668,673,1,757,749,754,679,671,676,42,668,669,673,1,749,750,754,671,672,676,42,542,544,661,1,626,628,742,545,547,664,42,542,661,660,1,626,742,741,545,664,663,42,542,660,540,1,626,741,624,545,663,543,42,540,660,538,1,624,741,622,543,663,541,42,534,535,533,1,618,619,614,537,538,536,42,498,644,1112,1,524,605,606,533,647,1117,42,1112,644,641,1,683,685,588,1117,647,644,42,1112,641,1113,1,683,588,684,1117,644,1118,42,641,640,1113,1,588,587,684,644,643,1118,42,1114,1113,640,1,583,684,587,1119,1118,643,42,1112,1113,1114,1,683,684,583,1117,1118,1119,42,1115,1112,1114,1,582,683,583,1120,1117,1119,42,1116,1112,1115,1,1189,1190,1191,1121,1117,1120,42,1117,1112,1116,1,527,606,607,1122,1117,1121,42,1117,498,1112,1,527,524,606,1122,533,1117,42,497,498,1117,1,526,524,527,532,533,1122,42,497,1117,1118,1,526,527,528,532,1122,1123,42,1118,1117,1116,1,528,527,607,1123,1122,1121,42,1118,1116,1119,1,528,607,608,1123,1121,1124,42,1119,1116,1120,1,608,607,669,1124,1121,1125,42,1120,1116,1121,1,1192,1193,1194,1125,1121,1126,42,1116,1122,1121,1,1189,1195,1196,1121,1127,1126,42,1116,1115,1122,1,1189,1191,1195,1121,1120,1127,42,1115,1123,1122,1,582,580,681,1120,1128,1127,42,1123,1115,1124,1,580,582,581,1128,1120,1129,42,1115,1114,1124,1,582,583,581,1120,1119,1129,42,1124,1114,1125,1,581,583,584,1129,1119,1130,42,1125,1114,1126,1,584,583,586,1130,1119,1131,42,1114,640,1126,1,583,587,586,1119,643,1131,42,1126,640,638,1,586,587,571,1131,643,641,42,1126,638,1125,1,586,571,584,1131,641,1130,42,1125,638,1127,1,584,571,585,1130,641,1132,42,1127,638,1128,1,585,571,573,1132,641,1133,42,638,636,1128,1,571,572,573,641,639,1133,42,636,635,1128,1,572,574,573,639,638,1133,42,1128,635,1129,1,573,574,575,1133,638,1134,42,635,1130,1129,1,574,675,575,638,1135,1134,42,635,629,1130,1,574,676,675,638,632,1135,42,635,631,629,1,574,694,676,638,634,632,42,1130,629,627,1,1197,723,721,1135,632,630,42,1130,627,624,1,1197,721,718,1135,630,627,42,1131,1130,624,1,1198,1197,718,1136,1135,627,42,1131,1132,1130,1,693,677,675,1136,1137,1135,42,1131,1133,1132,1,693,692,677,1136,1138,1137,42,1131,1122,1133,1,693,681,692,1136,1127,1138,42,1122,1131,1121,1,1195,1198,1196,1127,1136,1126,42,1131,624,1121,1,1198,718,1196,1136,627,1126,42,1121,624,622,1,1196,718,716,1126,627,625,42,1121,622,1134,1,1196,716,1199,1126,625,1139,42,1134,622,620,1,1199,716,714,1139,625,623,42,1120,1121,1134,1,1192,1194,1200,1125,1126,1139,42,1122,1135,1133,1,681,691,692,1127,1140,1138,42,1136,1135,1122,1,680,691,681,1141,1140,1127,42,1135,1136,1137,1,691,680,679,1140,1141,1142,42,1137,1136,1138,1,679,680,579,1142,1141,1143,42,1123,1138,1136,1,580,579,680,1128,1143,1141,42,1123,1139,1138,1,580,578,579,1128,1144,1143,42,1124,1139,1123,1,581,578,580,1129,1144,1128,42,1139,1124,1125,1,578,581,584,1144,1129,1130,42,1125,1140,1139,1,584,577,578,1130,1145,1144,42,1125,1127,1140,1,584,585,577,1130,1132,1145,42,1127,1128,1140,1,585,573,577,1132,1133,1145,42,1128,1141,1140,1,573,576,577,1133,1146,1145,42,1129,1141,1128,1,575,576,573,1134,1146,1133,42,1141,1129,1142,1,576,575,678,1146,1134,1147,42,1129,1132,1142,1,575,677,678,1134,1137,1147,42,1129,1130,1132,1,575,675,677,1134,1135,1137,42,1133,1142,1132,1,692,678,677,1138,1147,1137,42,1135,1142,1133,1,691,678,692,1140,1147,1138,42,1135,1137,1142,1,691,679,678,1140,1142,1147,42,1141,1142,1137,1,576,678,679,1146,1147,1142,42,1138,1141,1137,1,579,576,679,1143,1146,1142,42,1139,1141,1138,1,578,576,579,1144,1146,1143,42,1139,1140,1141,1,578,577,576,1144,1145,1146,42,1123,1136,1122,1,580,680,681,1128,1141,1127,42,1143,1118,1119,1,609,528,608,1148,1123,1124,42,1143,1144,1118,1,609,529,528,1148,1149,1123,42,491,1144,1143,1,610,529,609,526,1149,1148,42,491,492,1144,1,610,611,529,526,527,1149,42,492,493,1144,1,611,612,529,527,528,1149,42,1144,493,494,1,529,612,530,1149,528,529,42,1144,494,497,1,529,530,526,1149,529,532,42,1144,497,1118,1,529,526,528,1149,532,1123,42,412,413,530,1,1201,536,1202,396,460,438,42,1043,1039,1044,2,1203,1204,1205,1046,1042,1047,42,1090,1089,738,2,1206,1207,1208,1096,1094,741,42,1148,1149,1150,0,1209,1210,1211,1150,1151,1152,42,1148,1151,1149,0,1209,1212,1210,1150,1153,1151,42,1151,1148,1152,0,1212,1209,1213,1153,1150,1154,42,1152,1153,1151,0,1213,1214,1212,1154,1155,1153,42,1155,1156,1154,0,1215,1216,1217,1156,1157,1158,42,1157,1156,1155,0,1218,1216,1215,1159,1157,1156,42,1157,1158,1156,0,1218,1219,1216,1159,1160,1157,42,1159,1158,1157,0,1220,1219,1218,1161,1160,1159,42,1160,1158,1159,0,1221,1219,1220,1162,1160,1161,42,1160,1161,1158,0,1221,1222,1219,1162,1163,1160,42,1160,1162,1161,0,1221,1223,1222,1162,1164,1163,42,1163,1162,1160,0,1224,1223,1221,1165,1164,1162,42,1163,1164,1162,0,1224,1225,1223,1165,1166,1164,42,1165,1164,1163,0,1226,1225,1224,1167,1166,1165,42,1166,1164,1165,0,1227,1225,1226,1168,1166,1167,42,1166,1167,1164,0,1227,1228,1225,1168,1169,1166,42,1166,1168,1167,0,1227,1229,1228,1168,1170,1169,42,1169,1168,1166,0,1230,1229,1227,1171,1170,1168,42,1169,1170,1168,0,1230,1231,1229,1171,1172,1170,42,1171,1170,1169,0,1232,1231,1230,1173,1172,1171,42,1171,1172,1170,0,1232,1233,1231,1173,1174,1172,42,1173,1172,1171,0,1234,1233,1232,1175,1174,1173,42,1174,1172,1173,0,1235,1233,1234,1176,1174,1175,42,1174,1175,1172,0,1235,1236,1233,1176,1177,1174,42,1176,1175,1174,0,1237,1236,1235,1178,1177,1176,42,1176,1177,1175,0,1237,1238,1236,1178,1179,1177,42,1178,1177,1176,0,1239,1238,1237,1180,1179,1178,42,1178,1179,1177,0,1239,1240,1238,1180,1181,1179,42,1180,1179,1178,0,1241,1240,1239,1182,1181,1180,42,1180,1181,1179,0,1241,1242,1240,1182,1183,1181,42,1182,1181,1180,0,1243,1242,1241,1184,1183,1182,42,1181,1182,1183,0,1242,1243,1244,1183,1184,1185,42,1183,1182,1184,0,1244,1243,1245,1185,1184,1186,42,1182,1185,1184,0,1243,1246,1245,1184,1187,1186,42,1186,1185,1182,0,1247,1246,1243,1188,1187,1184,42,1186,1187,1185,0,1247,1248,1246,1188,1189,1187,42,1186,1188,1187,0,1247,1249,1248,1188,1190,1189,42,1189,1188,1186,0,1250,1249,1247,1191,1190,1188,42,1189,1190,1188,0,1250,1251,1249,1191,1192,1190,42,1189,1191,1190,0,1252,1253,1254,1191,1193,1192,42,1192,1191,1189,0,1255,1253,1252,1194,1193,1191,42,1192,1193,1191,0,1255,1256,1253,1194,1195,1193,42,1194,1193,1192,0,1257,1256,1255,1196,1195,1194,42,1195,1193,1194,0,1258,1256,1257,1197,1195,1196,42,1195,1196,1193,0,1258,1259,1256,1197,1198,1195,42,1197,1196,1195,0,1260,1259,1258,1199,1198,1197,42,1197,1198,1196,0,1260,1261,1259,1199,1200,1198,42,1197,1199,1198,0,1260,1262,1261,1199,1201,1200,42,1197,1200,1199,0,1260,1263,1262,1199,1202,1201,42,1201,1200,1197,0,1264,1263,1260,1203,1202,1199,42,1202,1200,1201,0,1265,1263,1264,1204,1202,1203,42,1200,1202,1203,0,1263,1265,1266,1202,1204,1205,42,1202,1204,1203,0,1265,1267,1266,1204,1206,1205,42,1205,1204,1202,0,1268,1269,1270,1207,1206,1204,42,1205,1206,1204,0,1268,1271,1269,1207,1208,1206,42,1207,1206,1205,0,1272,1271,1268,1209,1208,1207,42,1207,1208,1206,0,1272,1273,1271,1209,1210,1208,42,1207,1209,1208,0,1272,1274,1273,1209,1211,1210,42,1210,1209,1207,0,1275,1274,1272,1212,1211,1209,42,1211,1209,1210,0,1276,1274,1275,1213,1211,1212,42,1211,1212,1209,0,1276,1277,1274,1213,1214,1211,42,1213,1212,1211,0,1278,1277,1276,1215,1214,1213,42,1214,1212,1213,0,1279,1277,1278,1216,1214,1215,42,1214,1215,1212,0,1279,1280,1277,1216,1217,1214,42,1214,1216,1215,0,1279,1281,1280,1216,1218,1217,42,1217,1216,1214,0,1282,1281,1279,1219,1218,1216,42,1218,1216,1217,0,1283,1284,1285,1220,1218,1219,42,1218,1219,1216,0,1283,1286,1284,1220,1221,1218,42,1220,1219,1218,0,1287,1286,1283,1222,1221,1220,42,1220,1221,1219,0,1287,1288,1286,1222,1223,1221,42,1220,1222,1221,0,1287,1289,1288,1222,1224,1223,42,1220,1223,1222,0,1287,1290,1289,1222,1225,1224,42,1224,1223,1220,0,1291,1290,1287,1226,1225,1222,42,1224,1225,1223,0,1291,1292,1290,1226,1227,1225,42,1224,1226,1225,0,1291,1293,1292,1226,1228,1227,42,1227,1226,1224,0,1294,1293,1291,1229,1228,1226,42,1227,1228,1226,0,1294,1295,1293,1229,1230,1228,42,1229,1228,1227,0,1296,1295,1294,1231,1230,1229,42,1229,1230,1228,0,1296,1297,1295,1231,1232,1230,42,1229,1231,1230,0,1296,1298,1297,1231,1233,1232,42,1229,1232,1231,0,1296,1299,1298,1231,1234,1233,42,1233,1232,1229,0,1300,1299,1296,1235,1234,1231,42,1234,1232,1233,0,1301,1299,1300,1236,1234,1235,42,1234,1235,1232,0,1301,1302,1299,1236,1237,1234,42,1234,1236,1235,0,1301,1303,1302,1236,1238,1237,42,1234,1237,1236,0,1301,1304,1303,1236,1239,1238,42,1237,1234,1238,0,1304,1301,1305,1239,1236,1240,42,1239,1238,1234,0,1306,1305,1301,1241,1240,1236,42,1238,1239,1240,0,1305,1306,1307,1240,1241,1242,42,1239,1241,1240,0,1306,1308,1307,1241,1243,1242,42,1239,1234,1241,0,1306,1301,1308,1241,1236,1243,42,1241,1234,1233,0,1308,1301,1300,1243,1236,1235,42,1241,1233,1229,0,1308,1300,1296,1243,1235,1231,42,1241,1229,1242,0,1308,1296,1309,1243,1231,1244,42,1242,1229,1227,0,1309,1296,1294,1244,1231,1229,42,1242,1227,1243,0,1309,1294,1310,1244,1229,1245,42,1243,1227,1244,0,1310,1294,1311,1245,1229,1246,42,1227,1245,1244,0,1294,1312,1311,1229,1247,1246,42,1227,1224,1245,0,1294,1291,1312,1229,1226,1247,42,1245,1224,1220,0,1312,1291,1287,1247,1226,1222,42,1245,1220,1246,0,1312,1287,1313,1247,1222,1248,42,1220,1218,1246,0,1287,1283,1313,1222,1220,1248,42,1246,1218,1217,0,1313,1283,1285,1248,1220,1219,42,1246,1217,1247,0,1313,1285,1314,1248,1219,1249,42,1247,1217,1214,0,1315,1282,1279,1249,1219,1216,42,1247,1214,1248,0,1315,1279,1316,1249,1216,1250,42,1248,1214,1249,0,1316,1279,1317,1250,1216,1251,42,1249,1214,1213,0,1317,1279,1278,1251,1216,1215,42,1249,1213,1211,0,1317,1278,1276,1251,1215,1213,42,1250,1249,1211,0,1318,1317,1276,1252,1251,1213,42,1250,1251,1249,0,1318,1319,1317,1252,1253,1251,42,1252,1251,1250,0,1320,1319,1318,1254,1253,1252,42,1253,1251,1252,0,1321,1319,1320,1255,1253,1254,42,1253,1254,1251,0,1321,1322,1319,1255,1256,1253,42,1253,1255,1254,0,1321,1323,1322,1255,1257,1256,42,1256,1255,1253,0,1324,1323,1321,1258,1257,1255,42,1256,1257,1255,0,1324,1325,1323,1258,1259,1257,42,1232,1257,1256,0,1299,1325,1324,1260,1260,1260,42,1235,1257,1232,0,1302,1325,1299,1237,1259,1234,42,1235,1236,1257,0,1302,1303,1325,1237,1238,1259,42,1257,1236,1258,0,1325,1303,1326,1259,1238,1261,42,1236,1259,1258,0,1303,1327,1326,1238,1262,1261,42,1236,1260,1259,0,1303,1328,1327,1238,1263,1262,42,1236,1261,1260,0,1303,1329,1328,1238,1264,1263,42,1237,1261,1236,0,1304,1329,1303,1239,1264,1238,42,1261,1237,1238,0,1329,1304,1305,1264,1239,1240,42,1261,1238,1262,0,1329,1305,1330,1264,1240,1265,42,1262,1238,1263,0,1330,1305,1331,1265,1240,1266,42,1238,1240,1263,0,1305,1307,1331,1240,1242,1266,42,1240,1264,1263,0,1307,1332,1331,1242,1267,1266,42,1264,1240,1265,0,1332,1307,1333,1267,1242,1268,42,1240,1266,1265,0,1307,1334,1333,1242,1269,1268,42,1240,1267,1266,0,1307,1335,1334,1242,1270,1269,42,1240,1241,1267,0,1307,1308,1335,1242,1243,1270,42,1241,1243,1267,0,1308,1310,1335,1243,1245,1270,42,1241,1242,1243,0,1308,1309,1310,1243,1244,1245,42,1267,1243,1268,0,1335,1310,1336,1270,1245,1271,42,1268,1243,1269,0,1336,1310,1337,1271,1245,1272,42,1243,1244,1269,0,1310,1311,1337,1245,1246,1272,42,1244,1245,1269,0,1311,1312,1337,1246,1247,1272,42,1245,1246,1269,0,1312,1313,1337,1247,1248,1272,42,1269,1246,1247,0,1337,1313,1314,1272,1248,1249,42,1269,1247,1270,0,1337,1314,1338,1272,1249,1273,42,1270,1247,1248,0,1339,1315,1316,1273,1249,1250,42,1270,1248,1271,0,1339,1316,1340,1273,1250,1274,42,1271,1248,1251,0,1340,1316,1319,1274,1250,1253,42,1251,1248,1249,0,1319,1316,1317,1253,1250,1251,42,1272,1271,1251,0,1341,1340,1319,1275,1274,1253,42,1272,1270,1271,0,1341,1339,1340,1275,1273,1274,42,1273,1270,1272,0,1342,1339,1341,1276,1273,1275,42,1273,1269,1270,0,1343,1337,1338,1276,1272,1273,42,1268,1269,1273,0,1336,1337,1343,1271,1272,1276,42,1268,1273,1274,0,1336,1343,1344,1271,1276,1277,42,1274,1273,1272,0,1345,1342,1341,1277,1276,1275,42,1274,1272,1275,0,1345,1341,1346,1277,1275,1278,42,1255,1275,1272,0,1323,1346,1341,1257,1278,1275,42,1275,1255,1276,0,1346,1323,1347,1278,1257,1279,42,1255,1277,1276,0,1323,1348,1347,1257,1280,1279,42,1255,1257,1277,0,1323,1325,1348,1257,1259,1280,42,1278,1277,1257,0,1349,1348,1325,1281,1280,1259,42,1277,1278,1276,0,1348,1349,1347,1280,1281,1279,42,1278,1279,1276,0,1349,1350,1347,1281,1282,1279,42,1278,1280,1279,0,1349,1351,1350,1281,1283,1282,42,1281,1280,1278,0,1352,1351,1349,1284,1283,1281,42,1282,1280,1281,0,1353,1351,1352,1285,1283,1284,42,1282,1283,1280,0,1353,1354,1351,1285,1286,1283,42,1280,1283,1284,0,1351,1354,1355,1283,1286,1287,42,1285,1280,1284,0,1356,1351,1355,1288,1283,1287,42,1286,1280,1285,0,1357,1351,1356,1289,1283,1288,42,1286,1279,1280,0,1357,1350,1351,1289,1282,1283,42,1276,1279,1286,0,1347,1350,1357,1279,1282,1289,42,1287,1276,1286,0,1358,1347,1357,1290,1279,1289,42,1275,1276,1287,0,1346,1347,1358,1278,1279,1290,42,1274,1275,1287,0,1345,1346,1358,1277,1278,1290,42,1265,1274,1287,0,1333,1344,1359,1268,1277,1290,42,1265,1266,1274,0,1333,1334,1344,1268,1269,1277,42,1266,1268,1274,0,1334,1336,1344,1269,1271,1277,42,1266,1267,1268,0,1334,1335,1336,1269,1270,1271,42,1265,1287,1264,0,1333,1359,1332,1268,1290,1267,42,1287,1286,1264,0,1359,1360,1332,1290,1289,1267,42,1264,1286,1288,0,1332,1360,1361,1267,1289,1291,42,1286,1285,1288,0,1360,1362,1361,1289,1288,1291,42,1288,1285,1284,0,1361,1362,1363,1291,1288,1287,42,1288,1284,1289,0,1361,1363,1364,1291,1287,1292,42,1288,1289,1290,0,1361,1364,1365,1291,1292,1293,42,1291,1288,1290,0,1366,1361,1365,1294,1291,1293,42,1263,1288,1291,0,1331,1361,1366,1266,1291,1294,42,1263,1264,1288,0,1331,1332,1361,1266,1267,1291,42,1262,1263,1291,0,1330,1331,1366,1265,1266,1294,42,1292,1262,1291,0,1367,1330,1366,1295,1265,1294,42,1261,1262,1292,0,1329,1330,1367,1264,1265,1295,42,1293,1261,1292,0,1368,1329,1367,1296,1264,1295,42,1261,1293,1260,0,1329,1368,1328,1264,1296,1263,42,1260,1293,1294,0,1328,1368,1369,1263,1296,1297,42,1260,1294,1259,0,1328,1369,1327,1263,1297,1262,42,1259,1294,1295,0,1327,1369,1370,1262,1297,1298,42,1295,1281,1259,0,1370,1352,1327,1298,1284,1262,42,1295,1282,1281,0,1370,1353,1352,1298,1285,1284,42,1259,1281,1278,0,1327,1352,1349,1262,1284,1281,42,1259,1278,1258,0,1327,1349,1326,1262,1281,1261,42,1258,1278,1257,0,1326,1349,1325,1261,1281,1259,42,1291,1290,1292,0,1366,1365,1367,1294,1293,1295,42,1255,1272,1254,0,1323,1341,1322,1257,1275,1256,42,1272,1251,1254,0,1341,1319,1322,1275,1253,1256,42,1232,1256,1253,0,1299,1324,1321,1234,1258,1255,42,1253,1231,1232,0,1321,1298,1299,1255,1233,1234,42,1231,1253,1230,0,1298,1321,1297,1233,1255,1232,42,1230,1253,1252,0,1297,1321,1320,1232,1255,1254,42,1252,1250,1230,0,1320,1318,1297,1254,1252,1232,42,1230,1250,1296,0,1297,1318,1371,1232,1252,1299,42,1296,1250,1211,0,1371,1318,1276,1299,1252,1213,42,1296,1211,1297,0,1371,1276,1372,1299,1213,1300,42,1297,1211,1210,0,1372,1276,1275,1300,1213,1212,42,1297,1210,1225,0,1372,1275,1292,1300,1212,1227,42,1225,1210,1298,0,1292,1275,1373,1227,1212,1301,42,1210,1299,1298,0,1275,1374,1373,1212,1302,1301,42,1210,1207,1299,0,1275,1272,1374,1212,1209,1302,42,1299,1207,1205,0,1374,1272,1268,1302,1209,1207,42,1299,1205,1300,0,1374,1268,1375,1302,1207,1303,42,1205,1202,1300,0,1268,1270,1375,1207,1204,1303,42,1202,1301,1300,0,1270,1376,1375,1204,1304,1303,42,1301,1202,1201,0,1377,1265,1264,1304,1204,1203,42,1301,1201,1302,0,1377,1264,1378,1304,1203,1305,42,1302,1201,1303,0,1378,1264,1379,1305,1203,1306,42,1201,1197,1303,0,1264,1260,1379,1203,1199,1306,42,1303,1197,1195,0,1379,1260,1258,1306,1199,1197,42,1303,1195,1304,0,1379,1258,1380,1306,1197,1307,42,1304,1195,1305,0,1380,1258,1381,1307,1197,1308,42,1195,1306,1305,0,1258,1382,1381,1197,1309,1308,42,1195,1194,1306,0,1258,1257,1382,1197,1196,1309,42,1194,1192,1306,0,1257,1255,1382,1196,1194,1309,42,1306,1192,1189,0,1382,1255,1252,1309,1194,1191,42,1307,1306,1189,0,1383,1382,1252,1310,1309,1191,42,1305,1306,1307,0,1381,1382,1383,1308,1309,1310,42,1305,1307,1308,0,1381,1383,1384,1308,1310,1311,42,1308,1307,1309,0,1384,1383,1385,1311,1310,1312,42,1307,1189,1309,0,1383,1252,1385,1310,1191,1312,42,1309,1189,1310,0,1385,1252,1386,1312,1191,1313,42,1189,1311,1310,0,1252,1387,1386,1191,1314,1313,42,1189,1186,1311,0,1252,1388,1387,1191,1188,1314,42,1186,1312,1311,0,1388,1389,1387,1188,1315,1314,42,1313,1312,1186,0,1390,1391,1247,1316,1315,1188,42,1313,1314,1312,0,1390,1392,1391,1316,1317,1315,42,1315,1314,1313,0,1393,1392,1390,1318,1317,1316,42,1315,1316,1314,0,1393,1394,1392,1318,1319,1317,42,1317,1316,1315,0,1395,1394,1393,1320,1319,1318,42,1317,1318,1316,0,1395,1396,1394,1320,1321,1319,42,1317,1309,1318,0,1397,1385,1398,1320,1312,1321,42,1308,1309,1317,0,1384,1385,1397,1311,1312,1320,42,1308,1317,1319,0,1384,1397,1399,1311,1320,1322,42,1319,1317,1320,0,1399,1397,1400,1322,1320,1323,42,1317,1321,1320,0,1397,1401,1400,1320,1324,1323,42,1317,1315,1321,0,1397,1402,1401,1320,1318,1324,42,1315,1322,1321,0,1402,1403,1401,1318,1325,1324,42,1323,1322,1315,0,1404,1405,1393,1326,1325,1318,42,1323,1324,1322,0,1404,1406,1405,1326,1327,1325,42,1325,1324,1323,0,1407,1406,1404,1328,1327,1326,42,1325,1326,1324,0,1407,1408,1406,1328,1329,1327,42,1327,1326,1325,0,1409,1408,1407,1330,1329,1328,42,1327,1328,1326,0,1409,1410,1408,1330,1331,1329,42,1327,1319,1328,0,1411,1399,1412,1330,1322,1331,42,1329,1319,1327,0,1413,1399,1411,1332,1322,1330,42,1308,1319,1329,0,1384,1399,1413,1311,1322,1332,42,1330,1308,1329,0,1414,1384,1413,1333,1311,1332,42,1331,1308,1330,0,1415,1384,1414,1334,1311,1333,42,1331,1304,1308,0,1415,1380,1384,1334,1307,1311,42,1332,1304,1331,0,1416,1380,1415,1335,1307,1334,42,1332,1303,1304,0,1416,1379,1380,1335,1306,1307,42,1302,1303,1332,0,1378,1379,1416,1305,1306,1335,42,1333,1302,1332,0,1417,1378,1416,1336,1305,1335,42,1301,1302,1333,0,1377,1378,1417,1304,1305,1336,42,1334,1301,1333,0,1418,1377,1417,1337,1304,1336,42,1335,1301,1334,0,1419,1376,1420,1338,1304,1337,42,1335,1300,1301,0,1419,1375,1376,1338,1303,1304,42,1336,1300,1335,0,1421,1375,1419,1339,1303,1338,42,1336,1299,1300,0,1421,1374,1375,1339,1302,1303,42,1298,1299,1336,0,1373,1374,1421,1301,1302,1339,42,1222,1298,1336,0,1289,1373,1421,1224,1301,1339,42,1225,1298,1222,0,1292,1373,1289,1227,1301,1224,42,1223,1225,1222,0,1290,1292,1289,1225,1227,1224,42,1222,1336,1337,0,1289,1421,1422,1224,1339,1340,42,1337,1336,1335,0,1422,1421,1419,1340,1339,1338,42,1337,1335,1338,0,1422,1419,1423,1340,1338,1341,42,1335,1334,1338,0,1419,1420,1423,1338,1337,1341,42,1338,1334,1339,0,1423,1420,1424,1341,1337,1342,42,1339,1334,1340,0,1425,1418,1426,1342,1337,1343,42,1334,1333,1340,0,1418,1417,1426,1337,1336,1343,42,1340,1333,1341,0,1426,1417,1427,1343,1336,1344,42,1333,1342,1341,0,1417,1428,1427,1336,1345,1344,42,1333,1332,1342,0,1417,1416,1428,1336,1335,1345,42,1342,1332,1331,0,1428,1416,1415,1345,1335,1334,42,1342,1331,1343,0,1428,1415,1429,1345,1334,1346,42,1343,1331,1330,0,1429,1415,1414,1346,1334,1333,42,1343,1330,1344,0,1429,1414,1430,1346,1333,1347,42,1344,1330,1329,0,1430,1414,1413,1347,1333,1332,42,1344,1329,1327,0,1430,1413,1411,1347,1332,1330,42,1327,1345,1344,0,1409,1431,1432,1330,1348,1347,42,1327,1325,1345,0,1409,1407,1431,1330,1328,1348,42,1325,1323,1345,0,1407,1404,1431,1328,1326,1348,42,1345,1323,1346,0,1431,1404,1433,1348,1326,1349,42,1323,1315,1346,0,1404,1393,1433,1326,1318,1349,42,1315,1313,1346,0,1393,1390,1433,1318,1316,1349,42,1346,1313,1182,0,1433,1390,1243,1349,1316,1184,42,1182,1313,1186,0,1243,1390,1247,1184,1316,1188,42,1180,1346,1182,0,1241,1433,1243,1182,1349,1184,42,1347,1346,1180,0,1434,1433,1241,1350,1349,1182,42,1345,1346,1347,0,1431,1433,1434,1348,1349,1350,42,1345,1347,1348,0,1431,1434,1435,1348,1350,1351,42,1348,1347,1349,0,1435,1434,1436,1351,1350,1352,42,1349,1347,1350,0,1436,1434,1437,1352,1350,1353,42,1350,1347,1178,0,1437,1434,1239,1353,1350,1180,42,1178,1347,1180,0,1239,1434,1241,1180,1350,1182,42,1176,1350,1178,0,1237,1437,1239,1178,1353,1180,42,1351,1350,1176,0,1438,1437,1237,1354,1353,1178,42,1352,1350,1351,0,1439,1437,1438,1355,1353,1354,42,1349,1350,1352,0,1436,1437,1439,1352,1353,1355,42,1340,1349,1352,0,1440,1436,1439,1343,1352,1355,42,1340,1341,1349,0,1440,1441,1436,1343,1344,1352,42,1341,1348,1349,0,1441,1435,1436,1344,1351,1352,42,1343,1348,1341,0,1442,1435,1441,1346,1351,1344,42,1343,1345,1348,0,1442,1431,1435,1346,1348,1351,42,1344,1345,1343,0,1432,1431,1442,1347,1348,1346,42,1341,1342,1343,0,1427,1428,1429,1344,1345,1346,42,1339,1340,1352,0,1443,1440,1439,1342,1343,1355,42,1339,1352,1353,0,1443,1439,1444,1342,1355,1356,42,1354,1353,1352,0,1445,1444,1439,1357,1356,1355,42,1353,1354,1355,0,1446,1447,1448,1356,1357,1358,42,1355,1354,1356,0,1449,1450,1451,1358,1357,1359,42,1356,1354,1357,0,1451,1450,1452,1359,1357,1360,42,1354,1351,1357,0,1445,1438,1453,1357,1354,1360,42,1354,1352,1351,0,1445,1439,1438,1357,1355,1354,42,1357,1351,1176,0,1453,1438,1237,1360,1354,1178,42,1357,1176,1358,0,1453,1237,1454,1360,1178,1361,42,1358,1176,1359,0,1454,1237,1455,1361,1178,1362,42,1359,1176,1174,0,1455,1237,1235,1362,1178,1176,42,1359,1174,1360,0,1455,1235,1456,1362,1176,1363,42,1360,1174,1173,0,1456,1235,1234,1363,1176,1175,42,1203,1360,1173,0,1266,1456,1234,1205,1363,1175,42,1203,1204,1360,0,1266,1267,1456,1205,1206,1363,42,1358,1360,1204,0,1454,1456,1267,1361,1363,1206,42,1358,1359,1360,0,1454,1455,1456,1361,1362,1363,42,1358,1204,1206,0,1457,1269,1271,1361,1206,1208,42,1361,1358,1206,0,1458,1457,1271,1364,1361,1208,42,1357,1358,1361,0,1452,1457,1458,1360,1361,1364,42,1356,1357,1361,0,1451,1452,1458,1359,1360,1364,42,1362,1356,1361,0,1459,1451,1458,1365,1359,1364,42,1363,1356,1362,0,1460,1451,1459,1366,1359,1365,42,1363,1355,1356,0,1460,1449,1451,1366,1358,1359,42,1364,1355,1363,0,1461,1449,1460,1367,1358,1366,42,1364,1365,1355,0,1462,1463,1448,1367,1368,1358,42,1364,1366,1365,0,1462,1464,1463,1367,1369,1368,42,1219,1366,1364,0,1286,1464,1462,1221,1369,1367,42,1221,1366,1219,0,1288,1464,1286,1223,1369,1221,42,1221,1337,1366,0,1288,1422,1464,1223,1340,1369,42,1221,1222,1337,0,1288,1289,1422,1223,1224,1340,42,1337,1338,1366,0,1422,1423,1464,1340,1341,1369,42,1338,1365,1366,0,1423,1463,1464,1341,1368,1369,42,1338,1339,1365,0,1423,1424,1463,1341,1342,1368,42,1339,1353,1365,0,1424,1446,1463,1342,1356,1368,42,1365,1353,1355,0,1463,1446,1448,1368,1356,1358,42,1219,1364,1216,0,1286,1462,1284,1221,1367,1218,42,1216,1364,1363,0,1281,1461,1460,1218,1367,1366,42,1216,1363,1215,0,1281,1460,1280,1218,1366,1217,42,1215,1363,1362,0,1280,1460,1459,1217,1366,1365,42,1215,1362,1212,0,1280,1459,1277,1217,1365,1214,42,1212,1362,1208,0,1277,1459,1273,1214,1365,1210,42,1362,1361,1208,0,1459,1458,1273,1365,1364,1210,42,1208,1361,1206,0,1273,1458,1271,1210,1364,1208,42,1212,1208,1209,0,1277,1273,1274,1214,1210,1211,42,1203,1173,1367,0,1266,1234,1465,1205,1175,1370,42,1367,1173,1171,0,1465,1234,1232,1370,1175,1173,42,1367,1171,1368,0,1465,1232,1466,1370,1173,1371,42,1368,1171,1169,0,1466,1232,1230,1371,1173,1171,42,1368,1169,1369,0,1466,1230,1467,1371,1171,1372,42,1369,1169,1166,0,1467,1230,1227,1372,1171,1168,42,1369,1166,1370,0,1467,1227,1468,1372,1168,1373,42,1370,1166,1165,0,1468,1227,1226,1373,1168,1167,42,1371,1370,1165,0,1469,1468,1226,1374,1373,1167,42,1372,1370,1371,0,1470,1468,1469,1375,1373,1374,42,1372,1369,1370,0,1470,1467,1468,1375,1372,1373,42,1368,1369,1372,0,1466,1467,1470,1371,1372,1375,42,1373,1368,1372,0,1471,1466,1470,1376,1371,1375,42,1367,1368,1373,0,1465,1466,1471,1370,1371,1376,42,1374,1367,1373,0,1472,1465,1471,1377,1370,1376,42,1203,1367,1374,0,1266,1465,1472,1205,1370,1377,42,1203,1374,1199,0,1266,1472,1262,1205,1377,1201,42,1199,1374,1375,0,1262,1472,1473,1201,1377,1378,42,1374,1376,1375,0,1472,1474,1473,1377,1379,1378,42,1374,1373,1376,0,1472,1471,1474,1377,1376,1379,42,1376,1373,1372,0,1474,1471,1470,1379,1376,1375,42,1372,1377,1376,0,1470,1475,1474,1375,1380,1379,42,1371,1377,1372,0,1469,1475,1470,1374,1380,1375,42,1377,1371,1378,0,1475,1469,1476,1380,1374,1381,42,1378,1371,1379,0,1476,1469,1477,1381,1374,1382,42,1371,1380,1379,0,1469,1478,1477,1374,1383,1382,42,1371,1165,1380,0,1469,1226,1478,1374,1167,1383,42,1380,1165,1163,0,1478,1226,1224,1383,1167,1165,42,1380,1163,1381,0,1478,1224,1479,1383,1165,1384,42,1381,1163,1160,0,1479,1224,1221,1384,1165,1162,42,1381,1160,1382,0,1479,1221,1480,1384,1162,1385,42,1382,1160,1383,0,1480,1221,1481,1385,1162,1386,42,1383,1160,1159,0,1481,1221,1220,1386,1162,1161,42,1383,1159,1157,0,1481,1220,1218,1386,1161,1159,42,1383,1157,1384,0,1481,1218,1482,1386,1159,1387,42,1384,1157,1155,0,1482,1218,1215,1387,1159,1156,42,1384,1155,1385,0,1482,1215,1483,1387,1156,1388,42,1386,1152,1387,0,1484,1213,1485,1389,1154,1390,42,1152,1148,1387,0,1213,1209,1485,1154,1150,1390,42,1387,1148,1388,0,1485,1209,1486,1390,1150,1391,42,1388,1148,1150,0,1486,1209,1211,1391,1150,1152,42,1389,1149,1390,0,1487,1210,1488,1392,1151,1393,42,1149,1392,1391,0,1210,1489,1490,1151,1394,1395,42,1151,1392,1149,0,1212,1489,1210,1153,1394,1151,42,1393,1392,1151,0,1491,1489,1212,1396,1394,1153,42,1154,1156,1395,0,1217,1216,1492,1158,1157,1397,42,1156,1396,1395,0,1216,1493,1492,1157,1398,1397,42,1158,1396,1156,0,1219,1493,1216,1160,1398,1157,42,1158,1397,1396,0,1219,1494,1493,1160,1399,1398,42,1158,1398,1397,0,1219,1495,1494,1160,1400,1399,42,1161,1398,1158,0,1222,1495,1219,1163,1400,1160,42,1399,1398,1161,0,1496,1495,1222,1401,1400,1163,42,1399,1400,1398,0,1496,1497,1495,1401,1402,1400,42,1401,1400,1399,0,1498,1497,1496,1403,1402,1401,42,1402,1400,1401,0,1499,1497,1498,1404,1402,1403,42,1402,1403,1400,0,1499,1500,1497,1404,1405,1402,42,1402,1404,1403,0,1499,1501,1500,1404,1406,1405,42,1405,1404,1402,0,1502,1501,1499,1407,1406,1404,42,1405,1406,1404,0,1502,1503,1501,1407,1408,1406,42,1407,1406,1405,0,1504,1503,1502,1409,1408,1407,42,1407,1408,1406,0,1504,1505,1503,1409,1410,1408,42,1408,1407,1409,0,1505,1504,1506,1410,1409,1411,42,1407,1410,1409,0,1504,1507,1506,1409,1412,1411,42,1407,1411,1410,0,1504,1508,1507,1409,1413,1412,42,1407,1405,1411,0,1504,1502,1508,1409,1407,1413,42,1405,1402,1411,0,1502,1499,1508,1407,1404,1413,42,1411,1402,1401,0,1508,1499,1498,1413,1404,1403,42,1412,1411,1401,0,1509,1508,1498,1414,1413,1403,42,1412,1410,1411,0,1509,1507,1508,1414,1412,1413,42,1412,1413,1410,0,1509,1510,1507,1414,1415,1412,42,1414,1413,1412,0,1511,1510,1509,1416,1415,1414,42,1167,1413,1414,0,1228,1510,1511,1169,1415,1416,42,1415,1413,1167,0,1512,1510,1228,1417,1415,1169,42,1416,1413,1415,0,1513,1510,1512,1418,1415,1417,42,1416,1410,1413,0,1513,1507,1510,1418,1412,1415,42,1416,1409,1410,0,1513,1506,1507,1418,1411,1412,42,1417,1409,1416,0,1514,1506,1513,1419,1411,1418,42,1417,1379,1409,0,1514,1515,1506,1419,1382,1411,42,1378,1379,1417,0,1516,1515,1514,1381,1382,1419,42,1378,1417,1418,0,1516,1514,1517,1381,1419,1420,42,1417,1419,1418,0,1514,1518,1517,1419,1421,1420,42,1420,1419,1417,0,1519,1518,1514,1422,1421,1419,42,1183,1419,1420,0,1244,1518,1519,1185,1421,1422,42,1183,1184,1419,0,1244,1245,1518,1185,1186,1421,42,1184,1421,1419,0,1245,1520,1518,1186,1423,1421,42,1184,1422,1421,0,1245,1521,1520,1186,1424,1423,42,1184,1185,1422,0,1245,1246,1521,1186,1187,1424,42,1185,1423,1422,0,1246,1522,1521,1187,1425,1424,42,1185,1187,1423,0,1246,1248,1522,1187,1189,1425,42,1187,1424,1423,0,1248,1523,1522,1189,1426,1425,42,1187,1425,1424,0,1248,1524,1523,1189,1427,1426,42,1187,1426,1425,0,1248,1525,1524,1189,1428,1427,42,1187,1188,1426,0,1248,1249,1525,1189,1190,1428,42,1188,1427,1426,0,1249,1526,1525,1190,1429,1428,42,1190,1427,1188,0,1251,1526,1249,1192,1429,1190,42,1190,1428,1427,0,1254,1527,1528,1192,1430,1429,42,1191,1428,1190,0,1253,1527,1254,1193,1430,1192,42,1191,1429,1428,0,1253,1529,1527,1193,1431,1430,42,1191,1193,1429,0,1253,1256,1529,1193,1195,1431,42,1193,1430,1429,0,1256,1530,1529,1195,1432,1431,42,1431,1430,1193,0,1531,1530,1256,1433,1432,1195,42,1431,1432,1430,0,1531,1532,1530,1433,1434,1432,42,1198,1432,1431,0,1261,1532,1531,1200,1434,1433,42,1198,1433,1432,0,1261,1533,1532,1200,1435,1434,42,1375,1433,1198,0,1473,1533,1261,1378,1435,1200,42,1376,1433,1375,0,1474,1533,1473,1379,1435,1378,42,1376,1377,1433,0,1474,1475,1533,1379,1380,1435,42,1377,1434,1433,0,1475,1534,1533,1380,1436,1435,42,1377,1418,1434,0,1475,1535,1534,1380,1420,1436,42,1378,1418,1377,0,1516,1517,1536,1381,1420,1380,42,1419,1434,1418,0,1518,1537,1517,1421,1436,1420,42,1419,1421,1434,0,1518,1520,1537,1421,1423,1436,42,1421,1435,1434,0,1520,1538,1537,1423,1437,1436,42,1421,1436,1435,0,1520,1539,1538,1423,1438,1437,42,1421,1422,1436,0,1520,1521,1539,1423,1424,1438,42,1437,1436,1422,0,1540,1539,1521,1439,1438,1424,42,1437,1438,1436,0,1540,1541,1539,1439,1440,1438,42,1437,1439,1438,0,1540,1542,1541,1439,1441,1440,42,1440,1439,1437,0,1543,1542,1540,1442,1441,1439,42,1440,1441,1439,0,1543,1544,1542,1442,1443,1441,42,1440,1442,1441,0,1545,1546,1547,1442,1444,1443,42,1443,1442,1440,0,1548,1546,1545,1445,1444,1442,42,1443,1444,1442,0,1548,1549,1546,1445,1446,1444,42,1443,1432,1444,0,1548,1532,1549,1445,1434,1446,42,1430,1432,1443,0,1530,1532,1548,1432,1434,1445,42,1430,1443,1429,0,1530,1548,1529,1432,1445,1431,42,1429,1443,1440,0,1529,1548,1545,1431,1445,1442,42,1429,1440,1437,0,1550,1543,1540,1431,1442,1439,42,1429,1437,1422,0,1550,1540,1521,1431,1439,1424,42,1429,1422,1445,0,1529,1551,1552,1431,1424,1447,42,1422,1423,1445,0,1551,1553,1552,1424,1425,1447,42,1445,1423,1446,0,1552,1553,1554,1447,1425,1448,42,1423,1424,1446,0,1553,1555,1554,1425,1426,1448,42,1446,1424,1447,0,1554,1555,1556,1448,1426,1449,42,1424,1448,1447,0,1555,1557,1556,1426,1450,1449,42,1425,1448,1424,0,1524,1558,1523,1427,1450,1426,42,1425,1449,1448,0,1524,1559,1558,1427,1451,1450,42,1425,1450,1449,0,1524,1560,1559,1427,1452,1451,42,1426,1450,1425,0,1525,1560,1524,1428,1452,1427,42,1451,1450,1426,0,1561,1560,1525,1453,1452,1428,42,1451,1452,1450,0,1561,1562,1560,1453,1454,1452,42,1453,1452,1451,0,1563,1564,1565,1455,1454,1453,42,1453,1454,1452,0,1563,1566,1564,1455,1456,1454,42,1455,1454,1453,0,1567,1566,1563,1457,1456,1455,42,1455,1456,1454,0,1567,1568,1566,1457,1458,1456,42,1455,1457,1456,0,1567,1569,1568,1457,1459,1458,42,1455,1458,1457,0,1567,1570,1569,1457,1460,1459,42,1455,1448,1458,0,1567,1557,1570,1457,1450,1460,42,1448,1455,1447,0,1557,1567,1556,1450,1457,1449,42,1447,1455,1453,0,1556,1567,1563,1449,1457,1455,42,1447,1453,1459,0,1556,1563,1571,1449,1455,1461,42,1459,1453,1451,0,1571,1563,1565,1461,1455,1453,42,1427,1459,1451,0,1528,1571,1565,1429,1461,1453,42,1428,1459,1427,0,1527,1571,1528,1430,1461,1429,42,1428,1446,1459,0,1527,1554,1571,1430,1448,1461,42,1445,1446,1428,0,1552,1554,1527,1447,1448,1430,42,1428,1429,1445,0,1527,1529,1552,1430,1431,1447,42,1459,1446,1447,0,1571,1554,1556,1461,1448,1449,42,1427,1451,1426,0,1526,1561,1525,1429,1453,1428,42,1448,1449,1458,0,1558,1559,1572,1450,1451,1460,42,1458,1449,1460,0,1572,1559,1573,1460,1451,1462,42,1449,1450,1460,0,1559,1560,1573,1451,1452,1462,42,1460,1450,1461,0,1573,1560,1574,1462,1452,1463,42,1452,1461,1450,0,1562,1574,1560,1454,1463,1452,42,1452,1462,1461,0,1562,1575,1574,1454,1464,1463,42,1452,1456,1462,0,1564,1568,1576,1454,1458,1464,42,1454,1456,1452,0,1566,1568,1564,1456,1458,1454,42,1462,1456,1463,0,1576,1568,1577,1464,1458,1465,42,1456,1464,1463,0,1568,1578,1577,1458,1466,1465,42,1465,1464,1456,0,1579,1578,1568,1467,1466,1458,42,1465,1466,1464,0,1579,1580,1578,1467,1468,1466,42,1467,1466,1465,0,1581,1580,1579,1469,1468,1467,42,1467,1468,1466,0,1581,1582,1580,1469,1470,1468,42,1467,1469,1468,0,1583,1584,1585,1469,1471,1470,42,1470,1469,1467,0,1586,1584,1583,1472,1471,1469,42,1471,1469,1470,0,1587,1584,1586,1473,1471,1472,42,1469,1471,1472,0,1584,1587,1588,1471,1473,1474,42,1472,1471,1473,0,1588,1587,1589,1474,1473,1475,42,1463,1473,1471,0,1590,1589,1587,1465,1475,1473,42,1464,1473,1463,0,1578,1591,1577,1466,1475,1465,42,1464,1474,1473,0,1578,1592,1591,1466,1476,1475,42,1466,1474,1464,0,1580,1592,1578,1468,1476,1466,42,1466,1475,1474,0,1580,1593,1592,1468,1477,1476,42,1466,1476,1475,0,1580,1594,1593,1468,1478,1477,42,1466,1468,1476,0,1580,1582,1594,1468,1470,1478,42,1468,1477,1476,0,1585,1595,1596,1470,1479,1478,42,1468,1478,1477,0,1585,1597,1595,1470,1480,1479,42,1468,1469,1478,0,1585,1584,1597,1470,1471,1480,42,1469,1472,1478,0,1584,1588,1597,1471,1474,1480,42,1478,1472,1477,0,1597,1588,1595,1480,1474,1479,42,1477,1472,1479,0,1595,1588,1598,1479,1474,1481,42,1473,1479,1472,0,1589,1598,1588,1475,1481,1474,42,1473,1480,1479,0,1589,1599,1598,1475,1482,1481,42,1481,1480,1473,0,1600,1601,1591,1483,1482,1475,42,1481,1482,1480,0,1600,1602,1601,1483,1484,1482,42,1475,1482,1481,0,1593,1602,1600,1477,1484,1483,42,1475,1483,1482,0,1593,1603,1602,1477,1485,1484,42,1475,1484,1483,0,1593,1604,1603,1477,1486,1485,42,1475,1485,1484,0,1593,1605,1604,1477,1487,1486,42,1475,1476,1485,0,1593,1594,1605,1477,1478,1487,42,1476,1486,1485,0,1596,1606,1607,1478,1488,1487,42,1476,1477,1486,0,1596,1595,1606,1478,1479,1488,42,1477,1479,1486,0,1595,1598,1606,1479,1481,1488,42,1479,1487,1486,0,1598,1608,1606,1481,1489,1488,42,1480,1487,1479,0,1599,1608,1598,1482,1489,1481,42,1480,1488,1487,0,1599,1609,1608,1482,1490,1489,42,1480,1489,1488,0,1601,1610,1611,1482,1491,1490,42,1482,1489,1480,0,1602,1610,1601,1484,1491,1482,42,1482,1490,1489,0,1602,1612,1610,1484,1492,1491,42,1483,1490,1482,0,1603,1612,1602,1485,1492,1484,42,1483,1491,1490,0,1603,1613,1612,1485,1493,1492,42,1483,1492,1491,0,1603,1614,1613,1485,1494,1493,42,1483,1484,1492,0,1603,1604,1614,1485,1486,1494,42,1493,1492,1484,0,1615,1614,1604,1495,1494,1486,42,1493,1494,1492,0,1615,1616,1614,1495,1496,1494,42,1493,1496,1495,0,1615,1617,1618,1495,1497,1498,42,1497,1496,1493,0,1619,1620,1621,1499,1497,1495,42,1498,1496,1497,0,1622,1620,1619,1500,1497,1499,42,1498,1499,1496,0,1622,1623,1620,1500,1501,1497,42,1498,1500,1499,0,1622,1624,1623,1500,1502,1501,42,1501,1500,1498,0,1625,1624,1622,1503,1502,1500,42,1501,1502,1500,0,1625,1626,1624,1503,1504,1502,42,1488,1502,1501,0,1609,1626,1625,1490,1504,1503,42,1488,1503,1502,0,1611,1627,1628,1490,1505,1504,42,1489,1503,1488,0,1610,1627,1611,1491,1505,1490,42,1507,1508,1506,0,1629,1630,1631,1506,1507,1508,42,1507,1509,1508,0,1629,1632,1630,1506,1509,1507,42,1507,1510,1509,0,1629,1633,1632,1506,1510,1509,42,1511,1510,1507,0,1634,1633,1629,1511,1510,1506,42,1495,1513,1510,0,1618,1635,1633,1498,1512,1510,42,1514,1513,1495,0,1636,1635,1618,1513,1512,1498,42,1515,1514,1516,0,1637,1636,1638,1514,1513,1515,42,1519,1516,1518,0,1639,1638,1640,1516,1515,1517,42,1521,1518,1522,0,1641,1640,1642,1518,1517,1519,42,1522,1518,1500,0,1642,1640,1643,1519,1517,1502,42,1496,1514,1495,0,1617,1636,1618,1497,1513,1498,42,1502,1522,1500,0,1628,1642,1643,1504,1519,1502,42,1503,1525,1502,0,1627,1644,1628,1505,1520,1504,42,1505,1508,1522,0,1645,1630,1642,1521,1507,1519,42,1506,1508,1505,0,1631,1630,1645,1508,1507,1521,42,1509,1521,1508,0,1632,1641,1630,1509,1518,1507,42,1509,1526,1521,0,1632,1646,1641,1509,1522,1518,42,1509,1513,1526,0,1632,1635,1646,1509,1512,1522,42,1510,1513,1509,0,1633,1635,1632,1510,1512,1509,42,1513,1515,1520,0,1635,1637,1647,1512,1514,1523,42,1490,1504,1489,0,1612,1648,1610,1492,1524,1491,42,1488,1501,1487,0,1609,1625,1608,1490,1503,1489,42,1487,1501,1498,0,1608,1625,1622,1489,1503,1500,42,1486,1487,1498,0,1606,1608,1622,1488,1489,1500,42,1486,1498,1485,0,1606,1622,1607,1488,1500,1487,42,1485,1498,1497,0,1607,1622,1619,1487,1500,1499,42,1485,1497,1484,0,1605,1649,1604,1487,1499,1486,42,1497,1493,1484,0,1649,1615,1604,1499,1495,1486,42,1475,1481,1474,0,1593,1600,1592,1477,1483,1476,42,1474,1481,1473,0,1592,1600,1591,1476,1483,1475,42,1463,1471,1527,0,1590,1587,1650,1465,1473,1525,42,1470,1527,1471,0,1586,1650,1587,1472,1525,1473,42,1460,1527,1470,0,1573,1650,1586,1462,1525,1472,42,1460,1461,1527,0,1573,1574,1650,1462,1463,1525,42,1461,1462,1527,0,1574,1575,1650,1463,1464,1525,42,1527,1462,1463,0,1650,1575,1590,1525,1464,1465,42,1460,1470,1528,0,1573,1586,1651,1462,1472,1526,42,1470,1467,1528,0,1586,1583,1651,1472,1469,1526,42,1528,1467,1465,0,1652,1581,1579,1526,1469,1467,42,1457,1528,1465,0,1569,1652,1579,1459,1526,1467,42,1458,1528,1457,0,1570,1652,1569,1460,1526,1459,42,1458,1460,1528,0,1572,1573,1651,1460,1462,1526,42,1457,1465,1456,0,1569,1579,1568,1459,1467,1458,42,1432,1434,1444,0,1532,1534,1549,1434,1436,1446,42,1432,1433,1434,0,1532,1533,1534,1434,1435,1436,42,1444,1434,1529,0,1549,1534,1653,1446,1436,1527,42,1529,1434,1435,0,1653,1534,1654,1527,1436,1437,42,1529,1435,1530,0,1653,1654,1655,1527,1437,1528,42,1435,1438,1530,0,1538,1541,1656,1437,1440,1528,42,1436,1438,1435,0,1539,1541,1538,1438,1440,1437,42,1438,1531,1530,0,1541,1657,1656,1440,1529,1528,42,1439,1531,1438,0,1542,1657,1541,1441,1529,1440,42,1439,1532,1531,0,1542,1658,1657,1441,1530,1529,42,1533,1532,1439,0,1659,1658,1542,1531,1530,1441,42,1532,1533,1534,0,1658,1659,1660,1530,1531,1532,42,1533,1535,1534,0,1659,1661,1660,1531,1533,1532,42,1536,1535,1533,0,1662,1663,1664,1534,1533,1531,42,1536,1537,1535,0,1662,1665,1663,1534,1535,1533,42,1538,1537,1536,0,1666,1665,1662,1536,1535,1534,42,1538,1539,1537,0,1666,1667,1665,1536,1537,1535,42,1538,1540,1539,0,1666,1668,1667,1536,1538,1537,42,1538,1541,1540,0,1666,1669,1668,1536,1539,1538,42,1541,1538,1542,0,1669,1666,1670,1539,1536,1540,42,1542,1538,1536,0,1670,1666,1662,1540,1536,1534,42,1536,1543,1542,0,1662,1671,1670,1534,1541,1540,42,1544,1543,1536,0,1672,1671,1662,1542,1541,1534,42,1442,1543,1544,0,1546,1671,1672,1444,1541,1542,42,1442,1529,1543,0,1546,1653,1671,1444,1527,1541,42,1442,1444,1529,0,1546,1549,1653,1444,1446,1527,42,1529,1530,1543,0,1653,1655,1671,1527,1528,1541,42,1543,1530,1542,0,1671,1655,1670,1541,1528,1540,42,1530,1545,1542,0,1655,1673,1670,1528,1543,1540,42,1530,1531,1545,0,1656,1657,1674,1528,1529,1543,42,1545,1531,1546,0,1674,1657,1675,1543,1529,1544,42,1531,1532,1546,0,1657,1658,1675,1529,1530,1544,42,1532,1534,1546,0,1658,1660,1675,1530,1532,1544,42,1546,1534,1547,0,1675,1660,1676,1544,1532,1545,42,1534,1548,1547,0,1660,1677,1676,1532,1546,1545,42,1535,1548,1534,0,1661,1677,1660,1533,1546,1532,42,1535,1549,1548,0,1661,1678,1677,1533,1547,1546,42,1535,1550,1549,0,1663,1679,1680,1533,1548,1547,42,1537,1550,1535,0,1665,1679,1663,1535,1548,1533,42,1537,1539,1550,0,1665,1667,1679,1535,1537,1548,42,1539,1551,1550,0,1667,1681,1679,1537,1549,1548,42,1539,1552,1551,0,1667,1682,1681,1537,1550,1549,42,1539,1540,1552,0,1667,1668,1682,1537,1538,1550,42,1540,1553,1552,0,1668,1683,1682,1538,1551,1550,42,1540,1554,1553,0,1684,1685,1686,1538,1552,1551,42,1547,1554,1540,0,1676,1685,1684,1545,1552,1538,42,1548,1554,1547,0,1677,1685,1676,1546,1552,1545,42,1548,1555,1554,0,1677,1687,1685,1546,1553,1552,42,1556,1555,1548,0,1688,1687,1677,1554,1553,1546,42,1557,1555,1556,0,1689,1687,1688,1555,1553,1554,42,1558,1555,1557,0,1690,1687,1689,1556,1553,1555,42,1554,1555,1558,0,1685,1687,1690,1552,1553,1556,42,1553,1554,1558,0,1686,1685,1690,1551,1552,1556,42,1553,1558,1559,0,1686,1690,1691,1551,1556,1557,42,1559,1558,1560,0,1691,1690,1692,1557,1556,1558,42,1558,1557,1560,0,1690,1689,1692,1556,1555,1558,42,1557,1561,1560,0,1689,1693,1692,1555,1559,1558,42,1562,1561,1557,0,1694,1693,1689,1560,1559,1555,42,1562,1563,1561,0,1694,1695,1693,1560,1561,1559,42,1562,1564,1563,0,1696,1697,1698,1560,1562,1561,42,1565,1564,1562,0,1699,1697,1696,1563,1562,1560,42,1565,1566,1564,0,1699,1700,1697,1563,1564,1562,42,1567,1566,1565,0,1701,1700,1699,1565,1564,1563,42,1568,1566,1567,0,1702,1700,1701,1566,1564,1565,42,1568,1569,1566,0,1702,1703,1700,1566,1567,1564,42,1568,1570,1569,0,1704,1705,1706,1566,1568,1567,42,1568,1560,1570,0,1704,1692,1705,1566,1558,1568,42,1559,1560,1568,0,1691,1692,1704,1557,1558,1566,42,1559,1568,1567,0,1707,1702,1701,1557,1566,1565,42,1559,1567,1552,0,1707,1701,1682,1557,1565,1550,42,1552,1567,1551,0,1682,1701,1681,1550,1565,1549,42,1567,1565,1551,0,1701,1699,1681,1565,1563,1549,42,1551,1565,1562,0,1681,1699,1696,1549,1563,1560,42,1551,1562,1556,0,1681,1696,1708,1549,1560,1554,42,1556,1562,1557,0,1688,1694,1689,1554,1560,1555,42,1551,1556,1549,0,1681,1708,1680,1549,1554,1547,42,1548,1549,1556,0,1677,1678,1688,1546,1547,1554,42,1550,1551,1549,0,1679,1681,1680,1548,1549,1547,42,1552,1553,1559,0,1682,1683,1707,1550,1551,1557,42,1560,1561,1570,0,1692,1693,1705,1558,1559,1568,42,1561,1571,1570,0,1693,1709,1705,1559,1569,1568,42,1563,1571,1561,0,1695,1709,1693,1561,1569,1559,42,1563,1572,1571,0,1695,1710,1709,1561,1570,1569,42,1563,1573,1572,0,1698,1711,1712,1561,1571,1570,42,1563,1574,1573,0,1698,1713,1711,1561,1572,1571,42,1564,1574,1563,0,1697,1713,1698,1562,1572,1561,42,1566,1574,1564,0,1700,1713,1697,1564,1572,1562,42,1574,1566,1575,0,1713,1700,1714,1572,1564,1573,42,1566,1576,1575,0,1700,1715,1714,1564,1574,1573,42,1569,1576,1566,0,1703,1715,1700,1567,1574,1564,42,1569,1577,1576,0,1703,1716,1715,1567,1575,1574,42,1569,1578,1577,0,1706,1717,1718,1567,1576,1575,42,1570,1578,1569,0,1705,1717,1706,1568,1576,1567,42,1571,1578,1570,0,1709,1717,1705,1569,1576,1568,42,1571,1579,1578,0,1709,1719,1717,1569,1577,1576,42,1572,1579,1571,0,1710,1719,1709,1570,1577,1569,42,1572,1580,1579,0,1710,1720,1719,1570,1578,1577,42,1572,1581,1580,0,1712,1721,1722,1570,1579,1578,42,1573,1581,1572,0,1711,1721,1712,1571,1579,1570,42,1583,1582,1573,0,1723,1724,1711,1580,1581,1571,42,1575,1588,1585,0,1714,1725,1726,1573,1582,1583,42,1575,1576,1588,0,1714,1715,1725,1573,1574,1582,42,1576,1589,1588,0,1715,1727,1725,1574,1584,1582,42,1577,1589,1576,0,1716,1727,1715,1575,1584,1574,42,1577,1590,1589,0,1718,1728,1729,1575,1585,1584,42,1578,1590,1577,0,1717,1728,1718,1576,1585,1575,42,1578,1591,1590,0,1717,1730,1728,1576,1586,1585,42,1592,1591,1578,0,1731,1730,1717,1587,1586,1576,42,1595,1594,1592,0,1732,1733,1734,1588,1589,1587,42,1596,1594,1595,0,1735,1733,1732,1590,1589,1588,42,1602,1603,1601,0,1736,1737,1738,1591,1592,1593,42,1604,1603,1602,0,1739,1737,1736,1594,1592,1591,42,1589,1605,1588,0,1727,1740,1725,1584,1595,1582,42,1589,1590,1603,0,1727,1741,1737,1584,1585,1592,42,1590,1601,1603,0,1741,1738,1737,1585,1593,1592,42,1586,1604,1584,0,1742,1739,1743,1596,1594,1597,42,1584,1604,1608,0,1743,1739,1744,1597,1594,1598,42,1604,1602,1608,0,1739,1736,1744,1594,1591,1598,42,1608,1602,1609,0,1744,1736,1745,1598,1591,1599,42,1608,1609,1596,0,1744,1745,1735,1598,1599,1590,42,1608,1596,1610,0,1744,1735,1746,1598,1590,1600,42,1584,1610,1612,0,1743,1746,1747,1597,1600,1601,42,1584,1608,1610,0,1743,1744,1746,1597,1598,1600,42,1580,1595,1592,0,1722,1732,1734,1578,1588,1587,42,1580,1592,1579,0,1720,1731,1719,1578,1587,1577,42,1579,1592,1578,0,1719,1731,1717,1577,1587,1576,42,1581,1613,1580,0,1721,1748,1722,1579,1602,1578,42,1575,1585,1583,0,1714,1726,1723,1573,1583,1580,42,1575,1583,1574,0,1714,1723,1713,1573,1580,1572,42,1574,1583,1573,0,1713,1723,1711,1572,1580,1571,42,1541,1547,1540,0,1749,1676,1684,1539,1545,1538,42,1541,1546,1547,0,1749,1675,1676,1539,1544,1545,42,1545,1546,1541,0,1674,1675,1749,1543,1544,1539,42,1542,1545,1541,0,1670,1673,1669,1540,1543,1539,42,1442,1544,1441,0,1546,1672,1547,1444,1542,1443,42,1544,1536,1441,0,1672,1662,1547,1542,1534,1443,42,1441,1536,1533,0,1547,1662,1664,1443,1534,1531,42,1439,1441,1533,0,1542,1544,1659,1441,1443,1531,42,1199,1375,1198,0,1262,1473,1261,1201,1378,1200,42,1196,1198,1431,0,1259,1261,1531,1198,1200,1433,42,1196,1431,1193,0,1259,1531,1256,1198,1433,1195,42,1183,1420,1614,0,1244,1519,1750,1185,1422,1603,42,1614,1420,1417,0,1750,1519,1514,1603,1422,1419,42,1417,1416,1614,0,1514,1513,1750,1419,1418,1603,42,1614,1416,1615,0,1750,1513,1751,1603,1418,1604,42,1615,1416,1415,0,1751,1513,1512,1604,1418,1417,42,1615,1415,1616,0,1751,1512,1752,1604,1417,1605,42,1170,1616,1415,0,1231,1752,1512,1172,1605,1417,42,1172,1616,1170,0,1233,1752,1231,1174,1605,1172,42,1172,1617,1616,0,1233,1753,1752,1174,1606,1605,42,1177,1617,1172,0,1238,1753,1233,1179,1606,1174,42,1177,1179,1617,0,1238,1240,1753,1179,1181,1606,42,1179,1618,1617,0,1240,1754,1753,1181,1607,1606,42,1179,1181,1618,0,1240,1242,1754,1181,1183,1607,42,1181,1183,1618,0,1242,1244,1754,1183,1185,1607,42,1618,1183,1614,0,1754,1244,1750,1607,1185,1603,42,1615,1618,1614,0,1751,1754,1750,1604,1607,1603,42,1617,1618,1615,0,1753,1754,1751,1606,1607,1604,42,1617,1615,1616,0,1753,1751,1752,1606,1604,1605,42,1175,1177,1172,0,1236,1238,1233,1177,1179,1174,42,1170,1415,1168,0,1231,1512,1229,1172,1417,1170,42,1168,1415,1167,0,1229,1512,1228,1170,1417,1169,42,1379,1408,1409,0,1515,1505,1506,1382,1410,1411,42,1379,1381,1408,0,1477,1479,1755,1382,1384,1410,42,1380,1381,1379,0,1478,1479,1477,1383,1384,1382,42,1381,1382,1408,0,1479,1480,1755,1384,1385,1410,42,1408,1382,1406,0,1755,1480,1756,1410,1385,1408,42,1406,1382,1619,0,1756,1480,1757,1408,1385,1608,42,1382,1383,1619,0,1480,1481,1757,1385,1386,1608,42,1383,1620,1619,0,1481,1758,1757,1386,1609,1608,42,1383,1621,1620,0,1481,1759,1758,1386,1610,1609,42,1383,1384,1621,0,1481,1482,1759,1386,1387,1610,42,1384,1622,1621,0,1482,1760,1759,1387,1611,1610,42,1384,1385,1622,0,1482,1483,1760,1387,1388,1611,42,1386,1387,1623,0,1484,1485,1761,1389,1390,1612,42,1623,1387,1624,0,1761,1485,1762,1612,1390,1613,42,1388,1625,1624,0,1486,1763,1762,1391,1614,1613,42,1390,1391,1627,0,1488,1490,1764,1393,1395,1615,42,1626,1627,1625,0,1765,1764,1763,1616,1615,1614,42,1633,1631,1634,0,1766,1767,1768,1617,1618,1619,42,1634,1631,1635,0,1768,1767,1769,1619,1618,1620,42,1631,1636,1635,0,1767,1770,1769,1618,1621,1620,42,1636,1630,1392,0,1771,1772,1489,1621,1622,1394,42,1392,1630,1391,0,1489,1772,1490,1394,1622,1395,42,1395,1636,1394,0,1492,1771,1773,1397,1621,1623,42,1396,1636,1395,0,1493,1771,1492,1398,1621,1397,42,1397,1636,1396,0,1494,1771,1493,1399,1621,1398,42,1397,1637,1636,0,1494,1774,1771,1399,1624,1621,42,1398,1637,1397,0,1495,1774,1494,1400,1624,1399,42,1398,1400,1637,0,1495,1497,1774,1400,1402,1624,42,1635,1637,1400,0,1769,1774,1497,1620,1624,1402,42,1636,1637,1635,0,1770,1774,1769,1621,1624,1620,42,1403,1635,1400,0,1500,1769,1497,1405,1620,1402,42,1404,1635,1403,0,1501,1769,1500,1406,1620,1405,42,1404,1638,1635,0,1501,1775,1769,1406,1625,1620,42,1619,1638,1404,0,1776,1775,1501,1608,1625,1406,42,1619,1620,1638,0,1776,1777,1775,1608,1609,1625,42,1620,1634,1638,0,1758,1778,1779,1609,1619,1625,42,1620,1621,1634,0,1758,1759,1778,1609,1610,1619,42,1622,1634,1621,0,1760,1778,1759,1611,1619,1610,42,1622,1639,1634,0,1760,1780,1778,1611,1626,1619,42,1624,1633,1634,0,1762,1781,1778,1613,1617,1619,42,1624,1625,1633,0,1762,1763,1781,1613,1614,1617,42,1634,1635,1638,0,1768,1769,1775,1619,1620,1625,42,1406,1619,1404,0,1503,1776,1501,1408,1608,1406,42,1167,1414,1162,0,1228,1511,1223,1169,1416,1164,42,1414,1161,1162,0,1511,1222,1223,1416,1163,1164,42,1414,1399,1161,0,1511,1496,1222,1416,1401,1163,42,1414,1412,1399,0,1511,1509,1496,1416,1414,1401,42,1399,1412,1401,0,1496,1509,1498,1401,1414,1403,42,1167,1162,1164,0,1228,1223,1225,1169,1164,1166,42,1153,1393,1151,0,1214,1491,1212,1155,1396,1153,42,1200,1203,1199,0,1263,1266,1262,1202,1205,1201,42,1304,1305,1308,0,1380,1381,1384,1307,1308,1311,42,1319,1320,1328,0,1399,1400,1412,1322,1323,1331,42,1328,1320,1640,0,1412,1400,1782,1331,1323,1627,42,1321,1640,1320,0,1401,1782,1400,1324,1627,1323,42,1321,1641,1640,0,1401,1783,1782,1324,1628,1627,42,1321,1642,1641,0,1401,1784,1783,1324,1629,1628,42,1321,1322,1642,0,1401,1403,1784,1324,1325,1629,42,1322,1643,1642,0,1405,1785,1786,1325,1630,1629,42,1324,1643,1322,0,1406,1785,1405,1327,1630,1325,42,1324,1326,1643,0,1406,1408,1785,1327,1329,1630,42,1326,1644,1643,0,1408,1787,1785,1329,1631,1630,42,1328,1644,1326,0,1410,1787,1408,1331,1631,1329,42,1328,1645,1644,0,1410,1788,1787,1331,1632,1631,42,1328,1640,1645,0,1412,1782,1789,1331,1627,1632,42,1645,1640,1646,0,1789,1782,1790,1632,1627,1633,42,1641,1646,1640,0,1783,1790,1782,1628,1633,1627,42,1646,1641,1647,0,1790,1783,1791,1633,1628,1634,42,1641,1648,1647,0,1783,1792,1791,1628,1635,1634,42,1642,1648,1641,0,1784,1792,1783,1629,1635,1628,42,1649,1648,1642,0,1793,1794,1786,1636,1635,1629,42,1649,1650,1648,0,1793,1795,1794,1636,1637,1635,42,1649,1651,1650,0,1793,1796,1795,1636,1638,1637,42,1651,1649,1644,0,1796,1793,1787,1638,1636,1631,42,1644,1649,1643,0,1787,1793,1785,1631,1636,1630,42,1642,1643,1649,0,1786,1785,1793,1629,1630,1636,42,1645,1651,1644,0,1788,1796,1787,1632,1638,1631,42,1652,1651,1645,0,1797,1796,1788,1639,1638,1632,42,1653,1651,1652,0,1798,1796,1797,1640,1638,1639,42,1650,1651,1653,0,1795,1796,1798,1637,1638,1640,42,1650,1653,1654,0,1795,1798,1799,1637,1640,1641,42,1653,1655,1654,0,1798,1800,1799,1640,1642,1641,42,1656,1655,1653,0,1801,1800,1798,1643,1642,1640,42,1656,1657,1655,0,1801,1802,1800,1643,1644,1642,42,1656,1658,1657,0,1803,1804,1805,1643,1645,1644,42,1656,1646,1658,0,1803,1790,1804,1643,1633,1645,42,1646,1656,1652,0,1790,1803,1806,1633,1643,1639,42,1652,1656,1653,0,1797,1801,1798,1639,1643,1640,42,1645,1646,1652,0,1789,1790,1806,1632,1633,1639,42,1659,1658,1646,0,1807,1804,1790,1646,1645,1633,42,1659,1660,1658,0,1807,1808,1804,1646,1647,1645,42,1659,1661,1660,0,1807,1809,1808,1646,1648,1647,42,1659,1662,1661,0,1807,1810,1809,1646,1649,1648,42,1662,1659,1647,0,1810,1807,1791,1649,1646,1634,42,1647,1659,1646,0,1791,1807,1790,1634,1646,1633,42,1647,1648,1662,0,1791,1792,1810,1634,1635,1649,42,1648,1650,1662,0,1794,1795,1811,1635,1637,1649,42,1650,1654,1662,0,1795,1799,1811,1637,1641,1649,42,1654,1661,1662,0,1799,1812,1811,1641,1648,1649,42,1654,1663,1661,0,1799,1813,1812,1641,1650,1648,42,1655,1663,1654,0,1800,1813,1799,1642,1650,1641,42,1655,1664,1663,0,1800,1814,1813,1642,1651,1650,42,1665,1664,1655,0,1815,1814,1800,1652,1651,1642,42,1666,1664,1665,0,1816,1814,1815,1653,1651,1652,42,1667,1664,1666,0,1817,1814,1816,1654,1651,1653,42,1663,1664,1667,0,1813,1814,1817,1650,1651,1654,42,1668,1663,1667,0,1818,1813,1817,1655,1650,1654,42,1663,1668,1661,0,1813,1818,1812,1650,1655,1648,42,1661,1668,1669,0,1809,1819,1820,1648,1655,1656,42,1669,1668,1670,0,1820,1819,1821,1656,1655,1657,42,1668,1667,1670,0,1818,1817,1822,1655,1654,1657,42,1670,1667,1671,0,1822,1817,1823,1657,1654,1658,42,1667,1666,1671,0,1817,1816,1823,1654,1653,1658,42,1671,1666,1672,0,1823,1816,1824,1658,1653,1659,42,1673,1672,1666,0,1825,1824,1816,1660,1659,1653,42,1673,1674,1672,0,1825,1826,1824,1660,1661,1659,42,1673,1675,1674,0,1827,1828,1829,1660,1662,1661,42,1676,1675,1673,0,1830,1828,1827,1663,1662,1660,42,1677,1675,1676,0,1831,1828,1830,1664,1662,1663,42,1677,1678,1675,0,1831,1832,1828,1664,1665,1662,42,1677,1679,1678,0,1831,1833,1832,1664,1666,1665,42,1677,1680,1679,0,1831,1834,1833,1664,1667,1666,42,1677,1681,1680,0,1831,1835,1834,1664,1668,1667,42,1682,1681,1677,0,1836,1835,1831,1669,1668,1664,42,1682,1683,1681,0,1837,1838,1839,1669,1670,1668,42,1682,1671,1683,0,1837,1823,1838,1669,1658,1670,42,1670,1671,1682,0,1822,1823,1837,1657,1658,1669,42,1682,1684,1670,0,1836,1840,1821,1669,1671,1657,42,1684,1682,1677,0,1840,1836,1831,1671,1669,1664,42,1684,1677,1676,0,1840,1831,1830,1671,1664,1663,42,1684,1676,1685,0,1840,1830,1841,1671,1663,1672,42,1685,1676,1673,0,1841,1830,1827,1672,1663,1660,42,1685,1673,1665,0,1841,1827,1842,1672,1660,1652,42,1665,1673,1666,0,1815,1825,1816,1652,1660,1653,42,1657,1685,1665,0,1805,1841,1842,1644,1672,1652,42,1657,1686,1685,0,1805,1843,1841,1644,1673,1672,42,1657,1658,1686,0,1805,1804,1843,1644,1645,1673,42,1658,1660,1686,0,1804,1808,1843,1645,1647,1673,42,1660,1685,1686,0,1808,1841,1843,1647,1672,1673,42,1660,1669,1685,0,1808,1820,1841,1647,1656,1672,42,1660,1661,1669,0,1808,1809,1820,1647,1648,1656,42,1669,1684,1685,0,1820,1840,1841,1656,1671,1672,42,1670,1684,1669,0,1821,1840,1820,1657,1671,1656,42,1655,1657,1665,0,1800,1802,1815,1642,1644,1652,42,1671,1672,1683,0,1823,1824,1838,1658,1659,1670,42,1672,1687,1683,0,1824,1844,1838,1659,1674,1670,42,1674,1687,1672,0,1826,1844,1824,1661,1674,1659,42,1674,1688,1687,0,1826,1845,1844,1661,1675,1674,42,1674,1689,1688,0,1829,1846,1847,1661,1676,1675,42,1674,1678,1689,0,1829,1832,1846,1661,1665,1676,42,1674,1675,1678,0,1829,1828,1832,1661,1662,1665,42,1689,1678,1690,0,1846,1832,1848,1676,1665,1677,42,1679,1690,1678,0,1833,1848,1832,1666,1677,1665,42,1679,1691,1690,0,1833,1849,1848,1666,1678,1677,42,1679,1692,1691,0,1833,1850,1849,1666,1679,1678,42,1679,1680,1692,0,1833,1834,1850,1666,1667,1679,42,1680,1693,1692,0,1834,1851,1850,1667,1680,1679,42,1694,1693,1680,0,1852,1851,1834,1681,1680,1667,42,1696,1695,1694,0,1853,1854,1855,1682,1683,1681,42,1696,1697,1695,0,1853,1856,1854,1682,1684,1683,42,1696,1698,1697,0,1853,1857,1856,1682,1685,1684,42,1699,1698,1696,0,1858,1857,1853,1686,1685,1682,42,1700,1701,1698,0,1859,1860,1861,1687,1688,1685,42,1706,1704,1705,0,1862,1863,1864,1689,1690,1691,42,1706,1707,1704,0,1862,1865,1863,1689,1692,1690,42,1706,1708,1707,0,1862,1866,1865,1689,1693,1692,42,1709,1708,1706,0,1867,1866,1862,1694,1693,1689,42,1693,1711,1692,0,1851,1868,1850,1680,1695,1679,42,1695,1712,1693,0,1869,1870,1851,1683,1696,1680,42,1708,1722,1707,0,1866,1871,1865,1693,1697,1692,42,1707,1722,1721,0,1865,1871,1872,1692,1697,1698,42,1707,1721,1720,0,1865,1872,1873,1692,1698,1699,42,1707,1720,1704,0,1865,1873,1863,1692,1699,1690,42,1726,1702,1700,0,1874,1875,1859,1700,1701,1687,42,1688,1726,1700,0,1847,1874,1859,1675,1700,1687,42,1689,1726,1688,0,1846,1874,1847,1676,1700,1675,42,1689,1690,1725,0,1846,1848,1876,1676,1677,1702,42,1688,1700,1699,0,1845,1877,1858,1675,1687,1686,42,1688,1699,1687,0,1845,1858,1844,1675,1686,1674,42,1687,1699,1696,0,1844,1858,1853,1674,1686,1682,42,1683,1687,1696,0,1838,1844,1853,1670,1674,1682,42,1681,1683,1696,0,1839,1838,1853,1668,1670,1682,42,1681,1696,1694,0,1839,1853,1855,1668,1682,1681,42,1694,1680,1681,0,1852,1834,1835,1681,1667,1668,42,1309,1310,1318,0,1385,1386,1398,1312,1313,1321,42,1318,1310,1727,0,1398,1386,1878,1321,1313,1703,42,1310,1728,1727,0,1386,1879,1878,1313,1704,1703,42,1310,1729,1728,0,1386,1880,1879,1313,1705,1704,42,1311,1729,1310,0,1387,1880,1386,1314,1705,1313,42,1311,1730,1729,0,1387,1881,1880,1314,1706,1705,42,1311,1312,1730,0,1387,1389,1881,1314,1315,1706,42,1312,1731,1730,0,1391,1882,1883,1315,1707,1706,42,1314,1731,1312,0,1392,1882,1391,1317,1707,1315,42,1314,1316,1731,0,1392,1394,1882,1317,1319,1707,42,1316,1732,1731,0,1394,1884,1882,1319,1708,1707,42,1318,1732,1316,0,1396,1884,1394,1321,1708,1319,42,1318,1727,1732,0,1396,1885,1884,1321,1703,1708,42,1727,1733,1732,0,1885,1886,1884,1703,1709,1708,42,1733,1727,1734,0,1887,1878,1888,1709,1703,1710,42,1727,1728,1734,0,1878,1879,1888,1703,1704,1710,42,1729,1734,1728,0,1880,1888,1879,1705,1710,1704,42,1734,1729,1735,0,1888,1880,1889,1710,1705,1711,42,1735,1729,1730,0,1889,1880,1881,1711,1705,1706,42,1735,1730,1736,0,1889,1881,1890,1711,1706,1712,42,1736,1730,1737,0,1891,1883,1892,1712,1706,1713,42,1730,1731,1737,0,1883,1882,1892,1706,1707,1713,42,1737,1731,1732,0,1892,1882,1884,1713,1707,1708,42,1737,1732,1738,0,1892,1884,1893,1713,1708,1714,42,1732,1733,1738,0,1884,1886,1893,1708,1709,1714,42,1733,1739,1738,0,1886,1894,1893,1709,1715,1714,42,1733,1740,1739,0,1886,1895,1894,1709,1716,1715,42,1734,1740,1733,0,1888,1896,1887,1710,1716,1709,42,1734,1741,1740,0,1888,1897,1896,1710,1717,1716,42,1742,1741,1734,0,1898,1897,1888,1718,1717,1710,42,1742,1743,1741,0,1898,1899,1897,1718,1719,1717,42,1742,1744,1743,0,1898,1900,1899,1718,1720,1719,42,1742,1745,1744,0,1898,1901,1900,1718,1721,1720,42,1745,1742,1735,0,1901,1898,1889,1721,1718,1711,42,1735,1742,1734,0,1889,1898,1888,1711,1718,1710,42,1745,1735,1736,0,1901,1889,1890,1721,1711,1712,42,1746,1745,1736,0,1902,1903,1891,1722,1721,1712,42,1745,1746,1747,0,1903,1902,1904,1721,1722,1723,42,1746,1739,1747,0,1902,1894,1904,1722,1715,1723,42,1746,1738,1739,0,1902,1893,1894,1722,1714,1715,42,1738,1746,1737,0,1893,1902,1892,1714,1722,1713,42,1746,1736,1737,0,1902,1891,1892,1722,1712,1713,42,1739,1748,1747,0,1894,1905,1904,1715,1724,1723,42,1740,1748,1739,0,1895,1905,1894,1716,1724,1715,42,1740,1749,1748,0,1895,1906,1905,1716,1725,1724,42,1740,1750,1749,0,1896,1907,1908,1716,1726,1725,42,1741,1750,1740,0,1897,1907,1896,1717,1726,1716,42,1741,1743,1750,0,1897,1899,1907,1717,1719,1726,42,1743,1751,1750,0,1899,1909,1907,1719,1727,1726,42,1743,1752,1751,0,1899,1910,1909,1719,1728,1727,42,1743,1744,1752,0,1899,1900,1910,1719,1720,1728,42,1744,1753,1752,0,1900,1911,1910,1720,1729,1728,42,1744,1754,1753,0,1912,1913,1914,1720,1730,1729,42,1747,1754,1744,0,1904,1913,1912,1723,1730,1720,42,1748,1754,1747,0,1905,1913,1904,1724,1730,1723,42,1754,1748,1755,0,1913,1905,1915,1730,1724,1731,42,1756,1755,1748,0,1916,1915,1905,1732,1731,1724,42,1757,1755,1756,0,1917,1915,1916,1733,1731,1732,42,1758,1755,1757,0,1918,1915,1917,1734,1731,1733,42,1754,1755,1758,0,1913,1915,1918,1730,1731,1734,42,1753,1754,1758,0,1914,1913,1918,1729,1730,1734,42,1753,1758,1759,0,1914,1918,1919,1729,1734,1735,42,1759,1758,1760,0,1919,1918,1920,1735,1734,1736,42,1758,1757,1760,0,1918,1917,1920,1734,1733,1736,42,1760,1757,1761,0,1920,1917,1921,1736,1733,1737,42,1762,1761,1757,0,1922,1921,1917,1738,1737,1733,42,1762,1763,1761,0,1922,1923,1921,1738,1739,1737,42,1762,1764,1763,0,1924,1925,1926,1738,1740,1739,42,1765,1764,1762,0,1927,1925,1924,1741,1740,1738,42,1766,1764,1765,0,1928,1925,1927,1742,1740,1741,42,1766,1767,1764,0,1928,1929,1925,1742,1743,1740,42,1766,1768,1767,0,1928,1930,1929,1742,1744,1743,42,1766,1769,1768,0,1928,1931,1930,1742,1745,1744,42,1766,1770,1769,0,1928,1932,1931,1742,1746,1745,42,1766,1771,1770,0,1928,1933,1932,1742,1747,1746,42,1772,1771,1766,0,1934,1933,1928,1748,1747,1742,42,1772,1759,1771,0,1934,1935,1933,1748,1735,1747,42,1759,1772,1752,0,1935,1934,1910,1735,1748,1728,42,1752,1772,1751,0,1910,1934,1909,1728,1748,1727,42,1772,1765,1751,0,1934,1927,1909,1748,1741,1727,42,1772,1766,1765,0,1934,1928,1927,1748,1742,1741,42,1751,1765,1762,0,1909,1927,1924,1727,1741,1738,42,1751,1762,1756,0,1909,1924,1936,1727,1738,1732,42,1756,1762,1757,0,1916,1922,1917,1732,1738,1733,42,1749,1751,1756,0,1908,1909,1936,1725,1727,1732,42,1749,1750,1751,0,1908,1907,1909,1725,1726,1727,42,1748,1749,1756,0,1905,1906,1916,1724,1725,1732,42,1752,1753,1759,0,1910,1911,1935,1728,1729,1735,42,1759,1760,1771,0,1919,1920,1937,1735,1736,1747,42,1771,1760,1773,0,1937,1920,1938,1747,1736,1749,42,1760,1761,1773,0,1920,1921,1938,1736,1737,1749,42,1761,1774,1773,0,1921,1939,1938,1737,1750,1749,42,1763,1774,1761,0,1923,1939,1921,1739,1750,1737,42,1763,1775,1774,0,1923,1940,1939,1739,1751,1750,42,1763,1776,1775,0,1926,1941,1942,1739,1752,1751,42,1763,1767,1776,0,1926,1929,1941,1739,1743,1752,42,1764,1767,1763,0,1925,1929,1926,1740,1743,1739,42,1776,1767,1777,0,1941,1929,1943,1752,1743,1753,42,1768,1777,1767,0,1930,1943,1929,1744,1753,1743,42,1768,1778,1777,0,1930,1944,1943,1744,1754,1753,42,1768,1779,1778,0,1930,1945,1944,1744,1755,1754,42,1768,1769,1779,0,1930,1931,1945,1744,1745,1755,42,1769,1780,1779,0,1931,1946,1945,1745,1756,1755,42,1781,1780,1769,0,1947,1946,1931,1757,1756,1745,42,1781,1782,1780,0,1948,1949,1950,1757,1758,1756,42,1783,1782,1781,0,1951,1949,1948,1759,1758,1757,42,1783,1784,1782,0,1951,1952,1949,1759,1760,1758,42,1783,1785,1784,0,1951,1953,1952,1759,1761,1760,42,1786,1785,1783,0,1954,1953,1951,1762,1761,1759,42,1786,1787,1785,0,1954,1955,1953,1762,1763,1761,42,1775,1787,1786,0,1940,1955,1954,1751,1763,1762,42,1775,1788,1787,0,1942,1956,1957,1751,1764,1763,42,1776,1788,1775,0,1941,1956,1942,1752,1764,1751,42,1780,1795,1779,0,1946,1958,1945,1756,1765,1755,42,1780,1782,1796,0,1946,1959,1960,1756,1758,1766,42,1782,1797,1796,0,1959,1961,1960,1758,1767,1766,42,1804,1801,1805,0,1962,1963,1964,1768,1769,1770,42,1805,1801,1785,0,1964,1963,1965,1770,1769,1761,42,1787,1805,1785,0,1957,1964,1965,1763,1770,1761,42,1790,1808,1805,0,1966,1967,1964,1771,1772,1770,42,1791,1808,1790,0,1968,1967,1966,1773,1772,1771,42,1792,1808,1791,0,1969,1967,1968,1774,1772,1773,42,1792,1809,1808,0,1969,1970,1967,1774,1775,1772,42,1792,1810,1809,0,1969,1971,1970,1774,1776,1775,42,1793,1810,1792,0,1972,1971,1969,1777,1776,1774,42,1810,1796,1811,0,1971,1960,1973,1776,1766,1778,42,1811,1796,1797,0,1973,1960,1961,1778,1766,1767,42,1812,1797,1800,0,1974,1961,1975,1779,1767,1780,42,1809,1813,1804,0,1970,1976,1962,1775,1781,1768,42,1809,1811,1813,0,1970,1973,1976,1775,1778,1781,42,1810,1811,1809,0,1971,1973,1970,1776,1778,1775,42,1809,1804,1808,0,1970,1962,1967,1775,1768,1772,42,1788,1807,1787,0,1956,1977,1957,1764,1782,1763,42,1776,1777,1789,0,1941,1943,1978,1752,1753,1783,42,1775,1786,1774,0,1940,1954,1939,1751,1762,1750,42,1783,1774,1786,0,1951,1939,1954,1759,1750,1762,42,1773,1774,1783,0,1938,1939,1951,1749,1750,1759,42,1770,1773,1783,0,1979,1938,1951,1746,1749,1759,42,1771,1773,1770,0,1937,1938,1979,1747,1749,1746,42,1770,1783,1781,0,1979,1951,1948,1746,1759,1757,42,1770,1781,1769,0,1932,1947,1931,1746,1757,1745,42,1745,1747,1744,0,1903,1904,1912,1721,1723,1720,42,1296,1297,1225,0,1371,1372,1292,1299,1300,1227,42,1226,1296,1225,0,1293,1371,1292,1228,1299,1227,42,1230,1296,1226,0,1297,1371,1293,1232,1299,1228,42,1228,1230,1226,0,1295,1297,1293,1230,1232,1228,42,1152,1154,1153,3,1980,1981,1982,1154,1158,1155,42,1155,1154,1152,3,1983,1984,1985,1156,1158,1154,42,1385,1155,1152,3,1986,1987,1988,1388,1156,1154,42,1385,1152,1386,3,1989,1990,1991,1388,1154,1389,42,1388,1150,1389,3,1992,1993,1994,1391,1152,1392,42,1150,1149,1389,3,1995,1996,1997,1152,1151,1392,42,1149,1391,1390,3,1998,1999,2000,1151,1395,1393,42,1393,1394,1392,3,2001,2002,2003,1396,1623,1394,42,1393,1395,1394,3,2004,2005,2006,1396,1397,1623,42,1154,1395,1393,3,2007,2008,2009,1158,1397,1396,42,1493,1495,1494,3,2010,2011,2012,1495,1498,1496,42,1504,1503,1489,3,2013,2014,2015,1524,1505,1491,42,1504,1505,1503,3,2016,2017,2018,1524,1521,1505,42,1504,1506,1505,3,2019,2020,2021,1524,1508,1521,42,1507,1506,1504,3,2022,2023,2024,1506,1508,1524,42,1511,1512,1510,3,2025,2026,2027,1511,1784,1510,42,1491,1512,1511,3,2028,2029,2030,1493,1784,1511,42,1491,1492,1512,3,2031,2032,2033,1493,1494,1784,42,1492,1494,1512,3,2034,2035,2036,1494,1496,1784,42,1512,1494,1495,3,2037,2038,2039,1784,1496,1498,42,1512,1495,1510,3,2040,2041,2042,1784,1498,1510,42,1513,1514,1515,3,2043,2044,2045,1512,1513,1514,42,1517,1516,1514,3,2046,2047,2048,1785,1515,1513,42,1518,1516,1517,3,2049,2050,2051,1517,1515,1785,42,1519,1520,1516,3,2052,2053,2054,1516,1523,1515,42,1520,1519,1521,3,2055,2056,2057,1523,1516,1518,42,1521,1519,1518,3,2058,2059,2060,1518,1516,1517,42,1500,1518,1523,3,2061,2062,2063,1502,1517,1786,42,1518,1517,1523,3,2064,2065,2066,1517,1785,1786,42,1499,1523,1517,3,2067,2068,2069,1501,1786,1785,42,1499,1500,1523,3,2070,2071,2072,1501,1502,1786,42,1524,1499,1517,3,2073,2074,2075,1787,1501,1785,42,1496,1499,1524,3,2076,2077,2078,1497,1501,1787,42,1524,1514,1496,3,2079,2080,2081,1787,1513,1497,42,1524,1517,1514,3,2082,2083,2084,1787,1785,1513,42,1502,1525,1522,3,2085,2086,2087,1504,1520,1519,42,1505,1525,1503,3,2088,2089,2090,1521,1520,1505,42,1505,1522,1525,3,2091,2092,2093,1521,1519,1520,42,1508,1521,1522,3,2094,2095,2096,1507,1518,1519,42,1513,1520,1526,3,2097,2098,2099,1512,1523,1522,42,1515,1516,1520,3,2100,2101,2102,1514,1515,1523,42,1526,1520,1521,3,2103,2104,2105,1522,1523,1518,42,1491,1511,1507,3,2106,2107,2108,1493,1511,1506,42,1491,1507,1490,3,2109,2110,2111,1493,1506,1492,42,1490,1507,1504,3,2112,2113,2114,1492,1506,1524,42,1573,1582,1581,3,2115,2116,2117,1571,1581,1579,42,1583,1584,1582,3,2118,2119,2120,1580,1597,1581,42,1585,1584,1583,3,2121,2122,2123,1583,1597,1580,42,1585,1586,1584,3,2124,2125,2126,1583,1596,1597,42,1585,1587,1586,3,2127,2128,2129,1583,1788,1596,42,1585,1588,1587,3,2130,2131,2132,1583,1582,1788,42,1591,1592,1593,3,2133,2134,2135,1586,1587,1789,42,1592,1594,1593,3,2136,2137,2138,1587,1589,1789,42,1596,1597,1594,3,2139,2140,2141,1590,1790,1589,42,1598,1597,1596,3,2142,2143,2144,1791,1790,1590,42,1598,1599,1597,3,2145,2146,2147,1791,1792,1790,42,1600,1599,1598,3,2148,2149,2150,1793,1792,1791,42,1600,1601,1599,3,2151,2152,2153,1793,1593,1792,42,1602,1601,1600,3,2154,2155,2156,1591,1593,1793,42,1587,1603,1604,3,2157,2158,2159,1788,1592,1594,42,1587,1605,1603,3,2160,2161,2162,1788,1595,1592,42,1588,1605,1587,3,2163,2164,2165,1582,1595,1788,42,1589,1603,1605,3,2166,2167,2168,1584,1592,1595,42,1590,1606,1601,3,2169,2170,2171,1585,1794,1593,42,1590,1591,1606,3,2172,2173,2174,1585,1586,1794,42,1606,1591,1607,3,2175,2176,2177,1794,1586,1795,42,1591,1593,1607,3,2178,2179,2180,1586,1789,1795,42,1594,1607,1593,3,2181,2182,2183,1589,1795,1789,42,1594,1599,1607,3,2184,2185,2186,1589,1792,1795,42,1599,1594,1597,3,2187,2188,2189,1792,1589,1790,42,1601,1607,1599,3,2190,2191,2192,1593,1795,1792,42,1606,1607,1601,3,2193,2194,2195,1794,1795,1593,42,1586,1587,1604,3,2196,2197,2198,1596,1788,1594,42,1602,1598,1609,3,2199,2200,2201,1591,1791,1599,42,1602,1600,1598,3,2202,2203,2204,1591,1793,1791,42,1609,1598,1596,3,2205,2206,2207,1599,1791,1590,42,1610,1596,1595,3,2208,2209,2210,1600,1590,1588,42,1611,1610,1595,3,2211,2212,2213,1796,1600,1588,42,1612,1610,1611,3,2214,2215,2216,1601,1600,1796,42,1582,1584,1612,3,2217,2218,2219,1581,1597,1601,42,1582,1612,1611,3,2220,2221,2222,1581,1601,1796,42,1582,1611,1581,3,2223,2224,2225,1581,1796,1579,42,1611,1613,1581,3,2226,2227,2228,1796,1602,1579,42,1611,1595,1613,3,2229,2230,2231,1796,1588,1602,42,1613,1595,1580,3,2232,2233,2234,1602,1588,1578,42,1385,1623,1622,3,2235,2236,2237,1388,1612,1611,42,1385,1386,1623,3,2238,2239,2240,1388,1389,1612,42,1387,1388,1624,3,2241,2242,2243,1390,1391,1613,42,1388,1626,1625,3,2244,2245,2246,1391,1616,1614,42,1388,1389,1626,3,2247,2248,2249,1391,1392,1616,42,1626,1389,1627,3,2250,2251,2252,1616,1392,1615,42,1390,1627,1389,3,2253,2254,2255,1393,1615,1392,42,1391,1628,1627,3,2256,2257,2258,1395,1797,1615,42,1391,1629,1628,3,2259,2260,2261,1395,1798,1797,42,1630,1629,1391,3,2262,2263,2264,1622,1798,1395,42,1631,1629,1630,3,2265,2266,2267,1618,1798,1622,42,1631,1628,1629,3,2268,2269,2270,1618,1797,1798,42,1632,1628,1631,3,2271,2272,2273,1799,1797,1618,42,1625,1628,1632,3,2274,2275,2276,1614,1797,1799,42,1625,1627,1628,3,2277,2278,2279,1614,1615,1797,42,1625,1632,1633,3,2280,2281,2282,1614,1799,1617,42,1633,1632,1631,3,2283,2284,2285,1617,1799,1618,42,1631,1630,1636,3,2286,2287,2288,1618,1622,1621,42,1392,1394,1636,3,2289,2290,2291,1394,1623,1621,42,1622,1623,1639,3,2292,2293,2294,1611,1612,1626,42,1623,1624,1639,3,2295,2296,2297,1612,1613,1626,42,1639,1624,1634,3,2298,2299,2300,1626,1613,1619,42,1154,1393,1153,3,2301,2302,2303,1158,1396,1155,42,1694,1695,1693,3,2304,2305,2306,1681,1683,1680,42,1700,1698,1699,3,2307,2308,2309,1687,1685,1686,42,1702,1701,1700,3,2310,2311,2312,1701,1688,1687,42,1703,1701,1702,3,2313,2314,2315,1800,1688,1701,42,1703,1704,1701,3,2316,2317,2318,1800,1690,1688,42,1705,1704,1703,3,2319,2320,2321,1691,1690,1800,42,1709,1710,1708,3,2322,2323,2324,1694,1801,1693,42,1691,1710,1709,3,2325,2326,2327,1678,1801,1694,42,1691,1692,1710,3,2328,2329,2330,1678,1679,1801,42,1692,1711,1710,3,2331,2332,2333,1679,1695,1801,42,1693,1712,1711,3,2334,2335,2336,1680,1696,1695,42,1695,1713,1712,3,2337,2338,2339,1683,1802,1696,42,1714,1713,1695,3,2340,2341,2342,1803,1802,1683,42,1715,1713,1714,3,2343,2344,2345,1804,1802,1803,42,1715,1716,1713,3,2346,2347,2348,1804,1805,1802,42,1717,1716,1715,3,2349,2350,2351,1806,1805,1804,42,1718,1716,1717,3,2352,2353,2354,1807,1805,1806,42,1718,1719,1716,3,2355,2356,2357,1807,1808,1805,42,1720,1719,1718,3,2358,2359,2360,1699,1808,1807,42,1721,1719,1720,3,2361,2362,2363,1698,1808,1699,42,1722,1719,1721,3,2364,2365,2366,1697,1808,1698,42,1722,1723,1719,3,2367,2368,2369,1697,1809,1808,42,1722,1713,1723,3,2370,2371,2372,1697,1802,1809,42,1722,1712,1713,3,2373,2374,2375,1697,1696,1802,42,1708,1712,1722,3,2376,2377,2378,1693,1696,1697,42,1710,1712,1708,3,2379,2380,2381,1801,1696,1693,42,1710,1711,1712,3,2382,2383,2384,1801,1695,1696,42,1704,1720,1701,3,2385,2386,2387,1690,1699,1688,42,1720,1717,1701,3,2388,2389,2390,1699,1806,1688,42,1720,1718,1717,3,2391,2392,2393,1699,1807,1806,42,1701,1717,1698,3,2394,2395,2396,1688,1806,1685,42,1698,1717,1724,3,2397,2398,2399,1685,1806,1810,42,1717,1715,1724,3,2400,2401,2402,1806,1804,1810,42,1715,1698,1724,3,2403,2404,2405,1804,1685,1810,42,1698,1715,1697,3,2404,2403,2406,1685,1804,1684,42,1714,1697,1715,3,2407,2408,2409,1803,1684,1804,42,1697,1714,1695,3,2408,2407,2410,1684,1803,1683,42,1723,1713,1716,3,2411,2412,2413,1809,1802,1805,42,1723,1716,1719,3,2414,2415,2416,1809,1805,1808,42,1691,1709,1706,3,2417,2418,2419,1678,1694,1689,42,1691,1706,1690,3,2420,2421,2422,1678,1689,1677,42,1690,1706,1725,3,2423,2424,2425,1677,1689,1702,42,1725,1706,1705,3,2426,2427,2428,1702,1689,1691,42,1725,1705,1703,3,2429,2430,2431,1702,1691,1800,42,1725,1703,1726,3,2432,2433,2434,1702,1800,1700,42,1703,1702,1726,3,2435,2436,2437,1800,1701,1700,42,1725,1726,1689,3,2438,2439,2440,1702,1700,1676,42,1789,1788,1776,3,2441,2442,2443,1783,1764,1752,42,1789,1790,1788,3,2444,2445,2446,1783,1771,1764,42,1789,1791,1790,3,2447,2448,2449,1783,1773,1771,42,1789,1792,1791,3,2450,2451,2452,1783,1774,1773,42,1777,1792,1789,3,2453,2454,2455,1753,1774,1783,42,1778,1792,1777,3,2456,2457,2458,1754,1774,1753,42,1778,1793,1792,3,2459,2460,2461,1754,1777,1774,42,1778,1794,1793,3,2462,2463,2464,1754,1811,1777,42,1778,1779,1794,3,2465,2466,2467,1754,1755,1811,42,1779,1795,1794,3,2468,2469,2470,1755,1765,1811,42,1780,1796,1795,3,2471,2472,2473,1756,1766,1765,42,1798,1797,1782,3,2474,2475,2476,1812,1767,1758,42,1799,1797,1798,3,2477,2478,2479,1813,1767,1812,42,1799,1800,1797,3,2480,2481,2482,1813,1780,1767,42,1801,1800,1799,3,2483,2484,2485,1769,1780,1813,42,1802,1800,1801,3,2486,2487,2488,1814,1780,1769,42,1802,1803,1800,3,2489,2490,2491,1814,1815,1780,42,1803,1802,1804,3,2492,2493,2494,1815,1814,1768,42,1804,1802,1801,3,2495,2496,2497,1768,1814,1769,42,1785,1801,1806,3,2498,2499,2500,1761,1769,1816,42,1801,1799,1806,3,2501,2502,2503,1769,1813,1816,42,1784,1806,1799,3,2504,2505,2506,1760,1816,1813,42,1784,1785,1806,3,2507,2508,2509,1760,1761,1816,42,1798,1784,1799,3,2510,2511,2512,1812,1760,1813,42,1782,1784,1798,3,2513,2514,2515,1758,1760,1812,42,1807,1805,1787,3,2516,2517,2518,1782,1770,1763,42,1790,1805,1807,3,2519,2520,2521,1771,1770,1782,42,1793,1794,1810,3,2522,2523,2524,1777,1811,1776,42,1794,1796,1810,3,2525,2526,2527,1811,1766,1776,42,1794,1795,1796,3,2528,2529,2530,1811,1765,1766,42,1811,1797,1812,3,2531,2532,2533,1778,1767,1779,42,1812,1800,1803,3,2534,2535,2536,1779,1780,1815,42,1811,1812,1803,3,2537,2538,2539,1778,1779,1815,42,1811,1803,1813,3,2540,2541,2542,1778,1815,1781,42,1813,1803,1804,3,2543,2544,2545,1781,1815,1768,42,1808,1804,1805,3,2546,2547,2548,1772,1768,1770,42,1790,1807,1788,3,2549,2550,2551,1771,1782,1764,42,1814,1815,1816,0,2552,2553,2554,1817,1818,1819,42,1814,1817,1815,0,2552,2555,2553,1817,1820,1818,42,1817,1814,1818,0,2555,2552,2556,1820,1817,1821,42,1818,1819,1817,0,2556,2557,2555,1821,1822,1820,42,1820,1819,1818,0,2558,2557,2556,1823,1822,1821,42,1820,1821,1819,0,2558,2559,2557,1823,1824,1822,42,1822,1821,1820,0,2560,2559,2558,1825,1824,1823,42,1822,1823,1821,0,2560,2561,2559,1825,1826,1824,42,1824,1823,1822,0,2562,2561,2560,1827,1826,1825,42,1824,1825,1823,0,2562,2563,2561,1827,1828,1826,42,1826,1825,1824,0,2564,2563,2562,1829,1828,1827,42,1827,1825,1826,0,2565,2566,2567,1830,1828,1829,42,1827,1828,1825,0,2565,2568,2566,1830,1831,1828,42,1829,1828,1827,0,2569,2568,2565,1832,1831,1830,42,1829,1830,1828,0,2569,2570,2568,1832,1833,1831,42,1829,1831,1830,0,2569,2571,2570,1832,1834,1833,42,1832,1831,1829,0,2572,2571,2569,1835,1834,1832,42,1832,1833,1831,0,2572,2573,2571,1835,1836,1834,42,1834,1833,1832,0,2574,2573,2572,1837,1836,1835,42,1834,1835,1833,0,2574,2575,2573,1837,1838,1836,42,1836,1835,1834,0,2576,2577,2578,1839,1838,1837,42,1837,1835,1836,0,2579,2577,2576,1840,1838,1839,42,1837,1838,1835,0,2579,2580,2577,1840,1841,1838,42,1839,1838,1837,0,2581,2580,2579,1842,1841,1840,42,1840,1838,1839,0,2582,2580,2581,1843,1841,1842,42,1840,1841,1838,0,2582,2583,2580,1844,1844,1844,42,1840,1842,1841,0,2582,2584,2583,1845,1845,1845,42,1840,1843,1842,0,2585,2586,2587,1843,1846,1847,42,1840,1844,1843,0,2585,2588,2586,1843,1848,1846,42,1839,1844,1840,0,2589,2588,2585,1842,1848,1843,42,1839,1845,1844,0,2589,2590,2588,1842,1849,1848,42,1837,1845,1839,0,2591,2590,2589,1840,1849,1842,42,1837,1846,1845,0,2591,2592,2590,1840,1850,1849,42,1836,1846,1837,0,2593,2592,2591,1839,1850,1840,42,1836,1847,1846,0,2593,2594,2592,1839,1851,1850,42,1848,1847,1836,0,2595,2594,2593,1852,1851,1839,42,1848,1849,1847,0,2595,2596,2594,1852,1853,1851,42,1848,1850,1849,0,2595,2597,2596,1852,1854,1853,42,1851,1850,1848,0,2598,2597,2595,1855,1854,1852,42,1852,1850,1851,0,2599,2597,2598,1856,1854,1855,42,1852,1853,1850,0,2599,2600,2597,1856,1857,1854,42,1854,1853,1852,0,2601,2600,2599,1858,1857,1856,42,1854,1855,1853,0,2601,2602,2600,1858,1859,1857,42,1856,1855,1854,0,2603,2604,2605,1860,1859,1858,42,1856,1857,1855,0,2603,2606,2604,1860,1861,1859,42,1858,1857,1856,0,2607,2608,2603,1862,1861,1860,42,1859,1857,1858,0,2609,2608,2607,1863,1861,1862,42,1859,1860,1857,0,2609,2610,2608,1863,1864,1861,42,1861,1860,1859,0,2611,2610,2609,1865,1864,1863,42,1861,1862,1860,0,2611,2612,2610,1865,1866,1864,42,1861,1863,1862,0,2611,2613,2612,1865,1867,1866,42,1861,1864,1863,0,2611,2614,2613,1865,1868,1867,42,1864,1861,1865,0,2614,2611,2615,1868,1865,1869,42,1865,1861,1866,0,2615,2611,2616,1869,1865,1870,42,1861,1859,1866,0,2611,2609,2616,1865,1863,1870,42,1866,1859,1858,0,2616,2609,2607,1870,1863,1862,42,1867,1866,1858,0,2617,2618,2619,1871,1870,1862,42,1868,1866,1867,0,2620,2618,2617,1872,1870,1871,42,1868,1865,1866,0,2620,2621,2618,1872,1869,1870,42,1869,1865,1868,0,2622,2621,2620,1873,1869,1872,42,1869,1870,1865,0,2622,2623,2621,1873,1874,1869,42,1871,1870,1869,0,2624,2623,2622,1875,1874,1873,42,1871,1872,1870,0,2624,2625,2623,1875,1876,1874,42,1873,1872,1871,0,2626,2625,2624,1877,1876,1875,42,1873,1874,1872,0,2626,2627,2625,1877,1878,1876,42,1875,1874,1873,0,2628,2627,2626,1879,1878,1877,42,1875,1876,1874,0,2629,2630,2631,1879,1880,1878,42,1875,1877,1876,0,2629,2632,2630,1879,1881,1880,42,1878,1877,1875,0,2633,2632,2629,1882,1881,1879,42,1878,1879,1877,0,2633,2634,2632,1882,1883,1881,42,1880,1879,1878,0,2635,2634,2633,1884,1883,1882,42,1880,1881,1879,0,2635,2636,2634,1884,1885,1883,42,1882,1881,1880,0,2637,2636,2635,1886,1885,1884,42,1882,1883,1881,0,2637,2638,2636,1886,1887,1885,42,1884,1883,1882,0,2639,2638,2637,1888,1887,1886,42,1884,1885,1883,0,2639,2640,2638,1888,1889,1887,42,1886,1885,1884,0,2641,2640,2639,1890,1889,1888,42,1886,1887,1885,0,2641,2642,2640,1890,1891,1889,42,1887,1888,1885,0,2642,2643,2640,1891,1892,1889,42,1887,1889,1888,0,2642,2644,2643,1891,1893,1892,42,1889,1890,1888,0,2644,2645,2643,1893,1894,1892,42,1889,1891,1890,0,2644,2646,2645,1893,1895,1894,42,1891,1892,1890,0,2646,2647,2645,1895,1896,1894,42,1893,1892,1891,0,2648,2647,2646,1897,1896,1895,42,1893,1894,1892,0,2648,2649,2647,1897,1898,1896,42,1895,1894,1893,0,2650,2649,2648,1899,1898,1897,42,1896,1894,1895,0,2651,2649,2650,1900,1898,1899,42,1896,1897,1894,0,2651,2652,2649,1900,1901,1898,42,1898,1897,1896,0,2653,2652,2651,1902,1901,1900,42,1898,1899,1897,0,2653,2654,2652,1902,1903,1901,42,1898,1880,1899,0,2653,2655,2654,1902,1884,1903,42,1898,1882,1880,0,2653,2656,2655,1902,1886,1884,42,1900,1882,1898,0,2657,2656,2653,1904,1886,1902,42,1900,1884,1882,0,2657,2658,2656,1904,1888,1886,42,1901,1884,1900,0,2659,2658,2657,1905,1888,1904,42,1901,1886,1884,0,2659,2660,2658,1905,1890,1888,42,1901,1900,1902,0,2659,2657,2661,1905,1904,1906,42,1900,1896,1902,0,2657,2651,2661,1904,1900,1906,42,1900,1898,1896,0,2657,2653,2651,1904,1902,1900,42,1902,1896,1895,0,2661,2651,2650,1906,1900,1899,42,1899,1880,1878,0,2654,2655,2662,1903,1884,1882,42,1899,1878,1903,0,2654,2662,2663,1903,1882,1907,42,1903,1878,1904,0,2663,2662,2664,1907,1882,1908,42,1878,1875,1904,0,2662,2628,2664,1882,1879,1908,42,1904,1875,1873,0,2664,2628,2626,1908,1879,1877,42,1904,1873,1905,0,2664,2626,2665,1908,1877,1909,42,1873,1906,1905,0,2626,2666,2665,1877,1910,1909,42,1873,1907,1906,0,2626,2667,2666,1877,1911,1910,42,1871,1907,1873,0,2624,2667,2626,1875,1911,1877,42,1869,1907,1871,0,2622,2667,2624,1873,1911,1875,42,1868,1907,1869,0,2620,2667,2622,1872,1911,1873,42,1868,1818,1907,0,2620,2556,2667,1872,1821,1911,42,1867,1818,1868,0,2617,2556,2620,1871,1821,1872,42,1867,1820,1818,0,2617,2558,2556,1871,1823,1821,42,1867,1822,1820,0,2617,2560,2558,1871,1825,1823,42,1867,1908,1822,0,2617,2668,2560,1871,1912,1825,42,1867,1858,1908,0,2617,2619,2668,1871,1862,1912,42,1908,1858,1856,0,2668,2619,2669,1912,1862,1860,42,1908,1856,1909,0,2668,2669,2670,1912,1860,1913,42,1909,1856,1910,0,2670,2669,2671,1913,1860,1914,42,1856,1854,1910,0,2669,2672,2671,1860,1858,1914,42,1910,1854,1911,0,2673,2601,2674,1914,1858,1915,42,1854,1852,1911,0,2601,2599,2674,1858,1856,1915,42,1911,1852,1851,0,2674,2599,2598,1915,1856,1855,42,1851,1829,1911,0,2675,2569,2676,1855,1832,1915,42,1912,1829,1851,0,2677,2569,2675,1916,1832,1855,42,1912,1832,1829,0,2677,2572,2569,1916,1835,1832,42,1912,1834,1832,0,2677,2574,2572,1916,1837,1835,42,1912,1913,1834,0,2677,2678,2574,1916,1917,1837,42,1912,1914,1913,0,2679,2680,2681,1916,1918,1917,42,1912,1848,1914,0,2679,2595,2680,1916,1852,1918,42,1851,1848,1912,0,2598,2595,2679,1855,1852,1916,42,1848,1836,1914,0,2595,2593,2680,1852,1839,1918,42,1914,1836,1915,0,2680,2593,2682,1918,1839,1919,42,1915,1836,1916,0,2682,2593,2683,1919,1839,1920,42,1836,1917,1916,0,2576,2684,2685,1921,1921,1921,42,1834,1917,1836,0,2578,2684,2576,1922,1922,1922,42,1918,1917,1834,0,2686,2687,2574,1923,1924,1837,42,1918,1919,1917,0,2686,2688,2687,1923,1925,1924,42,1918,1920,1919,0,2689,2690,2691,1923,1926,1925,42,1918,1915,1920,0,2689,2682,2690,1923,1919,1926,42,1914,1915,1918,0,2680,2682,2689,1918,1919,1923,42,1913,1914,1918,0,2681,2680,2689,1917,1918,1923,42,1913,1918,1834,0,2678,2686,2574,1917,1923,1837,42,1915,1916,1920,0,2682,2683,2690,1919,1920,1926,42,1920,1916,1921,0,2690,2683,2692,1926,1920,1927,42,1916,1922,1921,0,2685,2693,2694,1928,1928,1928,42,1917,1922,1916,0,2684,2693,2685,1929,1929,1929,42,1919,1922,1917,0,2688,2695,2687,1925,1930,1924,42,1921,1922,1919,0,2694,2693,2696,1931,1931,1931,42,1921,1919,1920,0,2694,2696,2697,1932,1932,1932,42,1911,1829,1827,0,2676,2569,2565,1915,1832,1830,42,1911,1827,1826,0,2676,2565,2567,1915,1830,1829,42,1911,1826,1910,0,2676,2567,2698,1915,1829,1914,42,1909,1910,1826,0,2670,2671,2564,1913,1914,1829,42,1909,1826,1824,0,2670,2564,2562,1913,1829,1827,42,1909,1824,1822,0,2670,2562,2560,1913,1827,1825,42,1908,1909,1822,0,2668,2670,2560,1912,1913,1825,42,1818,1814,1907,0,2556,2552,2667,1821,1817,1911,42,1907,1814,1923,0,2667,2552,2699,1911,1817,1933,42,1923,1814,1816,0,2699,2552,2554,1933,1817,1819,42,1923,1816,1924,0,2699,2554,2700,1933,1819,1934,42,1924,1816,1925,0,2700,2554,2701,1934,1819,1935,42,1925,1816,1926,0,2701,2554,2702,1935,1819,1936,42,1816,1815,1926,0,2554,2553,2702,1819,1818,1936,42,1926,1815,1927,0,2702,2553,2703,1936,1818,1937,42,1815,1928,1927,0,2553,2704,2703,1818,1938,1937,42,1815,1819,1928,0,2553,2557,2704,1818,1822,1938,42,1817,1819,1815,0,2555,2557,2553,1820,1822,1818,42,1819,1929,1928,0,2557,2705,2704,1822,1939,1938,42,1819,1821,1929,0,2557,2559,2705,1822,1824,1939,42,1821,1823,1929,0,2559,2561,2705,1824,1826,1939,42,1929,1823,1930,0,2705,2561,2706,1939,1826,1940,42,1823,1825,1930,0,2561,2563,2706,1826,1828,1940,42,1930,1825,1931,0,2706,2563,2707,1940,1828,1941,42,1825,1828,1931,0,2566,2568,2708,1828,1831,1941,42,1931,1828,1932,0,2708,2568,2709,1941,1831,1942,42,1828,1830,1932,0,2568,2570,2709,1831,1833,1942,42,1932,1830,1933,0,2709,2570,2710,1942,1833,1943,42,1933,1830,1831,0,2710,2570,2571,1943,1833,1834,42,1933,1831,1934,0,2710,2571,2711,1943,1834,1944,42,1831,1935,1934,0,2571,2712,2711,1834,1945,1944,42,1833,1935,1831,0,2573,2712,2571,1836,1945,1834,42,1833,1936,1935,0,2573,2713,2712,1836,1946,1945,42,1833,1937,1936,0,2573,2714,2713,1836,1947,1946,42,1835,1937,1833,0,2575,2714,2573,1838,1947,1836,42,1835,1838,1937,0,2575,2715,2714,1838,1841,1947,42,1838,1938,1937,0,2715,2716,2714,1841,1948,1947,42,1838,1841,1938,0,2715,2717,2716,1841,1949,1948,42,1841,1939,1938,0,2717,2718,2716,1949,1950,1948,42,1841,1940,1939,0,2717,2719,2718,1949,1951,1950,42,1842,1940,1841,0,2584,2720,2583,1952,1952,1952,42,1939,1940,1842,0,2718,2719,2587,1950,1951,1847,42,1939,1842,1843,0,2718,2587,2586,1950,1847,1846,42,1941,1939,1843,0,2721,2718,2586,1953,1950,1846,42,1938,1939,1941,0,2716,2718,2721,1948,1950,1953,42,1938,1941,1942,0,2716,2721,2722,1948,1953,1954,42,1943,1942,1941,0,2723,2722,2721,1955,1954,1953,42,1943,1936,1942,0,2723,2713,2722,1955,1946,1954,42,1943,1944,1936,0,2723,2724,2713,1955,1956,1946,42,1945,1944,1943,0,2725,2724,2723,1957,1956,1955,42,1946,1944,1945,0,2726,2724,2725,1958,1956,1957,42,1946,1934,1944,0,2726,2711,2724,1958,1944,1956,42,1947,1934,1946,0,2727,2711,2726,1959,1944,1958,42,1947,1933,1934,0,2727,2710,2711,1959,1943,1944,42,1947,1948,1933,0,2727,2728,2710,1959,1960,1943,42,1849,1948,1947,0,2596,2728,2727,1853,1960,1959,42,1849,1949,1948,0,2596,2729,2728,1853,1961,1960,42,1849,1950,1949,0,2596,2730,2729,1853,1962,1961,42,1850,1950,1849,0,2597,2730,2596,1854,1962,1853,42,1850,1853,1950,0,2597,2600,2730,1854,1857,1962,42,1853,1855,1950,0,2600,2602,2730,1857,1859,1962,42,1855,1951,1950,0,2602,2731,2730,1859,1963,1962,42,1857,1951,1855,0,2606,2732,2604,1861,1963,1859,42,1857,1952,1951,0,2606,2733,2732,1861,1964,1963,42,1857,1860,1952,0,2606,2610,2733,1861,1864,1964,42,1952,1860,1953,0,2733,2610,2734,1964,1864,1965,42,1860,1862,1953,0,2610,2612,2734,1864,1866,1965,42,1862,1954,1953,0,2612,2735,2734,1866,1966,1965,42,1862,1863,1954,0,2612,2613,2735,1866,1867,1966,42,1863,1927,1954,0,2613,2703,2735,1867,1937,1966,42,1863,1926,1927,0,2613,2702,2703,1867,1936,1937,42,1863,1955,1926,0,2613,2736,2702,1867,1967,1936,42,1956,1955,1863,0,2737,2736,2613,1968,1967,1867,42,1956,1957,1955,0,2737,2738,2736,1968,1969,1967,42,1957,1956,1870,0,2738,2737,2739,1969,1968,1874,42,1870,1956,1864,0,2739,2737,2614,1874,1968,1868,42,1864,1956,1863,0,2614,2737,2613,1868,1968,1867,42,1870,1864,1865,0,2739,2614,2615,1874,1868,1869,42,1872,1957,1870,0,2740,2738,2739,1876,1969,1874,42,1876,1957,1872,0,2630,2738,2740,1880,1969,1876,42,1957,1876,1955,0,2738,2630,2736,1969,1880,1967,42,1876,1958,1955,0,2630,2741,2736,1880,1970,1967,42,1876,1959,1958,0,2630,2742,2741,1880,1971,1970,42,1877,1959,1876,0,2632,2742,2630,1881,1971,1880,42,1877,1960,1959,0,2632,2743,2742,1881,1972,1971,42,1879,1960,1877,0,2634,2743,2632,1883,1972,1881,42,1881,1960,1879,0,2636,2743,2634,1885,1972,1883,42,1881,1961,1960,0,2636,2744,2743,1885,1973,1972,42,1883,1961,1881,0,2638,2744,2636,1887,1973,1885,42,1883,1962,1961,0,2638,2745,2744,1887,1974,1973,42,1885,1962,1883,0,2640,2745,2638,1889,1974,1887,42,1885,1888,1962,0,2640,2643,2745,1889,1892,1974,42,1888,1963,1962,0,2643,2746,2745,1892,1975,1974,42,1888,1890,1963,0,2643,2645,2746,1892,1894,1975,42,1890,1964,1963,0,2645,2747,2746,1894,1976,1975,42,1892,1964,1890,0,2647,2747,2645,1896,1976,1894,42,1892,1965,1964,0,2647,2748,2747,1896,1977,1976,42,1894,1965,1892,0,2649,2748,2647,1898,1977,1896,42,1897,1965,1894,0,2652,2748,2649,1901,1977,1898,42,1897,1966,1965,0,2652,2749,2748,1901,1978,1977,42,1899,1966,1897,0,2654,2749,2652,1903,1978,1901,42,1899,1903,1966,0,2654,2663,2749,1903,1907,1978,42,1903,1967,1966,0,2663,2750,2749,1907,1979,1978,42,1903,1904,1967,0,2663,2664,2750,1907,1908,1979,42,1904,1905,1967,0,2664,2665,2750,1908,1909,1979,42,1967,1905,1968,0,2750,2665,2751,1979,1909,1980,42,1906,1968,1905,0,2666,2751,2665,1910,1980,1909,42,1906,1969,1968,0,2666,2752,2751,1910,1981,1980,42,1906,1923,1969,0,2666,2699,2752,1910,1933,1981,42,1907,1923,1906,0,2667,2699,2666,1911,1933,1910,42,1970,1969,1923,0,2753,2752,2699,1982,1981,1933,42,1971,1969,1970,0,2754,2752,2753,1983,1981,1982,42,1968,1969,1971,0,2751,2752,2754,1980,1981,1983,42,1972,1968,1971,0,2755,2751,2754,1984,1980,1983,42,1973,1968,1972,0,2756,2751,2755,1985,1980,1984,42,1967,1968,1973,0,2750,2751,2756,1979,1980,1985,42,1967,1973,1974,0,2750,2756,2757,1979,1985,1986,42,1974,1973,1975,0,2757,2756,2758,1986,1985,1987,42,1975,1973,1972,0,2758,2756,2755,1987,1985,1984,42,1975,1972,1976,0,2758,2755,2759,1987,1984,1988,42,1976,1972,1977,0,2759,2755,2760,1988,1984,1989,42,1972,1978,1977,0,2755,2761,2760,1984,1990,1989,42,1972,1971,1978,0,2755,2754,2761,1984,1983,1990,42,1971,1979,1978,0,2754,2762,2761,1983,1991,1990,42,1971,1970,1979,0,2754,2753,2762,1983,1982,1991,42,1970,1925,1979,0,2753,2701,2762,1982,1935,1991,42,1970,1924,1925,0,2753,2700,2701,1982,1934,1935,42,1970,1923,1924,0,2753,2699,2700,1982,1933,1934,42,1958,1979,1925,0,2741,2762,2701,1970,1991,1935,42,1958,1959,1979,0,2741,2742,2762,1970,1971,1991,42,1959,1978,1979,0,2742,2761,2762,1971,1990,1991,42,1960,1978,1959,0,2743,2761,2742,1972,1990,1971,42,1960,1977,1978,0,2743,2760,2761,1972,1989,1990,42,1961,1977,1960,0,2744,2760,2743,1973,1989,1972,42,1961,1976,1977,0,2744,2759,2760,1973,1988,1989,42,1962,1976,1961,0,2745,2759,2744,1974,1988,1973,42,1962,1963,1976,0,2745,2746,2759,1974,1975,1988,42,1963,1975,1976,0,2746,2758,2759,1975,1987,1988,42,1964,1975,1963,0,2747,2758,2746,1976,1987,1975,42,1964,1974,1975,0,2747,2757,2758,1976,1986,1987,42,1965,1974,1964,0,2748,2757,2747,1977,1986,1976,42,1966,1974,1965,0,2749,2757,2748,1978,1986,1977,42,1966,1967,1974,0,2749,2750,2757,1978,1979,1986,42,1955,1958,1925,0,2736,2741,2701,1967,1970,1935,42,1955,1925,1926,0,2736,2701,2702,1967,1935,1936,42,1874,1876,1872,0,2631,2630,2740,1878,1880,1876,42,1927,1928,1954,0,2703,2704,2735,1937,1938,1966,42,1928,1929,1954,0,2704,2705,2735,1938,1939,1966,42,1954,1929,1953,0,2735,2705,2734,1966,1939,1965,42,1929,1980,1953,0,2705,2763,2734,1939,1992,1965,42,1929,1930,1980,0,2705,2706,2763,1939,1940,1992,42,1930,1981,1980,0,2706,2764,2763,1940,1993,1992,42,1930,1931,1981,0,2706,2707,2764,1940,1941,1993,42,1931,1932,1981,0,2708,2709,2765,1941,1942,1993,42,1981,1932,1949,0,2765,2709,2729,1993,1942,1961,42,1948,1949,1932,0,2728,2729,2709,1960,1961,1942,42,1948,1932,1933,0,2728,2709,2710,1960,1942,1943,42,1951,1981,1949,0,2731,2765,2729,1963,1993,1961,42,1951,1952,1981,0,2732,2733,2764,1963,1964,1993,42,1952,1980,1981,0,2733,2763,2764,1964,1992,1993,42,1952,1953,1980,0,2733,2734,2763,1964,1965,1992,42,1950,1951,1949,0,2730,2731,2729,1962,1963,1961,42,1847,1849,1947,0,2594,2596,2727,1851,1853,1959,42,1847,1947,1846,0,2594,2727,2592,1851,1959,1850,42,1846,1947,1946,0,2592,2727,2726,1850,1959,1958,42,1846,1946,1945,0,2592,2726,2725,1850,1958,1957,42,1846,1945,1845,0,2592,2725,2590,1850,1957,1849,42,1845,1945,1982,0,2590,2725,2766,1849,1957,1994,42,1982,1945,1943,0,2766,2725,2723,1994,1957,1955,42,1982,1943,1983,0,2766,2723,2767,1994,1955,1995,42,1983,1943,1941,0,2767,2723,2721,1995,1955,1953,42,1941,1843,1983,0,2721,2586,2767,1953,1846,1995,42,1844,1983,1843,0,2588,2767,2586,1848,1995,1846,42,1844,1982,1983,0,2588,2766,2767,1848,1994,1995,42,1845,1982,1844,0,2590,2766,2588,1849,1994,1848,42,1934,1935,1944,0,2711,2712,2724,1944,1945,1956,42,1944,1935,1936,0,2724,2712,2713,1956,1945,1946,42,1937,1942,1936,0,2714,2722,2713,1947,1954,1946,42,1937,1938,1942,0,2714,2716,2722,1947,1948,1954,42,1984,1985,1986,0,2768,2769,2770,1996,1997,1998,42,1984,1987,1985,0,2768,2771,2769,1996,1999,1997,42,1987,1984,1988,0,2771,2768,2772,1999,1996,2000,42,1988,1990,1989,0,2772,2773,2774,2000,2001,2002,42,1991,1992,1990,0,2775,2776,2773,2003,2004,2001,42,1995,1992,1994,0,2777,2776,2778,2005,2004,2006,42,1985,1994,1996,0,2769,2778,2779,1997,2006,2007,42,1996,1994,1997,0,2779,2778,2780,2007,2006,2008,42,2001,2003,2002,0,2781,2782,2783,2009,2010,2011,42,2001,1991,2003,0,2781,2775,2782,2009,2003,2010,42,2003,1991,1988,0,2782,2775,2772,2010,2003,2000,42,2003,1988,2004,0,2782,2772,2784,2010,2000,2012,42,1988,1984,2004,0,2772,2768,2784,2000,1996,2012,42,2004,1984,2005,0,2784,2768,2785,2012,1996,2013,42,2005,1984,1986,0,2785,2768,2770,2013,1996,1998,42,2005,1986,2006,0,2785,2770,2786,2013,1998,2014,42,1986,1996,2007,0,2770,2779,2787,1998,2007,2015,42,2010,2008,2009,0,2788,2789,2790,2016,2017,2018,42,2015,2004,2014,0,2791,2784,2792,2019,2012,2020,42,2015,2003,2004,0,2791,2782,2784,2019,2010,2012,42,2018,2017,2013,0,2793,2794,2795,2021,2022,2023,42,2019,2017,2018,0,2796,2794,2793,2024,2022,2021,42,2019,2002,2017,0,2796,2783,2794,2024,2011,2022,42,2020,2002,2019,0,2797,2783,2796,2025,2011,2024,42,2020,2021,2002,0,2797,2798,2783,2025,2026,2011,42,2022,2021,2020,0,2799,2800,2801,2027,2026,2025,42,2022,2023,2021,0,2799,2802,2800,2027,2028,2026,42,2024,2023,2022,0,2803,2802,2799,2029,2028,2027,42,2025,2023,2024,0,2804,2802,2803,2030,2028,2029,42,2026,2023,2025,0,2805,2802,2804,2031,2028,2030,42,2026,2027,2023,0,2805,2806,2802,2031,2032,2028,42,2026,2028,2027,0,2805,2807,2806,2031,2033,2032,42,2026,2029,2028,0,2805,2808,2807,2031,2034,2033,42,2026,2030,2029,0,2805,2809,2808,2031,2035,2034,42,2030,2026,2025,0,2809,2805,2804,2035,2031,2030,42,2030,2025,2031,0,2809,2804,2810,2035,2030,2036,42,2031,2025,2024,0,2810,2804,2803,2036,2030,2029,42,2032,2031,2024,0,2811,2810,2803,2037,2036,2029,42,2033,2031,2032,0,2812,2810,2811,2038,2036,2037,42,2033,2034,2031,0,2812,2813,2810,2038,2039,2036,42,2035,2034,2033,0,2814,2813,2812,2040,2039,2038,42,2035,2036,2034,0,2814,2815,2813,2040,2041,2039,42,2035,2037,2036,0,2814,2816,2815,2040,2042,2041,42,2038,2037,2035,0,2817,2816,2814,2043,2042,2040,42,2039,2037,2038,0,2818,2816,2817,2044,2042,2043,42,2039,2040,2037,0,2818,2819,2816,2044,2045,2042,42,2041,2040,2039,0,2820,2819,2818,2046,2045,2044,42,2042,2040,2041,0,2821,2819,2820,2047,2045,2046,42,2042,2043,2040,0,2821,2822,2819,2047,2048,2045,42,2042,2044,2043,0,2821,2823,2822,2047,2049,2048,42,2045,2044,2042,0,2824,2823,2821,2050,2049,2047,42,2045,2046,2044,0,2824,2825,2823,2050,2051,2049,42,2047,2046,2045,0,2826,2825,2824,2052,2051,2050,42,2047,2048,2046,0,2826,2827,2825,2052,2053,2051,42,2049,2048,2047,0,2828,2827,2826,2054,2053,2052,42,2049,2050,2048,0,2828,2829,2827,2054,2055,2053,42,2051,2050,2049,0,2830,2829,2828,2056,2055,2054,42,2051,2052,2050,0,2830,2831,2829,2056,2057,2055,42,2053,2052,2051,0,2832,2831,2830,2058,2057,2056,42,2053,2054,2052,0,2832,2833,2831,2058,2059,2057,42,2055,2054,2053,0,2834,2833,2832,2060,2059,2058,42,2055,2056,2054,0,2834,2835,2833,2060,2061,2059,42,2057,2056,2055,0,2836,2835,2834,2062,2061,2060,42,2057,2058,2056,0,2836,2837,2835,2062,2063,2061,42,2059,2058,2057,0,2838,2837,2836,2064,2063,2062,42,2059,2060,2058,0,2838,2839,2837,2064,2065,2063,42,2061,2060,2059,0,2840,2841,2842,2066,2065,2064,42,2061,2062,2060,0,2840,2843,2841,2066,2067,2065,42,2061,2063,2062,0,2840,2844,2843,2066,2068,2067,42,2064,2063,2061,0,2845,2844,2840,2069,2068,2066,42,2064,2065,2063,0,2845,2846,2844,2069,2070,2068,42,2064,2066,2065,0,2845,2847,2846,2069,2071,2070,42,2066,2064,2067,0,2847,2845,2848,2071,2069,2072,42,2067,2064,2068,0,2848,2845,2849,2072,2069,2073,42,2064,2069,2068,0,2850,2851,2852,2069,2074,2073,42,2070,2069,2064,0,2853,2851,2850,2075,2074,2069,42,2071,2069,2070,0,2854,2851,2853,2076,2074,2075,42,2071,2072,2069,0,2854,2855,2851,2076,2077,2074,42,2071,2073,2072,0,2854,2856,2855,2076,2078,2077,42,2071,2074,2073,0,2854,2857,2856,2076,2079,2078,42,2071,2075,2074,0,2854,2858,2857,2076,2080,2079,42,2076,2075,2071,0,2859,2858,2854,2081,2080,2076,42,2076,2077,2075,0,2859,2860,2858,2081,2082,2080,42,2078,2077,2076,0,2861,2860,2859,2083,2082,2081,42,2079,2077,2078,0,2862,2860,2861,2084,2082,2083,42,2079,2080,2077,0,2862,2863,2860,2084,2085,2082,42,2081,2080,2079,0,2864,2863,2862,2086,2085,2084,42,2081,2082,2080,0,2864,2865,2863,2086,2087,2085,42,2081,2083,2082,0,2864,2866,2865,2086,2088,2087,42,2081,2084,2083,0,2867,2868,2869,2086,2089,2088,42,2085,2084,2081,0,2870,2868,2867,2090,2089,2086,42,2085,2086,2084,0,2870,2871,2868,2090,2091,2089,42,2085,2087,2086,0,2870,2872,2871,2090,2092,2091,42,2088,2087,2085,0,2873,2872,2870,2093,2092,2090,42,2088,2089,2087,0,2873,2874,2872,2093,2094,2092,42,2090,2089,2088,0,2875,2874,2873,2095,2094,2093,42,2090,2091,2089,0,2875,2876,2874,2095,2096,2094,42,2090,2092,2091,0,2875,2877,2876,2095,2097,2096,42,2090,2093,2092,0,2875,2878,2877,2095,2098,2097,42,2094,2093,2090,0,2879,2878,2875,2099,2098,2095,42,2095,2093,2094,0,2880,2878,2879,2100,2098,2099,42,2095,2096,2093,0,2880,2881,2878,2100,2101,2098,42,2097,2096,2095,0,2882,2881,2880,2102,2101,2100,42,2097,2098,2096,0,2882,2883,2881,2102,2103,2101,42,2099,2098,2097,0,2884,2883,2882,2104,2103,2102,42,2099,2100,2098,0,2884,2885,2883,2104,2105,2103,42,2101,2100,2099,0,2886,2887,2888,2106,2105,2104,42,2101,2102,2100,0,2886,2889,2887,2106,2107,2105,42,2101,2103,2102,0,2886,2890,2889,2106,2108,2107,42,2104,2103,2101,0,2891,2890,2886,2109,2108,2106,42,2105,2103,2104,0,2892,2890,2891,2110,2108,2109,42,2105,2106,2103,0,2892,2893,2890,2110,2111,2108,42,2107,2106,2105,0,2894,2893,2892,2112,2111,2110,42,2107,2108,2106,0,2894,2895,2893,2112,2113,2111,42,2109,2108,2107,0,2896,2895,2894,2114,2113,2112,42,2109,2110,2108,0,2896,2897,2895,2114,2115,2113,42,2111,2110,2109,0,2898,2897,2896,2116,2115,2114,42,2111,2112,2110,0,2898,2899,2897,2116,2117,2115,42,2111,2113,2112,0,2898,2900,2899,2116,2118,2117,42,2114,2113,2111,0,2901,2900,2898,2119,2118,2116,42,2114,2115,2113,0,2901,2902,2900,2119,2120,2118,42,2116,2115,2114,0,2903,2902,2901,2121,2120,2119,42,2116,2117,2115,0,2903,2904,2902,2121,2122,2120,42,2118,2117,2116,0,2905,2904,2903,2123,2122,2121,42,2118,2119,2117,0,2905,2906,2904,2123,2124,2122,42,2118,2120,2119,0,2905,2907,2906,2123,2125,2124,42,2121,2120,2118,0,2908,2907,2905,2126,2125,2123,42,2122,2120,2121,0,2909,2907,2908,2127,2125,2126,42,2122,2123,2120,0,2909,2910,2907,2127,2128,2125,42,2122,2124,2123,0,2909,2911,2910,2127,2129,2128,42,2124,2122,2125,0,2911,2909,2912,2129,2127,2130,42,2125,2122,2121,0,2912,2909,2908,2130,2127,2126,42,2125,2121,2126,0,2912,2908,2913,2130,2126,2131,42,2126,2121,2127,0,2913,2908,2914,2131,2126,2132,42,2121,2128,2127,0,2908,2915,2914,2126,2133,2132,42,2121,2118,2128,0,2908,2905,2915,2126,2123,2133,42,2128,2118,2129,0,2915,2905,2916,2133,2123,2134,42,2118,2130,2129,0,2905,2917,2916,2123,2135,2134,42,2130,2118,2116,0,2917,2905,2903,2135,2123,2121,42,2130,2116,2114,0,2917,2903,2901,2135,2121,2119,42,2130,2114,2131,0,2917,2901,2918,2135,2119,2136,42,2131,2114,2111,0,2918,2901,2898,2136,2119,2116,42,2131,2111,2132,0,2918,2898,2919,2136,2116,2137,42,2132,2111,2133,0,2919,2898,2920,2137,2116,2138,42,2133,2111,2109,0,2920,2898,2896,2138,2116,2114,42,2133,2109,2134,0,2920,2896,2921,2138,2114,2139,42,2109,2107,2134,0,2896,2894,2921,2114,2112,2139,42,2134,2107,2105,0,2921,2894,2892,2139,2112,2110,42,2134,2105,2135,0,2921,2892,2922,2139,2110,2140,42,2135,2105,2104,0,2922,2892,2891,2140,2110,2109,42,2135,2104,2136,0,2922,2891,2923,2140,2109,2141,42,2136,2104,2137,0,2923,2891,2924,2141,2109,2142,42,2104,2101,2137,0,2891,2886,2924,2109,2106,2142,42,2137,2101,2099,0,2924,2886,2888,2142,2106,2104,42,2137,2099,2138,0,2924,2888,2925,2142,2104,2143,42,2138,2099,2097,0,2926,2927,2928,2143,2104,2102,42,2138,2097,2139,0,2926,2928,2929,2143,2102,2144,42,2139,2097,2095,0,2929,2928,2930,2144,2102,2100,42,2139,2095,2140,0,2929,2930,2931,2144,2100,2145,42,2140,2095,2094,0,2931,2930,2932,2145,2100,2099,42,2140,2094,2141,0,2931,2932,2933,2145,2099,2146,42,2141,2094,2142,0,2933,2932,2934,2146,2099,2147,42,2094,2143,2142,0,2932,2935,2934,2099,2148,2147,42,2094,2090,2143,0,2879,2875,2936,2099,2095,2148,42,2143,2090,2144,0,2936,2875,2937,2148,2095,2149,42,2090,2088,2144,0,2875,2873,2937,2095,2093,2149,42,2088,2085,2144,0,2873,2870,2937,2093,2090,2149,42,2144,2085,2081,0,2937,2870,2867,2149,2090,2086,42,2144,2081,2079,0,2938,2864,2862,2149,2086,2084,42,2145,2144,2079,0,2939,2938,2862,2150,2149,2084,42,2143,2144,2145,0,2935,2938,2939,2148,2149,2150,42,2142,2143,2145,0,2934,2935,2939,2147,2148,2150,42,2145,2078,2142,0,2939,2861,2934,2150,2083,2147,42,2145,2079,2078,0,2939,2862,2861,2150,2084,2083,42,2142,2078,2141,0,2934,2861,2933,2147,2083,2146,42,2141,2078,2146,0,2933,2861,2940,2146,2083,2151,42,2146,2078,2147,0,2940,2861,2941,2151,2083,2152,42,2147,2078,2148,0,2941,2861,2942,2152,2083,2153,42,2078,2076,2148,0,2861,2859,2942,2083,2081,2153,42,2148,2076,2070,0,2942,2859,2853,2153,2081,2075,42,2076,2071,2070,0,2859,2854,2853,2081,2076,2075,42,2148,2070,2149,0,2942,2853,2943,2153,2075,2154,42,2149,2070,2150,0,2943,2853,2944,2154,2075,2155,42,2150,2070,2057,0,2944,2853,2836,2155,2075,2062,42,2057,2070,2059,0,2836,2853,2838,2062,2075,2064,42,2070,2061,2059,0,2945,2840,2842,2075,2066,2064,42,2070,2064,2061,0,2945,2845,2840,2075,2069,2066,42,2150,2057,2055,0,2944,2836,2834,2155,2062,2060,42,2150,2055,2151,0,2944,2834,2946,2155,2060,2156,42,2152,2151,2055,0,2947,2946,2834,2157,2156,2060,42,2149,2151,2152,0,2943,2946,2947,2154,2156,2157,42,2151,2149,2150,0,2946,2943,2944,2156,2154,2155,42,2147,2149,2152,0,2941,2943,2947,2152,2154,2157,42,2148,2149,2147,0,2942,2943,2941,2153,2154,2152,42,2147,2152,2146,0,2941,2947,2940,2152,2157,2151,42,2146,2152,2153,0,2940,2947,2948,2151,2157,2158,42,2153,2152,2154,0,2948,2947,2949,2158,2157,2159,42,2152,2155,2154,0,2947,2950,2949,2157,2160,2159,42,2152,2055,2155,0,2947,2834,2950,2157,2060,2160,42,2055,2053,2155,0,2834,2832,2950,2060,2058,2160,42,2155,2053,2051,0,2950,2832,2830,2160,2058,2056,42,2154,2155,2051,0,2949,2950,2830,2159,2160,2056,42,2154,2051,2156,0,2949,2830,2951,2159,2056,2161,42,2156,2051,2049,0,2951,2830,2828,2161,2056,2054,42,2156,2049,2047,0,2951,2828,2826,2161,2054,2052,42,2156,2047,2157,0,2951,2826,2952,2161,2052,2162,42,2157,2047,2045,0,2952,2826,2824,2162,2052,2050,42,2158,2157,2045,0,2953,2952,2824,2163,2162,2050,42,2159,2157,2158,0,2954,2952,2953,2164,2162,2163,42,2160,2157,2159,0,2955,2952,2954,2165,2162,2164,42,2160,2161,2157,0,2955,2956,2952,2165,2166,2162,42,2162,2161,2160,0,2957,2958,2959,2167,2166,2165,42,2163,2161,2162,0,2960,2958,2957,2168,2166,2167,42,2163,2164,2161,0,2960,2961,2958,2168,2169,2166,42,2165,2164,2163,0,2962,2961,2960,2170,2169,2168,42,2165,2138,2164,0,2962,2925,2961,2170,2143,2169,42,2165,2137,2138,0,2962,2924,2925,2170,2142,2143,42,2136,2137,2165,0,2923,2924,2962,2141,2142,2170,42,2166,2136,2165,0,2963,2923,2962,2171,2141,2170,42,2167,2136,2166,0,2964,2923,2963,2172,2141,2171,42,2167,2135,2136,0,2964,2922,2923,2172,2140,2141,42,2134,2135,2167,0,2921,2922,2964,2139,2140,2172,42,2168,2134,2167,0,2965,2921,2964,2173,2139,2172,42,2169,2134,2168,0,2966,2921,2965,2174,2139,2173,42,2169,2133,2134,0,2966,2920,2921,2174,2138,2139,42,2170,2133,2169,0,2967,2920,2966,2175,2138,2174,42,2170,2132,2133,0,2967,2919,2920,2175,2137,2138,42,2131,2132,2170,0,2918,2919,2967,2136,2137,2175,42,2171,2131,2170,0,2968,2918,2967,2176,2136,2175,42,2129,2131,2171,0,2916,2918,2968,2134,2136,2176,42,2129,2130,2131,0,2916,2917,2918,2134,2135,2136,42,2129,2171,2172,0,2916,2968,2969,2134,2176,2177,42,2172,2171,2170,0,2969,2968,2967,2177,2176,2175,42,2172,2170,2173,0,2969,2967,2970,2177,2175,2178,42,2173,2170,2174,0,2970,2967,2971,2178,2175,2179,42,2170,2169,2174,0,2967,2966,2971,2175,2174,2179,42,2174,2169,2175,0,2971,2966,2972,2179,2174,2180,42,2169,2168,2175,0,2966,2965,2972,2174,2173,2180,42,2168,2167,2175,0,2965,2964,2972,2173,2172,2180,42,2175,2167,2176,0,2972,2964,2973,2180,2172,2181,42,2167,2166,2176,0,2964,2963,2973,2172,2171,2181,42,2166,2177,2176,0,2963,2974,2973,2171,2182,2181,42,2166,2163,2177,0,2963,2960,2974,2171,2168,2182,42,2166,2165,2163,0,2963,2962,2960,2171,2170,2168,42,2177,2163,2162,0,2974,2960,2957,2182,2168,2167,42,2177,2162,2178,0,2974,2957,2975,2182,2167,2183,42,2178,2162,2179,0,2975,2957,2976,2183,2167,2184,42,2162,2160,2179,0,2957,2959,2976,2167,2165,2184,42,2179,2160,2180,0,2976,2959,2977,2184,2165,2185,42,2160,2159,2180,0,2955,2954,2978,2165,2164,2185,42,2180,2159,2181,0,2978,2954,2979,2185,2164,2186,42,2159,2182,2181,0,2954,2980,2979,2164,2187,2186,42,2159,2158,2182,0,2954,2953,2980,2164,2163,2187,42,2158,2041,2182,0,2953,2820,2980,2163,2046,2187,42,2158,2042,2041,0,2953,2821,2820,2163,2047,2046,42,2158,2045,2042,0,2953,2824,2821,2163,2050,2047,42,2183,2182,2041,0,2981,2980,2820,2188,2187,2046,42,2184,2182,2183,0,2982,2980,2981,2189,2187,2188,42,2184,2181,2182,0,2982,2979,2980,2189,2186,2187,42,2184,2180,2181,0,2982,2978,2979,2189,2185,2186,42,2185,2180,2184,0,2983,2978,2982,2190,2185,2189,42,2185,2186,2180,0,2984,2985,2977,2190,2191,2185,42,2187,2186,2185,0,2986,2985,2984,2192,2191,2190,42,2187,2188,2186,0,2986,2987,2985,2192,2193,2191,42,2189,2188,2187,0,2988,2987,2986,2194,2193,2192,42,2190,2188,2189,0,2989,2987,2988,2195,2193,2194,42,2190,2191,2188,0,2989,2990,2987,2195,2196,2193,42,2192,2191,2190,0,2991,2990,2989,2197,2196,2195,42,2193,2191,2192,0,2992,2990,2991,2198,2196,2197,42,2194,2191,2193,0,2993,2990,2992,2199,2196,2198,42,2194,2195,2191,0,2993,2994,2990,2199,2200,2196,42,2194,2196,2195,0,2993,2995,2994,2199,2201,2200,42,2197,2196,2194,0,2996,2995,2993,2202,2201,2199,42,2175,2196,2197,0,2972,2995,2996,2180,2201,2202,42,2175,2176,2196,0,2972,2973,2995,2180,2181,2201,42,2176,2177,2196,0,2973,2974,2995,2181,2182,2201,42,2177,2178,2196,0,2974,2975,2995,2182,2183,2201,42,2196,2178,2195,0,2995,2975,2994,2201,2183,2200,42,2195,2178,2198,0,2994,2975,2997,2200,2183,2203,42,2178,2179,2198,0,2975,2976,2997,2183,2184,2203,42,2198,2179,2186,0,2997,2976,2985,2203,2184,2191,42,2179,2180,2186,0,2976,2977,2985,2184,2185,2191,42,2198,2186,2188,0,2997,2985,2987,2203,2191,2193,42,2191,2198,2188,0,2990,2997,2987,2196,2203,2193,42,2195,2198,2191,0,2994,2997,2990,2200,2203,2196,42,2175,2197,2199,0,2972,2996,2998,2180,2202,2204,42,2199,2197,2194,0,2998,2996,2993,2204,2202,2199,42,2199,2194,2200,0,2998,2993,2999,2204,2199,2205,42,2200,2194,2201,0,2999,2993,3000,2205,2199,2206,42,2201,2194,2193,0,3000,2993,2992,2206,2199,2198,42,2201,2193,2192,0,3000,2992,2991,2206,2198,2197,42,2201,2192,2202,0,3000,2991,3001,2206,2197,2207,42,2110,2202,2192,0,3002,3001,2991,2115,2207,2197,42,2112,2202,2110,0,3003,3001,3002,2117,2207,2115,42,2112,2203,2202,0,3003,3004,3001,2117,2208,2207,42,2112,2204,2203,0,3003,3005,3004,2117,2209,2208,42,2113,2204,2112,0,3006,3005,3003,2118,2209,2117,42,2115,2204,2113,0,3007,3005,3006,2120,2209,2118,42,2115,2205,2204,0,3007,3008,3005,2120,2210,2209,42,2115,2206,2205,0,3007,3009,3008,2120,2211,2210,42,2117,2206,2115,0,2904,3010,2902,2122,2211,2120,42,2117,2119,2206,0,2904,2906,3010,2122,2124,2211,42,2119,2207,2206,0,2906,3011,3010,2124,2212,2211,42,2119,2208,2207,0,2906,3012,3011,2124,2213,2212,42,2120,2208,2119,0,2907,3012,2906,2125,2213,2124,42,2120,2123,2208,0,2907,2910,3012,2125,2128,2213,42,2123,2209,2208,0,2910,3013,3012,2128,2214,2213,42,2124,2209,2123,0,2911,3013,2910,2129,2214,2128,42,2209,2210,2208,0,3013,3014,3012,2214,2215,2213,42,2208,2210,2211,0,3012,3014,3015,2213,2215,2216,42,2208,2211,2212,0,3012,3015,3016,2213,2216,2217,42,2211,2213,2212,0,3017,3018,3019,2216,2218,2217,42,2214,2213,2211,0,3020,3018,3017,2219,2218,2216,42,2215,2213,2214,0,3021,3018,3020,2220,2218,2219,42,2215,2216,2213,0,3021,3022,3018,2220,2221,2218,42,2217,2216,2215,0,3023,3022,3021,2222,2221,2220,42,2218,2216,2217,0,3024,3022,3023,2223,2221,2222,42,2218,2219,2216,0,3024,3025,3022,2223,2224,2221,42,2220,2219,2218,0,3026,3025,3024,2225,2224,2223,42,2221,2219,2220,0,3027,3025,3026,2226,2224,2225,42,2221,2222,2219,0,3027,3028,3025,2226,2227,2224,42,2221,2223,2222,0,3027,3029,3028,2226,2228,2227,42,2221,2224,2223,0,3027,3030,3029,2226,2229,2228,42,2225,2224,2221,0,3031,3030,3027,2230,2229,2226,42,2225,2226,2224,0,3031,3032,3030,2230,2231,2229,42,2225,2227,2226,0,3031,3033,3032,2230,2232,2231,42,2172,2227,2225,0,2969,3033,3031,2177,2232,2230,42,2172,2228,2227,0,2969,3034,3033,2177,2233,2232,42,2172,2173,2228,0,2969,2970,3034,2177,2178,2233,42,2173,2174,2228,0,2970,2971,3034,2178,2179,2233,42,2174,2199,2228,0,2971,2998,3034,2179,2204,2233,42,2174,2175,2199,0,2971,2972,2998,2179,2180,2204,42,2228,2199,2200,0,3034,2998,2999,2233,2204,2205,42,2228,2200,2229,0,3034,2999,3035,2233,2205,2234,42,2229,2200,2230,0,3035,2999,3036,2234,2205,2235,42,2230,2200,2201,0,3036,2999,3000,2235,2205,2206,42,2230,2201,2202,0,3036,3000,3001,2235,2206,2207,42,2230,2202,2203,0,3036,3001,3004,2235,2207,2208,42,2204,2230,2203,0,3005,3036,3004,2209,2235,2208,42,2231,2230,2204,0,3037,3036,3005,2236,2235,2209,42,2226,2230,2231,0,3032,3036,3037,2231,2235,2236,42,2226,2229,2230,0,3032,3035,3036,2231,2234,2235,42,2228,2229,2226,0,3034,3035,3032,2233,2234,2231,42,2227,2228,2226,0,3033,3034,3032,2232,2233,2231,42,2223,2226,2231,0,3029,3032,3037,2228,2231,2236,42,2224,2226,2223,0,3030,3032,3029,2229,2231,2228,42,2223,2231,2204,0,3029,3037,3005,2228,2236,2209,42,2223,2204,2205,0,3029,3005,3008,2228,2209,2210,42,2232,2223,2205,0,3038,3029,3008,2237,2228,2210,42,2222,2223,2232,0,3028,3029,3038,2227,2228,2237,42,2219,2222,2232,0,3025,3028,3038,2224,2227,2237,42,2219,2232,2233,0,3025,3038,3039,2224,2237,2238,42,2233,2232,2207,0,3039,3038,3040,2238,2237,2212,42,2206,2207,2232,0,3009,3040,3038,2211,2212,2237,42,2206,2232,2205,0,3009,3038,3008,2211,2237,2210,42,2213,2233,2207,0,3018,3039,3040,2218,2238,2212,42,2213,2219,2233,0,3018,3025,3039,2218,2224,2238,42,2216,2219,2213,0,3022,3025,3018,2221,2224,2218,42,2213,2207,2212,0,3018,3040,3019,2218,2212,2217,42,2208,2212,2207,0,3012,3016,3011,2213,2217,2212,42,2234,2172,2225,0,3041,2969,3031,2239,2177,2230,42,2234,2129,2172,0,3041,2916,2969,2239,2134,2177,42,2127,2129,2234,0,2914,2916,3041,2132,2134,2239,42,2127,2128,2129,0,2914,2915,2916,2132,2133,2134,42,2127,2234,2225,0,2914,3041,3031,2132,2239,2230,42,2127,2225,2235,0,2914,3031,3042,2132,2230,2240,42,2235,2225,2221,0,3042,3031,3027,2240,2230,2226,42,2236,2235,2221,0,3043,3042,3027,2241,2240,2226,42,2127,2235,2236,0,2914,3042,3043,2132,2240,2241,42,2236,2126,2127,0,3043,2913,2914,2241,2131,2132,42,2125,2126,2236,0,2912,2913,3043,2130,2131,2241,42,2237,2125,2236,0,3044,2912,3043,2242,2130,2241,42,2238,2125,2237,0,3045,2912,3044,2243,2130,2242,42,2238,2124,2125,0,3045,2911,2912,2243,2129,2130,42,2239,2238,2237,0,3046,3045,3044,2244,2243,2242,42,2237,2218,2239,0,3044,3024,3046,2242,2223,2244,42,2237,2236,2218,0,3044,3043,3024,2242,2241,2223,42,2236,2220,2218,0,3043,3026,3024,2241,2225,2223,42,2236,2221,2220,0,3043,3027,3026,2241,2226,2225,42,2239,2218,2217,0,3046,3024,3023,2244,2223,2222,42,2110,2192,2108,0,3002,2991,3047,2115,2197,2113,42,2108,2192,2106,0,3047,2991,3048,2113,2197,2111,42,2106,2192,2190,0,3048,2991,2989,2111,2197,2195,42,2106,2190,2189,0,3048,2989,2988,2111,2195,2194,42,2106,2189,2103,0,3048,2988,3049,2111,2194,2108,42,2103,2189,2102,0,3049,2988,3050,2108,2194,2107,42,2102,2189,2187,0,3050,2988,2986,2107,2194,2192,42,2102,2187,2240,0,3050,2986,3051,2107,2192,2245,42,2240,2187,2185,0,3051,2986,2984,2245,2192,2190,42,2240,2185,2241,0,3052,2983,3053,2245,2190,2246,42,2241,2185,2184,0,3053,2983,2982,2246,2190,2189,42,2241,2184,2242,0,3053,2982,3054,2246,2189,2247,42,2184,2243,2242,0,2982,3055,3054,2189,2248,2247,42,2243,2184,2244,0,3055,2982,3056,2248,2189,2249,42,2184,2183,2244,0,2982,2981,3056,2189,2188,2249,42,2244,2183,2041,0,3056,2981,2820,2249,2188,2046,42,2244,2041,2245,0,3056,2820,3057,2249,2046,2250,42,2245,2041,2039,0,3057,2820,2818,2250,2046,2044,42,2245,2039,2038,0,3057,2818,2817,2250,2044,2043,42,2245,2038,2246,0,3057,2817,3058,2250,2043,2251,42,2246,2038,2247,0,3058,2817,3059,2251,2043,2252,42,2247,2038,2035,0,3059,2817,2814,2252,2043,2040,42,2035,2248,2247,0,2814,3060,3059,2040,2253,2252,42,2248,2035,2033,0,3060,2814,2812,2253,2040,2038,42,2248,2033,2249,0,3060,2812,3061,2253,2038,2254,42,2249,2033,2032,0,3061,2812,2811,2254,2038,2037,42,2249,2032,2250,0,3062,3063,3064,2254,2037,2255,42,2032,2251,2250,0,3063,3065,3064,2037,2256,2255,42,2024,2251,2032,0,3066,3065,3063,2029,2256,2037,42,2024,2022,2251,0,3066,3067,3065,2029,2027,2256,42,2022,2252,2251,0,3067,3068,3065,2027,2257,2256,42,2022,2020,2252,0,3067,2797,3068,2027,2025,2257,42,2020,2019,2252,0,2797,2796,3068,2025,2024,2257,42,2019,2018,2252,0,2796,2793,3068,2024,2021,2257,42,2253,2252,2018,0,3069,3068,2793,2258,2257,2021,42,2252,2253,2254,0,3068,3069,3070,2257,2258,2259,42,2254,2253,2255,0,3070,3069,3071,2259,2258,2260,42,2255,2253,2256,0,3071,3069,3072,2260,2258,2261,42,2256,2253,2012,0,3072,3069,3073,2261,2258,2262,42,2012,2253,2018,0,3073,3069,2793,2262,2258,2021,42,2012,2018,2013,0,3073,2793,2795,2262,2021,2023,42,2256,2010,2257,0,3072,2788,3074,2261,2016,2263,42,2010,2009,2257,0,2788,2790,3074,2016,2018,2263,42,2258,2257,2009,0,3075,3074,2790,2264,2263,2018,42,2255,2257,2258,0,3071,3074,3075,2260,2263,2264,42,2255,2256,2257,0,3071,3072,3074,2260,2261,2263,42,2255,2258,2259,0,3071,3075,3076,2260,2264,2265,42,2260,2259,2258,0,3077,3076,3075,2266,2265,2264,42,2028,2259,2260,0,2807,3076,3077,2033,2265,2266,42,2028,2261,2259,0,2807,3078,3076,2033,2267,2265,42,2029,2261,2028,0,2808,3078,2807,2034,2267,2033,42,2029,2262,2261,0,2808,3079,3078,2034,2268,2267,42,2030,2262,2029,0,2809,3079,2808,2035,2268,2034,42,2034,2262,2030,0,2813,3079,2809,2039,2268,2035,42,2034,2036,2262,0,2813,2815,3079,2039,2041,2268,42,2036,2263,2262,0,2815,3080,3079,2041,2269,2268,42,2036,2264,2263,0,2815,3081,3080,2041,2270,2269,42,2037,2264,2036,0,2816,3081,2815,2042,2270,2041,42,2037,2265,2264,0,2816,3082,3081,2042,2271,2270,42,2037,2040,2265,0,2816,2819,3082,2042,2045,2271,42,2043,2265,2040,0,2822,3082,2819,2048,2271,2045,42,2043,2266,2265,0,2822,3083,3082,2048,2272,2271,42,2043,2267,2266,0,2822,3084,3083,2048,2273,2272,42,2044,2267,2043,0,2823,3084,2822,2049,2273,2048,42,2044,2268,2267,0,2823,3085,3084,2049,2274,2273,42,2046,2268,2044,0,2825,3085,2823,2051,2274,2049,42,2048,2268,2046,0,2827,3085,2825,2053,2274,2051,42,2048,2269,2268,0,2827,3086,3085,2053,2275,2274,42,2048,2050,2269,0,2827,2829,3086,2053,2055,2275,42,2050,2270,2269,0,2829,3087,3086,2055,2276,2275,42,2052,2270,2050,0,2831,3087,2829,2057,2276,2055,42,2052,2271,2270,0,2831,3088,3087,2057,2277,2276,42,2272,2271,2052,0,3089,3088,2831,2278,2277,2057,42,2272,2273,2271,0,3089,3090,3088,2278,2279,2277,42,2274,2273,2272,0,3091,3090,3089,2280,2279,2278,42,2274,2275,2273,0,3091,3092,3090,2280,2281,2279,42,2274,2276,2275,0,3093,3094,3095,2280,2282,2281,42,2277,2276,2274,0,3096,3094,3093,2283,2282,2280,42,2277,2278,2276,0,3096,3097,3094,2283,2284,2282,42,2277,2279,2278,0,3096,3098,3097,2283,2285,2284,42,2280,2279,2277,0,3099,3098,3096,2286,2285,2283,42,2280,2281,2279,0,3099,3100,3098,2286,2287,2285,42,2282,2281,2280,0,3101,3100,3099,2288,2287,2286,42,2282,2283,2281,0,3101,3102,3100,2288,2289,2287,42,2284,2283,2282,0,3103,3102,3101,2290,2289,2288,42,2284,2285,2283,0,3103,3104,3102,2290,2291,2289,42,2284,2247,2285,0,3103,3059,3104,2290,2252,2291,42,2246,2247,2284,0,3058,3059,3103,2251,2252,2290,42,2246,2284,2286,0,3058,3103,3105,2251,2290,2292,42,2286,2284,2066,0,3105,3103,2847,2292,2290,2071,42,2066,2284,2282,0,2847,3103,3101,2071,2290,2288,42,2066,2282,2065,0,2847,3101,2846,2071,2288,2070,42,2282,2280,2065,0,3101,3099,2846,2288,2286,2070,42,2065,2280,2287,0,2846,3099,3106,2070,2286,2293,42,2280,2288,2287,0,3107,3108,3109,2286,2294,2293,42,2056,2288,2280,0,2835,3108,3107,2061,2294,2286,42,2058,2288,2056,0,2837,3108,2835,2063,2294,2061,42,2058,2289,2288,0,2837,3110,3108,2063,2295,2294,42,2058,2290,2289,0,2837,3111,3110,2063,2296,2295,42,2058,2060,2290,0,2837,2839,3111,2063,2065,2296,42,2290,2060,2291,0,3111,2839,3112,2296,2065,2297,42,2062,2291,2060,0,2843,3113,2841,2067,2297,2065,42,2062,2292,2291,0,2843,3114,3113,2067,2298,2297,42,2062,2293,2292,0,2843,3115,3114,2067,2299,2298,42,2062,2063,2293,0,2843,2844,3115,2067,2068,2299,42,2063,2294,2293,0,2844,3116,3115,2068,2300,2299,42,2063,2287,2294,0,2844,3106,3116,2068,2293,2300,42,2065,2287,2063,0,2846,3106,2844,2070,2293,2068,42,2287,2289,2294,0,3109,3110,3117,2293,2295,2300,42,2287,2288,2289,0,3109,3108,3110,2293,2294,2295,42,2294,2289,2295,0,3117,3110,3118,2300,2295,2301,42,2290,2295,2289,0,3111,3118,3110,2296,2301,2295,42,2290,2296,2295,0,3111,3119,3118,2296,2302,2301,42,2291,2296,2290,0,3112,3119,3111,2297,2302,2296,42,2291,2297,2296,0,3112,3120,3119,2297,2303,2302,42,2292,2297,2291,0,3114,3121,3113,2298,2303,2297,42,2292,2298,2297,0,3114,3122,3121,2298,2304,2303,42,2292,2299,2298,0,3114,3123,3122,2298,2305,2304,42,2292,2300,2299,0,3114,3124,3123,2298,2306,2305,42,2292,2293,2300,0,3114,3115,3124,2298,2299,2306,42,2293,2301,2300,0,3115,3125,3124,2299,2307,2306,42,2294,2301,2293,0,3116,3125,3115,2300,2307,2299,42,2294,2295,2301,0,3117,3118,3126,2300,2301,2307,42,2301,2295,2302,0,3126,3118,3127,2307,2301,2308,42,2296,2302,2295,0,3119,3127,3118,2302,2308,2301,42,2296,2303,2302,0,3119,3128,3127,2302,2309,2308,42,2297,2303,2296,0,3120,3128,3119,2303,2309,2302,42,2304,2303,2297,0,3129,3128,3120,2310,2309,2303,42,2303,2304,2302,0,3128,3129,3127,2309,2310,2308,42,2302,2304,2305,0,3127,3129,3130,2308,2310,2311,42,2304,2306,2305,0,3129,3131,3130,2310,2312,2311,42,2304,2307,2306,0,3129,3132,3131,2310,2313,2312,42,2308,2307,2304,0,3133,3132,3129,2314,2313,2310,42,2309,2307,2308,0,3134,3132,3133,2315,2313,2314,42,2309,2310,2307,0,3134,3135,3132,2315,2316,2313,42,2311,2310,2309,0,3136,3135,3134,2317,2316,2315,42,2312,2310,2311,0,3137,3135,3136,2318,2316,2317,42,2312,2313,2310,0,3137,3138,3135,2318,2319,2316,42,2314,2313,2312,0,3139,3138,3137,2320,2319,2318,42,2315,2313,2314,0,3140,3138,3139,2321,2319,2320,42,2316,2313,2315,0,3141,3138,3140,2322,2319,2321,42,2316,2306,2313,0,3141,3131,3138,2322,2312,2319,42,2317,2306,2316,0,3142,3131,3141,2323,2312,2322,42,2317,2305,2306,0,3142,3130,3131,2323,2311,2312,42,2318,2305,2317,0,3143,3130,3142,2324,2311,2323,42,2318,2302,2305,0,3143,3127,3130,2324,2308,2311,42,2301,2302,2318,0,3126,3127,3143,2307,2308,2324,42,2300,2301,2318,0,3124,3125,3144,2306,2307,2324,42,2299,2300,2318,0,3123,3124,3144,2305,2306,2324,42,2317,2299,2318,0,3145,3123,3144,2323,2305,2324,42,2319,2299,2317,0,3146,3123,3145,2325,2305,2323,42,2320,2299,2319,0,3147,3123,3146,2326,2305,2325,42,2298,2299,2320,0,3122,3123,3147,2304,2305,2326,42,2298,2320,2321,0,3122,3147,3148,2304,2326,2327,42,2320,2308,2321,0,3147,3149,3148,2326,2314,2327,42,2320,2322,2308,0,3147,3150,3149,2326,2328,2314,42,2320,2319,2322,0,3147,3146,3150,2326,2325,2328,42,2322,2319,2323,0,3150,3146,3151,2328,2325,2329,42,2319,2316,2323,0,3146,3152,3151,2325,2322,2329,42,2319,2317,2316,0,3146,3145,3152,2325,2323,2322,42,2323,2316,2315,0,3151,3152,3153,2329,2322,2321,42,2324,2323,2315,0,3154,3151,3153,2330,2329,2321,42,2325,2323,2324,0,3155,3151,3154,2331,2329,2330,42,2325,2322,2323,0,3155,3150,3151,2331,2328,2329,42,2322,2325,2309,0,3150,3155,3156,2328,2331,2315,42,2325,2326,2309,0,3155,3157,3156,2331,2332,2315,42,2325,2327,2326,0,3155,3158,3157,2331,2333,2332,42,2325,2324,2327,0,3155,3154,3158,2331,2330,2333,42,2327,2324,2315,0,3158,3154,3153,2333,2330,2321,42,2327,2315,2314,0,3158,3153,3159,2333,2321,2320,42,2328,2327,2314,0,3160,3158,3159,2334,2333,2320,42,2326,2327,2328,0,3157,3158,3160,2332,2333,2334,42,2326,2328,2329,0,3157,3160,3161,2332,2334,2335,42,2329,2328,2330,0,3161,3160,3162,2335,2334,2336,42,2328,2331,2330,0,3160,3163,3162,2334,2337,2336,42,2328,2314,2331,0,3160,3159,3163,2334,2320,2337,42,2314,2312,2331,0,3139,3137,3164,2320,2318,2337,42,2331,2312,2332,0,3164,3137,3165,2337,2318,2338,42,2312,2333,2332,0,3137,3166,3165,2318,2339,2338,42,2334,2333,2312,0,3167,3166,3137,2340,2339,2318,42,2335,2333,2334,0,3168,3166,3167,2341,2339,2340,42,2336,2333,2335,0,3169,3166,3168,2342,2339,2341,42,2333,2337,2332,0,3166,3170,3165,2339,2343,2338,42,2332,2337,2338,0,3165,3170,3171,2338,2343,2344,42,2337,2339,2338,0,3170,3172,3171,2343,2345,2344,42,2343,2341,2342,0,3173,3174,3175,2346,2347,2348,42,2345,2343,2346,0,3176,3173,3177,2349,2346,2350,42,2346,2343,2342,0,3177,3173,3175,2350,2346,2348,42,2347,2346,2342,0,3178,3177,3175,2351,2350,2348,42,2348,2346,2347,0,3179,3177,3178,2352,2350,2351,42,2348,2349,2346,0,3179,3180,3177,2352,2353,2350,42,2351,2350,2348,0,3181,3182,3179,2354,2355,2352,42,2352,2354,2353,0,3183,3184,3185,2356,2357,2358,42,2357,2344,2354,0,3186,3187,3184,2359,2360,2357,42,2338,2344,2357,0,3171,3187,3186,2344,2360,2359,42,2358,2332,2338,0,3188,3165,3171,2361,2338,2344,42,2331,2332,2358,0,3164,3165,3188,2337,2338,2361,42,2330,2331,2358,0,3162,3163,3189,2336,2337,2361,42,2358,2357,2330,0,3189,3190,3162,2361,2359,2336,42,2330,2357,2359,0,3162,3190,3191,2336,2359,2362,42,2362,2352,2351,0,3192,3183,3181,2363,2356,2354,42,2362,2348,2363,0,3192,3179,3193,2363,2352,2364,42,2347,2363,2348,0,3178,3193,3179,2351,2364,2352,42,2363,2347,2364,0,3193,3178,3194,2364,2351,2365,42,2365,2364,2347,0,3195,3194,3178,2366,2365,2351,42,2369,2361,2363,0,3196,3197,3193,2367,2368,2364,42,2370,2361,2369,0,3198,3199,3200,2369,2368,2367,42,2370,2330,2361,0,3198,3162,3199,2369,2336,2368,42,2329,2330,2370,0,3161,3162,3198,2335,2336,2369,42,2329,2370,2371,0,3161,3198,3201,2335,2369,2370,42,2370,2369,2371,0,3198,3200,3201,2369,2367,2370,42,2369,2367,2371,0,3196,3202,3203,2367,2371,2370,42,2367,2369,2368,0,3202,3196,3204,2371,2367,2372,42,2372,2371,2367,0,3205,3203,3202,2373,2370,2371,42,2371,2372,2373,0,3203,3205,3206,2370,2373,2374,42,2373,2372,2334,0,3206,3205,3167,2374,2373,2340,42,2372,2335,2334,0,3205,3168,3167,2373,2341,2340,42,2366,2335,2372,0,3207,3168,3205,2375,2341,2373,42,2347,2342,2365,0,3178,3175,3195,2351,2348,2366,42,2367,2366,2372,0,3202,3207,3205,2371,2375,2373,42,2373,2334,2311,0,3206,3167,3136,2374,2340,2317,42,2311,2334,2312,0,3136,3167,3137,2317,2340,2318,42,2373,2311,2309,0,3206,3136,3134,2374,2317,2315,42,2326,2373,2309,0,3157,3208,3156,2332,2374,2315,42,2326,2329,2373,0,3157,3161,3208,2332,2335,2374,42,2329,2371,2373,0,3161,3201,3208,2335,2370,2374,42,2361,2330,2359,0,3199,3162,3191,2368,2336,2362,42,2361,2362,2363,0,3197,3192,3193,2368,2363,2364,42,2344,2345,2354,0,3187,3176,3184,2360,2349,2357,42,2349,2345,2346,0,3180,3176,3177,2353,2349,2350,42,2322,2309,2308,0,3150,3156,3149,2328,2315,2314,42,2304,2321,2308,0,3129,3209,3133,2310,2327,2314,42,2321,2304,2297,0,3209,3129,3120,2327,2310,2303,42,2298,2321,2297,0,3122,3148,3121,2304,2327,2303,42,2313,2306,2307,0,3138,3131,3132,2319,2312,2313,42,2310,2313,2307,0,3135,3138,3132,2316,2319,2313,42,2056,2280,2277,0,3210,3099,3096,2061,2286,2283,42,2056,2277,2274,0,3210,3096,3093,2061,2283,2280,42,2056,2274,2272,0,2835,3091,3089,2061,2280,2278,42,2056,2272,2054,0,2835,3089,2833,2061,2278,2059,42,2054,2272,2052,0,2833,3089,2831,2059,2278,2057,42,2066,2374,2286,0,2847,3211,3105,2071,2376,2292,42,2374,2066,2091,0,3211,2847,2876,2376,2071,2096,42,2091,2066,2067,0,2876,2847,2848,2096,2071,2072,42,2091,2067,2375,0,2876,2848,3212,2096,2072,2377,42,2375,2067,2376,0,3212,2848,3213,2377,2072,2378,42,2067,2068,2376,0,2848,2849,3213,2072,2073,2378,42,2068,2377,2376,0,2849,3214,3213,2073,2379,2378,42,2068,2378,2377,0,2849,3215,3214,2073,2380,2379,42,2068,2069,2378,0,2852,2851,3216,2073,2074,2380,42,2069,2072,2378,0,2851,2855,3216,2074,2077,2380,42,2378,2072,2379,0,3216,2855,3217,2380,2077,2381,42,2380,2379,2072,0,3218,3217,2855,2382,2381,2077,42,2381,2379,2380,0,3219,3217,3218,2383,2381,2382,42,2382,2379,2381,0,3220,3217,3219,2384,2381,2383,42,2382,2383,2379,0,3220,3221,3217,2384,2385,2381,42,2384,2383,2382,0,3222,3223,3224,2386,2385,2384,42,2384,2385,2383,0,3222,3225,3223,2386,2387,2385,42,2384,2386,2385,0,3222,3226,3225,2386,2388,2387,42,2387,2386,2384,0,3227,3226,3222,2389,2388,2386,42,2386,2387,2388,0,3226,3227,3228,2388,2389,2390,42,2387,2389,2388,0,3227,3229,3228,2389,2391,2390,42,2387,2390,2389,0,3227,3230,3229,2389,2392,2391,42,2387,2391,2390,0,3227,3231,3230,2389,2393,2392,42,2387,2384,2391,0,3227,3222,3231,2389,2386,2393,42,2391,2384,2382,0,3231,3222,3224,2393,2386,2384,42,2391,2382,2392,0,3231,3224,3232,2393,2384,2394,42,2382,2381,2392,0,3220,3219,3233,2384,2383,2394,42,2392,2381,2393,0,3233,3219,3234,2394,2383,2395,42,2394,2393,2381,0,3235,3234,3219,2396,2395,2383,42,2394,2395,2393,0,3235,3236,3234,2396,2397,2395,42,2395,2394,2389,0,3236,3235,3237,2397,2396,2391,42,2389,2394,2380,0,3237,3235,3218,2391,2396,2382,42,2380,2394,2381,0,3218,3235,3219,2382,2396,2383,42,2389,2380,2388,0,3237,3218,3238,2391,2382,2390,42,2074,2388,2380,0,2857,3238,3218,2079,2390,2382,42,2396,2388,2074,0,3239,3228,3240,2398,2390,2079,42,2396,2386,2388,0,3239,3226,3228,2398,2388,2390,42,2396,2385,2386,0,3239,3225,3226,2398,2387,2388,42,2396,2377,2385,0,3239,3214,3225,2398,2379,2387,42,2397,2377,2396,0,3241,3214,3239,2399,2379,2398,42,2397,2376,2377,0,3241,3213,3214,2399,2378,2379,42,2375,2376,2397,0,3212,3213,3241,2377,2378,2399,42,2375,2397,2077,0,3212,3241,3242,2377,2399,2082,42,2077,2397,2075,0,3242,3241,3243,2082,2399,2080,42,2397,2396,2075,0,3241,3239,3243,2399,2398,2080,42,2075,2396,2074,0,3243,3239,3240,2080,2398,2079,42,2375,2077,2398,0,3244,2860,3245,2377,2082,2400,42,2080,2398,2077,0,2863,3245,2860,2085,2400,2082,42,2080,2082,2398,0,2863,2865,3245,2085,2087,2400,42,2082,2399,2398,0,2865,3246,3245,2087,2401,2400,42,2082,2400,2399,0,2865,3247,3246,2087,2402,2401,42,2083,2400,2082,0,2866,3247,2865,2088,2402,2087,42,2083,2401,2400,0,2866,3248,3247,2088,2403,2402,42,2402,2401,2083,0,3249,3250,2869,2404,2403,2088,42,2403,2401,2402,0,3251,3250,3249,2405,2403,2404,42,2403,2404,2401,0,3251,3252,3250,2405,2406,2403,42,2403,2405,2404,0,3251,3253,3252,2405,2407,2406,42,2405,2403,2406,0,3253,3251,3254,2407,2405,2408,42,2406,2403,2407,0,3254,3251,3255,2408,2405,2409,42,2407,2403,2402,0,3255,3251,3249,2409,2405,2404,42,2402,2408,2407,0,3249,3256,3255,2404,2410,2409,42,2084,2408,2402,0,2868,3256,3249,2089,2410,2404,42,2084,2086,2408,0,2868,2871,3256,2089,2091,2410,42,2086,2409,2408,0,2871,3257,3256,2091,2411,2410,42,2410,2409,2086,0,3258,3257,2871,2412,2411,2091,42,2410,2398,2409,0,3259,3245,3260,2412,2400,2411,42,2375,2398,2410,0,3244,3245,3259,2377,2400,2412,42,2089,2375,2410,0,2874,3212,3258,2094,2377,2412,42,2091,2375,2089,0,2876,3212,2874,2096,2377,2094,42,2089,2410,2087,0,2874,3258,2872,2094,2412,2092,42,2087,2410,2086,0,2872,3258,2871,2092,2412,2091,42,2398,2399,2409,0,3245,3246,3260,2400,2401,2411,42,2409,2399,2411,0,3260,3246,3261,2411,2401,2413,42,2411,2399,2412,0,3261,3246,3262,2413,2401,2414,42,2400,2412,2399,0,3247,3262,3246,2402,2414,2401,42,2413,2412,2400,0,3263,3262,3247,2415,2414,2402,42,2414,2412,2413,0,3264,3262,3263,2416,2414,2415,42,2414,2411,2412,0,3264,3261,3262,2416,2413,2414,42,2407,2411,2414,0,3255,3265,3266,2409,2413,2416,42,2407,2408,2411,0,3255,3256,3265,2409,2410,2413,42,2408,2409,2411,0,3256,3257,3265,2410,2411,2413,42,2406,2407,2414,0,3254,3255,3266,2408,2409,2416,42,2406,2414,2415,0,3254,3266,3267,2408,2416,2417,42,2414,2413,2415,0,3264,3263,3268,2416,2415,2417,42,2415,2413,2416,0,3268,3263,3269,2417,2415,2418,42,2416,2413,2417,0,3269,3263,3270,2418,2415,2419,42,2417,2413,2400,0,3270,3263,3247,2419,2415,2402,42,2404,2417,2400,0,3271,3270,3247,2406,2419,2402,42,2418,2417,2404,0,3272,3270,3271,2420,2419,2406,42,2418,2419,2417,0,3272,3273,3270,2420,2421,2419,42,2418,2420,2419,0,3272,3274,3273,2420,2422,2421,42,2418,2421,2420,0,3272,3275,3274,2420,2423,2422,42,2422,2421,2418,0,3276,3277,3278,2424,2423,2420,42,2422,2423,2421,0,3276,3279,3277,2424,2425,2423,42,2424,2423,2422,0,3280,3279,3276,2426,2425,2424,42,2425,2423,2424,0,3281,3279,3280,2427,2425,2426,42,2425,2426,2423,0,3281,3282,3279,2427,2428,2425,42,2425,2427,2426,0,3281,3283,3282,2427,2429,2428,42,2427,2425,2428,0,3283,3281,3284,2429,2427,2430,42,2428,2425,2429,0,3284,3281,3285,2430,2427,2431,42,2425,2424,2429,0,3281,3280,3285,2427,2426,2431,42,2429,2424,2430,0,3285,3280,3286,2431,2426,2432,42,2424,2422,2430,0,3280,3276,3286,2426,2424,2432,42,2422,2431,2430,0,3276,3287,3286,2424,2433,2432,42,2405,2431,2422,0,3253,3287,3276,2407,2433,2424,42,2405,2406,2431,0,3253,3254,3287,2407,2408,2433,42,2406,2415,2431,0,3254,3267,3287,2408,2417,2433,42,2431,2415,2432,0,3287,3267,3288,2433,2417,2434,42,2432,2415,2416,0,3289,3268,3269,2434,2417,2418,42,2432,2416,2433,0,3289,3269,3290,2434,2418,2435,42,2420,2433,2416,0,3274,3290,3269,2422,2435,2418,42,2434,2433,2420,0,3291,3290,3274,2436,2435,2422,42,2432,2433,2434,0,3289,3290,3291,2434,2435,2436,42,2435,2432,2434,0,3292,3289,3291,2437,2434,2436,42,2430,2432,2435,0,3286,3288,3293,2432,2434,2437,42,2431,2432,2430,0,3287,3288,3286,2433,2434,2432,42,2429,2430,2435,0,3285,3286,3293,2431,2432,2437,42,2429,2435,2436,0,3285,3293,3294,2431,2437,2438,42,2436,2435,2434,0,3295,3292,3291,2438,2437,2436,42,2436,2434,2437,0,3295,3291,3296,2438,2436,2439,42,2437,2434,2438,0,3296,3291,3297,2439,2436,2440,42,2438,2434,2420,0,3297,3291,3274,2440,2436,2422,42,2438,2420,2423,0,3297,3274,3298,2440,2422,2425,42,2423,2420,2421,0,3298,3274,3275,2425,2422,2423,42,2439,2438,2423,0,3299,3297,3298,2441,2440,2425,42,2439,2437,2438,0,3299,3296,3297,2441,2439,2440,42,2440,2437,2439,0,3300,3296,3299,2442,2439,2441,42,2440,2441,2437,0,3300,3301,3296,2442,2443,2439,42,2442,2441,2440,0,3302,3301,3300,2444,2443,2442,42,2442,2443,2441,0,3302,3303,3301,2444,2445,2443,42,2448,2441,2447,0,3304,3301,3305,2446,2443,2447,42,2448,2437,2441,0,3304,3296,3301,2446,2439,2443,42,2449,2437,2448,0,3306,3296,3304,2448,2439,2446,42,2436,2437,2449,0,3295,3296,3306,2438,2439,2448,42,2428,2436,2449,0,3284,3294,3307,2430,2438,2448,42,2428,2429,2436,0,3284,3285,3294,2430,2431,2438,42,2450,2428,2449,0,3308,3284,3307,2449,2430,2448,42,2450,2427,2428,0,3308,3283,3284,2449,2429,2430,42,2450,2451,2427,0,3308,3309,3283,2449,2450,2429,42,2451,2450,2452,0,3309,3308,3310,2450,2449,2451,42,2452,2450,2453,0,3310,3308,3311,2451,2449,2452,42,2450,2454,2453,0,3308,3312,3311,2449,2453,2452,42,2450,2455,2454,0,3308,3313,3312,2449,2454,2453,42,2450,2449,2455,0,3308,3307,3313,2449,2448,2454,42,2449,2448,2455,0,3306,3304,3314,2448,2446,2454,42,2455,2448,2456,0,3314,3304,3315,2454,2446,2455,42,2456,2448,2447,0,3315,3304,3305,2455,2446,2447,42,2456,2447,2457,0,3315,3305,3316,2455,2447,2456,42,2456,2458,2454,0,3315,3317,3318,2455,2457,2453,42,2461,2445,2444,0,3319,3320,3321,2458,2459,2460,42,2462,2461,2444,0,3322,3319,3321,2461,2458,2460,42,2460,2461,2462,0,3323,3319,3322,2462,2458,2461,42,2463,2460,2462,0,3324,3323,3322,2463,2462,2461,42,2472,2463,2462,0,3325,3324,3322,2464,2463,2461,42,2472,2462,2473,0,3325,3322,3326,2464,2461,2465,42,2473,2462,2444,0,3326,3322,3321,2465,2461,2460,42,2473,2444,2474,0,3326,3321,3327,2465,2460,2466,42,2476,2475,2442,0,3328,3329,3302,2467,2468,2444,42,2477,2475,2476,0,3330,3329,3328,2469,2468,2467,42,2481,2452,2480,0,3331,3332,3333,2470,2451,2471,42,2451,2452,2481,0,3309,3310,3334,2450,2451,2470,42,2451,2481,2482,0,3309,3334,3335,2450,2470,2472,42,2481,2477,2482,0,3331,3330,3336,2470,2469,2472,42,2481,2479,2477,0,3331,3337,3330,2470,2473,2469,42,2477,2476,2482,0,3330,3328,3336,2469,2467,2472,42,2482,2476,2426,0,3336,3328,3338,2472,2467,2428,42,2476,2440,2426,0,3328,3300,3338,2467,2442,2428,42,2476,2442,2440,0,3328,3302,3300,2467,2444,2442,42,2426,2440,2439,0,3338,3300,3299,2428,2442,2441,42,2426,2439,2423,0,3338,3299,3298,2428,2441,2425,42,2427,2482,2426,0,3283,3335,3282,2429,2472,2428,42,2451,2482,2427,0,3309,3335,3283,2450,2472,2429,42,2420,2416,2419,0,3274,3269,3273,2422,2418,2421,42,2416,2417,2419,0,3269,3270,3273,2418,2419,2421,42,2405,2422,2418,0,3253,3276,3278,2407,2424,2420,42,2405,2418,2404,0,3253,3278,3252,2407,2420,2406,42,2404,2400,2401,0,3271,3247,3248,2406,2402,2403,42,2084,2402,2083,0,2868,3249,2869,2089,2404,2088,42,2377,2378,2385,0,3214,3215,3225,2379,2380,2387,42,2385,2378,2383,0,3225,3215,3223,2387,2380,2385,42,2378,2379,2383,0,3216,3217,3221,2380,2381,2385,42,2073,2074,2380,0,2856,2857,3218,2078,2079,2382,42,2073,2380,2072,0,2856,3218,2855,2078,2382,2077,42,2483,2395,2389,0,3339,3236,3237,2474,2397,2391,42,2483,2484,2395,0,3339,3340,3236,2474,2475,2397,42,2483,2485,2484,0,3339,3341,3340,2474,2476,2475,42,2390,2485,2483,0,3230,3342,3343,2392,2476,2474,42,2390,2486,2485,0,3230,3344,3342,2392,2477,2476,42,2390,2487,2486,0,3230,3345,3344,2392,2478,2477,42,2390,2391,2487,0,3230,3231,3345,2392,2393,2478,42,2487,2391,2392,0,3345,3231,3232,2478,2393,2394,42,2487,2392,2488,0,3345,3232,3346,2478,2394,2479,42,2392,2393,2488,0,3233,3234,3347,2394,2395,2479,42,2488,2393,2489,0,3347,3234,3348,2479,2395,2480,42,2484,2489,2393,0,3340,3348,3234,2475,2480,2395,42,2490,2489,2484,0,3349,3348,3340,2481,2480,2475,42,2491,2489,2490,0,3350,3348,3349,2482,2480,2481,42,2488,2489,2491,0,3347,3348,3350,2479,2480,2482,42,2492,2488,2491,0,3351,3346,3352,2483,2479,2482,42,2492,2487,2488,0,3351,3345,3346,2483,2478,2479,42,2486,2487,2492,0,3344,3345,3351,2477,2478,2483,42,2493,2486,2492,0,3353,3344,3351,2484,2477,2483,42,2493,2494,2486,0,3353,3354,3344,2484,2485,2477,42,2493,2495,2494,0,3353,3355,3354,2484,2486,2485,42,2495,2493,2496,0,3355,3353,3356,2486,2484,2487,42,2496,2493,2492,0,3356,3353,3351,2487,2484,2483,42,2496,2492,2491,0,3356,3351,3352,2487,2483,2482,42,2496,2491,2497,0,3356,3352,3357,2487,2482,2488,42,2497,2491,2490,0,3358,3350,3349,2488,2482,2481,42,2497,2490,2498,0,3358,3349,3359,2488,2481,2489,42,2498,2490,2499,0,3359,3349,3360,2489,2481,2490,42,2499,2490,2484,0,3360,3349,3340,2490,2481,2475,42,2494,2499,2484,0,3361,3360,3340,2485,2490,2475,42,2500,2499,2494,0,3362,3360,3361,2491,2490,2485,42,2500,2498,2499,0,3362,3359,3360,2491,2489,2490,42,2501,2498,2500,0,3363,3359,3362,2492,2489,2491,42,2501,2502,2498,0,3363,3364,3359,2492,2493,2489,42,2501,2503,2502,0,3363,3365,3364,2492,2494,2493,42,2504,2503,2501,0,3366,3365,3363,2495,2494,2492,42,2504,2505,2503,0,3366,3367,3365,2495,2496,2494,42,2506,2505,2504,0,3368,3367,3366,2497,2496,2495,42,2509,2510,2507,0,3369,3370,3371,2498,2499,2500,42,2509,2511,2510,0,3369,3372,3370,2498,2501,2499,42,2509,2512,2511,0,3369,3373,3372,2498,2502,2501,42,2513,2512,2509,0,3374,3373,3369,2503,2502,2498,42,2513,2516,2515,0,3375,3376,3377,2503,2504,2505,42,2517,2516,2513,0,3378,3376,3375,2506,2504,2503,42,2517,2518,2516,0,3378,3379,3376,2506,2507,2504,42,2518,2517,2519,0,3379,3378,3380,2507,2506,2508,42,2517,2520,2519,0,3378,3381,3380,2506,2509,2508,42,2517,2513,2520,0,3378,3375,3381,2506,2503,2509,42,2520,2513,2509,0,3382,3374,3369,2509,2503,2498,42,2520,2508,2506,0,3382,3383,3368,2509,2510,2497,42,2519,2520,2506,0,3384,3382,3368,2508,2509,2497,42,2519,2506,2504,0,3384,3368,3366,2508,2497,2495,42,2519,2504,2521,0,3384,3366,3385,2508,2495,2511,42,2504,2501,2521,0,3366,3363,3385,2495,2492,2511,42,2521,2501,2500,0,3385,3363,3362,2511,2492,2491,42,2521,2500,2494,0,3385,3362,3361,2511,2491,2485,42,2495,2521,2494,0,3355,3386,3354,2486,2511,2485,42,2518,2521,2495,0,3379,3386,3355,2507,2511,2486,42,2518,2519,2521,0,3379,3380,3386,2507,2508,2511,42,2518,2495,2522,0,3379,3355,3387,2507,2486,2512,42,2522,2495,2496,0,3387,3355,3356,2512,2486,2487,42,2522,2496,2497,0,3387,3356,3357,2512,2487,2488,42,2522,2497,2523,0,3387,3357,3388,2512,2488,2513,42,2523,2497,2498,0,3389,3358,3359,2513,2488,2489,42,2523,2498,2524,0,3389,3359,3390,2513,2489,2514,42,2524,2498,2502,0,3390,3359,3364,2514,2489,2493,42,2524,2502,2525,0,3390,3364,3391,2514,2493,2515,42,2503,2526,2502,0,3365,3392,3364,2494,2516,2493,42,2529,2528,2527,0,3393,3394,3395,2517,2518,2519,42,2532,2525,2531,0,3396,3391,3397,2520,2515,2521,42,2532,2524,2525,0,3396,3390,3391,2520,2514,2515,42,2533,2524,2532,0,3398,3390,3396,2522,2514,2520,42,2523,2524,2533,0,3389,3390,3398,2513,2514,2522,42,2516,2523,2533,0,3376,3388,3399,2504,2513,2522,42,2516,2522,2523,0,3376,3387,3388,2504,2512,2513,42,2516,2518,2522,0,3376,3379,3387,2504,2507,2512,42,2516,2533,2534,0,3376,3399,3400,2504,2522,2523,42,2532,2535,2534,0,3396,3401,3402,2520,2524,2523,42,2536,2529,2537,0,3403,3393,3404,2525,2517,2526,42,2537,2529,2527,0,3404,3393,3395,2526,2517,2519,42,2510,2537,2527,0,3370,3404,3395,2499,2526,2519,42,2511,2537,2510,0,3372,3404,3370,2501,2526,2499,42,2511,2538,2537,0,3372,3405,3404,2501,2527,2526,42,2512,2541,2540,0,3373,3406,3407,2502,2528,2529,42,2516,2534,2515,0,3376,3400,3377,2504,2523,2505,42,2534,2535,2544,0,3402,3401,3408,2523,2524,2530,42,2544,2535,2536,0,3408,3401,3403,2530,2524,2525,42,2538,2536,2537,0,3405,3403,3404,2527,2525,2526,42,2510,2527,2546,0,3370,3395,3409,2499,2519,2531,42,2507,2510,2546,0,3371,3370,3409,2500,2499,2531,42,2494,2484,2485,0,3361,3340,3341,2485,2475,2476,42,2486,2494,2485,0,3344,3354,3342,2477,2485,2476,42,2395,2484,2393,0,3236,3340,3234,2397,2475,2395,42,2390,2483,2389,0,3230,3343,3229,2392,2474,2391,42,2374,2091,2092,0,3211,2876,2877,2376,2096,2097,42,2243,2374,2092,0,3055,3211,2877,2248,2376,2097,42,2374,2243,2547,0,3211,3055,3410,2376,2248,2532,42,2243,2244,2547,0,3055,3056,3410,2248,2249,2532,42,2547,2244,2245,0,3410,3056,3057,2532,2249,2250,42,2547,2245,2246,0,3410,3057,3058,2532,2250,2251,42,2547,2246,2286,0,3410,3058,3105,2532,2251,2292,42,2374,2547,2286,0,3211,3410,3105,2376,2532,2292,42,2243,2092,2242,0,3055,2877,3054,2248,2097,2247,42,2096,2242,2092,0,2881,3054,2877,2101,2247,2097,42,2098,2242,2096,0,2883,3054,2881,2103,2247,2101,42,2098,2241,2242,0,2883,3053,3054,2103,2246,2247,42,2098,2240,2241,0,2883,3052,3053,2103,2245,2246,42,2100,2240,2098,0,2885,3052,2883,2105,2245,2103,42,2100,2102,2240,0,2887,2889,3411,2105,2107,2245,42,2093,2096,2092,0,2878,2881,2877,2098,2101,2097,42,2247,2248,2285,0,3059,3060,3104,2252,2253,2291,42,2285,2248,2283,0,3104,3060,3102,2291,2253,2289,42,2248,2548,2283,0,3060,3412,3102,2253,2533,2289,42,2248,2549,2548,0,3060,3413,3412,2253,2534,2533,42,2549,2248,2249,0,3413,3060,3061,2534,2253,2254,42,2549,2249,2550,0,3414,3062,3415,2534,2254,2535,42,2249,2551,2550,0,3062,3416,3415,2254,2536,2535,42,2249,2250,2551,0,3062,3064,3416,2254,2255,2536,42,2551,2250,2552,0,3416,3064,3417,2536,2255,2537,42,2552,2250,2553,0,3417,3064,3418,2537,2255,2538,42,2250,2251,2553,0,3064,3065,3418,2255,2256,2538,42,2251,2252,2553,0,3065,3068,3418,2256,2257,2538,42,2252,2254,2553,0,3068,3070,3418,2257,2259,2538,42,2553,2254,2255,0,3418,3070,3071,2538,2259,2260,42,2554,2553,2255,0,3419,3418,3071,2539,2538,2260,42,2555,2553,2554,0,3420,3418,3419,2540,2538,2539,42,2552,2553,2555,0,3417,3418,3420,2537,2538,2540,42,2556,2552,2555,0,3421,3417,3420,2541,2537,2540,42,2557,2552,2556,0,3422,3417,3421,2542,2537,2541,42,2557,2551,2552,0,3422,3416,3417,2542,2536,2537,42,2550,2551,2557,0,3415,3416,3422,2535,2536,2542,42,2550,2557,2558,0,3415,3422,3423,2535,2542,2543,42,2558,2557,2266,0,3423,3422,3083,2543,2542,2272,42,2266,2557,2556,0,3083,3422,3421,2272,2542,2541,42,2266,2556,2264,0,3083,3421,3081,2272,2541,2270,42,2556,2555,2264,0,3421,3420,3081,2541,2540,2270,42,2264,2555,2263,0,3081,3420,3080,2270,2540,2269,42,2555,2554,2263,0,3420,3419,3080,2540,2539,2269,42,2263,2554,2261,0,3080,3419,3078,2269,2539,2267,42,2554,2259,2261,0,3419,3076,3078,2539,2265,2267,42,2554,2255,2259,0,3419,3071,3076,2539,2260,2265,42,2262,2263,2261,0,3079,3080,3078,2268,2269,2267,42,2266,2264,2265,0,3083,3081,3082,2272,2270,2271,42,2267,2558,2266,0,3084,3423,3083,2273,2543,2272,42,2268,2558,2267,0,3085,3423,3084,2274,2543,2273,42,2268,2550,2558,0,3085,3415,3423,2274,2535,2543,42,2269,2550,2268,0,3086,3415,3085,2275,2535,2274,42,2269,2549,2550,0,3086,3414,3415,2275,2534,2535,42,2548,2549,2269,0,3412,3413,3424,2533,2534,2275,42,2269,2270,2548,0,3086,3087,3425,2275,2276,2533,42,2548,2270,2283,0,3412,3426,3102,2533,2276,2289,42,2283,2270,2281,0,3102,3426,3100,2289,2276,2287,42,2270,2559,2281,0,3426,3427,3100,2276,2544,2287,42,2270,2560,2559,0,3087,3428,3429,2276,2545,2544,42,2271,2560,2270,0,3088,3428,3087,2277,2545,2276,42,2273,2560,2271,0,3090,3428,3088,2279,2545,2277,42,2273,2561,2560,0,3090,3430,3428,2279,2546,2545,42,2273,2562,2561,0,3090,3431,3430,2279,2547,2546,42,2275,2562,2273,0,3092,3431,3090,2281,2547,2279,42,2275,2563,2562,0,3092,3432,3431,2281,2548,2547,42,2275,2564,2563,0,3092,3433,3432,2281,2549,2548,42,2276,2564,2275,0,3094,3434,3095,2282,2549,2281,42,2276,2565,2564,0,3094,3435,3434,2282,2550,2549,42,2276,2566,2565,0,3094,3436,3435,2282,2551,2550,42,2276,2278,2566,0,3094,3097,3436,2282,2284,2551,42,2278,2567,2566,0,3097,3437,3436,2284,2552,2551,42,2278,2559,2567,0,3097,3427,3437,2284,2544,2552,42,2279,2559,2278,0,3098,3427,3097,2285,2544,2284,42,2281,2559,2279,0,3100,3427,3098,2287,2544,2285,42,2559,2560,2567,0,3429,3428,3438,2544,2545,2552,42,2560,2561,2567,0,3428,3430,3438,2545,2546,2552,42,2567,2561,2568,0,3438,3430,3439,2552,2546,2553,42,2563,2568,2561,0,3432,3439,3430,2548,2553,2546,42,2563,2569,2568,0,3432,3440,3439,2548,2554,2553,42,2563,2570,2569,0,3432,3441,3440,2548,2555,2554,42,2571,2570,2563,0,3442,3441,3432,2556,2555,2548,42,2571,2572,2570,0,3442,3443,3441,2556,2557,2555,42,2571,2573,2572,0,3442,3444,3443,2556,2558,2557,42,2571,2574,2573,0,3445,3446,3447,2556,2559,2558,42,2575,2574,2571,0,3448,3446,3445,2560,2559,2556,42,2575,2576,2574,0,3448,3449,3446,2560,2561,2559,42,2575,2577,2576,0,3448,3450,3449,2560,2562,2561,42,2565,2577,2575,0,3435,3450,3448,2550,2562,2560,42,2565,2566,2577,0,3435,3436,3450,2550,2551,2562,42,2577,2566,2578,0,3450,3436,3451,2562,2551,2563,42,2567,2578,2566,0,3437,3451,3436,2552,2563,2551,42,2567,2568,2578,0,3438,3439,3452,2552,2553,2563,42,2578,2568,2579,0,3452,3439,3453,2563,2553,2564,42,2568,2569,2579,0,3439,3440,3453,2553,2554,2564,42,2579,2569,2580,0,3453,3440,3454,2564,2554,2565,42,2569,2581,2580,0,3440,3455,3454,2554,2566,2565,42,2570,2581,2569,0,3441,3455,3440,2555,2566,2554,42,2570,2572,2581,0,3441,3443,3455,2555,2557,2566,42,2572,2582,2581,0,3443,3456,3455,2557,2567,2566,42,2573,2582,2572,0,3444,3456,3443,2558,2567,2557,42,2573,2583,2582,0,3444,3457,3456,2558,2568,2567,42,2574,2583,2573,0,3446,3458,3447,2559,2568,2558,42,2574,2584,2583,0,3446,3459,3458,2559,2569,2568,42,2574,2585,2584,0,3446,3460,3459,2559,2570,2569,42,2574,2576,2585,0,3446,3449,3460,2559,2561,2570,42,2576,2580,2585,0,3449,3461,3460,2561,2565,2570,42,2576,2579,2580,0,3449,3462,3461,2561,2564,2565,42,2577,2579,2576,0,3450,3462,3449,2562,2564,2561,42,2577,2578,2579,0,3450,3451,3462,2562,2563,2564,42,2585,2580,2586,0,3460,3461,3463,2570,2565,2571,42,2580,2587,2586,0,3454,3464,3465,2565,2572,2571,42,2580,2581,2587,0,3454,3455,3464,2565,2566,2572,42,2582,2587,2581,0,3456,3464,3455,2567,2572,2566,42,2588,2587,2582,0,3466,3464,3456,2573,2572,2567,42,2589,2587,2588,0,3467,3464,3466,2574,2572,2573,42,2586,2587,2589,0,3465,3464,3467,2571,2572,2574,42,2590,2586,2589,0,3468,3463,3469,2575,2571,2574,42,2590,2585,2586,0,3468,3460,3463,2575,2570,2571,42,2590,2584,2585,0,3468,3459,3460,2575,2569,2570,42,2591,2584,2590,0,3470,3459,3468,2576,2569,2575,42,2584,2591,2583,0,3459,3470,3458,2569,2576,2568,42,2591,2592,2583,0,3470,3471,3458,2576,2577,2568,42,2591,2593,2592,0,3470,3472,3471,2576,2578,2577,42,2591,2594,2593,0,3470,3473,3472,2576,2579,2578,42,2591,2590,2594,0,3470,3468,3473,2576,2575,2579,42,2590,2589,2594,0,3468,3469,3473,2575,2574,2579,42,2594,2589,2595,0,3473,3469,3474,2579,2574,2580,42,2589,2588,2595,0,3467,3466,3475,2574,2573,2580,42,2588,2596,2595,0,3466,3476,3475,2573,2581,2580,42,2597,2596,2588,0,3477,3476,3466,2582,2581,2573,42,2597,2598,2596,0,3477,3478,3476,2582,2583,2581,42,2592,2598,2597,0,3479,3478,3477,2577,2583,2582,42,2599,2598,2592,0,3480,3478,3479,2584,2583,2577,42,2598,2599,2600,0,3478,3480,3481,2583,2584,2585,42,2599,2601,2600,0,3480,3482,3481,2584,2586,2585,42,2599,2602,2601,0,3480,3483,3482,2584,2587,2586,42,2599,2603,2602,0,3484,3485,3486,2584,2588,2587,42,2593,2603,2599,0,3472,3485,3484,2578,2588,2584,42,2593,2604,2603,0,3472,3487,3485,2578,2589,2588,42,2593,2594,2604,0,3472,3473,3487,2578,2579,2589,42,2594,2595,2604,0,3473,3474,3487,2579,2580,2589,42,2595,2605,2604,0,3474,3488,3487,2580,2590,2589,42,2595,2596,2605,0,3475,3476,3489,2580,2581,2590,42,2596,2606,2605,0,3476,3490,3489,2581,2591,2590,42,2596,2607,2606,0,3476,3491,3490,2581,2592,2591,42,2600,2607,2596,0,3481,3491,3476,2585,2592,2581,42,2608,2607,2600,0,3492,3491,3481,2593,2592,2585,42,2609,2607,2608,0,3493,3491,3492,2594,2592,2593,42,2607,2610,2606,0,3491,3494,3490,2592,2595,2591,42,2606,2610,2611,0,3490,3494,3495,2591,2595,2596,42,2610,2612,2611,0,3494,3496,3495,2595,2597,2596,42,2617,2615,2616,0,3497,3498,3499,2598,2599,2600,42,2617,2618,2615,0,3497,3500,3498,2598,2601,2599,42,2619,2618,2617,0,3501,3500,3497,2602,2601,2598,42,2620,2618,2619,0,3502,3500,3501,2603,2601,2602,42,2620,2621,2618,0,3502,3503,3500,2603,2604,2601,42,2630,2628,2629,0,3504,3505,3506,2605,2606,2607,42,2630,2631,2628,0,3504,3507,3505,2605,2608,2606,42,2632,2631,2630,0,3508,3507,3504,2609,2608,2605,42,2606,2611,2632,0,3490,3495,3509,2591,2596,2609,42,2605,2606,2632,0,3489,3490,3509,2590,2591,2609,42,2605,2632,2630,0,3488,3508,3504,2590,2609,2605,42,2605,2630,2604,0,3488,3504,3487,2590,2605,2589,42,2603,2604,2630,0,3485,3487,3504,2588,2589,2605,42,2603,2630,2633,0,3485,3504,3510,2588,2605,2610,42,2633,2630,2629,0,3510,3504,3506,2610,2605,2607,42,2634,2633,2629,0,3511,3510,3506,2611,2610,2607,42,2602,2633,2634,0,3486,3510,3511,2587,2610,2611,42,2603,2633,2602,0,3485,3510,3486,2588,2610,2587,42,2602,2634,2635,0,3483,3512,3513,2587,2611,2612,42,2635,2634,2636,0,3513,3512,3514,2612,2611,2613,42,2634,2629,2637,0,3512,3515,3516,2611,2607,2614,42,2629,2625,2637,0,3515,3517,3516,2607,2615,2614,42,2625,2620,2637,0,3517,3502,3516,2615,2603,2614,42,2619,2637,2620,0,3501,3516,3502,2602,2614,2603,42,2601,2635,2639,0,3482,3513,3518,2586,2612,2616,42,2601,2602,2635,0,3482,3483,3513,2586,2587,2612,42,2639,2608,2601,0,3518,3492,3482,2616,2593,2586,42,2640,2619,2617,0,3519,3501,3497,2617,2602,2598,42,2601,2608,2600,0,3482,3492,3481,2586,2593,2585,42,2611,2614,2631,0,3495,3520,3521,2596,2618,2608,42,2631,2614,2641,0,3521,3520,3522,2608,2618,2619,42,2641,2614,2642,0,3522,3520,3523,2619,2618,2620,42,2618,2642,2615,0,3500,3523,3498,2601,2620,2599,42,2618,2621,2642,0,3500,3503,3523,2601,2604,2620,42,2598,2600,2596,0,3478,3481,3476,2583,2585,2581,42,2592,2593,2599,0,3471,3472,3484,2577,2578,2584,42,2592,2597,2582,0,3479,3477,3456,2577,2582,2567,42,2582,2597,2588,0,3456,3477,3466,2567,2582,2573,42,2592,2582,2583,0,3479,3456,3457,2577,2567,2568,42,2565,2575,2564,0,3435,3448,3434,2550,2560,2549,42,2564,2575,2571,0,3434,3448,3445,2549,2560,2556,42,2571,2563,2564,0,3442,3432,3433,2556,2548,2549,42,2562,2563,2561,0,3431,3432,3430,2547,2548,2546,42,2034,2030,2031,0,2813,2809,2810,2039,2035,2036,42,2028,2260,2645,0,2807,3077,3524,2033,2266,2621,42,2260,2009,2645,0,3077,3525,3524,2266,2018,2621,42,2260,2258,2009,0,3077,3075,2790,2266,2264,2018,42,2009,1999,2645,0,3525,3526,3524,2018,2622,2621,42,2009,1997,1999,0,3525,3527,3526,2018,2008,2622,42,2009,1996,1997,0,2790,2779,2780,2018,2007,2008,42,2645,1999,2002,0,3524,3526,3528,2621,2622,2011,42,2645,2002,2021,0,3524,3528,2800,2621,2011,2026,42,2023,2645,2021,0,2802,3524,2800,2028,2621,2026,42,2027,2645,2023,0,2806,3524,2802,2032,2621,2028,42,2028,2645,2027,0,2807,3524,2806,2033,2621,2032,42,2139,2164,2138,0,2929,3529,2926,2144,2169,2143,42,2139,2646,2164,0,2929,3530,3529,2144,2623,2169,42,2139,2647,2646,0,2929,3531,3530,2144,2624,2623,42,2140,2647,2139,0,2931,3531,2929,2145,2624,2144,42,2141,2647,2140,0,2933,3531,2931,2146,2624,2145,42,2141,2146,2647,0,2933,2940,3531,2146,2151,2624,42,2146,2153,2647,0,2940,2948,3531,2151,2158,2624,42,2647,2153,2646,0,3531,2948,3530,2624,2158,2623,42,2646,2153,2648,0,3530,2948,3532,2623,2158,2625,42,2153,2154,2648,0,2948,2949,3532,2158,2159,2625,42,2648,2154,2649,0,3532,2949,3533,2625,2159,2626,42,2649,2154,2156,0,3533,2949,2951,2626,2159,2161,42,2649,2156,2157,0,3533,2951,2952,2626,2161,2162,42,2649,2157,2161,0,3533,2952,2956,2626,2162,2166,42,2161,2648,2649,0,2956,3532,3533,2166,2625,2626,42,2164,2648,2161,0,3529,3532,2956,2169,2625,2166,42,2646,2648,2164,0,3530,3532,3529,2623,2625,2169,42,2002,2016,2017,0,2783,3534,2794,2011,2627,2022,42,2005,2014,2004,0,2785,2792,2784,2013,2020,2012,42,1988,1989,1987,3,3535,3536,3537,2000,2002,1999,42,1991,1990,1988,3,3538,3539,3540,2003,2001,2000,42,1993,1992,1991,3,3541,3542,3543,2628,2004,2003,42,1994,1992,1993,3,3544,3545,3546,2006,2004,2628,42,1995,1989,1992,3,3547,3548,3549,2005,2002,2004,42,1985,1989,1995,3,3550,3551,3552,1997,2002,2005,42,1985,1987,1989,3,3553,3554,3555,1997,1999,2002,42,1985,1995,1994,3,3556,3557,3558,1997,2005,2006,42,1997,1994,1998,3,3559,3560,3561,2008,2006,2629,42,1998,1994,1993,3,3562,3563,3564,2629,2006,2628,42,1998,1993,1999,3,3565,3566,3567,2629,2628,2622,42,2000,1999,1993,3,3568,3569,3570,2630,2622,2628,42,2001,1999,2000,3,3571,3572,3573,2009,2622,2630,42,1999,2001,2002,3,3574,3575,3576,2622,2009,2011,42,2001,2000,1991,3,3577,3578,3579,2009,2630,2003,42,1993,1991,2000,3,3580,3581,3582,2628,2003,2630,42,2006,1986,2007,3,3583,3584,3585,2014,1998,2015,42,1986,1985,1996,3,3586,3587,3588,1998,1997,2007,42,2007,1996,2008,3,3589,3590,3591,2015,2007,2017,42,2009,2008,1996,3,3592,3593,3594,2018,2017,2007,42,2008,2010,2007,3,3595,3596,3597,2017,2016,2015,42,2011,2007,2010,3,3598,3599,3600,2631,2015,2016,42,2011,2006,2007,3,3601,3602,3603,2631,2014,2015,42,2005,2006,2011,3,3604,3605,3606,2013,2014,2631,42,2012,2005,2011,3,3607,3608,3609,2262,2013,2631,42,2013,2005,2012,3,3610,3611,3612,2023,2013,2262,42,2013,2014,2005,3,3613,3614,3615,2023,2020,2013,42,2015,2014,2013,3,3616,3617,3618,2019,2020,2023,42,2015,2016,2003,3,3619,3620,3621,2019,2627,2010,42,2015,2017,2016,3,3622,3623,3624,2019,2022,2627,42,2013,2017,2015,3,3625,3626,3627,2023,2022,2019,42,2256,2012,2011,3,3628,3629,3630,2261,2262,2631,42,2011,2010,2256,3,3631,3632,3633,2631,2016,2261,42,2337,2333,2336,3,3634,3635,3636,2343,2339,2342,42,2339,2337,2340,3,3637,3638,3639,2345,2343,2632,42,2340,2337,2336,3,3640,3641,3642,2632,2343,2342,42,2336,2341,2340,3,3643,3644,3645,2342,2347,2632,42,2342,2341,2336,3,3646,3647,3648,2348,2347,2342,42,2341,2343,2340,3,3649,3650,3651,2347,2346,2632,42,2340,2343,2344,3,3652,3653,3654,2632,2346,2360,42,2343,2345,2344,3,3655,3656,3657,2346,2349,2360,42,2348,2350,2349,3,3658,3659,3660,2352,2355,2353,42,2352,2350,2351,3,3661,3662,3663,2356,2355,2354,42,2352,2353,2350,3,3664,3665,3666,2356,2358,2355,42,2355,2354,2352,3,3667,3668,3669,2633,2357,2356,42,2356,2354,2355,3,3670,3671,3672,2634,2357,2633,42,2357,2354,2356,3,3673,3674,3675,2359,2357,2634,42,2338,2339,2344,3,3676,3677,3678,2344,2345,2360,42,2344,2339,2340,3,3679,3680,3681,2360,2345,2632,42,2358,2338,2357,3,3682,3683,3684,2361,2344,2359,42,2359,2357,2356,3,3685,3686,3687,2362,2359,2634,42,2355,2359,2356,3,3688,3689,3690,2633,2362,2634,42,2360,2359,2355,3,3691,3692,3693,2635,2362,2633,42,2360,2361,2359,3,3694,3695,3696,2635,2368,2362,42,2360,2362,2361,3,3697,3698,3699,2635,2363,2368,42,2360,2355,2362,3,3700,3701,3702,2635,2633,2363,42,2362,2355,2352,3,3703,3704,3705,2363,2633,2356,42,2362,2351,2348,3,3706,3707,3708,2363,2354,2352,42,2366,2364,2365,3,3709,3710,3711,2375,2365,2366,42,2367,2364,2366,3,3712,3713,3714,2371,2365,2375,42,2368,2364,2367,3,3715,3716,3717,2372,2365,2371,42,2363,2364,2368,3,3718,3719,3720,2364,2365,2372,42,2369,2363,2368,3,3721,3722,3723,2367,2364,2372,42,2366,2342,2335,3,3724,3725,3726,2375,2348,2341,42,2366,2365,2342,3,3727,3728,3729,2375,2366,2348,42,2342,2336,2335,3,3730,3731,3732,2348,2342,2341,42,2345,2353,2354,3,3733,3734,3735,2349,2358,2357,42,2350,2353,2345,3,3736,3737,3738,2355,2358,2349,42,2350,2345,2349,3,3739,3740,3741,2355,2349,2353,42,2444,2443,2442,3,3742,3743,3744,2460,2445,2444,42,2445,2443,2444,3,3745,3746,3747,2459,2445,2460,42,2446,2443,2445,3,3748,3749,3750,2636,2445,2459,42,2447,2443,2446,3,3751,3752,3753,2447,2445,2636,42,2447,2441,2443,3,3754,3755,3756,2447,2443,2445,42,2457,2447,2446,3,3757,3758,3759,2456,2447,2636,42,2458,2457,2446,3,3760,3761,3762,2457,2456,2636,42,2458,2456,2457,3,3763,3764,3765,2457,2455,2456,42,2454,2458,2459,3,3766,3767,3768,2453,2457,2637,42,2459,2458,2460,3,3769,3770,3771,2637,2457,2462,42,2458,2461,2460,3,3772,3773,3774,2457,2458,2462,42,2458,2446,2461,3,3775,3776,3777,2457,2636,2458,42,2446,2445,2461,3,3778,3779,3780,2636,2459,2458,42,2464,2460,2463,3,3781,3782,3783,2638,2462,2463,42,2464,2465,2460,3,3784,3785,3786,2638,2639,2462,42,2466,2465,2464,3,3787,3788,3789,2640,2639,2638,42,2466,2459,2465,3,3790,3791,3792,2640,2637,2639,42,2467,2459,2466,3,3793,3794,3795,2641,2637,2640,42,2467,2468,2459,3,3796,3797,3798,2641,2642,2637,42,2453,2468,2467,3,3799,3800,3801,2452,2642,2641,42,2468,2453,2454,3,3800,3799,3802,2642,2452,2453,42,2454,2459,2468,3,3803,3804,3805,2453,2637,2642,42,2467,2452,2453,3,3806,3807,3808,2641,2451,2452,42,2452,2467,2469,3,3807,3806,3809,2451,2641,2643,42,2469,2467,2470,3,3810,3811,3812,2643,2641,2644,42,2470,2467,2466,3,3813,3814,3815,2644,2641,2640,42,2470,2466,2471,3,3816,3817,3818,2644,2640,2645,42,2471,2466,2464,3,3819,3820,3821,2645,2640,2638,42,2471,2464,2472,3,3822,3823,3824,2645,2638,2464,42,2464,2463,2472,3,3825,3826,3827,2638,2463,2464,42,2474,2444,2475,3,3828,3829,3830,2466,2460,2468,42,2475,2444,2442,3,3831,3832,3833,2468,2460,2444,42,2477,2478,2475,3,3834,3835,3836,2469,2646,2468,42,2479,2478,2477,3,3837,3838,3839,2473,2646,2469,42,2480,2478,2479,3,3840,3841,3842,2471,2646,2473,42,2480,2473,2478,3,3843,3844,3845,2471,2465,2646,42,2480,2472,2473,3,3846,3847,3848,2471,2464,2465,42,2480,2470,2472,3,3849,3850,3851,2471,2644,2464,42,2452,2470,2480,3,3852,3853,3854,2451,2644,2471,42,2452,2469,2470,3,3855,3856,3857,2451,2643,2644,42,2481,2480,2479,3,3858,3859,3860,2470,2471,2473,42,2472,2470,2471,3,3861,3862,3863,2464,2644,2645,42,2478,2473,2474,3,3864,3865,3866,2646,2465,2466,42,2478,2474,2475,3,3867,3868,3869,2646,2466,2468,42,2459,2460,2465,3,3870,3871,3872,2637,2462,2639,42,2455,2456,2454,3,3873,3874,3875,2454,2455,2453,42,2506,2507,2505,3,3876,3877,3878,2497,2500,2496,42,2508,2507,2506,3,3879,3880,3881,2510,2500,2497,42,2509,2507,2508,3,3882,3883,3884,2498,2500,2510,42,2513,2514,2512,3,3885,3886,3887,2503,2647,2502,42,2514,2513,2515,3,3888,3889,3890,2647,2503,2505,42,2520,2509,2508,3,3891,3892,3893,2509,2498,2510,42,2525,2502,2526,3,3894,3895,3896,2515,2493,2516,42,2527,2526,2503,3,3897,3898,3899,2519,2516,2494,42,2527,2528,2526,3,3900,3901,3902,2519,2518,2516,42,2530,2528,2529,3,3903,3904,3905,2648,2518,2517,42,2530,2526,2528,3,3906,3907,3908,2648,2516,2518,42,2530,2525,2526,3,3909,3910,3911,2648,2515,2516,42,2531,2525,2530,3,3912,3913,3914,2521,2515,2648,42,2533,2532,2534,3,3915,3916,3917,2522,2520,2523,42,2532,2531,2535,3,3918,3919,3920,2520,2521,2524,42,2535,2531,2530,3,3921,3922,3923,2524,2521,2648,42,2535,2530,2529,3,3924,3925,3926,2524,2648,2517,42,2535,2529,2536,3,3927,3928,3929,2524,2517,2525,42,2511,2539,2538,3,3930,3931,3932,2501,2649,2527,42,2540,2539,2511,3,3933,3934,3935,2529,2649,2501,42,2540,2541,2539,3,3936,3937,3938,2529,2528,2649,42,2512,2542,2541,3,3939,3940,3941,2502,2650,2528,42,2514,2542,2512,3,3942,3943,3944,2647,2650,2502,42,2514,2515,2542,3,3945,3946,3947,2647,2505,2650,42,2542,2515,2543,3,3948,3949,3950,2650,2505,2651,42,2515,2534,2543,3,3951,3952,3953,2505,2523,2651,42,2534,2544,2543,3,3954,3955,3956,2523,2530,2651,42,2544,2536,2545,3,3957,3958,3959,2530,2525,2652,42,2539,2545,2536,3,3960,3961,3962,2649,2652,2525,42,2545,2539,2541,3,3963,3964,3965,2652,2649,2528,42,2544,2545,2541,3,3966,3967,3968,2530,2652,2528,42,2541,2542,2544,3,3969,3970,3971,2528,2650,2530,42,2542,2543,2544,3,3972,3973,3974,2650,2651,2530,42,2539,2536,2538,3,3975,3976,3977,2649,2525,2527,42,2511,2512,2540,3,3978,3979,3980,2501,2502,2529,42,2546,2527,2505,3,3981,3982,3983,2531,2519,2496,42,2505,2527,2503,3,3984,3985,3986,2496,2519,2494,42,2507,2546,2505,3,3987,3988,3989,2500,2531,2496,42,2610,2607,2609,3,3990,3991,3992,2595,2592,2594,42,2613,2612,2610,3,3993,3994,3995,2653,2597,2595,42,2613,2614,2612,3,3996,3997,3998,2653,2618,2597,42,2613,2615,2614,3,3999,4000,4001,2653,2599,2618,42,2616,2615,2613,3,4002,4003,4004,2600,2599,2653,42,2620,2622,2621,3,4005,4006,4007,2603,2654,2604,42,2623,2622,2620,3,4008,4009,4010,2655,2654,2603,42,2623,2624,2622,3,4011,4012,4013,2655,2656,2654,42,2625,2624,2623,3,4014,4015,4016,2615,2656,2655,42,2625,2626,2624,3,4017,4018,4019,2615,2657,2656,42,2627,2626,2625,3,4020,4021,4022,2658,2657,2615,42,2627,2628,2626,3,4023,4024,4025,2658,2606,2657,42,2629,2628,2627,3,4026,4027,4028,2607,2606,2658,42,2632,2611,2631,3,4029,4030,4031,2609,2596,2608,42,2634,2637,2636,3,4032,4033,4034,2611,2614,2613,42,2629,2627,2625,3,4035,4036,4037,2607,2658,2615,42,2625,2623,2620,3,4038,4039,4040,2615,2655,2603,42,2638,2637,2619,3,4041,4042,4043,2659,2614,2602,42,2638,2636,2637,3,4044,4045,4046,2659,2613,2614,42,2635,2636,2638,3,4047,4048,4049,2612,2613,2659,42,2639,2635,2638,3,4050,4051,4052,2616,2612,2659,42,2639,2617,2608,3,4053,4054,4055,2616,2598,2593,42,2639,2640,2617,3,4056,4057,4058,2616,2617,2598,42,2639,2638,2640,3,4059,4060,4061,2616,2659,2617,42,2640,2638,2619,3,4062,4063,4064,2617,2659,2602,42,2608,2617,2609,3,4065,4066,4067,2593,2598,2594,42,2617,2616,2609,3,4068,4069,4070,2598,2600,2594,42,2616,2613,2609,3,4071,4072,4073,2600,2653,2594,42,2609,2613,2610,3,4074,4075,4076,2594,2653,2595,42,2611,2612,2614,3,4077,4078,4079,2596,2597,2618,42,2615,2642,2614,3,4080,4081,4082,2599,2620,2618,42,2621,2622,2642,3,4083,4084,4085,2604,2654,2620,42,2622,2643,2642,3,4086,4087,4088,2654,2660,2620,42,2624,2643,2622,3,4089,4090,4091,2656,2660,2654,42,2624,2641,2643,3,4092,4093,4094,2656,2619,2660,42,2626,2641,2624,3,4095,4096,4097,2657,2619,2656,42,2626,2644,2641,3,4098,4099,4100,2657,2661,2619,42,2628,2644,2626,3,4101,4102,4103,2606,2661,2657,42,2628,2631,2644,3,4104,4105,4106,2606,2608,2661,42,2631,2641,2644,3,4107,4108,4109,2608,2619,2661,42,2641,2642,2643,3,4110,4111,4112,2619,2620,2660,42,1997,1998,1999,3,4113,4114,4115,2008,2629,2622,42,2003,2016,2002,3,4116,4117,4118,2010,2627,2011,42,1990,1992,1989,3,4119,4120,4121,2001,2004,2002,42,2650,2651,2652,0,4122,4123,4124,2662,2663,2664,42,2651,2650,2653,0,4123,4122,4125,2663,2662,2665,42,2653,2654,2651,0,4125,4126,4123,2665,2666,2663,42,2655,2654,2653,0,4127,4126,4125,2667,2666,2665,42,2655,2656,2654,0,4127,4128,4126,2667,2668,2666,42,2655,2657,2656,0,4127,4129,4128,2667,2669,2668,42,2657,2655,2658,0,4129,4127,4130,2669,2667,2670,42,2655,2659,2658,0,4127,4131,4130,2667,2671,2670,42,2659,2655,2653,0,4131,4127,4125,2671,2667,2665,42,2659,2653,2660,0,4131,4125,4132,2671,2665,2672,42,2660,2653,2661,0,4132,4125,4133,2672,2665,2673,42,2653,2650,2661,0,4125,4122,4133,2665,2662,2673,42,2650,2652,2661,0,4122,4124,4133,2662,2664,2673,42,2652,2662,2661,0,4124,4134,4133,2664,2674,2673,42,2663,2662,2652,0,4135,4134,4124,2675,2674,2664,42,2663,2664,2662,0,4135,4136,4134,2675,2676,2674,42,2665,2664,2663,0,4137,4136,4135,2677,2676,2675,42,2666,2664,2665,0,4138,4136,4137,2678,2676,2677,42,2667,2664,2666,0,4139,4136,4138,2679,2676,2678,42,2664,2667,2668,0,4136,4139,4140,2676,2679,2680,42,2667,2669,2668,0,4139,4141,4140,2679,2681,2680,42,2670,2669,2667,0,4142,4141,4139,2682,2681,2679,42,2671,2669,2670,0,4143,4141,4142,2683,2681,2682,42,2671,2672,2669,0,4143,4144,4141,2683,2684,2681,42,2671,2673,2672,0,4143,4145,4144,2683,2685,2684,42,2671,2674,2673,0,4146,4147,4148,2683,2686,2685,42,2675,2674,2671,0,4149,4147,4146,2687,2686,2683,42,2676,2674,2675,0,4150,4147,4149,2688,2686,2687,42,2676,2677,2674,0,4150,4151,4147,2688,2689,2686,42,2678,2677,2676,0,4152,4151,4150,2690,2689,2688,42,2678,2679,2677,0,4152,4153,4151,2690,2691,2689,42,2680,2679,2678,0,4154,4153,4152,2692,2691,2690,42,2680,2681,2679,0,4154,4155,4153,2692,2693,2691,42,2682,2681,2680,0,4156,4155,4154,2694,2693,2692,42,2682,2683,2681,0,4156,4157,4155,2694,2695,2693,42,2683,2682,2684,0,4157,4156,4158,2695,2694,2696,42,2685,2684,2682,0,4159,4158,4156,2697,2696,2694,42,2685,2686,2684,0,4159,4160,4158,2697,2698,2696,42,2687,2686,2685,0,4161,4160,4159,2699,2698,2697,42,2687,2688,2686,0,4161,4162,4160,2699,2700,2698,42,2689,2688,2687,0,4163,4164,4165,2701,2700,2699,42,2689,2690,2688,0,4163,4166,4164,2701,2702,2700,42,2689,2691,2690,0,4167,4168,4169,2701,2703,2702,42,2689,2692,2691,0,4167,4170,4168,2701,2704,2703,42,2693,2692,2689,0,4171,4170,4167,2705,2704,2701,42,2693,2694,2692,0,4171,4172,4170,2705,2706,2704,42,2695,2694,2693,0,4173,4172,4171,2707,2706,2705,42,2695,2696,2694,0,4173,4174,4172,2707,2708,2706,42,2697,2696,2695,0,4175,4174,4173,2709,2708,2707,42,2697,2698,2696,0,4175,4176,4174,2709,2710,2708,42,2697,2699,2698,0,4175,4177,4176,2709,2711,2710,42,2697,2700,2699,0,4178,4179,4180,2709,2712,2711,42,2700,2697,2701,0,4179,4178,4181,2712,2709,2713,42,2697,2702,2701,0,4178,4182,4181,2709,2714,2713,42,2702,2697,2695,0,4183,4175,4173,2714,2709,2707,42,2703,2702,2695,0,4184,4183,4173,2715,2714,2707,42,2701,2702,2703,0,4181,4182,4185,2713,2714,2715,42,2701,2703,2704,0,4181,4185,4186,2713,2715,2716,42,2704,2703,2705,0,4186,4185,4187,2716,2715,2717,42,2703,2706,2705,0,4185,4188,4187,2715,2718,2717,42,2706,2703,2707,0,4189,4184,4190,2718,2715,2719,42,2703,2695,2707,0,4184,4173,4190,2715,2707,2719,42,2708,2707,2695,0,4191,4192,4193,2720,2720,2720,42,2708,2709,2707,0,4191,4194,4192,2721,2721,2721,42,2704,2709,2708,0,4186,4195,4196,2716,2722,2723,42,2705,2709,2704,0,4187,4195,4186,2717,2722,2716,42,2705,2710,2709,0,4187,4197,4195,2717,2724,2722,42,2706,2710,2705,0,4198,4199,4200,2725,2725,2725,42,2706,2711,2710,0,4198,4201,4199,2726,2726,2726,42,2706,2707,2711,0,4189,4190,4202,2718,2719,2727,42,2709,2711,2707,0,4194,4201,4192,2728,2728,2728,42,2709,2710,2711,0,4194,4199,4201,2729,2729,2729,42,2701,2704,2708,0,4181,4186,4196,2713,2716,2723,42,2700,2701,2708,0,4179,4181,4196,2712,2713,2723,42,2700,2708,2712,0,4179,4196,4203,2712,2723,2730,42,2712,2708,2713,0,4203,4196,4204,2730,2723,2731,42,2708,2714,2713,0,4196,4205,4204,2723,2732,2731,42,2708,2693,2714,0,4191,4206,4207,2723,2705,2732,42,2708,2695,2693,0,4191,4193,4206,2723,2707,2705,42,2714,2693,2689,0,4207,4206,4163,2732,2705,2701,42,2714,2689,2687,0,4207,4163,4165,2732,2701,2699,42,2714,2687,2685,0,4205,4161,4159,2732,2699,2697,42,2713,2714,2685,0,4204,4205,4159,2731,2732,2697,42,2713,2685,2682,0,4204,4159,4156,2731,2697,2694,42,2713,2682,2680,0,4204,4156,4154,2731,2694,2692,42,2713,2680,2678,0,4204,4154,4152,2731,2692,2690,42,2712,2713,2678,0,4203,4204,4152,2730,2731,2690,42,2712,2678,2715,0,4203,4152,4208,2730,2690,2733,42,2715,2678,2676,0,4208,4152,4150,2733,2690,2688,42,2715,2676,2675,0,4208,4150,4149,2733,2688,2687,42,2715,2675,2716,0,4208,4149,4209,2733,2687,2734,42,2716,2675,2717,0,4209,4149,4210,2734,2687,2735,42,2717,2675,2671,0,4210,4149,4146,2735,2687,2683,42,2717,2671,2670,0,4211,4143,4142,2735,2683,2682,42,2717,2670,2718,0,4211,4142,4212,2735,2682,2736,42,2718,2670,2719,0,4212,4142,4213,2736,2682,2737,42,2670,2667,2719,0,4142,4139,4213,2682,2679,2737,42,2719,2667,2666,0,4213,4139,4138,2737,2679,2678,42,2720,2719,2666,0,4214,4213,4138,2738,2737,2678,42,2721,2719,2720,0,4215,4213,4214,2739,2737,2738,42,2718,2719,2721,0,4216,4213,4215,2736,2737,2739,42,2722,2718,2721,0,4217,4216,4215,2740,2736,2739,42,2722,2723,2718,0,4217,4218,4216,2740,2741,2736,42,2722,2724,2723,0,4219,4220,4221,2740,2742,2741,42,2659,2724,2722,0,4131,4220,4219,2671,2742,2740,42,2724,2659,2725,0,4220,4131,4222,2742,2671,2743,42,2659,2660,2725,0,4131,4132,4222,2671,2672,2743,42,2725,2660,2726,0,4222,4132,4223,2743,2672,2744,42,2726,2660,2661,0,4223,4132,4133,2744,2672,2673,42,2661,2668,2726,0,4133,4140,4223,2673,2680,2744,42,2661,2662,2668,0,4133,4134,4140,2673,2674,2680,42,2664,2668,2662,0,4136,4140,4134,2676,2680,2674,42,2726,2668,2727,0,4223,4140,4224,2744,2680,2745,42,2668,2672,2727,0,4140,4144,4224,2680,2684,2745,42,2669,2672,2668,0,4141,4144,4140,2681,2684,2680,42,2727,2672,2728,0,4224,4144,4225,2745,2684,2746,42,2672,2673,2728,0,4144,4145,4225,2684,2685,2746,42,2728,2673,2729,0,4226,4148,4227,2746,2685,2747,42,2673,2674,2729,0,4148,4147,4227,2685,2686,2747,42,2729,2674,2730,0,4227,4147,4228,2747,2686,2748,42,2674,2677,2730,0,4147,4151,4228,2686,2689,2748,42,2730,2677,2731,0,4228,4151,4229,2748,2689,2749,42,2677,2679,2731,0,4151,4153,4229,2689,2691,2749,42,2731,2679,2732,0,4229,4153,4230,2749,2691,2750,42,2679,2681,2732,0,4153,4155,4230,2691,2693,2750,42,2732,2681,2733,0,4230,4155,4231,2750,2693,2751,42,2681,2683,2733,0,4155,4157,4231,2693,2695,2751,42,2683,2734,2733,0,4157,4232,4231,2695,2752,2751,42,2734,2683,2735,0,4232,4157,4233,2752,2695,2753,42,2683,2736,2735,0,4157,4234,4233,2695,2754,2753,42,2683,2684,2736,0,4157,4158,4234,2695,2696,2754,42,2686,2736,2684,0,4160,4234,4158,2698,2754,2696,42,2686,2737,2736,0,4160,4235,4234,2698,2755,2754,42,2688,2737,2686,0,4162,4235,4160,2700,2755,2698,42,2688,2738,2737,0,4162,4236,4235,2700,2756,2755,42,2690,2738,2688,0,4166,4237,4164,2702,2756,2700,42,2690,2739,2738,0,4166,4238,4237,2702,2757,2756,42,2740,2739,2690,0,4239,4240,4169,2758,2757,2702,42,2740,2738,2739,0,4239,4236,4240,2758,2756,2757,42,2737,2738,2740,0,4235,4236,4239,2755,2756,2758,42,2735,2737,2740,0,4233,4235,4239,2753,2755,2758,42,2736,2737,2735,0,4234,4235,4233,2754,2755,2753,42,2691,2735,2740,0,4168,4233,4239,2703,2753,2758,42,2734,2735,2691,0,4232,4233,4168,2752,2753,2703,42,2692,2734,2691,0,4170,4232,4168,2704,2752,2703,42,2692,2733,2734,0,4170,4231,4232,2704,2751,2752,42,2694,2733,2692,0,4172,4231,4170,2706,2751,2704,42,2694,2732,2733,0,4172,4230,4231,2706,2750,2751,42,2694,2731,2732,0,4172,4229,4230,2706,2749,2750,42,2696,2731,2694,0,4174,4229,4172,2708,2749,2706,42,2696,2698,2731,0,4174,4176,4229,2708,2710,2749,42,2698,2730,2731,0,4176,4228,4229,2710,2748,2749,42,2698,2729,2730,0,4176,4227,4228,2710,2747,2748,42,2698,2741,2729,0,4176,4241,4227,2710,2759,2747,42,2742,2741,2698,0,4242,4241,4176,2760,2759,2710,42,2742,2743,2741,0,4242,4243,4241,2760,2761,2759,42,2742,2744,2743,0,4242,4244,4243,2760,2762,2761,42,2745,2744,2742,0,4245,4246,4247,2763,2762,2760,42,2723,2744,2745,0,4221,4248,4249,2741,2762,2763,42,2723,2746,2744,0,4221,4250,4248,2741,2764,2762,42,2724,2746,2723,0,4220,4250,4221,2742,2764,2741,42,2746,2724,2725,0,4250,4220,4222,2764,2742,2743,42,2746,2725,2747,0,4250,4222,4251,2764,2743,2765,42,2747,2725,2727,0,4251,4222,4224,2765,2743,2745,42,2727,2725,2726,0,4224,4222,4223,2745,2743,2744,42,2728,2747,2727,0,4225,4251,4224,2746,2765,2745,42,2743,2747,2728,0,4252,4251,4225,2761,2765,2746,42,2743,2746,2747,0,4252,4250,4251,2761,2764,2765,42,2744,2746,2743,0,4248,4250,4252,2762,2764,2761,42,2741,2743,2728,0,4241,4243,4226,2759,2761,2746,42,2741,2728,2729,0,4241,4226,4227,2759,2746,2747,42,2723,2745,2748,0,4218,4253,4254,2741,2763,2766,42,2745,2749,2748,0,4245,4255,4256,2763,2767,2766,42,2745,2750,2749,0,4245,4257,4255,2763,2768,2767,42,2745,2742,2750,0,4245,4247,4257,2763,2760,2768,42,2699,2750,2742,0,4180,4257,4247,2711,2768,2760,42,2699,2751,2750,0,4180,4258,4257,2711,2769,2768,42,2699,2700,2751,0,4180,4179,4258,2711,2712,2769,42,2700,2715,2751,0,4179,4208,4258,2712,2733,2769,42,2700,2712,2715,0,4179,4203,4208,2712,2730,2733,42,2751,2715,2716,0,4258,4208,4209,2769,2733,2734,42,2751,2716,2749,0,4258,4209,4255,2769,2734,2767,42,2749,2716,2748,0,4255,4209,4256,2767,2734,2766,42,2748,2716,2717,0,4256,4209,4210,2766,2734,2735,42,2718,2748,2717,0,4212,4254,4211,2736,2766,2735,42,2723,2748,2718,0,4218,4254,4212,2741,2766,2736,42,2751,2749,2750,0,4258,4255,4257,2769,2767,2768,42,2699,2742,2698,0,4177,4242,4176,2711,2760,2710,42,2691,2740,2690,0,4168,4239,4169,2703,2758,2702,42,2659,2722,2658,0,4131,4219,4130,2671,2740,2670,42,2658,2722,2721,0,4259,4217,4215,2670,2740,2739,42,2658,2721,2720,0,4259,4215,4214,2670,2739,2738,42,2657,2658,2720,0,4260,4259,4214,2669,2670,2738,42,2657,2720,2752,0,4260,4214,4261,2669,2738,2770,42,2720,2665,2752,0,4214,4137,4261,2738,2677,2770,42,2720,2666,2665,0,4214,4138,4137,2738,2678,2677,42,2752,2665,2753,0,4261,4137,4262,2770,2677,2771,42,2753,2665,2754,0,4262,4137,4263,2771,2677,2772,42,2665,2755,2754,0,4137,4264,4263,2677,2773,2772,42,2665,2663,2755,0,4137,4135,4264,2677,2675,2773,42,2652,2755,2663,0,4124,4264,4135,2664,2773,2675,42,2652,2756,2755,0,4124,4265,4264,2664,2774,2773,42,2651,2756,2652,0,4123,4265,4124,2663,2774,2664,42,2757,2756,2651,0,4266,4265,4123,2775,2774,2663,42,2757,2758,2756,0,4266,4267,4265,2775,2776,2774,42,2759,2758,2757,0,4268,4267,4266,2777,2776,2775,42,2760,2758,2759,0,4269,4267,4268,2778,2776,2777,42,2760,2756,2758,0,4269,4265,4267,2778,2774,2776,42,2755,2756,2760,0,4264,4265,4269,2773,2774,2778,42,2754,2755,2760,0,4263,4264,4269,2772,2773,2778,42,2754,2760,2761,0,4263,4269,4270,2772,2778,2779,42,2761,2760,2762,0,4270,4269,4271,2779,2778,2780,42,2759,2762,2760,0,4268,4271,4269,2777,2780,2778,42,2763,2762,2759,0,4272,4271,4268,2781,2780,2777,42,2764,2762,2763,0,4273,4271,4272,2782,2780,2781,42,2765,2762,2764,0,4274,4271,4273,2783,2780,2782,42,2761,2762,2765,0,4270,4271,4274,2779,2780,2783,42,2766,2761,2765,0,4275,4270,4274,2784,2779,2783,42,2766,2754,2761,0,4275,4263,4270,2784,2772,2779,42,2767,2754,2766,0,4276,4263,4275,2785,2772,2784,42,2753,2754,2767,0,4262,4263,4276,2771,2772,2785,42,2768,2753,2767,0,4277,4262,4276,2786,2771,2785,42,2768,2752,2753,0,4277,4261,4262,2786,2770,2771,42,2768,2657,2752,0,4277,4260,4261,2786,2669,2770,42,2657,2768,2656,0,4129,4278,4128,2669,2786,2668,42,2768,2769,2656,0,4278,4279,4128,2786,2787,2668,42,2769,2768,2770,0,4279,4278,4280,2787,2786,2788,42,2770,2768,2767,0,4281,4277,4276,2788,2786,2785,42,2766,2770,2767,0,4275,4281,4276,2784,2788,2785,42,2771,2770,2766,0,4282,4281,4275,2789,2788,2784,42,2771,2772,2770,0,4283,4284,4280,2789,2790,2788,42,2773,2772,2771,0,4285,4284,4283,2791,2790,2789,42,2774,2772,2773,0,4286,4284,4285,2792,2790,2791,42,2774,2775,2772,0,4286,4287,4284,2792,2793,2790,42,2774,2776,2775,0,4286,4288,4287,2792,2794,2793,42,2777,2776,2774,0,4289,4288,4286,2795,2794,2792,42,2777,2778,2776,0,4289,4290,4288,2795,2796,2794,42,2779,2778,2777,0,4291,4290,4289,2797,2796,2795,42,2779,2780,2778,0,4291,4292,4290,2797,2798,2796,42,2781,2780,2779,0,4293,4292,4291,2799,2798,2797,42,2781,2782,2780,0,4293,4294,4292,2799,2800,2798,42,2781,2783,2782,0,4293,4295,4294,2799,2801,2800,42,2783,2781,2784,0,4295,4293,4296,2801,2799,2802,42,2781,2785,2784,0,4293,4297,4296,2799,2803,2802,42,2781,2779,2785,0,4293,4291,4297,2799,2797,2803,42,2785,2779,2786,0,4297,4291,4298,2803,2797,2804,42,2779,2777,2786,0,4291,4289,4298,2797,2795,2804,42,2786,2777,2774,0,4298,4289,4286,2804,2795,2792,42,2786,2774,2773,0,4298,4286,4285,2804,2792,2791,42,2786,2773,2787,0,4299,4300,4301,2804,2791,2805,42,2773,2766,2787,0,4300,4275,4301,2791,2784,2805,42,2773,2771,2766,0,4300,4282,4275,2791,2789,2784,42,2787,2766,2765,0,4301,4275,4274,2805,2784,2783,42,2787,2765,2788,0,4301,4274,4302,2805,2783,2806,42,2788,2765,2764,0,4302,4274,4273,2806,2783,2782,42,2788,2764,2789,0,4302,4273,4303,2806,2782,2807,42,2790,2789,2764,0,4304,4303,4273,2808,2807,2782,42,2791,2789,2790,0,4305,4303,4304,2809,2807,2808,42,2792,2789,2791,0,4306,4303,4305,2810,2807,2809,42,2792,2788,2789,0,4306,4302,4303,2810,2806,2807,42,2793,2788,2792,0,4307,4302,4306,2811,2806,2810,42,2793,2794,2788,0,4307,4308,4302,2811,2812,2806,42,2785,2794,2793,0,4309,4308,4307,2803,2812,2811,42,2785,2786,2794,0,4309,4299,4308,2803,2804,2812,42,2786,2787,2794,0,4299,4301,4308,2804,2805,2812,42,2794,2787,2788,0,4308,4301,4302,2812,2805,2806,42,2784,2785,2793,0,4310,4309,4307,2802,2803,2811,42,2784,2793,2795,0,4310,4307,4311,2802,2811,2813,42,2795,2793,2792,0,4311,4307,4306,2813,2811,2810,42,2795,2792,2796,0,4311,4306,4312,2813,2810,2814,42,2796,2792,2791,0,4312,4306,4305,2814,2810,2809,42,2796,2791,2797,0,4312,4305,4313,2814,2809,2815,42,2797,2791,2798,0,4313,4305,4314,2815,2809,2816,42,2798,2791,2790,0,4314,4305,4304,2816,2809,2808,42,2798,2790,2799,0,4314,4304,4315,2816,2808,2817,42,2799,2790,2800,0,4315,4304,4316,2817,2808,2818,42,2790,2763,2800,0,4304,4272,4316,2808,2781,2818,42,2790,2764,2763,0,4304,4273,4272,2808,2782,2781,42,2800,2763,2801,0,4316,4272,4317,2818,2781,2819,42,2763,2759,2801,0,4272,4268,4317,2781,2777,2819,42,2801,2759,2757,0,4317,4268,4266,2819,2777,2775,42,2802,2801,2757,0,4318,4317,4266,2820,2819,2775,42,2802,2800,2801,0,4318,4316,4317,2820,2818,2819,42,2802,2775,2800,0,4318,4287,4316,2820,2793,2818,42,2772,2775,2802,0,4284,4287,4318,2790,2793,2820,42,2772,2802,2654,0,4284,4318,4126,2790,2820,2666,42,2654,2802,2757,0,4126,4318,4266,2666,2820,2775,42,2654,2757,2651,0,4126,4266,4123,2666,2775,2663,42,2769,2772,2654,0,4279,4284,4126,2787,2790,2666,42,2772,2769,2770,0,4284,4279,4280,2790,2787,2788,42,2656,2769,2654,0,4128,4279,4126,2668,2787,2666,42,2776,2800,2775,0,4288,4316,4287,2794,2818,2793,42,2776,2799,2800,0,4288,4315,4316,2794,2817,2818,42,2776,2803,2799,0,4288,4319,4315,2794,2821,2817,42,2776,2778,2803,0,4288,4290,4319,2794,2796,2821,42,2778,2804,2803,0,4290,4320,4319,2796,2822,2821,42,2778,2780,2804,0,4290,4292,4320,2796,2798,2822,42,2780,2805,2804,0,4292,4321,4320,2798,2823,2822,42,2780,2782,2805,0,4292,4294,4321,2798,2800,2823,42,2782,2806,2805,0,4294,4322,4321,2800,2824,2823,42,2807,2806,2782,0,4323,4322,4294,2825,2824,2800,42,2783,2807,2782,0,4295,4323,4294,2801,2825,2800,42,2808,2807,2783,0,4324,4323,4295,2826,2825,2801,42,2808,2783,2809,0,4324,4295,4325,2826,2801,2827,42,2783,2784,2809,0,4295,4296,4325,2801,2802,2827,42,2809,2784,2795,0,4326,4310,4311,2827,2802,2813,42,2809,2795,2810,0,4326,4311,4327,2827,2813,2828,42,2795,2796,2810,0,4311,4312,4327,2813,2814,2828,42,2810,2796,2811,0,4327,4312,4328,2828,2814,2829,42,2796,2797,2811,0,4312,4313,4328,2814,2815,2829,42,2811,2797,2812,0,4328,4313,4329,2829,2815,2830,42,2812,2797,2813,0,4329,4313,4330,2830,2815,2831,42,2813,2797,2798,0,4330,4313,4314,2831,2815,2816,42,2813,2798,2803,0,4330,4314,4319,2831,2816,2821,42,2803,2798,2799,0,4319,4314,4315,2821,2816,2817,42,2804,2813,2803,0,4320,4330,4319,2822,2831,2821,42,2814,2813,2804,0,4331,4330,4320,2832,2831,2822,42,2814,2812,2813,0,4331,4329,4330,2832,2830,2831,42,2815,2812,2814,0,4332,4329,4331,2833,2830,2832,42,2816,2812,2815,0,4333,4329,4332,2834,2830,2833,42,2811,2812,2816,0,4328,4329,4333,2829,2830,2834,42,2817,2811,2816,0,4334,4328,4333,2835,2829,2834,42,2810,2811,2817,0,4327,4328,4334,2828,2829,2835,42,2818,2810,2817,0,4335,4327,4334,2836,2828,2835,42,2818,2809,2810,0,4335,4326,4327,2836,2827,2828,42,2808,2809,2818,0,4324,4325,4336,2826,2827,2836,42,2819,2815,2814,0,4337,4332,4331,2837,2833,2832,42,2819,2814,2805,0,4337,4331,4321,2837,2832,2823,42,2805,2814,2804,0,4321,4331,4320,2823,2832,2822,42,2806,2819,2805,0,4322,4337,4321,2824,2837,2823,42,2820,2821,2822,4,4338,4339,4340,2838,2839,2840,42,2820,2823,2821,4,4341,4342,4343,2838,2841,2839,42,2823,2820,2824,4,4344,4345,4346,2841,2838,2842,42,2824,2820,2825,4,4346,4345,4347,2842,2838,2843,42,2820,2826,2825,4,4345,4348,4347,2838,2844,2843,42,2820,2822,2826,4,4338,4340,4349,2838,2840,2844,42,2826,2822,2827,4,4349,4340,4350,2844,2840,2845,42,2822,2828,2827,4,4351,4352,4353,2840,2846,2845,42,2822,2829,2828,4,4351,4354,4352,2840,2847,2846,42,2822,2830,2829,4,4351,4355,4354,2840,2848,2847,42,2822,2831,2830,4,4351,4356,4355,2840,2849,2848,42,2821,2831,2822,4,4339,4357,4340,2839,2849,2840,42,2821,2832,2831,4,4339,4358,4357,2839,2850,2849,42,2821,2833,2832,4,4339,4359,4358,2839,2851,2850,42,2823,2833,2821,4,4342,4360,4343,2841,2851,2839,42,2823,2834,2833,4,4342,4361,4360,2841,2852,2851,42,2835,2834,2823,4,4362,4363,4344,2853,2852,2841,42,2835,2836,2834,4,4362,4364,4363,2853,2854,2852,42,2836,2835,2837,4,4365,4366,4367,2854,2853,2855,42,2837,2835,2824,4,4367,4366,4368,2855,2853,2842,42,2835,2823,2824,4,4362,4344,4346,2853,2841,2842,42,2838,2837,2824,4,4369,4367,4368,2856,2855,2842,42,2837,2838,2839,4,4367,4369,4370,2855,2856,2857,42,2839,2838,2840,4,4370,4369,4371,2857,2856,2858,42,2838,2841,2840,4,4369,4372,4371,2856,2859,2858,42,2841,2838,2842,4,4372,4369,4373,2859,2856,2860,42,2838,2843,2842,4,4369,4374,4373,2856,2861,2860,42,2838,2824,2843,4,4369,4368,4375,2856,2842,2861,42,2843,2824,2844,4,4375,4368,4376,2861,2842,2862,42,2824,2825,2844,4,4368,4377,4376,2842,2843,2862,42,2825,2845,2844,4,4377,4378,4376,2843,2863,2862,42,2825,2846,2845,4,4377,4379,4378,2843,2864,2863,42,2825,2826,2846,4,4347,4348,4380,2843,2844,2864,42,2826,2847,2846,4,4349,4381,4382,2844,2865,2864,42,2826,2827,2847,4,4349,4350,4381,2844,2845,2865,42,2847,2827,2828,4,4383,4353,4352,2865,2845,2846,42,2847,2828,2848,4,4384,4385,4386,2865,2846,2866,42,2848,2828,2849,4,4386,4385,4387,2866,2846,2867,42,2850,2849,2828,4,4388,4387,4385,2868,2867,2846,42,2849,2850,2851,4,4387,4388,4389,2867,2868,2869,42,2852,2851,2850,4,4390,4389,4388,2870,2869,2868,42,2852,2853,2851,4,4390,4391,4389,2870,2871,2869,42,2854,2853,2852,4,4392,4391,4390,2872,2871,2870,42,2854,2855,2853,4,4392,4393,4391,2872,2873,2871,42,2854,2856,2855,4,4392,4394,4393,2872,2874,2873,42,2857,2856,2854,4,4395,4394,4392,2875,2874,2872,42,2857,2858,2856,4,4395,4396,4394,2875,2876,2874,42,2857,2859,2858,4,4395,4397,4396,2875,2877,2876,42,2857,2860,2859,4,4395,4398,4397,2875,2878,2877,42,2861,2860,2857,4,4399,4398,4395,2879,2878,2875,42,2862,2860,2861,4,4400,4401,4402,2880,2878,2879,42,2862,2863,2860,4,4400,4403,4401,2880,2881,2878,42,2864,2863,2862,4,4404,4405,4406,2882,2881,2880,42,2864,2865,2863,4,4404,4407,4405,2882,2883,2881,42,2864,2866,2865,4,4404,4408,4407,2882,2884,2883,42,2867,2866,2864,4,4409,4408,4404,2885,2884,2882,42,2868,2866,2867,4,4410,4411,4412,2886,2884,2885,42,2868,2869,2866,4,4410,4413,4411,2886,2887,2884,42,2868,2870,2869,4,4414,4415,4416,2886,2888,2887,42,2871,2870,2868,4,4417,4415,4414,2889,2888,2886,42,2872,2870,2871,4,4418,4419,4420,2890,2888,2889,42,2872,2873,2870,4,4418,4421,4419,2890,2891,2888,42,2872,2874,2873,4,4422,4423,4424,2890,2892,2891,42,2872,2875,2874,4,4422,4425,4423,2890,2893,2892,42,2836,2875,2872,4,4365,4425,4422,2854,2893,2890,42,2837,2875,2836,4,4367,4425,4365,2855,2893,2854,42,2875,2837,2839,4,4425,4367,4370,2893,2855,2857,42,2875,2839,2874,4,4425,4370,4423,2893,2857,2892,42,2874,2839,2876,4,4423,4370,4426,2892,2857,2894,42,2876,2839,2877,4,4427,4428,4429,2894,2857,2895,42,2877,2839,2840,4,4430,4370,4371,2895,2857,2858,42,2877,2840,2878,4,4430,4371,4431,2895,2858,2896,42,2840,2879,2878,4,4371,4432,4431,2858,2897,2896,42,2879,2880,2878,4,4432,4433,4431,2897,2898,2896,42,2881,2878,2880,4,4434,4431,4433,2899,2896,2898,42,2877,2878,2881,4,4430,4431,4434,2895,2896,2899,42,2882,2877,2881,4,4435,4430,4434,2900,2895,2899,42,2883,2877,2882,4,4436,4429,4437,2901,2895,2900,42,2884,2877,2883,4,4438,4429,4436,2902,2895,2901,42,2884,2876,2877,4,4438,4427,4429,2902,2894,2895,42,2874,2876,2884,4,4423,4426,4439,2892,2894,2902,42,2885,2874,2884,4,4440,4423,4439,2903,2892,2902,42,2873,2874,2885,4,4424,4423,4440,2891,2892,2903,42,2873,2885,2886,4,4424,4440,4441,2891,2903,2904,42,2885,2887,2886,4,4440,4442,4441,2903,2905,2904,42,2885,2884,2887,4,4440,4439,4442,2903,2902,2905,42,2887,2884,2888,4,4442,4439,4443,2905,2902,2906,42,2888,2884,2883,4,4444,4438,4436,2906,2902,2901,42,2888,2883,2889,4,4444,4436,4445,2906,2901,2907,42,2889,2883,2890,4,4445,4436,4446,2907,2901,2908,42,2883,2882,2890,4,4436,4437,4446,2901,2900,2908,42,2882,2891,2890,4,4435,4447,4448,2900,2909,2908,42,2882,2881,2891,4,4435,4434,4447,2900,2899,2909,42,2881,2880,2891,4,4434,4433,4447,2899,2898,2909,42,2880,2892,2891,4,4433,4449,4447,2898,2910,2909,42,2891,2892,2893,4,4447,4449,4450,2909,2910,2911,42,2891,2893,2894,4,4447,4450,4451,2909,2911,2912,42,2894,2893,2895,4,4451,4450,4452,2912,2911,2913,42,2894,2895,2896,4,4451,4452,4453,2912,2913,2914,42,2896,2895,2897,4,4453,4452,4454,2914,2913,2915,42,2896,2897,2898,4,4453,4454,4455,2914,2915,2916,42,2899,2896,2898,4,4456,4453,4455,2917,2914,2916,42,2900,2896,2899,4,4457,4453,4456,2918,2914,2917,42,2900,2894,2896,4,4457,4451,4453,2918,2912,2914,42,2890,2894,2900,4,4448,4451,4457,2908,2912,2918,42,2894,2890,2891,4,4451,4448,4447,2912,2908,2909,42,2900,2889,2890,4,4458,4445,4446,2918,2907,2908,42,2901,2889,2900,4,4459,4445,4458,2919,2907,2918,42,2888,2889,2901,4,4444,4445,4459,2906,2907,2919,42,2902,2888,2901,4,4460,4444,4459,2920,2906,2919,42,2887,2888,2902,4,4442,4443,4461,2905,2906,2920,42,2887,2902,2903,4,4442,4461,4462,2905,2920,2921,42,2904,2903,2902,4,4463,4462,4461,2922,2921,2920,42,2903,2904,2905,4,4462,4463,4464,2921,2922,2923,42,2906,2905,2904,4,4465,4464,4463,2924,2923,2922,42,2905,2906,2907,4,4464,4465,4466,2923,2924,2925,42,2905,2907,2908,4,4464,4466,4467,2923,2925,2926,42,2908,2907,2909,4,4467,4466,4468,2926,2925,2927,42,2908,2909,2910,4,4467,4468,4469,2926,2927,2928,42,2910,2909,2911,4,4469,4468,4470,2928,2927,2929,42,2912,2908,2910,4,4471,4467,4469,2930,2926,2928,42,2913,2908,2912,4,4472,4467,4471,2931,2926,2930,42,2913,2905,2908,4,4472,4464,4467,2931,2923,2926,42,2903,2905,2913,4,4462,4464,4472,2921,2923,2931,42,2886,2903,2913,4,4441,4462,4472,2904,2921,2931,42,2886,2887,2903,4,4441,4442,4462,2904,2905,2921,42,2886,2913,2914,4,4441,4472,4473,2904,2931,2932,42,2914,2913,2912,4,4473,4472,4471,2932,2931,2930,42,2914,2912,2915,4,4473,4471,4474,2932,2930,2933,42,2915,2912,2916,4,4474,4471,4475,2933,2930,2934,42,2916,2912,2917,4,4475,4471,4476,2934,2930,2935,42,2916,2917,2918,4,4475,4476,4477,2934,2935,2936,42,2918,2917,2919,4,4477,4476,4478,2936,2935,2937,42,2918,2919,2920,4,4477,4478,4479,2936,2937,2938,42,2918,2920,2921,4,4480,4481,4482,2936,2938,2939,42,2918,2921,2922,4,4480,4482,4483,2936,2939,2940,42,2923,2918,2922,4,4484,4480,4483,2941,2936,2940,42,2916,2918,2923,4,4485,4480,4484,2934,2936,2941,42,2924,2916,2923,4,4486,4485,4484,2942,2934,2941,42,2915,2916,2924,4,4487,4485,4486,2933,2934,2942,42,2870,2915,2924,4,4415,4487,4486,2888,2933,2942,42,2873,2915,2870,4,4421,4474,4419,2891,2933,2888,42,2873,2914,2915,4,4421,4473,4474,2891,2932,2933,42,2873,2886,2914,4,4488,4441,4473,2891,2904,2932,42,2870,2924,2869,4,4415,4486,4416,2888,2942,2887,42,2869,2924,2925,4,4489,4490,4491,2887,2942,2943,42,2923,2925,2924,4,4492,4491,4490,2941,2943,2942,42,2925,2923,2926,4,4491,4492,4493,2943,2941,2944,42,2923,2927,2926,4,4492,4494,4493,2941,2945,2944,42,2928,2926,2927,4,4495,4493,4494,2946,2944,2945,42,2926,2928,2929,4,4496,4497,4498,2944,2946,2947,42,2929,2928,2930,4,4498,4497,4499,2947,2946,2948,42,2928,2931,2930,4,4497,4500,4499,2946,2949,2948,42,2931,2928,2932,4,4501,4495,4502,2949,2946,2950,42,2932,2928,2927,4,4502,4495,4494,2950,2946,2945,42,2930,2931,2933,4,4499,4500,4503,2948,2949,2951,42,2934,2930,2933,4,4504,4505,4506,2952,2948,2951,42,2935,2930,2934,4,4507,4505,4504,2953,2948,2952,42,2929,2930,2935,4,4508,4505,4507,2947,2948,2953,42,2936,2929,2935,4,4509,4508,4507,2954,2947,2953,42,2937,2929,2936,4,4510,4508,4509,2955,2947,2954,42,2937,2926,2929,4,4511,4496,4498,2955,2944,2947,42,2925,2926,2937,4,4512,4496,4511,2943,2944,2955,42,2869,2925,2937,4,4413,4512,4511,2887,2943,2955,42,2869,2937,2866,4,4413,4511,4411,2887,2955,2884,42,2866,2937,2936,4,4408,4510,4509,2884,2955,2954,42,2866,2936,2865,4,4408,4509,4407,2884,2954,2883,42,2865,2936,2863,4,4407,4509,4405,2883,2954,2881,42,2863,2936,2938,4,4405,4509,4513,2881,2954,2956,42,2936,2935,2938,4,4509,4507,4513,2954,2953,2956,42,2938,2935,2939,4,4513,4507,4514,2956,2953,2957,42,2935,2934,2939,4,4507,4504,4514,2953,2952,2957,42,2939,2934,2940,4,4514,4504,4515,2957,2952,2958,42,2934,2941,2940,4,4504,4516,4515,2952,2959,2958,42,2940,2941,2942,4,4515,4516,4517,2958,2959,2960,42,2940,2942,2943,4,4518,4519,4520,2958,2960,2961,42,2942,2944,2943,4,4519,4521,4520,2960,2962,2961,42,2945,2940,2943,4,4522,4518,4520,2963,2958,2961,42,2939,2940,2945,4,4523,4518,4522,2957,2958,2963,42,2938,2939,2945,4,4524,4523,4522,2956,2957,2963,42,2938,2945,2946,4,4524,4522,4525,2956,2963,2964,42,2946,2945,2947,4,4526,4527,4528,2964,2963,2965,42,2945,2943,2947,4,4527,4529,4528,2963,2961,2965,42,2947,2943,2948,4,4528,4529,4530,2965,2961,2966,42,2948,2943,2949,4,4530,4529,4531,2966,2961,2967,42,2948,2949,2950,4,4530,4531,4532,2966,2967,2968,42,2948,2950,2951,4,4533,4534,4535,2966,2968,2969,42,2951,2950,2952,4,4535,4534,4536,2969,2968,2970,42,2951,2952,2953,4,4535,4536,4537,2969,2970,2971,42,2952,2954,2953,4,4536,4538,4537,2970,2972,2971,42,2954,2955,2953,4,4538,4539,4537,2972,2973,2971,42,2955,2956,2953,4,4539,4540,4537,2973,2974,2971,42,2953,2956,2957,4,4537,4540,4541,2971,2974,2975,42,2956,2958,2957,4,4540,4542,4541,2974,2976,2975,42,2958,2956,2959,4,4542,4540,4543,2976,2974,2977,42,2956,2960,2959,4,4540,4544,4543,2974,2978,2977,42,2959,2960,2961,4,4543,4544,4545,2977,2978,2979,42,2959,2961,2962,4,4546,4547,4548,2977,2979,2980,42,2962,2961,2963,4,4548,4547,4549,2980,2979,2981,42,2964,2962,2963,4,4550,4548,4549,2982,2980,2981,42,2965,2962,2964,4,4551,4548,4550,2983,2980,2982,42,2966,2962,2965,4,4552,4548,4551,2984,2980,2983,42,2967,2962,2966,4,4553,4548,4552,2985,2980,2984,42,2967,2959,2962,4,4553,4546,4548,2985,2977,2980,42,2959,2967,2958,4,4546,4553,4554,2977,2985,2976,42,2958,2967,2968,4,4554,4553,4555,2976,2985,2986,42,2969,2968,2967,4,4556,4555,4553,2987,2986,2985,42,2970,2968,2969,4,4557,4555,4556,2988,2986,2987,42,2971,2968,2970,4,4558,4555,4557,2989,2986,2988,42,2972,2968,2971,4,4559,4555,4558,2990,2986,2989,42,2972,2973,2968,4,4559,4560,4555,2990,2991,2986,42,2974,2973,2972,4,4561,4562,4563,2992,2991,2990,42,2974,2975,2973,4,4561,4564,4562,2992,2993,2991,42,2976,2975,2974,4,4565,4564,4561,2994,2993,2992,42,2977,2975,2976,4,4566,4564,4565,2995,2993,2994,42,2977,2957,2975,4,4566,4541,4564,2995,2975,2993,42,2953,2957,2977,4,4537,4541,4566,2971,2975,2995,42,2977,2951,2953,4,4566,4535,4537,2995,2969,2971,42,2978,2951,2977,4,4567,4535,4566,2996,2969,2995,42,2978,2948,2951,4,4567,4533,4535,2996,2966,2969,42,2947,2948,2978,4,4568,4533,4567,2965,2966,2996,42,2979,2947,2978,4,4569,4568,4567,2997,2965,2996,42,2946,2947,2979,4,4570,4568,4569,2964,2965,2997,42,2859,2946,2979,4,4397,4570,4569,2877,2964,2997,42,2860,2946,2859,4,4398,4570,4397,2878,2964,2877,42,2860,2938,2946,4,4401,4524,4525,2878,2956,2964,42,2863,2938,2860,4,4403,4524,4401,2881,2956,2878,42,2859,2979,2858,4,4397,4569,4396,2877,2997,2876,42,2858,2979,2976,4,4396,4569,4565,2876,2997,2994,42,2979,2978,2976,4,4569,4567,4565,2997,2996,2994,42,2976,2978,2977,4,4565,4567,4566,2994,2996,2995,42,2858,2976,2974,4,4396,4565,4561,2876,2994,2992,42,2858,2974,2856,4,4396,4561,4394,2876,2992,2874,42,2856,2974,2972,4,4394,4561,4563,2874,2992,2990,42,2856,2972,2980,4,4394,4563,4571,2874,2990,2998,42,2980,2972,2971,4,4572,4559,4558,2998,2990,2989,42,2980,2971,2981,4,4572,4558,4573,2998,2989,2999,42,2981,2971,2970,4,4573,4558,4557,2999,2989,2988,42,2981,2970,2982,4,4573,4557,4574,2999,2988,3000,42,2981,2982,2983,4,4573,4574,4575,2999,3000,3001,42,2983,2982,2984,4,4575,4574,4576,3001,3000,3002,42,2983,2984,2985,4,4575,4576,4577,3001,3002,3003,42,2986,2983,2985,4,4578,4575,4577,3004,3001,3003,42,2987,2983,2986,4,4579,4575,4578,3005,3001,3004,42,2987,2981,2983,4,4579,4573,4575,3005,2999,3001,42,2980,2981,2987,4,4572,4573,4579,2998,2999,3005,42,2855,2980,2987,4,4393,4571,4580,2873,2998,3005,42,2856,2980,2855,4,4394,4571,4393,2874,2998,2873,42,2855,2987,2853,4,4393,4580,4391,2873,3005,2871,42,2987,2986,2853,4,4580,4581,4391,3005,3004,2871,42,2853,2986,2851,4,4391,4581,4389,2871,3004,2869,42,2986,2985,2851,4,4578,4577,4582,3004,3003,2869,42,2851,2985,2988,4,4582,4577,4583,2869,3003,3006,42,2988,2985,2989,4,4584,4585,4586,3006,3003,3007,42,2985,2990,2989,4,4585,4587,4586,3003,3008,3007,42,2985,2991,2990,4,4585,4588,4587,3003,3009,3008,42,2991,2992,2990,4,4588,4589,4587,3009,3010,3008,42,2990,2992,2993,4,4587,4589,4590,3008,3010,3011,42,2993,2992,2994,4,4590,4589,4591,3011,3010,3012,42,2992,2995,2994,4,4589,4592,4591,3010,3013,3012,42,2995,2996,2994,4,4592,4593,4591,3013,3014,3012,42,2995,2997,2996,4,4592,4594,4593,3013,3015,3014,42,2997,2998,2996,4,4594,4595,4593,3015,3016,3014,42,2997,2999,2998,4,4594,4596,4595,3015,3017,3016,42,2999,3000,2998,4,4596,4597,4595,3017,3018,3016,42,2999,3001,3000,4,4596,4598,4597,3017,3019,3018,42,2998,3000,3002,4,4595,4597,4599,3016,3018,3020,42,2998,3002,3003,4,4595,4599,4600,3016,3020,3021,42,3003,3002,3004,4,4601,4602,4603,3021,3020,3022,42,3005,3003,3004,4,4604,4601,4603,3023,3021,3022,42,2996,3003,3005,4,4593,4600,4605,3014,3021,3023,42,2998,3003,2996,4,4595,4600,4593,3016,3021,3014,42,2994,2996,3005,4,4591,4593,4605,3012,3014,3023,42,2994,3005,3006,4,4591,4605,4606,3012,3023,3024,42,3006,3005,3007,4,4607,4604,4608,3024,3023,3025,42,3005,3004,3007,4,4604,4603,4608,3023,3022,3025,42,3007,3004,3008,4,4609,4610,4611,3025,3022,3026,42,3004,3009,3008,4,4610,4612,4611,3022,3027,3026,42,3004,3010,3009,4,4610,4613,4612,3022,3028,3027,42,3010,3011,3009,4,4613,4614,4612,3028,3029,3027,42,3009,3011,3012,4,4612,4614,4615,3027,3029,3030,42,3009,3012,3013,4,4612,4615,4616,3027,3030,3031,42,3013,3012,3014,4,4616,4615,4617,3031,3030,3032,42,3015,3013,3014,4,4618,4616,4617,3033,3031,3032,42,3016,3013,3015,4,4619,4616,4618,3034,3031,3033,42,3008,3013,3016,4,4611,4616,4619,3026,3031,3034,42,3008,3009,3013,4,4611,4612,4616,3026,3027,3031,42,3017,3008,3016,4,4620,4611,4619,3035,3026,3034,42,3007,3008,3017,4,4609,4611,4620,3025,3026,3035,42,3018,3007,3017,4,4621,4609,4620,3036,3025,3035,42,3006,3007,3018,4,4607,4608,4622,3024,3025,3036,42,3006,3018,3019,4,4607,4622,4623,3024,3036,3037,42,3019,3018,3020,4,4624,4621,4625,3037,3036,3038,42,3018,3017,3020,4,4621,4620,4625,3036,3035,3038,42,3020,3017,3021,4,4625,4620,4626,3038,3035,3039,42,3017,3016,3021,4,4620,4619,4626,3035,3034,3039,42,3021,3016,3022,4,4626,4619,4627,3039,3034,3040,42,3016,3015,3022,4,4619,4618,4627,3034,3033,3040,42,3022,3015,3023,4,4627,4618,4628,3040,3033,3041,42,3015,3024,3023,4,4618,4629,4628,3033,3042,3041,42,3015,3025,3024,4,4618,4630,4629,3033,3043,3042,42,3025,3026,3024,4,4630,4631,4629,3043,3044,3042,42,3022,3023,3027,4,4627,4628,4632,3040,3041,3045,42,3021,3022,3027,4,4626,4627,4632,3039,3040,3045,42,3028,3021,3027,4,4633,4626,4632,3046,3039,3045,42,3029,3021,3028,4,4634,4626,4633,3047,3039,3046,42,3020,3021,3029,4,4625,4626,4634,3038,3039,3047,42,3020,3029,3030,4,4625,4634,4635,3038,3047,3048,42,3030,3029,3031,4,4635,4634,4636,3048,3047,3049,42,3031,3029,3032,4,4636,4634,4637,3049,3047,3050,42,3032,3029,3028,4,4637,4634,4633,3050,3047,3046,42,3033,3031,3032,4,4638,4636,4637,3051,3049,3050,42,3034,3031,3033,4,4639,4636,4638,3052,3049,3051,42,3035,3031,3034,4,4640,4636,4639,3053,3049,3052,42,3030,3031,3035,4,4635,4636,4640,3048,3049,3053,42,3036,3030,3035,4,4641,4635,4640,3054,3048,3053,42,3036,3019,3030,4,4641,4624,4635,3054,3037,3048,42,2993,3019,3036,4,4590,4624,4641,3011,3037,3054,42,2993,3006,3019,4,4590,4606,4624,3011,3024,3037,42,2993,2994,3006,4,4590,4591,4606,3011,3012,3024,42,2990,2993,3036,4,4587,4590,4641,3008,3011,3054,42,2990,3036,2989,4,4587,4641,4586,3008,3054,3007,42,3036,3035,2989,4,4641,4640,4586,3054,3053,3007,42,2989,3035,3037,4,4586,4640,4642,3007,3053,3055,42,3037,3035,3038,4,4642,4640,4643,3055,3053,3056,42,3035,3034,3038,4,4640,4639,4643,3053,3052,3056,42,3038,3034,3039,4,4643,4639,4644,3056,3052,3057,42,3039,3034,3040,4,4644,4639,4645,3057,3052,3058,42,3040,3034,3033,4,4645,4639,4638,3058,3052,3051,42,3041,3039,3040,4,4646,4644,4645,3059,3057,3058,42,3042,3039,3041,4,4647,4644,4646,3060,3057,3059,42,3038,3039,3042,4,4643,4644,4647,3056,3057,3060,42,3038,3042,3043,4,4643,4647,4648,3056,3060,3061,42,3044,3043,3042,4,4649,4648,4647,3062,3061,3060,42,3044,3045,3043,4,4649,4650,4648,3062,3063,3061,42,3045,3044,3046,4,4651,4652,4653,3063,3062,3064,42,3046,3044,3047,4,4653,4652,4654,3064,3062,3065,42,3044,3048,3047,4,4655,4656,4657,3062,3066,3065,42,3044,3049,3048,4,4655,4658,4656,3062,3067,3066,42,3049,3044,3042,4,4659,4649,4647,3067,3062,3060,42,3049,3042,3041,4,4660,4647,4646,3067,3060,3059,42,3049,3041,3048,4,4658,4661,4656,3067,3059,3066,42,3048,3041,3050,4,4656,4661,4662,3066,3059,3068,42,3050,3041,3051,4,4663,4664,4665,3068,3059,3069,42,3052,3050,3051,4,4666,4663,4665,3070,3068,3069,42,3053,3050,3052,4,4667,4662,4668,3071,3068,3070,42,3053,3048,3050,4,4667,4656,4662,3071,3066,3068,42,3047,3048,3053,4,4657,4656,4667,3065,3066,3071,42,3054,3047,3053,4,4669,4657,4667,3072,3065,3071,42,3055,3047,3054,4,4670,4654,4671,3073,3065,3072,42,3055,3046,3047,4,4670,4653,4654,3073,3064,3065,42,3056,3046,3055,4,4672,4653,4670,3074,3064,3073,42,3056,3057,3046,4,4672,4673,4653,3074,3075,3064,42,2844,3057,3056,4,4674,4675,4676,2862,3075,3074,42,2844,2845,3057,4,4674,4677,4675,2862,2863,3075,42,2845,3058,3057,4,4677,4678,4675,2863,3076,3075,42,2845,2848,3058,4,4677,4679,4678,2863,2866,3076,42,2846,2848,2845,4,4379,4680,4378,2864,2866,2863,42,2846,2847,2848,4,4379,4681,4680,2864,2865,2866,42,2848,2849,3059,4,4682,4683,4684,2866,2867,3077,42,2849,2988,3059,4,4683,4583,4684,2867,3006,3077,42,2849,2851,2988,4,4683,4582,4583,2867,2869,3006,42,3059,2988,3037,4,4685,4584,4642,3077,3006,3055,42,2988,2989,3037,4,4584,4586,4642,3006,3007,3055,42,3059,3037,3060,4,4685,4642,4686,3077,3055,3078,42,3037,3038,3060,4,4642,4643,4686,3055,3056,3078,42,3060,3038,3043,4,4686,4643,4648,3078,3056,3061,42,3045,3060,3043,4,4650,4686,4648,3063,3078,3061,42,3058,3060,3045,4,4687,4686,4650,3076,3078,3063,42,3058,3059,3060,4,4687,4685,4686,3076,3077,3078,42,3058,3045,3057,4,4688,4651,4673,3076,3063,3075,42,3057,3045,3046,4,4673,4651,4653,3075,3063,3064,42,2843,2844,3056,4,4374,4674,4676,2861,2862,3074,42,2842,2843,3056,4,4373,4374,4676,2860,2861,3074,42,2842,3056,3061,4,4689,4672,4690,2860,3074,3079,42,3061,3056,3062,4,4690,4672,4691,3079,3074,3080,42,3062,3056,3055,4,4691,4672,4670,3080,3074,3073,42,3062,3055,3054,4,4691,4670,4671,3080,3073,3072,42,3062,3054,3063,4,4691,4671,4692,3080,3072,3081,42,3054,3053,3063,4,4669,4667,4693,3072,3071,3081,42,3063,3053,3064,4,4693,4667,4694,3081,3071,3082,42,3064,3053,3052,4,4694,4667,4668,3082,3071,3070,42,3064,3052,3065,4,4694,4668,4695,3082,3070,3083,42,3065,3052,3066,4,4695,4668,4696,3083,3070,3084,42,3052,3067,3066,4,4666,4697,4698,3070,3085,3084,42,3052,3051,3067,4,4666,4665,4697,3070,3069,3085,42,3066,3067,3068,4,4698,4697,4699,3084,3085,3086,42,3066,3068,3069,4,4698,4699,4700,3084,3086,3087,42,3066,3069,3070,4,4698,4700,4701,3084,3087,3088,42,3070,3069,3071,4,4701,4700,4702,3088,3087,3089,42,3070,3071,3072,4,4701,4702,4703,3088,3089,3090,42,3072,3071,3073,4,4703,4702,4704,3090,3089,3091,42,3072,3073,3074,4,4703,4704,4705,3090,3091,3092,42,3074,3073,3075,4,4705,4704,4706,3092,3091,3093,42,3065,3066,3076,4,4695,4696,4707,3083,3084,3094,42,3076,3066,3077,4,4707,4696,4708,3094,3084,3095,42,3076,3077,3078,4,4707,4708,4709,3094,3095,3096,42,3078,3077,3079,4,4709,4708,4710,3096,3095,3097,42,3077,3080,3079,4,4708,4711,4710,3095,3098,3097,42,3079,3080,3081,4,4710,4711,4712,3097,3098,3099,42,3081,3080,3082,4,4712,4711,4713,3099,3098,3100,42,3083,3081,3082,4,4714,4712,4713,3101,3099,3100,42,3083,3084,3081,4,4714,4715,4712,3101,3102,3099,42,3078,3081,3084,4,4709,4712,4715,3096,3099,3102,42,3081,3078,3079,4,4712,4709,4710,3099,3096,3097,42,3076,3078,3085,4,4716,4717,4718,3094,3096,3103,42,3085,3078,3086,4,4718,4717,4719,3103,3096,3104,42,3086,3078,3087,4,4719,4717,4720,3104,3096,3105,42,3078,3088,3087,4,4721,4722,4723,3096,3106,3105,42,3087,3088,3089,4,4723,4722,4724,3105,3106,3107,42,3088,3090,3089,4,4722,4725,4724,3106,3108,3107,42,3089,3090,3091,4,4724,4725,4726,3107,3108,3109,42,3090,3092,3091,4,4725,4727,4726,3108,3110,3109,42,3091,3092,3093,4,4726,4727,4728,3109,3110,3111,42,3092,3094,3093,4,4727,4729,4728,3110,3112,3111,42,3089,3091,3095,4,4730,4731,4732,3107,3109,3113,42,3095,3091,3096,4,4732,4731,4733,3113,3109,3114,42,3091,3097,3096,4,4731,4734,4733,3109,3115,3114,42,3098,3095,3096,4,4735,4732,4733,3116,3113,3114,42,3099,3095,3098,4,4736,4732,4735,3117,3113,3116,42,3099,3100,3095,4,4736,4737,4732,3117,3118,3113,42,3099,3101,3100,4,4736,4738,4737,3117,3119,3118,42,3101,3099,3102,4,4738,4736,4739,3119,3117,3120,42,3102,3099,3103,4,4739,4736,4740,3120,3117,3121,42,3102,3103,3104,4,4739,4740,4741,3120,3121,3122,42,3105,3102,3104,4,4742,4739,4741,3123,3120,3122,42,3105,3106,3102,4,4742,4743,4739,3123,3124,3120,42,3106,3105,3107,4,4743,4742,4744,3124,3123,3125,42,3107,3105,3108,4,4744,4742,4745,3125,3123,3126,42,3105,3109,3108,4,4742,4746,4745,3123,3127,3126,42,3109,3105,3104,4,4746,4742,4741,3127,3123,3122,42,3108,3109,3110,4,4745,4746,4747,3126,3127,3128,42,3111,3106,3107,4,4748,4743,4744,3129,3124,3125,42,3111,3112,3106,4,4748,4749,4743,3129,3130,3124,42,3113,3112,3111,4,4750,4749,4748,3131,3130,3129,42,3114,3112,3113,4,4751,4749,4750,3132,3130,3131,42,3114,3115,3112,4,4751,4752,4749,3132,3133,3130,42,3114,3116,3115,4,4751,4753,4752,3132,3134,3133,42,3117,3116,3114,4,4754,4753,4751,3135,3134,3132,42,3117,3118,3116,4,4754,4755,4753,3135,3136,3134,42,3119,3118,3117,4,4756,4755,4754,3137,3136,3135,42,3119,3120,3118,4,4756,4757,4755,3137,3138,3136,42,3121,3120,3119,4,4758,4757,4756,3139,3138,3137,42,3121,3062,3120,4,4758,4691,4757,3139,3080,3138,42,3121,3061,3062,4,4758,4690,4691,3139,3079,3080,42,2841,3061,3121,4,4759,4690,4758,2859,3079,3139,42,2841,2842,3061,4,4759,4689,4690,2859,2860,3079,42,2841,3121,2840,4,4759,4758,4760,2859,3139,2858,42,3121,3119,2840,4,4758,4756,4760,3139,3137,2858,42,2840,3119,3117,4,4760,4756,4754,2858,3137,3135,42,2840,3117,3122,4,4760,4754,4761,2858,3135,3140,42,3122,3117,3114,4,4761,4754,4751,3140,3135,3132,42,3122,3114,3113,4,4761,4751,4750,3140,3132,3131,42,3120,3062,3123,4,4757,4691,4762,3138,3080,3141,42,3123,3062,3063,4,4762,4691,4692,3141,3080,3081,42,3063,3065,3123,4,4693,4695,4763,3081,3083,3141,42,3063,3064,3065,4,4693,4694,4695,3081,3082,3083,42,3076,3123,3065,4,4707,4763,4695,3094,3141,3083,42,3123,3076,3118,4,4762,4716,4755,3141,3094,3136,42,3118,3076,3085,4,4755,4716,4718,3136,3094,3103,42,3124,3118,3085,4,4764,4755,4718,3142,3136,3103,42,3116,3118,3124,4,4753,4755,4764,3134,3136,3142,42,3115,3116,3124,4,4752,4753,4764,3133,3134,3142,42,3115,3124,3125,4,4752,4764,4765,3133,3142,3143,42,3125,3124,3085,4,4765,4764,4718,3143,3142,3103,42,3125,3085,3086,4,4765,4718,4719,3143,3103,3104,42,3101,3125,3086,4,4738,4765,4719,3119,3143,3104,42,3125,3101,3126,4,4765,4738,4766,3143,3119,3144,42,3126,3101,3102,4,4766,4738,4739,3144,3119,3120,42,3106,3126,3102,4,4743,4766,4739,3124,3144,3120,42,3106,3112,3126,4,4743,4749,4766,3124,3130,3144,42,3112,3115,3126,4,4749,4752,4766,3130,3133,3144,42,3126,3115,3125,4,4766,4752,4765,3144,3133,3143,42,3101,3086,3100,4,4738,4719,4737,3119,3104,3118,42,3086,3087,3100,4,4719,4720,4737,3104,3105,3118,42,3087,3089,3100,4,4720,4730,4737,3105,3107,3118,42,3100,3089,3095,4,4737,4730,4732,3118,3107,3113,42,3120,3123,3118,4,4757,4762,4755,3138,3141,3136,42,3019,3020,3030,4,4624,4625,4635,3037,3038,3048,42,2975,2957,2973,4,4564,4541,4562,2993,2975,2991,42,2973,2957,2958,4,4562,4541,4542,2991,2975,2976,42,2958,2968,2973,4,4554,4555,4560,2976,2986,2991,42,2969,2967,2966,4,4556,4553,4552,2987,2985,2984,42,2933,3127,2934,4,4506,4767,4504,2951,3145,2952,42,2906,2904,3128,4,4768,4769,4770,2924,2922,3146,42,3128,2904,3129,4,4770,4769,4771,3146,2922,3147,42,2904,2902,3129,4,4769,4460,4771,2922,2920,3147,42,3129,2902,2901,4,4771,4460,4459,3147,2920,2919,42,2899,2901,2900,4,4772,4459,4458,2917,2919,2918,42,3130,2901,2899,4,4773,4459,4772,3148,2919,2917,42,3131,3130,2899,4,4774,4773,4772,3149,3148,2917,42,3132,3131,2899,4,4775,4774,4772,3150,3149,2917,42,2899,2898,3132,4,4456,4455,4776,2917,2916,3150,42,2836,2872,2834,4,4364,4418,4363,2854,2890,2852,42,2834,2872,2871,4,4363,4418,4420,2852,2890,2889,42,2834,2871,2868,4,4361,4417,4414,2852,2889,2886,42,2834,2868,2833,4,4361,4414,4360,2852,2886,2851,42,2833,2868,2867,4,4359,4410,4412,2851,2886,2885,42,2833,2867,2832,4,4359,4412,4358,2851,2885,2850,42,2832,2867,2864,4,4777,4409,4404,2850,2885,2882,42,2832,2864,3133,4,4777,4404,4778,2850,2882,3151,42,3133,2864,2862,4,4778,4404,4406,3151,2882,2880,42,3133,2862,2861,4,4779,4400,4402,3151,2880,2879,42,3133,2861,3134,4,4779,4402,4780,3151,2879,3152,42,3134,2861,2854,4,4781,4399,4392,3152,2879,2872,42,2854,2861,2857,4,4392,4399,4395,2872,2879,2875,42,2852,3134,2854,4,4390,4781,4392,2870,3152,2872,42,3134,2852,2830,4,4781,4390,4782,3152,2870,2848,42,2830,2852,2829,4,4782,4390,4783,2848,2870,2847,42,2852,2850,2829,4,4390,4388,4783,2870,2868,2847,42,2828,2829,2850,4,4385,4783,4388,2846,2847,2868,42,2831,3134,2830,4,4356,4780,4355,2849,3152,2848,42,2831,3133,3134,4,4356,4779,4780,2849,3151,3152,42,2832,3133,2831,4,4777,4778,4784,2850,3151,2849,42,2848,3059,3058,5,4785,4786,4787,2866,3077,3076,42,3135,3136,3137,4,4788,4789,4790,3153,3154,3155,42,3135,3138,3136,4,4788,4791,4789,3153,3156,3154,42,3137,3136,3139,4,4790,4789,4792,3155,3154,3157,42,3140,3141,3142,4,4793,4794,4795,3158,3159,3160,42,3140,3143,3141,4,4793,4796,4794,3158,3161,3159,42,3143,3140,3144,4,4796,4793,4797,3161,3158,3162,42,3144,3145,3143,4,4797,4798,4796,3162,3163,3161,42,3144,3146,3145,4,4797,4799,4798,3162,3164,3163,42,3147,3146,3144,4,4800,4799,4797,3165,3164,3162,42,3147,3144,3148,4,4800,4797,4801,3165,3162,3166,42,3144,3140,3148,4,4797,4793,4801,3162,3158,3166,42,3148,3140,3149,4,4801,4793,4802,3166,3158,3167,42,3140,3142,3149,4,4793,4795,4802,3158,3160,3167,42,3149,3142,3150,4,4802,4795,4803,3167,3160,3168,42,3142,3151,3150,4,4795,4804,4803,3160,3169,3168,42,3142,3152,3151,4,4795,4805,4804,3160,3170,3169,42,3142,3141,3152,4,4795,4794,4805,3160,3159,3170,42,3152,3153,3151,4,4805,4806,4804,3170,3171,3169,42,3151,3153,3154,4,4804,4806,4807,3169,3171,3172,42,3153,3155,3154,4,4806,4808,4807,3171,3173,3172,42,3154,3155,3156,4,4807,4808,4809,3172,3173,3174,42,3157,3156,3155,4,4810,4809,4808,3175,3174,3173,42,3157,3158,3156,4,4810,4811,4809,3175,3176,3174,42,3157,3159,3158,4,4810,4812,4811,3175,3177,3176,42,3160,3159,3157,4,4813,4812,4810,3178,3177,3175,42,3159,3161,3158,4,4812,4814,4811,3177,3179,3176,42,3161,3159,3162,4,4814,4812,4815,3179,3177,3180,42,3156,3158,3161,4,4809,4811,4814,3174,3176,3179,42,3156,3161,3163,4,4809,4814,4816,3174,3179,3181,42,3154,3156,3163,4,4807,4809,4816,3172,3174,3181,42,3151,3154,3164,4,4804,4807,4817,3169,3172,3182,42,3164,3154,3165,4,4817,4807,4818,3182,3172,3183,42,3154,3166,3165,4,4807,4819,4818,3172,3184,3183,42,3165,3166,3167,4,4818,4819,4820,3183,3184,3185,42,3168,3167,3166,4,4821,4820,4819,3186,3185,3184,42,3168,3169,3167,4,4821,4822,4820,3186,3187,3185,42,3170,3169,3168,4,4823,4822,4821,3188,3187,3186,42,3170,3171,3169,4,4823,4824,4822,3188,3189,3187,42,3171,3172,3169,4,4824,4825,4822,3189,3190,3187,42,3172,3173,3169,4,4825,4826,4822,3190,3191,3187,42,3169,3173,3167,4,4822,4826,4820,3187,3191,3185,42,3173,3174,3167,4,4826,4827,4820,3191,3192,3185,42,3173,3175,3174,4,4826,4828,4827,3191,3193,3192,42,3173,3176,3175,4,4826,4829,4828,3191,3194,3193,42,3177,3176,3173,4,4830,4829,4826,3195,3194,3191,42,3176,3178,3175,4,4829,4831,4828,3194,3196,3193,42,3175,3178,3179,4,4828,4831,4832,3193,3196,3197,42,3180,3175,3179,4,4833,4828,4832,3198,3193,3197,42,3174,3175,3180,4,4827,4828,4833,3192,3193,3198,42,3181,3174,3180,4,4834,4827,4833,3199,3192,3198,42,3165,3174,3181,4,4818,4827,4834,3183,3192,3199,42,3165,3167,3174,4,4818,4820,4827,3183,3185,3192,42,3182,3165,3181,4,4835,4818,4834,3200,3183,3199,42,3164,3165,3182,4,4817,4818,4835,3182,3183,3200,42,3183,3164,3182,4,4836,4817,4835,3201,3182,3200,42,3150,3164,3183,4,4803,4817,4836,3168,3182,3201,42,3150,3151,3164,4,4803,4804,4817,3168,3169,3182,42,3184,3150,3183,4,4837,4803,4836,3202,3168,3201,42,3149,3150,3184,4,4802,4803,4837,3167,3168,3202,42,3185,3149,3184,4,4838,4802,4837,3203,3167,3202,42,3148,3149,3185,4,4801,4802,4838,3166,3167,3203,42,3186,3148,3185,4,4839,4801,4838,3204,3166,3203,42,3147,3148,3186,4,4800,4801,4839,3165,3166,3204,42,3185,3187,3186,4,4840,4841,4842,3203,3205,3204,42,3185,3188,3187,4,4840,4843,4841,3203,3206,3205,42,3185,3184,3188,4,4840,4844,4843,3203,3202,3206,42,3188,3184,3189,4,4843,4844,4845,3206,3202,3207,42,3184,3183,3189,4,4844,4846,4845,3202,3201,3207,42,3189,3183,3190,4,4845,4846,4847,3207,3201,3208,42,3190,3183,3182,4,4847,4846,4848,3208,3201,3200,42,3190,3182,3191,4,4847,4848,4849,3208,3200,3209,42,3182,3181,3191,4,4848,4850,4849,3200,3199,3209,42,3191,3181,3192,4,4849,4850,4851,3209,3199,3210,42,3192,3181,3193,4,4851,4850,4852,3210,3199,3211,42,3181,3194,3193,4,4850,4853,4852,3199,3212,3211,42,3181,3180,3194,4,4850,4854,4853,3199,3198,3212,42,3180,3195,3194,4,4854,4855,4853,3198,3213,3212,42,3180,3179,3195,4,4854,4856,4855,3198,3197,3213,42,3179,3196,3195,4,4856,4857,4855,3197,3214,3213,42,3196,3197,3195,4,4857,4858,4855,3214,3215,3213,42,3195,3197,3198,4,4855,4858,4859,3213,3215,3216,42,3195,3198,3199,4,4855,4859,4860,3213,3216,3217,42,3194,3195,3199,4,4853,4855,4860,3212,3213,3217,42,3194,3199,3200,4,4853,4860,4861,3212,3217,3218,42,3193,3194,3200,4,4852,4853,4861,3211,3212,3218,42,3193,3200,3201,4,4852,4861,4862,3211,3218,3219,42,3201,3200,3202,4,4862,4861,4863,3219,3218,3220,42,3203,3201,3202,4,4864,4862,4863,3221,3219,3220,42,3201,3203,3204,4,4862,4864,4865,3219,3221,3222,42,3203,3205,3204,4,4864,4866,4865,3221,3223,3222,42,3203,3206,3205,4,4864,4867,4866,3221,3224,3223,42,3207,3206,3203,4,4868,4867,4864,3225,3224,3221,42,3207,3203,3202,4,4868,4864,4863,3225,3221,3220,42,3201,3204,3208,4,4862,4865,4869,3219,3222,3226,42,3192,3201,3208,4,4851,4862,4869,3210,3219,3226,42,3192,3193,3201,4,4851,4852,4862,3210,3211,3219,42,3146,3209,3145,4,4799,4870,4798,3164,3227,3163,42,3210,3211,3212,4,4871,4872,4873,3228,3229,3230,42,3211,3213,3212,4,4872,4874,4873,3229,3231,3230,42,3212,3213,3214,4,4873,4874,4875,3230,3231,3232,42,3213,3215,3214,4,4874,4876,4875,3231,3233,3232,42,3213,3216,3215,4,4874,4877,4876,3231,3234,3233,42,3210,3212,3217,4,4871,4873,4878,3228,3230,3235,42,3217,3212,3218,4,4878,4873,4879,3235,3230,3236,42,3212,3219,3218,4,4873,4880,4879,3230,3237,3236,42,3218,3219,3220,4,4879,4880,4881,3236,3237,3238,42,3219,3221,3220,4,4880,4882,4881,3237,3239,3238,42,3222,3221,3219,4,4883,4882,4880,3240,3239,3237,42,3217,3218,3223,4,4878,4879,4884,3235,3236,3241,42,3223,3218,3224,4,4884,4879,4885,3241,3236,3242,42,3224,3218,3225,4,4885,4879,4886,3242,3236,3243,42,3218,3226,3225,4,4879,4887,4886,3236,3244,3243,42,3226,3227,3225,4,4887,4888,4886,3244,3245,3243,42,3228,3227,3226,4,4889,4888,4887,3246,3245,3244,42,3228,3229,3227,4,4889,4890,4888,3246,3247,3245,42,3224,3225,3230,4,4885,4886,4891,3242,3243,3248,42,3230,3225,3231,4,4891,4886,4892,3248,3243,3249,42,3225,3232,3231,4,4886,4893,4892,3243,3250,3249,42,3225,3233,3232,4,4886,4894,4893,3243,3251,3250,42,3233,3234,3232,4,4894,4895,4893,3251,3252,3250,42,3235,3234,3233,4,4896,4895,4894,3253,3252,3251,42,3230,3231,3236,4,4891,4892,4897,3248,3249,3254,42,3236,3231,3237,4,4897,4892,4898,3254,3249,3255,42,3237,3231,3238,4,4898,4892,4899,3255,3249,3256,42,3231,3239,3238,4,4892,4900,4899,3249,3257,3256,42,3239,3240,3238,4,4900,4901,4899,3257,3258,3256,42,3239,3241,3240,4,4900,4902,4901,3257,3259,3258,42,3237,3242,3236,4,4898,4903,4897,3255,3260,3254,42,3242,3237,3243,4,4903,4898,4904,3260,3255,3261,42,3237,3244,3243,4,4898,4905,4904,3255,3262,3261,42,3244,3237,3245,4,4905,4898,4906,3262,3255,3263,42,3246,3244,3245,4,4907,4905,4906,3264,3262,3263,42,3245,3247,3246,4,4906,4908,4907,3263,3265,3264,42,3248,3236,3242,4,4909,4897,4903,3266,3254,3260,42,3236,3248,3249,4,4897,4909,4910,3254,3266,3267,42,3250,3249,3248,4,4911,4910,4909,3268,3267,3266,42,3250,3251,3249,4,4911,4912,4910,3268,3269,3267,42,3252,3251,3250,4,4913,4912,4911,3270,3269,3268,42,3252,3253,3251,4,4913,4914,4912,3270,3271,3269,42,3253,3254,3251,4,4914,4915,4912,3271,3272,3269,42,3253,3255,3254,4,4914,4916,4915,3271,3273,3272,42,3255,3256,3254,4,4916,4917,4915,3273,3274,3272,42,3257,3256,3255,4,4918,4917,4916,3275,3274,3273,42,3257,3258,3256,4,4918,4919,4917,3275,3276,3274,42,3259,3258,3257,4,4920,4919,4918,3277,3276,3275,42,3259,3260,3258,4,4920,4921,4919,3277,3278,3276,42,3261,3260,3259,4,4922,4921,4920,3279,3278,3277,42,3262,3260,3261,4,4923,4921,4922,3280,3278,3279,42,3262,3263,3260,4,4923,4924,4921,3280,3281,3278,42,3260,3263,3264,4,4921,4924,4925,3278,3281,3282,42,3263,3210,3264,4,4924,4871,4925,3281,3228,3282,42,3264,3210,3217,4,4925,4871,4878,3282,3228,3235,42,3264,3217,3265,4,4925,4878,4926,3282,3235,3283,42,3265,3217,3223,4,4926,4878,4884,3283,3235,3241,42,3265,3223,3266,4,4926,4884,4927,3283,3241,3284,42,3266,3223,3224,4,4927,4884,4885,3284,3241,3242,42,3266,3224,3267,4,4927,4885,4928,3284,3242,3285,42,3267,3224,3230,4,4928,4885,4891,3285,3242,3248,42,3249,3267,3230,4,4910,4928,4891,3267,3285,3248,42,3251,3267,3249,4,4912,4928,4910,3269,3285,3267,42,3251,3254,3267,4,4912,4915,4928,3269,3272,3285,42,3254,3266,3267,4,4915,4927,4928,3272,3284,3285,42,3254,3256,3266,4,4915,4917,4927,3272,3274,3284,42,3256,3265,3266,4,4917,4926,4927,3274,3283,3284,42,3258,3265,3256,4,4919,4926,4917,3276,3283,3274,42,3258,3264,3265,4,4919,4925,4926,3276,3282,3283,42,3260,3264,3258,4,4921,4925,4919,3278,3282,3276,42,3249,3230,3236,4,4910,4891,4897,3267,3248,3254,42,3268,3262,3261,4,4929,4923,4922,3286,3280,3279,42,3269,3270,3271,4,4930,4931,4932,3287,3288,3289,42,3269,3272,3270,4,4930,4933,4931,3287,3290,3288,42,3269,3271,3273,4,4930,4932,4934,3287,3289,3291], diff --git a/examples/obj/male02/Male02_slim.js b/examples/obj/male02/Male02_slim.js index ffac4802..98240f1c 100644 --- a/examples/obj/male02/Male02_slim.js +++ b/examples/obj/male02/Male02_slim.js @@ -93,11 +93,11 @@ var model = { "morphColors": [], - "normals": [-0.253945,0.750999,0.609455,-0.306619,0.533250,0.788415,-0.309854,0.686026,0.658254,-0.086215,0.449202,0.889248,0.270058,0.706626,0.653981,-0.279092,0.889553,0.361583,-0.877041,0.424635,0.224647,-0.537675,0.591845,0.600482,-0.174017,0.883938,0.433943,0.182592,0.831996,-0.523850,0.308054,0.920927,-0.238624,0.550218,0.830683,0.084628,0.181341,0.833247,0.522263,0.113193,0.638539,0.761193,-0.163823,0.544572,0.822535,-0.258248,0.674276,0.691794,-0.257332,0.677358,0.689138,-0.033753,0.891903,0.450911,0.000031,0.533799,-0.845576,-0.232582,0.955290,0.182501,-0.490005,0.820673,-0.293893,-0.098270,0.917020,-0.386486,-0.016785,0.999664,0.019684,0.160009,0.980804,-0.111209,0.186438,0.824488,-0.534227,0.542955,0.451460,-0.708029,0.829493,0.500229,-0.248329,0.093173,0.990051,0.105258,0.032868,0.998199,0.049898,0.488388,0.803125,0.341166,-0.211676,0.931028,0.297189,0.210395,0.790277,0.575457,0.712149,0.663320,0.229774,0.732902,0.665609,0.140538,0.334208,0.925352,0.178808,0.441847,0.831568,-0.336497,0.698843,0.566149,-0.437117,0.468398,0.440596,-0.765770,0.533341,0.361034,-0.764946,0.572131,0.746727,-0.339091,0.715690,0.106357,-0.690237,0.817805,0.449995,-0.358654,0.429182,0.886196,0.174474,0.175512,0.820338,0.544237,-0.022217,0.585009,0.810694,-0.020844,0.348949,0.936888,-0.200140,0.405408,0.891934,-0.309763,0.446516,0.839412,-0.299112,0.506760,0.808496,-0.421583,0.533982,0.732871,-0.197394,0.687124,0.699179,-0.584613,0.632771,0.507706,-0.209967,0.751427,0.625477,-0.488754,0.826777,0.278390,-0.607013,0.792566,-0.057436,-0.047029,0.932646,0.357677,-0.074252,0.997162,0.010895,-0.160375,0.986908,0.016419,-0.068575,0.978607,-0.193793,-0.490951,0.488327,-0.721427,0.028993,0.446791,-0.894162,0.309763,0.401502,-0.861873,0.482192,0.416028,-0.770928,0.386090,0.210425,-0.898129,0.509171,-0.064608,-0.858211,0.668477,-0.179937,-0.721610,0.731132,-0.354869,-0.582629,0.917142,-0.327219,-0.227424,0.736351,-0.043214,-0.675161,0.886898,0.160924,-0.432997,0.942656,0.186193,0.276955,0.721274,0.584185,0.372082,0.317972,0.715842,0.621601,0.085086,0.558428,0.825159,0.218268,0.244026,0.944853,0.448408,0.142705,0.882351,0.138981,0.151158,0.978668,-0.145054,0.225776,0.963286,-0.328898,0.298715,0.895871,-0.460311,0.402997,0.790979,-0.562120,0.359416,0.744865,-0.535478,0.532090,0.655812,-0.558245,0.768273,0.313150,-0.712516,0.643757,-0.279000,-0.673788,0.663594,-0.324992,-0.275521,0.554521,-0.785211,-0.180609,0.839930,-0.511704,0.059603,0.412488,-0.908994,0.106632,0.403394,-0.908750,0.318308,0.328227,-0.889309,0.330515,0.153417,-0.931211,0.402722,-0.039979,-0.914426,0.632710,-0.270394,-0.725608,0.783044,-0.244026,-0.572069,0.779168,-0.246284,-0.576373,0.916135,-0.274850,-0.291757,0.621265,-0.097842,-0.777429,0.524827,0.158849,-0.836207,0.900662,0.146855,-0.408887,0.971831,0.058321,0.228278,0.636525,0.009308,0.771172,0.620533,0.103702,0.777245,0.477493,0.365429,0.799005,0.367901,0.094699,0.925016,0.306253,0.341746,0.888455,0.339763,0.123814,0.932310,0.423048,0.053194,0.904508,0.486038,0.088839,0.869381,0.505020,0.085055,0.858882,0.244942,0.057161,0.967834,-0.101413,0.107608,0.988983,-0.325816,0.191900,0.925718,-0.519883,0.239937,0.819819,-0.713309,0.200110,0.671651,-0.442854,0.258400,0.858516,-0.875088,0.130161,0.466109,-0.927915,0.046693,0.369823,-0.928129,0.045412,0.369396,-0.915677,0.075076,0.394757,-0.989349,0.000427,0.145482,-0.987854,0.006653,0.155187,-0.951231,-0.085665,-0.296243,-0.959258,-0.085208,-0.269326,-0.701437,-0.192816,-0.686117,-0.782708,-0.123661,-0.609943,-0.547960,-0.178014,-0.817316,-0.360210,-0.302011,-0.882626,-0.434858,-0.292032,-0.851802,-0.259346,-0.294015,-0.919919,-0.145054,-0.311716,-0.939024,-0.031678,-0.229377,-0.972808,0.136143,-0.039460,-0.989898,0.249550,-0.025422,-0.968017,0.245003,0.207007,-0.947142,0.337077,-0.053499,-0.939940,0.438459,-0.200262,-0.876125,0.633351,-0.273080,-0.724052,0.782556,-0.290780,-0.550462,0.794031,-0.234016,-0.560991,0.971984,-0.029237,-0.233192,0.917234,0.312723,0.246651,0.493301,0.830714,0.257942,-0.219581,0.442427,-0.869472,-0.564898,0.576525,-0.590320,-0.060976,0.075259,-0.995270,0.515702,0.221351,-0.827662,0.495285,0.232765,-0.836940,0.909879,0.218207,-0.352733,0.967589,0.102908,0.230567,0.637349,0.026337,0.770074,0.115268,-0.072207,0.990692,0.138005,-0.119358,0.983184,0.170263,-0.099826,0.980316,0.319529,-0.356578,0.877895,0.664754,-0.117710,0.737693,0.775048,0.066897,0.628315,0.703970,-0.001556,0.710196,0.673757,0.001953,0.738914,0.505173,0.027192,0.862575,0.492691,0.016663,0.870022,0.156652,0.033357,0.987060,-0.104068,0.122379,0.986999,-0.291482,0.181280,0.939207,-0.485214,0.153172,0.860836,-0.542497,0.164251,0.823817,-0.802545,0.087039,0.590197,-0.916837,0.056551,0.395184,-0.868740,0.067965,0.490524,-0.940672,0.047151,0.335948,-0.988586,0.023408,-0.148717,-0.857265,0.001373,-0.514817,-0.684255,-0.039674,-0.728141,-0.684561,-0.002411,-0.728935,-0.525956,-0.134342,-0.839808,-0.357891,-0.054689,-0.932127,-0.194006,-0.159490,-0.967925,0.113590,-0.137455,-0.983947,-0.000671,-0.075198,-0.997162,0.223487,-0.047517,-0.973540,0.130039,-0.043458,-0.990539,0.314737,0.012574,-0.949065,0.389080,-0.057894,-0.919370,0.681783,0.039460,-0.730461,0.724326,-0.089908,-0.683523,0.894559,-0.090609,-0.437635,0.854610,-0.206671,-0.476333,0.701804,-0.204260,-0.682424,0.444685,-0.168798,-0.879604,0.303964,-0.197607,-0.931944,0.176214,-0.243385,-0.953764,-0.181555,-0.243538,-0.952727,0.232337,-0.237342,-0.943205,0.334025,-0.239601,-0.911557,0.337107,-0.194250,-0.921201,0.427412,-0.221870,-0.876370,0.837519,-0.254952,-0.483200,0.958434,-0.233436,-0.163854,0.950133,0.024842,0.310770,0.779290,0.187933,0.597797,-0.073580,0.994079,0.079592,-0.952788,0.226997,-0.201483,-0.883419,-0.429395,0.187445,-0.900266,-0.350780,-0.257759,-0.863430,-0.368816,0.344157,-0.921018,-0.292886,-0.256752,-0.898892,-0.317789,0.301614,-0.924497,-0.264107,-0.274758,-0.894803,-0.346477,0.281472,-0.908750,-0.248054,-0.335582,-0.955535,-0.237526,0.174657,-0.850307,-0.104434,-0.515793,-0.549760,-0.150517,-0.821619,-0.449812,-0.214911,-0.866848,-0.427198,-0.306864,-0.850459,0.188147,-0.301584,-0.934660,0.142857,-0.145665,-0.978942,0.058290,-0.012299,-0.998199,0.735069,-0.021241,-0.677633,0.668874,0.123142,-0.733085,0.975097,0.104617,-0.195410,0.947600,0.210852,-0.239937,0.589160,0.230079,-0.774529,0.931303,0.291757,-0.217933,0.542650,0.239540,-0.805048,-0.098148,0.067263,-0.992889,-0.033418,0.066103,-0.997223,-0.605090,-0.095004,-0.790429,-0.671560,-0.141423,-0.727287,-0.676626,-0.177587,-0.714560,-0.634785,-0.195502,-0.747490,-0.089541,0.054445,-0.994476,0.540819,0.222907,-0.811060,0.927641,0.241585,-0.284707,0.954497,0.153081,0.255837,0.666494,0.067080,0.742454,0.099887,-0.049898,0.993744,-0.530381,-0.207099,0.822047,-0.468184,-0.216620,0.856655,-0.188025,-0.445357,0.875362,-0.523942,-0.289621,0.800989,-0.550615,-0.398968,0.733207,-0.998535,0.043184,0.031617,-0.773064,-0.127903,0.621235,-0.997162,-0.070009,-0.027070,-0.822230,-0.190497,-0.536271,-0.446394,-0.297647,-0.843867,0.209357,-0.352916,-0.911924,0.782556,-0.231452,-0.577929,0.770562,-0.182440,-0.610645,0.999725,-0.022126,-0.000763,0.998810,-0.002808,-0.048280,0.894284,0.190680,0.404797,0.923795,0.169408,0.343303,0.921506,0.283761,-0.265084,0.936552,0.209815,0.280770,0.672384,0.078402,0.736015,0.121677,-0.122868,0.984924,0.109226,-0.394147,0.912503,-0.172826,-0.079440,0.981719,-0.786493,0.140110,0.601459,-0.997589,-0.062410,0.029695,-0.843776,-0.237068,-0.481460,-0.845027,-0.222602,-0.486129,-0.446181,-0.328929,-0.832270,-0.428571,-0.346721,-0.834315,0.205756,-0.333445,-0.920011,0.219245,-0.349437,-0.910916,0.788018,-0.220374,-0.574816,0.999817,-0.016205,-0.007355,0.845790,0.163366,0.507828,0.843715,0.142338,0.517533,0.405927,0.273782,0.871883,0.452742,0.115421,0.884121,-0.215979,0.276437,0.936430,-0.789026,0.146123,0.596698,-0.998749,-0.049013,0.009613,-0.840846,-0.166631,-0.514969,-0.449202,-0.276162,-0.849635,-0.514847,-0.854549,-0.067995,-0.300333,-0.923917,-0.236946,0.205298,-0.297281,-0.932432,0.819544,-0.192602,-0.539628,0.802149,-0.204291,-0.561052,0.997406,-0.040345,0.059328,0.999512,-0.027528,0.014008,0.846553,0.140355,0.513413,0.446211,0.264687,0.854854,0.425520,0.273934,0.862453,-0.206732,0.303476,0.930113,-0.222114,0.288186,0.931455,-0.802911,0.172185,0.570635,-0.998688,0.009339,-0.050295,-0.601123,-0.788934,0.127201,-0.273659,-0.934141,-0.228950,-0.497055,-0.861141,-0.106479,-0.543626,-0.643635,-0.538652,-0.042695,-0.744896,-0.665792,0.152348,-0.974578,-0.164159,0.375683,-0.896420,0.234993,0.587878,-0.732933,-0.342296,0.761040,-0.595538,0.257057,0.258065,-0.802545,0.537858,0.062197,-0.975799,-0.209540,0.288827,-0.950896,0.111118,0.252815,-0.878353,0.405652,0.837428,0.090793,0.538926,0.446577,0.215613,0.868343,-0.203131,0.299753,0.932127,-0.818262,0.215278,0.532945,-0.610584,-0.710501,0.349803,-0.645558,-0.763329,0.023103,-0.807123,-0.512131,-0.293619,-0.245369,-0.921262,0.301737,-0.948088,-0.314707,0.045106,-0.796503,-0.091830,0.597613,-0.193182,-0.100681,0.975951,0.323283,-0.289438,0.900937,-0.177190,-0.600482,0.779748,-0.586566,-0.502060,0.635487,-0.746635,-0.613941,0.256050,-0.134556,-0.694418,0.706839,0.112735,-0.789605,0.603137,-0.447188,-0.653127,0.611072,0.072054,-0.722739,0.687338,0.605823,-0.457625,0.650777,0.655812,-0.129887,0.743645,0.932249,-0.069704,0.354991,0.738029,-0.029817,0.674062,0.508988,-0.032960,0.860103,0.509049,-0.022095,0.860408,0.224738,-0.019837,0.974212,0.017182,0.045778,0.998779,-0.270211,0.098086,0.957762,-0.505264,0.081515,0.859066,-0.701041,0.098575,0.706259,-0.637715,0.078463,0.766228,-0.390973,0.073000,0.917478,-0.870022,0.040345,0.491287,-0.822810,0.075625,0.563219,-0.769524,0.140996,0.622852,-0.907010,0.132511,0.399670,-0.993042,0.097049,-0.066347,-0.880978,0.040437,-0.471358,-0.744743,0.025422,-0.666860,-0.776818,0.083285,-0.624165,-0.770043,0.115848,-0.627338,-0.768334,0.115299,-0.629536,-0.766800,0.124069,-0.629781,-0.488052,0.066530,-0.870235,-0.771050,0.112125,-0.626789,-0.513688,0.085421,-0.853694,-0.109989,0.052889,-0.992492,-0.060183,-0.046602,-0.997070,0.073183,0.020447,-0.997101,0.239906,0.052004,-0.969390,0.621723,0.073550,-0.779748,0.880215,0.025727,-0.473830,0.893002,-0.095218,-0.439833,0.977691,-0.064974,-0.199591,0.966643,-0.064028,0.247963,0.787347,-0.023133,0.616047,0.588244,-0.035676,0.807855,0.588610,-0.015473,0.808222,0.359874,-0.071139,0.930265,0.133366,0.009461,0.990997,-0.187841,0.045106,0.981140,-0.440687,0.058657,0.895718,-0.572710,0.077059,0.816095,-0.266854,0.070223,0.961150,-0.812952,0.065615,0.578600,-0.756645,0.115604,0.643513,-0.723136,0.157659,0.672414,-0.872005,0.155522,0.464064,-0.990997,0.130375,-0.029633,-0.911527,0.113559,-0.395215,-0.890835,0.138066,-0.432813,-0.870174,0.145726,-0.470656,-0.755913,0.097964,-0.647267,-0.791650,0.207190,-0.574755,-0.639271,0.162542,-0.751579,-0.766747,0.064302,-0.638691,-0.673849,0.093905,-0.732841,-0.531632,0.038057,-0.846095,-0.456008,0.065310,-0.887539,-0.558336,0.175054,-0.810907,-0.379009,0.143406,-0.914182,-0.155004,0.048097,-0.986724,-0.154942,0.032655,-0.987365,-0.006561,0.036042,-0.999298,0.004639,0.068178,-0.997650,0.160100,0.041536,-0.986206,0.172369,0.073824,-0.982238,0.032594,0.082064,-0.996063,0.200018,0.096408,-0.975005,0.615101,0.097140,-0.782434,0.852077,0.064089,-0.519425,0.879543,0.046663,-0.473464,0.959716,0.056887,-0.275063,0.984222,0.038148,0.172613,0.819514,0.019013,0.572710,0.632527,-0.025513,0.774102,0.632923,-0.008728,0.774132,0.499496,-0.009888,0.866237,0.205542,0.013367,0.978545,-0.108219,0.037690,0.993408,-0.376476,0.076815,0.923215,-0.614368,0.117649,0.780175,-0.713370,0.121616,0.690146,-0.688314,0.099734,0.718497,-0.890957,0.123569,0.436903,-0.991119,0.132054,-0.014954,-0.977935,0.204016,-0.044618,-0.951628,0.267190,-0.151585,-0.936857,0.267190,-0.225562,-0.700766,0.254646,-0.666341,-0.933226,0.238227,-0.268899,-0.658284,0.205054,-0.724265,-0.707907,0.207312,-0.675161,-0.943205,0.233192,-0.236549,-0.956999,0.212531,0.197333,-0.916135,0.195837,0.349712,-0.797540,0.156621,0.582537,-0.791101,0.152745,0.592273,-0.798608,0.161351,0.579791,-0.789453,0.161138,0.592273,-0.660573,0.117374,0.741508,-0.630848,0.108951,0.768181,-0.294992,0.008423,0.955443,-0.210517,-0.011017,0.977508,0.063356,-0.047121,0.996857,0.072481,-0.045106,0.996338,0.273812,-0.023316,0.961486,0.315104,-0.017029,0.948882,0.045503,-0.036653,0.998260,-0.378277,0.039918,0.924802,-0.675619,0.155034,0.720725,-0.759026,0.184362,0.624378,-0.626759,0.149388,0.764733,-0.277413,0.052400,0.959288,0.010559,0.000214,0.999939,0.290780,0.019440,0.956572,0.368908,-0.001129,0.929441,0.568743,0.067049,0.819758,0.597156,0.077883,0.798303,0.731773,0.130589,0.668905,0.617512,0.110385,0.778741,0.704581,0.146184,0.694357,0.730583,0.121372,0.671896,0.715354,0.136509,0.685263,0.876125,0.181616,0.446516,0.879391,0.233375,0.414930,0.939665,0.314371,-0.134648,0.956725,0.276193,-0.091464,0.804987,0.241279,-0.541978,0.885342,0.095553,-0.455000,0.764672,0.049104,-0.642506,0.785668,0.058138,-0.615864,0.785791,0.041078,-0.617084,0.831538,0.072787,-0.550645,0.851039,0.081881,-0.518662,0.938810,0.071169,-0.336955,0.990783,0.069948,0.115818,0.834834,0.006256,0.550401,0.656758,-0.020325,0.753777,0.657460,-0.007416,0.753410,0.526261,-0.005921,0.850276,0.237587,-0.003235,0.971343,-0.057344,0.024293,0.998047,-0.318400,0.078280,0.944700,-0.566698,0.114780,0.815882,-0.680135,0.087283,0.727836,-0.708243,0.063234,0.703116,-0.872463,0.111209,0.475814,-0.893094,0.207923,0.398846,-0.915799,0.238777,0.322855,-0.774773,0.169591,0.609027,-0.716178,0.168859,0.677145,-0.557176,0.113498,0.822565,-0.237526,0.040712,0.970519,-0.000824,-0.011933,0.999908,0.245979,0.001434,0.969268,0.549883,0.047578,0.833857,0.538469,-0.005432,0.842616,0.250649,-0.006653,0.968047,-0.014710,0.008026,0.999847,-0.262459,0.041505,0.964019,-0.534043,0.066012,0.842860,-0.687857,0.091220,0.720054,-0.746940,0.147191,0.648335,0.672842,0.001099,0.739769,0.680654,0.036164,0.731681,0.682516,0.118809,0.721122,0.582293,0.090884,0.807855,0.705527,0.110874,0.699942,0.693655,0.019135,0.720023,0.675527,-0.007172,0.737266,0.858425,0.006989,0.512833,0.871242,0.048189,0.488449,0.871334,0.184820,0.454482,0.989166,0.145909,-0.014222,0.911222,0.062624,-0.407056,0.829524,0.095676,-0.550188,0.943022,0.068239,-0.325571,0.997253,0.045289,0.058596,0.999542,0.027985,0.008637,0.530320,0.059877,-0.845637,0.532090,0.018555,-0.846461,0.767632,0.022401,-0.640461,0.644154,0.206244,-0.736534,0.721702,0.339061,-0.603442,0.949034,0.267190,-0.167150,0.930845,0.209967,0.298990,0.736595,0.127445,0.664174,0.739586,0.132908,0.659780,0.956786,0.258858,-0.132389,0.817896,0.264046,-0.511155,0.682516,0.260109,-0.683004,0.569414,0.242256,-0.785516,0.551042,0.251717,-0.795556,0.582781,0.254311,-0.771783,0.554949,0.271920,-0.786157,0.345103,0.198431,-0.917325,0.308176,0.217841,-0.926023,0.069948,0.092105,-0.993286,0.012757,0.063082,-0.997925,-0.065004,0.039003,-0.997101,-0.037843,0.046083,-0.998199,0.112918,0.108249,-0.987671,-0.023164,0.061434,-0.997833,0.145329,0.068392,-0.986999,0.447768,0.114750,-0.886715,0.668416,0.147649,-0.728935,0.518418,0.282815,-0.806970,0.542131,0.259621,-0.799158,0.362896,0.214850,-0.906705,-0.139439,0.062258,-0.988250,-0.115238,0.036500,-0.992645,-0.098666,0.035310,-0.994476,-0.075442,0.015442,-0.997009,-0.233955,0.106937,-0.966338,-0.338481,0.131809,-0.931669,-0.530351,0.183691,-0.827601,-0.523087,0.179052,-0.833216,-0.521317,0.180578,-0.834010,-0.508560,0.180242,-0.841945,-0.508713,0.202521,-0.836756,-0.150548,0.079287,-0.985412,-0.174932,0.059420,0.982757,-0.421186,0.060152,0.904965,-0.145726,0.009369,0.989257,-0.481063,0.076937,0.873287,-0.784020,0.123661,0.608234,-0.844722,0.144658,0.515213,-0.985992,0.146336,0.079958,-0.980438,0.196814,0.001221,-0.889615,0.170537,-0.423627,-0.829615,0.215094,-0.515213,-0.979492,0.199438,-0.027863,-0.827967,0.197028,-0.524979,-0.974364,0.216529,-0.060976,-0.829096,0.194830,-0.524003,-0.949461,0.289285,-0.121708,-0.750694,0.304147,-0.586413,-0.925260,0.340526,-0.166967,-0.705924,0.223121,-0.672170,-0.953825,0.228614,-0.194769,-0.667318,0.139348,-0.731590,-0.950102,0.208960,-0.231544,-0.643727,0.168340,-0.746483,-0.955107,0.190252,-0.226997,-0.648000,0.190130,-0.737510,-0.961943,0.161596,-0.220252,-0.651418,0.162908,-0.740989,-0.967895,0.169805,-0.185278,-0.638661,0.188757,-0.745933,-0.955504,0.174780,-0.237526,-0.629048,0.207556,-0.749107,-0.954436,0.153050,-0.256081,-0.628498,0.216407,-0.747063,-0.953429,0.178655,-0.242958,-0.632008,0.227119,-0.740898,-0.956572,0.151616,-0.248878,-0.648885,0.162999,-0.743187,-0.955809,0.150884,-0.252205,-0.671346,0.157384,-0.724204,-0.936460,0.237617,-0.257973,-0.714347,0.222114,-0.663564,-0.934660,0.203192,-0.291665,-0.627674,0.149388,-0.764000,-0.910703,0.171514,-0.375683,-0.561571,0.153691,-0.812983,-0.889065,0.118137,-0.442244,-0.474776,0.076357,-0.876766,-0.707938,-0.641163,-0.296152,-0.284249,-0.730461,-0.620930,-0.122593,-0.975097,0.184698,-0.792413,-0.609943,0.001099,-0.696921,-0.527604,0.485672,-0.307291,-0.512101,0.802026,0.249458,-0.603809,0.757073,-0.064669,0.178716,0.981750,-0.732139,0.241157,0.637013,-0.981017,0.189795,0.039277,-0.950285,0.227790,0.212195,-0.603107,0.259743,0.754173,-0.044069,0.104373,0.993530,0.591113,0.047121,0.805170,0.523942,-0.648305,0.552385,0.849055,0.028962,0.527451,0.613178,-0.114231,0.781610,0.916807,-0.156774,0.367168,0.602222,-0.276162,0.749016,0.919431,-0.240455,0.311075,0.695120,-0.161687,0.700430,0.934355,-0.214576,0.284402,0.978851,-0.181402,-0.094363,0.954833,-0.178533,-0.237434,0.929136,-0.261605,0.261208,0.936033,-0.189489,-0.296457,0.629719,-0.075411,-0.773125,0.541307,-0.035554,-0.840052,0.102725,0.039094,-0.993927,0.693106,-0.062136,-0.718101,0.691366,0.064730,-0.719565,0.083956,0.128849,-0.988098,0.231361,0.035188,-0.972198,0.794671,0.037111,-0.605884,0.989654,0.107608,-0.094821,0.994903,0.090091,0.044679,0.639332,-0.671621,0.374310,0.635762,-0.751976,-0.174047,0.204474,-0.776025,-0.596606,-0.102939,0.093936,-0.990234,0.524125,0.015992,-0.851466,0.936583,-0.128544,-0.325938,0.927732,-0.114414,-0.355235,0.533311,0.054872,-0.844111,-0.041780,0.117283,-0.992187,-0.014649,0.173650,-0.984680,0.553941,0.041261,-0.831507,0.935759,-0.065645,-0.346416,0.944700,-0.113315,-0.307688,0.569720,0.026276,-0.821406,-0.009369,0.178320,-0.983917,-0.004852,0.161962,-0.986755,0.560533,0.011780,-0.828028,0.942808,-0.142644,-0.301218,0.931211,-0.174718,-0.319803,0.537584,-0.039430,-0.842250,-0.008667,0.124851,-0.992126,-0.031739,0.072176,-0.996857,0.522874,-0.064394,-0.849940,0.906613,-0.208533,-0.366802,0.863948,-0.227119,-0.449416,0.490890,-0.108798,-0.864376,-0.064119,0.093112,-0.993561,-0.119694,0.060549,-0.990936,0.457350,-0.200201,-0.866421,0.866543,-0.211615,-0.451949,0.565996,-0.696646,-0.440809,0.212836,-0.518662,-0.828028,-0.048311,-0.933744,-0.354625,-0.045259,-0.991241,-0.123814,-0.610065,-0.647084,-0.457228,-0.723258,-0.690207,-0.020966,-0.848262,-0.235450,-0.474288,-0.885647,-0.451521,0.108280,-0.845973,-0.247627,-0.472182,-0.872189,-0.442061,0.209387,-0.870632,-0.230262,-0.434706,-0.928587,-0.308878,0.205542,-0.895566,-0.169622,-0.411267,-0.945250,-0.275399,0.174993,-0.908505,-0.134251,-0.395672,-0.938139,-0.258980,0.229713,-0.910245,-0.105411,-0.400403,-0.963408,-0.186163,0.192785,-0.898679,-0.053468,-0.435255,-0.952971,-0.247566,0.174688,-0.889096,-0.100833,-0.446455,-0.939848,-0.299692,0.163732,-0.900357,-0.116977,-0.419050,-0.959258,-0.228217,0.166478,-0.901486,-0.179724,-0.393689,-0.944609,-0.288461,0.156377,-0.921018,-0.180914,-0.344890,-0.952361,-0.252144,0.171392,-0.952300,-0.187536,-0.240669,-0.944426,-0.268105,0.190069,-0.957976,-0.191595,0.213324,-0.964568,0.050447,-0.258889,-0.987030,0.039583,-0.155461,-0.653859,-0.002045,-0.756584,-0.562334,-0.767052,-0.308817,-0.049806,-0.775567,-0.629261,-0.025300,0.031098,-0.999176,0.432142,-0.716605,-0.547441,0.642476,0.100345,-0.759697,0.772881,-0.619221,-0.138554,0.956755,0.151067,-0.248543,0.672842,0.207404,-0.710105,0.082827,0.152348,-0.984832,-0.555071,0.058443,-0.829737,-0.589312,-0.013306,-0.807764,-0.557787,-0.023072,-0.829615,-0.461165,0.014100,-0.887173,-0.443892,0.066500,-0.893582,0.191839,0.160314,-0.968230,0.130741,0.183081,-0.974334,0.732231,0.212287,-0.647084,0.711539,0.218879,-0.667653,0.972228,0.177709,-0.152135,0.972686,0.178198,-0.148686,0.693442,0.282540,-0.662770,0.102084,0.238533,-0.965728,-0.454360,0.104709,-0.884610,-0.475661,0.089938,-0.874996,0.096652,0.243080,-0.965148,0.690695,0.272225,-0.669942,0.968535,0.204779,-0.141362,0.971191,0.180120,-0.155950,0.691580,0.263497,-0.672475,0.092715,0.226905,-0.969481,-0.491256,0.074007,-0.867824,-0.480728,0.060945,-0.874722,-0.455245,0.009033,-0.890286,0.097629,0.190283,-0.976836,0.120792,0.138707,-0.982910,0.701163,0.244636,-0.669668,0.713858,0.218665,-0.665212,0.977783,0.192297,-0.083285,0.975219,0.186346,-0.119114,0.699789,0.254006,-0.667623,0.139103,0.171178,-0.975341,-0.445723,-0.021577,-0.894894,-0.444075,-0.066500,-0.893490,0.150914,0.132054,-0.979675,0.678335,0.227424,-0.698630,0.968230,0.216193,-0.125431,0.963713,0.233100,-0.129826,0.694296,0.200476,-0.691183,0.173345,0.069735,-0.982360,-0.430158,-0.160558,-0.888333,-0.241218,-0.486831,-0.839503,0.269448,-0.082705,-0.959441,0.707999,0.319926,-0.629566,0.963286,0.253029,-0.089541,0.896664,0.436872,-0.071505,0.729209,0.395520,-0.558367,0.376385,0.073000,-0.923551,-0.024628,-0.343760,-0.938719,-0.033143,-0.687338,-0.725547,-0.003296,-0.368816,-0.929472,-0.021027,-0.272011,-0.962035,0.083102,0.040590,-0.995697,0.478683,0.127842,-0.868587,0.847102,0.149815,-0.509812,0.455336,0.176275,-0.872677,0.101840,0.194800,-0.975524,0.004151,0.058107,-0.998291,-0.086184,0.020356,-0.996063,-0.379528,0.021516,-0.924894,-0.268136,-0.125401,-0.955168,-0.165502,0.005646,-0.986175,-0.472060,0.133305,-0.871395,-0.080355,0.201392,-0.976196,0.012909,0.200690,-0.979553,0.012635,0.251534,-0.967742,0.036348,0.199683,-0.979156,0.006867,0.151769,-0.988372,0.000244,0.162725,-0.986663,0.361461,0.165777,-0.917508,0.466292,0.168340,-0.868435,0.847865,0.136143,-0.512375,0.901395,0.089297,-0.423627,0.994690,0.102695,0.002380,0.995178,0.056459,0.079958,0.854030,0.065218,0.516068,0.792016,0.052187,0.608234,0.485092,0.033998,0.873775,0.421613,-0.072115,0.903897,0.145146,-0.003021,0.989380,0.120151,-0.092349,0.988433,0.000702,0.015564,0.999878,-0.049898,-0.003845,0.998718,-0.187964,-0.012726,0.982086,-0.025880,-0.074679,0.996857,-0.115940,0.003906,0.993225,-0.149052,0.045930,0.987732,-0.214728,0.215400,0.952605,-0.230628,0.364818,0.902036,-0.318125,0.390545,0.863826,-0.442427,0.363536,0.819788,-0.332041,0.263985,0.905545,-0.307566,0.113315,0.944731,-0.448073,0.109928,0.887173,-0.270241,0.034059,0.962157,-0.004303,-0.041932,0.999084,-0.137974,-0.023103,0.990143,-0.464614,0.057009,0.883633,-0.854396,0.144292,0.499161,-0.862392,0.162145,0.479568,-0.887387,0.197790,0.416395,-0.897916,0.234046,0.372723,-0.907895,0.228553,0.351390,-0.924192,0.190588,0.330882,-0.937803,0.141240,0.317118,-0.942595,0.101230,0.318125,-0.937376,0.107974,0.331095,-0.901669,0.117771,0.416059,-0.920621,0.143498,0.363018,-0.962645,0.019623,0.269967,-0.962279,0.046815,0.267953,-0.961180,0.116764,0.249916,-0.953642,0.094333,0.285684,-0.941588,0.166753,0.292550,-0.944914,0.211890,0.249367,-0.605853,0.093936,0.789972,-0.033174,-0.072268,0.996826,0.166326,-0.046266,0.984954,0.065554,-0.105441,0.992248,-0.577197,0.010041,0.816523,-0.612934,-0.003388,0.790094,0.024476,-0.120853,0.992340,0.629048,-0.237434,0.740196,0.631214,-0.195929,0.750420,0.942106,-0.200568,0.268624,0.923826,-0.272408,0.268838,0.935301,-0.219459,0.277474,0.943480,-0.156438,0.292093,0.915433,-0.224036,0.334300,0.924161,-0.247749,0.290719,0.918424,-0.262886,0.295541,0.901914,-0.362407,0.234840,0.937895,-0.327982,0.112949,0.753197,-0.657430,-0.020600,-0.035585,-0.951781,0.304666,0.428571,-0.692984,0.579699,-0.025513,-0.655446,0.754784,-0.025086,-0.251778,0.967437,-0.000061,-0.127384,0.991852,-0.157781,-0.040468,0.986633,-0.545518,0.055483,0.836238,-0.598437,0.058779,0.798975,-0.572466,0.098300,0.813990,-0.560533,0.078463,0.824366,-0.570544,0.036439,0.820429,-0.591937,-0.017396,0.805780,-0.586871,-0.029908,0.809107,-0.577776,-0.029542,0.815638,-0.537980,0.019379,0.842708,-0.569079,-0.127079,0.812372,-0.670003,-0.172430,0.722007,-0.034944,-0.260781,0.964751,0.627491,-0.312021,0.713340,0.602039,-0.299631,0.740074,0.630360,-0.171545,0.757073,0.652455,-0.193854,0.732566,0.611133,-0.214911,0.761742,0.631672,-0.240974,0.736808,0.652913,-0.220588,0.724570,0.638447,-0.290536,0.712699,0.621784,-0.365154,0.692801,0.076449,-0.151433,0.985504,0.090732,-0.121891,0.988372,0.073458,-0.125523,0.989349,0.086337,-0.150700,0.984771,0.092105,-0.153722,0.983795,0.065096,-0.151097,0.986358,0.029633,-0.131382,0.990875,0.016419,-0.270363,0.962584,-0.476943,0.069796,0.876125,-0.115238,-0.026368,0.992981,-0.005005,-0.072176,0.997375,0.111515,-0.050233,0.992462,0.144932,-0.086428,0.985656,-0.005737,-0.305582,0.952147,-0.425214,-0.737114,0.525163,-0.601215,-0.464614,0.650105,-0.130070,-0.222022,0.966308,-0.666372,-0.369457,0.647603,-0.720695,-0.275369,0.636158,-0.691153,-0.303262,0.655965,-0.670461,-0.277566,0.688040,-0.713614,-0.249001,0.654775,-0.694235,-0.228126,0.682607,-0.662282,-0.354503,0.660024,-0.684957,-0.365368,0.630299,-0.694052,-0.252022,0.674337,-0.690237,-0.292764,0.661672,-0.753685,-0.215278,0.620960,-0.672811,-0.329234,0.662496,-0.733390,-0.135228,0.666189,-0.940001,0.009339,0.340983,-0.685171,-0.692343,0.226112,-0.611591,-0.668294,0.423444,0.111148,-0.972594,0.204138,-0.388806,-0.618397,0.682913,0.141758,-0.512284,0.847011,-0.147313,0.177557,0.972991,-0.749229,0.051820,0.660237,-0.166173,0.082644,0.982604,-0.127354,-0.134739,0.982635,-0.260598,-0.112918,0.958800,-0.154637,-0.171545,0.972961,-0.113468,-0.186468,0.975860,-0.049379,-0.323618,0.944884,-0.100162,-0.333598,0.937376,-0.118290,-0.196905,0.973235,-0.152837,-0.216681,0.964171,-0.179449,-0.219428,0.958953,-0.166204,-0.218726,0.961516,-0.149266,-0.194525,0.969451,-0.170446,-0.188177,0.967223,0.504837,0.053072,0.861568,0.542039,0.008332,0.840297,0.518113,-0.006836,0.855251,0.472213,0.013092,0.881375,0.464125,0.010834,0.885678,0.130802,-0.035249,0.990753,0.861263,0.062471,0.504288,0.864559,0.086520,0.494980,0.874996,0.148869,0.460646,0.988342,0.147771,-0.036103,0.993713,0.110538,-0.016541,0.849757,0.126255,-0.511795,0.946196,0.316568,-0.066866,0.856319,0.239998,0.457228,0.867702,0.217139,0.447066,0.886593,0.178106,0.426832,0.487442,0.029603,0.872616,0.493637,-0.011872,0.869564,0.515641,-0.064150,0.854396,0.510483,-0.076907,0.856410,0.500809,-0.077059,0.862087,0.457900,-0.030457,0.888455,0.494125,-0.174291,0.851711,0.603687,-0.212439,0.768364,0.537736,-0.048921,0.841670,0.499496,-0.037599,0.865474,0.485153,0.042756,0.873348,0.463027,0.229194,0.856166,0.579089,0.243294,0.778100,0.590075,-0.514054,0.622486,0.790246,-0.588702,0.169958,0.947539,0.206244,0.244148,0.907407,0.218360,0.358989,0.914640,0.208502,0.346294,0.956023,0.231666,-0.179662,0.951994,0.264412,-0.154057,0.768395,0.273324,-0.578631,0.696493,0.212317,-0.685385,0.952879,0.204321,-0.224158,0.015595,0.111118,-0.993683,0.907743,0.157353,0.388836,0.921628,0.085665,0.378430,0.932035,0.110538,0.345042,0.932646,0.039552,0.358531,0.933317,0.012268,0.358806,0.970183,0.200568,-0.136021,0.880825,0.129276,0.455397,0.857509,0.099857,0.504654,0.901028,0.096103,0.422926,0.907529,0.090304,0.410108,0.901975,0.130619,0.411481,-0.017182,0.204505,-0.978698,-0.433088,0.214789,-0.875362,-0.342967,0.200476,-0.917692,0.014466,0.162084,-0.986663,-0.449141,0.209845,-0.868435,-0.497543,0.006867,-0.867397,-0.733818,0.052034,-0.677328,0.224342,-0.180578,-0.957610,-0.022858,-0.251320,-0.967620,-0.350627,-0.267525,-0.897458,0.024781,0.405286,-0.913846,0.064760,-0.090365,-0.993774,-0.549394,-0.360546,-0.753746,-0.834620,-0.149449,-0.530137,-0.910062,0.048616,-0.411542,-0.998169,-0.026002,0.054567,-0.922269,0.082034,0.377697,-0.763634,0.261574,0.590228,-0.671102,0.474013,0.569964,-0.514756,0.761681,0.393445,-0.379070,0.923215,0.062807,-0.299936,0.836390,-0.458754,0.012848,0.476089,-0.879269,0.017548,-0.172430,-0.984863,-0.670827,-0.476424,-0.568316,-0.889492,0.255348,-0.378857,-0.930235,0.287820,-0.227515,-0.955412,0.204718,0.212683,-0.838832,0.215491,0.499893,-0.635365,0.630970,0.445143,-0.879727,0.133793,0.456191,-0.884213,-0.239448,0.400983,-0.726859,-0.476089,0.494919,-0.867214,-0.127323,0.481338,-0.878170,0.441755,0.183325,-0.978759,0.172033,0.111423,-0.784082,-0.226691,0.577715,-0.983245,0.040498,0.177587,-0.706107,-0.273598,0.653096,-0.978942,-0.037019,0.200690,-0.706595,-0.247780,0.662801,-0.968413,-0.001068,0.249275,-0.672292,-0.266640,0.690573,-0.155217,-0.528794,0.834407,-0.227332,-0.940123,0.253853,-0.609088,-0.733665,0.301126,-0.957915,0.039583,0.284249,-0.954131,-0.063021,0.292581,-0.791345,0.112156,0.600940,-0.948943,0.234809,0.210517,-0.912900,0.333445,-0.235267,-0.890194,0.276406,-0.362133,-0.906613,0.120914,-0.404248,-0.957640,-0.057405,-0.282113,-0.536119,-0.060854,-0.841914,-0.584674,-0.387036,-0.712943,0.026002,-0.178350,-0.983612,0.073244,0.130161,-0.988769,0.627766,0.009919,-0.778314,0.672689,0.144566,-0.725639,0.956938,-0.099673,-0.272530,0.958190,-0.081759,-0.274117,0.703665,0.171758,-0.689413,0.112156,0.326090,-0.938658,-0.515000,0.232917,-0.824915,-0.512040,0.412000,-0.753655,-0.525773,0.454512,-0.718955,-0.929899,0.296731,-0.217231,-0.933348,0.266823,-0.240059,-0.910489,0.240913,-0.336070,-0.889859,0.265542,-0.370952,-0.841639,0.390576,-0.372875,-0.675436,0.634175,-0.376202,-0.514847,0.844844,0.145268,-0.231330,0.540208,-0.809076,0.226447,-0.028565,-0.973571,-0.670003,-0.713248,-0.205756,-0.815851,0.500290,0.289956,-0.316721,0.943693,0.095492,0.049898,0.998718,0.005524,-0.975249,-0.015076,-0.220557,-0.998321,0.044679,-0.036683,0.455672,-0.387310,0.801447,0.926603,0.016724,0.375652,0.875973,-0.418744,0.239357,0.421461,-0.541551,0.727348,-0.292337,-0.492752,0.819575,-0.205329,-0.465987,0.860591,-0.142155,-0.448195,0.882534,0.484481,-0.550218,0.680044,0.101291,-0.919034,0.380840,0.714408,-0.670766,0.199164,0.752464,-0.365062,0.548173,-0.001007,0.827021,0.562120,-0.602557,0.656301,0.454024,-0.940733,0.287454,0.179815,-0.966552,-0.154180,-0.204810,-0.614093,-0.546373,-0.569475,-0.002136,-0.519852,-0.854244,0.527085,-0.247108,-0.813044,0.907620,-0.313639,-0.278970,0.670644,-0.650868,0.355724,0.911405,-0.346263,0.222236,0.904874,-0.373974,0.203253,0.946165,-0.131840,-0.295602,0.707450,0.133122,-0.694082,0.128697,0.400189,-0.907315,0.122440,0.405194,-0.905972,0.702445,0.181158,-0.688253,0.945036,-0.143498,-0.293771,0.842799,0.537034,-0.035279,0.549486,0.821406,-0.152745,0.146947,0.493545,-0.857173,-0.530992,0.456557,-0.713828,-0.435926,0.442763,-0.783502,-0.392621,0.364605,-0.844325,-0.426832,0.354747,-0.831813,-0.106784,0.489303,-0.865535,0.505814,-0.503128,0.700674,0.332255,-0.843471,0.422010,0.975005,0.116581,0.189123,0.614185,0.631642,0.473006,0.619373,0.543474,0.566546,-0.014801,0.748924,0.662465,-0.626606,0.605426,0.490677,-0.946806,0.269509,0.175634,-0.968322,-0.166509,-0.186010,-0.621509,-0.595325,-0.509171,0.010254,-0.730094,-0.683248,0.014405,-0.790155,-0.612690,0.624439,-0.608997,-0.488998,0.624928,-0.652577,-0.428480,0.929716,-0.326426,-0.170324,0.940642,-0.319132,-0.115360,0.963042,0.110660,0.245521,0.968566,0.112033,0.222022,0.638356,0.554491,0.533830,-0.029817,0.758965,0.650441,-0.644642,0.590625,0.485366,-0.948241,0.252693,0.192236,-0.972777,-0.165258,-0.162267,-0.638966,-0.576830,-0.508866,0.029237,-0.779168,-0.626087,0.641011,-0.633808,-0.432813,0.942564,-0.309000,-0.126621,0.951323,-0.268410,-0.151311,0.973327,0.144322,0.178259,0.635395,0.584674,0.504349,-0.053957,0.788659,0.612415,-0.660939,0.600208,0.450423,-0.951292,0.241829,0.191076,-0.976440,-0.174413,-0.126926,-0.641285,-0.608997,-0.466720,0.056429,-0.798334,-0.599536,0.661702,-0.611347,-0.434004,0.593554,-0.453230,0.664968,0.558702,-0.251045,0.790429,0.437544,-0.098575,0.893765,0.232978,0.023072,0.972198,-0.014710,0.028718,0.999451,-0.200629,-0.096683,0.974853,-0.297708,-0.297403,0.907132,-0.279305,-0.574847,0.769097,0.039003,-0.813807,0.579760,0.445357,-0.704123,0.552995,-0.361614,-0.532579,0.765221,-0.377850,-0.222297,0.898770,-0.271035,-0.003601,0.962554,-0.769524,-0.047304,0.636799,-0.749229,-0.461501,0.475021,-0.347942,-0.903958,0.248573,0.003784,-0.781304,0.624104,0.357219,-0.916898,0.177831,0.185583,-0.286081,0.940031,-0.620075,0.330515,0.711509,-0.087619,0.224219,0.970580,-0.189825,0.681082,0.707144,0.336039,0.328410,0.882717,0.509659,0.633686,0.581927,0.638539,0.050111,0.767937,0.880154,0.162358,0.445998,0.897366,-0.246193,0.366161,0.760369,-0.590747,0.269814,0.417035,-0.652760,0.632405,0.569170,-0.444075,0.691946,0.647694,-0.240822,0.722800,0.543046,-0.506363,-0.669820,-0.503250,0.789880,0.350414,-0.352611,0.691763,0.630146,-0.324503,0.528153,0.784661,0.483596,-0.476363,0.734275,0.867672,-0.267342,0.419111,0.812006,-0.403516,0.421613,-0.336955,0.220649,0.915281,-0.444929,-0.160405,0.881039,-0.732688,-0.627552,0.263253,-0.971221,-0.237373,-0.018097,-0.517777,-0.826289,-0.221595,-0.340220,-0.907254,-0.247200,-0.181371,-0.962004,-0.203925,-0.076571,-0.990356,0.115299,0.102634,-0.621326,0.776757,0.217750,-0.966002,0.139134,0.297983,-0.902341,0.311411,0.321970,-0.813044,0.485000,0.450880,-0.770714,0.450179,0.486618,-0.661885,0.570147,0.530534,-0.530168,0.661367,0.695151,-0.480697,0.534471,0.672140,-0.733970,0.097354,0.899258,-0.418378,0.127445,0.920927,-0.337504,0.194769,0.937803,-0.299081,-0.176092,0.900540,-0.291421,-0.322520,0.972655,-0.231758,0.014710,0.899899,0.220344,-0.376293,0.601184,-0.198096,-0.774132,0.571154,0.386090,-0.724326,0.150761,0.231605,-0.961028,0.088839,-0.279122,-0.956114,0.292917,-0.317209,-0.901975,0.584948,-0.295602,-0.755242,0.797754,-0.324870,-0.507920,0.869350,-0.173376,-0.462722,0.544176,-0.152257,-0.825007,0.118748,-0.154973,-0.980743,-0.777856,-0.096103,-0.621021,-0.401654,-0.058901,-0.913877,-0.062258,-0.283944,-0.956786,-0.418500,-0.317240,-0.850978,-0.349498,-0.399457,-0.847468,-0.271157,-0.719657,-0.639149,-0.660482,-0.489090,-0.569659,-0.654714,-0.657277,-0.373180,-0.560411,-0.755455,-0.339427,-0.530076,-0.788324,-0.312235,-0.443709,-0.880673,-0.165838,-0.096377,-0.989837,0.104312,0.251869,-0.891171,0.377270,0.416517,-0.802637,0.426893,0.383190,-0.549150,0.742668,0.316538,-0.464766,0.826899,0.065859,-0.324503,0.943571,0.007050,-0.110508,0.993835,-0.073977,-0.270882,0.959746,-0.029786,-0.391552,0.919645,0.014588,0.187384,0.982147,-0.280404,-0.188238,0.941221,-0.131565,0.772607,0.621082,-0.365856,0.794763,0.484207,0.007904,0.909879,0.414747,-0.593707,0.247902,0.765526,-0.195624,-0.952788,0.232185,-0.165899,-0.896634,0.410443,-0.233314,-0.696310,0.678732,-0.141362,-0.740989,0.656453,-0.111850,-0.919004,0.378002,-0.030122,-0.360363,0.932310,-0.027406,-0.055635,0.998047,-0.232093,-0.411206,0.881466,-0.460189,-0.675069,0.576556,-0.608112,0.137455,0.781823,-0.806330,-0.402600,0.433241,-0.374645,-0.893521,0.247444,-0.387066,0.915860,0.106418,-0.614856,-0.690481,0.380932,-0.616260,-0.733879,0.285684,-0.962462,-0.041536,0.268166,-0.903714,-0.347240,0.250343,-0.356731,-0.915311,0.186865,-0.822687,-0.430494,0.371258,-0.791650,-0.415723,0.447676,-0.918027,-0.258217,0.300882,-0.937254,-0.309427,0.160466,-0.967742,-0.095828,0.232887,-0.887478,-0.446669,-0.113132,-0.823542,-0.530992,-0.199500,-0.780023,-0.510422,-0.361919,-0.787255,-0.453078,-0.418195,-0.627461,-0.687063,-0.366375,-0.945311,-0.083621,-0.315256,-0.922422,-0.142796,-0.358776,-0.884823,-0.308390,-0.349223,-0.933470,-0.307077,-0.185095,-0.896695,-0.425733,-0.121067,-0.930509,-0.359386,0.070223,-0.906400,-0.325571,0.269051,-0.919706,-0.203894,0.335459,-0.916562,0.017518,0.399487,-0.872646,0.120151,0.473312,-0.902280,0.130192,0.410993,-0.612018,0.087954,0.785913,-0.245033,0.110691,0.963164,-0.433180,-0.720817,0.541063,-0.738304,-0.669881,0.078249,-0.935514,-0.274056,0.222816,-0.983215,0.103946,0.149754,-0.820948,-0.528428,-0.216285,-0.415967,-0.909360,-0.001129,-0.517930,-0.854274,-0.044069,-0.498276,-0.866329,-0.034242,-0.192816,-0.954222,0.228584,0.137791,-0.875912,0.462355,0.090579,-0.682363,0.725364,0.152287,-0.864376,0.479202,0.154180,-0.776391,0.611072,0.084872,-0.916898,0.389904,0.398877,-0.546800,0.736106,0.394452,-0.199133,0.897061,-0.049226,-0.188482,0.980834,-0.113987,-0.758202,0.641957,-0.566668,-0.403760,0.718223,-0.561907,0.393536,0.727561,-0.942930,-0.175024,0.283212,-0.609180,-0.750755,0.255379,-0.298654,-0.881558,0.365581,-0.644642,-0.764367,-0.012574,-0.969481,-0.178594,-0.167821,-0.926695,0.194555,-0.321421,-0.858272,0.461989,-0.223334,-0.944304,0.273629,-0.182623,-0.844844,0.524796,0.103793,-0.455489,0.660909,0.596393,-0.850093,0.525956,-0.026093,-0.902676,0.416883,0.106357,-0.966247,0.250465,-0.060213,-0.925504,0.288736,0.245003,-0.933744,0.113559,0.339427,-0.979858,-0.078616,0.183386,-0.949522,-0.301950,0.084902,-0.968383,-0.170782,-0.181646,-0.983245,-0.050417,-0.174993,-0.998047,0.033784,0.051973,-0.986328,-0.133824,0.095859,-0.883908,-0.044099,0.465499,-0.806391,0.237159,0.541704,-0.995575,0.083407,-0.043001,-0.966643,0.198553,0.161748,-0.525559,0.506943,0.683187,-0.500259,0.569720,0.651997,0.123569,0.401318,0.907529,0.241310,0.509384,0.825983,0.114078,0.510239,0.852412,0.411206,0.253151,0.875668,0.540056,0.172430,0.823756,0.095157,0.087680,0.991577,0.005646,-0.288217,0.957518,-0.164739,0.006165,0.986297,-0.177221,0.119236,0.976897,-0.106052,-0.216132,0.970580,-0.168554,-0.440321,0.881832,-0.249886,-0.423963,0.870479,-0.623096,0.235694,0.745750,-0.545701,-0.125126,0.828578,-0.088198,0.877865,0.470656,0.116977,0.946379,0.301065,-0.113590,0.433210,0.894101,-0.047182,-0.338481,0.939787,0.150792,-0.375622,0.914396,0.326853,-0.444136,0.834193,0.400067,-0.327158,0.856075,0.142247,-0.318339,0.937223,0.058290,-0.094272,0.993835,-0.100528,0.100955,0.989776,-0.007691,0.274819,0.961455,0.297403,0.231361,0.926267,0.433363,0.442427,0.785119,0.081301,0.182684,0.979797,-0.614673,0.030610,0.788171,-0.861110,-0.192907,0.470351,-0.929044,-0.368694,-0.030183,-0.889523,-0.456801,0.007691,-0.890866,-0.016266,0.453932,-0.460524,0.740745,0.489029,-0.782891,0.002380,0.622120,-0.652303,0.569689,0.499893,-0.664785,0.567156,0.486129,-0.739280,0.124699,0.661733,-0.663472,-0.568499,0.486404,-0.948698,-0.024445,0.315165,-0.875027,0.302072,0.378216,-0.971648,-0.159612,0.174383,-0.967162,-0.211066,-0.141392,-0.940184,-0.038972,-0.338389,-0.874050,0.075777,-0.479843,-0.970061,0.173193,-0.170080,-0.993347,-0.060976,-0.097568,-0.534654,-0.619160,-0.575091,-0.816980,-0.380657,-0.433119,0.724296,-0.316538,-0.612507,0.360424,-0.709983,-0.604938,0.149480,-0.079012,-0.985595,0.371502,0.928404,-0.006592,-0.820673,0.403088,-0.404920,-0.770531,0.566851,0.291452,-0.696097,0.699973,-0.159429,0.536149,0.804437,-0.255684,-0.714316,0.421125,-0.558855,0.680380,0.372631,-0.631031,-0.098331,-0.269845,-0.957854,0.624775,-0.144383,-0.767327,-0.918271,0.272622,-0.287088,-0.994934,0.080355,-0.060244,-0.963469,-0.267434,0.012543,-0.954161,-0.246284,-0.169897,-0.985412,-0.140141,0.096225,-0.956084,-0.234352,0.175939,-0.898434,-0.261696,0.352489,-0.726890,-0.208258,0.654378,-0.617084,-0.585131,0.526109,-0.667745,-0.111179,0.735984,-0.818354,-0.158208,0.552477,-0.915952,-0.250862,0.313120,-0.881405,-0.359661,0.306131,-0.716392,-0.594317,0.365398,-0.689444,-0.640706,0.337779,-0.928922,0.258065,0.265450,-0.840022,-0.506363,0.194769,-0.877132,-0.212958,0.430403,-0.612720,-0.106815,0.783013,-0.250862,-0.202094,0.946684,0.247627,-0.386364,0.888455,0.284677,0.064058,0.956450,-0.325236,0.229865,0.917234,-0.237831,-0.053835,0.969787,0.143681,-0.150853,0.978027,0.063509,-0.175176,0.982452,-0.413343,-0.003143,0.910550,-0.148839,0.291086,0.945036,-0.315836,0.564592,0.762535,-0.299509,0.561632,0.771264,-0.075991,-0.037599,0.996368,-0.321421,-0.573656,0.753380,-0.460036,0.120487,0.879665,-0.348613,0.739036,0.576403,-0.027253,0.244484,0.969237,-0.371502,-0.588794,0.717795,-0.224433,-0.026307,0.974120,-0.553850,-0.112888,0.824915,-0.462172,-0.212256,0.860988,-0.128819,-0.273324,0.953246,-0.340220,-0.165410,0.925657,-0.172369,-0.648457,0.741447,-0.191717,-0.602191,0.774957,0.005310,-0.519059,0.854701,-0.268105,-0.164892,0.949156,-0.354228,0.196539,0.914243,-0.208625,-0.223029,0.952208,-0.589740,0.270547,0.760888,-0.797082,0.203253,0.568621,-0.858638,-0.155980,0.488235,-0.955657,0.072970,0.285257,-0.895718,0.350719,0.273232,-0.902951,0.362133,0.231330,-0.759209,0.302408,0.576250,-0.578997,0.324015,0.748161,-0.569109,0.365917,0.736320,-0.715415,0.391491,0.578661,-0.685781,0.580554,0.438826,-0.476699,0.620319,0.622822,-0.380261,0.386425,0.840266,-0.368938,0.296487,0.880856,-0.041139,0.337748,0.940306,0.001465,0.348430,0.937315,-0.248299,0.573901,0.780358,-0.061495,0.863247,0.500961,-0.267434,0.893796,0.359996,0.076571,0.993927,-0.078829,-0.454695,0.869228,0.193976,-0.237953,0.926054,-0.292856,0.073519,0.737022,-0.671834,-0.422834,0.593646,-0.684652,0.398083,0.772210,-0.495132,0.647572,0.728416,-0.223670,0.359111,0.917020,0.173345,0.313456,0.747459,0.585681,0.190619,0.556688,0.808527,0.506180,0.251106,0.825037,0.301187,0.060793,0.951598,-0.043458,0.059206,0.997284,-0.089846,-0.371563,0.924039,-0.086215,-0.263344,0.960814,0.056825,-0.249611,0.966674,0.143010,-0.157140,0.977142,0.216407,-0.285195,0.933714,0.555376,-0.061525,0.829279,0.391491,-0.266549,0.880703,0.367656,-0.231178,0.900754,0.407178,-0.071383,0.910550,0.192267,0.015809,0.981201,0.407758,-0.191534,0.892758,0.547410,-0.329936,0.769036,0.587970,-0.473830,0.655538,0.568896,-0.165258,0.805597,0.678671,0.052339,0.732536,0.599231,0.381634,0.703726,0.539689,0.383160,0.749596,0.637593,0.416028,0.648335,0.756279,0.229865,0.612507,0.816675,0.085482,0.570696,0.952452,0.156346,0.261422,0.777703,0.575579,0.252693,0.525346,0.736534,0.426008,0.872677,-0.134953,0.469253,0.918241,-0.090640,-0.385479,-0.066164,0.934996,-0.348369,0.412427,-0.311869,-0.855922,0.133091,0.810511,-0.570360,0.336558,0.684378,0.646748,0.723167,0.399518,0.563341,0.453993,0.376019,-0.807733,0.947844,-0.285684,-0.141240,0.611042,-0.402264,0.681722,0.334330,-0.080996,0.938932,-0.085116,0.556475,0.826472,0.403394,0.152470,0.902219,0.533341,-0.105930,0.839229,0.494522,-0.704062,0.509598,0.485916,-0.711905,-0.506974,0.675802,-0.637532,0.369854,0.589923,-0.143895,-0.794488,-0.481521,0.177953,-0.858150,-0.254463,-0.213202,-0.943266,-0.669210,-0.111667,-0.734611,-0.749901,0.109134,-0.652455,-0.773095,0.252937,-0.581622,-0.775597,0.437391,-0.455092,-0.850703,0.404187,-0.335978,-0.819971,0.572008,0.019562,-0.629994,0.761773,-0.150945,-0.526688,0.752434,-0.395428,0.199622,-0.473190,0.858028,-0.793176,-0.582324,0.178014,-0.523270,-0.538957,0.660024,0.008759,-0.594378,0.804102,-0.282571,-0.058901,0.957427,-0.614673,0.029603,0.788202,-0.861141,-0.050172,0.505814,-0.860439,-0.103244,0.498947,-0.535752,-0.505020,0.676656,-0.277047,-0.112033,0.954283,-0.180425,-0.592669,0.784967,-0.493118,-0.610218,0.620014,-0.612110,-0.117161,0.782006,-0.848384,-0.179693,0.497879,-0.728660,-0.584429,0.356975,-0.892087,-0.378613,0.246529,-0.952666,0.202002,0.227088,-0.555925,0.779015,0.289834,-0.302622,0.952727,-0.026460,-0.418653,0.882839,0.212806,-0.673513,-0.123325,0.728782,-0.567583,0.234870,0.789087,-0.831507,0.444075,0.333689,0.239662,0.648030,0.722892,-0.383404,0.635151,0.670461,-0.427900,-0.305002,0.850765,0.013428,0.973540,0.228004,0.788995,0.614277,-0.010224,0.079897,0.952757,0.292917,0.746940,0.655812,-0.109287,0.866970,-0.419752,-0.268532,0.884457,0.188757,-0.426679,0.719047,0.694632,0.020966,0.878903,0.236885,-0.413984,0.493698,0.869472,0.015412,0.492965,0.808954,-0.320200,-0.128584,0.989907,0.059587,-0.128584,0.989907,0.059588,-0.128583,0.989907,0.059587,0.450026,0.455580,-0.768029,0.789483,0.139103,-0.597766,0.928068,-0.201880,-0.312876,0.493545,-0.796319,-0.349620,0.030881,-0.999448,-0.012282,0.030886,-0.999448,-0.012269,0.030885,-0.999448,-0.012268,0.030886,-0.999448,-0.012268,-0.638966,-0.730857,0.239784,-0.510788,-0.819910,0.258461,-0.798730,0.431379,0.419385,-0.660573,0.568163,0.490707,0.322764,-0.717154,0.617634,0.786065,0.336436,0.518509,0.923460,-0.328623,0.197943,0.469283,-0.879543,-0.078341,0.125187,0.911130,0.392560,0.042817,0.898618,0.436567,-0.128574,0.989898,0.059572,-0.656240,0.651295,0.380963,-0.675741,0.728294,0.113620,-0.128583,0.989907,0.059588,-0.203314,0.841700,-0.500137,-0.685202,0.490463,-0.538408,-0.287942,0.138035,-0.947630,0.356487,0.134404,-0.924558,0.748589,0.087008,-0.657277,0.583605,-0.686117,-0.434278,0.409864,-0.563066,-0.717582,0.030893,-0.999447,-0.012273,0.030894,-0.999447,-0.012273,0.315050,-0.001913,0.949073,0.315049,-0.001912,0.949073,-0.087940,-0.927720,-0.362769,-0.049104,-0.967009,-0.249886,-0.685598,-0.718070,0.119449,-0.887478,-0.248695,0.387951,0.030885,-0.999420,-0.012268,0.030889,-0.999448,-0.012260,-0.958586,0.103488,0.265236,-0.696646,0.522782,0.491256,-0.917692,0.103885,0.383404,-0.968596,0.140110,0.205237,-0.974425,0.046144,0.219886,-0.926542,0.080508,-0.367412,-0.740776,-0.522355,-0.422346,-0.651326,-0.735130,0.187841,-0.363384,0.068728,-0.929075,-0.153264,-0.559343,-0.814631,0.209601,0.079501,-0.974517,-0.866207,0.173376,-0.468612,-0.918590,-0.033212,0.393813,0.315050,-0.001912,0.949073,0.839814,0.032596,-0.541895,-0.407239,0.644276,0.647298,-0.363262,-0.813074,0.454848,0.241554,-0.289254,0.926237,-0.888150,0.316752,0.332865,-0.935484,-0.353282,-0.002899,-0.001317,-0.999964,-0.008362,-0.418043,-0.892575,-0.168859,-0.783898,0.592059,-0.186834,-0.087924,0.973785,0.209662,-0.166295,0.951445,0.258889,-0.722526,0.634327,-0.274850,-0.233772,0.906674,0.351054,-0.723441,0.677450,-0.132817,-0.148564,0.898648,0.412702,-0.496597,0.862972,-0.092837,0.104038,0.993652,0.042390,0.104058,0.993667,0.042409,0.104058,0.993667,0.042408,-0.311167,0.422437,-0.851283,0.274392,0.835170,-0.476577,-0.160436,0.112583,-0.980590,0.474075,0.147557,-0.868007,0.736869,0.535447,-0.412610,0.610675,0.767174,0.196081,0.563494,0.669881,0.483413,0.564409,0.534562,0.628986,0.677511,0.455245,0.577654,0.523667,0.588458,0.615986,0.212531,0.648488,0.730918,0.464064,-0.804254,0.371166,0.590869,-0.711753,0.379742,0.662069,-0.698233,0.272195,0.875484,0.131260,0.465072,0.788720,-0.222205,0.573138,0.811396,0.120548,0.571886,0.902219,0.074190,0.424787,0.899930,0.179724,0.397259,0.932310,0.223945,-0.283883,0.553850,0.074709,-0.829249,0.981658,0.104617,-0.159307,0.827998,-0.503403,-0.246864,0.340434,-0.558428,-0.756432,-0.001321,-0.999964,-0.008369,-0.001322,-0.999964,-0.008369,0.614307,-0.715903,0.331736,0.812194,-0.005942,0.583357,-0.512729,-0.006499,0.858526,-0.512729,-0.006500,0.858526,-0.703258,0.006864,-0.710901,-0.590686,0.063295,-0.804376,-0.457656,-0.704001,-0.543046,-0.832789,-0.228980,-0.503983,-0.230049,-0.577380,-0.783349,0.004120,0.069369,-0.997559,-0.653127,0.101535,-0.750389,-0.778314,0.220588,-0.587817,-0.775842,0.162236,-0.609668,-0.385205,-0.811274,-0.439802,0.127293,-0.966369,-0.223426,-0.001312,-0.999939,-0.008362,-0.001319,-0.999964,-0.008360,-0.001318,-0.999964,-0.008362,-0.777062,-0.444868,-0.445204,-0.001309,-0.999964,-0.008376,-0.434828,0.791742,-0.428938,0.188596,-0.926500,-0.325620,0.188596,-0.926501,-0.325620,0.711661,0.346385,-0.611164,0.754997,0.405133,-0.515549,0.903073,0.285562,-0.320750,0.662618,0.344005,-0.665242,0.571368,0.402814,-0.714988,0.480850,0.329539,-0.812494,0.552690,0.297555,-0.778436,0.675283,0.356395,-0.645711,0.849513,0.314066,-0.423841,0.938902,0.319712,-0.127262,0.966399,0.199744,-0.161748,0.928922,0.199927,-0.311563,0.918546,0.329722,-0.218024,0.977752,0.193121,-0.081668,0.928861,0.294443,0.224677,0.906339,0.158177,0.391766,0.823603,0.256630,0.505722,0.690481,0.012879,0.723197,0.599658,-0.059969,0.797967,0.376507,-0.155187,0.913297,0.330058,-0.101230,0.938505,0.512680,-0.043214,0.857479,0.258370,0.038850,0.965239,0.249367,0.054506,0.966857,0.194067,0.203467,0.959624,0.174322,0.218574,0.960112,0.149388,0.287637,0.945982,0.878170,0.096255,0.468490,0.978027,0.204596,-0.039705,0.858577,0.487197,-0.159429,0.754692,0.647938,-0.102847,0.648335,0.759056,-0.058718,0.650716,0.755913,-0.071505,0.678640,0.727805,-0.098483,0.899319,0.433973,0.053407,0.770501,0.588641,-0.244514,0.517289,0.711692,-0.475265,0.415662,0.610675,-0.673971,0.392651,0.659200,-0.641255,0.747551,0.175024,0.640675,0.779687,0.226600,0.583667,0.747398,0.398785,0.531297,0.769066,0.409589,0.490616,0.657888,0.576647,0.484359,0.933866,0.349162,0.077059,0.861263,0.484298,-0.153844,0.832759,0.398572,-0.384198,0.398053,0.500595,-0.768700,0.348918,0.498978,-0.793237,0.318705,0.681967,-0.658254,-0.545396,0.593646,-0.591693,-0.996877,0.022597,-0.075660,-0.848018,0.323313,-0.419843,-0.996781,0.022682,-0.076893,-0.562487,0.661153,-0.496445,0.648213,0.680441,-0.341716,0.730705,0.656240,-0.188086,0.711447,0.681936,-0.169591,0.881497,0.471236,0.029511,0.513077,0.318461,-0.797052,0.566881,0.377361,-0.732261,0.423536,0.306314,-0.852473,-0.024079,0.606311,-0.794824,-0.333323,0.577380,-0.745323,-0.441450,0.839869,-0.315714,0.249397,0.449934,-0.857509,0.668294,0.107334,-0.736076,0.322123,0.536729,-0.779809,-0.206946,0.773461,-0.599048,0.341288,0.564837,-0.751274,0.010895,0.330058,-0.943876,0.079073,0.355602,-0.931272,0.324686,0.329661,-0.886502,0.330393,0.378643,-0.864528,0.241798,0.308725,-0.919889,0.165014,0.273049,-0.947722,0.052248,0.182195,-0.981842,-0.111698,0.362041,-0.925413,0.204016,0.391736,-0.897153,-0.121647,0.635029,-0.762810,-0.112522,0.650410,-0.751183,-0.397656,0.720634,-0.567888,-0.308084,0.477218,-0.822993,-0.275063,0.142613,-0.950774,0.052644,0.278848,-0.958861,-0.004913,0.341319,-0.939909,-0.260598,0.234230,-0.936583,-0.526872,0.178014,-0.831050,-0.232795,0.531907,-0.814142,-0.280313,0.776727,-0.563982,-0.315867,0.810694,-0.492904,-0.311960,0.820002,-0.479812,-0.624775,0.195410,-0.755943,-0.460829,0.314646,-0.829798,-0.680258,0.267006,-0.682577,-0.847896,0.089297,-0.522538,-0.876705,0.019593,-0.480575,-0.833766,0.023438,-0.551592,-0.811884,0.450880,-0.370830,-0.629902,0.594043,-0.500290,-0.620777,0.687735,-0.376293,-0.622272,0.739097,-0.257729,-0.652669,0.648213,-0.392132,-0.678732,0.720115,-0.143834,-0.981353,0.190832,0.022523,-0.920835,-0.038209,-0.388043,-0.974700,-0.092898,-0.203162,0.822108,0.067415,-0.565294,0.878475,0.212806,-0.427747,0.967071,0.035218,-0.251961,0.692801,0.144597,-0.706473,0.592120,0.290414,-0.751671,0.445051,0.089877,-0.890957,0.525132,0.284463,-0.802026,0.819117,0.127293,-0.559282,0.949309,-0.226112,-0.218238,0.963988,0.139225,-0.226417,0.972808,0.152379,-0.174230,0.983032,0.056490,-0.174322,0.995575,0.081454,-0.046419,0.998474,0.054201,0.009522,0.934660,0.156316,0.319254,0.935362,0.006897,0.353557,0.677267,-0.034791,0.734886,0.729820,-0.021912,0.683279,0.555071,-0.162999,0.815638,0.378887,-0.114628,0.918302,0.532853,-0.045747,0.844935,0.195868,-0.163274,0.966918,0.062014,-0.216224,0.974364,0.182348,0.001556,0.983215,0.241646,0.238533,0.940580,0.091403,0.510849,0.854762,0.896237,0.049318,0.440809,0.821741,0.198126,0.534288,0.842586,0.305979,0.443098,0.735893,0.562487,0.376873,0.760216,0.566668,0.317637,0.665181,0.697592,0.266182,0.951323,0.306192,0.034089,0.794366,0.562181,-0.230018,0.788965,0.518784,-0.329173,0.858119,0.364208,-0.361827,0.847194,0.381329,-0.369915,0.833583,0.412976,-0.366802,0.871700,0.462325,0.162420,0.888852,0.447279,0.099033,0.834895,0.548479,0.045534,0.835932,0.548784,-0.004364,0.713858,0.700278,0.001801,0.872585,0.410382,-0.264840,0.796411,0.377789,-0.472213,0.913877,0.022858,-0.405286,0.707907,0.113132,-0.697134,0.880123,0.178594,-0.439833,0.937223,0.279397,-0.208563,0.894009,0.063723,-0.443464,0.752403,0.329508,-0.570330,0.500717,0.427869,-0.752434,0.457472,0.185766,-0.869594,0.761773,0.121464,-0.636311,0.962218,0.091464,-0.256355,0.767205,-0.004273,-0.641377,0.323069,0.380871,-0.866329,0.129063,0.640126,-0.757317,0.218207,0.484909,-0.846858,0.130497,0.334452,-0.933317,0.098666,0.334605,-0.937162,0.097598,0.400708,-0.910977,0.091983,0.423566,-0.901151,0.259468,0.247322,-0.933531,0.046937,0.271950,-0.961150,0.047243,0.288644,-0.956236,-0.191229,0.307352,-0.932157,0.047182,0.260933,-0.964171,0.037233,0.384289,-0.922422,0.304544,0.051393,-0.951079,0.320322,0.231971,-0.918455,0.265816,0.089328,-0.959868,0.245643,0.058473,-0.967589,0.045808,0.148381,-0.987854,-0.066103,0.098605,-0.992920,-0.193091,0.204840,-0.959532,-0.400189,0.050630,-0.915006,-0.495712,0.427107,-0.756188,-0.197058,0.347697,-0.916654,0.099002,0.224708,-0.969359,-0.155339,0.235878,-0.959258,-0.152409,0.281625,-0.947325,-0.382214,0.237312,-0.893063,-0.297189,0.606067,-0.737785,-0.346782,0.301126,-0.888272,-0.195959,0.629383,-0.751946,-0.274575,0.604511,-0.747765,-0.301675,0.635334,-0.710837,-0.298379,0.643788,-0.704611,-0.434156,0.093112,-0.895993,-0.578539,0.071017,-0.812525,-0.676992,0.167516,-0.716636,-0.762658,0.052614,-0.644612,-0.666707,0.286386,-0.688070,-0.856777,0.368358,-0.360820,-0.387738,0.448286,-0.805383,-0.850642,0.149266,-0.504044,-0.279244,0.326334,-0.903043,-0.935514,-0.047151,-0.350078,-0.839167,-0.284341,0.463576,-0.879086,0.463088,0.112705,-0.728019,0.054018,-0.683401,-0.834773,-0.041597,-0.548967,-0.817316,-0.054964,-0.573534,0.857936,-0.455885,-0.236763,0.904752,-0.315531,0.286019,0.728904,-0.560625,0.392865,-0.999786,-0.017640,-0.008881,-0.974517,0.219916,0.043519,-0.941374,0.329875,0.070376,-0.826044,0.561785,0.044862,-0.136845,0.214331,-0.967101,-0.198553,0.023011,-0.979797,-0.449263,0.050325,-0.891964,0.216742,0.066500,-0.973937,0.240059,0.232948,-0.942381,0.438063,0.084017,-0.894986,0.495163,0.290231,-0.818873,0.739952,0.104892,-0.664418,0.608814,0.104495,-0.786370,0.848506,0.057680,-0.526017,0.854793,0.224555,-0.467849,0.740410,0.305765,-0.598559,0.975249,0.197607,-0.098941,0.981445,-0.035310,-0.188421,0.983215,0.034730,0.178961,0.925199,0.058565,0.374859,0.800470,-0.044984,0.597644,0.689901,-0.184057,0.700064,0.347880,-0.376659,0.858516,0.399640,-0.260720,0.878780,0.922697,-0.061800,0.380474,0.730644,0.098544,0.675588,0.306131,-0.324717,0.894864,0.652211,0.040132,0.756951,0.799127,0.434553,0.415326,0.987060,0.159124,-0.018464,0.986023,0.114994,0.120304,0.951537,0.207678,-0.226661,0.821955,0.153294,-0.548479,0.719230,0.245216,-0.650044,0.659627,0.500290,-0.560839,0.744316,0.457686,-0.486251,0.857418,0.513291,-0.036653,0.871853,0.472793,0.127628,0.826350,0.562395,0.028382,0.663686,0.743492,0.081912,0.741172,0.648579,0.173162,0.650960,0.753441,-0.092441,0.618793,0.720206,-0.313669,0.494003,0.869167,-0.021119,0.682791,0.590442,-0.430311,0.681478,0.645924,-0.343974,0.606281,0.695608,-0.385327,0.441664,0.543016,-0.714133,0.370220,0.192267,-0.908811,0.311197,0.632954,-0.708853,0.280923,0.731651,-0.621052,0.262825,0.702475,-0.661367,0.276070,0.668142,-0.690878,0.123264,0.511734,-0.850246,0.000275,0.691427,-0.722404,-0.063753,0.652089,-0.755425,-0.108860,0.771874,-0.626331,0.008972,0.596393,-0.802606,-0.041932,0.760247,-0.648244,0.023896,0.464736,-0.885098,0.192694,0.239051,-0.951659,0.100467,0.139653,-0.985076,-0.003815,0.158147,-0.987396,0.042451,0.653401,-0.755791,-0.056398,0.725700,-0.685659,-0.258858,0.760796,-0.595080,-0.235664,0.874660,-0.423566,-0.530106,0.662404,-0.529283,-0.438948,0.578021,-0.687857,-0.130100,-0.267434,-0.954741,-0.482498,0.170263,-0.859157,-0.456832,0.573412,-0.680044,-0.415235,0.751579,-0.512497,-0.762719,0.007538,-0.646657,-0.970550,0.081942,-0.226447,-0.863186,0.384930,-0.326609,-0.996765,0.037019,-0.070956,-0.941038,-0.279153,0.191015,-0.993378,-0.081332,0.080813,-0.799341,0.325938,-0.504715,-0.185736,0.509537,-0.840144,-0.586749,0.081362,-0.805628,-0.179052,0.827052,0.532792,0.595996,0.766991,-0.237678,0.578997,0.755760,-0.305856,0.724570,0.582202,-0.368755,0.568316,0.635517,-0.522568,0.480544,0.851558,-0.209449,0.734977,0.417554,-0.534227,0.851619,0.373516,-0.367718,0.949339,0.307871,-0.062716,0.790155,0.611713,-0.037355,0.555406,0.831050,0.029054,0.032105,0.997131,0.068239,-0.021851,0.999451,0.024232,0.340312,0.863308,-0.372631,0.442640,0.668325,-0.597797,0.494736,0.445143,-0.746361,0.722739,0.403851,-0.560778,0.731681,0.305307,-0.609424,0.891964,0.324656,-0.314585,0.978576,0.195776,-0.063326,0.942717,0.280526,0.180425,0.803339,0.545457,0.238899,0.494736,0.851741,0.172430,0.093387,0.984283,0.149785,0.102329,0.987426,0.120334,0.032716,0.965697,0.257515,0.197424,0.979919,-0.027314,0.295236,0.845943,-0.444014,0.384838,0.659780,-0.645375,0.476821,0.392529,-0.786462,0.486953,0.232185,-0.841975,0.675558,0.308878,-0.669454,0.932096,0.305673,-0.194250,0.670003,0.506455,-0.542711,0.259896,0.455061,-0.851650,0.621265,0.617664,-0.482131,0.577441,0.262886,-0.772912,0.628101,0.356975,-0.691366,0.657033,0.454848,-0.601123,0.583239,0.605853,-0.541032,0.157140,0.294565,-0.942595,0.488815,0.411908,-0.768975,0.041383,0.397015,-0.916868,0.044404,0.487381,-0.872036,-0.365490,0.256508,-0.894742,-0.122135,0.263558,-0.956847,-0.063662,0.424268,-0.903287,0.024689,0.681967,-0.730949,0.111454,0.874966,-0.471114,-0.113010,0.697684,-0.707389,-0.191473,0.463515,-0.865139,-0.208441,0.396466,-0.894040,-0.296121,0.211585,-0.931394,0.212043,0.419843,-0.882443,-0.269356,0.366771,-0.890439,-0.282785,0.528123,-0.800653,-0.659413,0.107364,-0.744041,-0.452986,0.141148,-0.880245,-0.527635,0.348704,-0.774590,-0.282723,0.648793,-0.706473,-0.103854,0.862606,-0.495071,-0.366558,0.629994,-0.684622,-0.369945,0.352733,-0.859462,-0.333110,0.258461,-0.906735,-0.432356,0.214301,-0.875851,-0.479904,0.280923,-0.831111,-0.469680,0.429212,-0.771447,-0.676077,0.169530,-0.717032,-0.582995,0.321818,-0.745994,-0.350993,0.499283,-0.792138,-0.663015,0.397565,-0.634266,-0.869655,0.038026,-0.492141,-0.954192,0.015900,-0.298746,-0.825037,0.295328,-0.481704,-0.840144,0.301614,-0.450697,-0.739464,0.556413,-0.378887,-0.733573,0.542894,-0.408765,-0.870510,0.398083,-0.289346,-0.777398,0.439406,-0.450026,-0.858730,0.449416,-0.246101,-0.783898,0.590289,-0.192450,-0.818079,0.315317,-0.480911,-0.904508,0.419324,0.077364,-0.903256,0.427503,0.036256,-0.879788,0.471816,0.057619,-0.692587,0.542863,-0.474929,-0.783898,0.250710,-0.567949,-0.813837,0.107303,-0.571062,-0.937773,0.114963,-0.327616,-0.945555,0.017609,-0.324900,-0.964232,0.044649,-0.261208,-0.928922,-0.070284,-0.363475,-0.979034,0.136387,-0.151189,-0.979583,0.121799,-0.159795,-0.942808,0.320597,0.091128,-0.981414,0.189032,-0.032319,-0.942595,0.101047,-0.318186,-0.833216,0.272378,-0.481124,-0.922269,0.183325,-0.340251,-0.927396,-0.007599,-0.373913,-0.976318,0.090701,-0.196356,-0.978545,0.180548,-0.098941,-0.982482,0.161748,-0.092410,-0.766137,0.541276,-0.346385,-0.873531,0.187262,-0.449263,-0.795709,0.021912,-0.605243,-0.971587,0.166845,-0.167791,-0.970489,0.154393,-0.185064,-0.970641,0.131230,-0.201514,-0.972594,0.120304,-0.198859,-0.933958,0.203925,-0.293405,-0.943876,0.028382,-0.328990,-0.846492,-0.176000,-0.502396,-0.987365,0.061068,-0.146153,-0.960784,0.272561,-0.050569,-0.960784,0.268258,-0.070162,-0.996307,0.080447,-0.029267,-0.995575,-0.042787,-0.083407,-0.963439,0.105075,0.246376,-0.935026,0.242683,0.258400,-0.846583,0.501389,0.178411,-0.855403,0.515885,0.046022,-0.632649,0.730369,0.257424,-0.620624,0.708426,0.336009,-0.826563,0.469497,0.310404,-0.942717,0.333384,0.008667,-0.958586,0.284646,0.005524,-0.985961,0.161168,-0.042879,-0.629749,0.624653,0.461684,-0.802820,0.409070,0.433699,-0.844844,0.234901,0.480636,-0.856807,0.066897,0.511246,-0.844508,-0.061525,0.531938,-0.801141,-0.129643,0.584246,-0.795587,-0.082858,0.600116,-0.755028,0.631031,0.178014,-0.889950,0.410718,0.198065,-0.933348,0.277749,0.227363,-0.942351,0.296304,0.155370,-0.962951,0.236793,0.128971,-0.560259,0.670583,0.486190,-0.617542,0.258095,0.742973,-0.950407,0.268777,0.156285,-0.608295,-0.010620,0.793603,-0.753502,-0.113254,0.647603,-0.286935,-0.168523,0.942991,-0.541093,0.229499,0.809015,-0.140416,0.445784,0.884030,0.057772,0.796869,0.601337,-0.321024,0.847530,0.422590,0.031037,0.968596,0.246620,0.178899,0.961272,0.209510,0.030824,0.979827,0.197394,0.047975,0.908567,0.414930,0.149480,0.853511,0.499130,-0.006928,0.966277,0.257332,0.126865,0.922544,0.364360,0.016968,0.930692,0.365368,0.156438,0.925840,0.344005,0.088687,0.947996,0.305643,0.303720,0.931150,0.201605,0.216620,0.967009,0.133854,0.362041,0.911191,0.196478,0.472182,0.856471,0.208472,0.166875,0.979858,-0.109592,0.027497,0.991943,-0.123600,-0.217414,0.899777,-0.378246,-0.342753,0.696585,-0.630268,-0.422895,0.837153,-0.346873,-0.490524,0.831690,-0.260018,-0.550401,0.824824,-0.129246,-0.700369,0.557421,-0.445784,-0.525681,0.832728,-0.173650,-0.718772,0.604572,-0.343272,-0.867794,0.486618,-0.100497,-0.856777,0.511948,0.061586,-0.578173,0.813990,0.055696,-0.538865,0.836879,-0.095798,-0.265114,0.962798,0.051698,-0.384228,0.923063,0.016724,-0.302927,0.950591,0.067751,-0.192480,0.977050,-0.090915,-0.235633,0.866787,0.439467,-0.292032,0.934080,0.205298,-0.323618,0.921201,0.215857,0.013825,0.991913,0.126041,0.443190,0.754112,0.484603,0.597247,0.741508,0.305643,0.813715,0.446944,0.371563,0.658284,0.447005,0.605640,0.592059,0.405866,0.696219,0.623554,0.463576,0.629475,0.344737,0.770135,0.536668,0.033052,0.968139,0.248115,-0.045015,0.972808,0.227058,-0.022645,0.991882,0.125095,-0.118442,0.928678,0.351421,-0.140721,0.952910,0.268532,-0.225471,0.967711,0.112613,-0.335582,0.941984,0.004028,-0.289438,0.932585,0.215522,-0.267190,0.899503,0.345622,-0.180486,0.811548,0.555681,-0.184271,0.784112,0.592608,-0.105472,0.699210,0.707083,-0.283273,0.941954,0.180029,-0.094150,0.910276,0.403119,-0.001679,0.840632,0.541551,0.103671,0.686850,0.719321,0.101840,0.658040,0.746025,0.179571,0.563585,0.806269,0.018921,0.766320,0.642140,-0.000671,0.808802,0.588031,-0.339610,0.799341,0.495682,-0.722617,0.569689,0.391461,-0.861232,0.419843,0.286264,-0.943419,0.318827,0.091037,-0.921781,0.292245,0.254677,-0.953887,0.294107,-0.059816,-0.328623,0.297250,0.896451,-0.283639,-0.029420,0.958464,-0.474563,-0.209021,0.855007,-0.011017,-0.011719,0.999847,0.149449,0.168981,0.974212,0.322092,0.334300,0.885678,-0.409955,0.628590,0.660878,-0.102420,0.480605,0.870907,-0.102695,0.263009,0.959288,-0.145878,0.100986,0.984100,-0.166540,-0.017335,0.985870,0.182989,0.518845,0.835017,-0.005982,0.836360,0.548143,0.389172,0.736930,0.552660,0.027375,0.746422,0.664876,0.264901,0.810785,0.521928,0.359874,0.838374,0.409375,0.707907,0.478408,0.519578,0.534135,0.462539,0.707602,0.229072,0.526017,0.819025,0.453536,0.378674,0.806757,0.251595,0.211798,0.944334,-0.207343,0.028993,0.977813,0.403211,-0.080142,0.911557,0.281228,-0.309091,0.908475,0.772485,-0.203009,0.601672,0.541307,0.114536,0.832972,0.359386,0.219916,0.906888,0.313120,0.139927,0.939329,0.290994,0.136143,0.946959,0.302042,0.163060,0.939238,0.677175,0.174047,0.714927,0.836604,0.045839,0.545854,0.762810,-0.112644,0.636708,0.632099,-0.241432,0.736290,0.663717,-0.002411,0.747948,0.516434,0.247963,0.819605,0.707907,0.306223,0.636433,0.399884,0.190435,0.896542,0.260567,0.202857,0.943876,0.269265,0.286233,0.919523,0.269967,0.296976,0.915891,0.274117,0.328929,0.903684,0.634388,0.344188,0.692099,0.665731,0.372051,0.646779,0.533128,0.431257,0.727805,0.516800,0.607318,0.603351,0.772149,0.350749,0.529801,0.393017,0.536546,0.746727,0.313211,0.568438,0.760735,0.246895,0.688955,0.681448,0.886227,0.270730,0.375835,0.935209,0.125675,0.331004,0.978057,0.208197,-0.007508,0.823878,0.389080,-0.412030,0.951048,0.308695,-0.014161,0.919034,0.067324,0.388318,0.927824,0.372906,-0.007172,0.920316,0.217750,0.324839,0.974059,0.140690,0.177129,0.961455,0.246956,0.120701,0.970916,0.237068,0.032960,0.882748,0.453841,0.121433,0.257759,0.298715,0.918851,0.258431,0.306619,0.916044,0.967559,0.243294,0.067721,0.872616,0.373791,-0.314310,0.629231,0.435987,-0.643391,0.799280,0.524613,-0.293069,0.698294,0.419996,-0.579577,0.709250,0.384106,-0.591083,0.847468,0.341563,-0.406323,0.607166,0.349834,-0.713370,0.308695,0.420576,-0.853084,0.537004,0.554369,-0.635792,0.872127,0.424909,-0.242500,0.574969,0.597705,-0.558672,0.174932,0.547227,-0.818476,0.560076,0.462935,-0.687002,0.750511,0.333934,-0.570238,0.722800,0.439100,-0.533555,0.861965,0.310556,-0.400647,0.915006,0.377361,-0.142491,0.984466,0.175390,-0.001465,0.907743,0.282296,0.310251,0.959288,0.205664,0.193457,0.873928,0.103977,0.474746,0.758354,0.091922,0.645314,0.713370,0.234046,0.660512,0.647420,0.064547,0.759392,0.710013,0.129154,0.692221,0.717368,0.195898,0.668538,0.653310,0.052705,0.755211,0.713126,0.103488,0.693319,0.628834,0.058260,0.775323,0.397931,0.083499,0.913602,0.392407,0.073916,0.916807,0.703696,0.082522,0.705679,0.701437,-0.150304,0.696646,0.695853,-0.157933,0.700583,0.686117,-0.179968,0.704856,0.664174,-0.056276,0.745415,0.821467,0.000305,0.570208,0.838466,0.021058,0.544511,0.838923,0.240211,0.488296,0.835597,0.370251,0.405774,0.831355,0.381939,0.403607,0.966887,0.255165,0.001831,0.933744,0.356853,-0.027161,0.890347,0.453322,0.041932,0.882107,0.463729,0.082614,0.807154,0.579699,0.111423,0.938749,0.233985,-0.252876,0.812128,0.435347,-0.388409,0.757286,0.617237,-0.213263,0.927427,0.373363,0.020173,0.639943,0.752037,-0.157659,0.625263,0.728843,-0.278909,0.687399,0.621204,-0.376202,0.436262,0.417463,-0.797082,0.292795,0.402631,-0.867244,0.247963,0.404401,-0.880306,0.394757,0.471145,-0.788751,0.751122,0.443464,-0.488998,0.499161,0.476516,-0.723685,-0.014863,0.375011,-0.926878,0.434828,0.314463,-0.843806,0.788934,0.448012,-0.420484,0.097385,0.399243,-0.911649,0.070009,0.584002,-0.808710,0.407208,0.565752,-0.716971,0.058748,0.780999,-0.621723,-0.354564,0.550523,-0.755730,-0.162633,0.408307,-0.898221,-0.209418,0.284494,-0.935514,0.075625,0.392926,-0.916440,0.267037,0.481796,-0.834590,-0.049135,0.386242,-0.921079,-0.511673,0.308145,-0.801965,-0.442274,0.179327,-0.878750,-0.316752,0.224128,-0.921628,-0.312876,0.320688,-0.893979,-0.343425,0.477737,-0.808557,-0.365856,0.501572,-0.783898,-0.352733,0.641560,-0.681143,-0.637440,0.141850,-0.757317,-0.642872,0.078921,-0.761864,-0.704611,0.087008,-0.704184,-0.601550,0.308115,-0.736991,-0.559191,0.387982,-0.732597,-0.529344,0.491012,-0.691824,-0.780511,0.150792,-0.606647,-0.787988,0.282479,-0.547014,-0.864071,0.115726,-0.489853,-0.836451,-0.032655,-0.547014,-0.895321,0.044374,-0.443190,-0.908750,0.068392,-0.411634,-0.927396,-0.014435,-0.373699,-0.939787,-0.030915,-0.340312,-0.946532,-0.063814,-0.316172,-0.948576,-0.054750,-0.311686,-0.945891,-0.025666,-0.323374,-0.888363,0.004334,-0.459090,-0.899411,-0.050508,-0.434095,-0.854946,0.179876,-0.486496,-0.818659,0.233345,-0.524705,0.096530,-0.926695,-0.363140,-0.766137,-0.287881,0.574572,-0.763634,-0.512864,-0.392163,-0.044984,-0.302713,0.951994,0.650136,-0.688040,0.322336,0.594073,-0.190558,0.781487,0.857753,-0.501846,0.111179,0.202216,0.193518,0.959990,0.399396,-0.076479,0.913572,0.697317,-0.699545,-0.156041,0.235603,-0.620136,-0.748253,-0.384472,-0.444227,-0.809198,0.235023,-0.597400,-0.766717,-0.734367,-0.312296,-0.602588,-0.796381,-0.450362,-0.403607,-0.965423,0.257027,0.043367,-0.842891,0.290841,0.452651,-0.994110,0.106388,0.020356,-0.382336,0.363933,0.849300,-0.321726,0.336375,0.885037,-0.416425,0.572039,0.706626,-0.355754,0.777154,0.519059,-0.777306,0.623707,0.081942,-0.274789,0.729392,0.626453,-0.760949,0.633961,0.137883,-0.385022,0.515519,0.765496,-0.892972,0.398907,0.208441,-0.904843,0.195898,0.377941,-0.953276,-0.015015,-0.301675,-0.947569,0.157689,-0.277840,-0.901395,0.041566,-0.430921,-0.868709,-0.017365,-0.494980,-0.790735,-0.017457,-0.611896,-0.879635,0.058931,-0.471938,-0.341166,-0.178961,-0.922788,-0.133610,-0.214393,-0.967559,-0.721335,-0.021363,-0.692251,0.063082,-0.192572,-0.979247,0.390637,-0.275704,-0.878262,0.467299,-0.232612,-0.852901,0.760765,-0.292093,-0.579547,0.909574,-0.227912,-0.347392,0.982208,-0.123386,0.141423,0.948820,-0.090732,0.302469,0.776177,0.009583,0.630421,0.743645,0.105594,0.660176,0.309030,0.138951,0.940825,0.126255,0.242470,0.961882,-0.448775,0.172155,0.876888,-0.428205,0.272134,0.861721,-0.879910,0.118900,0.459975,-0.914914,-0.039583,-0.401685,-0.824366,-0.032655,-0.565081,0.345317,0.404462,0.846828,0.340403,0.592303,0.730247,0.254799,0.565874,0.784082,0.131382,0.334208,0.933287,0.708640,-0.102084,0.698141,-0.262978,0.254433,0.930631,-0.526322,0.264870,0.807947,-0.940855,-0.242653,-0.236335,-0.697745,-0.447035,-0.559679,-0.751091,-0.247353,-0.612079,-0.916837,-0.303690,-0.259072,-0.828547,-0.206610,-0.520371,-0.862270,-0.350414,-0.365612,-0.789483,-0.216712,-0.574206,-0.421064,-0.368755,-0.828669,-0.203162,-0.331309,-0.921354,0.396100,-0.232154,-0.888363,-0.105136,-0.212165,-0.971557,0.358104,-0.204352,-0.911008,0.249153,-0.266549,-0.931028,0.743950,-0.231422,-0.626850,0.835902,-0.100436,-0.539537,0.990539,-0.026337,-0.134587,-0.773247,-0.152043,-0.615558,-0.948576,-0.079989,-0.306223,-0.872951,0.123447,-0.471847,-0.830622,-0.103549,-0.547105,0.894528,0.139164,0.424757,0.841487,0.204321,0.500076,0.714835,0.131840,0.686697,0.731681,-0.042726,0.680258,0.056673,0.266610,0.962127,-0.379986,0.159581,0.911100,-0.913755,0.064333,0.401074,-0.531816,-0.210669,-0.820215,-0.992004,0.037660,-0.120304,-0.114170,-0.221229,-0.968505,0.433699,-0.327036,-0.839595,-0.776818,0.040223,0.628407,-0.906644,0.265450,0.327860,-0.562883,-0.001129,-0.826502,-0.957427,0.234993,-0.167486,-0.091464,-0.177435,-0.979858,0.445845,-0.328593,-0.832575,-0.716605,0.061312,0.694754,-0.873196,0.301889,0.382519,-0.618000,0.012879,-0.786035,-0.920713,0.350841,-0.170721,-0.185125,-0.072390,-0.980041,0.360881,-0.343120,-0.867183,-0.547533,-0.018830,0.836543,-0.800958,0.325083,0.502731,-0.580035,0.068667,-0.811670,-0.806940,0.571306,-0.149724,-0.056185,-0.040834,-0.997559,0.362987,-0.463393,-0.808374,0.482772,-0.369335,-0.794031,0.898709,-0.126041,-0.419965,0.919553,-0.373455,-0.122166,0.989380,-0.043733,0.138493,0.997436,0.031159,0.063967,0.896756,0.007263,0.442427,0.832179,-0.173406,0.526627,0.526322,-0.146428,0.837550,-0.463546,0.195929,0.864101,0.921049,-0.301584,-0.246254,0.449171,0.069369,0.890713,0.106906,0.096438,0.989563,-0.534562,0.172308,0.827357,-0.910154,0.198950,0.363323,-0.594806,-0.002075,-0.803827,-0.914029,0.381512,-0.137669,-0.098392,0.055788,-0.993561,0.420454,-0.241676,-0.874508,0.475661,-0.286233,-0.831721,0.962798,-0.246803,0.109775,0.466506,-0.140019,0.873348,-0.374340,0.136906,0.917112,-0.562975,0.170751,0.808618,-0.994018,-0.063265,0.088931,-0.512070,-0.585253,0.628651,0.030732,-0.635701,-0.771294,0.316843,-0.948149,0.023957,0.293283,-0.661153,0.690512,0.858150,-0.510727,0.051881,0.490921,-0.235664,-0.838710,0.891446,-0.383831,-0.240669,-0.652882,0.097140,-0.751183,0.113132,-0.162938,0.980102,-0.587207,0.253548,0.768670,-0.874416,0.390637,0.287637,-0.534471,0.151799,-0.831416,-0.744194,0.645985,-0.169744,0.001892,0.135929,-0.990692,0.429121,-0.304147,-0.850459,0.502121,-0.335490,-0.797021,0.864803,-0.426954,-0.264168,0.905545,-0.423597,0.022797,0.110477,0.000549,0.993866,-0.417615,0.170629,0.892422,-0.562670,0.261238,0.784295,-0.980712,0.194922,0.013764,-0.697439,-0.502426,0.510941,-0.072604,-0.578784,-0.812220,0.013031,-0.996826,-0.078402,0.037416,-0.807001,0.589312,0.673818,-0.738884,0.002045,-0.012665,-0.317301,0.948210,0.455092,-0.340526,0.822718,0.803003,-0.544115,-0.243080,0.484176,-0.332072,-0.809473,-0.499313,0.329997,-0.801080,-0.453627,0.212745,0.865413,-0.558641,0.271859,0.783563,-0.828730,0.478744,0.289773,-0.479934,0.293039,-0.826899,-0.674490,0.714957,-0.183996,-0.013337,0.253822,-0.967132,-0.421400,0.462996,-0.779748,-0.158818,-0.448897,-0.879330,0.428358,-0.293069,-0.854732,0.348613,-0.258187,-0.900967,0.424329,-0.324595,-0.845302,0.840358,-0.446120,-0.307779,0.881069,-0.241981,0.406354,0.554430,-0.196570,0.808649,0.510880,-0.378704,0.771722,-0.433027,0.195776,0.879818,-0.463363,0.259529,0.847285,-0.687765,0.599109,0.409894,-0.271706,0.422285,-0.864742,0.418653,-0.412305,-0.809137,0.446120,-0.484085,-0.752739,0.767663,-0.601337,-0.221412,0.692618,-0.721183,0.011414,-0.064516,-0.128880,0.989532,-0.447401,0.260811,0.855434,-0.525956,0.334056,0.782128,-0.568468,0.807245,-0.158544,0.150609,0.092990,-0.984191,0.450117,-0.454756,-0.768487,0.598315,-0.770043,-0.221412,0.190802,-0.534684,0.823206,-0.253700,-0.218268,0.942320,-0.852840,-0.209876,0.478072,-0.860469,0.503342,-0.078768,-0.334788,0.463759,-0.820246,-0.106113,-0.491501,-0.864376,0.446730,-0.894375,0.022034,-0.196661,-0.760552,0.618732,-0.158788,-0.987243,-0.009735,0.051454,-0.056001,0.997101,-0.462569,0.192022,0.865535,-0.602771,0.305399,0.737144,-0.931089,0.358013,-0.069765,-0.813929,-0.373852,0.444624,-0.120701,-0.988098,-0.095065,-0.126469,-0.825770,0.549608,0.567003,-0.823389,-0.021973,-0.148595,-0.339030,0.928953,0.348674,-0.441084,0.826930,0.734001,-0.624317,-0.267281,0.851619,-0.523942,-0.014222,-0.215522,0.419691,0.881680,-0.077273,-0.929685,0.360057,0.570788,0.258339,0.779382,-0.758538,-0.353679,0.547227,-0.779168,0.314035,0.542436,-0.771477,-0.618976,0.147160,0.021851,-0.990143,-0.138279,-0.178167,-0.950499,-0.254494,-0.835414,-0.419233,0.355358,-0.574450,0.631550,0.520676,0.130741,0.878018,0.460372,-0.404248,0.660054,0.633137,0.189276,0.880215,0.435163,-0.271645,0.887997,0.370952,0.232154,0.964965,0.122227,0.889096,0.405957,0.211341,0.948546,0.314035,-0.039949,0.166601,0.969543,-0.179388,0.732627,0.615314,-0.290902,0.929472,-0.362438,-0.068575,0.870479,-0.484756,0.085238,0.677419,-0.723014,-0.135166,0.694662,-0.707785,-0.128208,0.848842,0.436628,0.297952,0.790155,-0.552263,0.265694,-0.096622,0.995025,-0.023194,-0.827021,0.368236,0.424726,-0.464431,0.884945,0.034120,-0.869839,0.435804,0.231056,-0.471816,0.881039,-0.032929,-0.885250,0.447554,0.126438,-0.964629,0.161016,0.208625,-0.999908,-0.005158,-0.010071,-0.992676,-0.103427,0.062319,-0.785455,-0.538835,-0.304422,-0.773095,-0.573992,-0.269845,-0.230934,-0.852626,-0.468642,-0.258919,-0.904172,-0.339671,-0.857448,-0.512070,0.050203,-0.215491,-0.940184,-0.263741,-0.797082,-0.547777,0.254036,-0.664083,-0.716422,0.213782,-0.140843,-0.933714,-0.329051,-0.211951,-0.933042,-0.290628,-0.586047,-0.624592,0.516129,-0.342692,-0.847682,0.404889,-0.172765,-0.920530,-0.350322,0.362865,-0.888760,-0.279946,0.280038,-0.676931,0.680654,0.739891,0.365398,0.564806,0.778191,0.532548,-0.332804,0.261391,0.861721,0.434858,0.479446,0.795618,-0.370251,0.426374,-0.101108,-0.898862,0.233711,-0.405957,-0.883480,0.435621,-0.520951,-0.734001,0.559832,-0.557329,-0.613117,0.628803,-0.626728,-0.460189,0.430464,-0.823115,-0.370312,0.584613,-0.763970,-0.272988,0.914853,-0.385083,-0.121189,0.938902,-0.335856,0.075014,0.813074,-0.499466,-0.298959,0.977111,-0.188299,-0.098880,0.879727,-0.260048,-0.398022,0.907743,-0.196600,-0.370525,0.840358,-0.337779,-0.423841,0.934263,-0.176061,-0.310038,0.839442,-0.323954,-0.436262,0.936125,-0.188849,-0.296609,0.972839,-0.123905,-0.195471,0.962676,-0.078890,-0.258858,0.820276,0.507065,0.264504,0.710868,0.351909,0.608936,0.334880,0.704947,0.625172,0.335765,0.440260,0.832698,-0.283181,0.636525,0.717338,-0.473128,0.494980,0.728751,-0.849757,0.301737,0.432234,-0.889492,0.256569,0.378033,-0.987396,-0.143437,0.066775,-0.997711,-0.016297,0.065249,-0.816858,-0.442915,-0.369457,-0.657674,-0.637989,-0.400464,-0.278664,-0.673666,-0.684439,-0.270058,-0.778161,-0.567003,0.133213,-0.662099,-0.737449,0.254250,-0.735801,-0.627613,0.379955,-0.768517,-0.514756,0.170934,-0.855342,-0.489029,-0.324595,-0.835871,-0.442610,-0.690695,-0.680135,-0.245552,-0.989837,-0.135868,0.041780,-0.883053,0.391522,0.258644,-0.328623,0.903226,0.275979,0.175390,0.971648,-0.158483,0.300333,0.946196,0.120396,0.757469,0.561693,-0.332682,0.844783,0.493576,-0.206610,0.913480,-0.218024,-0.343486,0.834712,-0.542802,0.092563,0.992279,-0.114658,0.046815,0.373333,0.845027,0.382733,-0.222114,0.837764,0.498764,-0.846217,0.272866,0.457595,-0.923093,0.051515,0.381054,-0.917447,-0.079897,0.389721,-0.537461,0.426344,0.727531,-0.472549,0.406110,0.782128,-0.325968,0.406903,0.853298,-0.108890,0.309854,0.944517,0.142399,-0.098270,0.984893,0.230079,0.864650,0.446547,0.678579,0.695517,-0.236061,0.789239,0.613056,-0.035096,0.196081,0.837092,0.510666,0.221809,0.797662,0.560778,0.840388,0.529588,0.115177,0.334758,0.468001,0.817835,-0.216010,-0.903104,-0.371105,0.604419,-0.580737,-0.545305,-0.150853,-0.879971,-0.450392,0.529588,-0.502213,-0.683584,-0.190527,-0.887265,-0.420026,-0.674429,-0.720267,0.162175,-0.604266,-0.625813,0.493118,-0.390881,-0.856594,0.336802,-0.120212,-0.855831,-0.503067,0.420209,-0.871181,-0.253822,0.252602,-0.714133,0.652791,0.717795,0.240974,0.653188,0.100528,-0.180059,0.978484,-0.133000,0.230659,0.963866,-0.294259,0.355602,0.887082,-0.410535,0.430525,0.803797,-0.828669,-0.491745,0.267312,-0.492691,0.499771,0.712333,0.321848,0.831477,0.452773,0.331950,0.824458,0.458327,0.826441,0.535295,-0.174352,0.870174,0.488662,-0.063173,0.950926,-0.289682,-0.108676,0.567797,0.641255,0.516098,-0.276650,-0.893338,-0.354076,0.537400,-0.640309,-0.548753,-0.236763,-0.895871,-0.375896,0.467971,-0.568590,-0.676504,-0.260109,-0.905698,-0.334666,-0.678854,-0.703665,0.209723,-0.644734,-0.585131,0.491836,-0.532701,-0.776116,0.337352,-0.193884,-0.898679,-0.393414,0.289193,-0.956603,-0.034822,0.033235,-0.686331,0.726493,0.559832,0.210486,0.801386,-0.151097,-0.090701,0.984344,-0.281716,0.295572,0.912809,-0.344920,0.376843,0.859645,-0.420026,0.456191,0.784478,-0.844111,-0.452223,0.287912,-0.505844,0.536363,0.675558,0.311228,0.849940,0.425092,0.353282,0.829829,0.431867,0.819727,0.526078,-0.226356,0.885769,0.456710,-0.082461,0.895016,-0.419660,-0.150853,0.665639,0.595416,0.449843,-0.281930,-0.891171,-0.355327,-0.836940,-0.340312,0.428571,-0.673696,-0.685202,0.276772,-0.251747,-0.866939,-0.430128,-0.305582,-0.864467,-0.399091,-0.620167,-0.530412,0.577929,-0.566881,-0.756310,0.326456,-0.270180,-0.843287,-0.464553,0.243660,-0.957762,-0.152623,0.025300,-0.725333,0.687918,0.634663,0.170812,0.753655,-0.093905,-0.086306,0.991821,-0.187719,0.333018,0.924009,-0.215979,0.398999,0.891110,-0.275307,0.500992,0.820460,-0.367534,0.617817,0.695090,0.328898,0.799676,0.502304,0.922575,0.382916,-0.047029,0.445936,-0.697684,-0.560656,0.394391,-0.549730,-0.736351,0.829981,0.520554,-0.200262,0.336100,0.806543,0.486312,0.347636,0.807337,0.476760,0.756615,0.587024,-0.287912,0.339579,-0.451766,-0.824946,0.293954,-0.389050,-0.873043,0.697653,0.626972,-0.346599,0.354320,0.805048,0.475723,0.949767,0.306619,-0.062105,0.646718,-0.244331,-0.722495,0.969024,-0.185827,0.162542,0.921445,-0.033815,-0.386944,-0.198401,-0.877712,-0.436140,0.424177,-0.492508,-0.759911,0.745201,0.589038,-0.312510,0.292367,0.855922,0.426466,0.284188,0.848842,0.445692,0.679220,0.635639,-0.366863,0.377392,-0.443007,-0.813196,0.696188,-0.294595,-0.654592,0.943663,0.330607,0.013276,0.460524,-0.409650,-0.787439,0.735649,0.608081,-0.298349,0.323283,0.840297,0.435163,0.335398,0.844081,0.418317,0.587359,0.700156,-0.405896,0.322214,-0.304086,-0.896481,0.554369,-0.108127,-0.825190,0.876644,0.430097,-0.215583], + "normals": [-0.25394,0.751,0.60945,-0.30662,0.53325,0.78841,-0.30985,0.68603,0.65825,-0.086215,0.4492,0.88925,0.27006,0.70663,0.65398,-0.27909,0.88955,0.36158,-0.87704,0.42463,0.22465,-0.53768,0.59184,0.60048,-0.17402,0.88394,0.43394,0.18259,0.832,-0.52385,0.30805,0.92093,-0.23862,0.55022,0.83068,0.084628,0.18134,0.83325,0.52226,0.11319,0.63854,0.76119,-0.16382,0.54457,0.82254,-0.25825,0.67428,0.69179,-0.25733,0.67736,0.68914,-0.033753,0.8919,0.45091,3.1e-05,0.5338,-0.84558,-0.23258,0.95529,0.1825,-0.49001,0.82067,-0.29389,-0.09827,0.91702,-0.38649,-0.016785,0.99966,0.019684,0.16001,0.9808,-0.11121,0.18644,0.82449,-0.53423,0.54295,0.45146,-0.70803,0.82949,0.50023,-0.24833,0.093173,0.99005,0.10526,0.032868,0.9982,0.049898,0.48839,0.80312,0.34117,-0.21168,0.93103,0.29719,0.2104,0.79028,0.57546,0.71215,0.66332,0.22977,0.7329,0.66561,0.14054,0.33421,0.92535,0.17881,0.44185,0.83157,-0.3365,0.69884,0.56615,-0.43712,0.4684,0.4406,-0.76577,0.53334,0.36103,-0.76495,0.57213,0.74673,-0.33909,0.71569,0.10636,-0.69024,0.81781,0.44999,-0.35865,0.42918,0.8862,0.17447,0.17551,0.82034,0.54424,-0.022217,0.58501,0.81069,-0.020844,0.34895,0.93689,-0.20014,0.40541,0.89193,-0.30976,0.44652,0.83941,-0.29911,0.50676,0.8085,-0.42158,0.53398,0.73287,-0.19739,0.68712,0.69918,-0.58461,0.63277,0.50771,-0.20997,0.75143,0.62548,-0.48875,0.82678,0.27839,-0.60701,0.79257,-0.057436,-0.047029,0.93265,0.35768,-0.074252,0.99716,0.010895,-0.16037,0.98691,0.016419,-0.068575,0.97861,-0.19379,-0.49095,0.48833,-0.72143,0.028993,0.44679,-0.89416,0.30976,0.4015,-0.86187,0.48219,0.41603,-0.77093,0.38609,0.21043,-0.89813,0.50917,-0.064608,-0.85821,0.66848,-0.17994,-0.72161,0.73113,-0.35487,-0.58263,0.91714,-0.32722,-0.22742,0.73635,-0.043214,-0.67516,0.8869,0.16092,-0.433,0.94266,0.18619,0.27696,0.72127,0.58418,0.37208,0.31797,0.71584,0.6216,0.085086,0.55843,0.82516,0.21827,0.24403,0.94485,0.44841,0.14271,0.88235,0.13898,0.15116,0.97867,-0.14505,0.22578,0.96329,-0.3289,0.29872,0.89587,-0.46031,0.403,0.79098,-0.56212,0.35942,0.74487,-0.53548,0.53209,0.65581,-0.55824,0.76827,0.31315,-0.71252,0.64376,-0.279,-0.67379,0.66359,-0.32499,-0.27552,0.55452,-0.78521,-0.18061,0.83993,-0.5117,0.059603,0.41249,-0.90899,0.10663,0.40339,-0.90875,0.31831,0.32823,-0.88931,0.33052,0.15342,-0.93121,0.40272,-0.039979,-0.91443,0.63271,-0.27039,-0.72561,0.78304,-0.24403,-0.57207,0.77917,-0.24628,-0.57637,0.91614,-0.27485,-0.29176,0.62126,-0.097842,-0.77743,0.52483,0.15885,-0.83621,0.90066,0.14686,-0.40889,0.97183,0.058321,0.22828,0.63653,0.009308,0.77117,0.62053,0.1037,0.77724,0.47749,0.36543,0.799,0.3679,0.094699,0.92502,0.30625,0.34175,0.88845,0.33976,0.12381,0.93231,0.42305,0.053194,0.90451,0.48604,0.088839,0.86938,0.50502,0.085055,0.85888,0.24494,0.057161,0.96783,-0.10141,0.10761,0.98898,-0.32582,0.1919,0.92572,-0.51988,0.23994,0.81982,-0.71331,0.20011,0.67165,-0.44285,0.2584,0.85852,-0.87509,0.13016,0.46611,-0.92792,0.046693,0.36982,-0.92813,0.045412,0.3694,-0.91568,0.075076,0.39476,-0.98935,0.000427,0.14548,-0.98785,0.006653,0.15519,-0.95123,-0.085665,-0.29624,-0.95926,-0.085208,-0.26933,-0.70144,-0.19282,-0.68612,-0.78271,-0.12366,-0.60994,-0.54796,-0.17801,-0.81732,-0.36021,-0.30201,-0.88263,-0.43486,-0.29203,-0.8518,-0.25935,-0.29402,-0.91992,-0.14505,-0.31172,-0.93902,-0.031678,-0.22938,-0.97281,0.13614,-0.03946,-0.9899,0.24955,-0.025422,-0.96802,0.245,0.20701,-0.94714,0.33708,-0.053499,-0.93994,0.43846,-0.20026,-0.87613,0.63335,-0.27308,-0.72405,0.78256,-0.29078,-0.55046,0.79403,-0.23402,-0.56099,0.97198,-0.029237,-0.23319,0.91723,0.31272,0.24665,0.4933,0.83071,0.25794,-0.21958,0.44243,-0.86947,-0.5649,0.57652,-0.59032,-0.060976,0.075259,-0.99527,0.5157,0.22135,-0.82766,0.49528,0.23277,-0.83694,0.90988,0.21821,-0.35273,0.96759,0.10291,0.23057,0.63735,0.026337,0.77007,0.11527,-0.072207,0.99069,0.138,-0.11936,0.98318,0.17026,-0.099826,0.98032,0.31953,-0.35658,0.87789,0.66475,-0.11771,0.73769,0.77505,0.066897,0.62831,0.70397,-0.001556,0.7102,0.67376,0.001953,0.73891,0.50517,0.027192,0.86257,0.49269,0.016663,0.87002,0.15665,0.033357,0.98706,-0.10407,0.12238,0.987,-0.29148,0.18128,0.93921,-0.48521,0.15317,0.86084,-0.5425,0.16425,0.82382,-0.80254,0.087039,0.5902,-0.91684,0.056551,0.39518,-0.86874,0.067965,0.49052,-0.94067,0.047151,0.33595,-0.98859,0.023408,-0.14872,-0.85727,0.001373,-0.51482,-0.68425,-0.039674,-0.72814,-0.68456,-0.002411,-0.72894,-0.52596,-0.13434,-0.83981,-0.35789,-0.054689,-0.93213,-0.19401,-0.15949,-0.96793,0.11359,-0.13745,-0.98395,-0.000671,-0.075198,-0.99716,0.22349,-0.047517,-0.97354,0.13004,-0.043458,-0.99054,0.31474,0.012574,-0.94907,0.38908,-0.057894,-0.91937,0.68178,0.03946,-0.73046,0.72433,-0.089908,-0.68352,0.89456,-0.090609,-0.43764,0.85461,-0.20667,-0.47633,0.7018,-0.20426,-0.68242,0.44469,-0.1688,-0.8796,0.30396,-0.19761,-0.93194,0.17621,-0.24338,-0.95376,-0.18155,-0.24354,-0.95273,0.23234,-0.23734,-0.9432,0.33403,-0.2396,-0.91156,0.33711,-0.19425,-0.9212,0.42741,-0.22187,-0.87637,0.83752,-0.25495,-0.4832,0.95843,-0.23344,-0.16385,0.95013,0.024842,0.31077,0.77929,0.18793,0.5978,-0.07358,0.99408,0.079592,-0.95279,0.227,-0.20148,-0.88342,-0.4294,0.18745,-0.90027,-0.35078,-0.25776,-0.86343,-0.36882,0.34416,-0.92102,-0.29289,-0.25675,-0.89889,-0.31779,0.30161,-0.9245,-0.26411,-0.27476,-0.8948,-0.34648,0.28147,-0.90875,-0.24805,-0.33558,-0.95554,-0.23753,0.17466,-0.85031,-0.10443,-0.51579,-0.54976,-0.15052,-0.82162,-0.44981,-0.21491,-0.86685,-0.4272,-0.30686,-0.85046,0.18815,-0.30158,-0.93466,0.14286,-0.14566,-0.97894,0.05829,-0.012299,-0.9982,0.73507,-0.021241,-0.67763,0.66887,0.12314,-0.73308,0.9751,0.10462,-0.19541,0.9476,0.21085,-0.23994,0.58916,0.23008,-0.77453,0.9313,0.29176,-0.21793,0.54265,0.23954,-0.80505,-0.098148,0.067263,-0.99289,-0.033418,0.066103,-0.99722,-0.60509,-0.095004,-0.79043,-0.67156,-0.14142,-0.72729,-0.67663,-0.17759,-0.71456,-0.63479,-0.1955,-0.74749,-0.089541,0.054445,-0.99448,0.54082,0.22291,-0.81106,0.92764,0.24158,-0.28471,0.9545,0.15308,0.25584,0.66649,0.06708,0.74245,0.099887,-0.049898,0.99374,-0.53038,-0.2071,0.82205,-0.46818,-0.21662,0.85666,-0.18803,-0.44536,0.87536,-0.52394,-0.28962,0.80099,-0.55061,-0.39897,0.73321,-0.99853,0.043184,0.031617,-0.77306,-0.1279,0.62123,-0.99716,-0.070009,-0.02707,-0.82223,-0.1905,-0.53627,-0.44639,-0.29765,-0.84387,0.20936,-0.35292,-0.91192,0.78256,-0.23145,-0.57793,0.77056,-0.18244,-0.61064,0.99972,-0.022126,-0.000763,0.99881,-0.002808,-0.04828,0.89428,0.19068,0.4048,0.9238,0.16941,0.3433,0.92151,0.28376,-0.26508,0.93655,0.20982,0.28077,0.67238,0.078402,0.73601,0.12168,-0.12287,0.98492,0.10923,-0.39415,0.9125,-0.17283,-0.07944,0.98172,-0.78649,0.14011,0.60146,-0.99759,-0.06241,0.029695,-0.84378,-0.23707,-0.48146,-0.84503,-0.2226,-0.48613,-0.44618,-0.32893,-0.83227,-0.42857,-0.34672,-0.83432,0.20576,-0.33344,-0.92001,0.21925,-0.34944,-0.91092,0.78802,-0.22037,-0.57482,0.99982,-0.016205,-0.007355,0.84579,0.16337,0.50783,0.84371,0.14234,0.51753,0.40593,0.27378,0.87188,0.45274,0.11542,0.88412,-0.21598,0.27644,0.93643,-0.78903,0.14612,0.5967,-0.99875,-0.049013,0.009613,-0.84085,-0.16663,-0.51497,-0.4492,-0.27616,-0.84964,-0.51485,-0.85455,-0.067995,-0.30033,-0.92392,-0.23695,0.2053,-0.29728,-0.93243,0.81954,-0.1926,-0.53963,0.80215,-0.20429,-0.56105,0.99741,-0.040345,0.059328,0.99951,-0.027528,0.014008,0.84655,0.14036,0.51341,0.44621,0.26469,0.85485,0.42552,0.27393,0.86245,-0.20673,0.30348,0.93011,-0.22211,0.28819,0.93146,-0.80291,0.17219,0.57064,-0.99869,0.009339,-0.050295,-0.60112,-0.78893,0.1272,-0.27366,-0.93414,-0.22895,-0.49706,-0.86114,-0.10648,-0.54363,-0.64363,-0.53865,-0.042695,-0.7449,-0.66579,0.15235,-0.97458,-0.16416,0.37568,-0.89642,0.23499,0.58788,-0.73293,-0.3423,0.76104,-0.59554,0.25706,0.25806,-0.80254,0.53786,0.062197,-0.9758,-0.20954,0.28883,-0.9509,0.11112,0.25282,-0.87835,0.40565,0.83743,0.090793,0.53893,0.44658,0.21561,0.86834,-0.20313,0.29975,0.93213,-0.81826,0.21528,0.53295,-0.61058,-0.7105,0.3498,-0.64556,-0.76333,0.023103,-0.80712,-0.51213,-0.29362,-0.24537,-0.92126,0.30174,-0.94809,-0.31471,0.045106,-0.7965,-0.09183,0.59761,-0.19318,-0.10068,0.97595,0.32328,-0.28944,0.90094,-0.17719,-0.60048,0.77975,-0.58657,-0.50206,0.63549,-0.74664,-0.61394,0.25605,-0.13456,-0.69442,0.70684,0.11274,-0.78961,0.60314,-0.44719,-0.65313,0.61107,0.072054,-0.72274,0.68734,0.60582,-0.45763,0.65078,0.65581,-0.12989,0.74365,0.93225,-0.069704,0.35499,0.73803,-0.029817,0.67406,0.50899,-0.03296,0.8601,0.50905,-0.022095,0.86041,0.22474,-0.019837,0.97421,0.017182,0.045778,0.99878,-0.27021,0.098086,0.95776,-0.50526,0.081515,0.85907,-0.70104,0.098575,0.70626,-0.63772,0.078463,0.76623,-0.39097,0.073,0.91748,-0.87002,0.040345,0.49129,-0.82281,0.075625,0.56322,-0.76952,0.141,0.62285,-0.90701,0.13251,0.39967,-0.99304,0.097049,-0.066347,-0.88098,0.040437,-0.47136,-0.74474,0.025422,-0.66686,-0.77682,0.083285,-0.62416,-0.77004,0.11585,-0.62734,-0.76833,0.1153,-0.62954,-0.7668,0.12407,-0.62978,-0.48805,0.06653,-0.87023,-0.77105,0.11213,-0.62679,-0.51369,0.085421,-0.85369,-0.10999,0.052889,-0.99249,-0.060183,-0.046602,-0.99707,0.073183,0.020447,-0.9971,0.23991,0.052004,-0.96939,0.62172,0.07355,-0.77975,0.88021,0.025727,-0.47383,0.893,-0.095218,-0.43983,0.97769,-0.064974,-0.19959,0.96664,-0.064028,0.24796,0.78735,-0.023133,0.61605,0.58824,-0.035676,0.80785,0.58861,-0.015473,0.80822,0.35987,-0.071139,0.93027,0.13337,0.009461,0.991,-0.18784,0.045106,0.98114,-0.44069,0.058657,0.89572,-0.57271,0.077059,0.8161,-0.26685,0.070223,0.96115,-0.81295,0.065615,0.5786,-0.75665,0.1156,0.64351,-0.72314,0.15766,0.67241,-0.87201,0.15552,0.46406,-0.991,0.13037,-0.029633,-0.91153,0.11356,-0.39521,-0.89084,0.13807,-0.43281,-0.87017,0.14573,-0.47066,-0.75591,0.097964,-0.64727,-0.79165,0.20719,-0.57476,-0.63927,0.16254,-0.75158,-0.76675,0.064302,-0.63869,-0.67385,0.093905,-0.73284,-0.53163,0.038057,-0.8461,-0.45601,0.06531,-0.88754,-0.55834,0.17505,-0.81091,-0.37901,0.14341,-0.91418,-0.155,0.048097,-0.98672,-0.15494,0.032655,-0.98737,-0.006561,0.036042,-0.9993,0.004639,0.068178,-0.99765,0.1601,0.041536,-0.98621,0.17237,0.073824,-0.98224,0.032594,0.082064,-0.99606,0.20002,0.096408,-0.97501,0.6151,0.09714,-0.78243,0.85208,0.064089,-0.51943,0.87954,0.046663,-0.47346,0.95972,0.056887,-0.27506,0.98422,0.038148,0.17261,0.81951,0.019013,0.57271,0.63253,-0.025513,0.7741,0.63292,-0.008728,0.77413,0.4995,-0.009888,0.86624,0.20554,0.013367,0.97855,-0.10822,0.03769,0.99341,-0.37648,0.076815,0.92322,-0.61437,0.11765,0.78017,-0.71337,0.12162,0.69015,-0.68831,0.099734,0.7185,-0.89096,0.12357,0.4369,-0.99112,0.13205,-0.014954,-0.97794,0.20402,-0.044618,-0.95163,0.26719,-0.15159,-0.93686,0.26719,-0.22556,-0.70077,0.25465,-0.66634,-0.93323,0.23823,-0.2689,-0.65828,0.20505,-0.72427,-0.70791,0.20731,-0.67516,-0.9432,0.23319,-0.23655,-0.957,0.21253,0.19733,-0.91614,0.19584,0.34971,-0.79754,0.15662,0.58254,-0.7911,0.15274,0.59227,-0.79861,0.16135,0.57979,-0.78945,0.16114,0.59227,-0.66057,0.11737,0.74151,-0.63085,0.10895,0.76818,-0.29499,0.008423,0.95544,-0.21052,-0.011017,0.97751,0.063356,-0.047121,0.99686,0.072481,-0.045106,0.99634,0.27381,-0.023316,0.96149,0.3151,-0.017029,0.94888,0.045503,-0.036653,0.99826,-0.37828,0.039918,0.9248,-0.67562,0.15503,0.72072,-0.75903,0.18436,0.62438,-0.62676,0.14939,0.76473,-0.27741,0.0524,0.95929,0.010559,0.000214,0.99994,0.29078,0.01944,0.95657,0.36891,-0.001129,0.92944,0.56874,0.067049,0.81976,0.59716,0.077883,0.7983,0.73177,0.13059,0.6689,0.61751,0.11039,0.77874,0.70458,0.14618,0.69436,0.73058,0.12137,0.6719,0.71535,0.13651,0.68526,0.87613,0.18162,0.44652,0.87939,0.23338,0.41493,0.93966,0.31437,-0.13465,0.95673,0.27619,-0.091464,0.80499,0.24128,-0.54198,0.88534,0.095553,-0.455,0.76467,0.049104,-0.64251,0.78567,0.058138,-0.61586,0.78579,0.041078,-0.61708,0.83154,0.072787,-0.55065,0.85104,0.081881,-0.51866,0.93881,0.071169,-0.33696,0.99078,0.069948,0.11582,0.83483,0.006256,0.5504,0.65676,-0.020325,0.75378,0.65746,-0.007416,0.75341,0.52626,-0.005921,0.85028,0.23759,-0.003235,0.97134,-0.057344,0.024293,0.99805,-0.3184,0.07828,0.9447,-0.5667,0.11478,0.81588,-0.68014,0.087283,0.72784,-0.70824,0.063234,0.70312,-0.87246,0.11121,0.47581,-0.89309,0.20792,0.39885,-0.9158,0.23878,0.32286,-0.77477,0.16959,0.60903,-0.71618,0.16886,0.67715,-0.55718,0.1135,0.82256,-0.23753,0.040712,0.97052,-0.000824,-0.011933,0.99991,0.24598,0.001434,0.96927,0.54988,0.047578,0.83386,0.53847,-0.005432,0.84262,0.25065,-0.006653,0.96805,-0.01471,0.008026,0.99985,-0.26246,0.041505,0.96402,-0.53404,0.066012,0.84286,-0.68786,0.09122,0.72005,-0.74694,0.14719,0.64833,0.67284,0.001099,0.73977,0.68065,0.036164,0.73168,0.68252,0.11881,0.72112,0.58229,0.090884,0.80785,0.70553,0.11087,0.69994,0.69366,0.019135,0.72002,0.67553,-0.007172,0.73727,0.85842,0.006989,0.51283,0.87124,0.048189,0.48845,0.87133,0.18482,0.45448,0.98917,0.14591,-0.014222,0.91122,0.062624,-0.40706,0.82952,0.095676,-0.55019,0.94302,0.068239,-0.32557,0.99725,0.045289,0.058596,0.99954,0.027985,0.008637,0.53032,0.059877,-0.84564,0.53209,0.018555,-0.84646,0.76763,0.022401,-0.64046,0.64415,0.20624,-0.73653,0.7217,0.33906,-0.60344,0.94903,0.26719,-0.16715,0.93085,0.20997,0.29899,0.7366,0.12745,0.66417,0.73959,0.13291,0.65978,0.95679,0.25886,-0.13239,0.8179,0.26405,-0.51116,0.68252,0.26011,-0.683,0.56941,0.24226,-0.78552,0.55104,0.25172,-0.79556,0.58278,0.25431,-0.77178,0.55495,0.27192,-0.78616,0.3451,0.19843,-0.91732,0.30818,0.21784,-0.92602,0.069948,0.092105,-0.99329,0.012757,0.063082,-0.99792,-0.065004,0.039003,-0.9971,-0.037843,0.046083,-0.9982,0.11292,0.10825,-0.98767,-0.023164,0.061434,-0.99783,0.14533,0.068392,-0.987,0.44777,0.11475,-0.88672,0.66842,0.14765,-0.72894,0.51842,0.28281,-0.80697,0.54213,0.25962,-0.79916,0.3629,0.21485,-0.9067,-0.13944,0.062258,-0.98825,-0.11524,0.0365,-0.99265,-0.098666,0.03531,-0.99448,-0.075442,0.015442,-0.99701,-0.23396,0.10694,-0.96634,-0.33848,0.13181,-0.93167,-0.53035,0.18369,-0.8276,-0.52309,0.17905,-0.83322,-0.52132,0.18058,-0.83401,-0.50856,0.18024,-0.84195,-0.50871,0.20252,-0.83676,-0.15055,0.079287,-0.98541,-0.17493,0.05942,0.98276,-0.42119,0.060152,0.90497,-0.14573,0.009369,0.98926,-0.48106,0.076937,0.87329,-0.78402,0.12366,0.60823,-0.84472,0.14466,0.51521,-0.98599,0.14634,0.079958,-0.98044,0.19681,0.001221,-0.88962,0.17054,-0.42363,-0.82961,0.21509,-0.51521,-0.97949,0.19944,-0.027863,-0.82797,0.19703,-0.52498,-0.97436,0.21653,-0.060976,-0.8291,0.19483,-0.524,-0.94946,0.28929,-0.12171,-0.75069,0.30415,-0.58641,-0.92526,0.34053,-0.16697,-0.70592,0.22312,-0.67217,-0.95383,0.22861,-0.19477,-0.66732,0.13935,-0.73159,-0.9501,0.20896,-0.23154,-0.64373,0.16834,-0.74648,-0.95511,0.19025,-0.227,-0.648,0.19013,-0.73751,-0.96194,0.1616,-0.22025,-0.65142,0.16291,-0.74099,-0.96789,0.16981,-0.18528,-0.63866,0.18876,-0.74593,-0.9555,0.17478,-0.23753,-0.62905,0.20756,-0.74911,-0.95444,0.15305,-0.25608,-0.6285,0.21641,-0.74706,-0.95343,0.17866,-0.24296,-0.63201,0.22712,-0.7409,-0.95657,0.15162,-0.24888,-0.64889,0.163,-0.74319,-0.95581,0.15088,-0.25221,-0.67135,0.15738,-0.7242,-0.93646,0.23762,-0.25797,-0.71435,0.22211,-0.66356,-0.93466,0.20319,-0.29167,-0.62767,0.14939,-0.764,-0.9107,0.17151,-0.37568,-0.56157,0.15369,-0.81298,-0.88906,0.11814,-0.44224,-0.47478,0.076357,-0.87677,-0.70794,-0.64116,-0.29615,-0.28425,-0.73046,-0.62093,-0.12259,-0.9751,0.1847,-0.79241,-0.60994,0.001099,-0.69692,-0.5276,0.48567,-0.30729,-0.5121,0.80203,0.24946,-0.60381,0.75707,-0.064669,0.17872,0.98175,-0.73214,0.24116,0.63701,-0.98102,0.18979,0.039277,-0.95029,0.22779,0.21219,-0.60311,0.25974,0.75417,-0.044069,0.10437,0.99353,0.59111,0.047121,0.80517,0.52394,-0.64831,0.55239,0.84906,0.028962,0.52745,0.61318,-0.11423,0.78161,0.91681,-0.15677,0.36717,0.60222,-0.27616,0.74902,0.91943,-0.24046,0.31107,0.69512,-0.16169,0.70043,0.93436,-0.21458,0.2844,0.97885,-0.1814,-0.094363,0.95483,-0.17853,-0.23743,0.92914,-0.2616,0.26121,0.93603,-0.18949,-0.29646,0.62972,-0.075411,-0.77312,0.54131,-0.035554,-0.84005,0.10273,0.039094,-0.99393,0.69311,-0.062136,-0.7181,0.69137,0.06473,-0.71957,0.083956,0.12885,-0.9881,0.23136,0.035188,-0.9722,0.79467,0.037111,-0.60588,0.98965,0.10761,-0.094821,0.9949,0.090091,0.044679,0.63933,-0.67162,0.37431,0.63576,-0.75198,-0.17405,0.20447,-0.77602,-0.59661,-0.10294,0.093936,-0.99023,0.52412,0.015992,-0.85147,0.93658,-0.12854,-0.32594,0.92773,-0.11441,-0.35524,0.53331,0.054872,-0.84411,-0.04178,0.11728,-0.99219,-0.014649,0.17365,-0.98468,0.55394,0.041261,-0.83151,0.93576,-0.065645,-0.34642,0.9447,-0.11332,-0.30769,0.56972,0.026276,-0.82141,-0.009369,0.17832,-0.98392,-0.004852,0.16196,-0.98676,0.56053,0.01178,-0.82803,0.94281,-0.14264,-0.30122,0.93121,-0.17472,-0.3198,0.53758,-0.03943,-0.84225,-0.008667,0.12485,-0.99213,-0.031739,0.072176,-0.99686,0.52287,-0.064394,-0.84994,0.90661,-0.20853,-0.3668,0.86395,-0.22712,-0.44942,0.49089,-0.1088,-0.86438,-0.064119,0.093112,-0.99356,-0.11969,0.060549,-0.99094,0.45735,-0.2002,-0.86642,0.86654,-0.21162,-0.45195,0.566,-0.69665,-0.44081,0.21284,-0.51866,-0.82803,-0.048311,-0.93374,-0.35463,-0.045259,-0.99124,-0.12381,-0.61006,-0.64708,-0.45723,-0.72326,-0.69021,-0.020966,-0.84826,-0.23545,-0.47429,-0.88565,-0.45152,0.10828,-0.84597,-0.24763,-0.47218,-0.87219,-0.44206,0.20939,-0.87063,-0.23026,-0.43471,-0.92859,-0.30888,0.20554,-0.89557,-0.16962,-0.41127,-0.94525,-0.2754,0.17499,-0.90851,-0.13425,-0.39567,-0.93814,-0.25898,0.22971,-0.91024,-0.10541,-0.4004,-0.96341,-0.18616,0.19279,-0.89868,-0.053468,-0.43526,-0.95297,-0.24757,0.17469,-0.8891,-0.10083,-0.44645,-0.93985,-0.29969,0.16373,-0.90036,-0.11698,-0.41905,-0.95926,-0.22822,0.16648,-0.90149,-0.17972,-0.39369,-0.94461,-0.28846,0.15638,-0.92102,-0.18091,-0.34489,-0.95236,-0.25214,0.17139,-0.9523,-0.18754,-0.24067,-0.94443,-0.2681,0.19007,-0.95798,-0.19159,0.21332,-0.96457,0.050447,-0.25889,-0.98703,0.039583,-0.15546,-0.65386,-0.002045,-0.75658,-0.56233,-0.76705,-0.30882,-0.049806,-0.77557,-0.62926,-0.0253,0.031098,-0.99918,0.43214,-0.71661,-0.54744,0.64248,0.10035,-0.7597,0.77288,-0.61922,-0.13855,0.95676,0.15107,-0.24854,0.67284,0.2074,-0.7101,0.082827,0.15235,-0.98483,-0.55507,0.058443,-0.82974,-0.58931,-0.013306,-0.80776,-0.55779,-0.023072,-0.82961,-0.46116,0.0141,-0.88717,-0.44389,0.0665,-0.89358,0.19184,0.16031,-0.96823,0.13074,0.18308,-0.97433,0.73223,0.21229,-0.64708,0.71154,0.21888,-0.66765,0.97223,0.17771,-0.15213,0.97269,0.1782,-0.14869,0.69344,0.28254,-0.66277,0.10208,0.23853,-0.96573,-0.45436,0.10471,-0.88461,-0.47566,0.089938,-0.875,0.096652,0.24308,-0.96515,0.69069,0.27222,-0.66994,0.96854,0.20478,-0.14136,0.97119,0.18012,-0.15595,0.69158,0.2635,-0.67248,0.092715,0.22691,-0.96948,-0.49126,0.074007,-0.86782,-0.48073,0.060945,-0.87472,-0.45525,0.009033,-0.89029,0.097629,0.19028,-0.97684,0.12079,0.13871,-0.98291,0.70116,0.24464,-0.66967,0.71386,0.21867,-0.66521,0.97778,0.1923,-0.083285,0.97522,0.18635,-0.11911,0.69979,0.25401,-0.66762,0.1391,0.17118,-0.97534,-0.44572,-0.021577,-0.89489,-0.44408,-0.0665,-0.89349,0.15091,0.13205,-0.97967,0.67834,0.22742,-0.69863,0.96823,0.21619,-0.12543,0.96371,0.2331,-0.12983,0.6943,0.20048,-0.69118,0.17335,0.069735,-0.98236,-0.43016,-0.16056,-0.88833,-0.24122,-0.48683,-0.8395,0.26945,-0.082705,-0.95944,0.708,0.31993,-0.62957,0.96329,0.25303,-0.089541,0.89666,0.43687,-0.071505,0.72921,0.39552,-0.55837,0.37639,0.073,-0.92355,-0.024628,-0.34376,-0.93872,-0.033143,-0.68734,-0.72555,-0.003296,-0.36882,-0.92947,-0.021027,-0.27201,-0.96203,0.083102,0.04059,-0.9957,0.47868,0.12784,-0.86859,0.8471,0.14982,-0.50981,0.45534,0.17627,-0.87268,0.10184,0.1948,-0.97552,0.004151,0.058107,-0.99829,-0.086184,0.020356,-0.99606,-0.37953,0.021516,-0.92489,-0.26814,-0.1254,-0.95517,-0.1655,0.005646,-0.98618,-0.47206,0.13331,-0.8714,-0.080355,0.20139,-0.9762,0.012909,0.20069,-0.97955,0.012635,0.25153,-0.96774,0.036348,0.19968,-0.97916,0.006867,0.15177,-0.98837,0.000244,0.16273,-0.98666,0.36146,0.16578,-0.91751,0.46629,0.16834,-0.86843,0.84786,0.13614,-0.51238,0.90139,0.089297,-0.42363,0.99469,0.10269,0.00238,0.99518,0.056459,0.079958,0.85403,0.065218,0.51607,0.79202,0.052187,0.60823,0.48509,0.033998,0.87377,0.42161,-0.072115,0.9039,0.14515,-0.003021,0.98938,0.12015,-0.092349,0.98843,0.000702,0.015564,0.99988,-0.049898,-0.003845,0.99872,-0.18796,-0.012726,0.98209,-0.02588,-0.074679,0.99686,-0.11594,0.003906,0.99323,-0.14905,0.04593,0.98773,-0.21473,0.2154,0.95261,-0.23063,0.36482,0.90204,-0.31812,0.39054,0.86383,-0.44243,0.36354,0.81979,-0.33204,0.26399,0.90555,-0.30757,0.11332,0.94473,-0.44807,0.10993,0.88717,-0.27024,0.034059,0.96216,-0.004303,-0.041932,0.99908,-0.13797,-0.023103,0.99014,-0.46461,0.057009,0.88363,-0.8544,0.14429,0.49916,-0.86239,0.16215,0.47957,-0.88739,0.19779,0.4164,-0.89792,0.23405,0.37272,-0.9079,0.22855,0.35139,-0.92419,0.19059,0.33088,-0.9378,0.14124,0.31712,-0.94259,0.10123,0.31812,-0.93738,0.10797,0.33109,-0.90167,0.11777,0.41606,-0.92062,0.1435,0.36302,-0.96264,0.019623,0.26997,-0.96228,0.046815,0.26795,-0.96118,0.11676,0.24992,-0.95364,0.094333,0.28568,-0.94159,0.16675,0.29255,-0.94491,0.21189,0.24937,-0.60585,0.093936,0.78997,-0.033174,-0.072268,0.99683,0.16633,-0.046266,0.98495,0.065554,-0.10544,0.99225,-0.5772,0.010041,0.81652,-0.61293,-0.003388,0.79009,0.024476,-0.12085,0.99234,0.62905,-0.23743,0.7402,0.63121,-0.19593,0.75042,0.94211,-0.20057,0.26862,0.92383,-0.27241,0.26884,0.9353,-0.21946,0.27747,0.94348,-0.15644,0.29209,0.91543,-0.22404,0.3343,0.92416,-0.24775,0.29072,0.91842,-0.26289,0.29554,0.90191,-0.36241,0.23484,0.9379,-0.32798,0.11295,0.7532,-0.65743,-0.0206,-0.035585,-0.95178,0.30467,0.42857,-0.69298,0.5797,-0.025513,-0.65545,0.75478,-0.025086,-0.25178,0.96744,-6.1e-05,-0.12738,0.99185,-0.15778,-0.040468,0.98663,-0.54552,0.055483,0.83624,-0.59844,0.058779,0.79897,-0.57247,0.0983,0.81399,-0.56053,0.078463,0.82437,-0.57054,0.036439,0.82043,-0.59194,-0.017396,0.80578,-0.58687,-0.029908,0.80911,-0.57778,-0.029542,0.81564,-0.53798,0.019379,0.84271,-0.56908,-0.12708,0.81237,-0.67,-0.17243,0.72201,-0.034944,-0.26078,0.96475,0.62749,-0.31202,0.71334,0.60204,-0.29963,0.74007,0.63036,-0.17155,0.75707,0.65246,-0.19385,0.73257,0.61113,-0.21491,0.76174,0.63167,-0.24097,0.73681,0.65291,-0.22059,0.72457,0.63845,-0.29054,0.7127,0.62178,-0.36515,0.6928,0.076449,-0.15143,0.9855,0.090732,-0.12189,0.98837,0.073458,-0.12552,0.98935,0.086337,-0.1507,0.98477,0.092105,-0.15372,0.98379,0.065096,-0.1511,0.98636,0.029633,-0.13138,0.99087,0.016419,-0.27036,0.96258,-0.47694,0.069796,0.87613,-0.11524,-0.026368,0.99298,-0.005005,-0.072176,0.99738,0.11152,-0.050233,0.99246,0.14493,-0.086428,0.98566,-0.005737,-0.30558,0.95215,-0.42521,-0.73711,0.52516,-0.60122,-0.46461,0.65011,-0.13007,-0.22202,0.96631,-0.66637,-0.36946,0.6476,-0.72069,-0.27537,0.63616,-0.69115,-0.30326,0.65597,-0.67046,-0.27757,0.68804,-0.71361,-0.249,0.65478,-0.69424,-0.22813,0.68261,-0.66228,-0.3545,0.66002,-0.68496,-0.36537,0.6303,-0.69405,-0.25202,0.67434,-0.69024,-0.29276,0.66167,-0.75369,-0.21528,0.62096,-0.67281,-0.32923,0.6625,-0.73339,-0.13523,0.66619,-0.94,0.009339,0.34098,-0.68517,-0.69234,0.22611,-0.61159,-0.66829,0.42344,0.11115,-0.97259,0.20414,-0.38881,-0.6184,0.68291,0.14176,-0.51228,0.84701,-0.14731,0.17756,0.97299,-0.74923,0.05182,0.66024,-0.16617,0.082644,0.9826,-0.12735,-0.13474,0.98264,-0.2606,-0.11292,0.9588,-0.15464,-0.17155,0.97296,-0.11347,-0.18647,0.97586,-0.049379,-0.32362,0.94488,-0.10016,-0.3336,0.93738,-0.11829,-0.19691,0.97323,-0.15284,-0.21668,0.96417,-0.17945,-0.21943,0.95895,-0.1662,-0.21873,0.96152,-0.14927,-0.19453,0.96945,-0.17045,-0.18818,0.96722,0.50484,0.053072,0.86157,0.54204,0.008332,0.8403,0.51811,-0.006836,0.85525,0.47221,0.013092,0.88138,0.46413,0.010834,0.88568,0.1308,-0.035249,0.99075,0.86126,0.062471,0.50429,0.86456,0.08652,0.49498,0.875,0.14887,0.46065,0.98834,0.14777,-0.036103,0.99371,0.11054,-0.016541,0.84976,0.12626,-0.5118,0.9462,0.31657,-0.066866,0.85632,0.24,0.45723,0.8677,0.21714,0.44707,0.88659,0.17811,0.42683,0.48744,0.029603,0.87262,0.49364,-0.011872,0.86956,0.51564,-0.06415,0.8544,0.51048,-0.076907,0.85641,0.50081,-0.077059,0.86209,0.4579,-0.030457,0.88845,0.49412,-0.17429,0.85171,0.60369,-0.21244,0.76836,0.53774,-0.048921,0.84167,0.4995,-0.037599,0.86547,0.48515,0.042756,0.87335,0.46303,0.22919,0.85617,0.57909,0.24329,0.7781,0.59008,-0.51405,0.62249,0.79025,-0.5887,0.16996,0.94754,0.20624,0.24415,0.90741,0.21836,0.35899,0.91464,0.2085,0.34629,0.95602,0.23167,-0.17966,0.95199,0.26441,-0.15406,0.7684,0.27332,-0.57863,0.69649,0.21232,-0.68539,0.95288,0.20432,-0.22416,0.015595,0.11112,-0.99368,0.90774,0.15735,0.38884,0.92163,0.085665,0.37843,0.93203,0.11054,0.34504,0.93265,0.039552,0.35853,0.93332,0.012268,0.35881,0.97018,0.20057,-0.13602,0.88082,0.12928,0.4554,0.85751,0.099857,0.50465,0.90103,0.096103,0.42293,0.90753,0.090304,0.41011,0.90197,0.13062,0.41148,-0.017182,0.2045,-0.9787,-0.43309,0.21479,-0.87536,-0.34297,0.20048,-0.91769,0.014466,0.16208,-0.98666,-0.44914,0.20985,-0.86843,-0.49754,0.006867,-0.8674,-0.73382,0.052034,-0.67733,0.22434,-0.18058,-0.95761,-0.022858,-0.25132,-0.96762,-0.35063,-0.26753,-0.89746,0.024781,0.40529,-0.91385,0.06476,-0.090365,-0.99377,-0.54939,-0.36055,-0.75375,-0.83462,-0.14945,-0.53014,-0.91006,0.048616,-0.41154,-0.99817,-0.026002,0.054567,-0.92227,0.082034,0.3777,-0.76363,0.26157,0.59023,-0.6711,0.47401,0.56996,-0.51476,0.76168,0.39344,-0.37907,0.92322,0.062807,-0.29994,0.83639,-0.45875,0.012848,0.47609,-0.87927,0.017548,-0.17243,-0.98486,-0.67083,-0.47642,-0.56832,-0.88949,0.25535,-0.37886,-0.93024,0.28782,-0.22752,-0.95541,0.20472,0.21268,-0.83883,0.21549,0.49989,-0.63536,0.63097,0.44514,-0.87973,0.13379,0.45619,-0.88421,-0.23945,0.40098,-0.72686,-0.47609,0.49492,-0.86721,-0.12732,0.48134,-0.87817,0.44176,0.18332,-0.97876,0.17203,0.11142,-0.78408,-0.22669,0.57771,-0.98325,0.040498,0.17759,-0.70611,-0.2736,0.6531,-0.97894,-0.037019,0.20069,-0.70659,-0.24778,0.6628,-0.96841,-0.001068,0.24928,-0.67229,-0.26664,0.69057,-0.15522,-0.52879,0.83441,-0.22733,-0.94012,0.25385,-0.60909,-0.73367,0.30113,-0.95791,0.039583,0.28425,-0.95413,-0.063021,0.29258,-0.79134,0.11216,0.60094,-0.94894,0.23481,0.21052,-0.9129,0.33344,-0.23527,-0.89019,0.27641,-0.36213,-0.90661,0.12091,-0.40425,-0.95764,-0.057405,-0.28211,-0.53612,-0.060854,-0.84191,-0.58467,-0.38704,-0.71294,0.026002,-0.17835,-0.98361,0.073244,0.13016,-0.98877,0.62777,0.009919,-0.77831,0.67269,0.14457,-0.72564,0.95694,-0.099673,-0.27253,0.95819,-0.081759,-0.27412,0.70366,0.17176,-0.68941,0.11216,0.32609,-0.93866,-0.515,0.23292,-0.82491,-0.51204,0.412,-0.75365,-0.52577,0.45451,-0.71896,-0.9299,0.29673,-0.21723,-0.93335,0.26682,-0.24006,-0.91049,0.24091,-0.33607,-0.88986,0.26554,-0.37095,-0.84164,0.39058,-0.37288,-0.67544,0.63418,-0.3762,-0.51485,0.84484,0.14527,-0.23133,0.54021,-0.80908,0.22645,-0.028565,-0.97357,-0.67,-0.71325,-0.20576,-0.81585,0.50029,0.28996,-0.31672,0.94369,0.095492,0.049898,0.99872,0.005524,-0.97525,-0.015076,-0.22056,-0.99832,0.044679,-0.036683,0.45567,-0.38731,0.80145,0.9266,0.016724,0.37565,0.87597,-0.41874,0.23936,0.42146,-0.54155,0.72735,-0.29234,-0.49275,0.81958,-0.20533,-0.46599,0.86059,-0.14216,-0.4482,0.88253,0.48448,-0.55022,0.68004,0.10129,-0.91903,0.38084,0.71441,-0.67077,0.19916,0.75246,-0.36506,0.54817,-0.001007,0.82702,0.56212,-0.60256,0.6563,0.45402,-0.94073,0.28745,0.17982,-0.96655,-0.15418,-0.20481,-0.61409,-0.54637,-0.56947,-0.002136,-0.51985,-0.85424,0.52709,-0.24711,-0.81304,0.90762,-0.31364,-0.27897,0.67064,-0.65087,0.35572,0.91141,-0.34626,0.22224,0.90487,-0.37397,0.20325,0.94617,-0.13184,-0.2956,0.70745,0.13312,-0.69408,0.1287,0.40019,-0.90731,0.12244,0.40519,-0.90597,0.70244,0.18116,-0.68825,0.94504,-0.1435,-0.29377,0.8428,0.53703,-0.035279,0.54949,0.82141,-0.15274,0.14695,0.49355,-0.85717,-0.53099,0.45656,-0.71383,-0.43593,0.44276,-0.7835,-0.39262,0.36461,-0.84432,-0.42683,0.35475,-0.83181,-0.10678,0.4893,-0.86554,0.50581,-0.50313,0.70067,0.33226,-0.84347,0.42201,0.97501,0.11658,0.18912,0.61418,0.63164,0.47301,0.61937,0.54347,0.56655,-0.014801,0.74892,0.66246,-0.62661,0.60543,0.49068,-0.94681,0.26951,0.17563,-0.96832,-0.16651,-0.18601,-0.62151,-0.59532,-0.50917,0.010254,-0.73009,-0.68325,0.014405,-0.79016,-0.61269,0.62444,-0.609,-0.489,0.62493,-0.65258,-0.42848,0.92972,-0.32643,-0.17032,0.94064,-0.31913,-0.11536,0.96304,0.11066,0.24552,0.96857,0.11203,0.22202,0.63836,0.55449,0.53383,-0.029817,0.75897,0.65044,-0.64464,0.59062,0.48537,-0.94824,0.25269,0.19224,-0.97278,-0.16526,-0.16227,-0.63897,-0.57683,-0.50887,0.029237,-0.77917,-0.62609,0.64101,-0.63381,-0.43281,0.94256,-0.309,-0.12662,0.95132,-0.26841,-0.15131,0.97333,0.14432,0.17826,0.6354,0.58467,0.50435,-0.053957,0.78866,0.61242,-0.66094,0.60021,0.45042,-0.95129,0.24183,0.19108,-0.97644,-0.17441,-0.12693,-0.64128,-0.609,-0.46672,0.056429,-0.79833,-0.59954,0.6617,-0.61135,-0.434,0.59355,-0.45323,0.66497,0.5587,-0.25105,0.79043,0.43754,-0.098575,0.89377,0.23298,0.023072,0.9722,-0.01471,0.028718,0.99945,-0.20063,-0.096683,0.97485,-0.29771,-0.2974,0.90713,-0.27931,-0.57485,0.7691,0.039003,-0.81381,0.57976,0.44536,-0.70412,0.553,-0.36161,-0.53258,0.76522,-0.37785,-0.2223,0.89877,-0.27104,-0.003601,0.96255,-0.76952,-0.047304,0.6368,-0.74923,-0.4615,0.47502,-0.34794,-0.90396,0.24857,0.003784,-0.7813,0.6241,0.35722,-0.9169,0.17783,0.18558,-0.28608,0.94003,-0.62008,0.33052,0.71151,-0.087619,0.22422,0.97058,-0.18982,0.68108,0.70714,0.33604,0.32841,0.88272,0.50966,0.63369,0.58193,0.63854,0.050111,0.76794,0.88015,0.16236,0.446,0.89737,-0.24619,0.36616,0.76037,-0.59075,0.26981,0.41703,-0.65276,0.6324,0.56917,-0.44408,0.69195,0.64769,-0.24082,0.7228,0.54305,-0.50636,-0.66982,-0.50325,0.78988,0.35041,-0.35261,0.69176,0.63015,-0.3245,0.52815,0.78466,0.4836,-0.47636,0.73428,0.86767,-0.26734,0.41911,0.81201,-0.40352,0.42161,-0.33696,0.22065,0.91528,-0.44493,-0.1604,0.88104,-0.73269,-0.62755,0.26325,-0.97122,-0.23737,-0.018097,-0.51778,-0.82629,-0.22159,-0.34022,-0.90725,-0.2472,-0.18137,-0.962,-0.20393,-0.076571,-0.99036,0.1153,0.10263,-0.62133,0.77676,0.21775,-0.966,0.13913,0.29798,-0.90234,0.31141,0.32197,-0.81304,0.485,0.45088,-0.77071,0.45018,0.48662,-0.66188,0.57015,0.53053,-0.53017,0.66137,0.69515,-0.4807,0.53447,0.67214,-0.73397,0.097354,0.89926,-0.41838,0.12745,0.92093,-0.3375,0.19477,0.9378,-0.29908,-0.17609,0.90054,-0.29142,-0.32252,0.97266,-0.23176,0.01471,0.8999,0.22034,-0.37629,0.60118,-0.1981,-0.77413,0.57115,0.38609,-0.72433,0.15076,0.23161,-0.96103,0.088839,-0.27912,-0.95611,0.29292,-0.31721,-0.90197,0.58495,-0.2956,-0.75524,0.79775,-0.32487,-0.50792,0.86935,-0.17338,-0.46272,0.54418,-0.15226,-0.82501,0.11875,-0.15497,-0.98074,-0.77786,-0.096103,-0.62102,-0.40165,-0.058901,-0.91388,-0.062258,-0.28394,-0.95679,-0.4185,-0.31724,-0.85098,-0.3495,-0.39946,-0.84747,-0.27116,-0.71966,-0.63915,-0.66048,-0.48909,-0.56966,-0.65471,-0.65728,-0.37318,-0.56041,-0.75545,-0.33943,-0.53008,-0.78832,-0.31223,-0.44371,-0.88067,-0.16584,-0.096377,-0.98984,0.10431,0.25187,-0.89117,0.37727,0.41652,-0.80264,0.42689,0.38319,-0.54915,0.74267,0.31654,-0.46477,0.8269,0.065859,-0.3245,0.94357,0.00705,-0.11051,0.99384,-0.073977,-0.27088,0.95975,-0.029786,-0.39155,0.91965,0.014588,0.18738,0.98215,-0.2804,-0.18824,0.94122,-0.13156,0.77261,0.62108,-0.36586,0.79476,0.48421,0.007904,0.90988,0.41475,-0.59371,0.2479,0.76553,-0.19562,-0.95279,0.23219,-0.1659,-0.89663,0.41044,-0.23331,-0.69631,0.67873,-0.14136,-0.74099,0.65645,-0.11185,-0.919,0.378,-0.030122,-0.36036,0.93231,-0.027406,-0.055635,0.99805,-0.23209,-0.41121,0.88147,-0.46019,-0.67507,0.57656,-0.60811,0.13745,0.78182,-0.80633,-0.4026,0.43324,-0.37465,-0.89352,0.24744,-0.38707,0.91586,0.10642,-0.61486,-0.69048,0.38093,-0.61626,-0.73388,0.28568,-0.96246,-0.041536,0.26817,-0.90371,-0.34724,0.25034,-0.35673,-0.91531,0.18687,-0.82269,-0.43049,0.37126,-0.79165,-0.41572,0.44768,-0.91803,-0.25822,0.30088,-0.93725,-0.30943,0.16047,-0.96774,-0.095828,0.23289,-0.88748,-0.44667,-0.11313,-0.82354,-0.53099,-0.1995,-0.78002,-0.51042,-0.36192,-0.78726,-0.45308,-0.41819,-0.62746,-0.68706,-0.36638,-0.94531,-0.083621,-0.31526,-0.92242,-0.1428,-0.35878,-0.88482,-0.30839,-0.34922,-0.93347,-0.30708,-0.1851,-0.8967,-0.42573,-0.12107,-0.93051,-0.35939,0.070223,-0.9064,-0.32557,0.26905,-0.91971,-0.20389,0.33546,-0.91656,0.017518,0.39949,-0.87265,0.12015,0.47331,-0.90228,0.13019,0.41099,-0.61202,0.087954,0.78591,-0.24503,0.11069,0.96316,-0.43318,-0.72082,0.54106,-0.7383,-0.66988,0.078249,-0.93551,-0.27406,0.22282,-0.98321,0.10395,0.14975,-0.82095,-0.52843,-0.21629,-0.41597,-0.90936,-0.001129,-0.51793,-0.85427,-0.044069,-0.49828,-0.86633,-0.034242,-0.19282,-0.95422,0.22858,0.13779,-0.87591,0.46236,0.090579,-0.68236,0.72536,0.15229,-0.86438,0.4792,0.15418,-0.77639,0.61107,0.084872,-0.9169,0.3899,0.39888,-0.5468,0.73611,0.39445,-0.19913,0.89706,-0.049226,-0.18848,0.98083,-0.11399,-0.7582,0.64196,-0.56667,-0.40376,0.71822,-0.56191,0.39354,0.72756,-0.94293,-0.17502,0.28321,-0.60918,-0.75075,0.25538,-0.29865,-0.88156,0.36558,-0.64464,-0.76437,-0.012574,-0.96948,-0.17859,-0.16782,-0.9267,0.19456,-0.32142,-0.85827,0.46199,-0.22333,-0.9443,0.27363,-0.18262,-0.84484,0.5248,0.10379,-0.45549,0.66091,0.59639,-0.85009,0.52596,-0.026093,-0.90268,0.41688,0.10636,-0.96625,0.25046,-0.060213,-0.9255,0.28874,0.245,-0.93374,0.11356,0.33943,-0.97986,-0.078616,0.18339,-0.94952,-0.30195,0.084902,-0.96838,-0.17078,-0.18165,-0.98325,-0.050417,-0.17499,-0.99805,0.033784,0.051973,-0.98633,-0.13382,0.095859,-0.88391,-0.044099,0.4655,-0.80639,0.23716,0.5417,-0.99557,0.083407,-0.043001,-0.96664,0.19855,0.16175,-0.52556,0.50694,0.68319,-0.50026,0.56972,0.652,0.12357,0.40132,0.90753,0.24131,0.50938,0.82598,0.11408,0.51024,0.85241,0.41121,0.25315,0.87567,0.54006,0.17243,0.82376,0.095157,0.08768,0.99158,0.005646,-0.28822,0.95752,-0.16474,0.006165,0.9863,-0.17722,0.11924,0.9769,-0.10605,-0.21613,0.97058,-0.16855,-0.44032,0.88183,-0.24989,-0.42396,0.87048,-0.6231,0.23569,0.74575,-0.5457,-0.12513,0.82858,-0.088198,0.87787,0.47066,0.11698,0.94638,0.30107,-0.11359,0.43321,0.8941,-0.047182,-0.33848,0.93979,0.15079,-0.37562,0.9144,0.32685,-0.44414,0.83419,0.40007,-0.32716,0.85608,0.14225,-0.31834,0.93722,0.05829,-0.094272,0.99384,-0.10053,0.10096,0.98978,-0.007691,0.27482,0.96145,0.2974,0.23136,0.92627,0.43336,0.44243,0.78512,0.081301,0.18268,0.9798,-0.61467,0.03061,0.78817,-0.86111,-0.19291,0.47035,-0.92904,-0.36869,-0.030183,-0.88952,-0.4568,0.007691,-0.89087,-0.016266,0.45393,-0.46052,0.74074,0.48903,-0.78289,0.00238,0.62212,-0.6523,0.56969,0.49989,-0.66478,0.56716,0.48613,-0.73928,0.1247,0.66173,-0.66347,-0.5685,0.4864,-0.9487,-0.024445,0.31516,-0.87503,0.30207,0.37822,-0.97165,-0.15961,0.17438,-0.96716,-0.21107,-0.14139,-0.94018,-0.038972,-0.33839,-0.87405,0.075777,-0.47984,-0.97006,0.17319,-0.17008,-0.99335,-0.060976,-0.097568,-0.53465,-0.61916,-0.57509,-0.81698,-0.38066,-0.43312,0.7243,-0.31654,-0.61251,0.36042,-0.70998,-0.60494,0.14948,-0.079012,-0.9856,0.3715,0.9284,-0.006592,-0.82067,0.40309,-0.40492,-0.77053,0.56685,0.29145,-0.6961,0.69997,-0.15943,0.53615,0.80444,-0.25568,-0.71432,0.42113,-0.55885,0.68038,0.37263,-0.63103,-0.098331,-0.26985,-0.95785,0.62477,-0.14438,-0.76733,-0.91827,0.27262,-0.28709,-0.99493,0.080355,-0.060244,-0.96347,-0.26743,0.012543,-0.95416,-0.24628,-0.1699,-0.98541,-0.14014,0.096225,-0.95608,-0.23435,0.17594,-0.89843,-0.2617,0.35249,-0.72689,-0.20826,0.65438,-0.61708,-0.58513,0.52611,-0.66775,-0.11118,0.73598,-0.81835,-0.15821,0.55248,-0.91595,-0.25086,0.31312,-0.8814,-0.35966,0.30613,-0.71639,-0.59432,0.3654,-0.68944,-0.64071,0.33778,-0.92892,0.25806,0.26545,-0.84002,-0.50636,0.19477,-0.87713,-0.21296,0.4304,-0.61272,-0.10681,0.78301,-0.25086,-0.20209,0.94668,0.24763,-0.38636,0.88845,0.28468,0.064058,0.95645,-0.32524,0.22987,0.91723,-0.23783,-0.053835,0.96979,0.14368,-0.15085,0.97803,0.063509,-0.17518,0.98245,-0.41334,-0.003143,0.91055,-0.14884,0.29109,0.94504,-0.31584,0.56459,0.76253,-0.29951,0.56163,0.77126,-0.075991,-0.037599,0.99637,-0.32142,-0.57366,0.75338,-0.46004,0.12049,0.87967,-0.34861,0.73904,0.5764,-0.027253,0.24448,0.96924,-0.3715,-0.58879,0.71779,-0.22443,-0.026307,0.97412,-0.55385,-0.11289,0.82491,-0.46217,-0.21226,0.86099,-0.12882,-0.27332,0.95325,-0.34022,-0.16541,0.92566,-0.17237,-0.64846,0.74145,-0.19172,-0.60219,0.77496,0.00531,-0.51906,0.8547,-0.2681,-0.16489,0.94916,-0.35423,0.19654,0.91424,-0.20863,-0.22303,0.95221,-0.58974,0.27055,0.76089,-0.79708,0.20325,0.56862,-0.85864,-0.15598,0.48823,-0.95566,0.07297,0.28526,-0.89572,0.35072,0.27323,-0.90295,0.36213,0.23133,-0.75921,0.30241,0.57625,-0.579,0.32402,0.74816,-0.56911,0.36592,0.73632,-0.71542,0.39149,0.57866,-0.68578,0.58055,0.43883,-0.4767,0.62032,0.62282,-0.38026,0.38643,0.84027,-0.36894,0.29649,0.88086,-0.041139,0.33775,0.94031,0.001465,0.34843,0.93732,-0.2483,0.5739,0.78036,-0.061495,0.86325,0.50096,-0.26743,0.8938,0.36,0.076571,0.99393,-0.078829,-0.4547,0.86923,0.19398,-0.23795,0.92605,-0.29286,0.073519,0.73702,-0.67183,-0.42283,0.59365,-0.68465,0.39808,0.77221,-0.49513,0.64757,0.72842,-0.22367,0.35911,0.91702,0.17335,0.31346,0.74746,0.58568,0.19062,0.55669,0.80853,0.50618,0.25111,0.82504,0.30119,0.060793,0.9516,-0.043458,0.059206,0.99728,-0.089846,-0.37156,0.92404,-0.086215,-0.26334,0.96081,0.056825,-0.24961,0.96667,0.14301,-0.15714,0.97714,0.21641,-0.28519,0.93371,0.55538,-0.061525,0.82928,0.39149,-0.26655,0.8807,0.36766,-0.23118,0.90075,0.40718,-0.071383,0.91055,0.19227,0.015809,0.9812,0.40776,-0.19153,0.89276,0.54741,-0.32994,0.76904,0.58797,-0.47383,0.65554,0.5689,-0.16526,0.8056,0.67867,0.052339,0.73254,0.59923,0.38163,0.70373,0.53969,0.38316,0.7496,0.63759,0.41603,0.64833,0.75628,0.22987,0.61251,0.81668,0.085482,0.5707,0.95245,0.15635,0.26142,0.7777,0.57558,0.25269,0.52535,0.73653,0.42601,0.87268,-0.13495,0.46925,0.91824,-0.09064,-0.38548,-0.066164,0.935,-0.34837,0.41243,-0.31187,-0.85592,0.13309,0.81051,-0.57036,0.33656,0.68438,0.64675,0.72317,0.39952,0.56334,0.45399,0.37602,-0.80773,0.94784,-0.28568,-0.14124,0.61104,-0.40226,0.68172,0.33433,-0.080996,0.93893,-0.085116,0.55648,0.82647,0.40339,0.15247,0.90222,0.53334,-0.10593,0.83923,0.49452,-0.70406,0.5096,0.48592,-0.71191,-0.50697,0.6758,-0.63753,0.36985,0.58992,-0.1439,-0.79449,-0.48152,0.17795,-0.85815,-0.25446,-0.2132,-0.94327,-0.66921,-0.11167,-0.73461,-0.7499,0.10913,-0.65246,-0.77309,0.25294,-0.58162,-0.7756,0.43739,-0.45509,-0.8507,0.40419,-0.33598,-0.81997,0.57201,0.019562,-0.62999,0.76177,-0.15095,-0.52669,0.75243,-0.39543,0.19962,-0.47319,0.85803,-0.79318,-0.58232,0.17801,-0.52327,-0.53896,0.66002,0.008759,-0.59438,0.8041,-0.28257,-0.058901,0.95743,-0.61467,0.029603,0.7882,-0.86114,-0.050172,0.50581,-0.86044,-0.10324,0.49895,-0.53575,-0.50502,0.67666,-0.27705,-0.11203,0.95428,-0.18043,-0.59267,0.78497,-0.49312,-0.61022,0.62001,-0.61211,-0.11716,0.78201,-0.84838,-0.17969,0.49788,-0.72866,-0.58443,0.35697,-0.89209,-0.37861,0.24653,-0.95267,0.202,0.22709,-0.55593,0.77902,0.28983,-0.30262,0.95273,-0.02646,-0.41865,0.88284,0.21281,-0.67351,-0.12333,0.72878,-0.56758,0.23487,0.78909,-0.83151,0.44408,0.33369,0.23966,0.64803,0.72289,-0.3834,0.63515,0.67046,-0.4279,-0.305,0.85076,0.013428,0.97354,0.228,0.789,0.61428,-0.010224,0.079897,0.95276,0.29292,0.74694,0.65581,-0.10929,0.86697,-0.41975,-0.26853,0.88446,0.18876,-0.42668,0.71905,0.69463,0.020966,0.8789,0.23689,-0.41398,0.4937,0.86947,0.015412,0.49296,0.80895,-0.3202,-0.12858,0.98991,0.059587,-0.12858,0.98991,0.059588,-0.12858,0.98991,0.059587,0.45003,0.45558,-0.76803,0.78948,0.1391,-0.59777,0.92807,-0.20188,-0.31288,0.49355,-0.79632,-0.34962,0.030881,-0.99945,-0.012282,0.030886,-0.99945,-0.012269,0.030885,-0.99945,-0.012268,0.030886,-0.99945,-0.012268,-0.63897,-0.73086,0.23978,-0.51079,-0.81991,0.25846,-0.79873,0.43138,0.41939,-0.66057,0.56816,0.49071,0.32276,-0.71715,0.61763,0.78607,0.33644,0.51851,0.92346,-0.32862,0.19794,0.46928,-0.87954,-0.078341,0.12519,0.91113,0.39256,0.042817,0.89862,0.43657,-0.12857,0.9899,0.059572,-0.65624,0.65129,0.38096,-0.67574,0.72829,0.11362,-0.12858,0.98991,0.059588,-0.20331,0.8417,-0.50014,-0.6852,0.49046,-0.53841,-0.28794,0.13803,-0.94763,0.35649,0.1344,-0.92456,0.74859,0.087008,-0.65728,0.58361,-0.68612,-0.43428,0.40986,-0.56307,-0.71758,0.030893,-0.99945,-0.012273,0.030894,-0.99945,-0.012273,0.31505,-0.001913,0.94907,0.31505,-0.001912,0.94907,-0.08794,-0.92772,-0.36277,-0.049104,-0.96701,-0.24989,-0.6856,-0.71807,0.11945,-0.88748,-0.2487,0.38795,0.030885,-0.99942,-0.012268,0.030889,-0.99945,-0.01226,-0.95859,0.10349,0.26524,-0.69665,0.52278,0.49126,-0.91769,0.10389,0.3834,-0.9686,0.14011,0.20524,-0.97442,0.046144,0.21989,-0.92654,0.080508,-0.36741,-0.74078,-0.52236,-0.42235,-0.65133,-0.73513,0.18784,-0.36338,0.068728,-0.92907,-0.15326,-0.55934,-0.81463,0.2096,0.079501,-0.97452,-0.86621,0.17338,-0.46861,-0.91859,-0.033212,0.39381,0.31505,-0.001912,0.94907,0.83981,0.032596,-0.5419,-0.40724,0.64428,0.6473,-0.36326,-0.81307,0.45485,0.24155,-0.28925,0.92624,-0.88815,0.31675,0.33287,-0.93548,-0.35328,-0.002899,-0.001317,-0.99996,-0.008362,-0.41804,-0.89258,-0.16886,-0.7839,0.59206,-0.18683,-0.087924,0.97379,0.20966,-0.1663,0.95144,0.25889,-0.72253,0.63433,-0.27485,-0.23377,0.90667,0.35105,-0.72344,0.67745,-0.13282,-0.14856,0.89865,0.4127,-0.4966,0.86297,-0.092837,0.10404,0.99365,0.04239,0.10406,0.99367,0.042409,0.10406,0.99367,0.042408,-0.31117,0.42244,-0.85128,0.27439,0.83517,-0.47658,-0.16044,0.11258,-0.98059,0.47408,0.14756,-0.86801,0.73687,0.53545,-0.41261,0.61067,0.76717,0.19608,0.56349,0.66988,0.48341,0.56441,0.53456,0.62899,0.67751,0.45525,0.57765,0.52367,0.58846,0.61599,0.21253,0.64849,0.73092,0.46406,-0.80425,0.37117,0.59087,-0.71175,0.37974,0.66207,-0.69823,0.2722,0.87548,0.13126,0.46507,0.78872,-0.22221,0.57314,0.8114,0.12055,0.57189,0.90222,0.07419,0.42479,0.89993,0.17972,0.39726,0.93231,0.22395,-0.28388,0.55385,0.074709,-0.82925,0.98166,0.10462,-0.15931,0.828,-0.5034,-0.24686,0.34043,-0.55843,-0.75643,-0.001321,-0.99996,-0.008369,-0.001322,-0.99996,-0.008369,0.61431,-0.7159,0.33174,0.81219,-0.005942,0.58336,-0.51273,-0.006499,0.85853,-0.51273,-0.0065,0.85853,-0.70326,0.006864,-0.7109,-0.59069,0.063295,-0.80438,-0.45766,-0.704,-0.54305,-0.83279,-0.22898,-0.50398,-0.23005,-0.57738,-0.78335,0.00412,0.069369,-0.99756,-0.65313,0.10154,-0.75039,-0.77831,0.22059,-0.58782,-0.77584,0.16224,-0.60967,-0.38521,-0.81127,-0.4398,0.12729,-0.96637,-0.22343,-0.001312,-0.99994,-0.008362,-0.001319,-0.99996,-0.00836,-0.001318,-0.99996,-0.008362,-0.77706,-0.44487,-0.4452,-0.001309,-0.99996,-0.008376,-0.43483,0.79174,-0.42894,0.1886,-0.9265,-0.32562,0.1886,-0.9265,-0.32562,0.71166,0.34639,-0.61116,0.755,0.40513,-0.51555,0.90307,0.28556,-0.32075,0.66262,0.34401,-0.66524,0.57137,0.40281,-0.71499,0.48085,0.32954,-0.81249,0.55269,0.29756,-0.77844,0.67528,0.3564,-0.64571,0.84951,0.31407,-0.42384,0.9389,0.31971,-0.12726,0.9664,0.19974,-0.16175,0.92892,0.19993,-0.31156,0.91855,0.32972,-0.21802,0.97775,0.19312,-0.081668,0.92886,0.29444,0.22468,0.90634,0.15818,0.39177,0.8236,0.25663,0.50572,0.69048,0.012879,0.7232,0.59966,-0.059969,0.79797,0.37651,-0.15519,0.9133,0.33006,-0.10123,0.93851,0.51268,-0.043214,0.85748,0.25837,0.03885,0.96524,0.24937,0.054506,0.96686,0.19407,0.20347,0.95962,0.17432,0.21857,0.96011,0.14939,0.28764,0.94598,0.87817,0.096255,0.46849,0.97803,0.2046,-0.039705,0.85858,0.4872,-0.15943,0.75469,0.64794,-0.10285,0.64833,0.75906,-0.058718,0.65072,0.75591,-0.071505,0.67864,0.72781,-0.098483,0.89932,0.43397,0.053407,0.7705,0.58864,-0.24451,0.51729,0.71169,-0.47526,0.41566,0.61067,-0.67397,0.39265,0.6592,-0.64126,0.74755,0.17502,0.64067,0.77969,0.2266,0.58367,0.7474,0.39879,0.5313,0.76907,0.40959,0.49062,0.65789,0.57665,0.48436,0.93387,0.34916,0.077059,0.86126,0.4843,-0.15384,0.83276,0.39857,-0.3842,0.39805,0.5006,-0.7687,0.34892,0.49898,-0.79324,0.31871,0.68197,-0.65825,-0.5454,0.59365,-0.59169,-0.99688,0.022597,-0.07566,-0.84802,0.32331,-0.41984,-0.99678,0.022682,-0.076893,-0.56249,0.66115,-0.49645,0.64821,0.68044,-0.34172,0.73071,0.65624,-0.18809,0.71145,0.68194,-0.16959,0.8815,0.47124,0.029511,0.51308,0.31846,-0.79705,0.56688,0.37736,-0.73226,0.42354,0.30631,-0.85247,-0.024079,0.60631,-0.79482,-0.33332,0.57738,-0.74532,-0.44145,0.83987,-0.31571,0.2494,0.44993,-0.85751,0.66829,0.10733,-0.73608,0.32212,0.53673,-0.77981,-0.20695,0.77346,-0.59905,0.34129,0.56484,-0.75127,0.010895,0.33006,-0.94388,0.079073,0.3556,-0.93127,0.32469,0.32966,-0.8865,0.33039,0.37864,-0.86453,0.2418,0.30873,-0.91989,0.16501,0.27305,-0.94772,0.052248,0.1822,-0.98184,-0.1117,0.36204,-0.92541,0.20402,0.39174,-0.89715,-0.12165,0.63503,-0.76281,-0.11252,0.65041,-0.75118,-0.39766,0.72063,-0.56789,-0.30808,0.47722,-0.82299,-0.27506,0.14261,-0.95077,0.052644,0.27885,-0.95886,-0.004913,0.34132,-0.93991,-0.2606,0.23423,-0.93658,-0.52687,0.17801,-0.83105,-0.2328,0.53191,-0.81414,-0.28031,0.77673,-0.56398,-0.31587,0.81069,-0.4929,-0.31196,0.82,-0.47981,-0.62477,0.19541,-0.75594,-0.46083,0.31465,-0.8298,-0.68026,0.26701,-0.68258,-0.8479,0.089297,-0.52254,-0.8767,0.019593,-0.48057,-0.83377,0.023438,-0.55159,-0.81188,0.45088,-0.37083,-0.6299,0.59404,-0.50029,-0.62078,0.68773,-0.37629,-0.62227,0.7391,-0.25773,-0.65267,0.64821,-0.39213,-0.67873,0.72011,-0.14383,-0.98135,0.19083,0.022523,-0.92083,-0.038209,-0.38804,-0.9747,-0.092898,-0.20316,0.82211,0.067415,-0.56529,0.87848,0.21281,-0.42775,0.96707,0.035218,-0.25196,0.6928,0.1446,-0.70647,0.59212,0.29041,-0.75167,0.44505,0.089877,-0.89096,0.52513,0.28446,-0.80203,0.81912,0.12729,-0.55928,0.94931,-0.22611,-0.21824,0.96399,0.13922,-0.22642,0.97281,0.15238,-0.17423,0.98303,0.05649,-0.17432,0.99557,0.081454,-0.046419,0.99847,0.054201,0.009522,0.93466,0.15632,0.31925,0.93536,0.006897,0.35356,0.67727,-0.034791,0.73489,0.72982,-0.021912,0.68328,0.55507,-0.163,0.81564,0.37889,-0.11463,0.9183,0.53285,-0.045747,0.84493,0.19587,-0.16327,0.96692,0.062014,-0.21622,0.97436,0.18235,0.001556,0.98321,0.24165,0.23853,0.94058,0.091403,0.51085,0.85476,0.89624,0.049318,0.44081,0.82174,0.19813,0.53429,0.84259,0.30598,0.4431,0.73589,0.56249,0.37687,0.76022,0.56667,0.31764,0.66518,0.69759,0.26618,0.95132,0.30619,0.034089,0.79437,0.56218,-0.23002,0.78897,0.51878,-0.32917,0.85812,0.36421,-0.36183,0.84719,0.38133,-0.36991,0.83358,0.41298,-0.3668,0.8717,0.46232,0.16242,0.88885,0.44728,0.099033,0.8349,0.54848,0.045534,0.83593,0.54878,-0.004364,0.71386,0.70028,0.001801,0.87259,0.41038,-0.26484,0.79641,0.37779,-0.47221,0.91388,0.022858,-0.40529,0.70791,0.11313,-0.69713,0.88012,0.17859,-0.43983,0.93722,0.2794,-0.20856,0.89401,0.063723,-0.44346,0.7524,0.32951,-0.57033,0.50072,0.42787,-0.75243,0.45747,0.18577,-0.86959,0.76177,0.12146,-0.63631,0.96222,0.091464,-0.25636,0.76721,-0.004273,-0.64138,0.32307,0.38087,-0.86633,0.12906,0.64013,-0.75732,0.21821,0.48491,-0.84686,0.1305,0.33445,-0.93332,0.098666,0.3346,-0.93716,0.097598,0.40071,-0.91098,0.091983,0.42357,-0.90115,0.25947,0.24732,-0.93353,0.046937,0.27195,-0.96115,0.047243,0.28864,-0.95624,-0.19123,0.30735,-0.93216,0.047182,0.26093,-0.96417,0.037233,0.38429,-0.92242,0.30454,0.051393,-0.95108,0.32032,0.23197,-0.91846,0.26582,0.089328,-0.95987,0.24564,0.058473,-0.96759,0.045808,0.14838,-0.98785,-0.066103,0.098605,-0.99292,-0.19309,0.20484,-0.95953,-0.40019,0.05063,-0.91501,-0.49571,0.42711,-0.75619,-0.19706,0.3477,-0.91665,0.099002,0.22471,-0.96936,-0.15534,0.23588,-0.95926,-0.15241,0.28163,-0.94732,-0.38221,0.23731,-0.89306,-0.29719,0.60607,-0.73779,-0.34678,0.30113,-0.88827,-0.19596,0.62938,-0.75195,-0.27458,0.60451,-0.74777,-0.30168,0.63533,-0.71084,-0.29838,0.64379,-0.70461,-0.43416,0.093112,-0.89599,-0.57854,0.071017,-0.81253,-0.67699,0.16752,-0.71664,-0.76266,0.052614,-0.64461,-0.66671,0.28639,-0.68807,-0.85678,0.36836,-0.36082,-0.38774,0.44829,-0.80538,-0.85064,0.14927,-0.50404,-0.27924,0.32633,-0.90304,-0.93551,-0.047151,-0.35008,-0.83917,-0.28434,0.46358,-0.87909,0.46309,0.11271,-0.72802,0.054018,-0.6834,-0.83477,-0.041597,-0.54897,-0.81732,-0.054964,-0.57353,0.85794,-0.45588,-0.23676,0.90475,-0.31553,0.28602,0.7289,-0.56063,0.39287,-0.99979,-0.01764,-0.008881,-0.97452,0.21992,0.043519,-0.94137,0.32987,0.070376,-0.82604,0.56178,0.044862,-0.13684,0.21433,-0.9671,-0.19855,0.023011,-0.9798,-0.44926,0.050325,-0.89196,0.21674,0.0665,-0.97394,0.24006,0.23295,-0.94238,0.43806,0.084017,-0.89499,0.49516,0.29023,-0.81887,0.73995,0.10489,-0.66442,0.60881,0.1045,-0.78637,0.84851,0.05768,-0.52602,0.85479,0.22456,-0.46785,0.74041,0.30577,-0.59856,0.97525,0.19761,-0.098941,0.98145,-0.03531,-0.18842,0.98321,0.03473,0.17896,0.9252,0.058565,0.37486,0.80047,-0.044984,0.59764,0.6899,-0.18406,0.70006,0.34788,-0.37666,0.85852,0.39964,-0.26072,0.87878,0.9227,-0.0618,0.38047,0.73064,0.098544,0.67559,0.30613,-0.32472,0.89486,0.65221,0.040132,0.75695,0.79913,0.43455,0.41533,0.98706,0.15912,-0.018464,0.98602,0.11499,0.1203,0.95154,0.20768,-0.22666,0.82195,0.15329,-0.54848,0.71923,0.24522,-0.65004,0.65963,0.50029,-0.56084,0.74432,0.45769,-0.48625,0.85742,0.51329,-0.036653,0.87185,0.47279,0.12763,0.82635,0.56239,0.028382,0.66369,0.74349,0.081912,0.74117,0.64858,0.17316,0.65096,0.75344,-0.092441,0.61879,0.72021,-0.31367,0.494,0.86917,-0.021119,0.68279,0.59044,-0.43031,0.68148,0.64592,-0.34397,0.60628,0.69561,-0.38533,0.44166,0.54302,-0.71413,0.37022,0.19227,-0.90881,0.3112,0.63295,-0.70885,0.28092,0.73165,-0.62105,0.26282,0.70247,-0.66137,0.27607,0.66814,-0.69088,0.12326,0.51173,-0.85025,0.000275,0.69143,-0.7224,-0.063753,0.65209,-0.75543,-0.10886,0.77187,-0.62633,0.008972,0.59639,-0.80261,-0.041932,0.76025,-0.64824,0.023896,0.46474,-0.8851,0.19269,0.23905,-0.95166,0.10047,0.13965,-0.98508,-0.003815,0.15815,-0.9874,0.042451,0.6534,-0.75579,-0.056398,0.7257,-0.68566,-0.25886,0.7608,-0.59508,-0.23566,0.87466,-0.42357,-0.53011,0.6624,-0.52928,-0.43895,0.57802,-0.68786,-0.1301,-0.26743,-0.95474,-0.4825,0.17026,-0.85916,-0.45683,0.57341,-0.68004,-0.41524,0.75158,-0.5125,-0.76272,0.007538,-0.64666,-0.97055,0.081942,-0.22645,-0.86319,0.38493,-0.32661,-0.99677,0.037019,-0.070956,-0.94104,-0.27915,0.19101,-0.99338,-0.081332,0.080813,-0.79934,0.32594,-0.50472,-0.18574,0.50954,-0.84014,-0.58675,0.081362,-0.80563,-0.17905,0.82705,0.53279,0.596,0.76699,-0.23768,0.579,0.75576,-0.30586,0.72457,0.5822,-0.36876,0.56832,0.63552,-0.52257,0.48054,0.85156,-0.20945,0.73498,0.41755,-0.53423,0.85162,0.37352,-0.36772,0.94934,0.30787,-0.062716,0.79016,0.61171,-0.037355,0.55541,0.83105,0.029054,0.032105,0.99713,0.068239,-0.021851,0.99945,0.024232,0.34031,0.86331,-0.37263,0.44264,0.66832,-0.5978,0.49474,0.44514,-0.74636,0.72274,0.40385,-0.56078,0.73168,0.30531,-0.60942,0.89196,0.32466,-0.31459,0.97858,0.19578,-0.063326,0.94272,0.28053,0.18043,0.80334,0.54546,0.2389,0.49474,0.85174,0.17243,0.093387,0.98428,0.14979,0.10233,0.98743,0.12033,0.032716,0.9657,0.25751,0.19742,0.97992,-0.027314,0.29524,0.84594,-0.44401,0.38484,0.65978,-0.64538,0.47682,0.39253,-0.78646,0.48695,0.23219,-0.84198,0.67556,0.30888,-0.66945,0.9321,0.30567,-0.19425,0.67,0.50645,-0.54271,0.2599,0.45506,-0.85165,0.62126,0.61766,-0.48213,0.57744,0.26289,-0.77291,0.6281,0.35697,-0.69137,0.65703,0.45485,-0.60112,0.58324,0.60585,-0.54103,0.15714,0.29457,-0.94259,0.48882,0.41191,-0.76897,0.041383,0.39702,-0.91687,0.044404,0.48738,-0.87204,-0.36549,0.25651,-0.89474,-0.12213,0.26356,-0.95685,-0.063662,0.42427,-0.90329,0.024689,0.68197,-0.73095,0.11145,0.87497,-0.47111,-0.11301,0.69768,-0.70739,-0.19147,0.46352,-0.86514,-0.20844,0.39647,-0.89404,-0.29612,0.21159,-0.93139,0.21204,0.41984,-0.88244,-0.26936,0.36677,-0.89044,-0.28279,0.52812,-0.80065,-0.65941,0.10736,-0.74404,-0.45299,0.14115,-0.88025,-0.52763,0.3487,-0.77459,-0.28272,0.64879,-0.70647,-0.10385,0.86261,-0.49507,-0.36656,0.62999,-0.68462,-0.36995,0.35273,-0.85946,-0.33311,0.25846,-0.90673,-0.43236,0.2143,-0.87585,-0.4799,0.28092,-0.83111,-0.46968,0.42921,-0.77145,-0.67608,0.16953,-0.71703,-0.583,0.32182,-0.74599,-0.35099,0.49928,-0.79214,-0.66302,0.39757,-0.63427,-0.86965,0.038026,-0.49214,-0.95419,0.0159,-0.29875,-0.82504,0.29533,-0.4817,-0.84014,0.30161,-0.4507,-0.73946,0.55641,-0.37889,-0.73357,0.54289,-0.40876,-0.87051,0.39808,-0.28935,-0.7774,0.43941,-0.45003,-0.85873,0.44942,-0.2461,-0.7839,0.59029,-0.19245,-0.81808,0.31532,-0.48091,-0.90451,0.41932,0.077364,-0.90326,0.4275,0.036256,-0.87979,0.47182,0.057619,-0.69259,0.54286,-0.47493,-0.7839,0.25071,-0.56795,-0.81384,0.1073,-0.57106,-0.93777,0.11496,-0.32762,-0.94556,0.017609,-0.3249,-0.96423,0.044649,-0.26121,-0.92892,-0.070284,-0.36347,-0.97903,0.13639,-0.15119,-0.97958,0.1218,-0.15979,-0.94281,0.3206,0.091128,-0.98141,0.18903,-0.032319,-0.94259,0.10105,-0.31819,-0.83322,0.27238,-0.48112,-0.92227,0.18332,-0.34025,-0.9274,-0.007599,-0.37391,-0.97632,0.090701,-0.19636,-0.97855,0.18055,-0.098941,-0.98248,0.16175,-0.09241,-0.76614,0.54128,-0.34639,-0.87353,0.18726,-0.44926,-0.79571,0.021912,-0.60524,-0.97159,0.16684,-0.16779,-0.97049,0.15439,-0.18506,-0.97064,0.13123,-0.20151,-0.97259,0.1203,-0.19886,-0.93396,0.20393,-0.29341,-0.94388,0.028382,-0.32899,-0.84649,-0.176,-0.5024,-0.98737,0.061068,-0.14615,-0.96078,0.27256,-0.050569,-0.96078,0.26826,-0.070162,-0.99631,0.080447,-0.029267,-0.99557,-0.042787,-0.083407,-0.96344,0.10508,0.24638,-0.93503,0.24268,0.2584,-0.84658,0.50139,0.17841,-0.8554,0.51589,0.046022,-0.63265,0.73037,0.25742,-0.62062,0.70843,0.33601,-0.82656,0.4695,0.3104,-0.94272,0.33338,0.008667,-0.95859,0.28465,0.005524,-0.98596,0.16117,-0.042879,-0.62975,0.62465,0.46168,-0.80282,0.40907,0.4337,-0.84484,0.2349,0.48064,-0.85681,0.066897,0.51125,-0.84451,-0.061525,0.53194,-0.80114,-0.12964,0.58425,-0.79559,-0.082858,0.60012,-0.75503,0.63103,0.17801,-0.88995,0.41072,0.19806,-0.93335,0.27775,0.22736,-0.94235,0.2963,0.15537,-0.96295,0.23679,0.12897,-0.56026,0.67058,0.48619,-0.61754,0.2581,0.74297,-0.95041,0.26878,0.15629,-0.6083,-0.01062,0.7936,-0.7535,-0.11325,0.6476,-0.28694,-0.16852,0.94299,-0.54109,0.2295,0.80902,-0.14042,0.44578,0.88403,0.057772,0.79687,0.60134,-0.32102,0.84753,0.42259,0.031037,0.9686,0.24662,0.1789,0.96127,0.20951,0.030824,0.97983,0.19739,0.047975,0.90857,0.41493,0.14948,0.85351,0.49913,-0.006928,0.96628,0.25733,0.12687,0.92254,0.36436,0.016968,0.93069,0.36537,0.15644,0.92584,0.34401,0.088687,0.948,0.30564,0.30372,0.93115,0.20161,0.21662,0.96701,0.13385,0.36204,0.91119,0.19648,0.47218,0.85647,0.20847,0.16688,0.97986,-0.10959,0.027497,0.99194,-0.1236,-0.21741,0.89978,-0.37825,-0.34275,0.69659,-0.63027,-0.4229,0.83715,-0.34687,-0.49052,0.83169,-0.26002,-0.5504,0.82482,-0.12925,-0.70037,0.55742,-0.44578,-0.52568,0.83273,-0.17365,-0.71877,0.60457,-0.34327,-0.86779,0.48662,-0.1005,-0.85678,0.51195,0.061586,-0.57817,0.81399,0.055696,-0.53887,0.83688,-0.095798,-0.26511,0.9628,0.051698,-0.38423,0.92306,0.016724,-0.30293,0.95059,0.067751,-0.19248,0.97705,-0.090915,-0.23563,0.86679,0.43947,-0.29203,0.93408,0.2053,-0.32362,0.9212,0.21586,0.013825,0.99191,0.12604,0.44319,0.75411,0.4846,0.59725,0.74151,0.30564,0.81371,0.44694,0.37156,0.65828,0.447,0.60564,0.59206,0.40587,0.69622,0.62355,0.46358,0.62948,0.34474,0.77014,0.53667,0.033052,0.96814,0.24812,-0.045015,0.97281,0.22706,-0.022645,0.99188,0.1251,-0.11844,0.92868,0.35142,-0.14072,0.95291,0.26853,-0.22547,0.96771,0.11261,-0.33558,0.94198,0.004028,-0.28944,0.93259,0.21552,-0.26719,0.8995,0.34562,-0.18049,0.81155,0.55568,-0.18427,0.78411,0.59261,-0.10547,0.69921,0.70708,-0.28327,0.94195,0.18003,-0.09415,0.91028,0.40312,-0.001679,0.84063,0.54155,0.10367,0.68685,0.71932,0.10184,0.65804,0.74603,0.17957,0.56359,0.80627,0.018921,0.76632,0.64214,-0.000671,0.8088,0.58803,-0.33961,0.79934,0.49568,-0.72262,0.56969,0.39146,-0.86123,0.41984,0.28626,-0.94342,0.31883,0.091037,-0.92178,0.29224,0.25468,-0.95389,0.29411,-0.059816,-0.32862,0.29725,0.89645,-0.28364,-0.02942,0.95846,-0.47456,-0.20902,0.85501,-0.011017,-0.011719,0.99985,0.14945,0.16898,0.97421,0.32209,0.3343,0.88568,-0.40996,0.62859,0.66088,-0.10242,0.48061,0.87091,-0.10269,0.26301,0.95929,-0.14588,0.10099,0.9841,-0.16654,-0.017335,0.98587,0.18299,0.51885,0.83502,-0.005982,0.83636,0.54814,0.38917,0.73693,0.55266,0.027375,0.74642,0.66488,0.2649,0.81078,0.52193,0.35987,0.83837,0.40937,0.70791,0.47841,0.51958,0.53414,0.46254,0.7076,0.22907,0.52602,0.81903,0.45354,0.37867,0.80676,0.2516,0.2118,0.94433,-0.20734,0.028993,0.97781,0.40321,-0.080142,0.91156,0.28123,-0.30909,0.90848,0.77248,-0.20301,0.60167,0.54131,0.11454,0.83297,0.35939,0.21992,0.90689,0.31312,0.13993,0.93933,0.29099,0.13614,0.94696,0.30204,0.16306,0.93924,0.67717,0.17405,0.71493,0.8366,0.045839,0.54585,0.76281,-0.11264,0.63671,0.6321,-0.24143,0.73629,0.66372,-0.002411,0.74795,0.51643,0.24796,0.81961,0.70791,0.30622,0.63643,0.39988,0.19043,0.89654,0.26057,0.20286,0.94388,0.26926,0.28623,0.91952,0.26997,0.29698,0.91589,0.27412,0.32893,0.90368,0.63439,0.34419,0.6921,0.66573,0.37205,0.64678,0.53313,0.43126,0.72781,0.5168,0.60732,0.60335,0.77215,0.35075,0.5298,0.39302,0.53655,0.74673,0.31321,0.56844,0.76074,0.2469,0.68895,0.68145,0.88623,0.27073,0.37583,0.93521,0.12568,0.331,0.97806,0.2082,-0.007508,0.82388,0.38908,-0.41203,0.95105,0.3087,-0.014161,0.91903,0.067324,0.38832,0.92782,0.37291,-0.007172,0.92032,0.21775,0.32484,0.97406,0.14069,0.17713,0.96145,0.24696,0.1207,0.97092,0.23707,0.03296,0.88275,0.45384,0.12143,0.25776,0.29872,0.91885,0.25843,0.30662,0.91604,0.96756,0.24329,0.067721,0.87262,0.37379,-0.31431,0.62923,0.43599,-0.64339,0.79928,0.52461,-0.29307,0.69829,0.42,-0.57958,0.70925,0.38411,-0.59108,0.84747,0.34156,-0.40632,0.60717,0.34983,-0.71337,0.3087,0.42058,-0.85308,0.537,0.55437,-0.63579,0.87213,0.42491,-0.2425,0.57497,0.59771,-0.55867,0.17493,0.54723,-0.81848,0.56008,0.46293,-0.687,0.75051,0.33393,-0.57024,0.7228,0.4391,-0.53356,0.86196,0.31056,-0.40065,0.91501,0.37736,-0.14249,0.98447,0.17539,-0.001465,0.90774,0.2823,0.31025,0.95929,0.20566,0.19346,0.87393,0.10398,0.47475,0.75835,0.091922,0.64531,0.71337,0.23405,0.66051,0.64742,0.064547,0.75939,0.71001,0.12915,0.69222,0.71737,0.1959,0.66854,0.65331,0.052705,0.75521,0.71313,0.10349,0.69332,0.62883,0.05826,0.77532,0.39793,0.083499,0.9136,0.39241,0.073916,0.91681,0.7037,0.082522,0.70568,0.70144,-0.1503,0.69665,0.69585,-0.15793,0.70058,0.68612,-0.17997,0.70486,0.66417,-0.056276,0.74542,0.82147,0.000305,0.57021,0.83847,0.021058,0.54451,0.83892,0.24021,0.4883,0.8356,0.37025,0.40577,0.83135,0.38194,0.40361,0.96689,0.25516,0.001831,0.93374,0.35685,-0.027161,0.89035,0.45332,0.041932,0.88211,0.46373,0.082614,0.80715,0.5797,0.11142,0.93875,0.23399,-0.25288,0.81213,0.43535,-0.38841,0.75729,0.61724,-0.21326,0.92743,0.37336,0.020173,0.63994,0.75204,-0.15766,0.62526,0.72884,-0.27891,0.6874,0.6212,-0.3762,0.43626,0.41746,-0.79708,0.2928,0.40263,-0.86724,0.24796,0.4044,-0.88031,0.39476,0.47114,-0.78875,0.75112,0.44346,-0.489,0.49916,0.47652,-0.72369,-0.014863,0.37501,-0.92688,0.43483,0.31446,-0.84381,0.78893,0.44801,-0.42048,0.097385,0.39924,-0.91165,0.070009,0.584,-0.80871,0.40721,0.56575,-0.71697,0.058748,0.781,-0.62172,-0.35456,0.55052,-0.75573,-0.16263,0.40831,-0.89822,-0.20942,0.28449,-0.93551,0.075625,0.39293,-0.91644,0.26704,0.4818,-0.83459,-0.049135,0.38624,-0.92108,-0.51167,0.30815,-0.80197,-0.44227,0.17933,-0.87875,-0.31675,0.22413,-0.92163,-0.31288,0.32069,-0.89398,-0.34342,0.47774,-0.80856,-0.36586,0.50157,-0.7839,-0.35273,0.64156,-0.68114,-0.63744,0.14185,-0.75732,-0.64287,0.078921,-0.76186,-0.70461,0.087008,-0.70418,-0.60155,0.30812,-0.73699,-0.55919,0.38798,-0.7326,-0.52934,0.49101,-0.69182,-0.78051,0.15079,-0.60665,-0.78799,0.28248,-0.54701,-0.86407,0.11573,-0.48985,-0.83645,-0.032655,-0.54701,-0.89532,0.044374,-0.44319,-0.90875,0.068392,-0.41163,-0.9274,-0.014435,-0.3737,-0.93979,-0.030915,-0.34031,-0.94653,-0.063814,-0.31617,-0.94858,-0.05475,-0.31169,-0.94589,-0.025666,-0.32337,-0.88836,0.004334,-0.45909,-0.89941,-0.050508,-0.4341,-0.85495,0.17988,-0.4865,-0.81866,0.23335,-0.5247,0.09653,-0.9267,-0.36314,-0.76614,-0.28788,0.57457,-0.76363,-0.51286,-0.39216,-0.044984,-0.30271,0.95199,0.65014,-0.68804,0.32234,0.59407,-0.19056,0.78149,0.85775,-0.50185,0.11118,0.20222,0.19352,0.95999,0.3994,-0.076479,0.91357,0.69732,-0.69954,-0.15604,0.2356,-0.62014,-0.74825,-0.38447,-0.44423,-0.8092,0.23502,-0.5974,-0.76672,-0.73437,-0.3123,-0.60259,-0.79638,-0.45036,-0.40361,-0.96542,0.25703,0.043367,-0.84289,0.29084,0.45265,-0.99411,0.10639,0.020356,-0.38234,0.36393,0.8493,-0.32173,0.33637,0.88504,-0.41642,0.57204,0.70663,-0.35575,0.77715,0.51906,-0.77731,0.62371,0.081942,-0.27479,0.72939,0.62645,-0.76095,0.63396,0.13788,-0.38502,0.51552,0.7655,-0.89297,0.39891,0.20844,-0.90484,0.1959,0.37794,-0.95328,-0.015015,-0.30168,-0.94757,0.15769,-0.27784,-0.90139,0.041566,-0.43092,-0.86871,-0.017365,-0.49498,-0.79073,-0.017457,-0.6119,-0.87963,0.058931,-0.47194,-0.34117,-0.17896,-0.92279,-0.13361,-0.21439,-0.96756,-0.72133,-0.021363,-0.69225,0.063082,-0.19257,-0.97925,0.39064,-0.2757,-0.87826,0.4673,-0.23261,-0.8529,0.76077,-0.29209,-0.57955,0.90957,-0.22791,-0.34739,0.98221,-0.12339,0.14142,0.94882,-0.090732,0.30247,0.77618,0.009583,0.63042,0.74365,0.10559,0.66018,0.30903,0.13895,0.94083,0.12626,0.24247,0.96188,-0.44877,0.17216,0.87689,-0.42821,0.27213,0.86172,-0.87991,0.1189,0.45998,-0.91491,-0.039583,-0.40169,-0.82437,-0.032655,-0.56508,0.34532,0.40446,0.84683,0.3404,0.5923,0.73025,0.2548,0.56587,0.78408,0.13138,0.33421,0.93329,0.70864,-0.10208,0.69814,-0.26298,0.25443,0.93063,-0.52632,0.26487,0.80795,-0.94086,-0.24265,-0.23633,-0.69774,-0.44704,-0.55968,-0.75109,-0.24735,-0.61208,-0.91684,-0.30369,-0.25907,-0.82855,-0.20661,-0.52037,-0.86227,-0.35041,-0.36561,-0.78948,-0.21671,-0.57421,-0.42106,-0.36876,-0.82867,-0.20316,-0.33131,-0.92135,0.3961,-0.23215,-0.88836,-0.10514,-0.21216,-0.97156,0.3581,-0.20435,-0.91101,0.24915,-0.26655,-0.93103,0.74395,-0.23142,-0.62685,0.8359,-0.10044,-0.53954,0.99054,-0.026337,-0.13459,-0.77325,-0.15204,-0.61556,-0.94858,-0.079989,-0.30622,-0.87295,0.12345,-0.47185,-0.83062,-0.10355,-0.5471,0.89453,0.13916,0.42476,0.84149,0.20432,0.50008,0.71484,0.13184,0.6867,0.73168,-0.042726,0.68026,0.056673,0.26661,0.96213,-0.37999,0.15958,0.9111,-0.91375,0.064333,0.40107,-0.53182,-0.21067,-0.82022,-0.992,0.03766,-0.1203,-0.11417,-0.22123,-0.9685,0.4337,-0.32704,-0.83959,-0.77682,0.040223,0.62841,-0.90664,0.26545,0.32786,-0.56288,-0.001129,-0.8265,-0.95743,0.23499,-0.16749,-0.091464,-0.17744,-0.97986,0.44584,-0.32859,-0.83257,-0.71661,0.061312,0.69475,-0.8732,0.30189,0.38252,-0.618,0.012879,-0.78604,-0.92071,0.35084,-0.17072,-0.18513,-0.07239,-0.98004,0.36088,-0.34312,-0.86718,-0.54753,-0.01883,0.83654,-0.80096,0.32508,0.50273,-0.58003,0.068667,-0.81167,-0.80694,0.57131,-0.14972,-0.056185,-0.040834,-0.99756,0.36299,-0.46339,-0.80837,0.48277,-0.36934,-0.79403,0.89871,-0.12604,-0.41996,0.91955,-0.37345,-0.12217,0.98938,-0.043733,0.13849,0.99744,0.031159,0.063967,0.89676,0.007263,0.44243,0.83218,-0.17341,0.52663,0.52632,-0.14643,0.83755,-0.46355,0.19593,0.8641,0.92105,-0.30158,-0.24625,0.44917,0.069369,0.89071,0.10691,0.096438,0.98956,-0.53456,0.17231,0.82736,-0.91015,0.19895,0.36332,-0.59481,-0.002075,-0.80383,-0.91403,0.38151,-0.13767,-0.098392,0.055788,-0.99356,0.42045,-0.24168,-0.87451,0.47566,-0.28623,-0.83172,0.9628,-0.2468,0.10978,0.46651,-0.14002,0.87335,-0.37434,0.13691,0.91711,-0.56298,0.17075,0.80862,-0.99402,-0.063265,0.088931,-0.51207,-0.58525,0.62865,0.030732,-0.6357,-0.77129,0.31684,-0.94815,0.023957,0.29328,-0.66115,0.69051,0.85815,-0.51073,0.051881,0.49092,-0.23566,-0.83871,0.89145,-0.38383,-0.24067,-0.65288,0.09714,-0.75118,0.11313,-0.16294,0.9801,-0.58721,0.25355,0.76867,-0.87442,0.39064,0.28764,-0.53447,0.1518,-0.83142,-0.74419,0.64599,-0.16974,0.001892,0.13593,-0.99069,0.42912,-0.30415,-0.85046,0.50212,-0.33549,-0.79702,0.8648,-0.42695,-0.26417,0.90555,-0.4236,0.022797,0.11048,0.000549,0.99387,-0.41762,0.17063,0.89242,-0.56267,0.26124,0.78429,-0.98071,0.19492,0.013764,-0.69744,-0.50243,0.51094,-0.072604,-0.57878,-0.81222,0.013031,-0.99683,-0.078402,0.037416,-0.807,0.58931,0.67382,-0.73888,0.002045,-0.012665,-0.3173,0.94821,0.45509,-0.34053,0.82272,0.803,-0.54412,-0.24308,0.48418,-0.33207,-0.80947,-0.49931,0.33,-0.80108,-0.45363,0.21274,0.86541,-0.55864,0.27186,0.78356,-0.82873,0.47874,0.28977,-0.47993,0.29304,-0.8269,-0.67449,0.71496,-0.184,-0.013337,0.25382,-0.96713,-0.4214,0.463,-0.77975,-0.15882,-0.4489,-0.87933,0.42836,-0.29307,-0.85473,0.34861,-0.25819,-0.90097,0.42433,-0.3246,-0.8453,0.84036,-0.44612,-0.30778,0.88107,-0.24198,0.40635,0.55443,-0.19657,0.80865,0.51088,-0.3787,0.77172,-0.43303,0.19578,0.87982,-0.46336,0.25953,0.84728,-0.68776,0.59911,0.40989,-0.27171,0.42229,-0.86474,0.41865,-0.4123,-0.80914,0.44612,-0.48408,-0.75274,0.76766,-0.60134,-0.22141,0.69262,-0.72118,0.011414,-0.064516,-0.12888,0.98953,-0.4474,0.26081,0.85543,-0.52596,0.33406,0.78213,-0.56847,0.80724,-0.15854,0.15061,0.09299,-0.98419,0.45012,-0.45476,-0.76849,0.59832,-0.77004,-0.22141,0.1908,-0.53468,0.82321,-0.2537,-0.21827,0.94232,-0.85284,-0.20988,0.47807,-0.86047,0.50334,-0.078768,-0.33479,0.46376,-0.82025,-0.10611,-0.4915,-0.86438,0.44673,-0.89438,0.022034,-0.19666,-0.76055,0.61873,-0.15879,-0.98724,-0.009735,0.051454,-0.056001,0.9971,-0.46257,0.19202,0.86554,-0.60277,0.3054,0.73714,-0.93109,0.35801,-0.069765,-0.81393,-0.37385,0.44462,-0.1207,-0.9881,-0.095065,-0.12647,-0.82577,0.54961,0.567,-0.82339,-0.021973,-0.1486,-0.33903,0.92895,0.34867,-0.44108,0.82693,0.734,-0.62432,-0.26728,0.85162,-0.52394,-0.014222,-0.21552,0.41969,0.88168,-0.077273,-0.92968,0.36006,0.57079,0.25834,0.77938,-0.75854,-0.35368,0.54723,-0.77917,0.31404,0.54244,-0.77148,-0.61898,0.14716,0.021851,-0.99014,-0.13828,-0.17817,-0.9505,-0.25449,-0.83541,-0.41923,0.35536,-0.57445,0.63155,0.52068,0.13074,0.87802,0.46037,-0.40425,0.66005,0.63314,0.18928,0.88021,0.43516,-0.27165,0.888,0.37095,0.23215,0.96496,0.12223,0.8891,0.40596,0.21134,0.94855,0.31404,-0.039949,0.1666,0.96954,-0.17939,0.73263,0.61531,-0.2909,0.92947,-0.36244,-0.068575,0.87048,-0.48476,0.085238,0.67742,-0.72301,-0.13517,0.69466,-0.70779,-0.12821,0.84884,0.43663,0.29795,0.79016,-0.55226,0.26569,-0.096622,0.99503,-0.023194,-0.82702,0.36824,0.42473,-0.46443,0.88494,0.03412,-0.86984,0.4358,0.23106,-0.47182,0.88104,-0.032929,-0.88525,0.44755,0.12644,-0.96463,0.16102,0.20863,-0.99991,-0.005158,-0.010071,-0.99268,-0.10343,0.062319,-0.78546,-0.53883,-0.30442,-0.77309,-0.57399,-0.26985,-0.23093,-0.85263,-0.46864,-0.25892,-0.90417,-0.33967,-0.85745,-0.51207,0.050203,-0.21549,-0.94018,-0.26374,-0.79708,-0.54778,0.25404,-0.66408,-0.71642,0.21378,-0.14084,-0.93371,-0.32905,-0.21195,-0.93304,-0.29063,-0.58605,-0.62459,0.51613,-0.34269,-0.84768,0.40489,-0.17277,-0.92053,-0.35032,0.36286,-0.88876,-0.27995,0.28004,-0.67693,0.68065,0.73989,0.3654,0.56481,0.77819,0.53255,-0.3328,0.26139,0.86172,0.43486,0.47945,0.79562,-0.37025,0.42637,-0.10111,-0.89886,0.23371,-0.40596,-0.88348,0.43562,-0.52095,-0.734,0.55983,-0.55733,-0.61312,0.6288,-0.62673,-0.46019,0.43046,-0.82312,-0.37031,0.58461,-0.76397,-0.27299,0.91485,-0.38508,-0.12119,0.9389,-0.33586,0.075014,0.81307,-0.49947,-0.29896,0.97711,-0.1883,-0.09888,0.87973,-0.26005,-0.39802,0.90774,-0.1966,-0.37052,0.84036,-0.33778,-0.42384,0.93426,-0.17606,-0.31004,0.83944,-0.32395,-0.43626,0.93612,-0.18885,-0.29661,0.97284,-0.12391,-0.19547,0.96268,-0.07889,-0.25886,0.82028,0.50706,0.2645,0.71087,0.35191,0.60894,0.33488,0.70495,0.62517,0.33576,0.44026,0.8327,-0.28318,0.63653,0.71734,-0.47313,0.49498,0.72875,-0.84976,0.30174,0.43223,-0.88949,0.25657,0.37803,-0.9874,-0.14344,0.066775,-0.99771,-0.016297,0.065249,-0.81686,-0.44292,-0.36946,-0.65767,-0.63799,-0.40046,-0.27866,-0.67367,-0.68444,-0.27006,-0.77816,-0.567,0.13321,-0.6621,-0.73745,0.25425,-0.7358,-0.62761,0.37995,-0.76852,-0.51476,0.17093,-0.85534,-0.48903,-0.3246,-0.83587,-0.44261,-0.69069,-0.68014,-0.24555,-0.98984,-0.13587,0.04178,-0.88305,0.39152,0.25864,-0.32862,0.90323,0.27598,0.17539,0.97165,-0.15848,0.30033,0.9462,0.1204,0.75747,0.56169,-0.33268,0.84478,0.49358,-0.20661,0.91348,-0.21802,-0.34349,0.83471,-0.5428,0.092563,0.99228,-0.11466,0.046815,0.37333,0.84503,0.38273,-0.22211,0.83776,0.49876,-0.84622,0.27287,0.45759,-0.92309,0.051515,0.38105,-0.91745,-0.079897,0.38972,-0.53746,0.42634,0.72753,-0.47255,0.40611,0.78213,-0.32597,0.4069,0.8533,-0.10889,0.30985,0.94452,0.1424,-0.09827,0.98489,0.23008,0.86465,0.44655,0.67858,0.69552,-0.23606,0.78924,0.61306,-0.035096,0.19608,0.83709,0.51067,0.22181,0.79766,0.56078,0.84039,0.52959,0.11518,0.33476,0.468,0.81783,-0.21601,-0.9031,-0.37111,0.60442,-0.58074,-0.54531,-0.15085,-0.87997,-0.45039,0.52959,-0.50221,-0.68358,-0.19053,-0.88726,-0.42003,-0.67443,-0.72027,0.16218,-0.60427,-0.62581,0.49312,-0.39088,-0.85659,0.3368,-0.12021,-0.85583,-0.50307,0.42021,-0.87118,-0.25382,0.2526,-0.71413,0.65279,0.71779,0.24097,0.65319,0.10053,-0.18006,0.97848,-0.133,0.23066,0.96387,-0.29426,0.3556,0.88708,-0.41053,0.43052,0.8038,-0.82867,-0.49174,0.26731,-0.49269,0.49977,0.71233,0.32185,0.83148,0.45277,0.33195,0.82446,0.45833,0.82644,0.53529,-0.17435,0.87017,0.48866,-0.063173,0.95093,-0.28968,-0.10868,0.5678,0.64126,0.5161,-0.27665,-0.89334,-0.35408,0.5374,-0.64031,-0.54875,-0.23676,-0.89587,-0.3759,0.46797,-0.56859,-0.6765,-0.26011,-0.9057,-0.33467,-0.67885,-0.70366,0.20972,-0.64473,-0.58513,0.49184,-0.5327,-0.77612,0.33735,-0.19388,-0.89868,-0.39341,0.28919,-0.9566,-0.034822,0.033235,-0.68633,0.72649,0.55983,0.21049,0.80139,-0.1511,-0.090701,0.98434,-0.28172,0.29557,0.91281,-0.34492,0.37684,0.85964,-0.42003,0.45619,0.78448,-0.84411,-0.45222,0.28791,-0.50584,0.53636,0.67556,0.31123,0.84994,0.42509,0.35328,0.82983,0.43187,0.81973,0.52608,-0.22636,0.88577,0.45671,-0.082461,0.89502,-0.41966,-0.15085,0.66564,0.59542,0.44984,-0.28193,-0.89117,-0.35533,-0.83694,-0.34031,0.42857,-0.6737,-0.6852,0.27677,-0.25175,-0.86694,-0.43013,-0.30558,-0.86447,-0.39909,-0.62017,-0.53041,0.57793,-0.56688,-0.75631,0.32646,-0.27018,-0.84329,-0.46455,0.24366,-0.95776,-0.15262,0.0253,-0.72533,0.68792,0.63466,0.17081,0.75365,-0.093905,-0.086306,0.99182,-0.18772,0.33302,0.92401,-0.21598,0.399,0.89111,-0.27531,0.50099,0.82046,-0.36753,0.61782,0.69509,0.3289,0.79968,0.5023,0.92258,0.38292,-0.047029,0.44594,-0.69768,-0.56066,0.39439,-0.54973,-0.73635,0.82998,0.52055,-0.20026,0.3361,0.80654,0.48631,0.34764,0.80734,0.47676,0.75662,0.58702,-0.28791,0.33958,-0.45177,-0.82495,0.29395,-0.38905,-0.87304,0.69765,0.62697,-0.3466,0.35432,0.80505,0.47572,0.94977,0.30662,-0.062105,0.64672,-0.24433,-0.7225,0.96902,-0.18583,0.16254,0.92144,-0.033815,-0.38694,-0.1984,-0.87771,-0.43614,0.42418,-0.49251,-0.75991,0.7452,0.58904,-0.31251,0.29237,0.85592,0.42647,0.28419,0.84884,0.44569,0.67922,0.63564,-0.36686,0.37739,-0.44301,-0.8132,0.69619,-0.2946,-0.65459,0.94366,0.33061,0.013276,0.46052,-0.40965,-0.78744,0.73565,0.60808,-0.29835,0.32328,0.8403,0.43516,0.3354,0.84408,0.41832,0.58736,0.70016,-0.4059,0.32221,-0.30409,-0.89648,0.55437,-0.10813,-0.82519,0.87664,0.4301,-0.21558], "colors": [], - "uvs": [[0.640670,0.530275,0.630557,0.534924,0.631820,0.538257,0.637860,0.527896,0.642922,0.506717,0.516116,0.018815,0.516878,0.015738,0.502577,0.011020,0.528663,0.016514,0.528663,0.019620,0.513075,0.038795,0.501865,0.014232,0.488634,0.008958,0.492504,0.006211,0.645468,0.506717,0.654573,0.536610,0.650532,0.566337,0.620774,0.546977,0.620774,0.541736,0.033936,0.018815,0.033174,0.015738,0.021389,0.016514,0.047475,0.011020,0.048187,0.014232,0.036977,0.038795,0.021389,0.019620,0.021389,0.039948,0.528663,0.039948,0.512760,0.041572,0.528663,0.043046,0.505389,0.066884,0.481066,0.058744,0.496061,0.035312,0.498586,0.032397,0.486375,0.021420,0.653424,0.506717,0.307083,0.040380,0.308825,0.070260,0.308820,0.040367,0.334638,0.075019,0.330357,0.040367,0.467408,0.029325,0.481673,0.022535,0.467438,0.033960,0.332384,0.040367,0.346385,0.040367,0.462997,0.061678,0.454992,0.033914,0.479446,0.060338,0.467172,0.099144,0.454814,0.099702,0.446549,0.063019,0.442457,0.100260,0.430100,0.064359,0.442546,0.033868,0.360385,0.040367,0.347888,0.075418,0.339526,0.104457,0.304745,0.101696,0.342998,0.139258,0.307570,0.142468,0.275026,0.139737,0.275026,0.101696,0.620774,0.566337,0.591686,0.566337,0.609729,0.538257,0.586975,0.536610,0.600879,0.530275,0.596080,0.506717,0.588125,0.506717,0.243349,0.040401,0.241232,0.040367,0.241227,0.070260,0.051466,0.032397,0.068379,0.022535,0.063677,0.021420,0.053991,0.035312,0.037292,0.041572,0.068986,0.058744,0.044663,0.066884,0.021389,0.043046,0.021389,0.069656,0.528663,0.069656,0.504744,0.070165,0.502865,0.099698,0.465189,0.134023,0.453493,0.132838,0.441796,0.131654,0.430100,0.130470,0.430100,0.100818,0.578039,0.098326,0.593411,0.098326,0.578039,0.077282,0.593411,0.122401,0.578039,0.122401,0.430100,0.033822,0.374386,0.040367,0.361137,0.075818,0.351146,0.104557,0.353461,0.138090,0.353845,0.167533,0.343575,0.170347,0.308837,0.173321,0.275026,0.171872,0.242483,0.142468,0.245954,0.101696,0.207054,0.139258,0.210526,0.104457,0.215414,0.075019,0.219695,0.040367,0.082644,0.029325,0.082614,0.033960,0.070606,0.060338,0.087055,0.061678,0.082880,0.099144,0.045308,0.070165,0.021389,0.073284,0.528663,0.073284,0.528663,0.098681,0.498271,0.135241,0.467202,0.165863,0.454834,0.164544,0.442467,0.163225,0.430100,0.161906,0.578039,0.057673,0.593411,0.057673,0.578039,0.036612,0.593411,0.077282,0.611196,0.098326,0.611196,0.122401,0.611196,0.144791,0.593411,0.144791,0.578039,0.144791,0.374386,0.076217,0.374386,0.104756,0.362766,0.104657,0.363924,0.136922,0.364116,0.164720,0.363159,0.178812,0.353032,0.181276,0.342905,0.183741,0.308893,0.187488,0.275026,0.187639,0.241215,0.173321,0.206477,0.170347,0.556870,0.622183,0.555701,0.653268,0.587680,0.655830,0.196207,0.167533,0.197020,0.181276,0.186893,0.178812,0.187851,0.192904,0.177867,0.190788,0.180467,0.232208,0.148499,0.188829,0.152314,0.232208,0.120465,0.189155,0.119747,0.232208,0.107738,0.232208,0.108401,0.190032,0.107993,0.176629,0.095777,0.177727,0.095218,0.164544,0.082850,0.165863,0.084863,0.134023,0.051781,0.135241,0.047187,0.099698,0.021389,0.098681,0.021389,0.135907,0.528663,0.135907,0.501369,0.167377,0.466490,0.178825,0.454275,0.177727,0.442059,0.176629,0.429843,0.175531,0.404427,0.161906,0.593411,0.036612,0.578039,0.004108,0.611196,0.057673,0.611196,0.036612,0.629763,0.057673,0.629763,0.077282,0.611196,0.077282,0.629763,0.098326,0.629763,0.122401,0.629763,0.144791,0.629763,0.165701,0.611196,0.165701,0.593411,0.165701,0.578039,0.165701,0.593411,0.185252,0.578039,0.185252,0.374386,0.135754,0.374386,0.161906,0.373286,0.176347,0.372185,0.190788,0.362201,0.192904,0.352218,0.195019,0.342234,0.197135,0.308948,0.201655,0.275026,0.203405,0.241104,0.201655,0.241159,0.187488,0.207148,0.183741,0.197834,0.195019,0.190111,0.232208,0.181544,0.279386,0.153167,0.279386,0.121415,0.279386,0.109176,0.279386,0.096937,0.279386,0.095729,0.232208,0.084698,0.279386,0.083719,0.232208,0.049312,0.232208,0.049215,0.279386,0.021389,0.232208,0.021389,0.279386,0.528663,0.232208,0.500837,0.279386,0.528663,0.279386,0.500740,0.232208,0.465354,0.279386,0.466333,0.232208,0.454323,0.232208,0.453715,0.190910,0.465779,0.191788,0.500042,0.193714,0.528663,0.195165,0.021389,0.195165,0.050010,0.193714,0.084273,0.191788,0.049346,0.180546,0.021389,0.181510,0.021389,0.167855,0.528663,0.167855,0.500706,0.180546,0.528663,0.181510,0.441651,0.190032,0.429587,0.189155,0.402990,0.175368,0.578039,0.236631,0.593411,0.206704,0.578039,0.206704,0.593411,0.236631,0.611196,0.236631,0.611196,0.206704,0.629763,0.236631,0.629763,0.206704,0.664468,0.236631,0.664468,0.206704,0.710904,0.236631,0.710904,0.206704,0.744670,0.236631,0.744670,0.206704,0.772503,0.236631,0.759916,0.036612,0.773537,0.004108,0.744670,0.004108,0.771967,0.036612,0.785828,0.036612,0.787625,0.057673,0.771308,0.057673,0.757911,0.057673,0.771213,0.077282,0.757644,0.077282,0.770986,0.098326,0.758540,0.098326,0.744670,0.077282,0.744670,0.098326,0.710904,0.077282,0.710904,0.057673,0.744670,0.057673,0.744670,0.036612,0.710904,0.004108,0.710904,0.036612,0.664468,0.004108,0.664468,0.036612,0.629763,0.004108,0.629763,0.036612,0.611196,0.004108,0.593411,0.004108,0.664468,0.057673,0.664468,0.077282,0.664468,0.098326,0.664468,0.122401,0.664468,0.144791,0.664468,0.165701,0.664468,0.185252,0.629763,0.185252,0.611196,0.185252,0.710904,0.185252,0.744670,0.185252,0.769841,0.206704,0.768282,0.185252,0.800728,0.206704,0.800728,0.236631,0.800728,0.036612,0.800728,0.004108,0.800728,0.057673,0.800728,0.077282,0.787570,0.077282,0.800728,0.098326,0.784899,0.098326,0.769679,0.122401,0.744670,0.122401,0.710904,0.098326,0.710904,0.122401,0.710904,0.144791,0.710904,0.165701,0.744670,0.165701,0.768194,0.165701,0.800728,0.185252,0.834866,0.206704,0.834866,0.236631,0.877873,0.236631,0.834866,0.004108,0.877873,0.036612,0.877873,0.004108,0.834866,0.036612,0.877873,0.057673,0.834866,0.057673,0.834866,0.077282,0.834866,0.098326,0.834866,0.121477,0.800728,0.122676,0.800728,0.144791,0.768916,0.144791,0.800728,0.165701,0.834866,0.185252,0.877873,0.206704,0.914315,0.236631,0.914315,0.036612,0.914315,0.004108,0.948307,0.036612,0.948307,0.057673,0.914315,0.057673,0.914315,0.077282,0.877873,0.077282,0.914315,0.098326,0.877873,0.098326,0.877873,0.121879,0.877873,0.144791,0.834866,0.144791,0.877873,0.165701,0.834866,0.165701,0.877873,0.185252,0.914315,0.206704,0.948307,0.236631,0.948307,0.004108,0.963121,0.036612,0.963121,0.004108,0.986738,0.036612,0.986738,0.057673,0.963121,0.057673,0.963121,0.077282,0.986738,0.077282,0.986738,0.098326,0.963121,0.098326,0.948307,0.077282,0.948307,0.098326,0.948307,0.122443,0.914315,0.122125,0.914315,0.144791,0.914315,0.165701,0.914315,0.185252,0.948307,0.206704,0.963121,0.236631,0.963121,0.206704,0.986738,0.236631,0.986738,0.004108,0.692389,0.852334,0.692391,0.830957,0.672401,0.835305,0.712380,0.835307,0.724733,0.846694,0.724733,0.860767,0.712378,0.872153,0.963121,0.144791,0.986738,0.165701,0.986738,0.144791,0.963121,0.165701,0.986738,0.185252,0.963121,0.185252,0.948307,0.165701,0.948307,0.144791,0.948307,0.185252,0.986738,0.206704,0.963121,0.122510,0.986738,0.122624,0.692388,0.876502,0.672399,0.872151,0.660045,0.860764,0.660047,0.846690,0.744670,0.144791,0.401553,0.188829,0.369585,0.232208,0.359941,0.232208,0.350296,0.232208,0.340652,0.232208,0.306314,0.232208,0.275026,0.232208,0.243738,0.232208,0.207818,0.197135,0.209400,0.232208,0.555568,0.680311,0.558346,0.716515,0.590347,0.716755,0.199756,0.232208,0.190696,0.279386,0.190797,0.304052,0.181386,0.304052,0.153311,0.304052,0.120921,0.304052,0.109355,0.304052,0.109263,0.318018,0.097770,0.318018,0.107420,0.352184,0.096562,0.352534,0.086277,0.318018,0.085705,0.352884,0.049196,0.318018,0.049390,0.304052,0.021389,0.304052,0.500662,0.304052,0.528663,0.304052,0.463828,0.304052,0.453115,0.279386,0.442314,0.232208,0.430305,0.232208,0.397738,0.232208,0.368508,0.279386,0.359356,0.279386,0.350203,0.279386,0.341050,0.279386,0.305381,0.279386,0.275026,0.279386,0.244671,0.279386,0.209002,0.279386,0.559682,0.763879,0.591931,0.764000,0.199849,0.279386,0.200209,0.304052,0.191245,0.318018,0.181694,0.318018,0.153667,0.318018,0.120756,0.318018,0.118277,0.351834,0.118046,0.369077,0.107392,0.370376,0.117655,0.388788,0.106421,0.391892,0.096737,0.371675,0.095186,0.394996,0.086083,0.372975,0.083952,0.398100,0.093566,0.416329,0.081970,0.417657,0.047627,0.402085,0.048557,0.377092,0.021389,0.375208,0.021389,0.352659,0.528663,0.352659,0.501495,0.377092,0.528663,0.375208,0.500850,0.354449,0.528663,0.318018,0.500856,0.318018,0.463775,0.318018,0.452263,0.304052,0.440876,0.279386,0.428637,0.279386,0.396885,0.279386,0.368666,0.304052,0.359255,0.304052,0.349843,0.304052,0.340432,0.304052,0.305677,0.304052,0.275026,0.304052,0.244375,0.304052,0.209620,0.304052,0.200796,0.318018,0.191280,0.353511,0.181027,0.352527,0.151942,0.352172,0.151305,0.369187,0.150506,0.388733,0.149680,0.413472,0.116757,0.413674,0.149227,0.441213,0.116226,0.441213,0.115696,0.481791,0.148775,0.481791,0.177636,0.481791,0.178017,0.441213,0.188522,0.481791,0.188776,0.441213,0.199408,0.481791,0.199535,0.441213,0.210294,0.481791,0.210294,0.441213,0.245412,0.441213,0.245717,0.481791,0.275026,0.441213,0.275026,0.481791,0.304335,0.481791,0.304640,0.441213,0.275026,0.424618,0.245108,0.422226,0.210294,0.418244,0.199662,0.416686,0.211317,0.398471,0.245739,0.406681,0.275026,0.407458,0.304313,0.406681,0.304944,0.422226,0.339758,0.441213,0.339758,0.481791,0.350517,0.441213,0.339758,0.418244,0.350390,0.416686,0.361276,0.441213,0.361022,0.415128,0.372035,0.441213,0.371654,0.413570,0.400373,0.413472,0.399546,0.388733,0.432397,0.388788,0.432006,0.369077,0.442660,0.370376,0.442632,0.352184,0.453490,0.352534,0.452282,0.318018,0.440697,0.304052,0.429131,0.304052,0.396741,0.304052,0.368358,0.318018,0.358807,0.318018,0.349256,0.318018,0.339704,0.318018,0.305596,0.318018,0.275026,0.318018,0.244456,0.318018,0.210348,0.318018,0.201534,0.354496,0.190466,0.371234,0.180241,0.369385,0.179191,0.388863,0.178398,0.413570,0.189030,0.415128,0.200608,0.395269,0.210917,0.374932,0.245051,0.381642,0.275026,0.382106,0.305001,0.381642,0.339136,0.374932,0.338265,0.355480,0.305738,0.359663,0.275026,0.359977,0.244314,0.359663,0.211787,0.355480,0.200691,0.373083,0.189899,0.392066,0.348518,0.354496,0.349361,0.373083,0.349444,0.395269,0.338735,0.398471,0.360153,0.392066,0.359586,0.371234,0.358772,0.353511,0.369025,0.352527,0.369811,0.369385,0.370861,0.388863,0.398747,0.369187,0.431775,0.351834,0.440789,0.318018,0.429296,0.318018,0.396385,0.318018,0.398110,0.352172,0.464347,0.352884,0.463969,0.372975,0.453315,0.371675,0.443631,0.391892,0.433295,0.413674,0.400825,0.441213,0.372416,0.481791,0.361530,0.481791,0.350644,0.481791,0.401277,0.481791,0.434356,0.481791,0.433826,0.441213,0.445388,0.481791,0.445139,0.441213,0.456420,0.481791,0.456453,0.441213,0.467452,0.481791,0.467767,0.441213,0.501550,0.441213,0.501880,0.481791,0.528663,0.441213,0.528663,0.418813,0.501220,0.419780,0.528663,0.402251,0.502425,0.402085,0.466100,0.398100,0.454866,0.394996,0.444891,0.415002,0.456486,0.416329,0.468082,0.417657,0.021389,0.402251,0.048832,0.419780,0.021389,0.418813,0.048502,0.441213,0.021389,0.441213,0.048172,0.481791,0.021389,0.481791,0.528663,0.481791,0.082600,0.481791,0.082285,0.441213,0.093599,0.441213,0.093632,0.481791,0.104664,0.481791,0.104913,0.441213,0.105161,0.415002,0.021389,0.318018,0.049202,0.354449,0.596890,0.790847,0.571220,0.791282,0.202267,0.497596,0.233770,0.513589,0.232654,0.497596,0.202909,0.513589,0.177568,0.497596,0.177732,0.513589,0.148485,0.497596,0.147661,0.513589,0.115413,0.497596,0.115912,0.513589,0.145671,0.548398,0.115318,0.548413,0.145484,0.561863,0.115876,0.564003,0.145481,0.574934,0.116928,0.579665,0.146296,0.584612,0.119077,0.593674,0.146942,0.600119,0.119417,0.605967,0.148052,0.625356,0.119736,0.626230,0.151635,0.669173,0.121439,0.669173,0.154256,0.710763,0.123711,0.710763,0.154944,0.742128,0.124300,0.744584,0.154294,0.759591,0.124083,0.762244,0.153634,0.776232,0.123522,0.778774,0.151734,0.795089,0.122778,0.793784,0.150750,0.834394,0.122869,0.834394,0.150394,0.875484,0.122479,0.875484,0.149574,0.908472,0.120849,0.900836,0.148905,0.935267,0.121397,0.929038,0.149867,0.957845,0.121761,0.957845,0.152232,0.982983,0.120945,0.982983,0.152532,0.994548,0.121673,0.994548,0.595130,0.852574,0.590794,0.824922,0.618958,0.829512,0.565748,0.830761,0.551805,0.848576,0.551880,0.863807,0.564245,0.876189,0.219274,0.982983,0.220349,0.994548,0.238118,0.994548,0.200804,0.982983,0.201307,0.994548,0.179560,0.982983,0.179453,0.994548,0.178761,0.955706,0.200352,0.953032,0.219910,0.956241,0.238730,0.982983,0.266107,0.994548,0.266107,0.982983,0.238454,0.957845,0.265787,0.957845,0.238959,0.944182,0.265660,0.938436,0.237029,0.918843,0.265521,0.915388,0.047472,0.943538,0.018685,0.916595,0.018824,0.940756,0.047114,0.918238,0.018676,0.875484,0.047771,0.875484,0.070598,0.915456,0.071091,0.875484,0.092453,0.911878,0.070867,0.936705,0.070210,0.957845,0.095603,0.957845,0.095076,0.982983,0.070864,0.982983,0.046596,0.957845,0.018951,0.957845,0.047691,0.982983,0.019271,0.982983,0.048010,0.994548,0.070931,0.994548,0.095809,0.994548,0.630519,0.865194,0.630883,0.847398,0.618415,0.877711,0.590184,0.880463,0.019271,0.994548,0.099991,0.875484,0.071516,0.834394,0.048337,0.834394,0.048076,0.795436,0.071320,0.795574,0.099204,0.834394,0.100575,0.795038,0.071151,0.781060,0.047851,0.780961,0.047562,0.764868,0.070935,0.764910,0.100733,0.780343,0.100293,0.763967,0.070976,0.747360,0.047617,0.747671,0.048062,0.710763,0.069615,0.710763,0.100458,0.746215,0.101008,0.710763,0.068338,0.669173,0.046246,0.669173,0.041383,0.631779,0.061609,0.627185,0.098848,0.669173,0.092553,0.626549,0.058648,0.617843,0.038683,0.624459,0.035635,0.618173,0.055705,0.609985,0.014029,0.616663,0.014029,0.627517,0.511902,0.618173,0.533509,0.627517,0.533509,0.616663,0.531017,0.631582,0.508855,0.624459,0.529300,0.635260,0.506155,0.631779,0.528267,0.636670,0.501291,0.669173,0.528267,0.669173,0.499476,0.710763,0.528267,0.710763,0.499921,0.747671,0.528267,0.748447,0.499976,0.764868,0.528267,0.771760,0.499687,0.780961,0.528267,0.784713,0.499462,0.795436,0.528494,0.797794,0.499201,0.834394,0.528613,0.834394,0.499767,0.875484,0.528862,0.875484,0.500424,0.918238,0.528852,0.916595,0.500066,0.943538,0.528714,0.940756,0.528586,0.957845,0.500942,0.957845,0.499847,0.982983,0.476674,0.982983,0.476607,0.994548,0.451729,0.994548,0.452462,0.982983,0.425865,0.994548,0.426593,0.982983,0.395006,0.994548,0.395306,0.982983,0.425777,0.957845,0.451935,0.957845,0.477328,0.957845,0.476671,0.936705,0.476940,0.915456,0.476447,0.875484,0.476022,0.834394,0.447546,0.875484,0.448334,0.834394,0.425059,0.875484,0.424669,0.834394,0.397144,0.875484,0.396788,0.834394,0.424760,0.793784,0.446963,0.795038,0.476218,0.795574,0.476386,0.781060,0.446805,0.780343,0.424016,0.778774,0.395804,0.795089,0.393904,0.776232,0.423455,0.762244,0.447245,0.763967,0.476603,0.764910,0.476562,0.747360,0.477923,0.710763,0.447080,0.746215,0.446530,0.710763,0.423238,0.744584,0.423826,0.710763,0.392594,0.742128,0.393282,0.710763,0.426099,0.669173,0.448690,0.669173,0.479200,0.669173,0.485929,0.627185,0.454984,0.626549,0.427802,0.626230,0.395903,0.669173,0.399486,0.625356,0.428121,0.605967,0.458627,0.613632,0.488890,0.617843,0.491833,0.609985,0.460701,0.606979,0.428461,0.593674,0.400596,0.600119,0.401242,0.584612,0.430610,0.579665,0.464993,0.590443,0.492055,0.597846,0.533509,0.603843,0.014029,0.603843,0.055483,0.597846,0.014029,0.592556,0.533509,0.592556,0.495920,0.573685,0.467046,0.570144,0.431662,0.564003,0.466164,0.549887,0.496005,0.552149,0.533509,0.571972,0.014029,0.571972,0.051618,0.573685,0.082545,0.590443,0.086837,0.606979,0.088911,0.613632,0.080492,0.570144,0.051533,0.552149,0.014029,0.551275,0.014029,0.513589,0.533509,0.513589,0.533509,0.551275,0.495792,0.513589,0.533509,0.497596,0.494481,0.497596,0.464350,0.513589,0.465065,0.497596,0.431626,0.513589,0.432124,0.497596,0.399877,0.513589,0.399053,0.497596,0.369806,0.513589,0.369970,0.497596,0.344629,0.513589,0.345271,0.497596,0.313768,0.513589,0.314884,0.497596,0.273769,0.513589,0.273769,0.497596,0.621219,0.790956,0.621219,0.764093,0.650507,0.764000,0.645548,0.790847,0.682756,0.763879,0.671218,0.791282,0.684092,0.716515,0.652091,0.716755,0.686870,0.680311,0.654864,0.684003,0.686737,0.653268,0.654758,0.655830,0.685568,0.622183,0.653291,0.624885,0.651242,0.583644,0.621219,0.623974,0.621190,0.583644,0.591606,0.583644,0.589147,0.624885,0.621219,0.655350,0.621219,0.685096,0.587574,0.684003,0.621219,0.716985,0.273769,0.549969,0.234067,0.550332,0.205123,0.547411,0.176053,0.547055,0.176128,0.560351,0.175951,0.573271,0.175630,0.583169,0.175332,0.598992,0.174855,0.624467,0.175536,0.669173,0.176088,0.710763,0.176159,0.741363,0.177150,0.753811,0.177981,0.763030,0.179815,0.786296,0.175244,0.803451,0.176119,0.834394,0.177429,0.875484,0.176202,0.901736,0.175870,0.931005,0.201108,0.915956,0.217801,0.936873,0.217603,0.917527,0.217768,0.875484,0.197581,0.875484,0.197897,0.834394,0.216931,0.834394,0.238987,0.875484,0.265512,0.875484,0.240265,0.834394,0.265761,0.834394,0.018925,0.834394,0.019044,0.797794,0.019271,0.784713,0.019271,0.771760,0.019271,0.748447,0.019271,0.710763,0.019271,0.669173,0.019271,0.636670,0.018237,0.635260,0.016521,0.631582,0.273769,0.614328,0.271918,0.626012,0.273769,0.622837,0.249539,0.614620,0.273769,0.596120,0.230342,0.594572,0.273769,0.577053,0.230758,0.576585,0.202517,0.574961,0.199296,0.586095,0.201140,0.600670,0.197828,0.624062,0.197848,0.669173,0.199052,0.710763,0.200105,0.741188,0.199864,0.761048,0.199536,0.774158,0.199060,0.793048,0.197262,0.806573,0.217658,0.807335,0.241839,0.806003,0.265880,0.800929,0.238809,0.789066,0.266107,0.787248,0.241143,0.772629,0.266107,0.773058,0.242852,0.757878,0.266107,0.748140,0.243972,0.745019,0.243864,0.710763,0.266107,0.710763,0.242630,0.669173,0.266107,0.669173,0.243191,0.629670,0.266107,0.636670,0.245807,0.620849,0.268754,0.630195,0.226433,0.606246,0.222533,0.624394,0.221002,0.669173,0.220913,0.710763,0.221945,0.742442,0.221523,0.760132,0.220832,0.779685,0.218450,0.793830,0.204835,0.560118,0.232213,0.562307,0.273769,0.563509,0.315325,0.562307,0.316780,0.576585,0.317196,0.594572,0.297999,0.614620,0.275620,0.626012,0.278784,0.630195,0.301730,0.620849,0.321104,0.606246,0.304347,0.629670,0.281431,0.636670,0.281431,0.669173,0.304908,0.669173,0.281431,0.710763,0.303674,0.710763,0.281431,0.748140,0.303566,0.745019,0.304685,0.757878,0.281431,0.773058,0.306395,0.772629,0.281431,0.787248,0.308728,0.789066,0.281658,0.800929,0.305698,0.806003,0.281777,0.834394,0.307273,0.834394,0.282026,0.875484,0.308550,0.875484,0.282016,0.915388,0.310509,0.918843,0.281878,0.938436,0.308579,0.944182,0.281750,0.957845,0.309083,0.957845,0.281431,0.982983,0.528267,0.982983,0.499528,0.994548,0.528267,0.994548,0.328263,0.982983,0.309419,0.994548,0.327189,0.994548,0.308808,0.982983,0.327628,0.956241,0.329737,0.936873,0.329934,0.917527,0.329770,0.875484,0.330606,0.834394,0.329880,0.807335,0.329088,0.793830,0.326706,0.779685,0.326015,0.760132,0.325593,0.742442,0.326625,0.710763,0.326536,0.669173,0.325004,0.624394,0.346397,0.600670,0.348242,0.586095,0.345021,0.574961,0.342703,0.560118,0.342415,0.547411,0.313471,0.550332,0.371484,0.547055,0.371410,0.560351,0.371586,0.573271,0.402054,0.561863,0.401867,0.548398,0.432220,0.548413,0.402057,0.574934,0.371908,0.583169,0.372206,0.598992,0.372683,0.624467,0.349710,0.624062,0.349690,0.669173,0.348486,0.710763,0.347433,0.741188,0.347674,0.761048,0.348001,0.774158,0.348478,0.793048,0.350276,0.806573,0.349641,0.834394,0.349957,0.875484,0.346430,0.915956,0.347186,0.953032,0.346734,0.982983,0.346231,0.994548,0.367978,0.982983,0.368085,0.994548,0.368777,0.955706,0.371668,0.931005,0.398633,0.935267,0.397964,0.908472,0.426689,0.900836,0.426140,0.929038,0.397671,0.957845,0.455085,0.911878,0.371336,0.901736,0.370109,0.875484,0.371419,0.834394,0.372294,0.803451,0.367723,0.786296,0.393244,0.759591,0.369557,0.763030,0.370387,0.753811,0.371379,0.741363,0.371450,0.710763,0.372002,0.669173,0.281431,0.994548,0.014029,0.497596,0.051746,0.513589,0.081374,0.549887,0.083187,0.513589,0.053057,0.497596,0.082473,0.497596,0.086224,0.304052,0.097789,0.304052,0.048683,0.167377,0.083562,0.178825,0.096337,0.190910,0.095238,0.099702,0.096559,0.132838,0.107585,0.163225,0.120209,0.175531,0.147062,0.175368,0.176766,0.176347,0.185936,0.164720,0.196591,0.138090,0.198906,0.104557,0.202164,0.075418,0.203667,0.040367,0.217668,0.040367,0.095060,0.033914,0.103503,0.063019,0.107595,0.100260,0.108256,0.131654,0.119952,0.161906,0.145625,0.161906,0.175666,0.161906,0.186128,0.136922,0.187286,0.104657,0.188915,0.075818,0.175666,0.076217,0.175666,0.104756,0.578039,0.393080,0.593411,0.413990,0.578039,0.413990,0.593411,0.393080,0.578039,0.370691,0.593411,0.370691,0.611196,0.393080,0.611196,0.370691,0.629763,0.393080,0.629763,0.370691,0.664468,0.393080,0.664468,0.370691,0.710904,0.393080,0.710904,0.413990,0.744670,0.413990,0.744670,0.393080,0.710904,0.370691,0.744670,0.370691,0.768916,0.393080,0.769679,0.370691,0.744670,0.346615,0.758540,0.346615,0.770986,0.346615,0.784899,0.346615,0.771213,0.325572,0.787570,0.325572,0.771308,0.305962,0.757911,0.305962,0.759916,0.284901,0.744670,0.284901,0.744670,0.252397,0.710904,0.252397,0.710904,0.284901,0.744670,0.305962,0.757644,0.325572,0.744670,0.325572,0.710904,0.325572,0.710904,0.346615,0.664468,0.346615,0.629763,0.346615,0.611196,0.346615,0.593411,0.346615,0.578039,0.346615,0.107506,0.033868,0.119952,0.064359,0.119952,0.033822,0.119952,0.100818,0.119952,0.130470,0.578039,0.305962,0.578039,0.284901,0.593411,0.305962,0.593411,0.284901,0.578039,0.252397,0.593411,0.252397,0.593411,0.484921,0.578039,0.484921,0.578039,0.454993,0.593411,0.454993,0.593411,0.433541,0.578039,0.433541,0.175666,0.135754,0.611196,0.433541,0.611196,0.454993,0.629763,0.454993,0.629763,0.433541,0.611196,0.413990,0.629763,0.413990,0.664468,0.413990,0.710904,0.433541,0.744670,0.433541,0.768282,0.433541,0.768194,0.413990,0.800728,0.413990,0.800728,0.393080,0.800728,0.370965,0.800728,0.346615,0.800728,0.325572,0.787625,0.305962,0.771967,0.284901,0.773537,0.252397,0.772503,0.484921,0.744670,0.484921,0.744670,0.454993,0.710904,0.454993,0.710904,0.484921,0.664468,0.454993,0.664468,0.484921,0.664468,0.252397,0.664468,0.284901,0.710904,0.305962,0.664468,0.305962,0.629763,0.284901,0.629763,0.252397,0.611196,0.252397,0.611196,0.284901,0.629763,0.305962,0.664468,0.325572,0.629763,0.325572,0.611196,0.325572,0.593411,0.325572,0.578039,0.325572,0.611196,0.305962,0.611196,0.484921,0.629763,0.484921,0.664468,0.433541,0.769841,0.454993,0.800728,0.454993,0.800728,0.433541,0.834866,0.433541,0.834866,0.413990,0.834866,0.393080,0.834866,0.369766,0.834866,0.346615,0.834866,0.325572,0.800728,0.305962,0.834866,0.305962,0.800728,0.284901,0.834866,0.284901,0.800728,0.252397,0.800728,0.484921,0.834866,0.484921,0.834866,0.454993,0.877873,0.454993,0.877873,0.433541,0.877873,0.413990,0.877873,0.393080,0.877873,0.370168,0.877873,0.346615,0.877873,0.325572,0.877873,0.305962,0.877873,0.284901,0.834866,0.252397,0.877873,0.252397,0.877873,0.484921,0.914315,0.484921,0.914315,0.454993,0.914315,0.433541,0.914315,0.413990,0.914315,0.393080,0.914315,0.370414,0.914315,0.346615,0.914315,0.325572,0.914315,0.305962,0.914315,0.284901,0.914315,0.252397,0.948307,0.284901,0.948307,0.252397,0.948307,0.484921,0.948307,0.454993,0.948307,0.433541,0.948307,0.413990,0.948307,0.393080,0.948307,0.370732,0.948307,0.346615,0.948307,0.325572,0.948307,0.305962,0.963121,0.325572,0.963121,0.346615,0.963121,0.370800,0.986738,0.370913,0.986738,0.346615,0.986738,0.325572,0.963121,0.305962,0.986738,0.305962,0.986738,0.393080,0.963121,0.393080,0.986738,0.413990,0.963121,0.413990,0.986738,0.433541,0.963121,0.433541,0.986738,0.454993,0.986738,0.284901,0.963121,0.284901,0.963121,0.252397,0.986738,0.252397,0.963121,0.484921,0.963121,0.454993,0.986738,0.484921,0.785828,0.284901,0.189667,0.040367,0.175666,0.040367,0.061418,0.008958,0.057549,0.006211,0.598626,0.506717,0.603688,0.527896,0.610991,0.534924,0.734711,0.682676,0.666689,0.645477,0.652530,0.679951,0.772191,0.598829,0.810021,0.717975,0.834136,0.647845,0.872898,0.745890,0.505646,0.703207,0.505646,0.733864,0.560725,0.714180,0.450566,0.714180,0.505646,0.677670,0.452648,0.672525,0.358761,0.679951,0.344602,0.645477,0.383917,0.627157,0.427811,0.639825,0.466470,0.643417,0.505646,0.652882,0.558643,0.672525,0.544821,0.643417,0.583480,0.639825,0.627374,0.627157,0.610686,0.578123,0.680411,0.592508,0.657500,0.549847,0.742774,0.563336,0.804176,0.503881,0.826246,0.529137,0.872623,0.572623,0.916147,0.604880,0.722249,0.765122,0.800792,0.865828,0.797520,0.819230,0.727736,0.830860,0.668995,0.766946,0.727511,0.699183,0.656211,0.710972,0.796709,0.766795,0.805791,0.730727,0.965840,0.632559,0.916400,0.681655,0.964869,0.708937,0.995908,0.662391,0.045451,0.632559,0.015383,0.662391,0.046422,0.708937,0.094891,0.681655,0.138393,0.745890,0.086385,0.775817,0.924906,0.775817,0.276581,0.682675,0.239100,0.598829,0.276580,0.682675,0.201270,0.717975,0.177155,0.647845,0.095144,0.604880,0.138668,0.572623,0.185045,0.529137,0.207115,0.503881,0.268517,0.563336,0.330880,0.592508,0.400605,0.578123,0.432724,0.595978,0.469369,0.613000,0.505646,0.616099,0.541922,0.613000,0.578567,0.595978,0.594904,0.554145,0.561122,0.570477,0.576373,0.527920,0.555161,0.544794,0.566781,0.505101,0.544010,0.516360,0.548635,0.499575,0.533669,0.500556,0.532016,0.489354,0.505646,0.486442,0.530555,0.484209,0.505646,0.484824,0.505646,0.483309,0.528476,0.477266,0.548795,0.488207,0.547850,0.478826,0.562558,0.484742,0.565054,0.478973,0.555388,0.471435,0.526618,0.465654,0.505646,0.475914,0.505646,0.457734,0.484673,0.465654,0.482815,0.477266,0.480736,0.484209,0.462496,0.488207,0.463441,0.478826,0.455903,0.471435,0.446237,0.478973,0.448733,0.484742,0.435670,0.490939,0.440597,0.492106,0.444510,0.505101,0.434918,0.527920,0.456130,0.544794,0.450169,0.570477,0.416387,0.554145,0.353791,0.549847,0.242019,0.492836,0.212698,0.481982,0.224425,0.412181,0.287730,0.411923,0.312553,0.501999,0.371588,0.488330,0.384700,0.529074,0.414384,0.499603,0.428068,0.490635,0.430719,0.469724,0.447693,0.450306,0.483008,0.443372,0.482847,0.455235,0.505646,0.446604,0.528283,0.443372,0.505646,0.432012,0.478951,0.432476,0.450473,0.422825,0.443706,0.402082,0.460933,0.418649,0.474485,0.424466,0.483329,0.423358,0.496841,0.426144,0.505646,0.425672,0.514450,0.426144,0.532340,0.432476,0.527962,0.423358,0.525762,0.417459,0.536806,0.424466,0.550358,0.418649,0.533392,0.407457,0.518612,0.405386,0.513210,0.417481,0.505646,0.406145,0.505646,0.392785,0.492679,0.405386,0.498081,0.417481,0.505646,0.418384,0.485529,0.417459,0.477899,0.407457,0.459824,0.398572,0.468591,0.381977,0.474975,0.397930,0.488245,0.391217,0.505646,0.375441,0.486576,0.378066,0.484983,0.356522,0.461468,0.367378,0.449505,0.376381,0.399939,0.386303,0.396624,0.438171,0.408109,0.477218,0.355938,0.434339,0.302382,0.355907,0.349186,0.382761,0.364746,0.353320,0.405315,0.356252,0.437919,0.341543,0.463951,0.330317,0.488933,0.338604,0.505646,0.338205,0.505646,0.353235,0.526308,0.356522,0.524715,0.378066,0.523046,0.391217,0.536316,0.397930,0.551467,0.398572,0.567585,0.402082,0.560818,0.422825,0.563598,0.450306,0.528444,0.455235,0.580572,0.469724,0.575621,0.490939,0.570694,0.492106,0.567731,0.491428,0.564346,0.490604,0.562436,0.491944,0.547538,0.493198,0.564488,0.494613,0.583223,0.490635,0.596907,0.499603,0.626591,0.529074,0.639703,0.488330,0.603182,0.477218,0.614667,0.438171,0.611352,0.386303,0.561786,0.376381,0.549823,0.367378,0.542700,0.381977,0.522358,0.338604,0.505646,0.312167,0.486414,0.314760,0.465897,0.312540,0.456568,0.309170,0.448859,0.323962,0.434189,0.324895,0.406797,0.344032,0.403776,0.332764,0.403740,0.330880,0.437417,0.321035,0.403270,0.310402,0.371415,0.325302,0.368299,0.330563,0.367243,0.337476,0.337583,0.330911,0.270203,0.304421,0.234039,0.310948,0.211063,0.339350,0.181399,0.406194,0.185585,0.456326,0.155340,0.417950,0.138908,0.428766,0.173114,0.468137,0.791204,0.959402,0.741138,0.935774,0.822926,0.947185,0.689476,0.956045,0.691441,0.943414,0.164039,0.298396,0.183152,0.317027,0.189747,0.318092,0.155052,0.318580,0.145955,0.304332,0.131669,0.337805,0.117628,0.334856,0.130525,0.381112,0.116567,0.387329,0.757672,0.992688,0.711084,0.987045,0.691532,0.967606,0.308723,0.201321,0.341337,0.277712,0.351011,0.293945,0.331087,0.311337,0.349200,0.312241,0.362110,0.314774,0.379203,0.306833,0.403633,0.305986,0.428013,0.304332,0.433979,0.301029,0.405301,0.298646,0.379516,0.299939,0.384740,0.284048,0.421209,0.285476,0.447295,0.298594,0.446285,0.322874,0.463757,0.289668,0.486847,0.281937,0.505646,0.282835,0.524877,0.314760,0.545394,0.312540,0.547340,0.330317,0.573372,0.341543,0.605976,0.356252,0.646545,0.353320,0.644048,0.337476,0.604494,0.344032,0.642992,0.330563,0.607515,0.332764,0.607551,0.330880,0.639876,0.325302,0.608021,0.310402,0.573874,0.321035,0.577102,0.324895,0.565006,0.322874,0.583278,0.304332,0.562432,0.323962,0.577312,0.301029,0.607658,0.305986,0.632088,0.306833,0.605990,0.298646,0.563996,0.298594,0.590082,0.285476,0.547534,0.289668,0.584650,0.272966,0.520932,0.260822,0.524444,0.281937,0.505646,0.255711,0.490359,0.260822,0.426641,0.272966,0.387666,0.266494,0.381574,0.237535,0.380852,0.195097,0.491037,0.236354,0.505646,0.235625,0.505646,0.194544,0.482509,0.194949,0.457733,0.144898,0.505646,0.146085,0.528782,0.194949,0.520254,0.236354,0.629717,0.237535,0.630439,0.195097,0.553558,0.144898,0.570037,0.087488,0.505646,0.088535,0.505646,0.017001,0.441254,0.087488,0.363815,0.021521,0.604644,0.780974,0.539295,0.835105,0.510878,0.794021,0.617877,0.841465,0.583765,0.736924,0.647476,0.021521,0.652748,0.093697,0.633189,0.150921,0.702568,0.201321,0.669954,0.277712,0.623625,0.266494,0.626551,0.284048,0.631775,0.299939,0.649181,0.314774,0.662091,0.312241,0.660281,0.293945,0.741088,0.304421,0.680204,0.311337,0.673708,0.330911,0.708909,0.355907,0.662105,0.382761,0.655353,0.434339,0.698738,0.501999,0.769272,0.492836,0.723561,0.411923,0.777252,0.310948,0.821544,0.318092,0.731505,0.158600,0.753851,0.126406,0.588114,0.915611,0.637276,0.885150,0.674906,0.870999,0.674252,0.818022,0.571174,0.876075,0.748826,0.090533,0.716267,0.865986,0.856239,0.318580,0.865336,0.304332,0.847252,0.298396,0.879622,0.337805,0.893663,0.334856,0.880766,0.381112,0.855951,0.417950,0.829892,0.406194,0.828139,0.317027,0.800228,0.339350,0.786866,0.412181,0.798593,0.481982,0.838177,0.468137,0.825706,0.456326,0.872383,0.428766,0.828090,0.917778,0.855034,0.941267,0.894724,0.387329,0.279786,0.158600,0.257440,0.126406,0.378102,0.150921,0.358543,0.093697,0.262465,0.090533,0.554723,0.309170,0.475618,0.582520,0.505646,0.581585,0.535673,0.582520,0.532561,0.555608,0.505646,0.557535,0.478730,0.555608,0.480714,0.529127,0.505646,0.525135,0.530577,0.529127,0.530468,0.518456,0.505646,0.517602,0.505646,0.500991,0.477622,0.500556,0.480823,0.518456,0.467281,0.516360,0.462656,0.499575,0.479275,0.489354,0.463753,0.493198,0.448855,0.491944,0.446945,0.490604,0.443560,0.491428,0.446803,0.494613,-4.085537,-112.649086,-4.706486,-111.579254,-4.470658,-111.592827,0.776762,0.864153,0.782079,0.837917,0.769518,0.827644,0.815969,0.866518,0.809602,0.899712,0.848027,0.868191,0.840076,0.905509,0.829210,0.931584,0.862826,0.923477,0.873018,0.898990,0.903387,0.912076,0.919497,0.890141,0.951669,0.904036,0.954976,0.885779,0.955775,0.862938,0.980478,0.858279,0.975495,0.876319,0.972361,0.912798,0.939505,0.928816,0.892753,0.940264,0.856476,0.940411,0.699381,0.916250,0.698785,0.950511,0.673039,0.918264,0.728102,0.920716,0.726961,0.986319,0.728102,0.920717,0.698120,0.988745,0.834759,0.798695,0.803784,0.808826,0.844220,0.825716,0.813106,0.828247,0.765212,0.952119,0.757820,0.979697,0.726960,0.986319,0.756229,0.863754,0.780488,0.887942,0.767166,0.897560,0.757754,0.927306,0.798647,0.918412,0.874353,0.868256,0.914143,0.866880,0.921756,0.841663,0.956233,0.839058,0.977586,0.844848,0.987599,0.816495,0.982129,0.789034,0.974095,0.819526,0.990266,0.918435,0.963680,0.939159,0.983252,0.945496,0.927431,0.953306,0.920833,0.968405,0.948663,0.980125,0.592484,0.930747,0.591990,0.959119,0.567705,0.943066,0.625559,0.953104,0.591989,0.959119,0.591473,0.988763,0.625560,0.953104,0.624976,0.986516,0.638221,0.953334,0.637637,0.986746,0.672468,0.951055,0.671830,0.987672,0.861455,0.790754,0.867472,0.807692,0.875938,0.831819,0.897053,0.790928,0.906575,0.819284,0.941923,0.802728,0.930494,0.777801,0.957597,0.766755,0.952141,0.751421,0.923939,0.762724,0.565107,0.980683,0.561796,0.963165,0.975875,0.761793,0.970898,0.745729,0.954645,0.964889,0.970118,0.987876,0.975831,0.972229,0.966142,0.792761,0.953428,0.827961,0.891066,0.778525,0.638752,0.922935,0.626091,0.922704,0.886925,0.952673,0.776762,0.864153,0.756229,0.863754,0.769518,0.827644,0.780488,0.887942,0.767166,0.897560,0.765212,0.952119,0.757754,0.927306,0.728102,0.920716,0.798647,0.918412,0.809602,0.899712,0.815969,0.866518,0.848027,0.868191,0.840076,0.905509,0.874353,0.868256,0.873018,0.898990,0.914143,0.866880,0.919497,0.890141,0.955775,0.862938,0.954976,0.885779,0.980478,0.858279,0.975495,0.876319,0.972361,0.912798,0.990266,0.918435,0.963680,0.939159,0.983252,0.945496,0.987599,0.816495,0.974095,0.819526,0.982129,0.789034,0.977586,0.844848,0.956233,0.839058,0.921756,0.841663,0.875938,0.831819,0.844220,0.825716,0.813106,0.828247,0.782079,0.837917,0.803784,0.808826,0.834759,0.798695,0.861455,0.790754,0.867472,0.807692,0.897053,0.790928,0.906575,0.819284,0.930494,0.777801,0.941923,0.802728,0.953428,0.827961,0.966142,0.792761,0.975875,0.761793,0.957597,0.766755,0.952141,0.751421,0.970898,0.745729,0.565107,0.980683,0.591990,0.959119,0.561796,0.963165,0.591473,0.988763,0.923939,0.762724,0.891066,0.778525,0.638221,0.953334,0.624976,0.986516,0.637637,0.986746,0.625560,0.953104,0.638752,0.922935,0.626091,0.922704,0.892753,0.940264,0.920833,0.968405,0.886925,0.952673,0.927431,0.953306,0.948663,0.980125,0.954645,0.964889,0.970118,0.987876,0.975831,0.972229,0.939505,0.928816,0.903387,0.912076,0.862826,0.923477,0.856476,0.940411,0.672468,0.951055,0.673039,0.918264,0.698785,0.950511,0.671830,0.987672,0.698120,0.988745,0.726960,0.986319,0.727571,0.951210,0.757820,0.979697,0.699381,0.916250,0.829210,0.931584,0.951669,0.904036,0.567705,0.943066,0.592484,0.930747,0.591989,0.959119,0.625559,0.953104,-1.213924,2.175955,-1.243910,2.091856,-1.274247,2.175938,-1.150366,2.175965,-1.150499,2.091419,-4.164889,1.066553,-4.197845,1.170213,-4.137818,1.170086,-4.197140,1.259086,-1.150396,2.247025,-1.213257,2.247009,-1.274088,2.246995,-1.641531,2.254281,-1.660398,2.183226,-1.688697,2.254264,-1.688611,2.183226,-1.746296,2.254260,-1.746807,2.183200,-1.748267,2.098870,-1.688541,2.098772,-2.174173,2.135754,-2.233738,2.033690,-2.229737,2.135726,-2.312609,2.033757,-2.313521,2.135749,-2.839895,2.034670,-2.877928,2.034709,-2.839376,2.135721,-2.926258,2.034759,-2.926218,2.135716,-3.463975,1.989814,-3.492539,2.091531,-3.418042,2.091524,-3.490777,2.178065,-3.417544,2.178069,-3.491107,2.290194,-3.416189,2.290147,-3.417256,2.386935,-3.489571,2.386855,-3.436989,2.489137,-2.838801,2.222284,-2.926041,2.222278,-2.230272,2.222260,-2.313275,2.222291,-2.174841,2.222297,-2.175949,2.334365,-2.232654,2.334253,-2.178117,2.430508,-2.232626,2.430156,-2.199865,2.536784,-2.313134,2.334275,-2.312655,2.430411,-2.272568,2.536784,-2.925820,2.334372,-2.838969,2.334443,-2.904340,2.431004,-2.839508,2.431179,-2.893258,2.534724,-1.745156,2.346343,-1.691211,2.346447,-1.641357,2.346474,-1.274333,2.339045,-1.211834,2.339086,-1.150466,2.339127,-1.150609,2.418566,-1.213268,2.418604,-1.274238,2.418403,-1.211826,2.503123,-1.641381,2.426117,-1.692520,2.426119,-1.692462,2.510728,-1.746656,2.425852,-4.138954,1.259123,-4.196353,1.382683,-4.138202,1.382891,-4.196116,1.479175,-4.139833,1.479197,-4.169056,1.554130,-3.873768,1.258917,-3.875038,1.382948,-3.824220,1.382801,-3.872772,1.479393,-3.825378,1.479464,-3.776519,1.479528,-3.829144,1.554086,-3.763759,1.384287,-3.816013,1.259078,-3.815362,1.171031,-3.875978,1.170252,-3.819637,1.078534,-3.873764,1.078490,-3.791513,1.170416,-3.769352,1.259226,-2.422973,1.259401,-2.422475,1.386966,-2.345092,1.259393,-2.344512,1.387118,-2.411665,1.479761,-2.343838,1.479904,-2.345288,1.554238,-2.272361,1.479991,-2.269954,1.387991,-2.271875,1.259656,-2.345145,1.169130,-2.420887,1.169655,-2.345335,1.078458,-2.420335,1.078489,-2.272395,1.169307,-2.918242,1.134161,-2.918241,1.231215,-2.823488,1.231365,-2.918239,1.326059,-2.837804,1.326198,-2.855562,1.418725,-2.909631,1.418694,-2.878680,1.493125,-2.822959,1.134239,-2.874755,1.017112,-2.918417,1.017268,-2.822192,1.016925,-2.764565,1.016563,-2.764596,1.134250,-2.761215,1.231367,-2.761607,1.325836,-2.808156,1.326310,-2.762069,1.418363,-2.794018,1.418424,-2.762764,1.493153,-2.735533,1.418648,-2.735462,1.327132,-2.735746,1.231826,-2.735431,1.134344,-2.750458,1.016563,-1.658420,0.156849,-1.688406,0.072751,-1.718743,0.156832,-1.594862,0.156860,-1.594995,0.072314,-3.842736,-0.952552,-3.875692,-0.848892,-3.815665,-0.849020,-3.874987,-0.760020,-1.594892,0.227919,-1.657753,0.227903,-1.718584,0.227890,-1.774766,0.235175,-1.793633,0.164120,-1.821932,0.235158,-1.821846,0.164120,-1.879531,0.235154,-1.880042,0.164094,-1.821776,0.079666,-1.881502,0.079764,-2.253242,0.164040,-2.282861,0.080269,-2.308806,0.164017,-2.391678,0.080317,-2.392590,0.164037,-2.839376,0.164014,-2.839895,0.081066,-2.926218,0.164009,-2.926258,0.081139,-3.463975,0.044246,-3.492539,0.127740,-3.418042,0.127734,-3.490777,0.198771,-3.417544,0.198775,-3.491107,0.290811,-3.416189,0.290773,-3.417256,0.370221,-3.489571,0.370155,-3.436989,0.454113,-2.926041,0.235063,-2.838801,0.235068,-2.925820,0.327075,-2.838969,0.327134,-2.925758,0.406347,-2.839508,0.406539,-2.893258,0.491533,-2.309341,0.235049,-2.392344,0.235074,-2.253910,0.235079,-2.255018,0.327070,-2.290855,0.327011,-2.255958,0.361270,-2.277383,0.358612,-2.257186,0.405988,-2.392203,0.326995,-2.311723,0.326977,-2.391724,0.405908,-2.311695,0.405699,-2.311247,0.493224,-1.878391,0.327237,-1.824446,0.327341,-1.774592,0.327369,-1.774616,0.407012,-1.825755,0.407013,-1.879891,0.406746,-1.825697,0.491623,-1.718829,0.319939,-1.656330,0.319980,-1.594962,0.320021,-1.595105,0.399460,-1.657764,0.399498,-1.718734,0.399297,-1.656322,0.484017,-3.816801,-0.759983,-3.874200,-0.636423,-3.816049,-0.636215,-3.873963,-0.539931,-3.817680,-0.539909,-3.846903,-0.464975,-3.790425,-0.760189,-3.791695,-0.636158,-3.740877,-0.636305,-3.789429,-0.539713,-3.742035,-0.539641,-3.745801,-0.465020,-3.693176,-0.539578,-3.680416,-0.634819,-3.732670,-0.760027,-3.732019,-0.848075,-3.792635,-0.848854,-3.736294,-0.940572,-3.790421,-0.940616,-3.708170,-0.848689,-3.686009,-0.759879,-3.265605,-0.759713,-3.343486,-0.759705,-3.342988,-0.632139,-3.265658,-0.849976,-3.341400,-0.849451,-3.265848,-0.940648,-3.340848,-0.940616,-3.192908,-0.849799,-3.192388,-0.759449,-3.265025,-0.631988,-3.309991,-0.539298,-3.264351,-0.539201,-3.265801,-0.464868,-3.192874,-0.539115,-3.190467,-0.631115,-2.918241,-0.659046,-2.918239,-0.564203,-2.823488,-0.658896,-2.837804,-0.564063,-2.855562,-0.471536,-2.909631,-0.471568,-2.878680,-0.397136,-2.918242,-0.756100,-2.822959,-0.756022,-2.918417,-0.872994,-2.822192,-0.873337,-2.764565,-0.873698,-2.764596,-0.756012,-2.761215,-0.658895,-2.761607,-0.564425,-2.808156,-0.563952,-2.762069,-0.471899,-2.794018,-0.471838,-2.762764,-0.397109,-2.735533,-0.471613,-2.735462,-0.563130,-2.735746,-0.658435,-2.735431,-0.755918,-2.594712,-0.755716,-2.608504,-0.657475,-2.574317,-0.657594,-2.604759,-0.563373,-2.576900,-0.562640,-2.591082,-0.471270,-2.533985,-0.658380,-2.503424,-0.657941,-2.516402,-0.755768,-2.499522,-0.562391,-2.530165,-0.562880,-2.519431,-0.471374,-2.750458,-0.873698,-2.911842,1.071953,-2.911668,1.180363,-2.822959,1.180436,-3.174328,1.009210,-3.231843,1.093788,-3.146494,1.093383,-3.231422,1.009239,-3.784801,1.009281,-3.827691,1.094342,-3.772469,1.094779,-3.826006,1.009240,-4.164889,0.998170,-4.197845,1.094306,-4.137818,1.094188,-4.197140,1.176728,-3.826008,1.176571,-2.822192,1.071636,-2.764565,1.071301,-2.764596,1.180445,-2.750458,1.071301,-2.735431,1.180532,-2.735746,1.270939,-2.761215,1.270514,-2.762069,1.443937,-2.735533,1.444202,-2.762764,1.513298,-2.817028,1.442350,-2.823488,1.270512,-2.911667,1.270373,-3.174144,1.177013,-3.114517,1.177257,-3.233431,1.177020,-3.782043,1.176721,-3.746522,1.176858,-3.788290,1.291463,-3.742264,1.292842,-3.233052,1.295327,-3.173702,1.295468,-3.113055,1.296277,-2.911665,1.358332,-2.837804,1.358462,-2.872106,1.513273,-3.133179,1.381574,-3.173189,1.381519,-3.224822,1.381386,-3.174293,1.450458,-3.751977,1.381170,-3.789171,1.381111,-3.825250,1.381045,-3.826975,1.291600,-4.196353,1.291354,-4.138954,1.176763,-4.138202,1.291547,-4.183674,1.380847,-4.146772,1.380861,-4.169056,1.450358,-3.809546,1.450317,-3.770640,1.450317,-3.127869,1.381582,-1.718743,4.415484,-1.658420,4.415500,-1.718994,4.337938,-1.718584,4.481048,-1.774766,4.487770,-1.793633,4.422209,-1.821932,4.487755,-1.821846,4.422209,-1.879531,4.487751,-1.880042,4.422184,-1.821776,4.344283,-1.881502,4.344374,-1.880752,4.253557,-1.821345,4.253551,-1.657819,4.337867,-1.659606,4.253051,-1.594862,4.415509,-1.594892,4.481076,-1.657753,4.481060,-1.718829,4.565981,-1.774592,4.572837,-1.824446,4.572811,-1.878391,4.572715,-2.498179,4.572561,-2.497071,4.487682,-2.614932,4.487653,-2.614397,4.422114,-2.496403,4.422135,-2.497818,4.344786,-2.614117,4.344880,-2.612236,4.253583,-2.696038,4.253582,-2.695379,4.111292,-2.615356,4.111293,-1.852480,4.111291,-1.595081,4.253042,-1.617530,4.111459,-1.594995,4.337499,-3.634805,3.391564,-3.574778,3.391454,-3.601849,3.302783,-3.634100,3.467679,-3.575914,3.467711,-3.633313,3.573535,-1.656330,4.566019,-1.594962,4.566057,-1.718734,4.639205,-1.657764,4.639390,-1.616046,4.639366,-1.656322,4.717375,-3.575162,3.573713,-3.633076,3.656176,-3.576793,3.656195,-3.606016,3.720372,-4.093904,3.467534,-4.095174,3.573762,-4.044356,3.573636,-4.072944,3.656389,-4.045514,3.656424,-4.049280,3.720335,-3.996655,3.656479,-3.983895,3.574909,-4.036150,3.467673,-4.035498,3.392263,-4.096114,3.391597,-4.039773,3.313044,-4.011649,3.391737,-3.989488,3.467799,-3.541158,3.467949,-3.540660,3.577203,-3.463277,3.467942,-3.462697,3.577333,-3.529850,3.656678,-3.462023,3.656801,-3.463473,3.720465,-3.390546,3.656875,-3.388139,3.578081,-3.390060,3.468168,-3.463330,3.390635,-3.539072,3.391085,-3.463520,3.312979,-3.390580,3.390787,-2.918242,3.471036,-2.918241,3.554159,-2.823488,3.554287,-2.918239,3.635388,-2.837804,3.635508,-2.855562,3.714753,-2.909631,3.714726,-2.878680,3.778474,-2.808156,3.635603,-2.761607,3.635198,-2.762069,3.714443,-2.794018,3.714495,-2.762764,3.778497,-2.735533,3.714687,-2.735462,3.636307,-2.761215,3.554289,-2.735746,3.554682,-2.764596,3.471112,-2.735431,3.471192,-2.594712,3.471365,-2.608504,3.555504,-2.574317,3.555402,-2.604759,3.636099,-2.576900,3.636726,-2.591082,3.714982,-2.533985,3.554729,-2.503424,3.555106,-2.516402,3.471321,-2.499522,3.636940,-2.530165,3.636521,-2.519431,3.714892,-1.938599,3.548173,-1.877068,3.478823,-1.938841,3.478822,-1.876925,3.548240,-1.938809,3.615874,-1.876838,3.615718,-1.938442,3.656266,-1.876737,3.656164,-1.938218,3.681015,-1.876675,3.680993,-1.876256,3.733627,-1.828956,3.680945,-1.825324,3.655370,-1.819740,3.616053,-1.807715,3.548395,-1.786750,3.680511,-1.716725,3.548780,-1.717170,3.680441,-1.735164,3.700389,-1.776886,3.704670,-1.765089,3.733564,-1.715767,3.478890,-0.985835,0.599393,-0.894473,0.599466,-0.985869,0.514510,-0.895035,0.690356,-0.985798,0.690255,-0.894804,0.784931,-0.985406,0.783006,-0.943378,0.857393,-0.838494,0.599406,-0.836651,0.690267,-0.798587,0.599397,-0.798487,0.690225,-0.798639,0.781993,-0.758454,0.690271,-0.757742,0.599470,-0.662570,0.599549,-0.662600,0.690390,-0.599919,0.599552,-0.600133,0.690368,-0.600396,0.785455,-0.521169,0.690438,-0.520213,0.599569,-0.520477,0.514381,-0.599657,0.514449,-0.520697,0.415828,0.031395,0.634811,0.072822,0.511017,0.031355,0.510967,0.072825,0.634640,0.031573,0.748317,0.056998,0.746716,0.054325,0.797233,0.125837,0.511020,0.124825,0.634905,0.072739,0.745724,0.126143,0.746844,0.072739,0.785465,0.102844,0.786099,0.072739,0.836821,0.168220,0.635359,0.187481,0.511072,0.167944,0.511006,0.187312,0.635612,0.168178,0.744931,0.190181,0.744837,0.188784,0.787209,0.212987,0.511159,0.212594,0.635945,0.212184,0.744743,0.213055,0.837008,0.264492,0.745015,0.264528,0.635751,0.264548,0.511096,0.213377,0.343184,0.167697,0.343156,0.214060,0.124190,0.126486,0.125625,0.075171,0.125984,0.126017,0.343143,0.072739,-0.039977,0.032381,0.126531,-0.597826,0.082682,-0.662468,0.154089,-0.598401,0.154846,-0.662541,0.082421,-0.985722,0.081055,-0.893714,0.154910,-0.894284,0.081734,-0.985788,0.155643,-1.716029,3.102358,-1.806582,3.182442,-1.714845,3.183447,-1.806765,3.103459,-1.880520,3.181962,-1.880602,3.103744,-2.765764,3.110532,-2.822605,3.189329,-2.765130,3.190436,-2.823271,3.110502,-2.918243,3.190993,-2.918240,3.111865,-3.536874,3.190869,-3.465752,3.120602,-3.495525,3.058426,-3.463906,3.196173,-3.538520,3.313006,-2.918243,3.323226,-2.918417,3.370921,-2.822145,3.322577,-2.822192,3.370628,-2.822959,3.471103,-2.764565,3.370318,-2.750458,3.370318,-1.939309,3.395608,-1.877046,3.395688,-1.807485,3.395655,-1.807901,3.478847,-1.716787,3.395336,-0.985987,0.415471,-0.894451,0.514462,-0.798624,0.514409,-0.838584,0.514365,-0.758471,0.514310,-0.662559,0.514407,-0.599277,0.415628,-0.662457,0.415507,-0.662487,0.329795,-0.985998,0.330135,-0.894633,0.415479,-0.893977,0.329715,-1.716025,3.318019,-1.807394,3.316793,-1.880493,3.316884,-1.906354,3.316884,-2.764757,3.323550,-0.599140,0.329684,-0.521182,0.329141,0.032427,0.343156,0.075171,0.343160,-0.798756,0.415554,-4.093900,3.313006,-4.055399,3.102313,-2.926784,4.253634,-2.841585,4.111105,-2.926708,4.111092,-2.840952,4.253630,-2.926258,4.345643,-2.839895,4.345575,-2.697269,4.344884,-2.698181,4.422131,-2.926218,4.422106,-2.839376,4.422110,-3.463975,4.311602,-3.492539,4.388641,-3.418042,4.388635,-3.624413,4.311410,-3.671927,4.388674,-3.624039,4.388667,-3.672107,4.311403,-3.624759,4.250973,-3.671281,4.250973,-3.624709,4.112139,-3.671158,4.112139,-3.838899,4.246660,-3.839382,4.113582,-3.907263,4.246702,-3.907331,4.113591,-0.565051,1.175445,-0.565168,1.033588,-0.613492,1.175570,-0.613527,1.031376,-0.672709,1.175117,-0.672698,1.036608,0.727591,0.124345,0.661723,0.001422,0.662061,0.125749,0.613155,0.126143,0.927468,0.023379,0.862235,0.024818,0.863362,0.170172,0.861898,0.170624,0.861918,0.022113,0.813027,0.094734,0.813233,0.343218,0.861798,0.343184,0.813562,0.485578,0.862091,0.485626,0.837776,0.629140,0.927521,0.170234,0.868961,0.343186,0.927776,0.343196,0.927821,0.485542,0.895345,0.628703,0.613370,0.343218,0.403343,0.343110,0.358033,0.124420,0.358048,0.343107,0.309579,0.343139,0.264533,0.343239,0.309502,0.511499,0.328185,0.511507,0.309481,0.636283,0.333735,0.636201,0.309548,0.747043,0.338047,0.746951,0.329826,0.784743,0.357988,0.636119,0.357965,0.746886,0.357890,0.836921,0.403385,0.746494,0.403332,0.635868,0.403296,0.511344,0.358116,0.511521,0.468596,0.343377,0.457636,0.511702,0.487178,0.511506,0.462959,0.636664,0.497961,0.636301,0.472092,0.744902,0.496695,0.745564,0.493034,0.836415,0.662228,0.485626,0.613698,0.485578,0.612965,0.629634,0.661934,0.343184,0.727912,0.343196,-0.741699,1.296138,-0.785542,1.174766,-0.816000,1.294754,-0.613743,1.298103,-0.672714,1.296138,-0.564477,1.298785,-3.907363,4.325044,-3.835677,4.325044,-3.907895,4.390561,-0.564243,1.416260,-0.614130,1.416281,-0.672742,1.416259,-0.741483,1.416259,-0.815910,1.416253,0.727957,0.485542,0.662859,0.628646,0.612370,0.752985,0.662454,0.755231,0.662578,0.861484,0.703243,0.755029,0.728104,0.628761,-0.815828,1.578365,-0.741408,1.577067,-0.742200,1.707268,-0.815797,1.707101,-0.781450,1.789689,-0.614066,1.576176,-0.672751,1.577067,-0.672735,1.707553,-0.564518,1.576307,-0.613604,1.707762,-0.613559,1.791839,-0.565747,1.707655,-3.832266,4.475622,-3.907224,4.475635,-3.907204,4.548275,-3.832543,4.390537,-3.672326,4.454194,-3.624432,4.454203,-3.630742,4.539108,-3.672330,4.539127,-3.633579,4.611844,-3.672732,4.612065,-3.638585,4.657456,-3.561716,4.454206,-3.563216,4.539107,-3.624531,4.539105,-3.594719,4.611826,-3.490777,4.454181,-3.417544,4.454184,-3.417256,4.612376,-3.489571,4.612315,-3.436989,4.689782,-2.926041,4.487667,-2.838801,4.487672,-2.697935,4.487677,-2.697794,4.572492,-2.617314,4.572476,-2.500346,4.645377,-2.617286,4.645111,-2.683146,4.645270,-2.616838,4.725870,-2.925820,4.572566,-2.838969,4.572620,-2.925758,4.645709,-2.839508,4.645886,-2.893258,4.724310,-3.834711,4.548249,-3.877101,4.626742,-1.864221,4.646149,-1.825755,4.646324,-1.774616,4.646322,-1.825697,4.724392,0.311778,-0.652145,0.329319,-0.854833,0.273740,-0.652145,0.369634,-0.857437,0.358740,-0.652145,0.306922,-0.573046,0.281926,-0.573046,0.306328,-0.464314,0.343581,-0.573046,0.369634,-0.991401,0.249463,-0.857437,0.250380,-0.991401,0.216405,-0.854833,0.158061,-0.991401,0.159190,-0.857437,-1.841979,-0.792754,-1.841546,-0.939466,-1.793711,-0.945786,-1.798155,-0.789424,-1.779115,-0.790876,-1.729275,-0.785188,-1.718254,-0.945072,-1.282158,-0.945270,-1.238243,-0.793618,-1.298809,-0.793618,-1.254722,-0.945270,-1.190301,-0.790699,-1.243585,-0.793618,-1.189316,-0.945270,-1.190823,-0.563427,-1.242682,-0.563427,-1.238539,-0.453802,-1.200377,-0.453802,-1.218924,-0.332491,-1.216752,-0.563427,-1.231899,-0.412734,-1.207105,-0.409792,-1.177372,-0.557716,-1.266940,-0.559144,-1.356508,-0.560572,-1.730170,-0.557839,-1.803244,-0.567549,-1.799589,-0.465222,-1.730582,-0.462308,-1.755968,-0.336911,-1.842003,-0.568141,-1.835422,-0.465453,-1.816051,-0.348477,0.205707,-0.652145,0.244376,-0.652145,0.209917,-0.570736,0.158468,-0.652145,0.159719,-0.569658,0.213241,-0.464351,0.245348,-0.570736,0.198508,-0.860206,0.152353,-0.991529,0.152353,-0.860206,0.266685,-0.860206,0.248248,-0.654914,0.210209,-0.654914,0.163247,-0.654914,0.215065,-0.575815,0.240061,-0.575815,0.215659,-0.464324,0.178406,-0.575815,0.268852,-0.657518,0.304601,-0.654914,0.312070,-0.573505,0.276640,-0.573505,0.308747,-0.464360,0.362268,-0.572427,0.363519,-0.654914,0.362798,-0.860206,0.293904,-0.860206,0.265768,-0.991529,0.363927,-0.991529,-1.250870,-0.558888,-1.208300,-0.563427,-1.210941,-0.453802,0.984274,0.633885,0.987662,0.621613,0.982536,0.627607,0.993746,0.622669,0.697346,0.598814,0.700495,0.611436,0.706796,0.607321,0.704318,0.599518,0.726623,0.605420,0.722268,0.591750,0.723501,0.589255,0.729310,0.607035,0.721644,0.614889,0.961855,0.627013,0.964464,0.615349,0.959715,0.626606,0.962031,0.614461,0.939910,0.611412,0.950104,0.585449,0.969403,0.603813,0.971180,0.605527,0.979968,0.600485,0.717152,0.584377,0.719716,0.584085,0.978484,0.598368,0.961053,0.576407,0.945213,0.562298,0.934406,0.571403,0.931385,0.553651,0.920691,0.561797,0.927573,0.547215,0.916978,0.553359,0.914541,0.530072,0.901300,0.531115,0.903886,0.555444,0.892546,0.556357,0.890079,0.531571,0.876422,0.532394,0.878601,0.558002,0.864651,0.559005,0.863173,0.532895,0.874243,0.506785,0.861696,0.506785,0.851582,0.533236,0.851245,0.506786,0.841922,0.533252,0.843415,0.506786,0.827193,0.533245,0.829384,0.506786,0.813397,0.506786,0.810045,0.532019,0.792147,0.506786,0.788828,0.529384,0.777815,0.506786,0.774519,0.524664,0.912104,0.506785,0.926248,0.527000,0.924923,0.506785,0.898713,0.506785,0.887612,0.506785,0.771222,0.542543,0.785509,0.551982,0.762723,0.548137,0.778954,0.557835,0.753145,0.552275,0.767090,0.566215,0.738857,0.565304,0.747760,0.579444,0.753045,0.605600,0.724537,0.615992,0.732329,0.619920,0.950214,0.626251,0.953189,0.640268,0.944324,0.640537,0.910549,0.604017,0.920565,0.645812,0.895802,0.607673,0.897754,0.648381,0.881665,0.607744,0.877154,0.647826,0.861754,0.613577,0.856461,0.645688,0.849323,0.614914,0.865394,0.572350,0.851636,0.573374,0.851918,0.559687,0.840429,0.559718,0.838777,0.572735,0.825002,0.559703,0.879861,0.569529,0.895140,0.571925,0.906389,0.565126,0.919833,0.587894,0.806694,0.557253,0.804877,0.567113,0.773344,0.599086,0.777280,0.635512,0.758004,0.629942,0.744729,0.630581,0.743835,0.655717,0.952908,0.667345,0.960494,0.666419,0.938718,0.673495,0.953629,0.669675,0.939946,0.675733,0.931537,0.676867,0.924017,0.659049,0.918580,0.675509,0.904603,0.678522,0.918600,0.677928,0.905093,0.680994,0.898425,0.679798,0.896814,0.667893,0.889745,0.676836,0.877706,0.674161,0.889094,0.679336,0.877560,0.676690,0.870801,0.674790,0.873203,0.660091,0.863459,0.664861,0.851400,0.661540,0.861677,0.667422,0.850622,0.663816,0.841743,0.660241,0.845291,0.643793,0.835203,0.612512,0.832307,0.642045,0.816288,0.606763,0.822848,0.571460,0.797969,0.602435,0.797158,0.638879,0.774073,0.665762,0.770329,0.666049,0.776691,0.638810,0.764492,0.663708,0.767844,0.665216,0.749596,0.657300,0.749254,0.659855,0.741987,0.657639,0.961101,0.668763,0.960397,0.692258,0.949134,0.696185,0.961060,0.694651,0.950119,0.698480,0.942679,0.698947,0.932481,0.678870,0.767854,0.668096,0.762541,0.665625,0.741961,0.681579,0.737206,0.680638,0.966383,0.690897,0.966864,0.693364,0.966130,0.714647,0.970574,0.717272,0.956433,0.722397,0.744333,0.706859,0.731682,0.706731,0.745408,0.712357,0.736782,0.703885,0.752787,0.687792,0.758268,0.691386,0.754770,0.686158,0.758447,0.688450,0.943931,0.701226,0.957948,0.717657,0.742237,0.684108,0.735690,0.682938,0.926114,0.674392,0.926284,0.676422,0.920462,0.701593,0.908810,0.703079,0.920626,0.704058,0.909250,0.705498,0.902026,0.704514,0.898684,0.681613,0.791026,0.670928,0.787973,0.669830,0.791077,0.673677,0.786758,0.672084,0.774083,0.668270,0.769489,0.668658,0.766047,0.692481,0.927581,0.700860,0.927522,0.703526,0.921779,0.725328,0.925130,0.729715,0.910802,0.731138,0.775597,0.716478,0.762220,0.718623,0.779989,0.721960,0.768663,0.715103,0.781055,0.696271,0.770515,0.695175,0.770276,0.691868,0.782378,0.694245,0.785971,0.698766,0.785823,0.695904,0.765167,0.695054,0.902655,0.707090,0.913244,0.725852,0.894703,0.679213,0.894349,0.681006,0.883996,0.700765,0.874436,0.698882,0.883330,0.703146,0.874160,0.701327,0.872675,0.718902,0.868285,0.722640,0.866275,0.701211,0.866378,0.698686,0.870459,0.676715,0.816926,0.668756,0.813294,0.667672,0.817912,0.671211,0.815656,0.637957,0.798161,0.667069,0.823109,0.660926,0.820524,0.663632,0.816882,0.650594,0.867742,0.670206,0.866684,0.672041,0.853261,0.682631,0.845295,0.678461,0.838700,0.677805,0.841283,0.662631,0.832002,0.660715,0.832028,0.663217,0.824318,0.663006,0.820313,0.666482,0.822447,0.681162,0.858454,0.685551,0.857058,0.687593,0.852076,0.684812,0.844467,0.680798,0.838295,0.680312,0.832613,0.678309,0.825077,0.679651,0.825485,0.681522,0.822079,0.683863,0.825136,0.702435,0.844736,0.698581,0.844883,0.703758,0.839260,0.695890,0.835182,0.700569,0.832607,0.680735,0.827717,0.698022,0.831863,0.697522,0.794179,0.667408,0.798861,0.669484,0.793354,0.670034,0.793432,0.692644,0.890029,0.702262,0.889264,0.704676,0.877922,0.719848,0.880866,0.724169,0.807965,0.711940,0.795659,0.715767,0.810835,0.717103,0.801325,0.711682,0.810067,0.694209,0.799414,0.693857,0.798241,0.691633,0.811189,0.692112,0.811983,0.669803,0.814471,0.693324,0.814963,0.696172,0.792550,0.695415,-30.622080,-83.367462,-29.315384,-80.513290,-29.370056,-83.157234,-30.794760,-83.643562,-28.910404,-80.645950,-29.466593,-83.518417,30.792715,-85.366386,29.464312,-85.243790,29.039476,-82.992798,0.993746,0.622669,0.984274,0.633885,0.987662,0.621613,0.697346,0.598814,0.706796,0.607321,0.700495,0.611436,0.704318,0.599518,0.726683,0.604751,0.721644,0.614889,0.725228,0.614673,0.729349,0.606975,0.722135,0.591479,0.716945,0.584415,0.723605,0.589397,0.719612,0.583943,0.747760,0.579444,0.738857,0.565304,0.969403,0.603813,0.961053,0.576407,0.978484,0.598368,0.950104,0.585449,0.945213,0.562298,0.934406,0.571403,0.919833,0.587894,0.939910,0.611412,0.962031,0.614461,0.964464,0.615349,0.971180,0.605527,0.979968,0.600485,0.982536,0.627607,0.961855,0.627013,0.959715,0.626606,0.950214,0.626251,0.753045,0.605600,0.732329,0.619920,0.767090,0.566215,0.773344,0.599086,0.778954,0.557835,0.804877,0.567113,0.797969,0.602435,0.822848,0.571460,0.816288,0.606763,0.838777,0.572735,0.835203,0.612512,0.849323,0.614914,0.845291,0.643793,0.832307,0.642045,0.841743,0.660241,0.832002,0.660715,0.832028,0.663217,0.841283,0.662631,0.838700,0.677805,0.832613,0.678309,0.832607,0.680735,0.838295,0.680312,0.835182,0.700569,0.831863,0.697522,0.825136,0.702435,0.844736,0.698581,0.844883,0.703758,0.857058,0.687593,0.852076,0.684812,0.839260,0.695890,0.844467,0.680798,0.845295,0.678461,0.850622,0.663816,0.851400,0.661540,0.856461,0.645688,0.861754,0.613577,0.877154,0.647826,0.881665,0.607744,0.879861,0.569529,0.895140,0.571925,0.878601,0.558002,0.892546,0.556357,0.876422,0.532394,0.890079,0.531571,0.874243,0.506785,0.887612,0.506785,0.898713,0.506785,0.901300,0.531115,0.914541,0.530072,0.912104,0.506785,0.926248,0.527000,0.924923,0.506785,0.777815,0.506786,0.788828,0.529384,0.774519,0.524664,0.792147,0.506786,0.810045,0.532019,0.813397,0.506786,0.827193,0.533245,0.829384,0.506786,0.843415,0.506786,0.841922,0.533252,0.851245,0.506786,0.851582,0.533236,0.861696,0.506785,0.863173,0.532895,0.864651,0.559005,0.865394,0.572350,0.851636,0.573374,0.840429,0.559718,0.825002,0.559703,0.806694,0.557253,0.785509,0.551982,0.762723,0.548137,0.771222,0.542543,0.920691,0.561797,0.927573,0.547215,0.931385,0.553651,0.916978,0.553359,0.906389,0.565126,0.753145,0.552275,0.910549,0.604017,0.944324,0.640537,0.953189,0.640268,0.758004,0.629942,0.744729,0.630581,0.777280,0.635512,0.797158,0.638879,0.815656,0.637957,0.823358,0.660850,0.824318,0.663006,0.825495,0.679614,0.825991,0.681728,0.827717,0.698022,0.822079,0.683863,0.822734,0.681200,0.858454,0.685551,0.853261,0.682631,0.861677,0.667422,0.866684,0.672041,0.867742,0.670206,0.863459,0.664861,0.873203,0.660091,0.870801,0.674790,0.877706,0.674161,0.870459,0.676715,0.877560,0.676690,0.866378,0.698686,0.814549,0.693353,0.811983,0.669803,0.817912,0.671211,0.811112,0.692083,0.810067,0.694209,0.814963,0.696172,0.810835,0.717103,0.807965,0.711940,0.795659,0.715767,0.801325,0.711682,0.799414,0.693857,0.798382,0.691604,0.798861,0.669484,0.813218,0.667650,0.817001,0.668779,0.798302,0.667057,0.793354,0.670034,0.794037,0.667420,0.889094,0.679336,0.894703,0.679213,0.894349,0.681006,0.889745,0.676836,0.897754,0.648381,0.896814,0.667893,0.898425,0.679798,0.904603,0.678522,0.898684,0.681613,0.905093,0.680994,0.902026,0.704514,0.785925,0.695954,0.786758,0.672084,0.791077,0.673677,0.782276,0.694196,0.781055,0.696271,0.785971,0.698766,0.779989,0.721960,0.775597,0.716478,0.762220,0.718623,0.768663,0.715103,0.770515,0.694225,0.770439,0.691844,0.774083,0.668270,0.787873,0.669794,0.791126,0.670964,0.774233,0.665750,0.769489,0.668658,0.770169,0.666061,0.918600,0.677928,0.926114,0.674392,0.926284,0.676422,0.918580,0.675509,0.920565,0.645812,0.924017,0.659049,0.931537,0.676867,0.767926,0.665253,0.776691,0.638810,0.764410,0.663671,0.762541,0.665625,0.767854,0.668096,0.758534,0.688504,0.754683,0.686104,0.752787,0.687792,0.758122,0.691093,0.745408,0.712357,0.744333,0.706859,0.731682,0.706731,0.736782,0.703885,0.742237,0.684108,0.742103,0.681607,0.750340,0.660040,0.749743,0.657340,0.743688,0.655677,0.952908,0.667345,0.960494,0.666419,0.938718,0.673495,0.939946,0.675733,0.953629,0.669675,0.961101,0.668763,0.741987,0.657639,0.737065,0.680610,0.960397,0.692258,0.966383,0.690897,0.949134,0.696185,0.950119,0.698480,0.961060,0.694651,0.966864,0.693364,0.735690,0.682938,0.966130,0.714647,0.970574,0.717272,0.957948,0.717657,0.956433,0.722397,0.943931,0.701226,0.942679,0.698947,0.932481,0.678870,0.895802,0.607673,0.903886,0.555444,0.851918,0.559687,0.908810,0.703079,0.920462,0.701593,0.927581,0.700860,0.765884,0.692504,0.765167,0.695054,0.920626,0.704058,0.927522,0.703526,0.909250,0.705498,0.913244,0.725852,0.921779,0.725328,0.925130,0.729715,0.910802,0.731138,0.902655,0.707090,0.796722,0.642820,0.874436,0.698882,0.883996,0.700765,0.890029,0.702262,0.793291,0.692674,0.793491,0.695204,0.883330,0.703146,0.889264,0.704676,0.874160,0.701327,0.872675,0.718902,0.877922,0.719848,0.880866,0.724169,0.868285,0.722640,0.866275,0.701211,0.816882,0.650594,0.820627,0.663709,0.820313,0.666482,-22.076759,-53.249214,-21.650667,-56.049053,-22.844391,-56.488297,-21.724340,-53.575508,-21.730633,-55.822567,-22.996489,-56.242767]], + "uvs": [[0.64067,0.53028,0.63056,0.53492,0.63182,0.53826,0.63786,0.5279,0.64292,0.50672,0.51612,0.018815,0.51688,0.015738,0.50258,0.01102,0.52866,0.016514,0.52866,0.01962,0.51307,0.038795,0.50187,0.014232,0.48863,0.008958,0.4925,0.006211,0.64547,0.50672,0.65457,0.53661,0.65053,0.56634,0.62077,0.54698,0.62077,0.54174,0.033936,0.018815,0.033174,0.015738,0.021389,0.016514,0.047475,0.01102,0.048187,0.014232,0.036977,0.038795,0.021389,0.01962,0.021389,0.039948,0.52866,0.039948,0.51276,0.041572,0.52866,0.043046,0.50539,0.066884,0.48107,0.058744,0.49606,0.035312,0.49859,0.032397,0.48638,0.02142,0.65342,0.50672,0.30708,0.04038,0.30883,0.07026,0.30882,0.040367,0.33464,0.075019,0.33036,0.040367,0.46741,0.029325,0.48167,0.022535,0.46744,0.03396,0.33238,0.040367,0.34639,0.040367,0.463,0.061678,0.45499,0.033914,0.47945,0.060338,0.46717,0.099144,0.45481,0.099702,0.44655,0.063019,0.44246,0.10026,0.4301,0.064359,0.44255,0.033868,0.36039,0.040367,0.34789,0.075418,0.33953,0.10446,0.30474,0.1017,0.343,0.13926,0.30757,0.14247,0.27503,0.13974,0.27503,0.1017,0.62077,0.56634,0.59169,0.56634,0.60973,0.53826,0.58698,0.53661,0.60088,0.53028,0.59608,0.50672,0.58813,0.50672,0.24335,0.040401,0.24123,0.040367,0.24123,0.07026,0.051466,0.032397,0.068379,0.022535,0.063677,0.02142,0.053991,0.035312,0.037292,0.041572,0.068986,0.058744,0.044663,0.066884,0.021389,0.043046,0.021389,0.069656,0.52866,0.069656,0.50474,0.070165,0.50287,0.099698,0.46519,0.13402,0.45349,0.13284,0.4418,0.13165,0.4301,0.13047,0.4301,0.10082,0.57804,0.098326,0.59341,0.098326,0.57804,0.077282,0.59341,0.1224,0.57804,0.1224,0.4301,0.033822,0.37439,0.040367,0.36114,0.075818,0.35115,0.10456,0.35346,0.13809,0.35385,0.16753,0.34358,0.17035,0.30884,0.17332,0.27503,0.17187,0.24248,0.14247,0.24595,0.1017,0.20705,0.13926,0.21053,0.10446,0.21541,0.075019,0.2197,0.040367,0.082644,0.029325,0.082614,0.03396,0.070606,0.060338,0.087055,0.061678,0.08288,0.099144,0.045308,0.070165,0.021389,0.073284,0.52866,0.073284,0.52866,0.098681,0.49827,0.13524,0.4672,0.16586,0.45483,0.16454,0.44247,0.16322,0.4301,0.16191,0.57804,0.057673,0.59341,0.057673,0.57804,0.036612,0.59341,0.077282,0.6112,0.098326,0.6112,0.1224,0.6112,0.14479,0.59341,0.14479,0.57804,0.14479,0.37439,0.076217,0.37439,0.10476,0.36277,0.10466,0.36392,0.13692,0.36412,0.16472,0.36316,0.17881,0.35303,0.18128,0.34291,0.18374,0.30889,0.18749,0.27503,0.18764,0.24122,0.17332,0.20648,0.17035,0.55687,0.62218,0.5557,0.65327,0.58768,0.65583,0.19621,0.16753,0.19702,0.18128,0.18689,0.17881,0.18785,0.1929,0.17787,0.19079,0.18047,0.23221,0.1485,0.18883,0.15231,0.23221,0.12047,0.18915,0.11975,0.23221,0.10774,0.23221,0.1084,0.19003,0.10799,0.17663,0.095777,0.17773,0.095218,0.16454,0.08285,0.16586,0.084863,0.13402,0.051781,0.13524,0.047187,0.099698,0.021389,0.098681,0.021389,0.13591,0.52866,0.13591,0.50137,0.16738,0.46649,0.17883,0.45427,0.17773,0.44206,0.17663,0.42984,0.17553,0.40443,0.16191,0.59341,0.036612,0.57804,0.004108,0.6112,0.057673,0.6112,0.036612,0.62976,0.057673,0.62976,0.077282,0.6112,0.077282,0.62976,0.098326,0.62976,0.1224,0.62976,0.14479,0.62976,0.1657,0.6112,0.1657,0.59341,0.1657,0.57804,0.1657,0.59341,0.18525,0.57804,0.18525,0.37439,0.13575,0.37439,0.16191,0.37329,0.17635,0.37218,0.19079,0.3622,0.1929,0.35222,0.19502,0.34223,0.19713,0.30895,0.20166,0.27503,0.2034,0.2411,0.20166,0.24116,0.18749,0.20715,0.18374,0.19783,0.19502,0.19011,0.23221,0.18154,0.27939,0.15317,0.27939,0.12142,0.27939,0.10918,0.27939,0.096937,0.27939,0.095729,0.23221,0.084698,0.27939,0.083719,0.23221,0.049312,0.23221,0.049215,0.27939,0.021389,0.23221,0.021389,0.27939,0.52866,0.23221,0.50084,0.27939,0.52866,0.27939,0.50074,0.23221,0.46535,0.27939,0.46633,0.23221,0.45432,0.23221,0.45371,0.19091,0.46578,0.19179,0.50004,0.19371,0.52866,0.19517,0.021389,0.19517,0.05001,0.19371,0.084273,0.19179,0.049346,0.18055,0.021389,0.18151,0.021389,0.16785,0.52866,0.16785,0.50071,0.18055,0.52866,0.18151,0.44165,0.19003,0.42959,0.18915,0.40299,0.17537,0.57804,0.23663,0.59341,0.2067,0.57804,0.2067,0.59341,0.23663,0.6112,0.23663,0.6112,0.2067,0.62976,0.23663,0.62976,0.2067,0.66447,0.23663,0.66447,0.2067,0.7109,0.23663,0.7109,0.2067,0.74467,0.23663,0.74467,0.2067,0.7725,0.23663,0.75992,0.036612,0.77354,0.004108,0.74467,0.004108,0.77197,0.036612,0.78583,0.036612,0.78763,0.057673,0.77131,0.057673,0.75791,0.057673,0.77121,0.077282,0.75764,0.077282,0.77099,0.098326,0.75854,0.098326,0.74467,0.077282,0.74467,0.098326,0.7109,0.077282,0.7109,0.057673,0.74467,0.057673,0.74467,0.036612,0.7109,0.004108,0.7109,0.036612,0.66447,0.004108,0.66447,0.036612,0.62976,0.004108,0.62976,0.036612,0.6112,0.004108,0.59341,0.004108,0.66447,0.057673,0.66447,0.077282,0.66447,0.098326,0.66447,0.1224,0.66447,0.14479,0.66447,0.1657,0.66447,0.18525,0.62976,0.18525,0.6112,0.18525,0.7109,0.18525,0.74467,0.18525,0.76984,0.2067,0.76828,0.18525,0.80073,0.2067,0.80073,0.23663,0.80073,0.036612,0.80073,0.004108,0.80073,0.057673,0.80073,0.077282,0.78757,0.077282,0.80073,0.098326,0.7849,0.098326,0.76968,0.1224,0.74467,0.1224,0.7109,0.098326,0.7109,0.1224,0.7109,0.14479,0.7109,0.1657,0.74467,0.1657,0.76819,0.1657,0.80073,0.18525,0.83487,0.2067,0.83487,0.23663,0.87787,0.23663,0.83487,0.004108,0.87787,0.036612,0.87787,0.004108,0.83487,0.036612,0.87787,0.057673,0.83487,0.057673,0.83487,0.077282,0.83487,0.098326,0.83487,0.12148,0.80073,0.12268,0.80073,0.14479,0.76892,0.14479,0.80073,0.1657,0.83487,0.18525,0.87787,0.2067,0.91431,0.23663,0.91431,0.036612,0.91431,0.004108,0.94831,0.036612,0.94831,0.057673,0.91431,0.057673,0.91431,0.077282,0.87787,0.077282,0.91431,0.098326,0.87787,0.098326,0.87787,0.12188,0.87787,0.14479,0.83487,0.14479,0.87787,0.1657,0.83487,0.1657,0.87787,0.18525,0.91431,0.2067,0.94831,0.23663,0.94831,0.004108,0.96312,0.036612,0.96312,0.004108,0.98674,0.036612,0.98674,0.057673,0.96312,0.057673,0.96312,0.077282,0.98674,0.077282,0.98674,0.098326,0.96312,0.098326,0.94831,0.077282,0.94831,0.098326,0.94831,0.12244,0.91431,0.12213,0.91431,0.14479,0.91431,0.1657,0.91431,0.18525,0.94831,0.2067,0.96312,0.23663,0.96312,0.2067,0.98674,0.23663,0.98674,0.004108,0.69239,0.85233,0.69239,0.83096,0.6724,0.8353,0.71238,0.83531,0.72473,0.84669,0.72473,0.86077,0.71238,0.87215,0.96312,0.14479,0.98674,0.1657,0.98674,0.14479,0.96312,0.1657,0.98674,0.18525,0.96312,0.18525,0.94831,0.1657,0.94831,0.14479,0.94831,0.18525,0.98674,0.2067,0.96312,0.12251,0.98674,0.12262,0.69239,0.8765,0.6724,0.87215,0.66004,0.86076,0.66005,0.84669,0.74467,0.14479,0.40155,0.18883,0.36959,0.23221,0.35994,0.23221,0.3503,0.23221,0.34065,0.23221,0.30631,0.23221,0.27503,0.23221,0.24374,0.23221,0.20782,0.19713,0.2094,0.23221,0.55557,0.68031,0.55835,0.71652,0.59035,0.71676,0.19976,0.23221,0.1907,0.27939,0.1908,0.30405,0.18139,0.30405,0.15331,0.30405,0.12092,0.30405,0.10935,0.30405,0.10926,0.31802,0.09777,0.31802,0.10742,0.35218,0.096562,0.35253,0.086277,0.31802,0.085705,0.35288,0.049196,0.31802,0.04939,0.30405,0.021389,0.30405,0.50066,0.30405,0.52866,0.30405,0.46383,0.30405,0.45311,0.27939,0.44231,0.23221,0.4303,0.23221,0.39774,0.23221,0.36851,0.27939,0.35936,0.27939,0.3502,0.27939,0.34105,0.27939,0.30538,0.27939,0.27503,0.27939,0.24467,0.27939,0.209,0.27939,0.55968,0.76388,0.59193,0.764,0.19985,0.27939,0.20021,0.30405,0.19125,0.31802,0.18169,0.31802,0.15367,0.31802,0.12076,0.31802,0.11828,0.35183,0.11805,0.36908,0.10739,0.37038,0.11766,0.38879,0.10642,0.39189,0.096737,0.37167,0.095186,0.395,0.086083,0.37297,0.083952,0.3981,0.093566,0.41633,0.08197,0.41766,0.047627,0.40209,0.048557,0.37709,0.021389,0.37521,0.021389,0.35266,0.52866,0.35266,0.5015,0.37709,0.52866,0.37521,0.50085,0.35445,0.52866,0.31802,0.50086,0.31802,0.46377,0.31802,0.45226,0.30405,0.44088,0.27939,0.42864,0.27939,0.39688,0.27939,0.36867,0.30405,0.35925,0.30405,0.34984,0.30405,0.34043,0.30405,0.30568,0.30405,0.27503,0.30405,0.24438,0.30405,0.20962,0.30405,0.2008,0.31802,0.19128,0.35351,0.18103,0.35253,0.15194,0.35217,0.15131,0.36919,0.15051,0.38873,0.14968,0.41347,0.11676,0.41367,0.14923,0.44121,0.11623,0.44121,0.1157,0.48179,0.14877,0.48179,0.17764,0.48179,0.17802,0.44121,0.18852,0.48179,0.18878,0.44121,0.19941,0.48179,0.19953,0.44121,0.21029,0.48179,0.21029,0.44121,0.24541,0.44121,0.24572,0.48179,0.27503,0.44121,0.27503,0.48179,0.30434,0.48179,0.30464,0.44121,0.27503,0.42462,0.24511,0.42223,0.21029,0.41824,0.19966,0.41669,0.21132,0.39847,0.24574,0.40668,0.27503,0.40746,0.30431,0.40668,0.30494,0.42223,0.33976,0.44121,0.33976,0.48179,0.35052,0.44121,0.33976,0.41824,0.35039,0.41669,0.36128,0.44121,0.36102,0.41513,0.37204,0.44121,0.37165,0.41357,0.40037,0.41347,0.39955,0.38873,0.4324,0.38879,0.43201,0.36908,0.44266,0.37038,0.44263,0.35218,0.45349,0.35253,0.45228,0.31802,0.4407,0.30405,0.42913,0.30405,0.39674,0.30405,0.36836,0.31802,0.35881,0.31802,0.34926,0.31802,0.3397,0.31802,0.3056,0.31802,0.27503,0.31802,0.24446,0.31802,0.21035,0.31802,0.20153,0.3545,0.19047,0.37123,0.18024,0.36938,0.17919,0.38886,0.1784,0.41357,0.18903,0.41513,0.20061,0.39527,0.21092,0.37493,0.24505,0.38164,0.27503,0.38211,0.305,0.38164,0.33914,0.37493,0.33826,0.35548,0.30574,0.35966,0.27503,0.35998,0.24431,0.35966,0.21179,0.35548,0.20069,0.37308,0.1899,0.39207,0.34852,0.3545,0.34936,0.37308,0.34944,0.39527,0.33874,0.39847,0.36015,0.39207,0.35959,0.37123,0.35877,0.35351,0.36902,0.35253,0.36981,0.36938,0.37086,0.38886,0.39875,0.36919,0.43178,0.35183,0.44079,0.31802,0.4293,0.31802,0.39638,0.31802,0.39811,0.35217,0.46435,0.35288,0.46397,0.37297,0.45332,0.37167,0.44363,0.39189,0.43329,0.41367,0.40082,0.44121,0.37242,0.48179,0.36153,0.48179,0.35064,0.48179,0.40128,0.48179,0.43436,0.48179,0.43383,0.44121,0.44539,0.48179,0.44514,0.44121,0.45642,0.48179,0.45645,0.44121,0.46745,0.48179,0.46777,0.44121,0.50155,0.44121,0.50188,0.48179,0.52866,0.44121,0.52866,0.41881,0.50122,0.41978,0.52866,0.40225,0.50243,0.40209,0.4661,0.3981,0.45487,0.395,0.44489,0.415,0.45649,0.41633,0.46808,0.41766,0.021389,0.40225,0.048832,0.41978,0.021389,0.41881,0.048502,0.44121,0.021389,0.44121,0.048172,0.48179,0.021389,0.48179,0.52866,0.48179,0.0826,0.48179,0.082285,0.44121,0.093599,0.44121,0.093632,0.48179,0.10466,0.48179,0.10491,0.44121,0.10516,0.415,0.021389,0.31802,0.049202,0.35445,0.59689,0.79085,0.57122,0.79128,0.20227,0.4976,0.23377,0.51359,0.23265,0.4976,0.20291,0.51359,0.17757,0.4976,0.17773,0.51359,0.14849,0.4976,0.14766,0.51359,0.11541,0.4976,0.11591,0.51359,0.14567,0.5484,0.11532,0.54841,0.14548,0.56186,0.11588,0.564,0.14548,0.57493,0.11693,0.57966,0.1463,0.58461,0.11908,0.59367,0.14694,0.60012,0.11942,0.60597,0.14805,0.62536,0.11974,0.62623,0.15163,0.66917,0.12144,0.66917,0.15426,0.71076,0.12371,0.71076,0.15494,0.74213,0.1243,0.74458,0.15429,0.75959,0.12408,0.76224,0.15363,0.77623,0.12352,0.77877,0.15173,0.79509,0.12278,0.79378,0.15075,0.83439,0.12287,0.83439,0.15039,0.87548,0.12248,0.87548,0.14957,0.90847,0.12085,0.90084,0.14891,0.93527,0.1214,0.92904,0.14987,0.95785,0.12176,0.95785,0.15223,0.98298,0.12095,0.98298,0.15253,0.99455,0.12167,0.99455,0.59513,0.85257,0.59079,0.82492,0.61896,0.82951,0.56575,0.83076,0.5518,0.84858,0.55188,0.86381,0.56425,0.87619,0.21927,0.98298,0.22035,0.99455,0.23812,0.99455,0.2008,0.98298,0.20131,0.99455,0.17956,0.98298,0.17945,0.99455,0.17876,0.95571,0.20035,0.95303,0.21991,0.95624,0.23873,0.98298,0.26611,0.99455,0.26611,0.98298,0.23845,0.95785,0.26579,0.95785,0.23896,0.94418,0.26566,0.93844,0.23703,0.91884,0.26552,0.91539,0.047472,0.94354,0.018685,0.9166,0.018824,0.94076,0.047114,0.91824,0.018676,0.87548,0.047771,0.87548,0.070598,0.91546,0.071091,0.87548,0.092453,0.91188,0.070867,0.93671,0.07021,0.95785,0.095603,0.95785,0.095076,0.98298,0.070864,0.98298,0.046596,0.95785,0.018951,0.95785,0.047691,0.98298,0.019271,0.98298,0.04801,0.99455,0.070931,0.99455,0.095809,0.99455,0.63052,0.86519,0.63088,0.8474,0.61842,0.87771,0.59018,0.88046,0.019271,0.99455,0.099991,0.87548,0.071516,0.83439,0.048337,0.83439,0.048076,0.79544,0.07132,0.79557,0.099204,0.83439,0.10058,0.79504,0.071151,0.78106,0.047851,0.78096,0.047562,0.76487,0.070935,0.76491,0.10073,0.78034,0.10029,0.76397,0.070976,0.74736,0.047617,0.74767,0.048062,0.71076,0.069615,0.71076,0.10046,0.74622,0.10101,0.71076,0.068338,0.66917,0.046246,0.66917,0.041383,0.63178,0.061609,0.62718,0.098848,0.66917,0.092553,0.62655,0.058648,0.61784,0.038683,0.62446,0.035635,0.61817,0.055705,0.60999,0.014029,0.61666,0.014029,0.62752,0.5119,0.61817,0.53351,0.62752,0.53351,0.61666,0.53102,0.63158,0.50885,0.62446,0.5293,0.63526,0.50616,0.63178,0.52827,0.63667,0.50129,0.66917,0.52827,0.66917,0.49948,0.71076,0.52827,0.71076,0.49992,0.74767,0.52827,0.74845,0.49998,0.76487,0.52827,0.77176,0.49969,0.78096,0.52827,0.78471,0.49946,0.79544,0.52849,0.79779,0.4992,0.83439,0.52861,0.83439,0.49977,0.87548,0.52886,0.87548,0.50042,0.91824,0.52885,0.9166,0.50007,0.94354,0.52871,0.94076,0.52859,0.95785,0.50094,0.95785,0.49985,0.98298,0.47667,0.98298,0.47661,0.99455,0.45173,0.99455,0.45246,0.98298,0.42586,0.99455,0.42659,0.98298,0.39501,0.99455,0.39531,0.98298,0.42578,0.95785,0.45193,0.95785,0.47733,0.95785,0.47667,0.93671,0.47694,0.91546,0.47645,0.87548,0.47602,0.83439,0.44755,0.87548,0.44833,0.83439,0.42506,0.87548,0.42467,0.83439,0.39714,0.87548,0.39679,0.83439,0.42476,0.79378,0.44696,0.79504,0.47622,0.79557,0.47639,0.78106,0.44681,0.78034,0.42402,0.77877,0.3958,0.79509,0.3939,0.77623,0.42346,0.76224,0.44725,0.76397,0.4766,0.76491,0.47656,0.74736,0.47792,0.71076,0.44708,0.74622,0.44653,0.71076,0.42324,0.74458,0.42383,0.71076,0.39259,0.74213,0.39328,0.71076,0.4261,0.66917,0.44869,0.66917,0.4792,0.66917,0.48593,0.62718,0.45498,0.62655,0.4278,0.62623,0.3959,0.66917,0.39949,0.62536,0.42812,0.60597,0.45863,0.61363,0.48889,0.61784,0.49183,0.60999,0.4607,0.60698,0.42846,0.59367,0.4006,0.60012,0.40124,0.58461,0.43061,0.57966,0.46499,0.59044,0.49206,0.59785,0.53351,0.60384,0.014029,0.60384,0.055483,0.59785,0.014029,0.59256,0.53351,0.59256,0.49592,0.57369,0.46705,0.57014,0.43166,0.564,0.46616,0.54989,0.496,0.55215,0.53351,0.57197,0.014029,0.57197,0.051618,0.57369,0.082545,0.59044,0.086837,0.60698,0.088911,0.61363,0.080492,0.57014,0.051533,0.55215,0.014029,0.55127,0.014029,0.51359,0.53351,0.51359,0.53351,0.55127,0.49579,0.51359,0.53351,0.4976,0.49448,0.4976,0.46435,0.51359,0.46507,0.4976,0.43163,0.51359,0.43212,0.4976,0.39988,0.51359,0.39905,0.4976,0.36981,0.51359,0.36997,0.4976,0.34463,0.51359,0.34527,0.4976,0.31377,0.51359,0.31488,0.4976,0.27377,0.51359,0.27377,0.4976,0.62122,0.79096,0.62122,0.76409,0.65051,0.764,0.64555,0.79085,0.68276,0.76388,0.67122,0.79128,0.68409,0.71652,0.65209,0.71676,0.68687,0.68031,0.65486,0.684,0.68674,0.65327,0.65476,0.65583,0.68557,0.62218,0.65329,0.62489,0.65124,0.58364,0.62122,0.62397,0.62119,0.58364,0.59161,0.58364,0.58915,0.62489,0.62122,0.65535,0.62122,0.6851,0.58757,0.684,0.62122,0.71698,0.27377,0.54997,0.23407,0.55033,0.20512,0.54741,0.17605,0.54706,0.17613,0.56035,0.17595,0.57327,0.17563,0.58317,0.17533,0.59899,0.17486,0.62447,0.17554,0.66917,0.17609,0.71076,0.17616,0.74136,0.17715,0.75381,0.17798,0.76303,0.17982,0.7863,0.17524,0.80345,0.17612,0.83439,0.17743,0.87548,0.1762,0.90174,0.17587,0.931,0.20111,0.91596,0.2178,0.93687,0.2176,0.91753,0.21777,0.87548,0.19758,0.87548,0.1979,0.83439,0.21693,0.83439,0.23899,0.87548,0.26551,0.87548,0.24027,0.83439,0.26576,0.83439,0.018925,0.83439,0.019044,0.79779,0.019271,0.78471,0.019271,0.77176,0.019271,0.74845,0.019271,0.71076,0.019271,0.66917,0.019271,0.63667,0.018237,0.63526,0.016521,0.63158,0.27377,0.61433,0.27192,0.62601,0.27377,0.62284,0.24954,0.61462,0.27377,0.59612,0.23034,0.59457,0.27377,0.57705,0.23076,0.57659,0.20252,0.57496,0.1993,0.5861,0.20114,0.60067,0.19783,0.62406,0.19785,0.66917,0.19905,0.71076,0.20011,0.74119,0.19986,0.76105,0.19954,0.77416,0.19906,0.79305,0.19726,0.80657,0.21766,0.80734,0.24184,0.806,0.26588,0.80093,0.23881,0.78907,0.26611,0.78725,0.24114,0.77263,0.26611,0.77306,0.24285,0.75788,0.26611,0.74814,0.24397,0.74502,0.24386,0.71076,0.26611,0.71076,0.24263,0.66917,0.26611,0.66917,0.24319,0.62967,0.26611,0.63667,0.24581,0.62085,0.26875,0.6302,0.22643,0.60625,0.22253,0.62439,0.221,0.66917,0.22091,0.71076,0.22195,0.74244,0.22152,0.76013,0.22083,0.77968,0.21845,0.79383,0.20483,0.56012,0.23221,0.56231,0.27377,0.56351,0.31533,0.56231,0.31678,0.57659,0.3172,0.59457,0.298,0.61462,0.27562,0.62601,0.27878,0.6302,0.30173,0.62085,0.3211,0.60625,0.30435,0.62967,0.28143,0.63667,0.28143,0.66917,0.30491,0.66917,0.28143,0.71076,0.30367,0.71076,0.28143,0.74814,0.30357,0.74502,0.30468,0.75788,0.28143,0.77306,0.30639,0.77263,0.28143,0.78725,0.30873,0.78907,0.28166,0.80093,0.3057,0.806,0.28178,0.83439,0.30727,0.83439,0.28203,0.87548,0.30855,0.87548,0.28202,0.91539,0.31051,0.91884,0.28188,0.93844,0.30858,0.94418,0.28175,0.95785,0.30908,0.95785,0.28143,0.98298,0.52827,0.98298,0.49953,0.99455,0.52827,0.99455,0.32826,0.98298,0.30942,0.99455,0.32719,0.99455,0.30881,0.98298,0.32763,0.95624,0.32974,0.93687,0.32993,0.91753,0.32977,0.87548,0.33061,0.83439,0.32988,0.80734,0.32909,0.79383,0.32671,0.77968,0.32602,0.76013,0.32559,0.74244,0.32663,0.71076,0.32654,0.66917,0.325,0.62439,0.3464,0.60067,0.34824,0.5861,0.34502,0.57496,0.3427,0.56012,0.34242,0.54741,0.31347,0.55033,0.37148,0.54706,0.37141,0.56035,0.37159,0.57327,0.40205,0.56186,0.40187,0.5484,0.43222,0.54841,0.40206,0.57493,0.37191,0.58317,0.37221,0.59899,0.37268,0.62447,0.34971,0.62406,0.34969,0.66917,0.34849,0.71076,0.34743,0.74119,0.34767,0.76105,0.348,0.77416,0.34848,0.79305,0.35028,0.80657,0.34964,0.83439,0.34996,0.87548,0.34643,0.91596,0.34719,0.95303,0.34673,0.98298,0.34623,0.99455,0.36798,0.98298,0.36809,0.99455,0.36878,0.95571,0.37167,0.931,0.39863,0.93527,0.39796,0.90847,0.42669,0.90084,0.42614,0.92904,0.39767,0.95785,0.45509,0.91188,0.37134,0.90174,0.37011,0.87548,0.37142,0.83439,0.37229,0.80345,0.36772,0.7863,0.39324,0.75959,0.36956,0.76303,0.37039,0.75381,0.37138,0.74136,0.37145,0.71076,0.372,0.66917,0.28143,0.99455,0.014029,0.4976,0.051746,0.51359,0.081374,0.54989,0.083187,0.51359,0.053057,0.4976,0.082473,0.4976,0.086224,0.30405,0.097789,0.30405,0.048683,0.16738,0.083562,0.17883,0.096337,0.19091,0.095238,0.099702,0.096559,0.13284,0.10759,0.16322,0.12021,0.17553,0.14706,0.17537,0.17677,0.17635,0.18594,0.16472,0.19659,0.13809,0.19891,0.10456,0.20216,0.075418,0.20367,0.040367,0.21767,0.040367,0.09506,0.033914,0.1035,0.063019,0.1076,0.10026,0.10826,0.13165,0.11995,0.16191,0.14563,0.16191,0.17567,0.16191,0.18613,0.13692,0.18729,0.10466,0.18892,0.075818,0.17567,0.076217,0.17567,0.10476,0.57804,0.39308,0.59341,0.41399,0.57804,0.41399,0.59341,0.39308,0.57804,0.37069,0.59341,0.37069,0.6112,0.39308,0.6112,0.37069,0.62976,0.39308,0.62976,0.37069,0.66447,0.39308,0.66447,0.37069,0.7109,0.39308,0.7109,0.41399,0.74467,0.41399,0.74467,0.39308,0.7109,0.37069,0.74467,0.37069,0.76892,0.39308,0.76968,0.37069,0.74467,0.34662,0.75854,0.34662,0.77099,0.34662,0.7849,0.34662,0.77121,0.32557,0.78757,0.32557,0.77131,0.30596,0.75791,0.30596,0.75992,0.2849,0.74467,0.2849,0.74467,0.2524,0.7109,0.2524,0.7109,0.2849,0.74467,0.30596,0.75764,0.32557,0.74467,0.32557,0.7109,0.32557,0.7109,0.34662,0.66447,0.34662,0.62976,0.34662,0.6112,0.34662,0.59341,0.34662,0.57804,0.34662,0.10751,0.033868,0.11995,0.064359,0.11995,0.033822,0.11995,0.10082,0.11995,0.13047,0.57804,0.30596,0.57804,0.2849,0.59341,0.30596,0.59341,0.2849,0.57804,0.2524,0.59341,0.2524,0.59341,0.48492,0.57804,0.48492,0.57804,0.45499,0.59341,0.45499,0.59341,0.43354,0.57804,0.43354,0.17567,0.13575,0.6112,0.43354,0.6112,0.45499,0.62976,0.45499,0.62976,0.43354,0.6112,0.41399,0.62976,0.41399,0.66447,0.41399,0.7109,0.43354,0.74467,0.43354,0.76828,0.43354,0.76819,0.41399,0.80073,0.41399,0.80073,0.39308,0.80073,0.37096,0.80073,0.34662,0.80073,0.32557,0.78763,0.30596,0.77197,0.2849,0.77354,0.2524,0.7725,0.48492,0.74467,0.48492,0.74467,0.45499,0.7109,0.45499,0.7109,0.48492,0.66447,0.45499,0.66447,0.48492,0.66447,0.2524,0.66447,0.2849,0.7109,0.30596,0.66447,0.30596,0.62976,0.2849,0.62976,0.2524,0.6112,0.2524,0.6112,0.2849,0.62976,0.30596,0.66447,0.32557,0.62976,0.32557,0.6112,0.32557,0.59341,0.32557,0.57804,0.32557,0.6112,0.30596,0.6112,0.48492,0.62976,0.48492,0.66447,0.43354,0.76984,0.45499,0.80073,0.45499,0.80073,0.43354,0.83487,0.43354,0.83487,0.41399,0.83487,0.39308,0.83487,0.36977,0.83487,0.34662,0.83487,0.32557,0.80073,0.30596,0.83487,0.30596,0.80073,0.2849,0.83487,0.2849,0.80073,0.2524,0.80073,0.48492,0.83487,0.48492,0.83487,0.45499,0.87787,0.45499,0.87787,0.43354,0.87787,0.41399,0.87787,0.39308,0.87787,0.37017,0.87787,0.34662,0.87787,0.32557,0.87787,0.30596,0.87787,0.2849,0.83487,0.2524,0.87787,0.2524,0.87787,0.48492,0.91431,0.48492,0.91431,0.45499,0.91431,0.43354,0.91431,0.41399,0.91431,0.39308,0.91431,0.37041,0.91431,0.34662,0.91431,0.32557,0.91431,0.30596,0.91431,0.2849,0.91431,0.2524,0.94831,0.2849,0.94831,0.2524,0.94831,0.48492,0.94831,0.45499,0.94831,0.43354,0.94831,0.41399,0.94831,0.39308,0.94831,0.37073,0.94831,0.34662,0.94831,0.32557,0.94831,0.30596,0.96312,0.32557,0.96312,0.34662,0.96312,0.3708,0.98674,0.37091,0.98674,0.34662,0.98674,0.32557,0.96312,0.30596,0.98674,0.30596,0.98674,0.39308,0.96312,0.39308,0.98674,0.41399,0.96312,0.41399,0.98674,0.43354,0.96312,0.43354,0.98674,0.45499,0.98674,0.2849,0.96312,0.2849,0.96312,0.2524,0.98674,0.2524,0.96312,0.48492,0.96312,0.45499,0.98674,0.48492,0.78583,0.2849,0.18967,0.040367,0.17567,0.040367,0.061418,0.008958,0.057549,0.006211,0.59863,0.50672,0.60369,0.5279,0.61099,0.53492,0.73471,0.68268,0.66669,0.64548,0.65253,0.67995,0.77219,0.59883,0.81002,0.71798,0.83414,0.64785,0.8729,0.74589,0.50565,0.70321,0.50565,0.73386,0.56073,0.71418,0.45057,0.71418,0.50565,0.67767,0.45265,0.67253,0.35876,0.67995,0.3446,0.64548,0.38392,0.62716,0.42781,0.63982,0.46647,0.64342,0.50565,0.65288,0.55864,0.67253,0.54482,0.64342,0.58348,0.63982,0.62737,0.62716,0.61069,0.57812,0.68041,0.59251,0.6575,0.54985,0.74277,0.56334,0.80418,0.50388,0.82625,0.52914,0.87262,0.57262,0.91615,0.60488,0.72225,0.76512,0.80079,0.86583,0.79752,0.81923,0.72774,0.83086,0.669,0.76695,0.72751,0.69918,0.65621,0.71097,0.79671,0.7668,0.80579,0.73073,0.96584,0.63256,0.9164,0.68166,0.96487,0.70894,0.99591,0.66239,0.045451,0.63256,0.015383,0.66239,0.046422,0.70894,0.094891,0.68166,0.13839,0.74589,0.086385,0.77582,0.92491,0.77582,0.27658,0.68267,0.2391,0.59883,0.27658,0.68267,0.20127,0.71798,0.17716,0.64785,0.095144,0.60488,0.13867,0.57262,0.18504,0.52914,0.20711,0.50388,0.26852,0.56334,0.33088,0.59251,0.4006,0.57812,0.43272,0.59598,0.46937,0.613,0.50565,0.6161,0.54192,0.613,0.57857,0.59598,0.5949,0.55415,0.56112,0.57048,0.57637,0.52792,0.55516,0.54479,0.56678,0.5051,0.54401,0.51636,0.54863,0.49957,0.53367,0.50056,0.53202,0.48935,0.50565,0.48644,0.53056,0.48421,0.50565,0.48482,0.50565,0.48331,0.52848,0.47727,0.5488,0.48821,0.54785,0.47883,0.56256,0.48474,0.56505,0.47897,0.55539,0.47144,0.52662,0.46565,0.50565,0.47591,0.50565,0.45773,0.48467,0.46565,0.48281,0.47727,0.48074,0.48421,0.4625,0.48821,0.46344,0.47883,0.4559,0.47144,0.44624,0.47897,0.44873,0.48474,0.43567,0.49094,0.4406,0.49211,0.44451,0.5051,0.43492,0.52792,0.45613,0.54479,0.45017,0.57048,0.41639,0.55415,0.35379,0.54985,0.24202,0.49284,0.2127,0.48198,0.22443,0.41218,0.28773,0.41192,0.31255,0.502,0.37159,0.48833,0.3847,0.52907,0.41438,0.4996,0.42807,0.49064,0.43072,0.46972,0.44769,0.45031,0.48301,0.44337,0.48285,0.45523,0.50565,0.4466,0.52828,0.44337,0.50565,0.43201,0.47895,0.43248,0.45047,0.42283,0.44371,0.40208,0.46093,0.41865,0.47448,0.42447,0.48333,0.42336,0.49684,0.42614,0.50565,0.42567,0.51445,0.42614,0.53234,0.43248,0.52796,0.42336,0.52576,0.41746,0.53681,0.42447,0.55036,0.41865,0.53339,0.40746,0.51861,0.40539,0.51321,0.41748,0.50565,0.40614,0.50565,0.39279,0.49268,0.40539,0.49808,0.41748,0.50565,0.41838,0.48553,0.41746,0.4779,0.40746,0.45982,0.39857,0.46859,0.38198,0.47497,0.39793,0.48824,0.39122,0.50565,0.37544,0.48658,0.37807,0.48498,0.35652,0.46147,0.36738,0.4495,0.37638,0.39994,0.3863,0.39662,0.43817,0.40811,0.47722,0.35594,0.43434,0.30238,0.35591,0.34919,0.38276,0.36475,0.35332,0.40531,0.35625,0.43792,0.34154,0.46395,0.33032,0.48893,0.3386,0.50565,0.3382,0.50565,0.35323,0.52631,0.35652,0.52472,0.37807,0.52305,0.39122,0.53632,0.39793,0.55147,0.39857,0.56759,0.40208,0.56082,0.42283,0.5636,0.45031,0.52844,0.45523,0.58057,0.46972,0.57562,0.49094,0.57069,0.49211,0.56773,0.49143,0.56435,0.4906,0.56244,0.49194,0.54754,0.4932,0.56449,0.49461,0.58322,0.49064,0.59691,0.4996,0.62659,0.52907,0.6397,0.48833,0.60318,0.47722,0.61467,0.43817,0.61135,0.3863,0.56179,0.37638,0.54982,0.36738,0.5427,0.38198,0.52236,0.3386,0.50565,0.31217,0.48641,0.31476,0.4659,0.31254,0.45657,0.30917,0.44886,0.32396,0.43419,0.3249,0.4068,0.34403,0.40378,0.33276,0.40374,0.33088,0.43742,0.32103,0.40327,0.3104,0.37142,0.3253,0.3683,0.33056,0.36724,0.33748,0.33758,0.33091,0.2702,0.30442,0.23404,0.31095,0.21106,0.33935,0.1814,0.40619,0.18559,0.45633,0.15534,0.41795,0.13891,0.42877,0.17311,0.46814,0.7912,0.9594,0.74114,0.93577,0.82293,0.94718,0.68948,0.95605,0.69144,0.94341,0.16404,0.2984,0.18315,0.31703,0.18975,0.31809,0.15505,0.31858,0.14596,0.30433,0.13167,0.33781,0.11763,0.33486,0.13053,0.38111,0.11657,0.38733,0.75767,0.99269,0.71108,0.98704,0.69153,0.96761,0.30872,0.20132,0.34134,0.27771,0.35101,0.29395,0.33109,0.31134,0.3492,0.31224,0.36211,0.31477,0.3792,0.30683,0.40363,0.30599,0.42801,0.30433,0.43398,0.30103,0.4053,0.29865,0.37952,0.29994,0.38474,0.28405,0.42121,0.28548,0.4473,0.29859,0.44628,0.32287,0.46376,0.28967,0.48685,0.28194,0.50565,0.28283,0.52488,0.31476,0.54539,0.31254,0.54734,0.33032,0.57337,0.34154,0.60598,0.35625,0.64655,0.35332,0.64405,0.33748,0.60449,0.34403,0.64299,0.33056,0.60752,0.33276,0.60755,0.33088,0.63988,0.3253,0.60802,0.3104,0.57387,0.32103,0.5771,0.3249,0.56501,0.32287,0.58328,0.30433,0.56243,0.32396,0.57731,0.30103,0.60766,0.30599,0.63209,0.30683,0.60599,0.29865,0.564,0.29859,0.59008,0.28548,0.54753,0.28967,0.58465,0.27297,0.52093,0.26082,0.52444,0.28194,0.50565,0.25571,0.49036,0.26082,0.42664,0.27297,0.38767,0.26649,0.38157,0.23754,0.38085,0.1951,0.49104,0.23635,0.50565,0.23562,0.50565,0.19454,0.48251,0.19495,0.45773,0.1449,0.50565,0.14609,0.52878,0.19495,0.52025,0.23635,0.62972,0.23754,0.63044,0.1951,0.55356,0.1449,0.57004,0.087488,0.50565,0.088535,0.50565,0.017001,0.44125,0.087488,0.36382,0.021521,0.60464,0.78097,0.53929,0.8351,0.51088,0.79402,0.61788,0.84147,0.58376,0.73692,0.64748,0.021521,0.65275,0.093697,0.63319,0.15092,0.70257,0.20132,0.66995,0.27771,0.62362,0.26649,0.62655,0.28405,0.63177,0.29994,0.64918,0.31477,0.66209,0.31224,0.66028,0.29395,0.74109,0.30442,0.6802,0.31134,0.67371,0.33091,0.70891,0.35591,0.66211,0.38276,0.65535,0.43434,0.69874,0.502,0.76927,0.49284,0.72356,0.41192,0.77725,0.31095,0.82154,0.31809,0.7315,0.1586,0.75385,0.12641,0.58811,0.91561,0.63728,0.88515,0.67491,0.871,0.67425,0.81802,0.57117,0.87608,0.74883,0.090533,0.71627,0.86599,0.85624,0.31858,0.86534,0.30433,0.84725,0.2984,0.87962,0.33781,0.89366,0.33486,0.88077,0.38111,0.85595,0.41795,0.82989,0.40619,0.82814,0.31703,0.80023,0.33935,0.78687,0.41218,0.79859,0.48198,0.83818,0.46814,0.82571,0.45633,0.87238,0.42877,0.82809,0.91778,0.85503,0.94127,0.89472,0.38733,0.27979,0.1586,0.25744,0.12641,0.3781,0.15092,0.35854,0.093697,0.26247,0.090533,0.55472,0.30917,0.47562,0.58252,0.50565,0.58159,0.53567,0.58252,0.53256,0.55561,0.50565,0.55754,0.47873,0.55561,0.48071,0.52913,0.50565,0.52514,0.53058,0.52913,0.53047,0.51846,0.50565,0.5176,0.50565,0.50099,0.47762,0.50056,0.48082,0.51846,0.46728,0.51636,0.46266,0.49957,0.47928,0.48935,0.46375,0.4932,0.44886,0.49194,0.44694,0.4906,0.44356,0.49143,0.4468,0.49461,-4.0855,-112.65,-4.7065,-111.58,-4.4707,-111.59,0.77676,0.86415,0.78208,0.83792,0.76952,0.82764,0.81597,0.86652,0.8096,0.89971,0.84803,0.86819,0.84008,0.90551,0.82921,0.93158,0.86283,0.92348,0.87302,0.89899,0.90339,0.91208,0.9195,0.89014,0.95167,0.90404,0.95498,0.88578,0.95578,0.86294,0.98048,0.85828,0.9755,0.87632,0.97236,0.9128,0.93951,0.92882,0.89275,0.94026,0.85648,0.94041,0.69938,0.91625,0.69878,0.95051,0.67304,0.91826,0.7281,0.92072,0.72696,0.98632,0.7281,0.92072,0.69812,0.98874,0.83476,0.79869,0.80378,0.80883,0.84422,0.82572,0.81311,0.82825,0.76521,0.95212,0.75782,0.9797,0.72696,0.98632,0.75623,0.86375,0.78049,0.88794,0.76717,0.89756,0.75775,0.92731,0.79865,0.91841,0.87435,0.86826,0.91414,0.86688,0.92176,0.84166,0.95623,0.83906,0.97759,0.84485,0.9876,0.81649,0.98213,0.78903,0.9741,0.81953,0.99027,0.91844,0.96368,0.93916,0.98325,0.9455,0.92743,0.95331,0.92083,0.9684,0.94866,0.98013,0.59248,0.93075,0.59199,0.95912,0.56771,0.94307,0.62556,0.9531,0.59199,0.95912,0.59147,0.98876,0.62556,0.9531,0.62498,0.98652,0.63822,0.95333,0.63764,0.98675,0.67247,0.95105,0.67183,0.98767,0.86145,0.79075,0.86747,0.80769,0.87594,0.83182,0.89705,0.79093,0.90658,0.81928,0.94192,0.80273,0.93049,0.7778,0.9576,0.76675,0.95214,0.75142,0.92394,0.76272,0.56511,0.98068,0.5618,0.96317,0.97588,0.76179,0.9709,0.74573,0.95464,0.96489,0.97012,0.98788,0.97583,0.97223,0.96614,0.79276,0.95343,0.82796,0.89107,0.77853,0.63875,0.92294,0.62609,0.9227,0.88692,0.95267,0.77676,0.86415,0.75623,0.86375,0.76952,0.82764,0.78049,0.88794,0.76717,0.89756,0.76521,0.95212,0.75775,0.92731,0.7281,0.92072,0.79865,0.91841,0.8096,0.89971,0.81597,0.86652,0.84803,0.86819,0.84008,0.90551,0.87435,0.86826,0.87302,0.89899,0.91414,0.86688,0.9195,0.89014,0.95578,0.86294,0.95498,0.88578,0.98048,0.85828,0.9755,0.87632,0.97236,0.9128,0.99027,0.91844,0.96368,0.93916,0.98325,0.9455,0.9876,0.81649,0.9741,0.81953,0.98213,0.78903,0.97759,0.84485,0.95623,0.83906,0.92176,0.84166,0.87594,0.83182,0.84422,0.82572,0.81311,0.82825,0.78208,0.83792,0.80378,0.80883,0.83476,0.79869,0.86145,0.79075,0.86747,0.80769,0.89705,0.79093,0.90658,0.81928,0.93049,0.7778,0.94192,0.80273,0.95343,0.82796,0.96614,0.79276,0.97588,0.76179,0.9576,0.76675,0.95214,0.75142,0.9709,0.74573,0.56511,0.98068,0.59199,0.95912,0.5618,0.96317,0.59147,0.98876,0.92394,0.76272,0.89107,0.77853,0.63822,0.95333,0.62498,0.98652,0.63764,0.98675,0.62556,0.9531,0.63875,0.92294,0.62609,0.9227,0.89275,0.94026,0.92083,0.9684,0.88692,0.95267,0.92743,0.95331,0.94866,0.98013,0.95464,0.96489,0.97012,0.98788,0.97583,0.97223,0.93951,0.92882,0.90339,0.91208,0.86283,0.92348,0.85648,0.94041,0.67247,0.95105,0.67304,0.91826,0.69878,0.95051,0.67183,0.98767,0.69812,0.98874,0.72696,0.98632,0.72757,0.95121,0.75782,0.9797,0.69938,0.91625,0.82921,0.93158,0.95167,0.90404,0.56771,0.94307,0.59248,0.93075,0.59199,0.95912,0.62556,0.9531,-1.2139,2.176,-1.2439,2.0919,-1.2742,2.1759,-1.1504,2.176,-1.1505,2.0914,-4.1649,1.0666,-4.1978,1.1702,-4.1378,1.1701,-4.1971,1.2591,-1.1504,2.247,-1.2133,2.247,-1.2741,2.247,-1.6415,2.2543,-1.6604,2.1832,-1.6887,2.2543,-1.6886,2.1832,-1.7463,2.2543,-1.7468,2.1832,-1.7483,2.0989,-1.6885,2.0988,-2.1742,2.1358,-2.2337,2.0337,-2.2297,2.1357,-2.3126,2.0338,-2.3135,2.1357,-2.8399,2.0347,-2.8779,2.0347,-2.8394,2.1357,-2.9263,2.0348,-2.9262,2.1357,-3.464,1.9898,-3.4925,2.0915,-3.418,2.0915,-3.4908,2.1781,-3.4175,2.1781,-3.4911,2.2902,-3.4162,2.2901,-3.4173,2.3869,-3.4896,2.3869,-3.437,2.4891,-2.8388,2.2223,-2.926,2.2223,-2.2303,2.2223,-2.3133,2.2223,-2.1748,2.2223,-2.1759,2.3344,-2.2327,2.3343,-2.1781,2.4305,-2.2326,2.4302,-2.1999,2.5368,-2.3131,2.3343,-2.3127,2.4304,-2.2726,2.5368,-2.9258,2.3344,-2.839,2.3344,-2.9043,2.431,-2.8395,2.4312,-2.8933,2.5347,-1.7452,2.3463,-1.6912,2.3464,-1.6414,2.3465,-1.2743,2.339,-1.2118,2.3391,-1.1505,2.3391,-1.1506,2.4186,-1.2133,2.4186,-1.2742,2.4184,-1.2118,2.5031,-1.6414,2.4261,-1.6925,2.4261,-1.6925,2.5107,-1.7467,2.4259,-4.139,1.2591,-4.1964,1.3827,-4.1382,1.3829,-4.1961,1.4792,-4.1398,1.4792,-4.1691,1.5541,-3.8738,1.2589,-3.875,1.3829,-3.8242,1.3828,-3.8728,1.4794,-3.8254,1.4795,-3.7765,1.4795,-3.8291,1.5541,-3.7638,1.3843,-3.816,1.2591,-3.8154,1.171,-3.876,1.1703,-3.8196,1.0785,-3.8738,1.0785,-3.7915,1.1704,-3.7694,1.2592,-2.423,1.2594,-2.4225,1.387,-2.3451,1.2594,-2.3445,1.3871,-2.4117,1.4798,-2.3438,1.4799,-2.3453,1.5542,-2.2724,1.48,-2.27,1.388,-2.2719,1.2597,-2.3451,1.1691,-2.4209,1.1697,-2.3453,1.0785,-2.4203,1.0785,-2.2724,1.1693,-2.9182,1.1342,-2.9182,1.2312,-2.8235,1.2314,-2.9182,1.3261,-2.8378,1.3262,-2.8556,1.4187,-2.9096,1.4187,-2.8787,1.4931,-2.823,1.1342,-2.8748,1.0171,-2.9184,1.0173,-2.8222,1.0169,-2.7646,1.0166,-2.7646,1.1343,-2.7612,1.2314,-2.7616,1.3258,-2.8082,1.3263,-2.7621,1.4184,-2.794,1.4184,-2.7628,1.4932,-2.7355,1.4186,-2.7355,1.3271,-2.7357,1.2318,-2.7354,1.1343,-2.7505,1.0166,-1.6584,0.15685,-1.6884,0.072751,-1.7187,0.15683,-1.5949,0.15686,-1.595,0.072314,-3.8427,-0.95255,-3.8757,-0.84889,-3.8157,-0.84902,-3.875,-0.76002,-1.5949,0.22792,-1.6578,0.2279,-1.7186,0.22789,-1.7748,0.23518,-1.7936,0.16412,-1.8219,0.23516,-1.8218,0.16412,-1.8795,0.23515,-1.88,0.16409,-1.8218,0.079666,-1.8815,0.079764,-2.2532,0.16404,-2.2829,0.080269,-2.3088,0.16402,-2.3917,0.080317,-2.3926,0.16404,-2.8394,0.16401,-2.8399,0.081066,-2.9262,0.16401,-2.9263,0.081139,-3.464,0.044246,-3.4925,0.12774,-3.418,0.12773,-3.4908,0.19877,-3.4175,0.19878,-3.4911,0.29081,-3.4162,0.29077,-3.4173,0.37022,-3.4896,0.37016,-3.437,0.45411,-2.926,0.23506,-2.8388,0.23507,-2.9258,0.32708,-2.839,0.32713,-2.9258,0.40635,-2.8395,0.40654,-2.8933,0.49153,-2.3093,0.23505,-2.3923,0.23507,-2.2539,0.23508,-2.255,0.32707,-2.2909,0.32701,-2.256,0.36127,-2.2774,0.35861,-2.2572,0.40599,-2.3922,0.327,-2.3117,0.32698,-2.3917,0.40591,-2.3117,0.4057,-2.3112,0.49322,-1.8784,0.32724,-1.8244,0.32734,-1.7746,0.32737,-1.7746,0.40701,-1.8258,0.40701,-1.8799,0.40675,-1.8257,0.49162,-1.7188,0.31994,-1.6563,0.31998,-1.595,0.32002,-1.5951,0.39946,-1.6578,0.3995,-1.7187,0.3993,-1.6563,0.48402,-3.8168,-0.75998,-3.8742,-0.63642,-3.816,-0.63621,-3.874,-0.53993,-3.8177,-0.53991,-3.8469,-0.46497,-3.7904,-0.76019,-3.7917,-0.63616,-3.7409,-0.6363,-3.7894,-0.53971,-3.742,-0.53964,-3.7458,-0.46502,-3.6932,-0.53958,-3.6804,-0.63482,-3.7327,-0.76003,-3.732,-0.84807,-3.7926,-0.84885,-3.7363,-0.94057,-3.7904,-0.94062,-3.7082,-0.84869,-3.686,-0.75988,-3.2656,-0.75971,-3.3435,-0.75971,-3.343,-0.63214,-3.2657,-0.84998,-3.3414,-0.84945,-3.2658,-0.94065,-3.3408,-0.94062,-3.1929,-0.8498,-3.1924,-0.75945,-3.265,-0.63199,-3.31,-0.5393,-3.2644,-0.5392,-3.2658,-0.46487,-3.1929,-0.53912,-3.1905,-0.63112,-2.9182,-0.65905,-2.9182,-0.5642,-2.8235,-0.6589,-2.8378,-0.56406,-2.8556,-0.47154,-2.9096,-0.47157,-2.8787,-0.39714,-2.9182,-0.7561,-2.823,-0.75602,-2.9184,-0.87299,-2.8222,-0.87334,-2.7646,-0.8737,-2.7646,-0.75601,-2.7612,-0.6589,-2.7616,-0.56442,-2.8082,-0.56395,-2.7621,-0.4719,-2.794,-0.47184,-2.7628,-0.39711,-2.7355,-0.47161,-2.7355,-0.56313,-2.7357,-0.65844,-2.7354,-0.75592,-2.5947,-0.75572,-2.6085,-0.65748,-2.5743,-0.65759,-2.6048,-0.56337,-2.5769,-0.56264,-2.5911,-0.47127,-2.534,-0.65838,-2.5034,-0.65794,-2.5164,-0.75577,-2.4995,-0.56239,-2.5302,-0.56288,-2.5194,-0.47137,-2.7505,-0.8737,-2.9118,1.072,-2.9117,1.1804,-2.823,1.1804,-3.1743,1.0092,-3.2318,1.0938,-3.1465,1.0934,-3.2314,1.0092,-3.7848,1.0093,-3.8277,1.0943,-3.7725,1.0948,-3.826,1.0092,-4.1649,0.99817,-4.1978,1.0943,-4.1378,1.0942,-4.1971,1.1767,-3.826,1.1766,-2.8222,1.0716,-2.7646,1.0713,-2.7646,1.1804,-2.7505,1.0713,-2.7354,1.1805,-2.7357,1.2709,-2.7612,1.2705,-2.7621,1.4439,-2.7355,1.4442,-2.7628,1.5133,-2.817,1.4424,-2.8235,1.2705,-2.9117,1.2704,-3.1741,1.177,-3.1145,1.1773,-3.2334,1.177,-3.782,1.1767,-3.7465,1.1769,-3.7883,1.2915,-3.7423,1.2928,-3.2331,1.2953,-3.1737,1.2955,-3.1131,1.2963,-2.9117,1.3583,-2.8378,1.3585,-2.8721,1.5133,-3.1332,1.3816,-3.1732,1.3815,-3.2248,1.3814,-3.1743,1.4505,-3.752,1.3812,-3.7892,1.3811,-3.8253,1.381,-3.827,1.2916,-4.1964,1.2914,-4.139,1.1768,-4.1382,1.2915,-4.1837,1.3808,-4.1468,1.3809,-4.1691,1.4504,-3.8095,1.4503,-3.7706,1.4503,-3.1279,1.3816,-1.7187,4.4155,-1.6584,4.4155,-1.719,4.3379,-1.7186,4.481,-1.7748,4.4878,-1.7936,4.4222,-1.8219,4.4878,-1.8218,4.4222,-1.8795,4.4878,-1.88,4.4222,-1.8218,4.3443,-1.8815,4.3444,-1.8808,4.2536,-1.8213,4.2536,-1.6578,4.3379,-1.6596,4.2531,-1.5949,4.4155,-1.5949,4.4811,-1.6578,4.4811,-1.7188,4.566,-1.7746,4.5728,-1.8244,4.5728,-1.8784,4.5727,-2.4982,4.5726,-2.4971,4.4877,-2.6149,4.4877,-2.6144,4.4221,-2.4964,4.4221,-2.4978,4.3448,-2.6141,4.3449,-2.6122,4.2536,-2.696,4.2536,-2.6954,4.1113,-2.6154,4.1113,-1.8525,4.1113,-1.5951,4.253,-1.6175,4.1115,-1.595,4.3375,-3.6348,3.3916,-3.5748,3.3915,-3.6018,3.3028,-3.6341,3.4677,-3.5759,3.4677,-3.6333,3.5735,-1.6563,4.566,-1.595,4.5661,-1.7187,4.6392,-1.6578,4.6394,-1.616,4.6394,-1.6563,4.7174,-3.5752,3.5737,-3.6331,3.6562,-3.5768,3.6562,-3.606,3.7204,-4.0939,3.4675,-4.0952,3.5738,-4.0444,3.5736,-4.0729,3.6564,-4.0455,3.6564,-4.0493,3.7203,-3.9967,3.6565,-3.9839,3.5749,-4.0362,3.4677,-4.0355,3.3923,-4.0961,3.3916,-4.0398,3.313,-4.0116,3.3917,-3.9895,3.4678,-3.5412,3.4679,-3.5407,3.5772,-3.4633,3.4679,-3.4627,3.5773,-3.5299,3.6567,-3.462,3.6568,-3.4635,3.7205,-3.3905,3.6569,-3.3881,3.5781,-3.3901,3.4682,-3.4633,3.3906,-3.5391,3.3911,-3.4635,3.313,-3.3906,3.3908,-2.9182,3.471,-2.9182,3.5542,-2.8235,3.5543,-2.9182,3.6354,-2.8378,3.6355,-2.8556,3.7148,-2.9096,3.7147,-2.8787,3.7785,-2.8082,3.6356,-2.7616,3.6352,-2.7621,3.7144,-2.794,3.7145,-2.7628,3.7785,-2.7355,3.7147,-2.7355,3.6363,-2.7612,3.5543,-2.7357,3.5547,-2.7646,3.4711,-2.7354,3.4712,-2.5947,3.4714,-2.6085,3.5555,-2.5743,3.5554,-2.6048,3.6361,-2.5769,3.6367,-2.5911,3.715,-2.534,3.5547,-2.5034,3.5551,-2.5164,3.4713,-2.4995,3.6369,-2.5302,3.6365,-2.5194,3.7149,-1.9386,3.5482,-1.8771,3.4788,-1.9388,3.4788,-1.8769,3.5482,-1.9388,3.6159,-1.8768,3.6157,-1.9384,3.6563,-1.8767,3.6562,-1.9382,3.681,-1.8767,3.681,-1.8763,3.7336,-1.829,3.6809,-1.8253,3.6554,-1.8197,3.6161,-1.8077,3.5484,-1.7868,3.6805,-1.7167,3.5488,-1.7172,3.6804,-1.7352,3.7004,-1.7769,3.7047,-1.7651,3.7336,-1.7158,3.4789,-0.98584,0.59939,-0.89447,0.59947,-0.98587,0.51451,-0.89504,0.69036,-0.9858,0.69026,-0.8948,0.78493,-0.98541,0.78301,-0.94338,0.85739,-0.83849,0.59941,-0.83665,0.69027,-0.79859,0.5994,-0.79849,0.69022,-0.79864,0.78199,-0.75845,0.69027,-0.75774,0.59947,-0.66257,0.59955,-0.6626,0.69039,-0.59992,0.59955,-0.60013,0.69037,-0.6004,0.78546,-0.52117,0.69044,-0.52021,0.59957,-0.52048,0.51438,-0.59966,0.51445,-0.5207,0.41583,0.031395,0.63481,0.072822,0.51102,0.031355,0.51097,0.072825,0.63464,0.031573,0.74832,0.056998,0.74672,0.054325,0.79723,0.12584,0.51102,0.12483,0.63491,0.072739,0.74572,0.12614,0.74684,0.072739,0.78546,0.10284,0.7861,0.072739,0.83682,0.16822,0.63536,0.18748,0.51107,0.16794,0.51101,0.18731,0.63561,0.16818,0.74493,0.19018,0.74484,0.18878,0.78721,0.21299,0.51116,0.21259,0.63594,0.21218,0.74474,0.21305,0.83701,0.26449,0.74501,0.26453,0.63575,0.26455,0.5111,0.21338,0.34318,0.1677,0.34316,0.21406,0.12419,0.12649,0.12562,0.075171,0.12598,0.12602,0.34314,0.072739,-0.039977,0.032381,0.12653,-0.59783,0.082682,-0.66247,0.15409,-0.5984,0.15485,-0.66254,0.082421,-0.98572,0.081055,-0.89371,0.15491,-0.89428,0.081734,-0.98579,0.15564,-1.716,3.1024,-1.8066,3.1824,-1.7148,3.1834,-1.8068,3.1035,-1.8805,3.182,-1.8806,3.1037,-2.7658,3.1105,-2.8226,3.1893,-2.7651,3.1904,-2.8233,3.1105,-2.9182,3.191,-2.9182,3.1119,-3.5369,3.1909,-3.4658,3.1206,-3.4955,3.0584,-3.4639,3.1962,-3.5385,3.313,-2.9182,3.3232,-2.9184,3.3709,-2.8221,3.3226,-2.8222,3.3706,-2.823,3.4711,-2.7646,3.3703,-2.7505,3.3703,-1.9393,3.3956,-1.877,3.3957,-1.8075,3.3957,-1.8079,3.4788,-1.7168,3.3953,-0.98599,0.41547,-0.89445,0.51446,-0.79862,0.51441,-0.83858,0.51436,-0.75847,0.51431,-0.66256,0.51441,-0.59928,0.41563,-0.66246,0.41551,-0.66249,0.32979,-0.986,0.33013,-0.89463,0.41548,-0.89398,0.32971,-1.716,3.318,-1.8074,3.3168,-1.8805,3.3169,-1.9064,3.3169,-2.7648,3.3236,-0.59914,0.32968,-0.52118,0.32914,0.032427,0.34316,0.075171,0.34316,-0.79876,0.41555,-4.0939,3.313,-4.0554,3.1023,-2.9268,4.2536,-2.8416,4.1111,-2.9267,4.1111,-2.841,4.2536,-2.9263,4.3456,-2.8399,4.3456,-2.6973,4.3449,-2.6982,4.4221,-2.9262,4.4221,-2.8394,4.4221,-3.464,4.3116,-3.4925,4.3886,-3.418,4.3886,-3.6244,4.3114,-3.6719,4.3887,-3.624,4.3887,-3.6721,4.3114,-3.6248,4.251,-3.6713,4.251,-3.6247,4.1121,-3.6712,4.1121,-3.8389,4.2467,-3.8394,4.1136,-3.9073,4.2467,-3.9073,4.1136,-0.56505,1.1754,-0.56517,1.0336,-0.61349,1.1756,-0.61353,1.0314,-0.67271,1.1751,-0.6727,1.0366,0.72759,0.12435,0.66172,0.001422,0.66206,0.12575,0.61316,0.12614,0.92747,0.023379,0.86223,0.024818,0.86336,0.17017,0.8619,0.17062,0.86192,0.022113,0.81303,0.094734,0.81323,0.34322,0.8618,0.34318,0.81356,0.48558,0.86209,0.48563,0.83778,0.62914,0.92752,0.17023,0.86896,0.34319,0.92778,0.3432,0.92782,0.48554,0.89534,0.6287,0.61337,0.34322,0.40334,0.34311,0.35803,0.12442,0.35805,0.34311,0.30958,0.34314,0.26453,0.34324,0.3095,0.5115,0.32819,0.51151,0.30948,0.63628,0.33374,0.6362,0.30955,0.74704,0.33805,0.74695,0.32983,0.78474,0.35799,0.63612,0.35796,0.74689,0.35789,0.83692,0.40338,0.74649,0.40333,0.63587,0.4033,0.51134,0.35812,0.51152,0.4686,0.34338,0.45764,0.5117,0.48718,0.51151,0.46296,0.63666,0.49796,0.6363,0.47209,0.7449,0.4967,0.74556,0.49303,0.83642,0.66223,0.48563,0.6137,0.48558,0.61296,0.62963,0.66193,0.34318,0.72791,0.3432,-0.7417,1.2961,-0.78554,1.1748,-0.816,1.2948,-0.61374,1.2981,-0.67271,1.2961,-0.56448,1.2988,-3.9074,4.325,-3.8357,4.325,-3.9079,4.3906,-0.56424,1.4163,-0.61413,1.4163,-0.67274,1.4163,-0.74148,1.4163,-0.81591,1.4163,0.72796,0.48554,0.66286,0.62865,0.61237,0.75299,0.66245,0.75523,0.66258,0.86148,0.70324,0.75503,0.7281,0.62876,-0.81583,1.5784,-0.74141,1.5771,-0.7422,1.7073,-0.8158,1.7071,-0.78145,1.7897,-0.61407,1.5762,-0.67275,1.5771,-0.67273,1.7076,-0.56452,1.5763,-0.6136,1.7078,-0.61356,1.7918,-0.56575,1.7077,-3.8323,4.4756,-3.9072,4.4756,-3.9072,4.5483,-3.8325,4.3905,-3.6723,4.4542,-3.6244,4.4542,-3.6307,4.5391,-3.6723,4.5391,-3.6336,4.6118,-3.6727,4.6121,-3.6386,4.6575,-3.5617,4.4542,-3.5632,4.5391,-3.6245,4.5391,-3.5947,4.6118,-3.4908,4.4542,-3.4175,4.4542,-3.4173,4.6124,-3.4896,4.6123,-3.437,4.6898,-2.926,4.4877,-2.8388,4.4877,-2.6979,4.4877,-2.6978,4.5725,-2.6173,4.5725,-2.5003,4.6454,-2.6173,4.6451,-2.6831,4.6453,-2.6168,4.7259,-2.9258,4.5726,-2.839,4.5726,-2.9258,4.6457,-2.8395,4.6459,-2.8933,4.7243,-3.8347,4.5482,-3.8771,4.6267,-1.8642,4.6461,-1.8258,4.6463,-1.7746,4.6463,-1.8257,4.7244,0.31178,-0.65214,0.32932,-0.85483,0.27374,-0.65214,0.36963,-0.85744,0.35874,-0.65214,0.30692,-0.57305,0.28193,-0.57305,0.30633,-0.46431,0.34358,-0.57305,0.36963,-0.9914,0.24946,-0.85744,0.25038,-0.9914,0.2164,-0.85483,0.15806,-0.9914,0.15919,-0.85744,-1.842,-0.79275,-1.8415,-0.93947,-1.7937,-0.94579,-1.7982,-0.78942,-1.7791,-0.79088,-1.7293,-0.78519,-1.7183,-0.94507,-1.2822,-0.94527,-1.2382,-0.79362,-1.2988,-0.79362,-1.2547,-0.94527,-1.1903,-0.7907,-1.2436,-0.79362,-1.1893,-0.94527,-1.1908,-0.56343,-1.2427,-0.56343,-1.2385,-0.4538,-1.2004,-0.4538,-1.2189,-0.33249,-1.2168,-0.56343,-1.2319,-0.41273,-1.2071,-0.40979,-1.1774,-0.55772,-1.2669,-0.55914,-1.3565,-0.56057,-1.7302,-0.55784,-1.8032,-0.56755,-1.7996,-0.46522,-1.7306,-0.46231,-1.756,-0.33691,-1.842,-0.56814,-1.8354,-0.46545,-1.8161,-0.34848,0.20571,-0.65214,0.24438,-0.65214,0.20992,-0.57074,0.15847,-0.65214,0.15972,-0.56966,0.21324,-0.46435,0.24535,-0.57074,0.19851,-0.86021,0.15235,-0.99153,0.15235,-0.86021,0.26669,-0.86021,0.24825,-0.65491,0.21021,-0.65491,0.16325,-0.65491,0.21507,-0.57581,0.24006,-0.57581,0.21566,-0.46432,0.17841,-0.57581,0.26885,-0.65752,0.3046,-0.65491,0.31207,-0.5735,0.27664,-0.5735,0.30875,-0.46436,0.36227,-0.57243,0.36352,-0.65491,0.3628,-0.86021,0.2939,-0.86021,0.26577,-0.99153,0.36393,-0.99153,-1.2509,-0.55889,-1.2083,-0.56343,-1.2109,-0.4538,0.98427,0.63389,0.98766,0.62161,0.98254,0.62761,0.99375,0.62267,0.69735,0.59881,0.70049,0.61144,0.7068,0.60732,0.70432,0.59952,0.72662,0.60542,0.72227,0.59175,0.7235,0.58925,0.72931,0.60703,0.72164,0.61489,0.96186,0.62701,0.96446,0.61535,0.95971,0.62661,0.96203,0.61446,0.93991,0.61141,0.9501,0.58545,0.9694,0.60381,0.97118,0.60553,0.97997,0.60048,0.71715,0.58438,0.71972,0.58408,0.97848,0.59837,0.96105,0.57641,0.94521,0.5623,0.93441,0.5714,0.93139,0.55365,0.92069,0.5618,0.92757,0.54722,0.91698,0.55336,0.91454,0.53007,0.9013,0.53112,0.90389,0.55544,0.89255,0.55636,0.89008,0.53157,0.87642,0.53239,0.8786,0.558,0.86465,0.559,0.86317,0.5329,0.87424,0.50679,0.8617,0.50679,0.85158,0.53324,0.85125,0.50679,0.84192,0.53325,0.84342,0.50679,0.82719,0.53324,0.82938,0.50679,0.8134,0.50679,0.81005,0.53202,0.79215,0.50679,0.78883,0.52938,0.77782,0.50679,0.77452,0.52466,0.9121,0.50679,0.92625,0.527,0.92492,0.50679,0.89871,0.50679,0.88761,0.50679,0.77122,0.54254,0.78551,0.55198,0.76272,0.54814,0.77895,0.55784,0.75314,0.55228,0.76709,0.56622,0.73886,0.5653,0.74776,0.57944,0.75304,0.6056,0.72454,0.61599,0.73233,0.61992,0.95021,0.62625,0.95319,0.64027,0.94432,0.64054,0.91055,0.60402,0.92056,0.64581,0.8958,0.60767,0.89775,0.64838,0.88167,0.60774,0.87715,0.64783,0.86175,0.61358,0.85646,0.64569,0.84932,0.61491,0.86539,0.57235,0.85164,0.57337,0.85192,0.55969,0.84043,0.55972,0.83878,0.57273,0.825,0.5597,0.87986,0.56953,0.89514,0.57193,0.90639,0.56513,0.91983,0.58789,0.80669,0.55725,0.80488,0.56711,0.77334,0.59909,0.77728,0.63551,0.758,0.62994,0.74473,0.63058,0.74384,0.65572,0.95291,0.66735,0.96049,0.66642,0.93872,0.67349,0.95363,0.66968,0.93995,0.67573,0.93154,0.67687,0.92402,0.65905,0.91858,0.67551,0.9046,0.67852,0.9186,0.67793,0.90509,0.68099,0.89843,0.6798,0.89681,0.66789,0.88975,0.67684,0.87771,0.67416,0.88909,0.67934,0.87756,0.67669,0.8708,0.67479,0.8732,0.66009,0.86346,0.66486,0.8514,0.66154,0.86168,0.66742,0.85062,0.66382,0.84174,0.66024,0.84529,0.64379,0.8352,0.61251,0.83231,0.64204,0.81629,0.60676,0.82285,0.57146,0.79797,0.60244,0.79716,0.63888,0.77407,0.66576,0.77033,0.66605,0.77669,0.63881,0.76449,0.66371,0.76784,0.66522,0.7496,0.6573,0.74925,0.65986,0.74199,0.65764,0.9611,0.66876,0.9604,0.69226,0.94913,0.69619,0.96106,0.69465,0.95012,0.69848,0.94268,0.69895,0.93248,0.67887,0.76785,0.6681,0.76254,0.66563,0.74196,0.68158,0.73721,0.68064,0.96638,0.6909,0.96686,0.69336,0.96613,0.71465,0.97057,0.71727,0.95643,0.7224,0.74433,0.70686,0.73168,0.70673,0.74541,0.71236,0.73678,0.70388,0.75279,0.68779,0.75827,0.69139,0.75477,0.68616,0.75845,0.68845,0.94393,0.70123,0.95795,0.71766,0.74224,0.68411,0.73569,0.68294,0.92611,0.67439,0.92628,0.67642,0.92046,0.70159,0.90881,0.70308,0.92063,0.70406,0.90925,0.7055,0.90203,0.70451,0.89868,0.68161,0.79103,0.67093,0.78797,0.66983,0.79108,0.67368,0.78676,0.67208,0.77408,0.66827,0.76949,0.66866,0.76605,0.69248,0.92758,0.70086,0.92752,0.70353,0.92178,0.72533,0.92513,0.72972,0.9108,0.73114,0.7756,0.71648,0.76222,0.71862,0.77999,0.72196,0.76866,0.7151,0.78106,0.69627,0.77051,0.69517,0.77028,0.69187,0.78238,0.69425,0.78597,0.69877,0.78582,0.6959,0.76517,0.69505,0.90265,0.70709,0.91324,0.72585,0.8947,0.67921,0.89435,0.68101,0.884,0.70077,0.87444,0.69888,0.88333,0.70315,0.87416,0.70133,0.87267,0.7189,0.86828,0.72264,0.86628,0.70121,0.86638,0.69869,0.87046,0.67671,0.81693,0.66876,0.81329,0.66767,0.81791,0.67121,0.81566,0.63796,0.79816,0.66707,0.82311,0.66093,0.82052,0.66363,0.81688,0.65059,0.86774,0.67021,0.86668,0.67204,0.85326,0.68263,0.8453,0.67846,0.8387,0.6778,0.84128,0.66263,0.832,0.66071,0.83203,0.66322,0.82432,0.66301,0.82031,0.66648,0.82245,0.68116,0.85845,0.68555,0.85706,0.68759,0.85208,0.68481,0.84447,0.6808,0.8383,0.68031,0.83261,0.67831,0.82508,0.67965,0.82549,0.68152,0.82208,0.68386,0.82514,0.70243,0.84474,0.69858,0.84488,0.70376,0.83926,0.69589,0.83518,0.70057,0.83261,0.68073,0.82772,0.69802,0.83186,0.69752,0.79418,0.66741,0.79886,0.66948,0.79335,0.67003,0.79343,0.69264,0.89003,0.70226,0.88926,0.70468,0.87792,0.71985,0.88087,0.72417,0.80797,0.71194,0.79566,0.71577,0.81083,0.7171,0.80132,0.71168,0.81007,0.69421,0.79941,0.69386,0.79824,0.69163,0.81119,0.69211,0.81198,0.6698,0.81447,0.69332,0.81496,0.69617,0.79255,0.69542,-30.622,-83.367,-29.315,-80.513,-29.37,-83.157,-30.795,-83.644,-28.91,-80.646,-29.467,-83.518,30.793,-85.366,29.464,-85.244,29.039,-82.993,0.99375,0.62267,0.98427,0.63389,0.98766,0.62161,0.69735,0.59881,0.7068,0.60732,0.70049,0.61144,0.70432,0.59952,0.72668,0.60475,0.72164,0.61489,0.72523,0.61467,0.72935,0.60698,0.72213,0.59148,0.71695,0.58442,0.72361,0.5894,0.71961,0.58394,0.74776,0.57944,0.73886,0.5653,0.9694,0.60381,0.96105,0.57641,0.97848,0.59837,0.9501,0.58545,0.94521,0.5623,0.93441,0.5714,0.91983,0.58789,0.93991,0.61141,0.96203,0.61446,0.96446,0.61535,0.97118,0.60553,0.97997,0.60048,0.98254,0.62761,0.96186,0.62701,0.95971,0.62661,0.95021,0.62625,0.75304,0.6056,0.73233,0.61992,0.76709,0.56622,0.77334,0.59909,0.77895,0.55784,0.80488,0.56711,0.79797,0.60244,0.82285,0.57146,0.81629,0.60676,0.83878,0.57273,0.8352,0.61251,0.84932,0.61491,0.84529,0.64379,0.83231,0.64204,0.84174,0.66024,0.832,0.66071,0.83203,0.66322,0.84128,0.66263,0.8387,0.6778,0.83261,0.67831,0.83261,0.68073,0.8383,0.68031,0.83518,0.70057,0.83186,0.69752,0.82514,0.70243,0.84474,0.69858,0.84488,0.70376,0.85706,0.68759,0.85208,0.68481,0.83926,0.69589,0.84447,0.6808,0.8453,0.67846,0.85062,0.66382,0.8514,0.66154,0.85646,0.64569,0.86175,0.61358,0.87715,0.64783,0.88167,0.60774,0.87986,0.56953,0.89514,0.57193,0.8786,0.558,0.89255,0.55636,0.87642,0.53239,0.89008,0.53157,0.87424,0.50679,0.88761,0.50679,0.89871,0.50679,0.9013,0.53112,0.91454,0.53007,0.9121,0.50679,0.92625,0.527,0.92492,0.50679,0.77782,0.50679,0.78883,0.52938,0.77452,0.52466,0.79215,0.50679,0.81005,0.53202,0.8134,0.50679,0.82719,0.53324,0.82938,0.50679,0.84342,0.50679,0.84192,0.53325,0.85125,0.50679,0.85158,0.53324,0.8617,0.50679,0.86317,0.5329,0.86465,0.559,0.86539,0.57235,0.85164,0.57337,0.84043,0.55972,0.825,0.5597,0.80669,0.55725,0.78551,0.55198,0.76272,0.54814,0.77122,0.54254,0.92069,0.5618,0.92757,0.54722,0.93139,0.55365,0.91698,0.55336,0.90639,0.56513,0.75314,0.55228,0.91055,0.60402,0.94432,0.64054,0.95319,0.64027,0.758,0.62994,0.74473,0.63058,0.77728,0.63551,0.79716,0.63888,0.81566,0.63796,0.82336,0.66085,0.82432,0.66301,0.82549,0.67961,0.82599,0.68173,0.82772,0.69802,0.82208,0.68386,0.82273,0.6812,0.85845,0.68555,0.85326,0.68263,0.86168,0.66742,0.86668,0.67204,0.86774,0.67021,0.86346,0.66486,0.8732,0.66009,0.8708,0.67479,0.87771,0.67416,0.87046,0.67671,0.87756,0.67669,0.86638,0.69869,0.81455,0.69335,0.81198,0.6698,0.81791,0.67121,0.81111,0.69208,0.81007,0.69421,0.81496,0.69617,0.81083,0.7171,0.80797,0.71194,0.79566,0.71577,0.80132,0.71168,0.79941,0.69386,0.79838,0.6916,0.79886,0.66948,0.81322,0.66765,0.817,0.66878,0.7983,0.66706,0.79335,0.67003,0.79404,0.66742,0.88909,0.67934,0.8947,0.67921,0.89435,0.68101,0.88975,0.67684,0.89775,0.64838,0.89681,0.66789,0.89843,0.6798,0.9046,0.67852,0.89868,0.68161,0.90509,0.68099,0.90203,0.70451,0.78592,0.69595,0.78676,0.67208,0.79108,0.67368,0.78228,0.6942,0.78106,0.69627,0.78597,0.69877,0.77999,0.72196,0.7756,0.71648,0.76222,0.71862,0.76866,0.7151,0.77051,0.69422,0.77044,0.69184,0.77408,0.66827,0.78787,0.66979,0.79113,0.67096,0.77423,0.66575,0.76949,0.66866,0.77017,0.66606,0.9186,0.67793,0.92611,0.67439,0.92628,0.67642,0.91858,0.67551,0.92056,0.64581,0.92402,0.65905,0.93154,0.67687,0.76793,0.66525,0.77669,0.63881,0.76441,0.66367,0.76254,0.66563,0.76785,0.6681,0.75853,0.6885,0.75468,0.6861,0.75279,0.68779,0.75812,0.69109,0.74541,0.71236,0.74433,0.70686,0.73168,0.70673,0.73678,0.70388,0.74224,0.68411,0.7421,0.68161,0.75034,0.66004,0.74974,0.65734,0.74369,0.65568,0.95291,0.66735,0.96049,0.66642,0.93872,0.67349,0.93995,0.67573,0.95363,0.66968,0.9611,0.66876,0.74199,0.65764,0.73706,0.68061,0.9604,0.69226,0.96638,0.6909,0.94913,0.69619,0.95012,0.69848,0.96106,0.69465,0.96686,0.69336,0.73569,0.68294,0.96613,0.71465,0.97057,0.71727,0.95795,0.71766,0.95643,0.7224,0.94393,0.70123,0.94268,0.69895,0.93248,0.67887,0.8958,0.60767,0.90389,0.55544,0.85192,0.55969,0.90881,0.70308,0.92046,0.70159,0.92758,0.70086,0.76588,0.6925,0.76517,0.69505,0.92063,0.70406,0.92752,0.70353,0.90925,0.7055,0.91324,0.72585,0.92178,0.72533,0.92513,0.72972,0.9108,0.73114,0.90265,0.70709,0.79672,0.64282,0.87444,0.69888,0.884,0.70077,0.89003,0.70226,0.79329,0.69267,0.79349,0.6952,0.88333,0.70315,0.88926,0.70468,0.87416,0.70133,0.87267,0.7189,0.87792,0.71985,0.88087,0.72417,0.86828,0.72264,0.86628,0.70121,0.81688,0.65059,0.82063,0.66371,0.82031,0.66648,-22.077,-53.249,-21.651,-56.049,-22.844,-56.488,-21.724,-53.576,-21.731,-55.823,-22.996,-56.243]], "faces": [42,0,1,2,0,0,1,2,0,1,2,42,0,3,1,0,0,3,1,0,3,1,42,3,0,4,0,3,0,4,3,0,4,42,10,9,7,0,5,6,7,5,6,7,42,10,11,9,0,5,8,6,5,8,6,42,10,12,11,0,5,9,8,5,9,8,42,12,10,13,0,9,5,10,9,5,10,42,13,10,14,0,10,5,11,10,5,11,42,10,7,14,0,5,7,11,5,7,11,42,7,15,14,0,7,12,11,7,12,11,42,15,7,4,0,12,7,13,12,7,4,42,4,0,15,0,4,0,14,4,0,12,42,15,0,16,0,14,0,15,12,0,13,42,0,2,16,0,0,2,15,0,2,13,42,2,17,16,0,2,16,15,2,14,13,42,2,18,17,0,2,17,16,2,15,14,42,2,19,18,0,2,18,17,2,16,15,42,1,19,2,0,1,18,2,1,16,2,42,56,55,11,0,19,20,21,17,18,8,42,56,57,55,0,19,22,20,17,19,18,42,56,58,57,0,19,23,22,17,20,19,42,56,59,58,0,19,24,23,17,21,20,42,12,59,56,0,25,24,19,9,21,17,42,12,60,59,0,25,26,24,9,22,21,42,12,13,60,0,9,10,27,9,10,22,42,61,60,13,0,28,27,10,23,22,10,42,61,62,60,0,28,29,27,23,24,22,42,61,63,62,0,28,30,29,23,25,24,42,63,61,64,0,30,28,31,25,23,26,42,64,61,65,0,31,28,32,26,23,27,42,65,61,13,0,32,28,10,27,23,10,42,65,13,66,0,32,10,33,27,10,28,42,13,14,66,0,10,11,33,10,11,28,42,66,14,67,0,33,11,34,28,11,29,42,14,15,67,0,11,12,34,11,12,29,42,67,15,16,0,35,14,15,29,12,13,42,67,16,68,0,36,37,38,29,13,30,42,69,68,16,0,39,38,37,31,30,13,42,70,68,69,0,40,38,39,32,30,31,42,70,65,68,0,41,32,42,32,27,30,42,64,65,70,0,31,32,41,26,27,32,42,64,70,71,0,31,41,43,26,32,33,42,70,69,71,0,40,39,44,32,31,33,42,72,71,69,0,45,44,39,34,33,31,42,73,71,72,0,46,43,47,35,33,34,42,73,74,71,0,46,48,43,35,36,33,42,74,73,75,0,48,46,49,36,35,37,42,73,76,75,0,46,50,49,35,38,37,42,77,76,73,0,51,50,46,39,38,35,42,76,77,78,0,50,51,52,38,39,40,42,77,79,78,0,51,53,52,39,41,40,42,79,77,80,0,53,51,54,41,39,42,42,77,72,80,0,51,47,54,39,34,42,42,77,73,72,0,51,46,47,39,35,34,42,80,72,81,0,55,45,56,42,34,43,42,72,69,81,0,45,39,56,34,31,43,42,69,82,81,0,39,57,56,31,44,43,42,69,17,82,0,39,58,57,31,14,44,42,69,16,17,0,39,37,58,31,13,14,42,17,83,82,0,58,59,57,14,45,44,42,17,84,83,0,58,60,59,14,46,45,42,17,85,84,0,58,61,60,14,47,46,42,17,86,85,0,58,62,61,14,48,47,42,18,86,17,0,17,63,16,15,48,14,42,18,87,86,0,17,64,63,15,49,48,42,88,87,18,0,65,64,17,50,49,15,42,88,89,87,0,65,66,64,50,51,49,42,90,89,88,0,67,66,65,52,51,50,42,91,89,90,0,68,66,67,53,51,52,42,92,89,91,0,69,66,68,54,51,53,42,92,93,89,0,70,71,72,54,55,51,42,94,93,92,0,73,74,75,56,55,54,42,94,95,93,0,73,76,74,56,57,55,42,59,95,94,0,24,76,73,21,57,56,42,96,95,59,0,77,76,24,58,57,21,42,96,97,95,0,77,78,76,58,59,57,42,96,98,97,0,77,79,78,58,60,59,42,96,62,98,0,77,80,79,58,24,60,42,62,96,60,0,80,77,26,24,58,22,42,60,96,59,0,26,77,24,22,58,21,42,62,99,98,0,80,81,79,24,61,60,42,62,63,99,0,29,30,82,24,25,61,42,63,100,99,0,30,83,82,25,62,61,42,100,63,74,0,83,30,48,62,25,36,42,63,64,74,0,30,31,48,25,26,36,42,74,64,71,0,48,31,43,36,26,33,42,75,100,74,0,49,83,48,37,62,36,42,100,75,101,0,83,49,84,62,37,63,42,101,75,102,0,84,49,85,63,37,64,42,75,76,102,0,49,50,85,37,38,64,42,76,103,102,0,50,86,85,38,65,64,42,76,78,103,0,50,52,86,38,40,65,42,103,78,104,0,86,52,87,65,40,66,42,104,78,105,0,87,52,88,66,40,67,42,78,106,105,0,52,89,88,40,68,67,42,78,79,106,0,52,53,89,40,41,68,42,79,107,106,0,90,91,92,41,69,68,42,107,79,108,0,91,90,93,69,41,70,42,79,109,108,0,90,94,93,41,71,70,42,109,79,80,0,95,53,54,71,41,42,42,109,80,110,0,96,55,97,71,42,72,42,80,81,110,0,55,56,97,42,43,72,42,81,111,110,0,56,98,97,43,73,72,42,81,82,111,0,56,57,98,43,44,73,42,82,112,111,0,57,99,98,44,74,73,42,82,83,112,0,57,59,99,44,45,74,42,112,83,113,0,99,59,100,74,45,75,42,83,114,113,0,59,101,100,45,76,75,42,83,115,114,0,59,102,101,45,77,76,42,83,84,115,0,59,60,102,45,46,77,42,84,116,115,0,60,103,102,46,78,77,42,85,116,84,0,61,103,60,47,78,46,42,85,117,116,0,61,104,103,47,79,78,42,87,117,85,0,105,104,61,49,79,47,42,87,118,117,0,105,106,104,49,80,79,42,87,119,118,0,105,107,106,49,81,80,42,87,120,119,0,105,108,107,49,82,81,42,89,120,87,0,72,108,105,51,82,49,42,93,120,89,0,71,108,72,55,82,51,42,93,121,120,0,71,109,108,55,83,82,42,95,121,93,0,76,110,74,57,83,55,42,95,97,121,0,76,78,110,57,59,83,42,97,122,121,0,78,111,110,59,84,83,42,123,122,97,0,112,111,78,85,84,59,42,123,124,122,0,112,113,111,85,86,84,42,123,125,124,0,112,114,113,85,87,86,42,123,126,125,0,112,115,114,85,88,87,42,98,126,123,0,79,115,112,60,88,85,42,99,126,98,0,81,115,79,61,88,60,42,99,127,126,0,81,116,115,61,89,88,42,99,100,127,0,82,83,117,61,62,89,42,100,101,127,0,83,84,117,62,63,89,42,127,101,128,0,117,84,118,89,63,90,42,101,129,128,0,84,119,118,63,91,90,42,101,102,129,0,84,85,119,63,64,91,42,102,130,129,0,85,120,119,64,92,91,42,102,131,130,0,85,121,120,64,93,92,42,103,131,102,0,86,121,85,65,93,64,42,103,132,131,0,86,122,121,65,94,93,42,103,104,132,0,86,87,122,65,66,94,42,104,133,132,0,87,123,122,66,95,94,42,104,105,133,0,87,88,123,66,67,95,42,105,134,133,0,124,125,126,67,96,95,42,106,134,105,0,92,125,124,68,96,67,42,106,135,134,0,92,127,125,68,97,96,42,106,107,135,0,92,91,127,68,69,97,42,135,107,136,0,127,91,128,97,69,98,42,136,107,137,0,128,91,129,98,69,99,42,107,108,137,0,91,93,129,69,70,99,42,137,108,138,0,129,93,130,99,70,100,42,108,139,138,0,93,131,130,70,101,100,42,108,109,139,0,93,94,131,70,71,101,42,109,140,139,0,94,132,131,71,102,101,42,109,110,140,0,96,97,133,71,72,102,42,110,141,140,0,97,134,133,72,103,102,42,110,142,141,0,97,135,134,72,104,103,42,110,111,142,0,97,98,135,72,73,104,42,111,143,142,0,98,136,135,73,105,104,42,111,112,143,0,98,99,136,73,74,105,42,143,112,144,0,136,99,137,105,74,106,42,112,113,144,0,99,100,137,74,75,106,42,144,113,145,0,137,100,138,106,75,107,42,113,146,145,0,100,139,138,75,108,107,42,113,114,146,0,100,101,139,75,76,108,42,114,147,146,0,101,140,139,76,109,108,42,114,115,147,0,101,102,140,76,77,109,42,115,148,147,0,102,141,140,77,110,109,42,115,149,148,0,102,142,141,77,111,110,42,116,149,115,0,103,142,102,78,111,77,42,116,150,149,0,103,143,142,78,112,111,42,117,150,116,0,104,143,103,79,112,78,42,118,150,117,0,106,143,104,80,112,79,42,118,151,150,0,106,144,143,80,113,112,42,118,151,152,0,145,146,147,80,113,114,42,153,151,118,0,148,144,106,115,113,80,42,153,154,151,0,148,149,144,115,116,113,42,155,154,153,0,150,149,148,117,116,115,42,155,156,154,0,150,151,149,117,118,116,42,157,156,155,0,152,151,150,119,118,117,42,157,158,156,0,152,153,151,119,120,118,42,159,158,157,0,154,153,152,121,120,119,42,159,160,158,0,154,155,153,121,122,120,42,161,160,159,0,156,155,154,123,122,121,42,161,162,160,0,156,157,155,123,124,122,42,161,163,162,0,156,158,157,123,125,124,42,161,164,163,0,156,159,158,123,126,125,42,165,164,161,0,160,159,156,127,126,123,42,165,166,164,0,160,161,159,127,128,126,42,167,166,165,0,162,161,160,129,128,127,42,167,168,166,0,162,163,161,129,130,128,42,169,168,167,0,164,163,162,131,130,129,42,169,170,168,0,164,165,163,131,132,130,42,171,170,169,0,166,165,164,133,132,131,42,128,170,171,0,167,165,166,90,132,133,42,128,172,170,0,167,168,165,90,134,132,42,128,129,172,0,118,119,169,90,91,134,42,129,173,172,0,119,170,169,91,135,134,42,129,130,173,0,119,120,170,91,92,135,42,130,174,173,0,120,171,170,92,136,135,42,130,175,174,0,120,172,171,92,137,136,42,130,131,175,0,120,121,172,92,93,137,42,131,176,175,0,121,173,172,93,138,137,42,131,132,176,0,121,122,173,93,94,138,42,132,177,176,0,122,174,173,94,139,138,42,132,133,177,0,122,123,174,94,95,139,42,133,178,177,0,123,175,174,95,140,139,42,133,179,178,0,126,176,177,95,141,140,42,134,179,133,0,125,176,126,96,141,95,42,180,179,134,0,178,176,125,142,141,96,42,179,180,181,0,176,178,179,141,142,143,42,180,182,181,0,178,180,179,142,144,143,42,180,183,182,0,178,181,180,142,145,144,42,184,183,180,0,182,181,178,146,145,142,42,183,184,185,0,181,182,183,145,146,147,42,184,136,185,0,182,128,183,146,98,147,42,184,135,136,0,182,127,128,146,97,98,42,135,184,134,0,127,182,125,97,146,96,42,134,184,180,0,125,182,178,96,146,142,42,185,136,186,0,183,128,184,147,98,148,42,136,137,186,0,128,129,184,98,99,148,42,186,137,187,0,184,129,185,148,99,149,42,137,138,187,0,129,130,185,99,100,149,42,138,188,187,0,130,186,185,100,150,149,42,138,189,188,0,130,187,186,100,151,150,42,139,189,138,0,131,187,130,101,151,100,42,139,190,189,0,131,188,187,101,152,151,42,140,190,139,0,132,188,131,102,152,101,42,140,141,190,0,132,189,188,102,103,152,42,141,191,190,0,189,190,188,103,153,152,42,191,141,192,0,190,189,191,153,103,154,42,142,192,141,0,135,192,134,104,154,103,42,142,143,192,0,135,136,192,104,105,154,42,143,193,192,0,136,193,192,105,155,154,42,143,144,193,0,136,137,193,105,106,155,42,193,144,194,0,193,137,194,155,106,156,42,144,145,194,0,137,138,194,106,107,156,42,194,145,195,0,194,138,195,156,107,157,42,145,196,195,0,138,196,195,107,158,157,42,145,146,196,0,138,139,196,107,108,158,42,146,197,196,0,139,197,196,108,159,158,42,146,147,197,0,139,140,197,108,109,159,42,147,198,197,0,140,198,197,109,160,159,42,147,148,198,0,140,141,198,109,110,160,42,148,199,198,0,141,199,198,110,161,160,42,148,149,199,0,141,142,199,110,111,161,42,149,200,199,0,142,200,199,111,162,161,42,149,201,200,0,142,201,200,111,163,162,42,149,202,201,0,142,202,201,111,164,163,42,150,202,149,0,143,202,142,112,164,111,42,150,203,202,0,143,203,202,112,165,164,42,151,203,150,0,144,203,143,113,165,112,42,154,203,151,0,149,203,144,116,165,113,42,154,204,203,0,149,204,203,116,166,165,42,156,204,154,0,151,204,149,118,166,116,42,156,205,204,0,151,205,204,118,167,166,42,156,158,205,0,151,153,205,118,120,167,42,158,206,205,0,153,206,205,120,168,167,42,160,206,158,0,155,206,153,122,168,120,42,160,207,206,0,155,207,206,122,169,168,42,162,207,160,0,157,207,155,124,169,122,42,162,208,207,0,157,208,207,124,170,169,42,162,209,208,0,157,209,208,124,171,170,42,163,209,162,0,158,209,157,125,171,124,42,163,210,209,0,158,210,209,125,172,171,42,211,210,163,0,211,210,158,173,172,125,42,211,212,210,0,211,212,210,173,174,172,42,213,212,211,0,213,212,211,175,174,173,42,214,212,213,0,214,212,213,176,174,175,42,214,215,212,0,214,215,212,176,177,174,42,216,215,214,0,216,215,214,178,177,176,42,216,217,215,0,216,217,215,178,179,177,42,216,218,217,0,218,219,220,178,180,179,42,219,218,216,0,221,219,218,181,180,178,42,219,220,218,0,221,222,219,181,182,180,42,221,220,219,0,223,222,221,183,182,181,42,220,221,222,0,222,223,224,182,183,184,42,221,223,222,0,223,225,224,183,185,184,42,221,224,223,0,223,226,225,183,186,185,42,224,221,225,0,226,223,227,186,183,187,42,225,221,219,0,227,223,221,187,183,181,42,225,219,226,0,227,221,228,187,181,188,42,226,219,216,0,228,221,218,188,181,178,42,226,216,214,0,229,216,214,188,178,176,42,226,214,227,0,229,214,230,188,176,189,42,227,214,213,0,230,214,213,189,176,175,42,228,227,213,0,231,230,213,190,189,175,42,229,227,228,0,232,230,231,191,189,190,42,229,226,227,0,232,229,230,191,188,189,42,229,230,226,0,232,233,229,191,192,188,42,231,230,229,0,234,233,232,193,192,191,42,231,232,230,0,235,236,237,193,194,192,42,173,232,231,0,170,236,235,135,194,193,42,173,174,232,0,170,171,236,135,136,194,42,174,224,232,0,171,226,236,136,186,194,42,174,175,224,0,171,172,226,136,137,186,42,224,175,223,0,226,172,225,186,137,185,42,175,233,223,0,172,238,225,137,195,185,42,175,176,233,0,172,173,238,137,138,195,42,176,234,233,0,173,239,238,138,196,195,42,176,177,234,0,173,174,239,138,139,196,42,177,235,234,0,174,240,239,139,197,196,42,177,178,235,0,174,175,240,139,140,197,42,178,193,235,0,175,193,240,140,155,197,42,178,236,193,0,241,242,243,140,198,155,42,237,236,178,0,244,242,241,199,198,140,42,238,236,237,0,245,242,244,200,198,199,42,236,238,239,0,242,245,246,198,200,201,42,240,239,238,0,247,246,245,202,201,200,42,240,241,239,0,247,248,246,202,203,201,42,242,241,240,0,249,248,247,204,203,202,42,242,243,241,0,249,250,248,204,205,203,42,244,243,242,0,251,250,249,206,205,204,42,244,245,243,0,251,252,250,206,207,205,42,246,245,244,0,253,252,251,208,207,206,42,246,247,245,0,253,254,252,208,209,207,42,246,248,247,0,253,255,254,208,210,209,42,249,248,246,0,256,257,258,211,210,208,42,250,248,249,0,259,257,256,212,210,211,42,250,251,248,0,259,260,257,212,213,210,42,250,252,251,0,259,261,260,212,214,213,42,250,253,252,0,259,262,261,212,215,214,42,249,253,250,0,256,262,259,211,215,212,42,254,253,249,0,263,262,256,216,215,211,42,254,255,253,0,263,264,262,216,217,215,42,256,255,254,0,265,264,263,218,217,216,42,256,257,255,0,265,266,264,218,219,217,42,256,258,257,0,265,267,266,218,220,219,42,259,258,256,0,268,267,265,221,220,218,42,259,260,258,0,268,269,267,221,222,220,42,259,261,260,0,268,270,269,221,223,222,42,261,259,262,0,270,268,271,223,221,224,42,262,259,263,0,271,268,272,224,221,225,42,259,256,263,0,268,265,272,221,218,225,42,263,256,254,0,272,265,263,225,218,216,42,263,254,264,0,272,263,273,225,216,226,42,264,254,249,0,273,263,256,226,216,211,42,249,246,264,0,256,258,273,211,208,226,42,264,246,244,0,273,258,274,226,208,206,42,264,244,265,0,273,274,275,226,206,227,42,265,244,242,0,275,274,276,227,206,204,42,265,242,266,0,275,276,277,227,204,228,42,266,242,240,0,277,276,278,228,204,202,42,266,240,267,0,277,278,279,228,202,229,42,267,240,238,0,279,278,280,229,202,200,42,267,238,181,0,279,280,179,229,200,143,42,181,238,237,0,179,280,281,143,200,199,42,179,181,237,0,176,179,281,141,143,199,42,179,237,178,0,176,281,177,141,199,140,42,181,182,267,0,179,180,279,143,144,229,42,182,268,267,0,180,282,279,144,230,229,42,182,269,268,0,180,283,282,144,231,230,42,183,269,182,0,181,283,180,145,231,144,42,269,183,270,0,283,181,284,231,145,232,42,183,185,270,0,181,183,284,145,147,232,42,270,185,271,0,284,183,285,232,147,233,42,185,186,271,0,183,184,285,147,148,233,42,271,186,272,0,285,184,286,233,148,234,42,186,187,272,0,184,185,286,148,149,234,42,187,273,272,0,185,287,286,149,235,234,42,187,188,273,0,185,186,287,149,150,235,42,188,274,273,0,186,288,287,150,236,235,42,188,275,274,0,186,289,288,150,237,236,42,189,275,188,0,187,289,186,151,237,150,42,189,276,275,0,187,290,289,151,238,237,42,190,276,189,0,188,290,187,152,238,151,42,190,191,276,0,188,190,290,152,153,238,42,191,236,276,0,190,242,290,153,198,238,42,236,191,192,0,242,190,191,198,153,154,42,236,192,193,0,242,191,243,198,154,155,42,276,236,239,0,290,242,246,238,198,201,42,276,239,241,0,290,246,248,238,201,203,42,241,275,276,0,248,289,290,203,237,238,42,243,275,241,0,250,289,248,205,237,203,42,243,274,275,0,250,288,289,205,236,237,42,245,274,243,0,252,288,250,207,236,205,42,245,277,274,0,252,291,288,207,239,236,42,247,277,245,0,254,291,252,209,239,207,42,247,278,277,0,254,292,291,209,240,239,42,279,278,247,0,293,292,254,241,240,209,42,279,280,278,0,293,294,292,241,242,240,42,279,281,280,0,293,295,294,241,243,242,42,248,281,279,0,255,295,293,210,243,241,42,248,282,281,0,255,296,295,210,244,243,42,248,283,282,0,257,297,298,210,245,244,42,251,283,248,0,260,297,257,213,245,210,42,251,284,283,0,260,299,297,213,246,245,42,251,252,284,0,260,261,299,213,214,246,42,252,285,284,0,261,300,299,214,247,246,42,286,285,252,0,301,300,261,248,247,214,42,286,287,285,0,301,302,300,248,249,247,42,286,288,287,0,301,303,302,248,250,249,42,255,288,286,0,264,303,301,217,250,248,42,255,257,288,0,264,266,303,217,219,250,42,257,289,288,0,266,304,303,219,251,250,42,258,289,257,0,267,304,266,220,251,219,42,260,289,258,0,269,304,267,222,251,220,42,260,290,289,0,269,305,304,222,252,251,42,260,291,290,0,269,306,305,222,253,252,42,261,291,260,0,270,306,269,223,253,222,42,261,269,291,0,270,283,306,223,231,253,42,269,261,268,0,283,270,282,231,223,230,42,268,261,262,0,282,270,271,230,223,224,42,268,262,266,0,282,271,277,230,224,228,42,266,262,265,0,277,271,275,228,224,227,42,262,263,265,0,271,272,275,224,225,227,42,265,263,264,0,275,272,273,227,225,226,42,267,268,266,0,279,282,277,229,230,228,42,269,270,291,0,283,284,306,231,232,253,42,291,270,292,0,306,284,307,253,232,254,42,270,271,292,0,284,285,307,232,233,254,42,292,271,293,0,307,285,308,254,233,255,42,271,272,293,0,285,286,308,233,234,255,42,272,294,293,0,286,309,308,234,256,255,42,272,273,294,0,286,287,309,234,235,256,42,273,277,294,0,287,291,309,235,239,256,42,273,274,277,0,287,288,291,235,236,239,42,294,277,278,0,309,291,292,256,239,240,42,294,278,295,0,309,292,310,256,240,257,42,295,278,280,0,310,292,294,257,240,242,42,295,280,296,0,310,294,311,257,242,258,42,296,280,297,0,311,294,312,258,242,259,42,281,297,280,0,295,312,294,243,259,242,42,281,298,297,0,295,313,312,243,260,259,42,299,298,281,0,314,313,295,261,260,243,42,299,300,298,0,314,315,313,261,262,260,42,299,301,300,0,316,317,318,261,263,262,42,302,301,299,0,319,317,316,264,263,261,42,302,303,301,0,319,320,317,264,265,263,42,302,304,303,0,319,321,320,264,266,265,42,283,304,302,0,297,321,319,245,266,264,42,283,284,304,0,297,299,321,245,246,266,42,284,305,304,0,299,322,321,246,267,266,42,285,305,284,0,300,322,299,247,267,246,42,285,306,305,0,300,323,322,247,268,267,42,285,287,306,0,300,302,323,247,249,268,42,287,307,306,0,302,324,323,249,269,268,42,287,308,307,0,302,325,324,249,270,269,42,288,308,287,0,303,325,302,250,270,249,42,288,289,308,0,303,304,325,250,251,270,42,289,309,308,0,304,326,325,251,271,270,42,310,309,289,0,327,326,304,272,271,251,42,310,311,309,0,327,328,326,272,273,271,42,296,311,310,0,311,328,327,258,273,272,42,296,297,311,0,311,312,328,258,259,273,42,311,297,312,0,328,312,329,273,259,274,42,298,312,297,0,313,329,312,260,274,259,42,298,313,312,0,313,330,329,260,275,274,42,300,313,298,0,315,330,313,262,275,260,42,300,314,313,0,315,331,330,262,276,275,42,315,314,300,0,332,333,318,277,276,262,42,315,316,314,0,332,334,333,277,278,276,42,315,317,316,0,332,335,334,277,279,278,42,315,318,317,0,332,336,335,277,280,279,42,301,318,315,0,317,336,332,263,280,277,42,301,303,318,0,317,320,336,263,265,280,42,303,319,318,0,320,337,336,265,281,280,42,320,319,303,0,338,337,320,282,281,265,42,320,321,319,0,338,339,337,282,283,281,42,320,322,321,0,338,340,339,282,284,283,42,305,322,320,0,322,340,338,267,284,282,42,305,306,322,0,322,323,340,267,268,284,42,306,323,322,0,323,341,340,268,285,284,42,306,307,323,0,323,324,341,268,269,285,42,307,324,323,0,324,342,341,269,286,285,42,325,324,307,0,343,342,324,287,286,269,42,325,326,324,0,343,344,342,287,288,286,42,327,326,325,0,345,344,343,289,288,287,42,327,328,326,0,345,346,344,289,290,288,42,327,312,328,0,345,329,346,289,274,290,42,311,312,327,0,328,329,345,273,274,289,42,311,327,309,0,328,345,326,273,289,271,42,309,327,325,0,326,345,343,271,289,287,42,309,325,308,0,326,343,325,271,287,270,42,308,325,307,0,325,343,324,270,287,269,42,313,328,312,0,330,346,329,275,290,274,42,313,329,328,0,330,347,346,275,291,290,42,314,329,313,0,331,347,330,276,291,275,42,314,330,329,0,331,348,347,276,292,291,42,314,316,330,0,333,334,349,276,278,292,42,331,330,316,0,350,349,334,293,292,278,42,331,332,330,0,350,351,349,293,294,292,42,332,331,333,0,351,350,352,294,293,295,42,331,334,333,0,350,353,352,293,296,295,42,331,335,334,0,350,354,353,293,297,296,42,331,316,335,0,350,334,354,293,278,297,42,335,316,317,0,354,334,335,297,278,279,42,336,335,317,0,355,354,335,298,297,279,42,336,337,335,0,355,356,354,298,299,297,42,336,338,337,0,355,357,356,298,300,299,42,336,339,338,0,355,358,357,298,301,300,42,340,339,336,0,359,358,355,302,301,298,42,340,341,339,0,359,360,358,302,303,301,42,319,341,340,0,337,360,359,281,303,302,42,319,321,341,0,337,339,360,281,283,303,42,321,342,341,0,339,361,360,283,304,303,42,321,343,342,0,339,362,361,283,305,304,42,322,343,321,0,340,362,339,284,305,283,42,322,323,343,0,340,341,362,284,285,305,42,323,344,343,0,341,363,362,285,306,305,42,324,344,323,0,342,363,341,286,306,285,42,324,345,344,0,342,364,363,286,307,306,42,326,345,324,0,344,364,342,288,307,286,42,326,346,345,0,344,365,364,288,308,307,42,326,328,346,0,344,346,365,288,290,308,42,329,346,328,0,347,365,346,291,308,290,42,329,347,346,0,347,366,365,291,309,308,42,330,347,329,0,348,366,347,292,309,291,42,332,347,330,0,367,366,348,294,309,292,42,332,348,347,0,367,368,366,294,310,309,42,332,349,348,0,367,369,368,294,311,310,42,332,333,349,0,351,352,370,294,295,311,42,350,349,333,0,371,372,373,312,311,295,42,350,351,349,0,371,374,372,312,313,311,42,350,352,351,0,371,375,374,312,314,313,42,350,353,352,0,371,376,375,312,315,314,42,354,353,350,0,377,376,371,316,315,312,42,355,353,354,0,378,379,380,317,315,316,42,356,353,355,0,381,379,378,318,315,317,42,356,352,353,0,381,382,379,318,314,315,42,356,357,352,0,381,383,382,318,319,314,42,356,358,357,0,381,384,383,318,320,319,42,359,358,356,0,385,384,381,321,320,318,42,344,358,359,0,363,384,385,306,320,321,42,345,358,344,0,364,384,363,307,320,306,42,345,360,358,0,364,386,384,307,322,320,42,345,346,360,0,364,365,386,307,308,322,42,347,360,346,0,366,386,365,309,322,308,42,348,360,347,0,368,386,366,310,322,309,42,357,360,348,0,383,386,368,319,322,310,42,358,360,357,0,384,386,383,320,322,319,42,348,351,357,0,368,387,383,310,313,319,42,349,351,348,0,369,387,368,311,313,310,42,351,352,357,0,387,382,383,313,314,319,42,344,359,343,0,363,385,362,306,321,305,42,343,359,342,0,362,385,361,305,321,304,42,342,359,355,0,361,385,378,304,321,317,42,355,359,356,0,378,385,381,317,321,318,42,342,355,361,0,361,378,388,304,317,323,42,355,354,361,0,378,380,388,317,316,323,42,361,354,362,0,388,380,389,323,316,324,42,362,354,350,0,390,377,371,324,316,312,42,338,362,350,0,391,390,371,300,324,312,42,339,362,338,0,358,389,357,301,324,300,42,339,361,362,0,358,388,389,301,323,324,42,339,341,361,0,358,360,388,301,303,323,42,341,342,361,0,360,361,388,303,304,323,42,338,350,337,0,391,371,392,300,312,299,42,337,350,334,0,392,371,393,299,312,296,42,334,350,333,0,393,371,373,296,312,295,42,335,337,334,0,354,356,353,297,299,296,42,319,340,318,0,337,359,336,281,302,280,42,318,340,317,0,336,359,335,280,302,279,42,336,317,340,0,355,335,359,298,279,302,42,305,320,304,0,322,338,321,267,282,266,42,304,320,303,0,321,338,320,266,282,265,42,300,301,315,0,318,317,332,262,263,277,42,363,296,310,0,394,311,327,325,258,272,42,363,295,296,0,394,310,311,325,257,258,42,293,295,363,0,308,310,394,255,257,325,42,293,294,295,0,308,309,310,255,256,257,42,292,293,363,0,307,308,394,254,255,325,42,290,292,363,0,305,307,394,252,254,325,42,291,292,290,0,306,307,305,253,254,252,42,290,363,310,0,305,394,327,252,325,272,42,290,310,289,0,305,327,304,252,272,251,42,283,302,282,0,297,319,298,245,264,244,42,302,299,282,0,319,316,298,264,261,244,42,282,299,281,0,296,314,295,244,261,243,42,255,286,253,0,264,301,262,217,248,215,42,253,286,252,0,262,301,261,215,248,214,42,248,279,247,0,255,293,254,210,241,209,42,235,193,194,0,240,193,194,197,155,156,42,235,194,364,0,240,194,395,197,156,326,42,364,194,195,0,395,194,195,326,156,157,42,364,195,365,0,395,195,396,326,157,327,42,195,196,365,0,195,196,396,157,158,327,42,196,366,365,0,196,397,396,158,328,327,42,196,197,366,0,196,197,397,158,159,328,42,197,367,366,0,197,398,397,159,329,328,42,197,198,367,0,197,198,398,159,160,329,42,198,368,367,0,198,399,398,160,330,329,42,198,369,368,0,198,400,399,160,331,330,42,198,199,369,0,198,199,400,160,161,331,42,199,370,369,0,199,401,400,161,332,331,42,199,200,370,0,199,200,401,161,162,332,42,201,370,200,0,201,401,200,163,332,162,42,201,371,370,0,201,402,401,163,333,332,42,372,371,201,0,403,402,201,334,333,163,42,372,373,371,0,403,404,402,334,335,333,42,372,373,374,0,405,406,407,334,335,336,42,372,375,373,0,403,408,404,334,337,335,42,204,375,372,0,204,408,403,166,337,334,42,204,205,375,0,204,205,408,166,167,337,42,205,376,375,0,205,409,408,167,338,337,42,205,206,376,0,205,206,409,167,168,338,42,206,377,376,0,206,410,409,168,339,338,42,206,378,377,0,206,411,410,168,340,339,42,207,378,206,0,207,411,206,169,340,168,42,207,379,378,0,207,412,411,169,341,340,42,208,379,207,0,208,412,207,170,341,169,42,208,380,379,0,208,413,412,170,342,341,42,381,380,208,0,414,413,208,343,342,170,42,381,382,380,0,414,415,413,343,344,342,42,383,382,381,0,416,415,414,345,344,343,42,383,384,382,0,416,417,415,345,346,344,42,383,385,384,0,416,418,417,347,347,347,42,386,385,383,0,419,418,416,348,349,345,42,386,387,385,0,419,420,418,348,350,349,42,386,388,387,0,419,421,420,348,351,350,42,389,388,386,0,422,421,419,352,351,348,42,389,390,388,0,422,423,421,352,353,351,42,217,390,389,0,217,423,422,179,353,352,42,217,391,390,0,220,424,425,179,354,353,42,217,218,391,0,220,219,424,179,180,354,42,218,392,391,0,219,426,424,180,355,354,42,218,220,392,0,219,222,426,180,182,355,42,392,220,393,0,426,222,427,355,182,356,42,220,222,393,0,222,224,427,182,184,356,42,393,222,394,0,427,224,428,356,184,357,42,222,233,394,0,224,238,428,184,195,357,42,223,233,222,0,225,238,224,185,195,184,42,233,234,394,0,238,239,428,195,196,357,42,394,234,395,0,428,239,429,357,196,358,42,234,396,395,0,239,430,429,196,359,358,42,234,364,396,0,239,395,430,196,326,359,42,234,235,364,0,239,240,395,196,197,326,42,364,365,396,0,395,396,430,326,327,359,42,396,365,397,0,430,396,431,359,327,360,42,365,366,397,0,396,397,431,327,328,360,42,366,398,397,0,397,432,431,328,361,360,42,366,367,398,0,397,398,432,328,329,361,42,367,399,398,0,398,433,432,329,362,361,42,367,368,399,0,398,399,433,329,330,362,42,368,400,399,0,399,434,433,330,363,362,42,368,401,400,0,399,435,434,330,364,363,42,368,369,401,0,399,400,435,330,331,364,42,369,402,401,0,400,436,435,331,365,364,42,369,370,402,0,400,401,436,331,332,365,42,370,371,402,0,401,402,436,332,333,365,42,371,403,402,0,402,437,436,333,366,365,42,371,373,403,0,402,404,437,333,335,366,42,373,404,403,0,404,438,437,335,367,366,42,373,404,405,0,406,439,440,335,367,368,42,373,406,404,0,404,441,438,335,369,367,42,375,406,373,0,408,441,404,337,369,335,42,375,376,406,0,408,409,441,337,338,369,42,376,377,406,0,409,410,441,338,339,369,42,377,407,406,0,410,442,441,339,370,369,42,377,408,407,0,410,443,442,339,371,370,42,378,408,377,0,411,443,410,340,371,339,42,378,409,408,0,411,444,443,340,372,371,42,379,409,378,0,412,444,411,341,372,340,42,379,410,409,0,412,445,444,341,373,372,42,380,410,379,0,413,445,412,342,373,341,42,380,411,410,0,413,446,445,342,374,373,42,382,411,380,0,415,446,413,344,374,342,42,382,412,411,0,415,447,446,344,375,374,42,384,412,382,0,417,447,415,346,375,344,42,384,413,412,0,417,448,447,346,376,375,42,414,413,384,0,449,448,417,377,376,346,42,414,415,413,0,449,450,448,377,378,376,42,414,416,415,0,449,451,450,377,379,378,42,417,416,414,0,452,451,449,380,379,377,42,417,418,416,0,452,453,451,380,381,379,42,419,418,417,0,454,453,452,382,381,380,42,420,418,419,0,455,453,454,383,381,382,42,418,420,421,0,453,455,456,381,383,384,42,420,422,421,0,455,457,456,383,385,384,42,420,423,422,0,455,458,457,383,386,385,42,424,423,420,0,459,458,455,387,386,383,42,424,425,423,0,459,460,458,387,388,386,42,426,425,424,0,461,460,459,389,388,387,42,426,427,425,0,462,463,464,389,390,388,42,426,428,427,0,462,465,463,389,391,390,42,429,428,426,0,466,465,462,392,391,389,42,429,430,428,0,466,467,465,392,393,391,42,390,430,429,0,425,467,466,353,393,392,42,390,391,430,0,425,424,467,353,354,393,42,391,431,430,0,424,468,467,354,394,393,42,391,392,431,0,424,426,468,354,355,394,42,431,392,432,0,468,426,469,394,355,395,42,392,393,432,0,426,427,469,355,356,395,42,432,393,433,0,469,427,470,395,356,396,42,393,394,433,0,427,428,470,356,357,396,42,433,394,395,0,470,428,429,396,357,358,42,433,395,434,0,470,429,471,396,358,397,42,434,395,435,0,471,429,472,397,358,398,42,395,396,435,0,429,430,472,358,359,398,42,435,396,397,0,472,430,431,398,359,360,42,435,397,436,0,472,431,473,398,360,399,42,398,436,397,0,432,473,431,361,399,360,42,398,437,436,0,432,474,473,361,400,399,42,399,437,398,0,433,474,432,362,400,361,42,399,438,437,0,433,475,474,362,401,400,42,400,438,399,0,434,475,433,363,401,362,42,400,439,438,0,434,476,475,363,402,401,42,400,440,439,0,434,477,476,363,403,402,42,401,440,400,0,435,477,434,364,403,363,42,401,441,440,0,435,478,477,364,404,403,42,402,441,401,0,436,478,435,365,404,364,42,403,441,402,0,437,478,436,366,404,365,42,403,442,441,0,437,479,478,366,405,404,42,404,442,403,0,438,479,437,367,405,366,42,404,443,442,0,438,480,479,367,406,405,42,407,443,404,0,442,480,438,370,406,367,42,407,444,443,0,442,481,480,370,407,406,42,408,444,407,0,443,481,442,371,407,370,42,408,445,444,0,443,482,481,371,408,407,42,409,445,408,0,444,482,443,372,408,371,42,409,446,445,0,444,483,482,372,409,408,42,410,446,409,0,445,483,444,373,409,372,42,410,447,446,0,445,484,483,373,410,409,42,411,447,410,0,446,484,445,374,410,373,42,412,447,411,0,447,484,446,375,410,374,42,412,448,447,0,447,485,484,375,411,410,42,413,448,412,0,448,485,447,376,411,375,42,413,449,448,0,448,486,485,376,412,411,42,415,449,413,0,450,486,448,378,412,376,42,415,450,449,0,450,487,486,378,413,412,42,451,450,415,0,488,487,450,414,413,378,42,451,452,450,0,488,489,487,414,415,413,42,453,452,451,0,490,489,488,416,415,414,42,454,452,453,0,491,489,490,417,415,416,42,454,455,452,0,491,492,489,417,418,415,42,455,456,452,0,492,493,489,418,419,415,42,452,456,457,0,489,493,494,415,419,420,42,456,458,457,0,493,495,494,419,421,420,42,457,458,459,0,494,495,496,420,421,422,42,458,460,459,0,495,497,496,421,423,422,42,459,460,461,0,496,497,498,422,423,424,42,460,462,461,0,497,499,498,423,425,424,42,461,462,463,0,498,499,500,424,425,426,42,463,462,464,0,500,499,501,426,425,427,42,464,462,465,0,501,499,502,427,425,428,42,464,465,466,0,501,502,503,427,428,429,42,466,465,467,0,503,502,504,429,428,430,42,466,467,468,0,503,504,505,429,430,431,42,469,466,468,0,506,503,505,432,429,431,42,470,466,469,0,507,503,506,433,429,432,42,470,464,466,0,507,501,503,433,427,429,42,471,464,470,0,508,501,507,434,427,433,42,471,463,464,0,508,500,501,434,426,427,42,472,463,471,0,509,500,508,435,426,434,42,461,463,472,0,498,500,509,424,426,435,42,461,472,473,0,498,509,510,424,435,436,42,473,472,474,0,510,509,511,436,435,437,42,474,472,471,0,511,509,508,437,435,434,42,474,471,475,0,511,508,512,437,434,438,42,475,471,470,0,512,508,507,438,434,433,42,475,470,476,0,512,507,513,438,433,439,42,476,470,477,0,513,507,514,439,433,440,42,477,470,478,0,514,507,515,440,433,441,42,478,470,469,0,515,507,506,441,433,432,42,478,469,479,0,515,506,516,441,432,442,42,479,469,480,0,516,506,517,442,432,443,42,469,468,480,0,506,505,517,432,431,443,42,481,479,480,0,518,516,517,444,442,443,42,481,482,479,0,518,519,516,444,445,442,42,481,483,482,0,518,520,519,444,446,445,42,484,483,481,0,521,520,518,447,446,444,42,484,485,483,0,521,522,520,447,448,446,42,486,485,484,0,523,522,521,449,448,447,42,486,487,485,0,523,524,522,449,450,448,42,488,487,486,0,525,524,523,451,450,449,42,488,489,487,0,525,526,524,451,452,450,42,490,489,488,0,527,526,525,453,452,451,42,490,491,489,0,527,528,526,453,454,452,42,492,491,490,0,529,528,527,455,454,453,42,492,493,491,0,529,530,528,455,456,454,42,494,493,492,0,531,530,529,457,456,455,42,494,495,493,0,531,532,530,457,458,456,42,431,495,494,0,468,532,531,394,458,457,42,431,432,495,0,468,469,532,394,395,458,42,495,432,496,0,532,469,533,458,395,459,42,432,433,496,0,469,470,533,395,396,459,42,496,433,434,0,533,470,471,459,396,397,42,496,434,497,0,533,471,534,459,397,460,42,497,434,498,0,534,471,535,460,397,461,42,434,435,498,0,471,472,535,397,398,461,42,498,435,436,0,535,472,473,461,398,399,42,498,436,499,0,535,473,536,461,399,462,42,437,499,436,0,474,536,473,400,462,399,42,437,500,499,0,474,537,536,400,463,462,42,438,500,437,0,475,537,474,401,463,400,42,438,501,500,0,475,538,537,401,464,463,42,439,501,438,0,476,538,475,402,464,401,42,439,502,501,0,476,539,538,402,465,464,42,439,503,502,0,476,540,539,402,466,465,42,440,503,439,0,477,540,476,403,466,402,42,440,504,503,0,477,541,540,403,467,466,42,441,504,440,0,478,541,477,404,467,403,42,442,504,441,0,479,541,478,405,467,404,42,442,505,504,0,479,542,541,405,468,467,42,443,505,442,0,480,542,479,406,468,405,42,443,506,505,0,480,543,542,406,469,468,42,444,506,443,0,481,543,480,407,469,406,42,444,507,506,0,481,544,543,407,470,469,42,444,445,507,0,481,482,544,407,408,470,42,445,508,507,0,482,545,544,408,471,470,42,445,509,508,0,482,546,545,408,472,471,42,446,509,445,0,483,546,482,409,472,408,42,447,509,446,0,484,546,483,410,472,409,42,448,509,447,0,485,546,484,411,472,410,42,448,510,509,0,485,547,546,411,473,472,42,449,510,448,0,486,547,485,412,473,411,42,449,511,510,0,486,548,547,412,474,473,42,450,511,449,0,487,548,486,413,474,412,42,450,457,511,0,487,494,548,413,420,474,42,452,457,450,0,489,494,487,415,420,413,42,457,512,511,0,494,549,548,420,475,474,42,457,459,512,0,494,496,549,420,422,475,42,459,473,512,0,496,510,549,422,436,475,42,459,461,473,0,496,498,510,422,424,436,42,512,473,513,0,549,510,550,475,436,476,42,473,474,513,0,510,511,550,436,437,476,42,513,474,514,0,550,511,551,476,437,477,42,514,474,475,0,551,511,512,477,437,438,42,514,475,515,0,551,512,552,477,438,478,42,515,475,476,0,552,512,513,478,438,439,42,515,476,516,0,552,513,553,478,439,479,42,516,476,517,0,553,513,554,479,439,480,42,517,476,477,0,554,513,514,480,439,440,42,518,517,477,0,555,554,514,481,480,440,42,519,517,518,0,556,554,555,482,480,481,42,519,520,517,0,556,557,554,482,483,480,42,502,520,519,0,539,557,556,465,483,482,42,503,520,502,0,540,557,539,466,483,465,42,503,521,520,0,540,558,557,466,484,483,42,504,521,503,0,541,558,540,467,484,466,42,505,521,504,0,542,558,541,468,484,467,42,505,522,521,0,542,559,558,468,485,484,42,506,522,505,0,543,559,542,469,485,468,42,506,523,522,0,543,560,559,469,486,485,42,506,507,523,0,543,544,560,469,470,486,42,507,524,523,0,544,561,560,470,487,486,42,507,508,524,0,544,545,561,470,471,487,42,508,525,524,0,545,562,561,471,488,487,42,510,525,508,0,547,562,545,473,488,471,42,511,525,510,0,548,562,547,474,488,473,42,511,512,525,0,548,549,562,474,475,488,42,512,513,525,0,549,550,562,475,476,488,42,525,513,524,0,562,550,561,488,476,487,42,524,513,514,0,561,550,551,487,476,477,42,523,524,514,0,560,561,551,486,487,477,42,523,514,515,0,560,551,552,486,477,478,42,523,515,522,0,560,552,559,486,478,485,42,522,515,516,0,559,552,553,485,478,479,42,522,516,521,0,559,553,558,485,479,484,42,521,516,520,0,558,553,557,484,479,483,42,520,516,517,0,557,553,554,483,479,480,42,510,508,509,0,547,545,546,473,471,472,42,502,519,526,0,539,556,563,465,482,489,42,526,519,527,0,563,556,564,489,482,490,42,519,518,527,0,556,555,564,482,481,490,42,527,518,528,0,564,555,565,490,481,491,42,518,529,528,0,555,566,565,481,492,491,42,518,477,529,0,555,514,566,481,440,492,42,529,477,478,0,566,514,515,492,440,441,42,529,478,482,0,566,515,519,492,441,445,42,482,478,479,0,519,515,516,445,441,442,42,529,482,483,0,566,519,520,492,445,446,42,528,529,483,0,565,566,520,491,492,446,42,528,483,485,0,565,520,522,491,446,448,42,530,528,485,0,567,565,522,493,491,448,42,527,528,530,0,564,565,567,490,491,493,42,531,527,530,0,568,564,567,494,490,493,42,526,527,531,0,563,564,568,489,490,494,42,532,526,531,0,569,563,568,495,489,494,42,501,526,532,0,538,563,569,464,489,495,42,502,526,501,0,539,563,538,465,489,464,42,501,532,500,0,538,569,537,464,495,463,42,500,532,533,0,537,569,570,463,495,496,42,533,532,534,0,570,569,571,496,495,497,42,532,531,534,0,569,568,571,495,494,497,42,534,531,535,0,571,568,572,497,494,498,42,535,531,530,0,572,568,567,498,494,493,42,487,535,530,0,524,572,567,450,498,493,42,489,535,487,0,526,572,524,452,498,450,42,489,536,535,0,526,573,572,452,499,498,42,491,536,489,0,528,573,526,454,499,452,42,491,537,536,0,528,574,573,454,500,499,42,493,537,491,0,530,574,528,456,500,454,42,493,538,537,0,530,575,574,456,501,500,42,495,538,493,0,532,575,530,458,501,456,42,495,496,538,0,532,533,575,458,459,501,42,538,496,497,0,575,533,534,501,459,460,42,538,497,539,0,575,534,576,501,460,502,42,539,497,540,0,576,534,577,502,460,503,42,497,498,540,0,534,535,577,460,461,503,42,540,498,499,0,577,535,536,503,461,462,42,540,499,533,0,577,536,570,503,462,496,42,500,533,499,0,537,570,536,463,496,462,42,541,540,533,0,578,577,570,504,503,496,42,539,540,541,0,576,577,578,502,503,504,42,537,539,541,0,574,576,578,500,502,504,42,538,539,537,0,575,576,574,501,502,500,42,537,541,536,0,574,578,573,500,504,499,42,536,541,534,0,573,578,571,499,504,497,42,541,533,534,0,578,570,571,504,496,497,42,536,534,535,0,573,571,572,499,497,498,42,487,530,485,0,524,567,522,450,493,448,42,542,431,494,0,579,468,531,505,394,457,42,430,431,542,0,467,468,579,393,394,505,42,430,542,428,0,467,579,465,393,505,391,42,542,543,428,0,579,580,465,505,506,391,42,543,542,544,0,580,579,581,506,505,507,42,542,494,544,0,579,531,581,505,457,507,42,544,494,492,0,581,531,529,507,457,455,42,544,492,545,0,581,529,582,507,455,508,42,545,492,490,0,582,529,527,508,455,453,42,490,546,545,0,527,583,582,453,509,508,42,546,490,488,0,583,527,525,509,453,451,42,546,488,547,0,583,525,584,509,451,510,42,547,488,486,0,584,525,523,510,451,449,42,547,486,548,0,584,523,585,510,449,511,42,548,486,549,0,585,523,586,511,449,512,42,486,484,549,0,523,521,586,449,447,512,42,549,484,550,0,586,521,587,512,447,513,42,484,481,550,0,521,518,587,447,444,513,42,550,481,480,0,587,518,517,513,444,443,42,551,547,548,0,588,584,585,514,510,511,42,552,547,551,0,589,584,588,515,510,514,42,552,553,547,0,589,590,584,515,516,510,42,553,552,554,0,590,589,591,516,515,517,42,553,554,555,0,590,591,592,516,517,518,42,555,554,556,0,592,591,593,518,517,519,42,555,556,557,0,592,593,594,518,519,520,42,557,556,558,0,594,593,595,520,519,521,42,557,558,559,0,594,595,596,520,521,522,42,559,558,560,0,596,595,597,522,521,523,42,560,558,561,0,597,595,598,523,521,524,42,562,560,561,0,599,597,598,525,523,524,42,563,560,562,0,600,597,599,526,523,525,42,563,564,560,0,600,601,597,526,527,523,42,565,564,563,0,602,601,600,528,527,526,42,565,566,564,0,602,603,601,528,529,527,42,425,566,565,0,464,603,602,388,529,528,42,425,427,566,0,464,463,603,388,390,529,42,427,567,566,0,463,604,603,390,530,529,42,543,567,427,0,580,604,463,506,530,390,42,567,543,568,0,604,580,605,530,506,531,42,543,544,568,0,580,581,605,506,507,531,42,568,544,545,0,605,581,582,531,507,508,42,545,569,568,0,582,606,605,508,532,531,42,545,546,569,0,582,583,606,508,509,532,42,546,553,569,0,583,590,606,509,516,532,42,553,546,547,0,590,583,584,516,509,510,42,569,553,555,0,606,590,592,532,516,518,42,569,555,570,0,606,592,607,532,518,533,42,570,555,557,0,607,592,594,533,518,520,42,570,557,571,0,607,594,608,533,520,534,42,571,557,559,0,608,594,596,534,520,522,42,571,559,564,0,608,596,601,534,522,527,42,564,559,560,0,601,596,597,527,522,523,42,566,571,564,0,603,608,601,529,534,527,42,567,571,566,0,604,608,603,530,534,529,42,567,570,571,0,604,607,608,530,533,534,42,568,570,567,0,605,607,604,531,533,530,42,568,569,570,0,605,606,607,531,532,533,42,428,543,427,0,465,580,463,391,506,390,42,425,565,423,0,460,609,458,388,528,386,42,423,565,572,0,458,609,610,386,528,535,42,565,563,572,0,609,611,610,528,526,535,42,572,563,573,0,610,611,612,535,526,536,42,563,562,573,0,611,613,612,526,525,536,42,573,562,574,0,612,613,614,536,525,537,42,562,575,574,0,613,615,614,525,538,537,42,562,561,575,0,599,598,616,525,524,538,42,573,574,576,0,612,614,617,536,537,539,42,577,573,576,0,618,612,617,540,536,539,42,572,573,577,0,610,612,618,535,536,540,42,422,572,577,0,457,610,618,385,535,540,42,423,572,422,0,458,610,457,386,535,385,42,422,577,578,0,457,618,619,385,540,541,42,578,577,579,0,619,618,620,541,540,542,42,577,576,579,0,618,617,620,540,539,542,42,578,579,580,0,619,620,621,541,542,543,42,581,578,580,0,622,619,621,544,541,543,42,421,578,581,0,456,619,622,384,541,544,42,421,422,578,0,456,457,619,384,385,541,42,582,421,581,0,623,456,622,545,384,544,42,418,421,582,0,453,456,623,381,384,545,42,416,418,582,0,451,453,623,379,381,545,42,416,582,451,0,451,623,488,379,545,414,42,451,582,453,0,488,623,490,414,545,416,42,582,581,453,0,623,622,490,545,544,416,42,453,581,454,0,490,622,491,416,544,417,42,581,580,454,0,622,621,491,544,543,417,42,415,416,451,0,450,451,488,378,379,414,42,406,407,404,0,441,442,438,369,370,367,42,390,429,388,0,423,624,421,353,392,351,42,388,429,583,0,421,624,625,351,392,546,42,429,426,583,0,624,461,625,392,389,546,42,583,426,424,0,625,461,459,546,389,387,42,583,424,419,0,625,459,454,546,387,382,42,419,424,420,0,454,459,455,382,387,383,42,387,583,419,0,420,625,454,350,546,382,42,388,583,387,0,421,625,420,351,546,350,42,419,417,387,0,454,452,420,382,380,350,42,387,417,385,0,420,452,418,350,380,349,42,417,414,385,0,452,449,418,380,377,349,42,385,414,384,0,418,449,417,349,377,346,42,404,584,405,0,439,626,440,367,547,368,42,404,585,584,0,439,627,626,367,548,547,42,585,586,584,0,628,629,630,548,549,547,42,585,587,586,0,628,631,629,548,550,549,42,588,587,585,0,632,631,628,551,550,548,42,588,589,587,0,632,633,631,551,552,550,42,590,589,588,0,634,633,632,553,552,551,42,590,591,589,0,634,635,633,553,554,552,42,592,591,590,0,636,635,634,555,554,553,42,593,591,592,0,637,635,636,556,554,555,42,593,594,591,0,637,638,635,556,557,554,42,595,594,593,0,639,638,637,558,557,556,42,595,596,594,0,639,640,638,558,559,557,42,597,596,595,0,641,640,639,560,559,558,42,597,598,596,0,641,642,640,560,561,559,42,599,598,597,0,643,642,641,562,561,560,42,599,600,598,0,643,644,642,562,563,561,42,601,600,599,0,645,644,643,564,563,562,42,601,602,600,0,645,646,644,564,565,563,42,603,602,601,0,647,646,645,566,565,564,42,603,604,602,0,647,648,646,566,567,565,42,605,604,603,0,649,648,647,568,567,566,42,605,606,604,0,649,650,648,568,569,567,42,607,606,605,0,651,650,649,570,569,568,42,607,608,606,0,651,652,650,570,571,569,42,609,608,607,0,653,652,651,572,571,570,42,609,610,608,0,653,654,652,572,573,571,42,611,610,609,0,655,654,653,574,573,572,42,611,612,610,0,655,656,654,574,575,573,42,613,612,611,0,657,656,655,576,575,574,42,613,614,612,0,657,658,656,576,577,575,42,615,614,613,0,659,658,657,578,577,576,42,615,616,614,0,659,660,658,578,579,577,42,617,616,615,0,661,660,659,580,579,578,42,617,618,616,0,661,662,660,580,581,579,42,619,618,617,0,663,662,661,582,581,580,42,619,620,618,0,663,664,662,582,583,581,42,621,620,619,0,665,664,663,584,583,582,42,621,622,620,0,665,666,664,584,585,583,42,623,622,621,0,667,666,665,586,585,584,42,623,624,622,0,667,668,666,586,587,585,42,625,624,623,0,669,668,667,588,587,586,42,625,626,624,0,669,670,668,588,589,587,42,627,626,625,0,671,670,669,590,589,588,42,627,628,626,0,671,672,670,590,591,589,42,629,628,627,0,673,672,671,592,591,590,42,629,630,628,0,673,674,672,592,593,591,42,631,630,629,0,675,674,673,594,593,592,42,632,630,631,0,676,677,678,595,593,594,42,632,633,630,0,676,679,677,595,596,593,42,632,634,633,0,676,680,679,595,597,596,42,632,635,634,0,676,681,680,595,598,597,42,636,635,632,0,682,681,676,599,598,595,42,637,635,636,0,683,684,685,600,598,599,42,638,635,637,0,686,684,683,601,598,600,42,638,634,635,0,686,687,684,601,597,598,42,639,634,638,0,688,687,686,602,597,601,42,639,633,634,0,688,689,687,602,596,597,42,628,633,639,0,672,689,688,591,596,602,42,628,630,633,0,672,674,689,591,593,596,42,628,639,626,0,672,688,670,591,602,589,42,626,639,640,0,670,688,690,589,602,603,42,639,638,640,0,688,686,690,602,601,603,42,640,638,641,0,690,686,691,603,601,604,42,641,638,637,0,691,686,683,604,601,600,42,641,637,642,0,691,683,692,604,600,605,42,642,637,643,0,692,683,693,605,600,606,42,637,636,643,0,683,685,693,600,599,606,42,644,643,636,0,694,693,685,607,606,599,42,645,643,644,0,695,693,694,608,606,607,42,645,646,643,0,695,696,693,608,609,606,42,647,646,645,0,697,696,695,610,609,608,42,647,648,646,0,697,698,696,610,611,609,42,649,648,647,0,699,698,697,612,611,610,42,649,650,648,0,699,700,698,612,613,611,42,649,651,650,0,699,701,700,612,614,613,42,652,651,649,0,702,703,704,615,614,612,42,653,651,652,0,705,703,702,616,614,615,42,653,654,651,0,705,706,703,616,617,614,42,653,655,654,0,705,707,706,616,618,617,42,656,655,653,0,708,707,705,619,618,616,42,656,657,655,0,708,709,707,619,620,618,42,657,656,658,0,709,708,710,620,619,621,42,658,656,659,0,710,708,711,621,619,622,42,656,653,659,0,708,705,711,619,616,622,42,659,653,652,0,711,705,702,622,616,615,42,660,659,652,0,712,711,702,623,622,615,42,658,659,660,0,710,711,712,621,622,623,42,658,660,661,0,710,712,713,621,623,624,42,661,660,662,0,713,712,714,624,623,625,42,660,663,662,0,712,715,714,623,626,625,42,663,660,664,0,715,712,716,626,623,627,42,660,652,664,0,712,702,716,623,615,627,42,664,652,647,0,716,702,717,627,615,610,42,652,649,647,0,702,704,717,615,612,610,42,664,647,665,0,716,717,718,627,610,628,42,665,647,645,0,718,717,719,628,610,608,42,666,665,645,0,720,718,719,629,628,608,42,667,665,666,0,721,718,720,630,628,629,42,663,665,667,0,715,718,721,626,628,630,42,663,664,665,0,715,716,718,626,627,628,42,663,667,668,0,715,721,722,626,630,631,42,667,632,668,0,723,676,724,630,595,631,42,666,632,667,0,725,676,723,629,595,630,42,666,644,632,0,725,726,676,629,607,595,42,666,645,644,0,720,719,727,629,608,607,42,644,636,632,0,726,682,676,607,599,595,42,668,632,631,0,724,676,678,631,595,594,42,662,668,631,0,714,722,675,625,631,594,42,662,663,668,0,714,715,722,625,626,631,42,629,662,631,0,673,714,675,592,625,594,42,661,662,629,0,713,714,673,624,625,592,42,627,661,629,0,671,713,673,590,624,592,42,658,661,627,0,710,713,671,621,624,590,42,658,627,625,0,710,671,669,621,590,588,42,669,658,625,0,728,710,669,632,621,588,42,669,657,658,0,728,709,710,632,620,621,42,670,657,669,0,729,709,728,633,620,632,42,657,670,671,0,709,729,730,620,633,634,42,670,672,671,0,729,731,730,633,635,634,42,670,673,672,0,729,732,731,633,636,635,42,673,670,674,0,732,729,733,636,633,637,42,674,670,669,0,733,729,728,637,633,632,42,674,669,621,0,733,728,665,637,632,584,42,621,669,623,0,665,728,667,584,632,586,42,669,625,623,0,728,669,667,632,588,586,42,619,674,621,0,663,733,665,582,637,584,42,675,674,619,0,734,733,663,638,637,582,42,675,673,674,0,734,732,733,638,636,637,42,676,673,675,0,735,732,734,639,636,638,42,673,676,677,0,732,735,736,636,639,640,42,676,678,677,0,735,737,736,639,641,640,42,676,679,678,0,735,738,737,639,642,641,42,679,676,680,0,738,735,739,642,639,643,42,680,676,675,0,739,735,734,643,639,638,42,680,675,617,0,739,734,661,643,638,580,42,617,675,619,0,661,734,663,580,638,582,42,615,680,617,0,659,739,661,578,643,580,42,681,680,615,0,740,739,659,644,643,578,42,681,679,680,0,740,738,739,644,642,643,42,682,679,681,0,741,738,740,645,642,644,42,679,682,683,0,738,741,742,642,645,646,42,682,684,683,0,741,743,742,645,647,646,42,682,685,684,0,741,744,743,645,648,647,42,685,682,686,0,744,741,745,648,645,649,42,686,682,681,0,745,741,740,649,645,644,42,686,681,613,0,745,740,657,649,644,576,42,613,681,615,0,657,740,659,576,644,578,42,611,686,613,0,655,745,657,574,649,576,42,687,686,611,0,746,745,655,650,649,574,42,687,685,686,0,746,744,745,650,648,649,42,688,685,687,0,747,744,746,651,648,650,42,685,688,689,0,744,747,748,648,651,652,42,688,690,689,0,747,749,748,651,653,652,42,688,691,690,0,747,750,749,651,654,653,42,691,688,692,0,750,747,751,654,651,655,42,692,688,687,0,751,747,746,655,651,650,42,692,687,609,0,751,746,653,655,650,572,42,609,687,611,0,653,746,655,572,650,574,42,607,692,609,0,651,751,653,570,655,572,42,693,692,607,0,752,751,651,656,655,570,42,693,691,692,0,752,750,751,656,654,655,42,694,691,693,0,753,750,752,657,654,656,42,694,695,691,0,753,754,750,657,658,654,42,694,696,695,0,753,755,754,657,659,658,42,697,696,694,0,756,755,753,660,659,657,42,698,696,697,0,757,755,756,661,659,660,42,698,699,696,0,757,758,755,661,662,659,42,700,699,698,0,759,760,761,663,662,661,42,700,701,699,0,759,762,760,663,664,662,42,702,701,700,0,763,762,759,665,664,663,42,702,703,701,0,763,764,762,665,666,664,42,704,703,702,0,765,764,763,667,666,665,42,704,705,703,0,765,766,764,667,668,666,42,706,705,704,0,767,766,765,669,668,667,42,706,707,705,0,767,768,766,669,670,668,42,708,707,706,0,769,768,767,671,670,669,42,708,709,707,0,769,770,768,671,672,670,42,710,709,708,0,771,770,769,673,672,671,42,710,711,709,0,771,772,770,673,674,672,42,712,711,710,0,773,772,771,675,674,673,42,712,713,711,0,773,774,772,675,676,674,42,714,713,712,0,775,774,773,677,676,675,42,714,715,713,0,775,776,774,677,678,676,42,716,715,714,0,777,776,775,679,678,677,42,716,717,715,0,777,778,776,679,680,678,42,718,717,716,0,779,778,777,681,680,679,42,718,719,717,0,779,780,778,681,682,680,42,720,719,718,0,781,780,779,683,682,681,42,720,721,719,0,781,782,780,683,684,682,42,722,721,720,0,783,782,781,685,684,683,42,722,723,721,0,783,784,782,685,686,684,42,724,723,722,0,785,784,783,687,686,685,42,724,725,723,0,785,786,784,687,688,686,42,724,726,725,0,785,787,786,687,689,688,42,727,726,724,0,788,787,785,690,689,687,42,727,728,726,0,788,789,787,690,691,689,42,729,728,727,0,790,789,788,692,691,690,42,729,730,728,0,790,791,789,692,693,691,42,729,731,730,0,790,792,791,692,694,693,42,732,731,729,0,793,792,790,695,694,692,42,732,733,731,0,793,794,792,695,696,694,42,734,733,732,0,795,794,793,697,696,695,42,733,734,735,0,794,795,796,696,697,698,42,734,736,735,0,795,797,796,697,699,698,42,734,737,736,0,795,798,797,697,700,699,42,737,734,738,0,798,795,799,700,697,701,42,738,734,732,0,799,795,793,701,697,695,42,738,732,739,0,799,793,800,701,695,702,42,739,732,729,0,800,793,790,702,695,692,42,729,727,739,0,790,788,800,692,690,702,42,739,727,724,0,800,788,785,702,690,687,42,739,724,740,0,800,785,801,702,687,703,42,740,724,722,0,801,785,783,703,687,685,42,740,722,741,0,801,783,802,703,685,704,42,741,722,720,0,802,783,781,704,685,683,42,741,720,742,0,802,781,803,704,683,705,42,742,720,718,0,803,781,779,705,683,681,42,743,742,718,0,804,803,779,706,705,681,42,743,744,742,0,804,805,803,706,707,705,42,745,744,743,0,806,805,804,708,707,706,42,745,746,744,0,806,807,805,708,709,707,42,747,746,745,0,808,807,806,710,709,708,42,746,747,748,0,807,808,809,709,710,711,42,747,749,748,0,808,810,809,710,712,711,42,747,750,749,0,808,811,810,710,713,712,42,750,747,751,0,811,808,812,713,710,714,42,751,747,745,0,812,808,806,714,710,708,42,751,745,752,0,812,806,813,714,708,715,42,752,745,743,0,813,806,804,715,708,706,42,752,743,716,0,813,804,777,715,706,679,42,716,743,718,0,777,804,779,679,706,681,42,714,752,716,0,775,813,777,677,715,679,42,753,752,714,0,814,813,775,716,715,677,42,753,751,752,0,814,812,813,716,714,715,42,754,751,753,0,815,812,814,717,714,716,42,754,750,751,0,815,811,812,717,713,714,42,755,750,754,0,816,811,815,718,713,717,42,750,755,756,0,811,816,817,713,718,719,42,755,757,756,0,816,818,817,718,720,719,42,755,758,757,0,816,819,818,718,721,720,42,758,755,759,0,819,816,820,721,718,722,42,759,755,754,0,820,816,815,722,718,717,42,759,754,760,0,820,815,821,722,717,723,42,760,754,753,0,821,815,814,723,717,716,42,753,712,760,0,814,773,821,716,675,723,42,712,753,714,0,773,814,775,675,716,677,42,760,712,710,0,821,773,771,723,675,673,42,760,710,761,0,821,771,822,723,673,724,42,761,710,708,0,822,771,769,724,673,671,42,762,761,708,0,823,822,769,725,724,671,42,762,763,761,0,823,824,822,725,726,724,42,764,763,762,0,825,824,823,727,726,725,42,764,765,763,0,825,826,824,727,728,726,42,766,765,764,0,827,826,825,729,728,727,42,765,766,767,0,826,827,828,728,729,730,42,766,768,767,0,827,829,828,729,731,730,42,766,769,768,0,827,830,829,729,732,731,42,769,766,770,0,830,827,831,732,729,733,42,770,766,764,0,831,827,825,733,729,727,42,770,764,771,0,831,825,832,733,727,734,42,771,764,762,0,832,825,823,734,727,725,42,771,762,706,0,832,823,767,734,725,669,42,706,762,708,0,767,823,769,669,725,671,42,704,771,706,0,765,832,767,667,734,669,42,772,771,704,0,833,832,765,735,734,667,42,772,770,771,0,833,831,832,735,733,734,42,773,770,772,0,834,831,833,736,733,735,42,773,769,770,0,834,830,831,736,732,733,42,774,769,773,0,835,830,834,737,732,736,42,769,774,775,0,830,835,836,732,737,738,42,774,776,775,0,835,837,836,737,739,738,42,774,777,776,0,835,838,837,737,740,739,42,777,774,778,0,838,835,839,740,737,741,42,778,774,773,0,839,835,834,741,737,736,42,778,773,779,0,839,834,840,741,736,742,42,779,773,772,0,840,834,833,742,736,735,42,779,772,702,0,840,833,763,742,735,665,42,702,772,704,0,763,833,765,665,735,667,42,779,702,700,0,840,763,759,742,665,663,42,780,779,700,0,841,840,759,743,742,663,42,780,778,779,0,841,839,840,743,741,742,42,781,778,780,0,842,839,841,744,741,743,42,777,778,781,0,838,839,842,740,741,744,42,782,777,781,0,843,838,842,745,740,744,42,777,782,783,0,838,843,844,740,745,746,42,782,784,783,0,843,845,844,745,747,746,42,782,785,784,0,843,846,845,745,748,747,42,785,782,786,0,846,843,847,748,745,749,42,782,781,786,0,843,842,847,745,744,749,42,786,781,787,0,847,842,848,749,744,750,42,787,781,780,0,848,842,841,750,744,743,42,787,780,788,0,848,841,849,750,743,751,42,780,698,788,0,841,761,849,743,661,751,42,780,700,698,0,841,759,761,743,663,661,42,788,698,697,0,850,757,756,751,661,660,42,789,788,697,0,851,850,756,752,751,660,42,790,788,789,0,852,850,851,753,751,752,42,787,788,790,0,848,849,853,750,751,753,42,791,787,790,0,854,848,853,754,750,753,42,791,786,787,0,854,847,848,754,749,750,42,792,786,791,0,855,847,854,755,749,754,42,792,785,786,0,855,846,847,755,748,749,42,792,793,785,0,855,856,846,755,756,748,42,792,794,793,0,855,857,856,755,757,756,42,794,792,795,0,857,855,858,757,755,758,42,795,792,791,0,858,855,854,758,755,754,42,795,791,796,0,858,854,859,758,754,759,42,796,791,790,0,859,854,853,759,754,753,42,796,790,797,0,860,852,861,759,753,760,42,797,790,789,0,861,852,851,760,753,752,42,797,789,798,0,861,851,862,760,752,761,42,798,789,799,0,862,851,863,761,752,762,42,789,697,799,0,851,756,863,752,660,762,42,799,697,800,0,863,756,864,762,660,763,42,697,694,800,0,756,753,864,660,657,763,42,800,694,693,0,864,753,752,763,657,656,42,800,693,605,0,864,752,649,763,656,568,42,605,693,607,0,649,752,651,568,656,570,42,603,800,605,0,647,864,649,566,763,568,42,603,799,800,0,647,863,864,566,762,763,42,601,799,603,0,645,863,647,564,762,566,42,601,798,799,0,645,862,863,564,761,762,42,599,798,601,0,643,862,645,562,761,564,42,801,798,599,0,865,862,643,764,761,562,42,801,797,798,0,865,861,862,764,760,761,42,802,797,801,0,866,861,865,765,760,764,42,802,796,797,0,866,860,861,765,759,760,42,802,803,796,0,866,867,860,765,766,759,42,804,803,802,0,868,867,866,767,766,765,42,804,795,803,0,869,858,870,767,758,766,42,804,805,795,0,869,871,858,767,768,758,42,806,805,804,0,872,871,869,769,768,767,42,806,807,805,0,872,873,871,769,770,768,42,807,808,805,0,873,874,871,770,771,768,42,807,809,808,0,873,875,874,770,772,771,42,809,810,808,0,875,876,874,772,773,771,42,809,811,810,0,875,877,876,772,774,773,42,810,811,812,0,876,877,878,773,774,775,42,811,813,812,0,877,879,878,774,776,775,42,813,814,812,0,879,880,878,776,777,775,42,813,815,814,0,879,881,880,776,778,777,42,815,816,814,0,881,882,880,778,779,777,42,817,816,815,0,883,882,881,780,779,778,42,817,818,816,0,883,884,882,780,781,779,42,819,818,817,0,885,884,883,782,781,780,42,819,820,818,0,885,886,884,782,783,781,42,821,820,819,0,887,886,885,784,783,782,42,820,821,584,0,886,887,630,783,784,547,42,405,584,821,0,440,626,888,368,547,784,42,405,821,822,0,440,888,889,368,784,785,42,822,821,823,0,889,888,890,785,784,786,42,823,821,819,0,890,888,891,786,784,782,42,823,819,400,0,890,891,892,786,782,363,42,400,819,817,0,892,891,893,363,782,780,42,368,823,400,0,894,890,892,330,786,363,42,368,824,823,0,894,895,890,330,787,786,42,198,824,368,0,896,895,894,160,787,330,42,198,825,824,0,896,897,895,160,788,787,42,114,825,198,0,898,897,896,76,788,160,42,114,826,825,0,898,899,897,76,789,788,42,83,826,114,0,900,899,898,45,789,76,42,83,827,826,0,900,901,899,45,790,789,42,17,827,83,0,902,901,900,14,790,45,42,17,828,827,0,902,903,901,14,791,790,42,17,86,828,0,902,904,903,14,48,791,42,87,828,86,0,905,903,904,49,791,48,42,87,829,828,0,905,906,903,49,792,791,42,87,118,829,0,905,145,906,49,80,792,42,118,152,829,0,145,147,906,80,114,792,42,829,152,830,0,906,147,907,792,114,793,42,830,152,831,0,907,147,908,793,114,794,42,152,832,831,0,147,909,908,114,795,794,42,151,832,152,0,146,909,147,113,795,114,42,151,372,832,0,146,405,909,113,334,795,42,372,374,832,0,405,407,909,334,336,795,42,832,374,833,0,909,407,910,795,336,796,42,833,374,822,0,910,407,889,796,336,785,42,374,405,822,0,407,440,889,336,368,785,42,374,373,405,0,407,406,440,336,335,368,42,824,833,822,0,895,910,889,787,796,785,42,825,833,824,0,897,910,895,788,796,787,42,825,831,833,0,897,908,910,788,794,796,42,826,831,825,0,899,908,897,789,794,788,42,830,831,826,0,907,908,899,793,794,789,42,827,830,826,0,901,907,899,790,793,789,42,828,830,827,0,903,907,901,791,793,790,42,828,829,830,0,903,906,907,791,792,793,42,832,833,831,0,909,910,908,795,796,794,42,824,822,823,0,895,889,890,787,785,786,42,87,85,86,0,105,61,62,49,47,48,42,584,586,820,0,630,629,886,547,549,783,42,586,818,820,0,629,884,886,549,781,783,42,818,586,834,0,884,629,911,781,549,797,42,586,835,834,0,629,912,911,549,798,797,42,587,835,586,0,631,912,629,550,798,549,42,587,836,835,0,631,913,912,550,799,798,42,589,836,587,0,633,913,631,552,799,550,42,589,837,836,0,633,914,913,552,800,799,42,591,837,589,0,635,914,633,554,800,552,42,594,837,591,0,638,914,635,557,800,554,42,594,838,837,0,638,915,914,557,801,800,42,596,838,594,0,640,915,638,559,801,557,42,596,839,838,0,640,916,915,559,802,801,42,598,839,596,0,642,916,640,561,802,559,42,598,840,839,0,642,917,916,561,803,802,42,600,840,598,0,644,917,642,563,803,561,42,600,841,840,0,644,918,917,563,804,803,42,602,841,600,0,646,918,644,565,804,563,42,602,842,841,0,646,919,918,565,805,804,42,604,842,602,0,648,919,646,567,805,565,42,604,843,842,0,648,920,919,567,806,805,42,606,843,604,0,650,920,648,569,806,567,42,606,844,843,0,650,921,920,569,807,806,42,608,844,606,0,652,921,650,571,807,569,42,608,845,844,0,652,922,921,571,808,807,42,610,845,608,0,654,922,652,573,808,571,42,610,846,845,0,654,923,922,573,809,808,42,610,847,846,0,654,924,923,573,810,809,42,612,847,610,0,656,924,654,575,810,573,42,612,848,847,0,656,925,924,575,811,810,42,614,848,612,0,658,925,656,577,811,575,42,614,849,848,0,658,926,925,577,812,811,42,616,849,614,0,660,926,658,579,812,577,42,616,850,849,0,660,927,926,579,813,812,42,618,850,616,0,662,927,660,581,813,579,42,618,851,850,0,662,928,927,581,814,813,42,620,851,618,0,664,928,662,583,814,581,42,620,852,851,0,664,929,928,583,815,814,42,622,852,620,0,666,929,664,585,815,583,42,622,853,852,0,666,930,929,585,816,815,42,624,853,622,0,668,930,666,587,816,585,42,624,640,853,0,668,690,930,587,603,816,42,626,640,624,0,670,690,668,589,603,587,42,640,854,853,0,690,931,930,603,817,816,42,640,641,854,0,690,691,931,603,604,817,42,854,641,642,0,931,691,692,817,604,605,42,854,642,855,0,931,692,932,817,605,818,42,855,642,646,0,932,692,696,818,605,609,42,642,643,646,0,692,693,696,605,606,609,42,855,646,648,0,932,696,698,818,609,611,42,856,855,648,0,933,932,698,819,818,611,42,854,855,856,0,931,932,933,817,818,819,42,857,854,856,0,934,931,933,820,817,819,42,858,854,857,0,935,931,934,821,817,820,42,852,854,858,0,929,931,935,815,817,821,42,853,854,852,0,930,931,929,816,817,815,42,852,858,851,0,929,935,928,815,821,814,42,851,858,859,0,928,935,936,814,821,822,42,859,858,860,0,936,935,937,822,821,823,42,860,858,857,0,937,935,934,823,821,820,42,860,857,861,0,937,934,938,823,820,824,42,857,650,861,0,934,700,938,820,613,824,42,857,856,650,0,934,933,700,820,819,613,42,856,648,650,0,933,698,700,819,611,613,42,651,861,650,0,701,938,700,614,824,613,42,651,654,861,0,701,939,938,614,617,824,42,654,862,861,0,939,940,938,617,825,824,42,654,863,862,0,939,941,940,617,826,825,42,655,863,654,0,707,942,706,618,826,617,42,655,671,863,0,707,730,942,618,634,826,42,657,671,655,0,709,730,707,620,634,618,42,671,864,863,0,730,943,942,634,827,826,42,671,672,864,0,730,731,943,634,635,827,42,672,865,864,0,731,944,943,635,828,827,42,672,677,865,0,731,736,944,635,640,828,42,673,677,672,0,732,736,731,636,640,635,42,677,866,865,0,736,945,944,640,829,828,42,677,678,866,0,736,737,945,640,641,829,42,678,867,866,0,737,946,945,641,830,829,42,678,683,867,0,737,742,946,641,646,830,42,679,683,678,0,738,742,737,642,646,641,42,683,868,867,0,742,947,946,646,831,830,42,683,684,868,0,742,743,947,646,647,831,42,684,869,868,0,743,948,947,647,832,831,42,684,689,869,0,743,748,948,647,652,832,42,685,689,684,0,744,748,743,648,652,647,42,689,870,869,0,748,949,948,652,833,832,42,689,690,870,0,748,749,949,652,653,833,42,690,871,870,0,749,950,949,653,834,833,42,690,695,871,0,749,754,950,653,658,834,42,691,695,690,0,750,754,749,654,658,653,42,695,872,871,0,754,951,950,658,835,834,42,695,696,872,0,754,755,951,658,659,835,42,699,872,696,0,758,951,755,662,835,659,42,873,872,699,0,952,953,954,836,835,662,42,873,874,872,0,952,955,953,836,837,835,42,875,874,873,0,956,955,952,838,837,836,42,875,876,874,0,956,957,955,838,839,837,42,877,876,875,0,958,957,956,840,839,838,42,878,876,877,0,959,957,958,841,839,840,42,879,876,878,0,960,957,959,842,839,841,42,879,880,876,0,960,961,957,842,843,839,42,839,880,879,0,916,961,960,802,843,842,42,840,880,839,0,917,961,916,803,843,802,42,840,881,880,0,917,962,961,803,844,843,42,841,881,840,0,918,962,917,804,844,803,42,841,882,881,0,918,963,962,804,845,844,42,842,882,841,0,919,963,918,805,845,804,42,842,883,882,0,919,964,963,805,846,845,42,843,883,842,0,920,964,919,806,846,805,42,843,884,883,0,920,965,964,806,847,846,42,844,884,843,0,921,965,920,807,847,806,42,844,885,884,0,921,966,965,807,848,847,42,845,885,844,0,922,966,921,808,848,807,42,845,886,885,0,922,967,966,808,849,848,42,846,886,845,0,923,967,922,809,849,808,42,846,887,886,0,923,968,967,809,850,849,42,847,887,846,0,924,968,923,810,850,809,42,847,888,887,0,924,969,968,810,851,850,42,848,888,847,0,925,969,924,811,851,810,42,848,889,888,0,925,970,969,811,852,851,42,849,889,848,0,926,970,925,812,852,811,42,849,859,889,0,926,936,970,812,822,852,42,850,859,849,0,927,936,926,813,822,812,42,851,859,850,0,928,936,927,814,822,813,42,889,859,890,0,970,936,971,852,822,853,42,890,859,860,0,971,936,937,853,822,823,42,890,860,862,0,971,937,940,853,823,825,42,860,861,862,0,937,938,940,823,824,825,42,890,862,891,0,971,940,972,853,825,854,42,863,891,862,0,941,972,940,826,854,825,42,863,864,891,0,941,973,972,826,827,854,42,864,892,891,0,973,974,972,827,855,854,42,864,865,892,0,973,975,974,827,828,855,42,865,893,892,0,975,976,974,828,856,855,42,865,866,893,0,975,977,976,828,829,856,42,866,894,893,0,977,978,976,829,857,856,42,866,867,894,0,977,979,978,829,830,857,42,867,895,894,0,979,980,978,830,858,857,42,867,896,895,0,979,981,980,830,859,858,42,867,868,896,0,979,982,981,830,831,859,42,868,897,896,0,982,983,981,831,860,859,42,868,869,897,0,982,984,983,831,832,860,42,869,898,897,0,984,985,983,832,861,860,42,870,898,869,0,986,985,984,833,861,832,42,870,899,898,0,986,987,985,833,862,861,42,871,899,870,0,988,987,986,834,862,833,42,871,874,899,0,988,955,987,834,837,862,42,872,874,871,0,953,955,988,835,837,834,42,876,899,874,0,957,987,955,839,862,837,42,876,900,899,0,957,989,987,839,863,862,42,880,900,876,0,961,989,957,843,863,839,42,880,881,900,0,961,962,989,843,844,863,42,881,901,900,0,962,990,989,844,864,863,42,881,882,901,0,962,963,990,844,845,864,42,882,902,901,0,963,991,990,845,865,864,42,882,883,902,0,963,964,991,845,846,865,42,883,903,902,0,964,992,991,846,866,865,42,883,884,903,0,964,965,992,846,847,866,42,884,904,903,0,965,993,992,847,867,866,42,884,885,904,0,965,966,993,847,848,867,42,885,905,904,0,966,994,993,848,868,867,42,885,886,905,0,966,967,994,848,849,868,42,886,906,905,0,967,995,994,849,869,868,42,886,887,906,0,967,968,995,849,850,869,42,887,907,906,0,968,996,995,850,870,869,42,887,888,907,0,968,969,996,850,851,870,42,888,890,907,0,969,971,996,851,853,870,42,888,889,890,0,969,970,971,851,852,853,42,907,890,891,0,996,971,972,870,853,854,42,892,907,891,0,974,996,972,855,870,854,42,906,907,892,0,995,996,974,869,870,855,42,893,906,892,0,976,995,974,856,869,855,42,905,906,893,0,994,995,976,868,869,856,42,894,905,893,0,978,994,976,857,868,856,42,904,905,894,0,993,994,978,867,868,857,42,904,894,895,0,993,978,980,867,857,858,42,903,904,895,0,992,993,980,866,867,858,42,903,895,896,0,992,980,981,866,858,859,42,902,903,896,0,991,992,981,865,866,859,42,902,896,897,0,991,981,983,865,859,860,42,901,902,897,0,990,991,983,864,865,860,42,901,897,898,0,990,983,985,864,860,861,42,900,901,898,0,989,990,985,863,864,861,42,900,898,899,0,989,985,987,863,861,862,42,839,879,838,0,916,960,915,802,842,801,42,838,879,908,0,915,960,997,801,842,871,42,908,879,878,0,997,960,959,871,842,841,42,908,878,909,0,997,959,998,871,841,872,42,909,878,877,0,998,959,958,872,841,840,42,909,877,910,0,998,958,999,872,840,873,42,910,877,911,0,999,958,1000,873,840,874,42,911,877,912,0,1000,958,1001,874,840,875,42,877,913,912,0,958,1002,1001,840,876,875,42,877,875,913,0,958,956,1002,840,838,876,42,913,875,914,0,1002,956,1003,876,838,877,42,914,875,873,0,1003,956,952,877,838,836,42,914,873,701,0,1003,952,1004,877,836,664,42,701,873,699,0,1004,952,954,664,836,662,42,701,703,914,0,1004,1005,1003,664,666,877,42,915,914,703,0,1006,1003,1005,878,877,666,42,913,914,915,0,1002,1003,1006,876,877,878,42,913,915,916,0,1002,1006,1007,876,878,879,42,916,915,917,0,1007,1006,1008,879,878,880,42,705,917,915,0,1009,1008,1006,668,880,878,42,707,917,705,0,1010,1008,1009,670,880,668,42,707,918,917,0,1010,1011,1008,670,881,880,42,709,918,707,0,1012,1011,1010,672,881,670,42,709,919,918,0,1012,1013,1011,672,882,881,42,711,919,709,0,1014,1013,1012,674,882,672,42,711,920,919,0,1014,1015,1013,674,883,882,42,711,921,920,0,1014,1016,1015,674,884,883,42,713,921,711,0,1017,1016,1014,676,884,674,42,713,922,921,0,1017,1018,1016,676,885,884,42,715,922,713,0,1019,1018,1017,678,885,676,42,715,923,922,0,1019,1020,1018,678,886,885,42,717,923,715,0,1021,1020,1019,680,886,678,42,717,924,923,0,1021,1022,1020,680,887,886,42,719,924,717,0,1023,1022,1021,682,887,680,42,719,925,924,0,1023,1024,1022,682,888,887,42,721,925,719,0,1025,1024,1023,684,888,682,42,721,926,925,0,1025,1026,1024,684,889,888,42,723,926,721,0,1027,1026,1025,686,889,684,42,723,927,926,0,1027,1028,1026,686,890,889,42,725,927,723,0,1029,1028,1027,688,890,686,42,725,928,927,0,1029,1030,1028,688,891,890,42,726,928,725,0,1031,1030,1029,689,891,688,42,726,929,928,0,1031,1032,1030,689,892,891,42,726,930,929,0,1031,1033,1032,689,893,892,42,728,930,726,0,789,1034,787,691,893,689,42,931,930,728,0,1035,1034,789,894,893,691,42,931,932,930,0,1035,1036,1034,894,895,893,42,933,932,931,0,676,726,725,896,895,894,42,933,934,932,0,676,682,726,896,897,895,42,935,934,933,0,681,682,676,898,897,896,42,936,934,935,0,1037,1038,1039,899,897,898,42,936,937,934,0,1037,1040,1038,899,900,897,42,938,937,936,0,1041,1040,1037,901,900,899,42,938,929,937,0,1041,1032,1040,901,892,900,42,939,929,938,0,1042,1032,1041,902,892,901,42,939,928,929,0,1042,1030,1032,902,891,892,42,940,928,939,0,1043,1030,1042,903,891,902,42,940,927,928,0,1043,1028,1030,903,890,891,42,941,927,940,0,1044,1028,1043,904,890,903,42,941,926,927,0,1044,1026,1028,904,889,890,42,942,926,941,0,1045,1026,1044,905,889,904,42,942,925,926,0,1045,1024,1026,905,888,889,42,943,925,942,0,1046,1024,1045,906,888,905,42,943,924,925,0,1046,1022,1024,906,887,888,42,944,924,943,0,1047,1022,1046,907,887,906,42,923,924,944,0,1020,1022,1047,886,887,907,42,945,923,944,0,1048,1020,1047,908,886,907,42,922,923,945,0,1018,1020,1048,885,886,908,42,946,922,945,0,1049,1018,1048,909,885,908,42,921,922,946,0,1016,1018,1049,884,885,909,42,947,921,946,0,1050,1016,1049,910,884,909,42,947,920,921,0,1050,1015,1016,910,883,884,42,948,920,947,0,1051,1015,1050,911,883,910,42,948,919,920,0,1051,1013,1015,911,882,883,42,949,919,948,0,1052,1013,1051,912,882,911,42,949,918,919,0,1052,1011,1013,912,881,882,42,950,918,949,0,1053,1011,1052,913,881,912,42,950,917,918,0,1053,1008,1011,913,880,881,42,916,917,950,0,1007,1008,1053,879,880,913,42,951,916,950,0,1054,1007,1053,914,879,913,42,952,916,951,0,1055,1007,1054,915,879,914,42,952,913,916,0,1055,1002,1007,915,876,879,42,953,913,952,0,1056,1002,1055,916,876,915,42,953,912,913,0,1056,1001,1002,916,875,876,42,954,912,953,0,1057,1001,1056,917,875,916,42,954,911,912,0,1057,1000,1001,917,874,875,42,955,911,954,0,1058,1000,1057,918,874,917,42,955,956,911,0,1058,1059,1000,918,919,874,42,816,956,955,0,882,1059,1058,779,919,918,42,818,956,816,0,884,1059,882,781,919,779,42,818,834,956,0,884,911,1059,781,797,919,42,834,910,956,0,911,999,1059,797,873,919,42,835,910,834,0,912,999,911,798,873,797,42,835,909,910,0,912,998,999,798,872,873,42,836,909,835,0,913,998,912,799,872,798,42,836,908,909,0,913,997,998,799,871,872,42,837,908,836,0,914,997,913,800,871,799,42,837,838,908,0,914,915,997,800,801,871,42,956,910,911,0,1059,999,1000,919,873,874,42,816,955,814,0,882,1058,880,779,918,777,42,814,955,957,0,880,1058,1060,777,918,920,42,957,955,954,0,1060,1058,1057,920,918,917,42,957,954,958,0,1060,1057,1061,920,917,921,42,958,954,953,0,1061,1057,1056,921,917,916,42,959,958,953,0,1062,1061,1056,922,921,916,42,960,958,959,0,1063,1061,1062,923,921,922,42,960,961,958,0,1063,1064,1061,923,924,921,42,962,961,960,0,1065,1064,1063,925,924,923,42,962,810,961,0,1065,876,1064,925,773,924,42,808,810,962,0,874,876,1065,771,773,925,42,794,808,962,0,857,874,1065,757,771,925,42,805,808,794,0,871,874,857,768,771,757,42,805,794,795,0,871,857,858,768,757,758,42,794,962,793,0,857,1065,856,757,925,756,42,793,962,960,0,856,1065,1063,756,925,923,42,793,960,963,0,856,1063,1066,756,923,926,42,963,960,959,0,1066,1063,1062,926,923,922,42,963,959,964,0,1066,1062,1067,926,922,927,42,964,959,952,0,1067,1062,1055,927,922,915,42,959,953,952,0,1062,1056,1055,922,916,915,42,964,952,951,0,1067,1055,1054,927,915,914,42,965,964,951,0,1068,1067,1054,928,927,914,42,784,964,965,0,845,1067,1068,747,927,928,42,784,963,964,0,845,1066,1067,747,926,927,42,785,963,784,0,846,1066,845,748,926,747,42,785,793,963,0,846,856,1066,748,756,926,42,783,784,965,0,844,845,1068,746,747,928,42,783,965,966,0,844,1068,1069,746,928,929,42,966,965,967,0,1069,1068,1070,929,928,930,42,965,951,967,0,1068,1054,1070,928,914,930,42,951,950,967,0,1054,1053,1070,914,913,930,42,967,950,949,0,1070,1053,1052,930,913,912,42,967,949,968,0,1070,1052,1071,930,912,931,42,968,949,948,0,1071,1052,1051,931,912,911,42,968,948,969,0,1071,1051,1072,931,911,932,42,969,948,947,0,1072,1051,1050,932,911,910,42,969,947,970,0,1072,1050,1073,932,910,933,42,970,947,946,0,1073,1050,1049,933,910,909,42,970,946,971,0,1073,1049,1074,933,909,934,42,971,946,945,0,1074,1049,1048,934,909,908,42,971,945,972,0,1074,1048,1075,934,908,935,42,972,945,944,0,1075,1048,1047,935,908,907,42,972,944,973,0,1075,1047,1076,935,907,936,42,973,944,943,0,1076,1047,1046,936,907,906,42,973,943,974,0,1076,1046,1077,936,906,937,42,974,943,975,0,1077,1046,1078,937,906,938,42,943,942,975,0,1046,1045,1078,906,905,938,42,975,942,976,0,1078,1045,1079,938,905,939,42,942,941,976,0,1045,1044,1079,905,904,939,42,976,941,977,0,1079,1044,1080,939,904,940,42,941,940,977,0,1044,1043,1080,904,903,940,42,977,940,939,0,1080,1043,1042,940,903,902,42,977,939,938,0,1080,1042,1041,940,902,901,42,977,938,978,0,1080,1041,1081,940,901,941,42,978,938,936,0,1081,1041,1037,941,901,899,42,978,936,979,0,1081,1037,1082,941,899,942,42,979,936,935,0,1082,1037,1039,942,899,898,42,979,935,980,0,1082,1039,1083,942,898,943,42,980,935,933,0,680,681,676,943,898,896,42,981,980,933,0,679,680,676,944,943,896,42,982,980,981,0,1084,1083,1085,945,943,944,42,982,979,980,0,1084,1082,1083,945,942,943,42,983,979,982,0,1086,1082,1084,946,942,945,42,983,978,979,0,1086,1081,1082,946,941,942,42,983,977,978,0,1086,1080,1081,946,940,941,42,977,983,984,0,1080,1086,1087,940,946,947,42,985,984,983,0,1088,1087,1086,948,947,946,42,985,986,984,0,1088,1089,1087,948,949,947,42,987,986,985,0,1090,1089,1088,950,949,948,42,987,746,986,0,1090,807,1089,950,709,949,42,746,987,744,0,807,1090,805,709,950,707,42,744,987,988,0,805,1090,1091,707,950,951,42,988,987,985,0,1091,1090,1088,951,950,948,42,988,985,989,0,1091,1088,1092,951,948,952,42,989,985,983,0,1092,1088,1086,952,948,946,42,989,983,982,0,1092,1086,1084,952,946,945,42,736,989,982,0,797,1092,1084,699,952,945,42,737,989,736,0,798,1092,797,700,952,699,42,737,988,989,0,798,1091,1092,700,951,952,42,990,988,737,0,1093,1091,798,953,951,700,42,744,988,990,0,805,1091,1093,707,951,953,42,744,990,742,0,805,1093,803,707,953,705,42,742,990,741,0,803,1093,802,705,953,704,42,990,740,741,0,1093,801,802,953,703,704,42,990,739,740,0,1093,800,801,953,702,703,42,990,738,739,0,1093,799,800,953,701,702,42,990,737,738,0,1093,798,799,953,700,701,42,736,982,981,0,797,1084,1085,699,945,944,42,736,981,735,0,797,1085,796,699,944,698,42,981,933,735,0,679,676,677,944,896,698,42,735,933,733,0,677,676,678,698,896,696,42,733,933,731,0,678,676,724,696,896,694,42,933,730,731,0,676,723,724,896,693,694,42,933,931,730,0,676,725,723,896,894,693,42,730,931,728,0,791,1035,789,693,894,691,42,746,748,986,0,807,809,1089,709,711,949,42,986,748,991,0,1089,809,1094,949,711,954,42,748,992,991,0,809,1095,1094,711,955,954,42,748,749,992,0,809,810,1095,711,712,955,42,749,993,992,0,810,1096,1095,712,956,955,42,749,756,993,0,810,817,1096,712,719,956,42,750,756,749,0,811,817,810,713,719,712,42,756,994,993,0,817,1097,1096,719,957,956,42,756,757,994,0,817,818,1097,719,720,957,42,757,995,994,0,818,1098,1097,720,958,957,42,757,996,995,0,818,1099,1098,720,959,958,42,758,996,757,0,819,1099,818,721,959,720,42,758,765,996,0,819,826,1099,721,728,959,42,765,758,763,0,826,819,824,728,721,726,42,763,758,759,0,824,819,820,726,721,722,42,763,759,761,0,824,820,822,726,722,724,42,761,759,760,0,822,820,821,724,722,723,42,765,767,996,0,826,828,1099,728,730,959,42,996,767,997,0,1099,828,1100,959,730,960,42,767,998,997,0,828,1101,1100,730,961,960,42,767,999,998,0,828,1102,1101,730,962,961,42,767,768,999,0,828,829,1102,730,731,962,42,768,1000,999,0,829,1103,1102,731,963,962,42,768,775,1000,0,829,836,1103,731,738,963,42,769,775,768,0,830,836,829,732,738,731,42,775,1001,1000,0,836,1104,1103,738,964,963,42,775,776,1001,0,836,837,1104,738,739,964,42,776,966,1001,0,837,1069,1104,739,929,964,42,776,783,966,0,837,844,1069,739,746,929,42,777,783,776,0,838,844,837,740,746,739,42,1001,966,968,0,1104,1069,1071,964,929,931,42,966,967,968,0,1069,1070,1071,929,930,931,42,1001,968,969,0,1104,1071,1072,964,931,932,42,1000,1001,969,0,1103,1104,1072,963,964,932,42,1000,969,970,0,1103,1072,1073,963,932,933,42,999,1000,970,0,1102,1103,1073,962,963,933,42,999,970,971,0,1102,1073,1074,962,933,934,42,998,999,971,0,1101,1102,1074,961,962,934,42,998,971,972,0,1101,1074,1075,961,934,935,42,998,972,997,0,1101,1075,1100,961,935,960,42,997,972,973,0,1100,1075,1076,960,935,936,42,997,973,995,0,1100,1076,1098,960,936,958,42,995,973,974,0,1098,1076,1077,958,936,937,42,994,995,974,0,1097,1098,1077,957,958,937,42,994,974,975,0,1097,1077,1078,957,937,938,42,993,994,975,0,1096,1097,1078,956,957,938,42,992,993,975,0,1095,1096,1078,955,956,938,42,992,975,976,0,1095,1078,1079,955,938,939,42,991,992,976,0,1094,1095,1079,954,955,939,42,991,976,977,0,1094,1079,1080,954,939,940,42,991,977,984,0,1094,1080,1087,954,940,947,42,986,991,984,0,1089,1094,1087,949,954,947,42,996,997,995,0,1099,1100,1098,959,960,958,42,810,812,961,0,876,878,1064,773,775,924,42,961,812,957,0,1064,878,1060,924,775,920,42,812,814,957,0,878,880,1060,775,777,920,42,961,957,958,0,1064,1060,1061,924,920,921,42,930,937,929,0,1033,1040,1032,893,900,892,42,930,932,937,0,1033,1105,1040,893,895,900,42,932,934,937,0,1105,1038,1040,895,897,900,42,703,705,915,0,1005,1009,1006,666,668,878,42,806,804,1002,0,1106,868,1107,769,767,965,42,1002,804,802,0,1107,868,866,965,767,765,42,1002,802,1003,0,1107,866,1108,965,765,966,42,1003,802,801,0,1108,866,865,966,765,764,42,801,597,1003,0,865,641,1108,764,560,966,42,801,599,597,0,865,643,641,764,562,560,42,595,1003,597,0,639,1108,641,558,966,560,42,1004,1003,595,0,1109,1108,639,967,966,558,42,1004,1002,1003,0,1109,1107,1108,967,965,966,42,1005,1002,1004,0,1110,1107,1109,968,965,967,42,1005,806,1002,0,1110,1106,1107,968,769,965,42,1006,1005,1004,0,1111,1110,1109,969,968,967,42,1006,1004,593,0,1111,1109,637,969,967,556,42,593,1004,595,0,637,1109,639,556,967,558,42,592,1006,593,0,636,1111,637,555,969,556,42,803,795,796,0,870,858,859,766,758,759,42,215,217,389,0,215,217,422,177,179,352,42,215,389,1007,0,215,422,1112,177,352,970,42,1007,389,386,0,1112,422,419,970,352,348,42,1007,386,383,0,1112,419,416,970,348,345,42,1007,383,1008,0,1112,416,1113,970,345,971,42,1008,383,381,0,1113,416,414,971,345,343,42,1008,381,209,0,1113,414,209,971,343,171,42,208,209,381,0,208,209,414,170,171,343,42,209,210,1008,0,209,210,1113,171,172,971,42,1007,1008,210,0,1112,1113,210,970,971,172,42,210,212,1007,0,210,212,1112,172,174,970,42,212,215,1007,0,212,215,1112,174,177,970,42,204,372,203,0,204,403,203,166,334,165,42,203,372,202,0,203,403,202,165,334,164,42,202,372,201,0,202,403,201,164,334,163,42,232,224,225,0,236,226,227,194,186,187,42,232,225,226,0,236,227,228,194,187,188,42,232,226,230,0,236,228,237,194,188,192,42,172,173,231,0,169,170,235,134,135,193,42,172,231,1009,0,168,234,1114,134,193,972,42,1009,231,229,0,1114,234,232,972,193,191,42,1009,229,1010,0,1114,232,1115,972,191,973,42,1010,229,228,0,1115,232,231,973,191,190,42,166,1010,228,0,161,1115,231,128,973,190,42,168,1010,166,0,163,1115,161,130,973,128,42,168,1009,1010,0,163,1114,1115,130,972,973,42,170,1009,168,0,165,1114,163,132,972,130,42,172,1009,170,0,168,1114,165,134,972,132,42,166,228,1011,0,161,231,1116,128,190,974,42,1011,228,211,0,1116,231,211,974,190,173,42,228,213,211,0,231,213,211,190,175,173,42,164,1011,211,0,159,1116,211,126,974,173,42,166,1011,164,0,161,1116,159,128,974,126,42,164,211,163,0,159,211,158,126,173,125,42,127,128,171,0,116,167,166,89,90,133,42,126,127,171,0,115,116,166,88,89,133,42,126,171,125,0,115,166,114,88,133,87,42,171,169,125,0,166,164,114,133,131,87,42,125,169,1012,0,114,164,1117,87,131,975,42,1012,169,1013,0,1117,164,1118,975,131,976,42,1013,169,167,0,1118,164,162,976,131,129,42,1013,167,1014,0,1118,162,1119,976,129,977,42,1014,167,165,0,1119,162,160,977,129,127,42,1014,165,1015,0,1119,160,1120,977,127,978,42,1015,165,161,0,1120,160,156,978,127,123,42,1015,161,1016,0,1120,156,1121,978,123,979,42,161,159,1016,0,156,154,1121,123,121,979,42,1016,159,1017,0,1121,154,1122,979,121,980,42,159,157,1017,0,154,152,1122,121,119,980,42,1017,157,155,0,1122,152,150,980,119,117,42,1017,155,1018,0,1122,150,1123,980,117,981,42,1018,155,153,0,1123,150,148,981,117,115,42,1018,153,1019,0,1123,148,1124,981,115,982,42,118,1019,153,0,106,1124,148,80,982,115,42,119,1019,118,0,107,1124,106,81,982,80,42,119,1020,1019,0,107,1125,1124,81,983,982,42,119,1021,1020,0,107,1126,1125,81,984,983,42,120,1021,119,0,108,1126,107,82,984,81,42,120,1022,1021,0,108,1127,1126,82,985,984,42,122,1022,120,0,1128,1127,108,84,985,82,42,122,124,1022,0,111,113,1129,84,86,985,42,124,1023,1022,0,113,1130,1129,86,986,985,42,124,1012,1023,0,113,1117,1130,86,975,986,42,124,125,1012,0,113,114,1117,86,87,975,42,1023,1012,1024,0,1130,1117,1131,986,975,987,42,1012,1013,1024,0,1117,1118,1131,975,976,987,42,1024,1013,1025,0,1131,1118,1132,987,976,988,42,1025,1013,1014,0,1132,1118,1119,988,976,977,42,1025,1014,1026,0,1132,1119,1133,988,977,989,42,1026,1014,1015,0,1133,1119,1120,989,977,978,42,1026,1015,1027,0,1133,1120,1134,989,978,990,42,1015,1016,1027,0,1120,1121,1134,978,979,990,42,1027,1016,1028,0,1134,1121,1135,990,979,991,42,1016,1017,1028,0,1121,1122,1135,979,980,991,42,1028,1017,1018,0,1135,1122,1123,991,980,981,42,1028,1018,1029,0,1135,1123,1136,991,981,992,42,1029,1018,1019,0,1136,1123,1124,992,981,982,42,1020,1029,1019,0,1125,1136,1124,983,992,982,42,1020,1030,1029,0,1125,1137,1136,983,993,992,42,1031,1030,1020,0,1138,1137,1125,994,993,983,42,1032,1030,1031,0,1139,1137,1138,995,993,994,42,1032,1033,1030,0,1139,1140,1137,995,996,993,42,1032,1034,1033,0,1141,1142,1143,995,997,996,42,1032,1035,1034,0,1141,1144,1142,995,998,997,42,1036,1035,1032,0,1145,1144,1141,999,998,995,42,1037,1035,1036,0,1146,1144,1145,1000,998,999,42,1037,1038,1035,0,1146,1147,1144,1000,1001,998,42,1039,1038,1037,0,1148,1147,1146,1002,1001,1000,42,1039,1040,1038,0,1148,1149,1147,1002,1003,1001,42,1041,1040,1039,0,1150,1149,1148,1004,1003,1002,42,1041,1042,1040,0,1150,1151,1149,1004,1005,1003,42,1043,1042,1041,0,1152,1151,1150,1006,1005,1004,42,1044,1042,1043,0,1153,1151,1152,1007,1005,1006,42,1042,1044,1045,0,1151,1153,1154,1005,1007,1008,42,1044,1046,1045,0,1153,1155,1154,1007,1009,1008,42,1044,1047,1046,0,1153,1156,1155,1007,1010,1009,42,1048,1047,1044,0,1157,1156,1153,1011,1010,1007,42,1049,1047,1048,0,1158,1156,1157,1012,1010,1011,42,1049,1050,1047,0,1158,1159,1156,1012,1013,1010,42,1049,1051,1050,0,1158,1160,1159,1012,1014,1013,42,1052,1051,1049,0,1161,1160,1158,1015,1014,1012,42,1053,1051,1052,0,1162,1160,1161,1016,1014,1015,42,1054,1051,1053,0,1163,1160,1162,1017,1014,1016,42,1054,1055,1051,0,1163,1164,1160,1017,1018,1014,42,1056,1055,1054,0,1165,1164,1163,1019,1018,1017,42,1056,1057,1055,0,1165,1166,1164,1019,1020,1018,42,1056,1058,1057,0,1165,1167,1166,1019,1021,1020,42,1059,1058,1056,0,1168,1167,1165,1022,1021,1019,42,1059,1060,1058,0,1168,1169,1167,1022,1023,1021,42,1061,1060,1059,0,1170,1169,1168,1024,1023,1022,42,1060,1061,1062,0,1169,1170,1171,1023,1024,1025,42,1061,1063,1062,0,1170,1172,1171,1024,1026,1025,42,1061,1064,1063,0,1170,1173,1172,1024,1027,1026,42,1064,1061,1065,0,1173,1170,1174,1027,1024,1028,42,1065,1061,1059,0,1174,1170,1168,1028,1024,1022,42,1065,1059,1066,0,1174,1168,1175,1028,1022,1029,42,1066,1059,1056,0,1175,1168,1165,1029,1022,1019,42,1056,1054,1066,0,1165,1163,1175,1019,1017,1029,42,1066,1054,1053,0,1175,1163,1162,1029,1017,1016,42,1066,1053,1067,0,1175,1162,1176,1029,1016,1030,42,1067,1053,1052,0,1176,1162,1161,1030,1016,1015,42,1067,1052,1068,0,1176,1161,1177,1030,1015,1031,42,1068,1052,1069,0,1177,1161,1178,1031,1015,1032,42,1052,1049,1069,0,1161,1158,1178,1015,1012,1032,42,1069,1049,1048,0,1178,1158,1157,1032,1012,1011,42,1069,1048,1070,0,1178,1157,1179,1032,1011,1033,42,1070,1048,1043,0,1179,1157,1152,1033,1011,1006,42,1048,1044,1043,0,1157,1153,1152,1011,1007,1006,42,1070,1043,1071,0,1179,1152,1180,1033,1006,1034,42,1071,1043,1041,0,1180,1152,1150,1034,1006,1004,42,1071,1041,1072,0,1180,1150,1181,1034,1004,1035,42,1072,1041,1039,0,1181,1150,1148,1035,1004,1002,42,1072,1039,1073,0,1181,1148,1182,1035,1002,1036,42,1073,1039,1037,0,1182,1148,1146,1036,1002,1000,42,1073,1037,1074,0,1182,1146,1183,1036,1000,1037,42,1074,1037,1036,0,1183,1146,1145,1037,1000,999,42,1075,1074,1036,0,1184,1185,1186,1038,1037,999,42,1023,1074,1075,0,1130,1185,1184,986,1037,1038,42,1023,1024,1074,0,1130,1131,1185,986,987,1037,42,1024,1076,1074,0,1131,1187,1185,987,1039,1037,42,1024,1077,1076,0,1131,1188,1187,987,1040,1039,42,1024,1025,1077,0,1131,1132,1188,987,988,1040,42,1025,1026,1077,0,1132,1133,1188,988,989,1040,42,1077,1026,1078,0,1189,1190,1191,1040,989,1041,42,1078,1026,1079,0,1191,1190,1192,1041,989,1042,42,1079,1026,1027,0,1192,1190,1193,1042,989,990,42,1079,1027,1080,0,1192,1193,1194,1042,990,1043,42,1080,1027,1028,0,1195,1196,1197,1043,990,991,42,1080,1028,1081,0,1195,1197,1198,1043,991,1044,42,1081,1028,1082,0,1198,1197,1199,1044,991,1045,42,1082,1028,1083,0,1199,1197,1200,1045,991,1046,42,1083,1028,1029,0,1201,1135,1136,1046,991,992,42,1083,1029,1030,0,1201,1136,1137,1046,992,993,42,1030,1033,1083,0,1137,1140,1201,993,996,1046,42,1082,1083,1033,0,1199,1200,1143,1045,1046,996,42,1034,1082,1033,0,1142,1199,1143,997,1045,996,42,1084,1082,1034,0,1202,1199,1142,1047,1045,997,42,1084,1081,1082,0,1202,1198,1199,1047,1044,1045,42,1081,1084,1085,0,1198,1202,1203,1044,1047,1048,42,1085,1084,1086,0,1203,1202,1204,1048,1047,1049,42,1086,1084,1087,0,1204,1202,1205,1049,1047,1050,42,1088,1087,1084,0,1206,1205,1202,1051,1050,1047,42,1088,1089,1087,0,1206,1207,1205,1051,1052,1050,42,1038,1089,1088,0,1147,1207,1206,1001,1052,1051,42,1038,1040,1089,0,1147,1149,1207,1001,1003,1052,42,1040,1090,1089,0,1149,1208,1207,1003,1053,1052,42,1040,1042,1090,0,1149,1151,1208,1003,1005,1053,42,1042,1045,1090,0,1151,1154,1208,1005,1008,1053,42,1090,1045,1091,0,1208,1154,1209,1053,1008,1054,42,1045,1092,1091,0,1154,1210,1209,1008,1055,1054,42,1045,1046,1092,0,1154,1155,1210,1008,1009,1055,42,1092,1046,1093,0,1210,1155,1211,1055,1009,1056,42,1093,1046,1094,0,1211,1155,1212,1056,1009,1057,42,1046,1047,1094,0,1155,1156,1212,1009,1010,1057,42,1094,1047,1050,0,1212,1156,1159,1057,1010,1013,42,1094,1050,1095,0,1212,1159,1213,1057,1013,1058,42,1095,1050,1096,0,1213,1159,1214,1058,1013,1059,42,1051,1096,1050,0,1160,1214,1159,1014,1059,1013,42,1051,1097,1096,0,1160,1215,1214,1014,1060,1059,42,1055,1097,1051,0,1164,1215,1160,1018,1060,1014,42,1055,1098,1097,0,1164,1216,1215,1018,1061,1060,42,1057,1098,1055,0,1166,1216,1164,1020,1061,1018,42,1057,1099,1098,0,1166,1217,1216,1020,1062,1061,42,1057,1100,1099,0,1166,1218,1217,1020,1063,1062,42,1058,1100,1057,0,1167,1218,1166,1021,1063,1020,42,1058,1101,1100,0,1167,1219,1218,1021,1064,1063,42,1060,1101,1058,0,1169,1219,1167,1023,1064,1021,42,1101,1060,1102,0,1219,1169,1220,1064,1023,1065,42,1060,1062,1102,0,1169,1171,1220,1023,1025,1065,42,1102,1062,1103,0,1221,1222,1223,1065,1025,1066,42,1062,1104,1103,0,1222,1224,1223,1025,1067,1066,42,1062,1063,1104,0,1222,1225,1224,1025,1026,1067,42,1063,1105,1104,0,1225,1226,1224,1026,1068,1067,42,1063,1106,1105,0,1225,1227,1226,1026,1069,1068,42,1064,1106,1063,0,1173,1228,1172,1027,1069,1026,42,1064,1107,1106,0,1173,1229,1228,1027,1070,1069,42,1107,1064,1108,0,1229,1173,1230,1070,1027,1071,42,1108,1064,1065,0,1230,1173,1174,1071,1027,1028,42,1108,1065,1067,0,1230,1174,1176,1071,1028,1030,42,1067,1065,1066,0,1176,1174,1175,1030,1028,1029,42,1068,1108,1067,0,1177,1230,1176,1031,1071,1030,42,1109,1108,1068,0,1231,1230,1177,1072,1071,1031,42,1109,1107,1108,0,1231,1229,1230,1072,1070,1071,42,1110,1107,1109,0,1232,1229,1231,1073,1070,1072,42,1107,1110,1111,0,1229,1232,1233,1070,1073,1074,42,1110,1112,1111,0,1232,1234,1233,1073,1075,1074,42,1110,1113,1112,0,1232,1235,1234,1073,1076,1075,42,1113,1110,1114,0,1235,1232,1236,1076,1073,1077,42,1114,1110,1109,0,1236,1232,1231,1077,1073,1072,42,1114,1109,1115,0,1236,1231,1237,1077,1072,1078,42,1115,1109,1068,0,1237,1231,1177,1078,1072,1031,42,1068,1069,1115,0,1177,1178,1237,1031,1032,1078,42,1069,1070,1115,0,1178,1179,1237,1032,1033,1078,42,1115,1070,1116,0,1237,1179,1238,1078,1033,1079,42,1116,1070,1071,0,1238,1179,1180,1079,1033,1034,42,1116,1071,1117,0,1238,1180,1239,1079,1034,1080,42,1117,1071,1072,0,1239,1180,1181,1080,1034,1035,42,1117,1072,1118,0,1239,1181,1240,1080,1035,1081,42,1118,1072,1073,0,1240,1181,1182,1081,1035,1036,42,1076,1118,1073,0,1241,1240,1182,1039,1081,1036,42,1076,1077,1118,0,1241,1189,1240,1039,1040,1081,42,1118,1077,1078,0,1240,1189,1191,1081,1040,1041,42,1118,1078,1119,0,1240,1191,1242,1081,1041,1082,42,1078,1079,1119,0,1191,1192,1242,1041,1042,1082,42,1113,1119,1079,0,1235,1242,1192,1076,1082,1042,42,1119,1113,1114,0,1242,1235,1236,1082,1076,1077,42,1119,1114,1116,0,1242,1236,1238,1082,1077,1079,42,1116,1114,1115,0,1238,1236,1237,1079,1077,1078,42,1117,1119,1116,0,1239,1242,1238,1080,1082,1079,42,1118,1119,1117,0,1240,1242,1239,1081,1082,1080,42,1113,1079,1080,0,1235,1192,1194,1076,1042,1043,42,1112,1113,1080,0,1234,1235,1194,1075,1076,1043,42,1112,1080,1081,0,1243,1195,1198,1075,1043,1044,42,1112,1081,1085,0,1243,1198,1203,1075,1044,1048,42,1111,1112,1085,0,1244,1243,1203,1074,1075,1048,42,1111,1085,1086,0,1244,1203,1204,1074,1048,1049,42,1106,1111,1086,0,1227,1244,1204,1069,1074,1049,42,1107,1111,1106,0,1229,1233,1228,1070,1074,1069,42,1106,1086,1105,0,1227,1204,1226,1069,1049,1068,42,1105,1086,1087,0,1226,1204,1205,1068,1049,1050,42,1105,1087,1120,0,1226,1205,1245,1068,1050,1083,42,1089,1120,1087,0,1207,1245,1205,1052,1083,1050,42,1089,1090,1120,0,1207,1208,1245,1052,1053,1083,42,1090,1091,1120,0,1208,1209,1245,1053,1054,1083,42,1104,1120,1091,0,1224,1245,1209,1067,1083,1054,42,1104,1105,1120,0,1224,1226,1245,1067,1068,1083,42,1103,1104,1091,0,1223,1224,1209,1066,1067,1054,42,1103,1091,1092,0,1223,1209,1210,1066,1054,1055,42,1103,1092,1121,0,1223,1210,1246,1066,1055,1084,42,1121,1092,1093,0,1246,1210,1211,1084,1055,1056,42,1121,1093,1122,0,1246,1211,1247,1084,1056,1085,42,1093,1123,1122,0,1211,1248,1247,1056,1086,1085,42,1093,1094,1123,0,1211,1212,1248,1056,1057,1086,42,1123,1094,1095,0,1248,1212,1213,1086,1057,1058,42,1123,1095,1124,0,1248,1213,1249,1086,1058,1087,42,1124,1095,1125,0,1249,1213,1250,1087,1058,1088,42,1095,1096,1125,0,1213,1214,1250,1058,1059,1088,42,1125,1096,1126,0,1250,1214,1251,1088,1059,1089,42,1097,1126,1096,0,1215,1251,1214,1060,1089,1059,42,1097,1127,1126,0,1215,1252,1251,1060,1090,1089,42,1098,1127,1097,0,1216,1252,1215,1061,1090,1060,42,1098,1128,1127,0,1216,1253,1252,1061,1091,1090,42,1099,1128,1098,0,1217,1253,1216,1062,1091,1061,42,1099,1129,1128,0,1217,1254,1253,1062,1092,1091,42,1130,1129,1099,0,1255,1254,1217,1093,1092,1062,42,1130,1131,1129,0,1255,1256,1254,1093,1094,1092,42,1132,1131,1130,0,1257,1256,1255,1095,1094,1093,42,1132,1133,1131,0,1257,1258,1256,1095,1096,1094,42,1132,1134,1133,0,1257,1259,1258,1095,1097,1096,42,1102,1134,1132,0,1220,1259,1257,1065,1097,1095,42,1102,1122,1134,0,1221,1247,1260,1065,1085,1097,42,1102,1121,1122,0,1221,1246,1247,1065,1084,1085,42,1102,1103,1121,0,1221,1223,1246,1065,1066,1084,42,1134,1122,1135,0,1260,1247,1261,1097,1085,1098,42,1122,1136,1135,0,1247,1262,1261,1085,1099,1098,42,1122,1123,1136,0,1247,1248,1262,1085,1086,1099,42,1123,1124,1136,0,1248,1249,1262,1086,1087,1099,42,1136,1124,1137,0,1262,1249,1263,1099,1087,1100,42,1124,1138,1137,0,1249,1264,1263,1087,1101,1100,42,1124,1125,1138,0,1249,1250,1264,1087,1088,1101,42,1138,1125,1139,0,1264,1250,1265,1101,1088,1102,42,1125,1126,1139,0,1250,1251,1265,1088,1089,1102,42,1139,1126,1140,0,1265,1251,1266,1102,1089,1103,42,1127,1140,1126,0,1252,1266,1251,1090,1103,1089,42,1127,1141,1140,0,1252,1267,1266,1090,1104,1103,42,1128,1141,1127,0,1253,1267,1252,1091,1104,1090,42,1128,1142,1141,0,1253,1268,1267,1091,1105,1104,42,1129,1142,1128,0,1254,1268,1253,1092,1105,1091,42,1129,1143,1142,0,1254,1269,1268,1092,1106,1105,42,1131,1143,1129,0,1256,1269,1254,1094,1106,1092,42,1131,1144,1143,0,1256,1270,1269,1094,1107,1106,42,1133,1144,1131,0,1258,1270,1256,1096,1107,1094,42,1133,1145,1144,0,1258,1271,1270,1096,1108,1107,42,1133,1135,1145,0,1258,1272,1271,1096,1098,1108,42,1134,1135,1133,0,1259,1272,1258,1097,1098,1096,42,1135,1146,1145,0,1272,1273,1271,1098,1109,1108,42,1135,1136,1146,0,1261,1262,1274,1098,1099,1109,42,1136,1137,1146,0,1262,1263,1274,1099,1100,1109,42,1146,1137,1147,0,1274,1263,1275,1109,1100,1110,42,1137,1148,1147,0,1263,1276,1275,1100,1111,1110,42,1137,1138,1148,0,1263,1264,1276,1100,1101,1111,42,1138,1149,1148,0,1264,1277,1276,1101,1112,1111,42,1138,1139,1149,0,1264,1265,1277,1101,1102,1112,42,1149,1139,1150,0,1277,1265,1278,1112,1102,1113,42,1139,1140,1150,0,1265,1266,1278,1102,1103,1113,42,1150,1140,1151,0,1278,1266,1279,1113,1103,1114,42,1141,1151,1140,0,1267,1279,1266,1104,1114,1103,42,1141,1152,1151,0,1267,1280,1279,1104,1115,1114,42,1142,1152,1141,0,1268,1280,1267,1105,1115,1104,42,1142,1153,1152,0,1268,1281,1280,1105,1116,1115,42,1143,1153,1142,0,1269,1281,1268,1106,1116,1105,42,1143,1154,1153,0,1269,1282,1281,1106,1117,1116,42,1144,1154,1143,0,1270,1282,1269,1107,1117,1106,42,1144,1155,1154,0,1270,1283,1282,1107,1118,1117,42,1145,1155,1144,0,1271,1283,1270,1108,1118,1107,42,1145,1156,1155,0,1271,1284,1283,1108,1119,1118,42,1145,1146,1156,0,1271,1273,1284,1108,1109,1119,42,1146,1147,1156,0,1273,1285,1284,1109,1110,1119,42,1156,1147,1157,0,1284,1285,1286,1119,1110,1120,42,1147,1158,1157,0,1285,1287,1286,1110,1121,1120,42,1147,1148,1158,0,1275,1276,1288,1110,1111,1121,42,1148,1159,1158,0,1276,1289,1288,1111,1122,1121,42,1148,1149,1159,0,1276,1277,1289,1111,1112,1122,42,1149,1160,1159,0,1277,1290,1289,1112,1123,1122,42,1149,1150,1160,0,1277,1278,1290,1112,1113,1123,42,1160,1150,1161,0,1290,1278,1291,1123,1113,1124,42,1150,1151,1161,0,1278,1279,1291,1113,1114,1124,42,1161,1151,1162,0,1291,1279,1292,1124,1114,1125,42,1152,1162,1151,0,1280,1292,1279,1115,1125,1114,42,1152,1163,1162,0,1280,1293,1292,1115,1126,1125,42,1153,1163,1152,0,1281,1293,1280,1116,1126,1115,42,1153,1164,1163,0,1281,1294,1293,1116,1127,1126,42,1154,1164,1153,0,1282,1294,1281,1117,1127,1116,42,1154,1165,1164,0,1282,1295,1294,1117,1128,1127,42,1155,1165,1154,0,1283,1295,1282,1118,1128,1117,42,1166,1165,1155,0,1296,1295,1283,1129,1128,1118,42,1167,1165,1166,0,1297,1295,1296,1130,1128,1129,42,1168,1165,1167,0,1298,1295,1297,1131,1128,1130,42,1168,1164,1165,0,1298,1294,1295,1131,1127,1128,42,1168,1169,1164,0,1298,1299,1294,1131,1132,1127,42,1168,1170,1169,0,1298,1300,1299,1131,1133,1132,42,1168,1171,1170,0,1298,1301,1300,1131,1134,1133,42,1167,1171,1168,0,1297,1301,1298,1130,1134,1131,42,1167,1172,1171,0,1297,1302,1301,1130,1135,1134,42,1173,1172,1167,0,1303,1302,1297,1136,1135,1130,42,1174,1172,1173,0,1304,1302,1303,1137,1135,1136,42,1175,1172,1174,0,371,392,393,1138,1135,1137,42,1175,1171,1172,0,371,391,392,1138,1134,1135,42,1170,1171,1175,0,390,391,371,1133,1134,1138,42,1176,1170,1175,0,377,390,371,1139,1133,1138,42,1169,1170,1176,0,1299,1300,1305,1132,1133,1139,42,1169,1176,1177,0,1299,1305,1306,1132,1139,1140,42,1178,1177,1176,0,1307,1306,1305,1141,1140,1139,42,1178,1179,1177,0,1307,1308,1306,1141,1142,1140,42,1180,1179,1178,0,1309,1308,1307,1143,1142,1141,42,1180,1181,1179,0,1309,1310,1308,1143,1144,1142,42,1181,1180,1182,0,1310,1309,1311,1144,1143,1145,42,1180,1175,1182,0,375,371,374,1143,1138,1145,42,1178,1175,1180,0,376,371,375,1141,1138,1143,42,1178,1176,1175,0,376,377,371,1141,1139,1138,42,1182,1175,1183,0,374,371,372,1145,1138,1146,42,1175,1184,1183,0,371,373,372,1138,1147,1146,42,1175,1174,1184,0,371,393,373,1138,1137,1147,42,1184,1174,1185,0,1312,1304,1313,1147,1137,1148,42,1185,1174,1173,0,1313,1304,1303,1148,1137,1136,42,1185,1173,1157,0,1313,1303,1286,1148,1136,1120,42,1173,1166,1157,0,1303,1296,1286,1136,1129,1120,42,1167,1166,1173,0,1297,1296,1303,1130,1129,1136,42,1157,1166,1156,0,1286,1296,1284,1120,1129,1119,42,1156,1166,1155,0,1284,1296,1283,1119,1129,1118,42,1158,1185,1157,0,1287,1313,1286,1121,1148,1120,42,1186,1185,1158,0,1314,1313,1287,1149,1148,1121,42,1185,1186,1184,0,1313,1314,1312,1148,1149,1147,42,1186,1183,1184,0,1314,1315,1312,1149,1146,1147,42,1186,1187,1183,0,1316,1317,1318,1149,1150,1146,42,1159,1187,1186,0,1289,1317,1316,1122,1150,1149,42,1160,1187,1159,0,1290,1317,1289,1123,1150,1122,42,1160,1181,1187,0,1290,1310,1317,1123,1144,1150,42,1160,1161,1181,0,1290,1291,1310,1123,1124,1144,42,1181,1161,1179,0,1310,1291,1308,1144,1124,1142,42,1161,1162,1179,0,1291,1292,1308,1124,1125,1142,42,1179,1162,1177,0,1308,1292,1306,1142,1125,1140,42,1177,1162,1163,0,1306,1292,1293,1140,1125,1126,42,1169,1177,1163,0,1299,1306,1293,1132,1140,1126,42,1169,1163,1164,0,1299,1293,1294,1132,1126,1127,42,1187,1181,1182,0,1317,1310,1311,1150,1144,1145,42,1187,1182,1183,0,1317,1311,1318,1150,1145,1146,42,1159,1186,1158,0,1289,1316,1288,1122,1149,1121,42,1188,1102,1132,0,1319,1220,1257,1151,1065,1095,42,1101,1102,1188,0,1219,1220,1319,1064,1065,1151,42,1101,1188,1100,0,1219,1319,1218,1064,1151,1063,42,1188,1130,1100,0,1319,1255,1218,1151,1093,1063,42,1188,1132,1130,0,1319,1257,1255,1151,1095,1093,42,1100,1130,1099,0,1218,1255,1217,1063,1093,1062,42,1074,1076,1073,0,1183,1241,1182,1037,1039,1036,42,1035,1038,1088,0,1144,1147,1206,998,1001,1051,42,1035,1088,1034,0,1144,1206,1142,998,1051,997,42,1034,1088,1084,0,1142,1206,1202,997,1051,1047,42,1022,1023,1075,0,1129,1130,1184,985,986,1038,42,1022,1075,1021,0,1127,1320,1126,985,1038,984,42,1021,1075,1031,0,1126,1320,1138,984,1038,994,42,1031,1075,1036,0,1138,1320,1321,994,1038,999,42,1036,1032,1031,0,1321,1139,1138,999,995,994,42,1021,1031,1020,0,1126,1138,1125,984,994,983,42,122,120,121,0,1128,108,109,84,82,83,42,97,98,123,0,78,79,112,59,60,85,42,58,59,94,0,23,24,73,20,21,56,42,94,92,58,0,73,75,23,56,54,20,42,58,92,91,0,23,75,1322,20,54,53,42,58,91,57,0,23,1322,22,20,53,19,42,57,91,1189,0,22,1322,1323,19,53,1152,42,1189,91,90,0,1324,68,67,1152,53,52,42,24,1189,90,0,1325,1324,67,1153,1152,52,42,21,24,90,0,1326,1325,67,1154,1153,52,42,21,90,88,0,1326,67,65,1154,52,50,42,19,21,88,0,18,1326,65,16,1154,50,42,19,88,18,0,18,65,17,16,50,15,42,65,66,68,0,32,33,42,27,28,30,42,66,67,68,0,33,34,42,28,29,30,42,12,56,11,0,25,19,21,9,17,8,42,4,5,3,1,1327,1328,1329,4,1155,3,42,4,6,5,1,1327,1330,1328,4,1156,1155,42,7,6,4,1,1331,1330,1327,7,1156,4,42,7,8,6,1,1331,1332,1330,7,1157,1156,42,9,7,8,1,1333,1331,1332,6,7,1157,42,20,19,1,1,1334,1335,1336,1158,16,1,42,20,21,19,1,1334,1337,1335,1158,1154,16,42,22,21,20,1,1338,1337,1334,1159,1154,1158,42,23,21,22,1,1339,1337,1338,1160,1154,1159,42,23,24,21,1,1339,1340,1337,1160,1153,1154,42,23,25,24,1,1339,1341,1340,1160,1161,1153,42,23,26,25,1,1339,1342,1341,1160,1162,1161,42,23,27,26,1,1339,1343,1342,1160,1163,1162,42,23,28,27,1,1339,1344,1343,1160,1164,1163,42,23,29,28,1,1339,1345,1344,1160,1165,1164,42,22,29,23,1,1338,1345,1339,1159,1165,1160,42,30,29,22,1,1346,1345,1338,1166,1165,1159,42,30,31,29,1,1346,1347,1345,1166,1167,1165,42,30,32,31,1,1346,1348,1347,1166,1168,1167,42,33,32,30,1,1349,1348,1346,1169,1168,1166,42,33,34,32,1,1349,1350,1348,1169,1170,1168,42,35,34,33,1,1351,1350,1349,1171,1170,1169,42,35,36,34,1,1351,1352,1350,1171,1172,1170,42,35,37,36,1,1351,1353,1352,1171,1173,1172,42,37,35,5,1,1353,1351,1328,1173,1171,1155,42,35,33,5,1,1351,1349,1328,1171,1169,1155,42,5,33,30,1,1328,1349,1346,1155,1169,1166,42,5,30,3,1,1328,1346,1329,1155,1166,3,42,30,1,3,1,1346,1336,1329,1166,1,3,42,30,22,1,1,1346,1338,1336,1166,1159,1,42,22,20,1,1,1338,1334,1336,1159,1158,1,42,6,37,5,1,1330,1353,1328,1156,1173,1155,42,6,38,37,1,1330,1354,1353,1156,1174,1173,42,6,39,38,1,1330,1355,1354,1156,1175,1174,42,8,39,6,1,1332,1355,1330,1157,1175,1156,42,8,40,39,1,1332,1356,1355,1157,1176,1175,42,41,40,8,1,1357,1356,1332,1177,1176,1157,42,42,40,41,1,1358,1359,1360,1178,1176,1177,42,42,43,40,1,1358,1361,1359,1178,1179,1176,42,42,44,43,1,1358,1362,1361,1178,1180,1179,42,45,44,42,1,1363,1362,1358,1181,1180,1178,42,45,46,44,1,1363,1364,1362,1181,1182,1180,42,46,45,47,1,1364,1363,1362,1182,1181,1183,42,47,45,48,1,1362,1363,1358,1183,1181,1184,42,45,49,48,1,1363,1365,1358,1181,1185,1184,42,45,50,49,1,1363,1366,1365,1181,1186,1185,42,45,51,50,1,1363,1365,1366,1181,1187,1186,42,45,42,51,1,1363,1358,1365,1181,1178,1187,42,42,41,51,1,1358,1360,1365,1178,1177,1187,42,51,41,52,1,1367,1357,1368,1187,1177,1188,42,52,41,8,1,1368,1357,1332,1188,1177,1157,42,9,8,52,1,1333,1332,1368,6,1157,1188,42,53,52,9,1,1369,1368,1333,1189,1188,6,42,53,51,52,1,1369,1367,1368,1189,1187,1188,42,50,51,53,1,1370,1367,1369,1186,1187,1189,42,49,50,53,1,1371,1372,1373,1185,1186,1189,42,49,53,54,1,1371,1373,1374,1185,1189,1190,42,53,55,54,1,1373,1375,1374,1189,18,1190,42,53,11,55,1,1373,1376,1375,1189,8,18,42,53,9,11,1,1369,1333,1377,1189,6,8,42,1189,24,25,1,1378,1340,1341,1152,1153,1161,42,1190,1189,25,1,1379,1380,1341,1191,1152,1161,42,57,1189,1190,1,1381,1380,1379,19,1152,1191,42,1191,57,1190,1,1382,1381,1379,1192,19,1191,42,1191,55,57,1,1382,1375,1381,1192,18,19,42,54,55,1191,1,1374,1375,1382,1190,18,1192,42,1192,54,1191,1,1383,1374,1382,1193,1190,1192,42,49,54,1192,1,1371,1374,1383,1185,1190,1193,42,48,49,1192,1,1358,1365,1360,1184,1185,1193,42,48,1192,1193,1,1358,1360,1359,1184,1193,1194,42,1192,1191,1193,1,1383,1382,1384,1193,1192,1194,42,1193,1191,1194,1,1384,1382,1385,1194,1192,1195,42,1194,1191,1190,1,1385,1382,1379,1195,1192,1191,42,1194,1190,1195,1,1385,1379,1386,1195,1191,1196,42,1190,1196,1195,1,1379,1387,1386,1191,1197,1196,42,1190,25,1196,1,1379,1341,1387,1191,1161,1197,42,1196,25,1197,1,1387,1341,1388,1197,1161,1198,42,1197,25,26,1,1388,1341,1342,1198,1161,1162,42,26,1198,1197,1,1342,1389,1388,1162,1199,1198,42,27,1198,26,1,1343,1389,1342,1163,1199,1162,42,27,1199,1198,1,1343,1390,1389,1163,1200,1199,42,28,1199,27,1,1344,1390,1343,1164,1200,1163,42,28,1200,1199,1,1344,1391,1390,1164,1201,1200,42,28,1201,1200,1,1344,1392,1391,1164,1202,1201,42,29,1201,28,1,1345,1392,1344,1165,1202,1164,42,31,1201,29,1,1347,1392,1345,1167,1202,1165,42,31,1202,1201,1,1347,1393,1392,1167,1203,1202,42,31,1203,1202,1,1347,1394,1393,1167,1204,1203,42,32,1203,31,1,1348,1394,1347,1168,1204,1167,42,34,1203,32,1,1350,1394,1348,1170,1204,1168,42,1204,1203,34,1,1395,1394,1350,1205,1204,1170,42,1204,1205,1203,1,1395,1396,1394,1205,1206,1204,42,1206,1205,1204,1,1397,1396,1395,1207,1206,1205,42,1206,1207,1205,1,1397,1398,1396,1207,1208,1206,42,1208,1207,1206,1,1399,1398,1397,1209,1208,1207,42,1208,1209,1207,1,1399,1400,1398,1209,1210,1208,42,1210,1209,1208,1,1401,1400,1399,1211,1210,1209,42,1210,1211,1209,1,1401,1402,1400,1211,1212,1210,42,1212,1211,1210,1,1403,1402,1401,1213,1212,1211,42,1212,1213,1211,1,1403,1404,1402,1213,1214,1212,42,1214,1213,1212,1,1405,1404,1403,1215,1214,1213,42,1214,1215,1213,1,1405,1406,1404,1215,1216,1214,42,1214,1216,1215,1,1405,1407,1406,1215,1217,1216,42,1214,1217,1216,1,1405,1408,1407,1215,1218,1217,42,1218,1217,1214,1,1409,1408,1405,1219,1218,1215,42,1218,1219,1217,1,1409,1410,1408,1219,1220,1218,42,1220,1219,1218,1,1411,1410,1409,1221,1220,1219,42,1221,1219,1220,1,1412,1410,1411,1222,1220,1221,42,1222,1219,1221,1,1413,1410,1412,1223,1220,1222,42,1223,1219,1222,1,1414,1410,1413,1224,1220,1223,42,1219,1223,1217,1,1410,1414,1408,1220,1224,1218,42,1223,1224,1217,1,1414,1415,1408,1224,1225,1218,42,1225,1224,1223,1,1416,1415,1414,1226,1225,1224,42,1226,1224,1225,1,1417,1415,1416,1227,1225,1226,42,1227,1224,1226,1,1418,1415,1417,1228,1225,1227,42,1216,1224,1227,1,1407,1415,1418,1217,1225,1228,42,1217,1224,1216,1,1408,1415,1407,1218,1225,1217,42,1216,1227,1228,1,1407,1418,1419,1217,1228,1229,42,1228,1227,1229,1,1419,1418,1420,1229,1228,1230,42,1227,1230,1229,1,1418,1421,1420,1228,1231,1230,42,1227,1226,1230,1,1418,1417,1421,1228,1227,1231,42,1231,1230,1226,1,1422,1421,1417,1232,1231,1227,42,1232,1230,1231,1,1423,1421,1422,1233,1231,1232,42,1232,1233,1230,1,1423,1424,1421,1233,1234,1231,42,1234,1233,1232,1,1425,1424,1423,1235,1234,1233,42,1233,1234,1235,1,1424,1425,1426,1234,1235,1236,42,1234,1236,1235,1,1425,1427,1426,1235,1237,1236,42,1237,1236,1234,1,1428,1427,1425,1238,1237,1235,42,1237,1238,1236,1,1428,1429,1427,1238,1239,1237,42,1237,1239,1238,1,1428,1430,1429,1238,1240,1239,42,1240,1239,1237,1,1431,1430,1428,1241,1240,1238,42,1240,1199,1239,1,1431,1390,1430,1241,1200,1240,42,1198,1199,1240,1,1389,1390,1431,1199,1200,1241,42,1241,1198,1240,1,1432,1389,1431,1242,1199,1241,42,1197,1198,1241,1,1388,1389,1432,1198,1199,1242,42,1196,1197,1241,1,1387,1388,1432,1197,1198,1242,42,1242,1196,1241,1,1433,1387,1432,1243,1197,1242,42,1195,1196,1242,1,1386,1387,1433,1196,1197,1243,42,1195,1242,1243,1,1386,1433,1434,1196,1243,1244,42,1243,1242,1244,1,1434,1433,1435,1244,1243,1245,42,1244,1242,1245,1,1435,1433,1436,1245,1243,1246,42,1242,1246,1245,1,1433,1437,1436,1243,1247,1246,42,1242,1241,1246,1,1433,1432,1437,1243,1242,1247,42,1246,1241,1247,1,1437,1432,1438,1247,1242,1248,42,1241,1248,1247,1,1432,1439,1438,1242,1249,1248,42,1241,1240,1248,1,1432,1431,1439,1242,1241,1249,42,1248,1240,1237,1,1439,1431,1428,1249,1241,1238,42,1248,1237,1249,1,1439,1428,1440,1249,1238,1250,42,1249,1237,1250,1,1440,1428,1441,1250,1238,1251,42,1250,1237,1234,1,1441,1428,1425,1251,1238,1235,42,1250,1234,1251,1,1441,1425,1442,1251,1235,1252,42,1234,1232,1251,1,1425,1423,1442,1235,1233,1252,42,1251,1232,1252,1,1442,1423,1443,1252,1233,1253,42,1232,1231,1252,1,1423,1422,1443,1233,1232,1253,42,1231,1253,1252,1,1422,1444,1443,1232,1254,1253,42,1231,1254,1253,1,1422,1445,1444,1232,1255,1254,42,1231,1226,1254,1,1422,1417,1445,1232,1227,1255,42,1226,1225,1254,1,1417,1416,1445,1227,1226,1255,42,1253,1254,1225,1,1444,1445,1416,1254,1255,1226,42,1253,1225,1255,1,1444,1416,1446,1254,1226,1256,42,1256,1255,1225,1,1447,1446,1416,1257,1256,1226,42,1257,1255,1256,1,1448,1446,1447,1258,1256,1257,42,1253,1255,1257,1,1444,1446,1448,1254,1256,1258,42,1258,1253,1257,1,1449,1444,1448,1259,1254,1258,42,1259,1253,1258,1,1450,1444,1449,1260,1254,1259,42,1252,1253,1259,1,1443,1444,1450,1253,1254,1260,42,1252,1259,1260,1,1443,1450,1451,1253,1260,1261,42,1260,1259,1261,1,1451,1450,1452,1261,1260,1262,42,1258,1261,1259,1,1449,1452,1450,1259,1262,1260,42,1258,1262,1261,1,1449,1453,1452,1259,1263,1262,42,1258,1263,1262,1,1449,1454,1453,1259,1264,1263,42,1258,1264,1263,1,1449,1455,1454,1259,1265,1264,42,1257,1264,1258,1,1448,1455,1449,1258,1265,1259,42,1257,1265,1264,1,1448,1456,1455,1258,1266,1265,42,1257,1266,1265,1,1448,1457,1456,1258,1267,1266,42,1267,1266,1257,1,1458,1457,1448,1268,1267,1258,42,1268,1266,1267,1,1459,1457,1458,1269,1267,1268,42,1268,1269,1266,1,1459,1460,1457,1269,1270,1267,42,1270,1269,1268,1,1461,1460,1459,1271,1270,1269,42,1271,1269,1270,1,1462,1460,1461,1272,1270,1271,42,1272,1269,1271,1,1463,1460,1462,1273,1270,1272,42,1273,1269,1272,1,1464,1460,1463,1274,1270,1273,42,1273,1274,1269,1,1464,1465,1460,1274,1275,1270,42,1273,1275,1274,1,1464,1466,1465,1274,1276,1275,42,1276,1275,1273,1,1467,1466,1464,1277,1276,1274,42,1277,1275,1276,1,1468,1466,1467,1278,1276,1277,42,1278,1275,1277,1,1469,1466,1468,1279,1276,1278,42,1278,1279,1275,1,1469,1470,1466,1279,1280,1276,42,1264,1279,1278,1,1455,1470,1469,1265,1280,1279,42,1265,1279,1264,1,1456,1470,1455,1266,1280,1265,42,1266,1279,1265,1,1457,1470,1456,1267,1280,1266,42,1266,1274,1279,1,1457,1465,1470,1267,1275,1280,42,1266,1269,1274,1,1457,1460,1465,1267,1270,1275,42,1275,1279,1274,1,1466,1470,1465,1276,1280,1275,42,1264,1278,1280,1,1455,1469,1471,1265,1279,1281,42,1280,1278,1277,1,1471,1469,1468,1281,1279,1278,42,1281,1280,1277,1,1472,1471,1468,1282,1281,1278,42,1261,1280,1281,1,1452,1471,1472,1262,1281,1282,42,1262,1280,1261,1,1453,1471,1452,1263,1281,1262,42,1263,1280,1262,1,1454,1471,1453,1264,1281,1263,42,1264,1280,1263,1,1455,1471,1454,1265,1281,1264,42,1282,1261,1281,1,1473,1452,1472,1283,1262,1282,42,1260,1261,1282,1,1451,1452,1473,1261,1262,1283,42,1260,1282,1283,1,1451,1473,1474,1261,1283,1284,42,1282,1284,1283,1,1473,1475,1474,1283,1285,1284,42,1282,1281,1284,1,1473,1472,1475,1283,1282,1285,42,1284,1281,1277,1,1475,1472,1468,1285,1282,1278,42,1284,1277,1285,1,1475,1468,1476,1285,1278,1286,42,1285,1277,1276,1,1476,1468,1467,1286,1278,1277,42,1286,1285,1276,1,1477,1476,1467,1287,1286,1277,42,1286,1287,1285,1,1477,1478,1476,1287,1288,1286,42,1288,1287,1286,1,1479,1478,1477,1289,1288,1287,42,1283,1287,1288,1,1474,1478,1479,1284,1288,1289,42,1283,1285,1287,1,1474,1476,1478,1284,1286,1288,42,1283,1284,1285,1,1474,1475,1476,1284,1285,1286,42,1289,1283,1288,1,1480,1474,1479,1290,1284,1289,42,1260,1283,1289,1,1451,1474,1480,1261,1284,1290,42,1290,1260,1289,1,1481,1451,1480,1291,1261,1290,42,1291,1260,1290,1,1482,1451,1481,1292,1261,1291,42,1292,1260,1291,1,1483,1451,1482,1293,1261,1292,42,1292,1251,1260,1,1483,1442,1451,1293,1252,1261,42,1293,1251,1292,1,1484,1442,1483,1294,1252,1293,42,1293,1250,1251,1,1484,1441,1442,1294,1251,1252,42,1249,1250,1293,1,1440,1441,1484,1250,1251,1294,42,1248,1249,1293,1,1439,1440,1484,1249,1250,1294,42,1247,1248,1293,1,1438,1439,1484,1248,1249,1294,42,1247,1293,1292,1,1438,1484,1483,1248,1294,1293,42,1294,1247,1292,1,1485,1438,1483,1295,1248,1293,42,1246,1247,1294,1,1437,1438,1485,1247,1248,1295,42,1245,1246,1294,1,1436,1437,1485,1246,1247,1295,42,1245,1294,1295,1,1436,1485,1486,1246,1295,1296,42,1295,1294,1296,1,1486,1485,1487,1296,1295,1297,42,1294,1292,1296,1,1485,1483,1487,1295,1293,1297,42,1296,1292,1291,1,1487,1483,1482,1297,1293,1292,42,1296,1291,1297,1,1487,1482,1488,1297,1292,1298,42,1297,1291,1298,1,1488,1482,1489,1298,1292,1299,42,1291,1290,1298,1,1482,1481,1489,1292,1291,1299,42,1298,1290,1299,1,1489,1481,1490,1299,1291,1300,42,1299,1290,1300,1,1490,1481,1491,1300,1291,1301,42,1300,1290,1289,1,1491,1481,1480,1301,1291,1290,42,1300,1289,1301,1,1491,1480,1492,1301,1290,1302,42,1289,1288,1301,1,1480,1479,1492,1290,1289,1302,42,1301,1288,1302,1,1492,1479,1493,1302,1289,1303,42,1302,1288,1303,1,1493,1479,1494,1303,1289,1304,42,1288,1286,1303,1,1479,1477,1494,1289,1287,1304,42,1303,1286,1304,1,1494,1477,1495,1304,1287,1305,42,1304,1286,1305,1,1495,1477,1496,1305,1287,1306,42,1305,1286,1306,1,1496,1477,1497,1306,1287,1307,42,1286,1276,1306,1,1477,1467,1497,1287,1277,1307,42,1276,1273,1306,1,1467,1464,1497,1277,1274,1307,42,1306,1273,1307,1,1497,1464,1498,1307,1274,1308,42,1307,1273,1272,1,1498,1464,1463,1308,1274,1273,42,1307,1272,1308,1,1498,1463,1499,1308,1273,1309,42,1308,1272,1271,1,1499,1463,1462,1309,1273,1272,42,1308,1271,1309,1,1499,1462,1500,1309,1272,1310,42,1309,1271,1310,1,1500,1462,1501,1310,1272,1311,42,1310,1271,1267,1,1501,1462,1458,1311,1272,1268,42,1271,1270,1267,1,1462,1461,1458,1272,1271,1268,42,1270,1268,1267,1,1461,1459,1458,1271,1269,1268,42,1310,1267,1256,1,1501,1458,1447,1311,1268,1257,42,1267,1257,1256,1,1458,1448,1447,1268,1258,1257,42,1310,1256,1311,1,1501,1447,1502,1311,1257,1312,42,1256,1222,1311,1,1447,1413,1502,1257,1223,1312,42,1256,1312,1222,1,1447,1503,1413,1257,1313,1223,42,1256,1225,1312,1,1447,1416,1503,1257,1226,1313,42,1312,1225,1223,1,1503,1416,1414,1313,1226,1224,42,1312,1223,1222,1,1503,1414,1413,1313,1224,1223,42,1311,1222,1221,1,1502,1413,1412,1312,1223,1222,42,1311,1221,1313,1,1502,1412,1504,1312,1222,1314,42,1313,1221,1314,1,1504,1412,1505,1314,1222,1315,42,1221,1220,1314,1,1412,1411,1505,1222,1221,1315,42,1314,1220,1315,1,1505,1411,1506,1315,1221,1316,42,1315,1220,1316,1,1506,1411,1507,1316,1221,1317,42,1316,1220,1317,1,1507,1411,1508,1317,1221,1318,42,1317,1220,1218,1,1508,1411,1409,1318,1221,1219,42,1317,1218,1318,1,1508,1409,1509,1318,1219,1319,42,1318,1218,1319,1,1509,1409,1510,1319,1219,1320,42,1218,1214,1319,1,1409,1405,1510,1219,1215,1320,42,1319,1214,1212,1,1510,1405,1403,1320,1215,1213,42,1212,1210,1319,1,1403,1401,1510,1213,1211,1320,42,1319,1210,1318,1,1510,1401,1509,1320,1211,1319,42,1320,1318,1210,1,1511,1509,1401,1321,1319,1211,42,1316,1318,1320,1,1507,1509,1511,1317,1319,1321,42,1316,1317,1318,1,1507,1508,1509,1317,1318,1319,42,1315,1316,1320,1,1506,1507,1511,1316,1317,1321,42,1315,1320,1208,1,1506,1511,1399,1316,1321,1209,42,1320,1210,1208,1,1511,1401,1399,1321,1211,1209,42,1314,1315,1208,1,1505,1506,1399,1315,1316,1209,42,1314,1208,1206,1,1505,1399,1397,1315,1209,1207,42,1314,1206,1321,1,1505,1397,1512,1315,1207,1322,42,1321,1206,1322,1,1512,1397,1513,1322,1207,1323,42,1322,1206,1323,1,1513,1397,1514,1323,1207,1324,42,1323,1206,1204,1,1514,1397,1395,1324,1207,1205,42,1323,1204,36,1,1514,1395,1352,1324,1205,1172,42,36,1204,34,1,1352,1395,1350,1172,1205,1170,42,1324,1323,36,1,1515,1514,1352,1325,1324,1172,42,1325,1323,1324,1,1516,1514,1515,1326,1324,1325,42,1325,1322,1323,1,1516,1513,1514,1326,1323,1324,42,1325,1321,1322,1,1516,1512,1513,1326,1322,1323,42,1313,1321,1325,1,1504,1512,1516,1314,1322,1326,42,1313,1314,1321,1,1504,1505,1512,1314,1315,1322,42,1326,1313,1325,1,1517,1504,1516,1327,1314,1326,42,1309,1313,1326,1,1500,1504,1517,1310,1314,1327,42,1309,1311,1313,1,1500,1502,1504,1310,1312,1314,42,1309,1310,1311,1,1500,1501,1502,1310,1311,1312,42,1327,1309,1326,1,1518,1500,1517,1328,1310,1327,42,1328,1309,1327,1,1519,1500,1518,1329,1310,1328,42,1329,1309,1328,1,1520,1500,1519,1330,1310,1329,42,1329,1330,1309,1,1520,1521,1500,1330,1331,1310,42,1304,1330,1329,1,1495,1521,1520,1305,1331,1330,42,1304,1305,1330,1,1495,1496,1521,1305,1306,1331,42,1305,1306,1330,1,1496,1497,1521,1306,1307,1331,42,1330,1306,1307,1,1521,1497,1498,1331,1307,1308,42,1330,1307,1308,1,1521,1498,1499,1331,1308,1309,42,1309,1330,1308,1,1500,1521,1499,1310,1331,1309,42,1331,1304,1329,1,1522,1495,1520,1332,1305,1330,42,1302,1304,1331,1,1493,1495,1522,1303,1305,1332,42,1302,1303,1304,1,1493,1494,1495,1303,1304,1305,42,1332,1302,1331,1,1523,1493,1522,1333,1303,1332,42,1301,1302,1332,1,1492,1493,1523,1302,1303,1333,42,1333,1301,1332,1,1524,1492,1523,1334,1302,1333,42,1334,1301,1333,1,1525,1492,1524,1335,1302,1334,42,1300,1301,1334,1,1491,1492,1525,1301,1302,1335,42,1335,1300,1334,1,1526,1491,1525,1336,1301,1335,42,1336,1300,1335,1,1527,1491,1526,1337,1301,1336,42,1299,1300,1336,1,1490,1491,1527,1300,1301,1337,42,1337,1299,1336,1,1528,1490,1527,1338,1300,1337,42,1337,1338,1299,1,1528,1529,1490,1338,1339,1300,42,1337,1339,1338,1,1528,1530,1529,1338,1340,1339,42,1337,1340,1339,1,1528,1531,1530,1338,1341,1340,42,1341,1340,1337,1,1532,1531,1528,1342,1341,1338,42,1342,1340,1341,1,1533,1531,1532,1343,1341,1342,42,1343,1340,1342,1,1534,1531,1533,1344,1341,1343,42,1344,1340,1343,1,1535,1531,1534,1345,1341,1344,42,1340,1344,1339,1,1531,1535,1530,1341,1345,1340,42,1344,1338,1339,1,1535,1529,1530,1345,1339,1340,42,1345,1338,1344,1,1536,1529,1535,1346,1339,1345,42,1345,1298,1338,1,1536,1489,1529,1346,1299,1339,42,1297,1298,1345,1,1488,1489,1536,1298,1299,1346,42,1346,1297,1345,1,1537,1488,1536,1347,1298,1346,42,1295,1297,1346,1,1486,1488,1537,1296,1298,1347,42,1295,1296,1297,1,1486,1487,1488,1296,1297,1298,42,1347,1295,1346,1,1538,1486,1537,1348,1296,1347,42,1347,1245,1295,1,1538,1436,1486,1348,1246,1296,42,1348,1245,1347,1,1539,1436,1538,1349,1246,1348,42,1244,1245,1348,1,1435,1436,1539,1245,1246,1349,42,1349,1244,1348,1,1540,1435,1539,1350,1245,1349,42,1350,1244,1349,1,1541,1435,1540,1351,1245,1350,42,1350,1243,1244,1,1541,1434,1435,1351,1244,1245,42,1350,1351,1243,1,1541,1542,1434,1351,1352,1244,42,1352,1351,1350,1,1543,1542,1541,1353,1352,1351,42,1353,1351,1352,1,1544,1542,1543,1354,1352,1353,42,1353,1354,1351,1,1544,1545,1542,1354,1355,1352,42,1353,1355,1354,1,1546,1547,1548,1354,1356,1355,42,1356,1355,1353,1,1549,1547,1546,1357,1356,1354,42,1355,1356,1357,1,1547,1549,1550,1356,1357,1358,42,1356,1358,1357,1,1551,1552,1553,1357,1359,1358,42,1356,1359,1358,1,1551,1554,1552,1357,1360,1359,42,1360,1359,1356,1,1555,1554,1551,1361,1360,1357,42,1360,1361,1359,1,1555,1556,1554,1361,1362,1360,42,1362,1361,1360,1,1557,1556,1555,1363,1362,1361,42,1361,1362,1363,1,1556,1557,1558,1362,1363,1364,42,1362,1364,1363,1,1557,1559,1558,1363,1365,1364,42,1364,1362,1353,1,1560,1561,1546,1365,1363,1354,42,1362,1360,1353,1,1561,1562,1546,1363,1361,1354,42,1353,1360,1356,1,1546,1562,1549,1354,1361,1357,42,1363,1364,1353,1,1558,1559,1544,1364,1365,1354,42,1363,1353,1352,1,1558,1544,1543,1364,1354,1353,42,1363,1352,1361,1,1558,1543,1556,1364,1353,1362,42,1361,1352,1350,1,1556,1543,1541,1362,1353,1351,42,1361,1350,1359,1,1556,1541,1554,1362,1351,1360,42,1359,1350,1358,1,1554,1541,1552,1360,1351,1359,42,1350,1349,1358,1,1541,1540,1552,1351,1350,1359,42,1357,1358,1349,1,1553,1552,1540,1358,1359,1350,42,1357,1349,1348,1,1553,1540,1539,1358,1350,1349,42,1357,1348,1365,1,1553,1539,1563,1358,1349,1366,42,1348,1347,1365,1,1539,1538,1563,1349,1348,1366,42,1347,1366,1365,1,1538,1564,1563,1348,1367,1366,42,1347,1367,1366,1,1538,1565,1564,1348,1368,1367,42,1347,1368,1367,1,1538,1566,1565,1348,1369,1368,42,1347,1346,1368,1,1538,1537,1566,1348,1347,1369,42,1368,1346,1369,1,1566,1537,1567,1369,1347,1370,42,1346,1345,1369,1,1537,1536,1567,1347,1346,1370,42,1369,1345,1344,1,1567,1536,1535,1370,1346,1345,42,1369,1344,1343,1,1567,1535,1534,1370,1345,1344,42,1369,1343,1370,1,1567,1534,1568,1370,1344,1371,42,1370,1343,1342,1,1568,1534,1533,1371,1344,1343,42,1342,1371,1370,1,1533,1569,1568,1343,1372,1371,42,1342,1372,1371,1,1533,1570,1569,1343,1373,1372,42,1373,1372,1342,1,1571,1570,1533,1374,1373,1343,42,1374,1372,1373,1,1572,1570,1571,1375,1373,1374,42,1375,1372,1374,1,1573,1570,1572,1376,1373,1375,42,1371,1372,1375,1,1569,1570,1573,1372,1373,1376,42,1376,1371,1375,1,1574,1569,1573,1377,1372,1376,42,1370,1371,1376,1,1568,1569,1574,1371,1372,1377,42,1369,1370,1376,1,1567,1568,1574,1370,1371,1377,42,1369,1376,1367,1,1567,1574,1565,1370,1377,1368,42,1367,1376,1377,1,1565,1574,1575,1368,1377,1378,42,1376,1378,1377,1,1574,1576,1575,1377,1379,1378,42,1376,1375,1378,1,1574,1573,1576,1377,1376,1379,42,1375,1379,1378,1,1573,1577,1576,1376,1380,1379,42,1379,1375,1374,1,1577,1573,1572,1380,1376,1375,42,1374,1336,1379,1,1572,1527,1577,1375,1337,1380,42,1374,1373,1336,1,1572,1571,1527,1375,1374,1337,42,1336,1373,1380,1,1527,1571,1578,1337,1374,1381,42,1380,1373,1341,1,1578,1571,1532,1381,1374,1342,42,1341,1373,1342,1,1532,1571,1533,1342,1374,1343,42,1380,1341,1337,1,1578,1532,1528,1381,1342,1338,42,1336,1380,1337,1,1527,1578,1528,1337,1381,1338,42,1336,1335,1379,1,1527,1526,1577,1337,1336,1380,42,1335,1381,1379,1,1526,1579,1577,1336,1382,1380,42,1335,1334,1381,1,1526,1525,1579,1336,1335,1382,42,1381,1334,1382,1,1579,1525,1580,1382,1335,1383,42,1334,1333,1382,1,1525,1524,1580,1335,1334,1383,42,1333,1383,1382,1,1524,1581,1580,1334,1384,1383,42,1333,1332,1383,1,1524,1523,1581,1334,1333,1384,42,1383,1332,1384,1,1581,1523,1582,1384,1333,1385,42,1332,1331,1384,1,1523,1522,1582,1333,1332,1385,42,1384,1331,1385,1,1582,1522,1583,1385,1332,1386,42,1385,1331,1386,1,1583,1522,1584,1386,1332,1387,42,1386,1331,1329,1,1584,1522,1520,1387,1332,1330,42,1386,1329,1328,1,1584,1520,1519,1387,1330,1329,42,1386,1328,1387,1,1584,1519,1585,1387,1329,1388,42,1387,1328,1388,1,1585,1519,1586,1388,1329,1389,42,1388,1328,1327,1,1586,1519,1518,1389,1329,1328,42,1389,1388,1327,1,1587,1586,1518,1390,1389,1328,42,1390,1388,1389,1,1588,1586,1587,1391,1389,1390,42,1390,1391,1388,1,1588,1589,1586,1391,1392,1389,42,1392,1391,1390,1,1590,1589,1588,1393,1392,1391,42,1392,1393,1391,1,1590,1591,1589,1393,1394,1392,42,1392,1394,1393,1,1590,1592,1591,1393,1395,1394,42,1395,1394,1392,1,1593,1592,1590,1396,1395,1393,42,1396,1394,1395,1,1594,1592,1593,1397,1395,1396,42,1397,1394,1396,1,1595,1592,1594,1398,1395,1397,42,1394,1397,1398,1,1592,1595,1596,1395,1398,1399,42,1397,1399,1398,1,1595,1597,1596,1398,1400,1399,42,1400,1399,1397,1,1598,1597,1595,1401,1400,1398,42,1401,1400,1402,1,1599,1598,1600,1402,1401,1403,42,1402,1400,1403,1,1600,1598,1601,1403,1401,1404,42,1396,1403,1400,1,1594,1601,1598,1397,1404,1401,42,1404,1403,1396,1,1602,1601,1594,1405,1404,1397,42,1405,1403,1404,1,1603,1601,1602,1406,1404,1405,42,1405,1402,1403,1,1603,1600,1601,1406,1403,1404,42,1405,1406,1402,1,1603,1604,1600,1406,1407,1403,42,1407,1406,1405,1,1605,1604,1603,1408,1407,1406,42,1407,1408,1406,1,1605,1606,1604,1408,1409,1407,42,1409,1408,1407,1,1607,1606,1605,1410,1409,1408,42,1410,1408,1409,1,1608,1606,1607,1411,1409,1410,42,1410,1411,1408,1,1608,1609,1606,1411,1412,1409,42,1410,1383,1411,1,1608,1581,1609,1411,1384,1412,42,1412,1383,1410,1,1610,1581,1608,1413,1384,1411,42,1413,1383,1412,1,1611,1581,1610,1414,1384,1413,42,1413,1382,1383,1,1611,1580,1581,1414,1383,1384,42,1381,1382,1413,1,1579,1580,1611,1382,1383,1414,42,1414,1381,1413,1,1612,1579,1611,1415,1382,1414,42,1378,1381,1414,1,1576,1579,1612,1379,1382,1415,42,1379,1381,1378,1,1577,1579,1576,1380,1382,1379,42,1377,1378,1414,1,1575,1576,1612,1378,1379,1415,42,1377,1414,1415,1,1575,1612,1613,1378,1415,1416,42,1416,1415,1414,1,1614,1613,1612,1417,1416,1415,42,1366,1415,1416,1,1564,1613,1614,1367,1416,1417,42,1366,1377,1415,1,1564,1575,1613,1367,1378,1416,42,1366,1367,1377,1,1564,1565,1575,1367,1368,1378,42,1365,1366,1416,1,1563,1564,1614,1366,1367,1417,42,1365,1416,1417,1,1563,1614,1615,1366,1417,1418,42,1417,1416,1418,1,1615,1614,1616,1418,1417,1419,42,1416,1413,1418,1,1614,1611,1616,1417,1414,1419,42,1416,1414,1413,1,1614,1612,1611,1417,1415,1414,42,1419,1418,1413,1,1617,1616,1611,1420,1419,1414,42,1420,1418,1419,1,1618,1616,1617,1421,1419,1420,42,1421,1418,1420,1,1619,1616,1618,1422,1419,1421,42,1417,1418,1421,1,1615,1616,1619,1418,1419,1422,42,1417,1421,1422,1,1615,1619,1620,1418,1422,1423,42,1422,1421,1423,1,1620,1619,1621,1423,1422,1424,42,1423,1421,1420,1,1621,1619,1618,1424,1422,1421,42,1423,1420,1424,1,1621,1618,1622,1424,1421,1425,42,1424,1420,1425,1,1622,1618,1623,1425,1421,1426,42,1420,1419,1425,1,1618,1617,1623,1421,1420,1426,42,1419,1410,1425,1,1617,1608,1623,1420,1411,1426,42,1419,1412,1410,1,1617,1610,1608,1420,1413,1411,42,1413,1412,1419,1,1611,1610,1617,1414,1413,1420,42,1426,1425,1410,1,1624,1623,1608,1427,1426,1411,42,1427,1425,1426,1,1625,1623,1624,1428,1426,1427,42,1427,1424,1425,1,1625,1622,1623,1428,1425,1426,42,1428,1424,1427,1,1626,1622,1625,1429,1425,1428,42,1423,1424,1428,1,1621,1622,1626,1424,1425,1429,42,1429,1423,1428,1,1627,1621,1626,1430,1424,1429,42,1429,1430,1423,1,1627,1628,1621,1430,1431,1424,42,1431,1430,1429,1,1629,1628,1627,1432,1431,1430,42,1431,1432,1430,1,1629,1630,1628,1432,1433,1431,42,1431,1433,1432,1,1629,1631,1630,1432,1434,1433,42,1434,1433,1431,1,1632,1633,1634,1435,1434,1432,42,1434,1435,1433,1,1632,1635,1633,1435,1436,1434,42,1434,47,1435,1,1632,1362,1635,1435,1183,1436,42,1434,46,47,1,1632,1364,1362,1435,1182,1183,42,1436,46,1434,1,1636,1364,1632,1437,1182,1435,42,46,1436,1437,1,1364,1636,1632,1182,1437,1438,42,1437,1436,1431,1,1632,1636,1634,1438,1437,1432,42,1436,1434,1431,1,1636,1632,1634,1437,1435,1432,42,1437,1431,1438,1,1632,1634,1633,1438,1432,1439,42,1438,1431,1429,1,1637,1629,1627,1439,1432,1430,42,1438,1429,1439,1,1637,1627,1638,1439,1430,1440,42,1439,1429,1440,1,1638,1627,1639,1440,1430,1441,42,1429,1428,1440,1,1627,1626,1639,1430,1429,1441,42,1440,1428,1427,1,1639,1626,1625,1441,1429,1428,42,1440,1427,1441,1,1639,1625,1640,1441,1428,1442,42,1427,1426,1441,1,1625,1624,1640,1428,1427,1442,42,1441,1426,1442,1,1640,1624,1641,1442,1427,1443,42,1426,1443,1442,1,1624,1642,1641,1427,1444,1443,42,1426,1409,1443,1,1624,1607,1642,1427,1410,1444,42,1426,1410,1409,1,1624,1608,1607,1427,1411,1410,42,1443,1409,1444,1,1642,1607,1643,1444,1410,1445,42,1409,1407,1444,1,1607,1605,1643,1410,1408,1445,42,1444,1407,1445,1,1643,1605,1644,1445,1408,1446,42,1407,1405,1445,1,1605,1603,1644,1408,1406,1446,42,1405,1404,1445,1,1603,1602,1644,1406,1405,1446,42,1445,1404,1446,1,1644,1602,1645,1446,1405,1447,42,1446,1404,1396,1,1645,1602,1594,1447,1405,1397,42,1396,1395,1446,1,1594,1593,1645,1397,1396,1447,42,1447,1446,1395,1,1646,1645,1593,1448,1447,1396,42,1445,1446,1447,1,1644,1645,1646,1446,1447,1448,42,1448,1445,1447,1,1647,1644,1646,1449,1446,1448,42,1444,1445,1448,1,1643,1644,1647,1445,1446,1449,42,1442,1444,1448,1,1641,1643,1647,1443,1445,1449,42,1443,1444,1442,1,1642,1643,1641,1444,1445,1443,42,1442,1448,1449,1,1641,1647,1648,1443,1449,1450,42,1449,1448,1450,1,1648,1647,1649,1450,1449,1451,42,1448,1447,1450,1,1647,1646,1649,1449,1448,1451,42,1450,1447,1451,1,1649,1646,1650,1451,1448,1452,42,1447,1390,1451,1,1646,1588,1650,1448,1391,1452,42,1447,1392,1390,1,1646,1590,1588,1448,1393,1391,42,1447,1395,1392,1,1646,1593,1590,1448,1396,1393,42,1451,1390,1389,1,1650,1588,1587,1452,1391,1390,42,1451,1389,1452,1,1650,1587,1651,1452,1390,1453,42,1452,1389,1453,1,1651,1587,1652,1453,1390,1454,42,1389,1327,1453,1,1587,1518,1652,1390,1328,1454,42,1453,1327,1326,1,1652,1518,1517,1454,1328,1327,42,1453,1326,1454,1,1652,1517,1653,1454,1327,1455,42,1454,1326,1324,1,1653,1517,1515,1455,1327,1325,42,1326,1325,1324,1,1517,1516,1515,1327,1326,1325,42,1454,1324,1455,1,1653,1515,1654,1455,1325,1456,42,1455,1324,36,1,1654,1515,1352,1456,1325,1172,42,1456,1455,36,1,1655,1654,1352,1457,1456,1172,42,1457,1455,1456,1,1656,1654,1655,1458,1456,1457,42,1457,1454,1455,1,1656,1653,1654,1458,1455,1456,42,1452,1454,1457,1,1651,1653,1656,1453,1455,1458,42,1452,1453,1454,1,1651,1652,1653,1453,1454,1455,42,1449,1452,1457,1,1648,1651,1656,1450,1453,1458,42,1449,1451,1452,1,1648,1650,1651,1450,1452,1453,42,1449,1450,1451,1,1648,1649,1650,1450,1451,1452,42,1458,1449,1457,1,1657,1648,1656,1459,1450,1458,42,1441,1449,1458,1,1640,1648,1657,1442,1450,1459,42,1441,1442,1449,1,1640,1641,1648,1442,1443,1450,42,1459,1441,1458,1,1658,1640,1657,1460,1442,1459,42,1460,1441,1459,1,1659,1640,1658,1461,1442,1460,42,1440,1441,1460,1,1639,1640,1659,1441,1442,1461,42,1439,1440,1460,1,1638,1639,1659,1440,1441,1461,42,1439,1460,1461,1,1638,1659,1660,1440,1461,1462,42,1461,1460,1459,1,1660,1659,1658,1462,1461,1460,42,1461,1459,1462,1,1661,1550,1662,1462,1460,1463,42,1463,1462,1459,1,1663,1662,1550,1464,1463,1460,42,1464,1462,1463,1,1664,1662,1663,1465,1463,1464,42,1464,1465,1462,1,1664,1635,1662,1465,1466,1463,42,44,1465,1464,1,1362,1635,1664,1180,1466,1465,42,44,1437,1465,1,1362,1632,1635,1180,1438,1466,42,46,1437,44,1,1364,1632,1362,1182,1438,1180,42,1465,1437,1438,1,1635,1632,1633,1466,1438,1439,42,1465,1438,1466,1,1635,1633,1665,1466,1439,1467,42,1466,1438,1439,1,1666,1637,1638,1467,1439,1440,42,1466,1439,1461,1,1666,1638,1660,1467,1440,1462,42,1465,1466,1461,1,1635,1665,1661,1466,1467,1462,42,1465,1461,1462,1,1635,1661,1662,1466,1462,1463,42,44,1464,43,1,1362,1664,1361,1180,1465,1179,42,1464,1467,43,1,1664,1667,1361,1465,1468,1179,42,1464,1463,1467,1,1664,1663,1667,1465,1464,1468,42,1467,1463,1459,1,1667,1663,1550,1468,1464,1460,42,1467,1459,1468,1,1667,1550,1547,1468,1460,1469,42,1469,1468,1459,1,1549,1547,1550,1470,1469,1460,42,1468,1469,1470,1,1547,1549,1546,1469,1470,1471,42,1469,1471,1470,1,1549,1562,1546,1470,1472,1471,42,1472,1471,1469,1,1668,1669,1670,1473,1472,1470,42,1473,1471,1472,1,1671,1669,1668,1474,1472,1473,42,1473,1474,1471,1,1671,1672,1669,1474,1475,1472,42,1474,1473,1475,1,1672,1671,1673,1475,1474,1476,42,1473,1476,1475,1,1671,1674,1673,1474,1477,1476,42,1473,1477,1476,1,1671,1675,1674,1474,1478,1477,42,1472,1477,1473,1,1668,1675,1671,1473,1478,1474,42,1472,1478,1477,1,1668,1676,1675,1473,1479,1478,42,1472,1469,1478,1,1668,1670,1676,1473,1470,1479,42,1469,1459,1478,1,1670,1658,1676,1470,1460,1479,42,1478,1459,1479,1,1676,1658,1677,1479,1460,1480,42,1459,1458,1479,1,1658,1657,1677,1460,1459,1480,42,1458,1480,1479,1,1657,1678,1677,1459,1481,1480,42,1458,1457,1480,1,1657,1656,1678,1459,1458,1481,42,1480,1457,1456,1,1678,1656,1655,1481,1458,1457,42,1480,1456,1481,1,1678,1655,1679,1481,1457,1482,42,1481,1456,38,1,1679,1655,1354,1482,1457,1174,42,38,1456,37,1,1354,1655,1353,1174,1457,1173,42,1456,36,37,1,1655,1352,1353,1457,1172,1173,42,1482,1481,38,1,1680,1679,1354,1483,1482,1174,42,1483,1481,1482,1,1681,1679,1680,1484,1482,1483,42,1477,1481,1483,1,1675,1679,1681,1478,1482,1484,42,1477,1480,1481,1,1675,1678,1679,1478,1481,1482,42,1479,1480,1477,1,1677,1678,1675,1480,1481,1478,42,1478,1479,1477,1,1676,1677,1675,1479,1480,1478,42,1477,1483,1476,1,1675,1681,1674,1478,1484,1477,42,1476,1483,1470,1,1674,1681,1682,1477,1484,1471,42,1470,1483,1482,1,1682,1681,1680,1471,1484,1483,42,1468,1470,1482,1,1547,1546,1548,1469,1471,1483,42,39,1468,1482,1,1683,1547,1548,1175,1469,1483,42,40,1468,39,1,1359,1547,1683,1176,1469,1175,42,40,1467,1468,1,1359,1667,1547,1176,1468,1469,42,43,1467,40,1,1361,1667,1359,1179,1468,1176,42,1482,38,39,1,1548,1684,1683,1483,1174,1175,42,1470,1475,1476,1,1682,1673,1674,1471,1476,1477,42,1484,1475,1470,1,1685,1673,1682,1485,1476,1471,42,1484,1474,1475,1,1685,1672,1673,1485,1475,1476,42,1474,1484,1470,1,1561,1560,1546,1475,1485,1471,42,1471,1474,1470,1,1562,1561,1546,1472,1475,1471,42,1435,47,1485,1,1635,1362,1664,1436,1183,1486,42,47,1486,1485,1,1362,1361,1664,1183,1487,1486,42,47,48,1486,1,1362,1358,1361,1183,1184,1487,42,48,1193,1486,1,1358,1359,1361,1184,1194,1487,42,1487,1486,1193,1,1667,1361,1359,1488,1487,1194,42,1485,1486,1487,1,1664,1361,1667,1486,1487,1488,42,1485,1487,1488,1,1664,1667,1663,1486,1488,1489,42,1487,1357,1488,1,1667,1550,1663,1488,1358,1489,42,1487,1355,1357,1,1667,1547,1550,1488,1356,1358,42,1487,1193,1355,1,1667,1359,1547,1488,1194,1356,42,1355,1193,1194,1,1547,1359,1683,1356,1194,1195,42,1355,1194,1354,1,1547,1683,1548,1356,1195,1355,42,1194,1195,1354,1,1683,1684,1548,1195,1196,1355,42,1354,1195,1243,1,1545,1386,1434,1355,1196,1244,42,1354,1243,1351,1,1545,1434,1542,1355,1244,1352,42,1488,1357,1489,1,1663,1550,1662,1489,1358,1490,42,1489,1357,1490,1,1662,1550,1661,1490,1358,1491,42,1357,1491,1490,1,1553,1686,1687,1358,1492,1491,42,1357,1365,1491,1,1553,1563,1686,1358,1366,1492,42,1491,1365,1492,1,1686,1563,1688,1492,1366,1493,42,1365,1417,1492,1,1563,1615,1688,1366,1418,1493,42,1492,1417,1422,1,1688,1615,1620,1493,1418,1423,42,1492,1422,1432,1,1688,1620,1630,1493,1423,1433,42,1432,1422,1423,1,1630,1620,1621,1433,1423,1424,42,1430,1432,1423,1,1628,1630,1621,1431,1433,1424,42,1432,1493,1492,1,1630,1689,1688,1433,1494,1493,42,1433,1493,1432,1,1631,1689,1630,1434,1494,1433,42,1433,1494,1493,1,1631,1690,1689,1434,1495,1494,42,1433,1435,1494,1,1633,1635,1665,1434,1436,1495,42,1435,1490,1494,1,1635,1661,1665,1436,1491,1495,42,1435,1489,1490,1,1635,1662,1661,1436,1490,1491,42,1485,1489,1435,1,1664,1662,1635,1486,1490,1436,42,1485,1488,1489,1,1664,1663,1662,1486,1489,1490,42,1494,1490,1493,1,1690,1687,1689,1495,1491,1494,42,1490,1491,1493,1,1687,1686,1689,1491,1492,1494,42,1491,1492,1493,1,1686,1688,1689,1492,1493,1494,42,1383,1384,1411,1,1581,1582,1609,1384,1385,1412,42,1411,1384,1385,1,1609,1582,1583,1412,1385,1386,42,1411,1385,1408,1,1609,1583,1606,1412,1386,1409,42,1408,1385,1495,1,1606,1583,1691,1409,1386,1496,42,1495,1385,1386,1,1691,1583,1584,1496,1386,1387,42,1495,1386,1401,1,1691,1584,1599,1496,1387,1402,42,1401,1386,1387,1,1599,1584,1585,1402,1387,1388,42,1401,1387,1398,1,1599,1585,1596,1402,1388,1399,42,1398,1387,1391,1,1596,1585,1589,1399,1388,1392,42,1387,1388,1391,1,1585,1586,1589,1388,1389,1392,42,1398,1391,1393,1,1596,1589,1591,1399,1392,1394,42,1394,1398,1393,1,1592,1596,1591,1395,1399,1394,42,1398,1399,1401,1,1596,1597,1599,1399,1400,1402,42,1406,1495,1401,1,1604,1691,1599,1407,1496,1402,42,1406,1408,1495,1,1604,1606,1691,1407,1409,1496,42,1406,1401,1402,1,1604,1599,1600,1407,1402,1403,42,1396,1400,1397,1,1594,1598,1595,1397,1401,1398,42,1368,1369,1367,1,1566,1567,1565,1369,1370,1368,42,1338,1298,1299,1,1529,1489,1490,1339,1299,1300,42,1251,1252,1260,1,1442,1443,1451,1252,1253,1261,42,1199,1200,1239,1,1390,1391,1430,1200,1201,1240,42,1239,1200,1496,1,1430,1391,1692,1240,1201,1497,42,1201,1496,1200,1,1392,1692,1391,1202,1497,1201,42,1201,1497,1496,1,1392,1693,1692,1202,1498,1497,42,1498,1497,1201,1,1694,1693,1392,1499,1498,1202,42,1499,1497,1498,1,1695,1693,1694,1500,1498,1499,42,1500,1497,1499,1,1696,1693,1695,1501,1498,1500,42,1501,1497,1500,1,1697,1693,1696,1502,1498,1501,42,1496,1497,1501,1,1692,1693,1697,1497,1498,1502,42,1238,1496,1501,1,1429,1692,1697,1239,1497,1502,42,1239,1496,1238,1,1430,1692,1429,1240,1497,1239,42,1238,1501,1502,1,1429,1697,1698,1239,1502,1503,42,1502,1501,1500,1,1698,1697,1696,1503,1502,1501,42,1502,1500,1503,1,1698,1696,1699,1503,1501,1504,42,1503,1500,1504,1,1699,1696,1700,1504,1501,1505,42,1504,1500,1499,1,1700,1696,1695,1505,1501,1500,42,1504,1499,1207,1,1700,1695,1398,1505,1500,1208,42,1207,1499,1498,1,1398,1695,1694,1208,1500,1499,42,1207,1498,1205,1,1398,1694,1396,1208,1499,1206,42,1205,1498,1202,1,1396,1694,1393,1206,1499,1203,42,1202,1498,1201,1,1393,1694,1392,1203,1499,1202,42,1205,1202,1203,1,1396,1393,1394,1206,1203,1204,42,1209,1504,1207,1,1400,1700,1398,1210,1505,1208,42,1209,1505,1504,1,1400,1701,1700,1210,1506,1505,42,1211,1505,1209,1,1402,1701,1400,1212,1506,1210,42,1211,1506,1505,1,1402,1702,1701,1212,1507,1506,42,1211,1507,1506,1,1402,1703,1702,1212,1508,1507,42,1213,1507,1211,1,1404,1703,1402,1214,1508,1212,42,1508,1507,1213,1,1704,1703,1404,1509,1508,1214,42,1508,1506,1507,1,1704,1702,1703,1509,1507,1508,42,1509,1506,1508,1,1705,1702,1704,1510,1507,1509,42,1503,1506,1509,1,1699,1702,1705,1504,1507,1510,42,1505,1506,1503,1,1701,1702,1699,1506,1507,1504,42,1505,1503,1504,1,1701,1699,1700,1506,1504,1505,42,1503,1509,1502,1,1699,1705,1698,1504,1510,1503,42,1510,1502,1509,1,1706,1698,1705,1511,1503,1510,42,1238,1502,1510,1,1429,1698,1706,1239,1503,1511,42,1236,1238,1510,1,1427,1429,1706,1237,1239,1511,42,1236,1510,1511,1,1427,1706,1707,1237,1511,1512,42,1510,1508,1511,1,1706,1704,1707,1511,1509,1512,42,1510,1509,1508,1,1706,1705,1704,1511,1510,1509,42,1511,1508,1512,1,1707,1704,1708,1512,1509,1513,42,1508,1213,1512,1,1704,1404,1708,1509,1214,1513,42,1213,1228,1512,1,1404,1419,1708,1214,1229,1513,42,1215,1228,1213,1,1406,1419,1404,1216,1229,1214,42,1215,1216,1228,1,1406,1407,1419,1216,1217,1229,42,1228,1513,1512,1,1419,1709,1708,1229,1514,1513,42,1228,1229,1513,1,1419,1420,1709,1229,1230,1514,42,1229,1514,1513,1,1420,1710,1709,1230,1515,1514,42,1229,1515,1514,1,1420,1711,1710,1230,1516,1515,42,1229,1233,1515,1,1420,1424,1711,1230,1234,1516,42,1229,1230,1233,1,1420,1421,1424,1230,1231,1234,42,1515,1233,1516,1,1711,1424,1712,1516,1234,1517,42,1233,1235,1516,1,1424,1426,1712,1234,1236,1517,42,1516,1235,1517,1,1712,1426,1713,1517,1236,1518,42,1236,1517,1235,1,1427,1713,1426,1237,1518,1236,42,1236,1511,1517,1,1427,1707,1713,1237,1512,1518,42,1514,1517,1511,1,1710,1713,1707,1515,1518,1512,42,1514,1516,1517,1,1710,1712,1713,1515,1517,1518,42,1515,1516,1514,1,1711,1712,1710,1516,1517,1515,42,1514,1511,1513,1,1710,1707,1709,1515,1512,1514,42,1513,1511,1512,1,1709,1707,1708,1514,1512,1513,42,1400,1401,1399,2,1714,1715,1716,1401,1402,1400,42,1518,1519,1520,0,1717,1718,1719,1519,1520,1521,42,1518,1521,1519,0,1717,1720,1718,1519,1522,1520,42,1521,1518,1522,0,1720,1717,1721,1522,1519,1523,42,1522,1523,1521,0,1721,1722,1720,1523,1524,1522,42,1522,1524,1523,0,1721,1723,1722,1523,1525,1524,42,1525,1524,1522,0,1724,1723,1721,1526,1525,1523,42,1526,1524,1525,0,1725,1723,1724,1527,1525,1526,42,1526,1527,1524,0,1725,1726,1723,1527,1528,1525,42,1528,1527,1526,0,1727,1726,1725,1529,1528,1527,42,1528,1529,1527,0,1727,1728,1726,1529,1530,1528,42,1530,1529,1528,0,1729,1728,1727,1531,1530,1529,42,1529,1530,1531,0,1728,1730,1731,1532,1532,1532,42,1530,1532,1531,0,1730,1732,1731,1533,1533,1533,42,1530,1533,1532,0,1730,1733,1732,1534,1534,1534,42,1533,1530,1534,0,1734,1729,1735,1535,1531,1536,42,1534,1530,1528,0,1735,1729,1727,1536,1531,1529,42,1534,1528,1535,0,1735,1727,1736,1536,1529,1537,42,1535,1528,1526,0,1736,1727,1725,1537,1529,1527,42,1535,1526,1536,0,1736,1725,1737,1537,1527,1538,42,1536,1526,1525,0,1737,1725,1724,1538,1527,1526,42,1525,1537,1536,0,1738,1739,1740,1539,1539,1539,42,1538,1537,1525,0,1741,1739,1738,1540,1540,1540,42,1539,1537,1538,0,1742,1739,1743,1541,1541,1541,42,1537,1539,1540,0,1739,1742,1744,1542,1542,1542,42,1540,1539,1541,0,1745,1746,1747,1543,1544,1545,42,1541,1539,1542,0,1747,1746,1748,1545,1544,1546,42,1539,1520,1542,0,1746,1719,1748,1544,1521,1546,42,1543,1520,1539,0,1749,1750,1751,1542,1542,1542,42,1518,1520,1543,0,1717,1719,1752,1519,1521,1547,42,1518,1543,1544,0,1717,1752,1753,1519,1547,1548,42,1544,1543,1545,0,1753,1752,1754,1548,1547,1549,42,1545,1543,1538,0,1755,1749,1741,1542,1542,1542,42,1538,1543,1539,0,1741,1749,1751,1542,1542,1542,42,1538,1522,1545,0,1756,1721,1754,1550,1523,1549,42,1525,1522,1538,0,1724,1721,1756,1526,1523,1550,42,1522,1544,1545,0,1721,1753,1754,1523,1548,1549,42,1522,1518,1544,0,1721,1717,1753,1523,1519,1548,42,1542,1520,1519,0,1748,1719,1718,1546,1521,1520,42,1521,1542,1519,0,1720,1748,1718,1522,1546,1520,42,1521,1523,1542,0,1720,1722,1748,1522,1524,1546,42,1523,1541,1542,0,1722,1747,1748,1524,1545,1546,42,1523,1546,1541,0,1722,1757,1747,1524,1551,1545,42,1524,1546,1523,0,1723,1757,1722,1525,1551,1524,42,1524,1527,1546,0,1723,1726,1757,1525,1528,1551,42,1527,1547,1546,0,1726,1758,1757,1528,1552,1551,42,1527,1529,1547,0,1726,1728,1758,1528,1530,1552,42,1529,1531,1547,0,1728,1731,1758,1530,1553,1552,42,1547,1531,1548,0,1758,1731,1759,1552,1553,1554,42,1531,1549,1548,0,1731,1760,1759,1553,1555,1554,42,1531,1532,1549,0,1731,1732,1760,1556,1556,1556,42,1532,1550,1549,0,1732,1761,1760,1557,1558,1555,42,1532,1551,1550,0,1762,1763,1764,1557,1559,1558,42,1532,1552,1551,0,1765,1766,1767,1557,1560,1559,42,1533,1552,1532,0,1734,1766,1765,1535,1560,1557,42,1552,1533,1534,0,1766,1734,1735,1560,1535,1536,42,1552,1534,1553,0,1766,1735,1768,1560,1536,1561,42,1553,1534,1535,0,1768,1735,1736,1561,1536,1537,42,1554,1553,1535,0,1769,1768,1736,1562,1561,1537,42,1553,1554,1555,0,1768,1769,1770,1561,1562,1563,42,1554,1556,1555,0,1771,1772,1773,1564,1564,1564,42,1557,1556,1554,0,1774,1775,1771,1564,1564,1564,42,1556,1557,1558,0,1775,1774,1776,1565,1565,1565,42,1557,1559,1558,0,1777,1778,1776,1564,1564,1564,42,1560,1559,1557,0,1779,1778,1777,1566,1566,1566,42,1560,1561,1559,0,1779,1780,1778,1567,1567,1567,42,1562,1561,1560,0,1781,1780,1779,1568,1568,1568,42,1562,1563,1561,0,1781,1782,1780,1569,1570,1571,42,1537,1563,1562,0,1739,1782,1781,1572,1570,1569,42,1537,1540,1563,0,1739,1744,1782,1573,1573,1573,42,1563,1540,1541,0,1783,1745,1747,1570,1543,1545,42,1563,1541,1564,0,1783,1747,1784,1570,1545,1574,42,1565,1564,1541,0,1785,1784,1747,1575,1574,1545,42,1561,1564,1565,0,1786,1784,1785,1571,1574,1575,42,1561,1563,1564,0,1786,1783,1784,1571,1570,1574,42,1561,1565,1566,0,1786,1785,1787,1571,1575,1576,42,1548,1566,1565,0,1759,1787,1785,1554,1576,1575,42,1567,1566,1548,0,1788,1787,1759,1577,1576,1554,42,1567,1568,1566,0,1788,1789,1787,1577,1578,1576,42,1569,1568,1567,0,1790,1789,1788,1579,1578,1577,42,1570,1568,1569,0,1791,1789,1790,1580,1578,1579,42,1570,1558,1568,0,1791,1792,1789,1580,1581,1578,42,1556,1558,1570,0,1772,1776,1793,1565,1565,1565,42,1556,1570,1571,0,1772,1793,1794,1565,1565,1565,42,1572,1571,1570,0,1795,1796,1791,1582,1583,1580,42,1573,1571,1572,0,1797,1798,1799,1584,1583,1582,42,1573,1555,1571,0,1797,1770,1798,1584,1563,1583,42,1553,1555,1573,0,1768,1770,1797,1561,1563,1584,42,1552,1553,1573,0,1766,1768,1797,1560,1561,1584,42,1552,1573,1551,0,1766,1797,1767,1560,1584,1559,42,1551,1573,1572,0,1767,1797,1799,1559,1584,1582,42,1551,1572,1574,0,1763,1795,1800,1559,1582,1585,42,1574,1572,1569,0,1800,1795,1790,1585,1582,1579,42,1572,1570,1569,0,1795,1791,1790,1582,1580,1579,42,1569,1567,1574,0,1790,1788,1800,1579,1577,1585,42,1574,1567,1549,0,1800,1788,1801,1585,1577,1555,42,1549,1567,1548,0,1801,1788,1759,1555,1577,1554,42,1574,1549,1550,0,1800,1801,1764,1585,1555,1558,42,1550,1551,1574,0,1764,1763,1800,1558,1559,1585,42,1555,1556,1571,0,1773,1772,1794,1564,1564,1564,42,1558,1561,1568,0,1792,1786,1789,1581,1571,1578,42,1558,1559,1561,0,1792,1802,1786,1586,1586,1586,42,1568,1561,1566,0,1789,1786,1787,1578,1571,1576,42,1547,1548,1565,0,1758,1759,1785,1552,1554,1575,42,1546,1547,1565,0,1757,1758,1785,1551,1552,1575,42,1546,1565,1541,0,1757,1785,1747,1551,1575,1545,42,1536,1537,1562,0,1740,1739,1781,1538,1572,1569,42,1536,1562,1535,0,1740,1781,1803,1538,1569,1537,42,1535,1562,1560,0,1803,1781,1779,1568,1568,1568,42,1535,1560,1557,0,1803,1779,1777,1566,1566,1566,42,1535,1557,1575,0,1803,1777,1804,1587,1587,1587,42,1575,1557,1554,0,1804,1777,1771,1564,1564,1564,42,1554,1535,1575,0,1769,1736,1805,1588,1588,1588,42,1576,1577,1578,0,1806,1807,1808,1589,1590,1591,42,1577,1576,1579,0,1807,1806,1809,1590,1589,1592,42,1580,1577,1579,0,1810,1807,1809,1593,1590,1592,42,1577,1580,1581,0,1811,1812,1813,1594,1594,1594,42,1581,1580,1582,0,1814,1810,1815,1595,1593,1596,42,1582,1580,1579,0,1815,1810,1809,1596,1593,1592,42,1576,1582,1579,0,1806,1815,1809,1589,1596,1592,42,1582,1576,1583,0,1815,1806,1816,1596,1589,1597,42,1584,1582,1583,0,1817,1815,1816,1598,1596,1597,42,1584,1585,1582,0,1817,1818,1815,1598,1599,1596,42,1586,1585,1584,0,1819,1818,1817,1600,1599,1598,42,1586,1587,1585,0,1819,1820,1818,1600,1601,1599,42,1588,1587,1586,0,1821,1820,1819,1602,1601,1600,42,1588,1589,1587,0,1821,1822,1820,1602,1603,1601,42,1590,1589,1588,0,1823,1822,1821,1604,1603,1602,42,1590,1591,1589,0,1823,1824,1822,1605,1605,1605,42,1592,1591,1590,0,1825,1824,1823,1605,1605,1605,42,1592,1593,1591,0,1825,1826,1824,1606,1606,1606,42,1593,1592,1594,0,1827,1828,1829,1607,1608,1609,42,1592,1595,1594,0,1828,1830,1829,1608,1610,1609,42,1592,1596,1595,0,1831,1832,1833,1608,1611,1610,42,1596,1592,1597,0,1834,1825,1835,1611,1608,1612,42,1597,1592,1590,0,1835,1825,1823,1605,1605,1605,42,1597,1590,1598,0,1835,1823,1836,1612,1604,1613,42,1598,1590,1588,0,1836,1823,1821,1613,1604,1602,42,1598,1588,1599,0,1836,1821,1837,1613,1602,1614,42,1599,1588,1586,0,1837,1821,1819,1614,1602,1600,42,1599,1586,1600,0,1837,1819,1838,1614,1600,1615,42,1600,1586,1584,0,1838,1819,1817,1615,1600,1598,42,1600,1584,1601,0,1838,1817,1839,1615,1598,1616,42,1601,1584,1583,0,1839,1817,1816,1616,1598,1597,42,1601,1583,1602,0,1839,1816,1840,1616,1597,1617,42,1583,1576,1602,0,1816,1806,1840,1597,1589,1617,42,1576,1578,1602,0,1806,1808,1840,1589,1591,1617,42,1601,1602,1578,0,1839,1840,1808,1616,1617,1591,42,1603,1601,1578,0,1841,1839,1808,1618,1616,1591,42,1600,1601,1603,0,1838,1839,1841,1615,1616,1618,42,1604,1600,1603,0,1842,1838,1841,1619,1615,1618,42,1605,1600,1604,0,1843,1838,1842,1620,1615,1619,42,1605,1606,1600,0,1843,1844,1838,1620,1621,1615,42,1607,1606,1605,0,1845,1844,1843,1622,1621,1620,42,1607,1599,1606,0,1845,1837,1844,1622,1614,1621,42,1607,1608,1599,0,1845,1846,1837,1622,1623,1614,42,1609,1608,1607,0,1847,1846,1845,1624,1623,1622,42,1610,1608,1609,0,1848,1846,1847,1625,1623,1624,42,1610,1598,1608,0,1848,1836,1846,1625,1613,1623,42,1597,1598,1610,0,1849,1836,1848,1612,1613,1625,42,1611,1597,1610,0,1850,1849,1848,1626,1612,1625,42,1596,1597,1611,0,1832,1849,1850,1611,1612,1626,42,1596,1611,1595,0,1832,1850,1833,1611,1626,1610,42,1595,1611,1612,0,1833,1850,1851,1610,1626,1627,42,1611,1613,1612,0,1850,1852,1851,1626,1628,1627,42,1613,1611,1610,0,1852,1850,1848,1628,1626,1625,42,1613,1610,1609,0,1852,1848,1847,1628,1625,1624,42,1614,1613,1609,0,1853,1852,1847,1629,1628,1624,42,1612,1613,1614,0,1851,1852,1853,1627,1628,1629,42,1612,1614,1615,0,1851,1853,1854,1627,1629,1630,42,1614,1616,1615,0,1855,1856,1857,1631,1631,1631,42,1614,1617,1616,0,1855,1858,1856,1632,1632,1632,42,1614,1609,1617,0,1853,1847,1859,1629,1624,1633,42,1617,1609,1607,0,1859,1847,1845,1633,1624,1622,42,1617,1607,1618,0,1859,1845,1860,1634,1634,1634,42,1619,1618,1607,0,1861,1862,1863,1635,1635,1635,42,1619,1620,1618,0,1861,1864,1862,1636,1636,1636,42,1621,1620,1619,0,1865,1864,1861,1636,1636,1636,42,1621,1622,1620,0,1865,1866,1864,1636,1636,1636,42,1621,1623,1622,0,1867,1868,1869,1637,1637,1637,42,1624,1623,1621,0,1870,1868,1867,1638,1639,1640,42,1624,1625,1623,0,1870,1871,1868,1638,1641,1639,42,1626,1625,1624,0,1872,1871,1870,1642,1641,1638,42,1626,1615,1625,0,1872,1873,1871,1642,1630,1641,42,1626,1612,1615,0,1872,1874,1873,1642,1627,1630,42,1595,1612,1626,0,1830,1874,1872,1610,1627,1642,42,1594,1595,1626,0,1829,1830,1872,1609,1610,1642,42,1594,1626,1624,0,1829,1872,1870,1609,1642,1638,42,1594,1624,1627,0,1829,1870,1875,1609,1638,1643,42,1624,1621,1627,0,1870,1867,1875,1638,1640,1643,42,1627,1621,1628,0,1875,1867,1876,1643,1640,1644,42,1621,1629,1628,0,1867,1877,1876,1640,1645,1644,42,1621,1630,1629,0,1867,1878,1877,1640,1646,1645,42,1631,1630,1621,0,1879,1880,1865,1647,1646,1640,42,1631,1632,1630,0,1879,1881,1880,1647,1648,1646,42,1605,1632,1631,0,1882,1881,1879,1620,1648,1647,42,1605,1604,1632,0,1882,1883,1881,1649,1649,1649,42,1603,1632,1604,0,1884,1881,1883,1594,1594,1594,42,1632,1603,1633,0,1881,1884,1885,1650,1650,1650,42,1603,1577,1633,0,1884,1811,1885,1650,1650,1650,42,1603,1578,1577,0,1884,1886,1811,1650,1650,1650,42,1633,1577,1581,0,1885,1811,1813,1594,1594,1594,42,1632,1633,1581,0,1881,1885,1813,1594,1594,1594,42,1632,1581,1634,0,1881,1813,1887,1594,1594,1594,42,1634,1581,1582,0,1888,1814,1815,1651,1595,1596,42,1634,1582,1585,0,1888,1815,1818,1651,1596,1599,42,1629,1634,1585,0,1877,1888,1818,1645,1651,1599,42,1630,1634,1629,0,1878,1888,1877,1646,1651,1645,42,1632,1634,1630,0,1881,1887,1880,1652,1652,1652,42,1629,1585,1587,0,1877,1818,1820,1645,1599,1601,42,1628,1629,1587,0,1876,1877,1820,1644,1645,1601,42,1628,1587,1589,0,1876,1820,1822,1644,1601,1603,42,1591,1628,1589,0,1889,1876,1822,1653,1644,1603,42,1627,1628,1591,0,1875,1876,1889,1643,1644,1653,42,1591,1593,1627,0,1889,1827,1875,1653,1607,1643,42,1593,1594,1627,0,1827,1829,1875,1607,1609,1643,42,1607,1605,1631,0,1863,1882,1879,1622,1620,1647,42,1607,1631,1619,0,1863,1879,1861,1654,1654,1654,42,1619,1631,1621,0,1861,1879,1865,1655,1655,1655,42,1615,1616,1625,0,1857,1856,1890,1631,1631,1631,42,1616,1623,1625,0,1856,1891,1890,1631,1631,1631,42,1616,1620,1623,0,1892,1893,1891,1631,1631,1631,42,1620,1616,1617,0,1893,1892,1858,1631,1631,1631,42,1617,1618,1620,0,1858,1862,1864,1631,1631,1631,42,1620,1622,1623,0,1864,1866,1891,1631,1631,1631,42,1598,1599,1608,0,1836,1837,1846,1613,1614,1623,42,1599,1600,1606,0,1837,1838,1844,1614,1615,1621,42,1635,1636,1637,3,1894,1895,1896,1656,1657,1658,42,1636,1635,1638,3,1895,1894,1897,1657,1656,1659,42,1638,1639,1636,3,1897,1898,1895,1659,1660,1657,42,1639,1638,1640,3,1899,1900,1901,1660,1659,1661,42,1640,1638,1641,3,1901,1900,1902,1661,1659,1662,42,1638,1635,1641,3,1897,1894,1903,1659,1656,1662,42,1635,1642,1641,3,1894,1904,1903,1656,1663,1662,42,1642,1635,1643,3,1904,1894,1905,1663,1656,1664,42,1635,1637,1643,3,1894,1896,1905,1656,1658,1664,42,1643,1637,1644,3,1906,1907,1908,1664,1658,1665,42,1644,1637,1645,3,1908,1909,1910,1665,1658,1666,42,1637,1646,1645,3,1909,1911,1910,1658,1667,1666,42,1637,1647,1646,3,1909,1912,1911,1658,1668,1667,42,1637,1636,1647,3,1909,1913,1912,1658,1657,1668,42,1646,1647,1648,3,1914,1915,1916,1667,1668,1669,42,1648,1647,1649,3,1916,1915,1917,1669,1668,1670,42,1648,1649,1650,3,1916,1917,1918,1669,1670,1671,42,1649,1651,1650,3,1919,1920,1921,1670,1672,1671,42,1650,1651,1652,3,1921,1920,1922,1671,1672,1673,42,1650,1652,1653,3,1921,1922,1923,1671,1673,1674,42,1652,1654,1653,3,1924,1925,1926,1673,1675,1674,42,1653,1654,1655,3,1926,1925,1927,1674,1675,1676,42,1653,1655,1656,3,1926,1927,1928,1674,1676,1677,42,1656,1655,1657,3,1928,1927,1929,1677,1676,1678,42,1656,1657,1658,3,1928,1929,1930,1677,1678,1679,42,1658,1657,1659,3,1930,1929,1931,1679,1678,1680,42,1657,1660,1659,3,1929,1932,1931,1678,1681,1680,42,1659,1660,1661,3,1931,1932,1933,1680,1681,1682,42,1662,1653,1656,3,1934,1923,1935,1683,1674,1677,42,1662,1650,1653,3,1934,1921,1923,1683,1671,1674,42,1663,1650,1662,3,1936,1918,1937,1684,1671,1683,42,1648,1650,1663,3,1916,1918,1936,1669,1671,1684,42,1645,1648,1663,3,1938,1916,1936,1666,1669,1684,42,1645,1646,1648,3,1938,1914,1916,1666,1667,1669,42,1664,1645,1663,3,1939,1938,1936,1685,1666,1684,42,1664,1663,1665,3,1939,1936,1940,1685,1684,1686,42,1666,1664,1665,3,1941,1939,1940,1687,1685,1686,42,1667,1666,1665,3,1942,1941,1940,1688,1687,1686,42,1668,1666,1667,3,1943,1941,1942,1689,1687,1688,42,1663,1662,1669,3,1936,1937,1944,1684,1683,1690,42,1670,1663,1669,3,1940,1936,1944,1691,1684,1690,42,1671,1670,1669,3,1945,1940,1944,1692,1691,1690,42,1670,1671,1672,3,1940,1945,1942,1691,1692,1693,42,1673,1672,1671,3,1946,1942,1945,1694,1693,1692,42,1662,1656,1674,3,1934,1935,1947,1683,1677,1695,42,1675,1662,1674,3,1948,1934,1947,1696,1683,1695,42,1675,1674,1676,3,1948,1947,1949,1696,1695,1697,42,1675,1676,1677,3,1948,1949,1950,1696,1697,1698,42,1678,1677,1676,3,1951,1950,1949,1699,1698,1697,42,1644,1645,1679,3,1908,1910,1952,1665,1666,1700,42,1680,1644,1679,3,1953,1908,1952,1701,1665,1700,42,1681,1644,1680,3,1954,1908,1953,1702,1665,1701,42,1681,1643,1644,3,1954,1906,1908,1702,1664,1665,42,1642,1643,1681,3,1904,1905,1955,1663,1664,1702,42,1682,1642,1681,3,1956,1904,1955,1703,1663,1702,42,1642,1682,1641,3,1904,1956,1903,1663,1703,1662,42,1641,1682,1683,3,1903,1956,1957,1662,1703,1704,42,1682,1684,1683,3,1956,1958,1957,1703,1705,1704,42,1682,1685,1684,3,1956,1959,1958,1703,1706,1705,42,1685,1682,1686,3,1959,1956,1960,1707,1707,1707,42,1686,1682,1681,3,1960,1956,1955,1708,1703,1702,42,1687,1685,1686,3,1961,1959,1960,1709,1709,1709,42,1687,1684,1685,3,1961,1958,1959,1710,1705,1706,42,1688,1681,1680,3,1962,1954,1953,1711,1702,1701,42,1689,1688,1680,3,1963,1962,1953,1712,1711,1701,42,1690,1688,1689,3,1964,1962,1963,1713,1711,1712,42,1690,1689,1691,3,1964,1963,1965,1713,1712,1714,42,1689,1680,1691,3,1963,1953,1965,1712,1701,1714,42,1691,1680,1679,3,1965,1953,1952,1714,1701,1700,42,1640,1641,1692,3,1901,1902,1966,1661,1662,1715,42,1692,1641,1693,3,1966,1902,1967,1715,1662,1716,42,1692,1693,1694,3,1966,1967,1968,1715,1716,1717,42,1694,1693,1695,3,1968,1967,1969,1717,1716,1718,42,1694,1695,1696,3,1968,1969,1970,1717,1718,1719,42,1695,1697,1696,3,1969,1971,1970,1718,1720,1719,42,1692,1694,1698,3,1972,1973,1974,1715,1717,1721,42,1698,1694,1699,3,1974,1973,1975,1721,1717,1722,42,1700,1698,1699,3,1976,1974,1975,1723,1721,1722,42,1698,1700,1701,3,1974,1976,1977,1721,1723,1724,42,1700,1702,1701,3,1976,1978,1977,1723,1725,1724,42,1702,1700,1699,3,1978,1976,1975,1725,1723,1722,42,1698,1701,1703,3,1974,1977,1979,1721,1724,1726,42,1704,1698,1703,3,1980,1974,1979,1727,1721,1726,42,1704,1692,1698,3,1980,1972,1974,1727,1715,1721,42,1705,1692,1704,3,1981,1972,1980,1728,1715,1727,42,1705,1640,1692,3,1981,1982,1972,1728,1661,1715,42,1706,1640,1705,3,1983,1982,1981,1729,1661,1728,42,1639,1640,1706,3,1984,1982,1983,1660,1661,1729,42,1706,1705,1707,3,1983,1981,1985,1729,1728,1730,42,1705,1708,1707,3,1981,1986,1985,1728,1731,1730,42,1705,1704,1708,3,1981,1980,1986,1728,1727,1731,42,1704,1703,1708,3,1980,1979,1986,1727,1726,1731,42,1708,1703,1709,3,1987,1988,1989,1731,1726,1732,42,1709,1703,1710,3,1989,1988,1990,1732,1726,1733,42,1710,1703,1711,3,1990,1988,1991,1733,1726,1734,42,1710,1711,1712,3,1990,1991,1992,1733,1734,1735,42,1712,1711,1713,3,1992,1991,1993,1735,1734,1736,42,1712,1713,1714,3,1992,1993,1994,1735,1736,1737,42,1710,1712,1714,3,1990,1992,1994,1733,1735,1737,42,1710,1714,1715,3,1990,1994,1995,1733,1737,1738,42,1716,1710,1715,3,1996,1990,1995,1739,1733,1738,42,1709,1710,1716,3,1989,1990,1996,1732,1733,1739,42,1717,1709,1716,3,1997,1989,1996,1740,1732,1739,42,1717,1708,1709,3,1997,1987,1989,1740,1731,1732,42,1707,1708,1717,3,1998,1987,1997,1730,1731,1740,42,1718,1707,1717,3,1999,1998,1997,1741,1730,1740,42,1706,1707,1718,3,2000,1998,1999,1729,1730,1741,42,1718,1717,1719,3,1999,1997,2001,1741,1740,1742,42,1717,1716,1719,3,1997,1996,2001,1740,1739,1742,42,1719,1716,1720,3,2002,2003,2004,1742,1739,1743,42,1720,1716,1715,3,2004,2003,2005,1743,1739,1738,42,1720,1715,1721,3,2004,2005,2006,1743,1738,1744,42,1715,1722,1721,3,2005,2007,2006,1738,1745,1744,42,1715,1723,1722,3,2005,2008,2007,1738,1746,1745,42,1723,1724,1722,3,2008,2009,2007,1746,1747,1745,42,1725,1719,1720,3,2010,2002,2004,1748,1742,1743,42,1726,1719,1725,3,2011,2002,2010,1749,1742,1748,42,1718,1719,1726,3,2012,2002,2011,1741,1742,1749,42,1727,1726,1725,3,2013,2011,2010,1750,1749,1748,42,1725,1728,1727,3,2010,2014,2013,1748,1751,1750,42,1725,1729,1728,3,2010,2015,2014,1748,1752,1751,42,1725,1730,1729,3,2010,2016,2015,1748,1753,1752,42,1725,1720,1730,3,2010,2004,2016,1748,1743,1753,42,1720,1731,1730,3,2004,2017,2016,1743,1754,1753,42,1720,1732,1731,3,2004,2018,2017,1743,1755,1754,42,1732,1733,1731,3,2018,2019,2017,1755,1756,1754,42,1732,1734,1733,3,2018,2020,2019,1755,1757,1756,42,1735,1733,1734,3,2021,2019,2020,1758,1756,1757,42,1735,1736,1733,3,2021,2022,2019,1758,1759,1756,42,1733,1736,1731,3,2019,2022,2017,1756,1759,1754,42,1737,1731,1736,3,2023,2017,2022,1760,1754,1759,42,1731,1737,1730,3,2017,2023,2016,1754,1760,1753,42,1737,1738,1730,3,2023,2024,2016,1760,1761,1753,42,1730,1738,1729,3,2016,2024,2015,1753,1761,1752,42,1729,1738,1739,3,2015,2024,2025,1752,1761,1762,42,1729,1739,1728,3,2015,2025,2026,1752,1762,1751,42,1740,1741,1742,3,2027,2028,2029,1763,1764,1765,42,1741,1740,1743,3,2028,2027,2030,1764,1763,1766,42,1743,1744,1741,3,2030,2031,2028,1766,1767,1764,42,1744,1743,1745,3,2032,2033,2034,1767,1766,1768,42,1745,1743,1746,3,2034,2033,2035,1768,1766,1769,42,1743,1740,1746,3,2030,2027,2036,1766,1763,1769,42,1740,1747,1746,3,2027,2037,2036,1763,1770,1769,42,1747,1740,1748,3,2037,2027,2038,1770,1763,1771,42,1740,1742,1748,3,2027,2029,2038,1763,1765,1771,42,1748,1742,1749,3,2039,2040,2041,1771,1765,1772,42,1749,1742,1750,3,2041,2042,2043,1772,1765,1773,42,1742,1751,1750,3,2042,2044,2043,1765,1774,1773,42,1742,1741,1751,3,2042,2045,2044,1765,1764,1774,42,1741,1752,1751,3,2045,2046,2044,1764,1775,1774,42,1751,1752,1753,3,2047,2048,2049,1774,1775,1776,42,1752,1754,1753,3,2048,2050,2049,1775,1777,1776,42,1753,1754,1755,3,2049,2050,2051,1776,1777,1778,42,1755,1754,1756,3,2052,2053,2054,1778,1777,1779,42,1754,1757,1756,3,2053,2055,2054,1777,1780,1779,42,1757,1758,1756,3,2056,2057,2058,1780,1781,1779,42,1758,1759,1756,3,2057,2059,2058,1781,1782,1779,42,1756,1759,1760,3,2058,2059,2060,1779,1782,1783,42,1759,1761,1760,3,2059,2061,2060,1782,1784,1783,42,1760,1761,1762,3,2060,2061,2062,1783,1784,1785,42,1761,1763,1762,3,2061,2063,2062,1784,1786,1785,42,1761,1764,1763,3,2061,2064,2063,1784,1787,1786,42,1763,1764,1765,3,2063,2064,2065,1786,1787,1788,42,1755,1756,1760,3,2052,2054,2066,1778,1779,1783,42,1755,1760,1766,3,2052,2066,2067,1778,1783,1789,42,1766,1760,1767,3,2067,2066,2068,1789,1783,1790,42,1768,1766,1767,3,2069,2067,2068,1791,1789,1790,42,1768,1767,1769,3,2069,2068,2070,1791,1790,1792,42,1768,1769,1770,3,2069,2070,2071,1791,1792,1793,42,1771,1770,1769,3,2072,2071,2070,1794,1793,1792,42,1772,1755,1766,3,2073,2051,2074,1795,1778,1789,42,1772,1753,1755,3,2073,2049,2051,1795,1776,1778,42,1750,1753,1772,3,2075,2049,2073,1773,1776,1795,42,1750,1751,1753,3,2075,2047,2049,1773,1774,1776,42,1773,1750,1772,3,2076,2075,2073,1796,1773,1795,42,1774,1773,1772,3,2077,2076,2073,1797,1796,1795,42,1773,1774,1775,3,2076,2077,2078,1796,1797,1798,42,1775,1774,1776,3,2078,2077,2079,1798,1797,1799,42,1775,1776,1777,3,2078,2079,2080,1798,1799,1800,42,1772,1766,1778,3,2073,2074,2081,1795,1789,1801,42,1779,1772,1778,3,2082,2073,2081,1802,1795,1801,42,1779,1778,1780,3,2082,2081,2083,1802,1801,1803,42,1779,1780,1781,3,2082,2083,2084,1802,1803,1804,42,1781,1780,1782,3,2084,2083,2085,1804,1803,1805,42,1749,1750,1783,3,2041,2043,2086,1772,1773,1806,42,1784,1749,1783,3,2087,2041,2086,1807,1772,1806,42,1784,1785,1749,3,2087,2088,2041,1807,1808,1772,42,1784,1786,1785,3,2087,2089,2088,1807,1809,1808,42,1786,1784,1787,3,2089,2087,2090,1809,1807,1810,42,1784,1788,1787,3,2087,2091,2090,1807,1811,1810,42,1784,1783,1788,3,2087,2086,2091,1807,1806,1811,42,1787,1788,1789,3,2090,2091,2092,1810,1811,1812,42,1786,1787,1789,3,2089,2090,2092,1809,1810,1812,42,1749,1785,1748,3,2041,2088,2039,1772,1808,1771,42,1747,1748,1785,3,2037,2038,2093,1770,1771,1808,42,1790,1747,1785,3,2094,2037,2093,1813,1770,1808,42,1747,1790,1746,3,2037,2094,2036,1770,1813,1769,42,1746,1790,1791,3,2036,2094,2095,1769,1813,1814,42,1790,1792,1791,3,2094,2096,2095,1813,1815,1814,42,1790,1793,1792,3,2094,2097,2096,1813,1816,1815,42,1793,1790,1794,3,2097,2094,2098,1816,1813,1817,42,1790,1785,1794,3,2094,2093,2098,1813,1808,1817,42,1795,1793,1794,3,2099,2097,2098,1818,1816,1817,42,1792,1793,1795,3,2096,2097,2099,1815,1816,1818,42,1745,1746,1796,3,2034,2035,2100,1768,1769,1819,42,1746,1797,1796,3,2035,2101,2100,1769,1820,1819,42,1797,1798,1796,3,2101,2102,2100,1820,1821,1819,42,1798,1797,1799,3,2102,2101,2103,1821,1820,1822,42,1798,1799,1800,3,2102,2103,2104,1821,1822,1823,42,1800,1799,1801,3,2104,2103,2105,1823,1822,1824,42,1796,1798,1802,3,2106,2107,2108,1819,1821,1825,42,1802,1798,1803,3,2108,2107,2109,1825,1821,1826,42,1802,1803,1804,3,2108,2109,2110,1825,1826,1827,42,1804,1803,1805,3,2110,2109,2111,1827,1826,1828,42,1806,1804,1805,3,2112,2110,2111,1829,1827,1828,42,1802,1804,1806,3,2108,2110,2112,1825,1827,1829,42,1807,1802,1806,3,2113,2108,2112,1830,1825,1829,42,1808,1802,1807,3,2114,2108,2113,1831,1825,1830,42,1808,1796,1802,3,2114,2106,2108,1831,1819,1825,42,1809,1796,1808,3,2115,2106,2114,1832,1819,1831,42,1809,1745,1796,3,2115,2116,2106,1832,1768,1819,42,1810,1745,1809,3,2117,2116,2115,1833,1768,1832,42,1744,1745,1810,3,2118,2116,2117,1767,1768,1833,42,1810,1809,1811,3,2117,2115,2119,1833,1832,1834,42,1811,1809,1812,3,2119,2115,2120,1834,1832,1835,42,1809,1808,1812,3,2115,2114,2120,1832,1831,1835,42,1812,1808,1807,3,2120,2114,2113,1835,1831,1830,42,1813,1812,1807,3,2121,2122,2123,1836,1835,1830,42,1814,1812,1813,3,2124,2122,2121,1837,1835,1836,42,1814,1811,1812,3,2124,2125,2122,1837,1834,1835,42,1815,1811,1814,3,2126,2125,2124,1838,1834,1837,42,1810,1811,1815,3,2127,2125,2126,1833,1834,1838,42,1815,1814,1816,3,2126,2124,2128,1838,1837,1839,42,1816,1814,1817,3,2128,2124,2129,1839,1837,1840,42,1813,1817,1814,3,2121,2129,2124,1836,1840,1837,42,1813,1818,1817,3,2121,2130,2129,1836,1841,1840,42,1813,1807,1818,3,2121,2123,2130,1836,1830,1841,42,1818,1807,1819,3,2130,2123,2131,1841,1830,1842,42,1818,1819,1820,3,2130,2131,2132,1841,1842,1843,42,1820,1819,1821,3,2132,2131,2133,1843,1842,1844,42,1822,1820,1821,3,2134,2132,2133,1845,1843,1844,42,1818,1820,1822,3,2130,2132,2134,1841,1843,1845,42,1823,1818,1822,3,2135,2130,2134,1846,1841,1845,42,1817,1818,1823,3,2129,2130,2135,1840,1841,1846,42,1817,1823,1824,3,2136,2137,2138,1840,1846,1847,42,1824,1823,1825,3,2138,2137,2139,1847,1846,1848,42,1825,1823,1826,3,2139,2137,2140,1848,1846,1849,42,1823,1827,1826,3,2137,2141,2140,1846,1850,1849,42,1826,1827,1828,3,2140,2141,2142,1849,1850,1851,42,1816,1817,1824,3,2143,2136,2138,1839,1840,1847,42,1829,1816,1824,3,2144,2143,2138,1852,1839,1847,42,1815,1816,1829,3,2145,2143,2144,1838,1839,1852,42,1830,1815,1829,3,2146,2145,2144,1853,1838,1852,42,1829,1831,1830,3,2144,2147,2146,1852,1854,1853,42,1831,1829,1832,3,2147,2144,2148,1854,1852,1855,42,1832,1829,1833,3,2148,2144,2149,1855,1852,1856,42,1829,1824,1833,3,2144,2138,2149,1852,1847,1856,42,1824,1834,1833,3,2138,2150,2149,1847,1857,1856,42,1824,1835,1834,3,2138,2151,2150,1847,1858,1857,42,1834,1835,1836,3,2150,2151,2152,1857,1858,1859,42,1835,1837,1836,3,2151,2153,2152,1858,1860,1859,42,1836,1837,1838,3,2152,2153,2154,1859,1860,1861,42,1838,1839,1836,3,2154,2155,2152,1861,1862,1859,42,1836,1839,1834,3,2152,2155,2150,1859,1862,1857,42,1839,1840,1834,3,2155,2156,2150,1862,1863,1857,42,1833,1834,1840,3,2149,2150,2156,1856,1857,1863,42,1833,1840,1841,3,2149,2156,2157,1856,1863,1864,42,1833,1841,1832,3,2149,2157,2148,1856,1864,1855,42,1832,1841,1842,3,2148,2157,2158,1855,1864,1865,42,1842,1841,1843,3,2159,2160,2161,1865,1864,1866,42,1843,1841,1844,3,2161,2160,2162,1866,1864,1867,42,1845,1843,1844,3,2163,2161,2162,1868,1866,1867,42,1845,1844,1846,3,2163,2162,2164,1868,1867,1869,42,1843,1847,1842,3,2165,2166,2167,1866,1870,1865,42,1843,1848,1847,3,2165,2168,2166,1866,1871,1870,42,1843,1849,1848,3,2165,2169,2168,1866,1872,1871,42,1849,1850,1848,3,2169,2170,2168,1872,1873,1871,42,1832,1842,1831,3,2148,2158,2171,1855,1865,1854,42,1851,1852,1853,3,2172,2173,2174,1874,1875,1876,42,1851,1854,1852,3,2175,2176,2177,1874,1877,1875,42,1854,1851,1855,3,2176,2175,2178,1877,1874,1878,42,1855,1856,1854,3,2179,2180,2181,1878,1879,1877,42,1857,1856,1855,3,2182,2180,2179,1880,1879,1878,42,1857,1858,1856,3,2183,2184,2185,1880,1881,1879,42,1856,1858,1859,3,2185,2184,2186,1879,1881,1882,42,1859,1858,1860,3,2187,2180,2181,1882,1881,1883,42,1858,1861,1860,3,2180,2179,2181,1881,1884,1883,42,1858,1862,1861,3,2180,2182,2179,1881,1885,1884,42,1860,1861,1863,3,2176,2178,2175,1883,1884,1886,42,1860,1863,1864,3,2176,2175,2177,1883,1886,1887,42,1864,1863,1865,3,2173,2172,2174,1887,1886,1888,42,1863,1866,1865,3,2172,2188,2174,1886,1889,1888,42,1865,1866,1867,3,2174,2188,2189,1888,1889,1890,42,1865,1867,1868,3,2174,2189,2190,1888,1890,1891,42,1867,1869,1868,3,2191,2192,2190,1890,1892,1891,42,1868,1869,1870,3,2190,2192,2193,1891,1892,1893,42,1868,1870,1871,3,2190,2193,2194,1891,1893,1894,42,1871,1870,1872,3,2194,2193,2195,1894,1893,1895,42,1870,1873,1872,3,2193,2196,2195,1893,1896,1895,42,1872,1873,1874,3,2195,2196,2197,1895,1896,1897,42,1874,1875,1872,3,2197,2198,2195,1897,1898,1895,42,1875,1876,1872,3,2198,2199,2195,1898,1899,1895,42,1876,1871,1872,3,2199,2194,2195,1899,1894,1895,42,1876,1865,1871,3,2199,2174,2194,1899,1888,1894,42,1864,1865,1876,3,2173,2174,2199,1887,1888,1899,42,1877,1864,1876,3,2200,2173,2199,1900,1887,1899,42,1878,1864,1877,3,2201,2177,2202,1901,1887,1900,42,1879,1864,1878,3,2203,2177,2201,1902,1887,1901,42,1879,1860,1864,3,2203,2176,2177,1902,1883,1887,42,1880,1860,1879,3,2204,2181,2205,1903,1883,1902,42,1860,1880,1859,3,2181,2204,2187,1883,1903,1882,42,1859,1880,1881,3,2187,2204,2206,1882,1903,1904,42,1881,1880,1882,3,2206,2204,2207,1904,1903,1905,42,1880,1879,1882,3,2204,2205,2207,1903,1902,1905,42,1882,1879,1878,3,2208,2203,2201,1905,1902,1901,42,1882,1878,1883,3,2208,2201,2209,1905,1901,1906,42,1883,1878,1877,3,2209,2201,2202,1906,1901,1900,42,1883,1877,1884,3,2209,2202,2210,1906,1900,1907,42,1884,1877,1876,3,2211,2200,2199,1907,1900,1899,42,1884,1876,1885,3,2211,2199,2212,1907,1899,1908,42,1886,1884,1885,3,2213,2211,2212,1909,1907,1908,42,1883,1884,1887,3,2209,2210,2214,1906,1907,1910,42,1888,1883,1887,3,2215,2209,2214,1911,1906,1910,42,1889,1883,1888,3,2216,2209,2215,1912,1906,1911,42,1889,1882,1883,3,2216,2208,2209,1912,1905,1906,42,1890,1889,1888,3,2217,2216,2215,1913,1912,1911,42,1890,1888,1887,3,2217,2215,2214,1913,1911,1910,42,1881,1882,1891,3,2206,2207,2218,1904,1905,1914,42,1892,1881,1891,3,2219,2206,2218,1915,1904,1914,42,1893,1881,1892,3,2220,2206,2219,1916,1904,1915,42,1881,1893,1894,3,2206,2220,2221,1904,1916,1917,42,1859,1881,1894,3,2187,2206,2221,1882,1904,1917,42,1859,1894,1895,3,2186,2222,2223,1882,1917,1918,42,1895,1894,1896,3,2223,2222,2224,1918,1917,1919,42,1894,1897,1896,3,2222,2225,2224,1917,1920,1919,42,1897,1898,1896,3,2225,2226,2224,1920,1921,1919,42,1897,1899,1898,3,2225,2227,2226,1920,1922,1921,42,1895,1896,1900,3,2187,2221,2206,1918,1919,1923,42,1901,1900,1896,3,2220,2206,2221,1924,1923,1919,42,1900,1901,1902,3,2206,2220,2219,1923,1924,1925,42,1901,1903,1902,3,2220,2228,2219,1924,1926,1925,42,1900,1902,1904,3,2206,2219,2218,1923,1925,1927,42,1902,1905,1904,3,2219,2229,2218,1925,1928,1927,42,1900,1904,1906,3,2206,2218,2207,1923,1927,1929,42,1907,1900,1906,3,2204,2206,2207,1930,1923,1929,42,1895,1900,1907,3,2187,2206,2204,1918,1923,1930,42,1854,1895,1907,3,2181,2187,2204,1877,1918,1930,42,1856,1895,1854,3,2180,2187,2181,1879,1918,1877,42,1856,1859,1895,3,2185,2186,2223,1879,1882,1918,42,1854,1907,1908,3,2181,2204,2205,1877,1930,1931,42,1907,1906,1908,3,2204,2207,2205,1930,1929,1931,42,1908,1906,1909,3,2203,2208,2201,1931,1929,1932,42,1909,1906,1910,3,2201,2208,2209,1932,1929,1933,42,1906,1911,1910,3,2208,2216,2209,1929,1934,1933,42,1910,1911,1912,3,2209,2216,2215,1933,1934,1935,42,1911,1913,1912,3,2216,2217,2215,1934,1936,1935,42,1912,1913,1914,3,2215,2217,2230,1935,1936,1937,42,1910,1912,1914,3,2209,2215,2230,1933,1935,1937,42,1914,1915,1910,3,2230,2210,2209,1937,1938,1933,42,1910,1916,1915,3,2209,2202,2210,1933,1939,1938,42,1910,1909,1916,3,2209,2201,2202,1933,1932,1939,42,1852,1909,1916,3,2177,2201,2202,1875,1932,1939,42,1852,1908,1909,3,2177,2203,2201,1875,1931,1932,42,1854,1908,1852,3,2176,2203,2177,1877,1931,1875,42,1852,1916,1917,3,2173,2200,2199,1875,1939,1940,42,1916,1915,1917,3,2200,2211,2199,1939,1938,1940,42,1917,1915,1918,3,2199,2211,2212,1940,1938,1941,42,1915,1919,1918,3,2211,2213,2212,1938,1942,1941,42,1852,1917,1853,3,2173,2199,2174,1875,1940,1876,42,1853,1917,1920,3,2174,2199,2194,1876,1940,1943,42,1917,1921,1920,3,2199,2195,2194,1940,1944,1943,42,1922,1921,1917,3,2198,2195,2199,1945,1944,1940,42,1923,1921,1922,3,2197,2195,2198,1946,1944,1945,42,1923,1924,1921,3,2197,2196,2195,1946,1947,1944,42,1921,1924,1925,3,2195,2196,2193,1944,1947,1948,42,1921,1925,1920,3,2195,2193,2194,1944,1948,1943,42,1926,1920,1925,3,2190,2194,2193,1949,1943,1948,42,1853,1920,1926,3,2174,2194,2190,1876,1943,1949,42,1927,1853,1926,3,2189,2174,2190,1950,1876,1949,42,1928,1853,1927,3,2188,2174,2189,1951,1876,1950,42,1851,1853,1928,3,2172,2174,2188,1874,1876,1951,42,1926,1927,1929,3,2190,2191,2192,1949,1950,1952,42,1926,1925,1929,3,2190,2193,2192,1949,1948,1952,42,1930,1893,1892,3,2228,2220,2219,1953,1916,1915,42,1931,1892,1891,3,2229,2219,2218,1954,1915,1914,42,1871,1865,1868,3,2194,2174,2190,1894,1888,1891,42,1932,1933,1934,3,2231,2232,2233,1955,1956,1957,42,1933,1932,1935,3,2232,2231,2234,1956,1955,1958,42,1935,1932,1936,3,2235,2236,2237,1958,1955,1959,42,1936,1932,1937,3,2237,2238,2239,1959,1955,1960,42,1932,1938,1937,3,2238,2240,2239,1955,1961,1960,42,1938,1932,1934,3,2240,2238,2241,1961,1955,1957,42,1938,1934,1939,3,2240,2241,2242,1961,1957,1962,42,1939,1934,1940,3,2242,2241,2243,1962,1957,1963,42,1934,1941,1940,3,2241,2244,2243,1957,1964,1963,42,1934,1942,1941,3,2233,2245,2246,1957,1965,1964,42,1933,1942,1934,3,2232,2245,2233,1956,1965,1957,42,1933,1943,1942,3,2232,2247,2245,1956,1966,1965,42,1933,1944,1943,3,2232,2248,2247,1956,1967,1966,42,1933,1945,1944,3,2232,2249,2248,1956,1968,1967,42,1945,1933,1935,3,2249,2232,2234,1968,1956,1958,42,1945,1935,1946,3,2249,2234,2250,1968,1958,1969,42,1946,1935,1936,3,2251,2235,2237,1969,1958,1959,42,1936,1947,1946,3,2237,2252,2251,1959,1970,1969,42,1947,1936,1948,3,2252,2237,2253,1970,1959,1971,42,1936,1937,1948,3,2237,2239,2253,1959,1960,1971,42,1948,1937,1949,3,2254,2255,2256,1971,1960,1972,42,1937,1950,1949,3,2255,2257,2256,1960,1973,1972,42,1937,1938,1950,3,2255,2258,2257,1960,1961,1973,42,1938,1939,1950,3,2258,2259,2257,1961,1962,1973,42,1939,1951,1950,3,2259,2260,2257,1962,1974,1973,42,1951,1939,1940,3,2260,2259,2261,1974,1962,1963,42,1951,1940,1952,3,2260,2261,2262,1974,1963,1975,42,1940,1953,1952,3,2261,2263,2262,1963,1976,1975,42,1940,1954,1953,3,2261,2264,2263,1963,1977,1976,42,1940,1941,1954,3,2243,2244,2265,1963,1964,1977,42,1941,1955,1954,3,2246,2266,2267,1964,1978,1977,42,1942,1955,1941,3,2245,2266,2246,1965,1978,1964,42,1942,1956,1955,3,2245,2268,2266,1965,1979,1978,42,1943,1956,1942,3,2247,2268,2245,1966,1979,1965,42,1943,1957,1956,3,2269,2270,2271,1966,1980,1979,42,1957,1943,1944,3,2270,2269,2272,1980,1966,1967,42,1957,1944,1958,3,2270,2272,2273,1980,1967,1981,42,1958,1944,1959,3,2273,2272,2274,1981,1967,1982,42,1944,1960,1959,3,2248,2275,2276,1967,1983,1982,42,1945,1960,1944,3,2249,2275,2248,1968,1983,1967,42,1960,1945,1946,3,2275,2249,2250,1983,1968,1969,42,1961,1960,1946,3,2277,2275,2250,1984,1983,1969,42,1962,1960,1961,3,2278,2275,2277,1985,1983,1984,42,1960,1962,1963,3,2275,2278,2279,1983,1985,1986,42,1962,1964,1963,3,2278,2280,2279,1985,1987,1986,42,1964,1962,1961,3,2280,2278,2277,1987,1985,1984,42,1960,1963,1959,3,2275,2279,2276,1983,1986,1982,42,1958,1959,1965,3,2273,2274,2281,1981,1982,1988,42,1965,1959,1966,3,2281,2274,2282,1988,1982,1989,42,1967,1965,1966,3,2283,2281,2282,1990,1988,1989,42,1968,1967,1966,3,2284,2283,2282,1991,1990,1989,42,1958,1965,1969,3,2285,2286,2287,1981,1988,1992,42,1969,1965,1970,3,2287,2286,2288,1992,1988,1993,42,1969,1970,1971,3,2287,2288,2289,1992,1993,1994,42,1971,1970,1972,3,2289,2288,2290,1994,1993,1995,42,1973,1971,1972,3,2291,2289,2290,1996,1994,1995,42,1969,1971,1973,3,2287,2289,2291,1992,1994,1996,42,1969,1973,1974,3,2287,2291,2292,1992,1996,1997,42,1975,1969,1974,3,2293,2287,2292,1998,1992,1997,42,1975,1958,1969,3,2293,2285,2287,1998,1981,1992,42,1976,1958,1975,3,2294,2285,2293,1999,1981,1998,42,1976,1957,1958,3,2294,2295,2285,1999,1980,1981,42,1957,1976,1977,3,2295,2294,2296,1980,1999,2000,42,1976,1978,1977,3,2294,2297,2296,1999,2001,2000,42,1976,1979,1978,3,2294,2298,2297,1999,2002,2001,42,1976,1975,1979,3,2294,2293,2298,1999,1998,2002,42,1975,1974,1979,3,2293,2292,2298,1998,1997,2002,42,1979,1974,1980,3,2299,2300,2301,2002,1997,2003,42,1980,1974,1981,3,2301,2300,2302,2003,1997,2004,42,1981,1974,1982,3,2302,2300,2303,2004,1997,2005,42,1981,1982,1983,3,2302,2303,2304,2004,2005,2006,42,1983,1982,1984,3,2304,2303,2305,2006,2005,2007,42,1984,1985,1983,3,2305,2306,2304,2007,2008,2006,42,1981,1983,1985,3,2302,2304,2306,2004,2006,2008,42,1981,1985,1986,3,2302,2306,2307,2004,2008,2009,42,1987,1981,1986,3,2308,2302,2307,2010,2004,2009,42,1980,1981,1987,3,2301,2302,2308,2003,2004,2010,42,1988,1980,1987,3,2309,2301,2308,2011,2003,2010,42,1988,1979,1980,3,2309,2299,2301,2011,2002,2003,42,1988,1978,1979,3,2309,2310,2299,2011,2001,2002,42,1978,1988,1989,3,2310,2309,2311,2001,2011,2012,42,1989,1988,1990,3,2311,2309,2312,2012,2011,2013,42,1988,1987,1990,3,2309,2308,2312,2011,2010,2013,42,1990,1987,1991,3,2313,2314,2315,2013,2010,2014,42,1991,1987,1986,3,2315,2314,2316,2014,2010,2009,42,1991,1986,1992,3,2315,2316,2317,2014,2009,2015,42,1992,1986,1993,3,2317,2316,2318,2015,2009,2016,42,1986,1994,1993,3,2316,2319,2318,2009,2017,2016,42,1994,1995,1993,3,2319,2320,2318,2017,2018,2016,42,1991,1992,1996,3,2315,2321,2322,2014,2015,2019,42,1996,1992,1997,3,2322,2321,2323,2019,2015,2020,42,1992,1998,1997,3,2321,2324,2323,2015,2021,2020,42,1998,1999,1997,3,2324,2325,2323,2021,2022,2020,42,1999,2000,1997,3,2325,2326,2323,2022,2023,2020,42,1997,2000,1996,3,2323,2326,2322,2020,2023,2019,42,2000,2001,1996,3,2326,2327,2322,2023,2024,2019,42,1996,2001,2002,3,2322,2327,2328,2019,2024,2025,42,2001,2003,2002,3,2327,2329,2328,2024,2026,2025,42,2002,2003,2004,3,2328,2329,2330,2025,2026,2027,42,2003,2005,2004,3,2329,2331,2330,2026,2028,2027,42,2005,2003,2006,3,2332,2333,2334,2028,2026,2029,42,2006,2003,2007,3,2334,2333,2335,2029,2026,2030,42,2007,2008,2006,3,2335,2336,2334,2030,2031,2029,42,2009,2008,2007,3,2337,2336,2335,2032,2031,2030,42,2006,2010,2005,3,2338,2339,2340,2029,2033,2028,42,2006,2011,2010,3,2338,2341,2339,2029,2034,2033,42,2012,2011,2006,3,2342,2341,2338,2035,2034,2029,42,2012,2013,2011,3,2342,2343,2341,2035,2036,2034,42,2010,2014,2005,3,2344,2345,2346,2033,2037,2028,42,2014,2010,2015,3,2345,2344,2347,2037,2033,2038,42,2015,2010,2016,3,2347,2344,2348,2038,2033,2039,42,2015,2016,2017,3,2347,2348,2349,2038,2039,2040,42,2016,2018,2017,3,2348,2350,2349,2039,2041,2040,42,2017,2018,2019,3,2349,2350,2351,2040,2041,2042,42,2018,2020,2019,3,2350,2352,2351,2041,2043,2042,42,2019,2020,2021,3,2351,2352,2353,2042,2043,2044,42,2020,2022,2021,3,2352,2354,2353,2043,2045,2044,42,2021,2022,2023,3,2353,2354,2355,2044,2045,2046,42,2024,2021,2023,3,2356,2353,2355,2047,2044,2046,42,2019,2021,2024,3,2351,2353,2356,2042,2044,2047,42,2025,2019,2024,3,2357,2351,2356,2048,2042,2047,42,2017,2019,2025,3,2349,2351,2357,2040,2042,2048,42,2015,2017,2025,3,2347,2349,2357,2038,2040,2048,42,2015,2025,2026,3,2347,2357,2358,2038,2048,2049,42,2026,2025,2027,3,2358,2359,2360,2049,2048,2050,42,2025,2028,2027,3,2359,2361,2360,2048,2051,2050,42,2025,2029,2028,3,2359,2362,2361,2048,2052,2051,42,2025,2030,2029,3,2359,2363,2362,2048,2053,2052,42,2030,2031,2029,3,2363,2364,2362,2053,2054,2052,42,2026,2027,2032,3,2358,2360,2365,2049,2050,2055,42,2027,2033,2032,3,2366,2367,2368,2050,2056,2055,42,2027,2034,2033,3,2366,2369,2367,2050,2057,2056,42,2027,2035,2034,3,2366,2370,2369,2050,2058,2057,42,2035,2036,2034,3,2370,2371,2369,2058,2059,2057,42,2035,2037,2036,3,2370,2372,2371,2058,2060,2059,42,2037,2038,2036,3,2372,2373,2371,2060,2061,2059,42,2033,2034,2039,3,2374,2375,2376,2056,2057,2062,42,2039,2034,2040,3,2376,2375,2377,2062,2057,2063,42,2040,2034,2041,3,2377,2375,2378,2063,2057,2064,42,2040,2041,2042,3,2377,2378,2379,2063,2064,2065,42,2040,2042,2043,3,2377,2379,2380,2063,2065,2066,42,2043,2042,2044,3,2381,2382,2383,2066,2065,2067,42,2042,2045,2044,3,2382,2384,2383,2065,2068,2067,42,2042,2046,2045,3,2382,2385,2384,2065,2069,2068,42,2045,2046,2047,3,2384,2385,2386,2068,2069,2070,42,2045,2047,2048,3,2384,2386,2387,2068,2070,2071,42,2044,2045,2048,3,2383,2384,2387,2067,2068,2071,42,2044,2048,2049,3,2383,2387,2388,2067,2071,2072,42,2044,2049,2050,3,2383,2388,2389,2067,2072,2073,42,2050,2049,2051,3,2389,2388,2390,2073,2072,2074,42,2049,2052,2051,3,2391,2392,2393,2072,2075,2074,42,2049,2053,2052,3,2391,2394,2392,2072,2076,2075,42,2054,2053,2049,3,2395,2394,2391,2077,2076,2072,42,2054,2055,2053,3,2395,2396,2394,2077,2078,2076,42,2054,2056,2055,3,2395,2397,2396,2077,2079,2078,42,2053,2057,2052,3,2394,2398,2392,2076,2080,2075,42,2053,2058,2057,3,2394,2399,2398,2076,2081,2080,42,2059,2058,2053,3,2400,2399,2394,2082,2081,2076,42,2059,2060,2058,3,2400,2401,2399,2082,2083,2081,42,2061,2060,2059,3,2402,2401,2400,2084,2083,2082,42,2061,2062,2060,3,2402,2403,2401,2084,2085,2083,42,2063,2062,2061,3,2404,2403,2402,2086,2085,2084,42,2058,2064,2057,3,2405,2406,2407,2081,2087,2080,42,2058,2065,2064,3,2405,2408,2406,2081,2088,2087,42,2066,2065,2058,3,2409,2408,2405,2089,2088,2081,42,2066,2067,2065,3,2409,2410,2408,2089,2090,2088,42,2068,2067,2066,3,2411,2410,2409,2091,2090,2089,42,2064,2065,2069,3,2406,2408,2412,2087,2088,2092,42,2065,2070,2069,3,2408,2413,2412,2088,2093,2092,42,2071,2070,2065,3,2410,2413,2408,2094,2093,2088,42,2071,2072,2070,3,2410,2414,2413,2094,2095,2093,42,2073,2072,2071,3,2415,2414,2410,2096,2095,2094,42,2072,2073,2074,3,2414,2415,2416,2095,2096,2097,42,2075,2072,2074,3,2417,2414,2416,2098,2095,2097,42,2070,2072,2075,3,2413,2414,2417,2093,2095,2098,42,2076,2070,2075,3,2418,2413,2417,2099,2093,2098,42,2069,2070,2076,3,2412,2413,2418,2092,2093,2099,42,2077,2069,2076,3,2419,2412,2418,2100,2092,2099,42,2077,2078,2069,3,2419,2420,2412,2100,2101,2092,42,2079,2078,2077,3,2421,2420,2419,2102,2101,2100,42,2079,2080,2078,3,2422,2423,2424,2102,2103,2101,42,2081,2080,2079,3,2425,2423,2422,2104,2103,2102,42,2081,2082,2080,3,2425,2426,2423,2104,2105,2103,42,2081,2083,2082,3,2427,2428,2429,2104,2106,2105,42,2084,2083,2081,3,2430,2428,2427,2107,2106,2104,42,2085,2083,2084,3,2431,2432,2433,2108,2106,2107,42,2085,2086,2083,3,2431,2434,2432,2108,2109,2106,42,2085,2087,2086,3,2435,2436,2437,2108,2110,2109,42,2088,2087,2085,3,2438,2436,2435,2111,2110,2108,42,2088,2089,2087,3,2438,2439,2436,2111,2112,2110,42,2090,2089,2088,3,2440,2439,2438,2113,2112,2111,42,2090,2091,2089,3,2441,2442,2443,2113,2114,2112,42,1953,2091,2090,3,2444,2442,2441,1976,2114,2113,42,1953,2092,2091,3,2444,2445,2442,1976,2115,2114,42,1954,2092,1953,3,2446,2445,2444,1977,2115,1976,42,1955,2092,1954,3,2447,2448,2449,1978,2115,1977,42,1955,2093,2092,3,2447,2450,2448,1978,2116,2115,42,1977,2093,1955,3,2451,2450,2447,2000,2116,1978,42,1977,1989,2093,3,2451,2311,2450,2000,2012,2116,42,1977,1978,1989,3,2451,2310,2311,2000,2001,2012,42,2093,1989,2094,3,2452,2453,2454,2116,2012,2117,42,1989,2095,2094,3,2453,2455,2454,2012,2118,2117,42,1989,2096,2095,3,2453,2456,2455,2012,2119,2118,42,1989,1990,2096,3,2453,2313,2456,2012,2013,2119,42,2096,1990,1991,3,2456,2313,2315,2119,2013,2014,42,2096,1991,2002,3,2456,2315,2328,2119,2014,2025,42,1991,1996,2002,3,2315,2322,2328,2014,2019,2025,42,2096,2002,2004,3,2456,2328,2330,2119,2025,2027,42,2096,2004,2097,3,2456,2330,2457,2119,2027,2120,42,2097,2004,2005,3,2458,2330,2331,2120,2027,2028,42,2097,2005,2098,3,2459,2346,2460,2120,2028,2121,42,2098,2005,2014,3,2460,2346,2345,2121,2028,2037,42,2098,2014,2099,3,2460,2345,2461,2121,2037,2122,42,2099,2014,2100,3,2461,2345,2462,2122,2037,2123,42,2014,2026,2100,3,2345,2358,2462,2037,2049,2123,42,2015,2026,2014,3,2347,2358,2345,2038,2049,2037,42,2026,2032,2100,3,2358,2365,2462,2049,2055,2123,42,2099,2100,2032,3,2461,2462,2365,2122,2123,2055,42,2099,2032,2101,3,2461,2365,2463,2122,2055,2124,42,2101,2032,2102,3,2464,2368,2465,2124,2055,2125,42,2032,2033,2102,3,2368,2367,2465,2055,2056,2125,42,2033,2103,2102,3,2374,2466,2467,2056,2126,2125,42,2103,2033,2039,3,2466,2374,2376,2126,2056,2062,42,2039,2104,2103,3,2376,2468,2466,2062,2127,2126,42,2039,2043,2104,3,2376,2380,2468,2062,2066,2127,42,2039,2040,2043,3,2376,2377,2380,2062,2063,2066,42,2043,2050,2104,3,2381,2389,2469,2066,2073,2127,42,2043,2044,2050,3,2381,2383,2389,2066,2067,2073,42,2105,2104,2050,3,2470,2469,2389,2128,2127,2073,42,2104,2105,2106,3,2469,2470,2471,2127,2128,2129,42,2107,2106,2105,3,2472,2471,2470,2130,2129,2128,42,2108,2106,2107,3,2473,2474,2475,2131,2129,2130,42,2108,2101,2106,3,2473,2464,2474,2131,2124,2129,42,2108,2099,2101,3,2476,2461,2463,2131,2122,2124,42,2109,2099,2108,3,2477,2461,2476,2132,2122,2131,42,2110,2099,2109,3,2478,2461,2477,2133,2122,2132,42,2110,2098,2099,3,2478,2460,2461,2133,2121,2122,42,2110,2097,2098,3,2479,2459,2460,2133,2120,2121,42,2110,2095,2097,3,2480,2455,2457,2133,2118,2120,42,2094,2095,2110,3,2454,2455,2480,2117,2118,2133,42,2089,2094,2110,3,2443,2454,2480,2112,2117,2133,42,2091,2094,2089,3,2442,2454,2443,2114,2117,2112,42,2093,2094,2091,3,2452,2454,2442,2116,2117,2114,42,2092,2093,2091,3,2445,2452,2442,2115,2116,2114,42,2089,2110,2087,3,2439,2478,2436,2112,2133,2110,42,2087,2110,2109,3,2436,2478,2477,2110,2133,2132,42,2087,2109,2086,3,2436,2477,2437,2110,2132,2109,42,2086,2109,2108,3,2437,2477,2476,2109,2132,2131,42,2086,2108,2107,3,2434,2473,2475,2109,2131,2130,42,2086,2107,2083,3,2434,2475,2432,2109,2130,2106,42,2083,2107,2111,3,2428,2472,2481,2106,2130,2134,42,2107,2105,2111,3,2472,2470,2481,2130,2128,2134,42,2111,2105,2051,3,2481,2470,2390,2134,2128,2074,42,2050,2051,2105,3,2389,2390,2470,2073,2074,2128,42,2111,2051,2112,3,2481,2390,2482,2134,2074,2135,42,2112,2051,2113,3,2483,2393,2484,2135,2074,2136,42,2113,2051,2052,3,2484,2393,2392,2136,2074,2075,42,2113,2052,2078,3,2484,2392,2424,2136,2075,2101,42,2078,2052,2057,3,2424,2392,2398,2101,2075,2080,42,2078,2057,2064,3,2420,2407,2406,2101,2080,2087,42,2078,2064,2069,3,2420,2406,2412,2101,2087,2092,42,2080,2113,2078,3,2423,2484,2424,2103,2136,2101,42,2080,2112,2113,3,2423,2483,2484,2103,2135,2136,42,2082,2112,2080,3,2426,2483,2423,2105,2135,2103,42,2111,2112,2082,3,2481,2482,2429,2134,2135,2105,42,2083,2111,2082,3,2428,2481,2429,2106,2134,2105,42,2095,2096,2097,3,2455,2456,2457,2118,2119,2120,42,2101,2102,2106,3,2464,2465,2474,2124,2125,2129,42,2106,2102,2103,3,2485,2467,2466,2129,2125,2126,42,2103,2104,2106,3,2466,2468,2485,2126,2127,2129,42,1956,1977,1955,3,2486,2296,2487,1979,2000,1978,42,1957,1977,1956,3,2295,2296,2486,1980,2000,1979,42,2114,1953,2090,3,2488,2489,2490,2137,1976,2113,42,1952,1953,2114,3,2491,2489,2488,1975,1976,2137,42,2115,1952,2114,3,2492,2491,2488,2138,1975,2137,42,2116,1952,2115,3,2493,2491,2492,2139,1975,2138,42,1951,1952,2116,3,2260,2262,2494,1974,1975,2139,42,1950,1951,2116,3,2257,2260,2494,1973,1974,2139,42,1950,2116,2117,3,2257,2494,2495,1973,2139,2140,42,2116,2118,2117,3,2493,2496,2497,2139,2141,2140,42,2116,2115,2118,3,2493,2492,2496,2139,2138,2141,42,2115,2119,2118,3,2498,2499,2500,2138,2142,2141,42,2115,2120,2119,3,2501,2502,2503,2138,2143,2142,42,2115,2121,2120,3,2501,2504,2502,2138,2144,2143,42,2115,2114,2121,3,2501,2505,2504,2138,2137,2144,42,2121,2114,2122,3,2504,2505,2506,2144,2137,2145,42,2114,2090,2122,3,2505,2507,2506,2137,2113,2145,42,2122,2090,2088,3,2506,2507,2508,2145,2113,2111,42,2122,2088,2123,3,2509,2510,2511,2145,2111,2146,42,2123,2088,2085,3,2511,2510,2512,2146,2111,2108,42,2123,2085,2124,3,2513,2514,2515,2146,2108,2147,42,2124,2085,2084,3,2515,2514,2516,2147,2108,2107,42,2124,2084,2125,3,2515,2516,2517,2147,2107,2148,42,2125,2084,2081,3,2517,2516,2518,2148,2107,2104,42,2125,2081,2126,3,2519,2520,2521,2148,2104,2149,42,2126,2081,2079,3,2521,2520,2522,2149,2104,2102,42,2081,2079,2127,3,2523,2524,2525,2104,2102,2150,42,2128,2081,2079,3,2526,2527,2528,2151,2104,2102,42,2128,2079,2129,3,2526,2528,2529,2151,2102,2152,42,2130,2128,2129,3,2530,2526,2529,2153,2151,2152,42,2130,2129,2131,3,2530,2529,2531,2153,2152,2154,42,2132,2130,2131,3,2532,2530,2531,2155,2153,2154,42,2132,2131,2133,3,2532,2531,2533,2155,2154,2156,42,2134,2081,2127,3,2534,2523,2525,2157,2104,2150,42,2135,2134,2127,3,2535,2534,2525,2158,2157,2150,42,2136,2134,2135,3,2536,2534,2535,2159,2157,2158,42,2137,2136,2135,3,2532,2536,2535,2160,2159,2158,42,2138,2136,2137,3,2537,2536,2532,2161,2159,2160,42,2138,2137,2139,3,2537,2532,2538,2161,2160,2162,42,2126,2079,2140,3,2521,2522,2539,2149,2102,2163,42,2140,2079,2141,3,2540,2541,2542,2163,2102,2164,42,2079,2142,2141,3,2541,2543,2542,2102,2165,2164,42,2079,2077,2142,3,2421,2419,2544,2102,2100,2165,42,2077,2076,2142,3,2419,2418,2544,2100,2099,2165,42,2142,2076,2143,3,2543,2545,2546,2165,2099,2166,42,2076,2075,2143,3,2545,2547,2546,2099,2098,2166,42,2075,2144,2143,3,2547,2548,2546,2098,2167,2166,42,2145,2144,2075,3,2549,2548,2547,2168,2167,2098,42,2145,2146,2144,3,2549,2550,2548,2168,2169,2167,42,2147,2146,2145,3,2551,2550,2549,2170,2169,2168,42,2146,2148,2144,3,2550,2552,2548,2169,2171,2167,42,2146,2149,2148,3,2550,2553,2552,2169,2172,2171,42,2150,2149,2146,3,2554,2553,2550,2173,2172,2169,42,2149,2150,2151,3,2553,2554,2555,2172,2173,2174,42,2152,2149,2151,3,2556,2553,2555,2175,2172,2174,42,2148,2149,2152,3,2552,2553,2556,2171,2172,2175,42,2153,2148,2152,3,2557,2552,2556,2176,2171,2175,42,2154,2148,2153,3,2558,2552,2557,2177,2171,2176,42,2144,2148,2154,3,2548,2552,2558,2167,2171,2177,42,2143,2144,2154,3,2546,2548,2558,2166,2167,2177,42,2142,2143,2154,3,2543,2546,2558,2165,2166,2177,42,2141,2142,2154,3,2542,2543,2558,2164,2165,2177,42,2141,2154,2153,3,2542,2558,2557,2164,2177,2176,42,2141,2153,2140,3,2542,2557,2540,2164,2176,2163,42,2140,2153,2155,3,2559,2560,2561,2163,2176,2178,42,2155,2153,2152,3,2561,2560,2562,2178,2176,2175,42,2155,2152,2156,3,2561,2562,2563,2178,2175,2179,42,2152,2151,2156,3,2562,2564,2563,2175,2174,2179,42,2156,2151,2157,3,2563,2564,2565,2179,2174,2180,42,2151,2158,2157,3,2564,2566,2565,2174,2181,2180,42,2159,2155,2156,3,2567,2568,2569,2182,2178,2179,42,2160,2155,2159,3,2570,2568,2567,2183,2178,2182,42,2160,2140,2155,3,2570,2539,2568,2183,2163,2178,42,2160,2126,2140,3,2570,2521,2539,2183,2149,2163,42,2160,2125,2126,3,2570,2519,2521,2183,2148,2149,42,2161,2125,2160,3,2571,2519,2570,2184,2148,2183,42,2162,2125,2161,3,2572,2573,2574,2185,2148,2184,42,2163,2125,2162,3,2575,2517,2576,2186,2148,2185,42,2163,2124,2125,3,2575,2515,2517,2186,2147,2148,42,2164,2124,2163,3,2577,2515,2575,2187,2147,2186,42,2164,2123,2124,3,2577,2513,2515,2187,2146,2147,42,2164,2122,2123,3,2578,2509,2511,2187,2145,2146,42,2121,2122,2164,3,2579,2509,2578,2144,2145,2187,42,2121,2164,2165,3,2579,2578,2580,2144,2187,2188,42,2164,2163,2165,3,2577,2575,2581,2187,2186,2188,42,2163,2166,2165,3,2575,2582,2581,2186,2189,2188,42,2163,2167,2166,3,2575,2583,2582,2186,2190,2189,42,2163,2162,2167,3,2575,2576,2583,2186,2185,2190,42,2167,2162,2161,3,2584,2572,2574,2190,2185,2184,42,2161,2168,2167,3,2574,2585,2584,2184,2191,2190,42,2168,2161,2159,3,2586,2571,2567,2191,2184,2182,42,2161,2160,2159,3,2571,2570,2567,2184,2183,2182,42,2159,2169,2168,3,2567,2587,2586,2182,2192,2191,42,2159,2156,2169,3,2567,2569,2587,2182,2179,2192,42,2169,2156,2170,3,2587,2569,2588,2192,2179,2193,42,2169,2170,2171,3,2587,2588,2589,2192,2193,2194,42,2170,2172,2171,3,2588,2590,2589,2193,2195,2194,42,2173,2171,2172,3,2591,2589,2590,2196,2194,2195,42,2174,2171,2173,3,2592,2589,2591,2197,2194,2196,42,2169,2171,2174,3,2587,2589,2592,2192,2194,2197,42,2168,2169,2174,3,2586,2587,2592,2191,2192,2197,42,2168,2174,2175,3,2585,2593,2594,2191,2197,2198,42,2174,2176,2175,3,2593,2595,2594,2197,2199,2198,42,2174,2177,2176,3,2593,2596,2595,2197,2200,2199,42,2177,2178,2176,3,2596,2597,2595,2200,2201,2199,42,2179,2175,2176,3,2598,2599,2600,2202,2198,2199,42,2166,2175,2179,3,2582,2599,2598,2189,2198,2202,42,2166,2167,2175,3,2582,2583,2599,2189,2190,2198,42,2167,2168,2175,3,2584,2585,2594,2190,2191,2198,42,2165,2166,2179,3,2581,2582,2598,2188,2189,2202,42,2165,2179,2180,3,2581,2598,2601,2188,2202,2203,42,2180,2179,2181,3,2601,2598,2602,2203,2202,2204,42,2179,2176,2181,3,2598,2600,2602,2202,2199,2204,42,2176,2182,2181,3,2600,2603,2602,2199,2205,2204,42,2183,2181,2182,3,2604,2602,2603,2206,2204,2205,42,2180,2181,2183,3,2601,2602,2604,2203,2204,2206,42,2184,2180,2183,3,2605,2606,2607,2207,2203,2206,42,2165,2180,2184,3,2580,2606,2605,2188,2203,2207,42,2120,2165,2184,3,2608,2580,2605,2143,2188,2207,42,2121,2165,2120,3,2579,2580,2608,2144,2188,2143,42,2120,2184,2185,3,2502,2609,2610,2143,2207,2208,42,2184,2186,2185,3,2609,2611,2610,2207,2209,2208,42,2184,2187,2186,3,2609,2612,2611,2207,2210,2209,42,2187,2188,2186,3,2612,2613,2611,2210,2211,2209,42,2187,2189,2188,3,2612,2614,2613,2210,2212,2211,42,2189,2190,2188,3,2614,2615,2613,2212,2213,2211,42,2119,2120,2185,3,2503,2502,2610,2142,2143,2208,42,2119,2185,2191,3,2503,2610,2616,2142,2208,2214,42,2191,2185,2192,3,2616,2610,2617,2214,2208,2215,42,2185,2193,2192,3,2610,2618,2617,2208,2216,2215,42,2192,2193,2194,3,2617,2618,2619,2215,2216,2217,42,2119,2191,2118,3,2499,2620,2500,2142,2214,2141,42,2118,2191,2195,3,2500,2620,2621,2141,2214,2218,42,2195,2191,2196,3,2621,2620,2622,2218,2214,2219,42,2191,2197,2196,3,2620,2623,2622,2214,2220,2219,42,2198,2196,2197,3,2624,2622,2623,2221,2219,2220,42,2117,2118,2195,3,2497,2496,2625,2140,2141,2218,42,2199,2117,2195,3,2626,2497,2625,2222,2140,2218,42,1949,2117,2199,3,2256,2495,2627,1972,2140,2222,42,1949,1950,2117,3,2256,2257,2495,1972,1973,2140,42,1949,2199,2200,3,2256,2627,2628,1972,2222,2223,42,2201,1949,2200,3,2629,2256,2628,2224,1972,2223,42,1948,1949,2201,3,2254,2256,2629,1971,1972,2224,42,1948,2201,2202,3,2254,2629,2630,1971,2224,2225,42,2202,2201,2203,3,2630,2629,2631,2225,2224,2226,42,2203,2201,2204,3,2631,2629,2632,2226,2224,2227,42,2201,2200,2204,3,2629,2628,2632,2224,2223,2227,42,2205,2203,2204,3,2633,2631,2632,2228,2226,2227,42,2202,2203,2205,3,2630,2631,2633,2225,2226,2228,42,2199,2195,2206,3,2626,2625,2634,2222,2218,2229,42,2207,2199,2206,3,2635,2626,2634,2230,2222,2229,42,2207,2206,2208,3,2635,2634,2636,2230,2229,2231,42,2209,2207,2208,3,2637,2635,2636,2232,2230,2231,42,2210,2209,2208,3,2638,2637,2636,2233,2232,2231,42,2184,2183,2211,3,2605,2607,2639,2207,2206,2234,42,2183,2212,2211,3,2607,2640,2639,2206,2235,2234,42,1947,1948,2213,3,2252,2253,2641,1970,1971,2236,42,2214,1947,2213,3,2642,2252,2641,2237,1970,2236,42,2215,1947,2214,3,2643,2252,2642,2238,1970,2237,42,1947,2215,1946,3,2252,2643,2251,1970,2238,1969,42,2216,2215,2214,3,2644,2643,2642,2239,2238,2237,42,2216,2214,2213,3,2644,2642,2641,2239,2237,2236,42,2217,2218,2219,3,2645,2646,2647,2240,2241,2242,42,2218,2217,2220,3,2646,2645,2648,2241,2240,2243,42,2220,2217,2221,3,2648,2645,2649,2243,2240,2244,42,2217,2222,2221,3,2645,2650,2649,2240,2245,2244,42,2222,2217,2223,3,2650,2645,2651,2245,2240,2246,42,2223,2217,2219,3,2651,2645,2647,2246,2240,2242,42,2224,2222,2223,3,2652,2650,2651,2247,2245,2246,42,2222,2224,2225,3,2650,2652,2653,2245,2247,2248,42,2221,2222,2225,3,2649,2650,2653,2244,2245,2248,42,2226,2218,2220,3,2654,2646,2648,2249,2241,2243,42,2218,2226,2227,3,2646,2654,2655,2241,2249,2250,42,2226,2228,2227,3,2654,2656,2655,2249,2251,2250,42,2227,2228,2229,3,2655,2656,2657,2250,2251,2252,42,2228,2230,2229,3,2656,2658,2657,2251,2253,2252,42,2229,2230,2231,3,2657,2658,2659,2252,2253,2254,42,2231,2230,2232,3,2660,2661,2662,2254,2253,2255,42,2231,2232,2233,3,2660,2662,2663,2254,2255,2256,42,2233,2232,2234,3,2663,2662,2664,2256,2255,2257,42,2232,2235,2234,3,2662,2665,2664,2255,2258,2257,42,2232,2236,2235,3,2662,2666,2665,2255,2259,2258,42,2236,2237,2235,3,2667,2668,2669,2259,2260,2258,42,2236,2238,2237,3,2670,2671,2672,2259,2261,2260,42,2236,2239,2238,3,2670,2673,2671,2259,2262,2261,42,2238,2240,2237,3,2671,2674,2672,2261,2263,2260,42,2237,2240,2241,3,2672,2674,2675,2260,2263,2264,42,2241,2240,2242,3,2675,2674,2676,2264,2263,2265,42,2240,2243,2242,3,2674,2677,2676,2263,2266,2265,42,2243,2244,2242,3,2677,2678,2676,2266,2267,2265,42,2241,2242,2245,3,2679,2677,2676,2264,2265,2268,42,2245,2242,2246,3,2676,2677,2680,2268,2265,2269,42,2246,2242,2247,3,2680,2677,2681,2269,2265,2270,42,2247,2248,2246,3,2681,2678,2680,2270,2271,2269,42,2237,2241,2249,3,2668,2682,2683,2260,2264,2272,42,2237,2249,2235,3,2668,2683,2669,2260,2272,2258,42,2250,2235,2249,3,2684,2669,2683,2273,2258,2272,42,2234,2235,2250,3,2664,2665,2685,2257,2258,2273,42,2251,2234,2250,3,2686,2664,2685,2274,2257,2273,42,2233,2234,2251,3,2663,2664,2686,2256,2257,2274,42,2252,2251,2250,3,2687,2686,2685,2275,2274,2273,42,2252,2250,2253,3,2687,2685,2688,2275,2273,2276,42,2252,2253,2254,3,2687,2688,2689,2275,2276,2277,42,2255,2231,2233,3,2690,2660,2663,2278,2254,2256,42,2255,2233,2256,3,2690,2663,2686,2278,2256,2279,42,2257,2255,2256,3,2691,2690,2686,2280,2278,2279,42,2257,2256,2258,3,2691,2686,2687,2280,2279,2281,42,2259,2257,2258,3,2692,2691,2687,2282,2280,2281,42,2260,2229,2231,3,2693,2657,2659,2283,2252,2254,42,2227,2229,2260,3,2655,2657,2693,2250,2252,2283,42,2261,2227,2260,3,2694,2655,2693,2284,2250,2283,42,2261,2260,2262,3,2694,2693,2695,2284,2283,2285,42,2262,2260,2263,3,2695,2693,2696,2285,2283,2286,42,2260,2231,2263,3,2693,2659,2696,2283,2254,2286,42,2264,2262,2263,3,2697,2695,2696,2287,2285,2286,42,2265,2262,2264,3,2698,2695,2697,2288,2285,2287,42,2265,2266,2262,3,2698,2699,2695,2288,2289,2285,42,2266,2261,2262,3,2699,2694,2695,2289,2284,2285,42,2218,2227,2219,3,2646,2655,2647,2241,2250,2242,42,2267,2226,2220,3,2700,2701,2702,2290,2249,2243,42,2226,2267,2268,3,2701,2700,2703,2249,2290,2291,42,2268,2267,2269,3,2703,2700,2704,2291,2290,2292,42,2267,2270,2269,3,2700,2705,2704,2290,2293,2292,42,2270,2267,2220,3,2705,2700,2702,2293,2290,2243,42,2270,2220,2271,3,2705,2702,2706,2293,2243,2294,42,2272,2270,2271,3,2707,2705,2706,2295,2293,2294,42,2270,2272,2273,3,2705,2707,2708,2293,2295,2296,42,2273,2272,2274,3,2708,2707,2709,2296,2295,2297,42,2274,2272,2275,3,2709,2707,2710,2297,2295,2298,42,2272,2271,2275,3,2707,2706,2710,2295,2294,2298,42,2269,2270,2273,3,2704,2705,2708,2292,2293,2296,42,2268,2269,2276,3,2703,2711,2712,2291,2292,2299,42,2276,2269,2277,3,2712,2711,2713,2299,2292,2300,42,2269,2278,2277,3,2711,2714,2713,2292,2301,2300,42,2278,2279,2277,3,2714,2715,2713,2301,2302,2300,42,2277,2279,2280,3,2713,2715,2716,2300,2302,2303,42,2281,2277,2280,3,2717,2713,2716,2304,2300,2303,42,2281,2276,2277,3,2717,2712,2713,2304,2299,2300,42,2282,2276,2281,3,2718,2712,2717,2305,2299,2304,42,2283,2276,2282,3,2719,2712,2718,2306,2299,2305,42,2283,2268,2276,3,2719,2703,2712,2306,2291,2299,42,2284,2268,2283,3,2720,2703,2719,2307,2291,2306,42,2226,2268,2284,3,2701,2703,2720,2249,2291,2307,42,2284,2283,2285,3,2720,2719,2721,2307,2306,2308,42,2285,2283,2282,3,2721,2719,2718,2308,2306,2305,42,2286,2285,2282,3,2662,2661,2660,2309,2308,2305,42,2286,2282,2287,3,2662,2660,2663,2309,2305,2310,42,2282,2288,2287,3,2660,2690,2663,2305,2311,2310,42,2287,2288,2289,3,2663,2690,2686,2310,2311,2312,42,2288,2290,2289,3,2690,2691,2686,2311,2313,2312,42,2289,2290,2291,3,2686,2691,2687,2312,2313,2314,42,2290,2292,2291,3,2691,2692,2687,2313,2315,2314,42,2286,2287,2293,3,2662,2663,2664,2309,2310,2316,42,2293,2287,2294,3,2664,2663,2686,2316,2310,2317,42,2293,2294,2295,3,2664,2686,2685,2316,2317,2318,42,2294,2296,2295,3,2686,2687,2685,2317,2319,2318,42,2295,2296,2297,3,2685,2687,2688,2318,2319,2320,42,2296,2298,2297,3,2687,2689,2688,2319,2321,2320,42,2299,2293,2295,3,2665,2664,2685,2322,2316,2318,42,2286,2293,2299,3,2662,2664,2665,2309,2316,2322,42,2300,2286,2299,3,2666,2662,2665,2323,2309,2322,42,2299,2301,2300,3,2669,2668,2667,2322,2324,2323,42,2299,2302,2301,3,2669,2722,2668,2322,2325,2324,42,2295,2302,2299,3,2684,2722,2669,2318,2325,2322,42,2301,2302,2303,3,2668,2722,2682,2324,2325,2326,42,2301,2303,2304,3,2672,2675,2723,2324,2326,2327,42,2303,2305,2304,3,2675,2676,2723,2326,2328,2327,42,2303,2306,2305,3,2679,2676,2677,2326,2329,2328,42,2306,2307,2305,3,2676,2680,2677,2329,2330,2328,42,2307,2308,2305,3,2680,2681,2677,2330,2331,2328,42,2307,2309,2308,3,2680,2678,2681,2330,2332,2331,42,2305,2310,2304,3,2676,2724,2723,2328,2333,2327,42,2305,2311,2310,3,2676,2678,2724,2328,2334,2333,42,2301,2304,2312,3,2672,2723,2671,2324,2327,2335,42,2301,2312,2300,3,2672,2671,2670,2324,2335,2323,42,2300,2312,2313,3,2670,2671,2673,2323,2335,2336,42,2314,2315,2316,0,2725,2726,2727,2337,2338,2339,42,2314,2317,2315,0,2725,2728,2726,2337,2340,2338,42,2317,2314,2318,0,2729,2730,2731,2340,2337,2341,42,2318,2319,2317,0,2731,2732,2729,2341,2342,2340,42,2320,2319,2318,0,2733,2732,2731,2343,2342,2341,42,2320,2321,2319,0,2733,2734,2732,2343,2344,2342,42,2320,2322,2321,0,2733,2735,2734,2343,2345,2344,42,2322,2320,2323,0,2735,2733,2736,2345,2343,2346,42,2323,2320,2324,0,2736,2733,2737,2346,2343,2347,42,2320,2314,2324,0,2733,2730,2737,2343,2337,2347,42,2318,2314,2320,0,2731,2730,2733,2341,2337,2343,42,2324,2314,2325,0,2738,2725,2739,2347,2337,2348,42,2325,2326,2324,0,2739,2740,2738,2348,2349,2347,42,2327,2326,2325,0,2741,2740,2739,2350,2349,2348,42,2326,2327,2328,0,2740,2741,2742,2349,2350,2351,42,2328,2327,2329,0,2742,2741,2743,2351,2350,2352,42,2329,2327,2330,0,2743,2741,2744,2352,2350,2353,42,2327,2331,2330,0,2741,2745,2744,2350,2354,2353,42,2327,2325,2331,0,2741,2739,2745,2350,2348,2354,42,2325,2316,2331,0,2739,2727,2745,2348,2339,2354,42,2325,2314,2316,0,2739,2725,2727,2348,2337,2339,42,2331,2316,2315,0,2745,2727,2726,2354,2339,2338,42,2331,2315,2332,0,2745,2726,2746,2354,2338,2355,42,2332,2315,2317,0,2746,2726,2728,2355,2338,2340,42,2332,2317,2321,0,2747,2729,2734,2355,2340,2344,42,2321,2317,2319,0,2734,2729,2732,2344,2340,2342,42,2333,2332,2321,0,2748,2747,2734,2356,2355,2344,42,2330,2332,2333,0,2744,2746,2749,2353,2355,2356,42,2330,2331,2332,0,2744,2745,2746,2353,2354,2355,42,2334,2330,2333,0,2750,2744,2749,2357,2353,2356,42,2334,2329,2330,0,2750,2743,2744,2357,2352,2353,42,2335,2329,2334,0,2751,2743,2750,2358,2352,2357,42,2335,2336,2329,0,2751,2752,2743,2358,2359,2352,42,2337,2336,2335,0,2753,2752,2751,2360,2359,2358,42,2337,2338,2336,0,2753,2754,2752,2360,2361,2359,42,2339,2338,2337,0,2755,2754,2753,2362,2361,2360,42,2339,2340,2338,0,2755,2756,2754,2362,2363,2361,42,2341,2340,2339,0,2757,2756,2755,2364,2363,2362,42,2342,2340,2341,0,2758,2756,2757,2365,2363,2364,42,2342,2343,2340,0,2758,2759,2756,2365,2366,2363,42,2342,2344,2343,0,2758,2760,2759,2365,2367,2366,42,2345,2344,2342,0,2761,2760,2758,2368,2367,2365,42,2346,2344,2345,0,2762,2760,2761,2369,2367,2368,42,2346,2347,2344,0,2762,2763,2760,2369,2370,2367,42,2346,2348,2347,0,2762,2764,2763,2369,2371,2370,42,2346,2349,2348,0,2762,2765,2764,2369,2372,2371,42,2350,2349,2346,0,2766,2765,2762,2373,2372,2369,42,2350,2351,2349,0,2766,2767,2765,2373,2374,2372,42,2351,2352,2349,0,2767,2768,2765,2374,2375,2372,42,2353,2352,2351,0,2769,2768,2767,2376,2375,2374,42,2353,2354,2352,0,2769,2770,2768,2376,2377,2375,42,2355,2354,2353,0,2771,2770,2769,2378,2377,2376,42,2355,2356,2354,0,2771,2772,2770,2378,2379,2377,42,2355,2357,2356,0,2771,2773,2772,2378,2380,2379,42,2357,2358,2356,0,2773,2774,2772,2380,2381,2379,42,2356,2358,2359,0,2772,2774,2775,2379,2381,2382,42,2360,2359,2358,0,2776,2775,2774,2383,2382,2381,42,2360,2361,2359,0,2776,2777,2775,2383,2384,2382,42,2360,2362,2361,0,2776,2778,2777,2383,2385,2384,42,2362,2363,2361,0,2778,2779,2777,2385,2386,2384,42,2364,2363,2362,0,2780,2781,2782,2387,2386,2385,42,2364,2341,2363,0,2780,2757,2781,2387,2364,2386,42,2365,2341,2364,0,2783,2757,2780,2388,2364,2387,42,2365,2342,2341,0,2783,2758,2757,2388,2365,2364,42,2345,2342,2365,0,2761,2758,2783,2368,2365,2388,42,2365,2366,2345,0,2783,2784,2761,2388,2389,2368,42,2350,2345,2366,0,2766,2761,2784,2373,2368,2389,42,2350,2346,2345,0,2766,2762,2761,2373,2369,2368,42,2363,2341,2339,0,2781,2757,2755,2386,2364,2362,42,2363,2339,2367,0,2779,2785,2786,2386,2362,2390,42,2339,2337,2367,0,2785,2787,2786,2362,2360,2390,42,2367,2337,2368,0,2786,2787,2788,2390,2360,2391,42,2368,2337,2335,0,2788,2787,2789,2391,2360,2358,42,2368,2335,2369,0,2788,2789,2790,2391,2358,2392,42,2369,2335,2334,0,2790,2789,2791,2392,2358,2357,42,2369,2334,2370,0,2790,2791,2792,2392,2357,2393,42,2334,2333,2370,0,2791,2748,2792,2357,2356,2393,42,2370,2333,2322,0,2792,2748,2735,2393,2356,2345,42,2333,2321,2322,0,2748,2734,2735,2356,2344,2345,42,2370,2322,2371,0,2792,2735,2793,2393,2345,2394,42,2371,2322,2323,0,2793,2735,2736,2394,2345,2346,42,2371,2323,2326,0,2793,2736,2794,2394,2346,2349,42,2323,2324,2326,0,2736,2737,2794,2346,2347,2349,42,2371,2326,2372,0,2793,2794,2795,2394,2349,2395,42,2328,2372,2326,0,2742,2796,2740,2351,2395,2349,42,2328,2373,2372,0,2742,2797,2796,2351,2396,2395,42,2328,2374,2373,0,2742,2798,2797,2351,2397,2396,42,2375,2374,2328,0,2799,2798,2742,2398,2397,2351,42,2375,2376,2374,0,2799,2800,2798,2398,2399,2397,42,2377,2376,2375,0,2801,2800,2799,2400,2399,2398,42,2377,2378,2376,0,2801,2802,2800,2400,2401,2399,42,2379,2378,2377,0,2803,2802,2801,2402,2401,2400,42,2379,2380,2378,0,2803,2804,2802,2402,2403,2401,42,2381,2380,2379,0,2805,2804,2803,2404,2403,2402,42,2381,2382,2380,0,2805,2806,2804,2404,2405,2403,42,2381,2383,2382,0,2805,2807,2806,2404,2406,2405,42,2384,2383,2381,0,2808,2807,2805,2407,2406,2404,42,2384,2385,2383,0,2808,2809,2807,2407,2408,2406,42,2386,2385,2384,0,2810,2809,2808,2409,2408,2407,42,2387,2385,2386,0,2811,2809,2810,2410,2408,2409,42,2387,2388,2385,0,2811,2812,2809,2410,2411,2408,42,2387,2389,2388,0,2811,2813,2812,2410,2412,2411,42,2387,2356,2389,0,2811,2772,2813,2410,2379,2412,42,2354,2356,2387,0,2770,2772,2811,2377,2379,2410,42,2354,2387,2352,0,2770,2811,2768,2377,2410,2375,42,2352,2387,2386,0,2768,2811,2810,2375,2410,2409,42,2349,2352,2386,0,2765,2768,2810,2372,2375,2409,42,2349,2386,2348,0,2765,2810,2764,2372,2409,2371,42,2348,2386,2384,0,2764,2810,2808,2371,2409,2407,42,2348,2384,2390,0,2764,2808,2814,2371,2407,2413,42,2390,2384,2381,0,2814,2808,2805,2413,2407,2404,42,2390,2381,2379,0,2814,2805,2803,2413,2404,2402,42,2390,2379,2391,0,2814,2803,2815,2413,2402,2414,42,2379,2377,2391,0,2803,2801,2815,2402,2400,2414,42,2391,2377,2375,0,2815,2801,2799,2414,2400,2398,42,2391,2375,2392,0,2815,2799,2816,2414,2398,2415,42,2392,2375,2393,0,2816,2799,2817,2415,2398,2416,42,2375,2328,2393,0,2799,2742,2817,2398,2351,2416,42,2393,2328,2329,0,2817,2742,2743,2416,2351,2352,42,2393,2329,2336,0,2817,2743,2752,2416,2352,2359,42,2393,2336,2338,0,2817,2752,2754,2416,2359,2361,42,2392,2393,2338,0,2816,2817,2754,2415,2416,2361,42,2392,2338,2340,0,2816,2754,2756,2415,2361,2363,42,2343,2392,2340,0,2759,2816,2756,2366,2415,2363,42,2344,2392,2343,0,2760,2816,2759,2367,2415,2366,42,2344,2391,2392,0,2760,2815,2816,2367,2414,2415,42,2347,2391,2344,0,2763,2815,2760,2370,2414,2367,42,2347,2390,2391,0,2763,2814,2815,2370,2413,2414,42,2347,2348,2390,0,2763,2764,2814,2370,2371,2413,42,2356,2394,2389,0,2772,2818,2813,2379,2417,2412,42,2356,2359,2394,0,2772,2775,2818,2379,2382,2417,42,2359,2367,2394,0,2775,2786,2818,2382,2390,2417,42,2361,2367,2359,0,2777,2786,2775,2384,2390,2382,42,2363,2367,2361,0,2779,2786,2777,2386,2390,2384,42,2394,2367,2395,0,2818,2786,2819,2417,2390,2418,42,2395,2367,2368,0,2819,2786,2788,2418,2390,2391,42,2395,2368,2396,0,2819,2788,2820,2418,2391,2419,42,2368,2369,2396,0,2788,2790,2820,2391,2392,2419,42,2369,2371,2396,0,2790,2793,2820,2392,2394,2419,42,2369,2370,2371,0,2790,2792,2793,2392,2393,2394,42,2396,2371,2397,0,2820,2793,2821,2419,2394,2420,42,2397,2371,2398,0,2821,2793,2822,2420,2394,2421,42,2371,2372,2398,0,2793,2795,2822,2394,2395,2421,42,2372,2373,2398,0,2795,2823,2822,2395,2396,2421,42,2398,2373,2399,0,2822,2823,2824,2421,2396,2422,42,2373,2400,2399,0,2797,2825,2826,2396,2423,2422,42,2374,2400,2373,0,2798,2825,2797,2397,2423,2396,42,2401,2400,2374,0,2827,2825,2798,2424,2423,2397,42,2401,2402,2400,0,2827,2828,2825,2424,2425,2423,42,2401,2403,2402,0,2827,2829,2828,2424,2426,2425,42,2401,2404,2403,0,2827,2830,2829,2424,2427,2426,42,2376,2404,2401,0,2800,2830,2827,2399,2427,2424,42,2376,2405,2404,0,2800,2831,2830,2399,2428,2427,42,2376,2406,2405,0,2800,2832,2831,2399,2429,2428,42,2407,2406,2376,0,2833,2832,2800,2430,2429,2399,42,2407,2408,2406,0,2833,2834,2832,2430,2431,2429,42,2407,2409,2408,0,2833,2835,2834,2430,2432,2431,42,2407,2410,2409,0,2833,2836,2835,2430,2433,2432,42,2378,2410,2407,0,2802,2836,2833,2401,2433,2430,42,2378,2411,2410,0,2802,2837,2836,2401,2434,2433,42,2378,2412,2411,0,2802,2838,2837,2401,2435,2434,42,2413,2412,2378,0,2839,2838,2802,2436,2435,2401,42,2413,2414,2412,0,2839,2840,2838,2436,2437,2435,42,2413,2415,2414,0,2839,2841,2840,2436,2438,2437,42,2413,2416,2415,0,2839,2842,2841,2436,2439,2438,42,2380,2416,2413,0,2804,2842,2839,2403,2439,2436,42,2380,2417,2416,0,2804,2843,2842,2403,2440,2439,42,2380,2418,2417,0,2804,2844,2843,2403,2441,2440,42,2419,2418,2380,0,2845,2844,2804,2442,2441,2403,42,2419,2420,2418,0,2845,2846,2844,2442,2443,2441,42,2419,2421,2420,0,2845,2847,2846,2442,2444,2443,42,2419,2422,2421,0,2845,2848,2847,2442,2445,2444,42,2382,2422,2419,0,2806,2848,2845,2405,2445,2442,42,2382,2423,2422,0,2806,2849,2848,2405,2446,2445,42,2383,2423,2382,0,2807,2849,2806,2406,2446,2405,42,2424,2423,2383,0,2850,2849,2807,2447,2446,2406,42,2424,2425,2423,0,2850,2851,2849,2447,2448,2446,42,2424,2426,2425,0,2850,2852,2851,2447,2449,2448,42,2388,2426,2424,0,2812,2852,2850,2411,2449,2447,42,2388,2427,2426,0,2812,2853,2852,2411,2450,2449,42,2388,2389,2427,0,2812,2813,2853,2411,2412,2450,42,2389,2394,2427,0,2813,2818,2853,2412,2417,2450,42,2427,2394,2395,0,2853,2818,2819,2450,2417,2418,42,2427,2395,2428,0,2853,2819,2854,2450,2418,2451,42,2395,2396,2428,0,2819,2820,2854,2418,2419,2451,42,2428,2396,2429,0,2854,2820,2855,2451,2419,2452,42,2429,2396,2397,0,2855,2820,2821,2452,2419,2420,42,2429,2397,2430,0,2855,2821,2856,2452,2420,2453,42,2397,2431,2430,0,2821,2857,2856,2420,2454,2453,42,2397,2405,2431,0,2821,2858,2857,2420,2428,2454,42,2397,2432,2404,0,2821,2859,2860,2420,2455,2427,42,2397,2433,2432,0,2821,2861,2859,2420,2456,2455,42,2398,2433,2397,0,2822,2861,2821,2421,2456,2420,42,2398,2399,2433,0,2822,2824,2861,2421,2422,2456,42,2399,2434,2433,0,2824,2862,2861,2422,2457,2456,42,2399,2435,2434,0,2824,2863,2862,2422,2458,2457,42,2399,2400,2435,0,2826,2825,2864,2422,2423,2458,42,2400,2402,2435,0,2825,2828,2864,2423,2425,2458,42,2435,2402,2436,0,2864,2828,2865,2458,2425,2459,42,2437,2436,2402,0,2866,2865,2828,2460,2459,2425,42,2437,2438,2436,0,2866,2867,2865,2460,2461,2459,42,2437,2439,2438,0,2866,2868,2867,2460,2462,2461,42,2437,2440,2439,0,2866,2869,2868,2460,2463,2462,42,2403,2440,2437,0,2829,2869,2866,2426,2463,2460,42,2403,2441,2440,0,2829,2870,2869,2426,2464,2463,42,2404,2441,2403,0,2830,2870,2829,2427,2464,2426,42,2432,2441,2404,0,2859,2871,2860,2455,2464,2427,42,2432,2442,2441,0,2859,2872,2871,2455,2465,2464,42,2433,2442,2432,0,2861,2872,2859,2456,2465,2455,42,2442,2433,2434,0,2872,2861,2862,2465,2456,2457,42,2434,2443,2442,0,2862,2873,2872,2457,2466,2465,42,2434,2444,2443,0,2862,2874,2873,2457,2467,2466,42,2435,2444,2434,0,2863,2874,2862,2458,2467,2457,42,2436,2444,2435,0,2865,2875,2864,2459,2467,2458,42,2436,2445,2444,0,2865,2876,2875,2459,2468,2467,42,2436,2438,2445,0,2865,2867,2876,2459,2461,2468,42,2446,2445,2438,0,2877,2876,2867,2469,2468,2461,42,2446,2447,2445,0,2877,2878,2876,2469,2470,2468,42,2448,2447,2446,0,2879,2878,2877,2471,2470,2469,42,2449,2447,2448,0,2880,2881,2882,2472,2470,2471,42,2449,2450,2447,0,2880,2883,2881,2472,2473,2470,42,2449,2451,2450,0,2880,2884,2883,2472,2474,2473,42,2451,2449,2448,0,2884,2880,2882,2474,2472,2471,42,2452,2451,2448,0,2885,2884,2882,2475,2474,2471,42,2453,2451,2452,0,2886,2884,2885,2476,2474,2475,42,2451,2453,2443,0,2884,2886,2873,2474,2476,2466,42,2442,2443,2453,0,2872,2873,2886,2465,2466,2476,42,2442,2453,2440,0,2872,2886,2887,2465,2476,2463,42,2440,2453,2452,0,2887,2886,2885,2463,2476,2475,42,2440,2452,2439,0,2869,2888,2868,2463,2475,2462,42,2439,2452,2448,0,2868,2888,2879,2462,2475,2471,42,2439,2448,2454,0,2868,2879,2889,2462,2471,2477,42,2454,2448,2446,0,2889,2879,2877,2477,2471,2469,42,2454,2446,2438,0,2889,2877,2867,2477,2469,2461,42,2454,2438,2439,0,2889,2867,2868,2477,2461,2462,42,2442,2440,2441,0,2872,2887,2871,2465,2463,2464,42,2451,2443,2455,0,2884,2873,2890,2474,2466,2478,42,2444,2455,2443,0,2874,2890,2873,2467,2478,2466,42,2444,2445,2455,0,2874,2891,2890,2467,2468,2478,42,2445,2447,2455,0,2891,2881,2890,2468,2470,2478,42,2455,2447,2450,0,2890,2881,2883,2478,2470,2473,42,2455,2450,2451,0,2890,2883,2884,2478,2473,2474,42,2403,2437,2402,0,2829,2866,2828,2426,2460,2425,42,2406,2431,2405,0,2832,2892,2831,2429,2454,2428,42,2406,2456,2431,0,2832,2893,2892,2429,2479,2454,42,2406,2408,2456,0,2832,2834,2893,2429,2431,2479,42,2408,2457,2456,0,2834,2894,2893,2431,2480,2479,42,2458,2457,2408,0,2895,2894,2834,2481,2480,2431,42,2458,2459,2457,0,2895,2896,2894,2481,2482,2480,42,2458,2460,2459,0,2895,2897,2896,2481,2483,2482,42,2458,2461,2460,0,2895,2898,2897,2481,2484,2483,42,2409,2461,2458,0,2835,2898,2895,2432,2484,2481,42,2409,2462,2461,0,2835,2899,2898,2432,2485,2484,42,2410,2462,2409,0,2836,2899,2835,2433,2485,2432,42,2410,2463,2462,0,2900,2901,2902,2433,2486,2485,42,2429,2463,2410,0,2855,2901,2900,2452,2486,2433,42,2429,2430,2463,0,2855,2856,2901,2452,2453,2486,42,2463,2430,2464,0,2901,2856,2903,2486,2453,2487,42,2464,2430,2465,0,2903,2856,2904,2487,2453,2488,42,2431,2465,2430,0,2857,2904,2856,2454,2488,2453,42,2431,2456,2465,0,2857,2905,2904,2454,2479,2488,42,2456,2466,2465,0,2905,2906,2904,2479,2489,2488,42,2457,2466,2456,0,2894,2907,2893,2480,2489,2479,42,2457,2467,2466,0,2894,2908,2907,2480,2490,2489,42,2459,2467,2457,0,2896,2908,2894,2482,2490,2480,42,2468,2467,2459,0,2909,2908,2896,2491,2490,2482,42,2467,2468,2469,0,2908,2909,2910,2490,2491,2492,42,2470,2469,2468,0,2911,2910,2909,2493,2492,2491,42,2471,2469,2470,0,2912,2913,2914,2494,2492,2493,42,2471,2472,2469,0,2912,2915,2913,2494,2495,2492,42,2473,2472,2471,0,2916,2915,2912,2496,2495,2494,42,2473,2474,2472,0,2916,2917,2915,2496,2497,2495,42,2473,2475,2474,0,2916,2918,2917,2496,2498,2497,42,2473,2476,2475,0,2916,2919,2918,2496,2499,2498,42,2477,2476,2473,0,2920,2919,2916,2500,2499,2496,42,2461,2476,2477,0,2921,2919,2920,2484,2499,2500,42,2464,2476,2461,0,2903,2919,2921,2487,2499,2484,42,2464,2475,2476,0,2903,2918,2919,2487,2498,2499,42,2464,2465,2475,0,2903,2904,2918,2487,2488,2498,42,2465,2466,2475,0,2904,2906,2918,2488,2489,2498,42,2466,2474,2475,0,2906,2917,2918,2489,2497,2498,42,2466,2467,2474,0,2906,2922,2917,2489,2490,2497,42,2467,2469,2474,0,2922,2913,2917,2490,2492,2497,42,2474,2469,2472,0,2917,2913,2915,2497,2492,2495,42,2462,2464,2461,0,2902,2903,2921,2485,2487,2484,42,2463,2464,2462,0,2901,2903,2902,2486,2487,2485,42,2460,2461,2477,0,2897,2898,2923,2483,2484,2500,42,2460,2477,2470,0,2897,2923,2911,2483,2500,2493,42,2477,2473,2470,0,2920,2916,2914,2500,2496,2493,42,2473,2471,2470,0,2916,2912,2914,2496,2494,2493,42,2460,2470,2478,0,2897,2911,2924,2483,2493,2501,42,2478,2470,2468,0,2924,2911,2909,2501,2493,2491,42,2459,2478,2468,0,2896,2924,2909,2482,2501,2491,42,2460,2478,2459,0,2897,2924,2896,2483,2501,2482,42,2411,2412,2479,0,2837,2838,2925,2434,2435,2502,42,2412,2480,2479,0,2838,2926,2925,2435,2503,2502,42,2412,2414,2480,0,2838,2840,2926,2435,2437,2503,42,2414,2481,2480,0,2840,2927,2926,2437,2504,2503,42,2482,2481,2414,0,2928,2927,2840,2505,2504,2437,42,2482,2483,2481,0,2928,2929,2927,2505,2506,2504,42,2484,2483,2482,0,2930,2929,2928,2507,2506,2505,42,2484,2485,2483,0,2930,2931,2929,2507,2508,2506,42,2484,2486,2485,0,2930,2932,2931,2507,2509,2508,42,2484,2487,2486,0,2930,2933,2932,2507,2510,2509,42,2484,2488,2487,0,2930,2934,2933,2507,2511,2510,42,2482,2488,2484,0,2928,2934,2930,2505,2511,2507,42,2415,2488,2482,0,2841,2934,2928,2438,2511,2505,42,2415,2489,2488,0,2841,2935,2934,2438,2512,2511,42,2415,2416,2489,0,2841,2842,2935,2438,2439,2512,42,2416,2490,2489,0,2936,2937,2938,2439,2513,2512,42,2491,2490,2416,0,2939,2937,2936,2514,2513,2439,42,2491,2492,2490,0,2939,2940,2937,2514,2515,2513,42,2491,2429,2492,0,2939,2855,2940,2514,2452,2515,42,2491,2428,2429,0,2939,2854,2855,2514,2451,2452,42,2426,2428,2491,0,2852,2854,2939,2449,2451,2514,42,2427,2428,2426,0,2853,2854,2852,2450,2451,2449,42,2425,2426,2491,0,2851,2852,2939,2448,2449,2514,42,2425,2491,2493,0,2851,2939,2941,2448,2514,2516,42,2491,2494,2493,0,2939,2942,2941,2514,2517,2516,42,2491,2417,2494,0,2939,2943,2942,2514,2440,2517,42,2491,2416,2417,0,2939,2936,2943,2514,2439,2440,42,2417,2418,2494,0,2843,2844,2944,2440,2441,2517,42,2418,2495,2494,0,2844,2945,2944,2441,2518,2517,42,2418,2420,2495,0,2844,2846,2945,2441,2443,2518,42,2420,2496,2495,0,2846,2946,2945,2443,2519,2518,42,2420,2497,2496,0,2846,2947,2946,2443,2520,2519,42,2421,2497,2420,0,2847,2947,2846,2444,2520,2443,42,2421,2498,2497,0,2847,2948,2947,2444,2521,2520,42,2421,2499,2498,0,2847,2949,2948,2444,2522,2521,42,2421,2422,2499,0,2847,2848,2949,2444,2445,2522,42,2422,2500,2499,0,2848,2950,2949,2445,2523,2522,42,2422,2425,2500,0,2848,2851,2950,2445,2448,2523,42,2423,2425,2422,0,2849,2851,2848,2446,2448,2445,42,2425,2493,2500,0,2851,2941,2950,2448,2516,2523,42,2500,2493,2501,0,2950,2941,2951,2523,2516,2524,42,2501,2493,2502,0,2951,2941,2952,2524,2516,2525,42,2494,2502,2493,0,2942,2952,2941,2517,2525,2516,42,2494,2495,2502,0,2942,2953,2952,2517,2518,2525,42,2495,2503,2502,0,2953,2954,2952,2518,2526,2525,42,2495,2496,2503,0,2945,2946,2955,2518,2519,2526,42,2496,2504,2503,0,2946,2956,2955,2519,2527,2526,42,2496,2505,2504,0,2946,2957,2956,2519,2528,2527,42,2497,2505,2496,0,2947,2957,2946,2520,2528,2519,42,2497,2506,2505,0,2947,2958,2957,2520,2529,2528,42,2497,2498,2506,0,2947,2948,2958,2520,2521,2529,42,2506,2498,2507,0,2958,2948,2959,2529,2521,2530,42,2498,2508,2507,0,2948,2960,2959,2521,2531,2530,42,2501,2508,2498,0,2951,2960,2948,2524,2531,2521,42,2501,2509,2508,0,2951,2961,2960,2524,2532,2531,42,2501,2502,2509,0,2951,2952,2961,2524,2525,2532,42,2502,2503,2509,0,2952,2954,2961,2525,2526,2532,42,2503,2510,2509,0,2954,2962,2961,2526,2533,2532,42,2503,2504,2510,0,2954,2963,2962,2526,2527,2533,42,2504,2511,2510,0,2963,2964,2962,2527,2534,2533,42,2504,2512,2511,0,2956,2965,2966,2527,2535,2534,42,2505,2512,2504,0,2957,2965,2956,2528,2535,2527,42,2505,2513,2512,0,2957,2967,2965,2528,2536,2535,42,2506,2513,2505,0,2958,2967,2957,2529,2536,2528,42,2506,2514,2513,0,2958,2968,2967,2529,2537,2536,42,2506,2507,2514,0,2958,2959,2968,2529,2530,2537,42,2507,2515,2514,0,2959,2969,2968,2530,2538,2537,42,2507,2508,2515,0,2959,2960,2969,2530,2531,2538,42,2508,2509,2515,0,2960,2961,2969,2531,2532,2538,42,2515,2509,2510,0,2969,2961,2962,2538,2532,2533,42,2515,2510,2516,0,2969,2962,2970,2538,2533,2539,42,2510,2511,2516,0,2962,2964,2970,2533,2534,2539,42,2517,2516,2511,0,2971,2970,2964,2540,2539,2534,42,2515,2516,2517,0,2969,2970,2971,2538,2539,2540,42,2515,2517,2514,0,2969,2971,2968,2538,2540,2537,42,2517,2511,2514,0,2971,2964,2968,2540,2534,2537,42,2514,2511,2512,0,2968,2966,2965,2537,2534,2535,42,2513,2514,2512,0,2967,2968,2965,2536,2537,2535,42,2501,2498,2499,0,2951,2948,2949,2524,2521,2522,42,2499,2500,2501,0,2949,2950,2951,2522,2523,2524,42,2429,2479,2492,0,2855,2972,2940,2452,2502,2515,42,2479,2518,2492,0,2972,2973,2940,2502,2541,2515,42,2479,2480,2518,0,2972,2974,2973,2502,2503,2541,42,2480,2519,2518,0,2974,2975,2973,2503,2542,2541,42,2481,2519,2480,0,2927,2976,2926,2504,2542,2503,42,2481,2520,2519,0,2927,2977,2976,2504,2543,2542,42,2483,2520,2481,0,2929,2977,2927,2506,2543,2504,42,2521,2520,2483,0,2978,2977,2929,2544,2543,2506,42,2521,2522,2520,0,2978,2979,2977,2544,2545,2543,42,2486,2522,2521,0,2932,2979,2978,2509,2545,2544,42,2523,2522,2486,0,2980,2981,2982,2546,2545,2509,42,2523,2524,2522,0,2980,2983,2981,2546,2547,2545,42,2525,2524,2523,0,2984,2983,2980,2548,2547,2546,42,2525,2526,2524,0,2984,2985,2983,2548,2549,2547,42,2525,2527,2526,0,2984,2986,2985,2548,2550,2549,42,2528,2527,2525,0,2987,2986,2984,2551,2550,2548,42,2529,2527,2528,0,2988,2986,2987,2552,2550,2551,42,2529,2518,2527,0,2988,2973,2986,2552,2541,2550,42,2529,2492,2518,0,2988,2940,2973,2552,2515,2541,42,2490,2492,2529,0,2937,2940,2988,2513,2515,2552,42,2490,2529,2489,0,2937,2988,2938,2513,2552,2512,42,2489,2529,2488,0,2938,2988,2989,2512,2552,2511,42,2529,2528,2488,0,2988,2987,2989,2552,2551,2511,42,2488,2528,2487,0,2989,2987,2990,2511,2551,2510,42,2487,2528,2525,0,2990,2987,2984,2510,2551,2548,42,2487,2525,2486,0,2990,2984,2982,2510,2548,2509,42,2525,2523,2486,0,2984,2980,2982,2548,2546,2509,42,2518,2519,2527,0,2973,2975,2986,2541,2542,2550,42,2519,2526,2527,0,2975,2985,2986,2542,2549,2550,42,2519,2520,2526,0,2975,2991,2985,2542,2543,2549,42,2520,2522,2526,0,2991,2981,2985,2543,2545,2549,42,2526,2522,2524,0,2985,2981,2983,2549,2545,2547,42,2486,2521,2485,0,2932,2978,2931,2509,2544,2508,42,2483,2485,2521,0,2929,2931,2978,2506,2508,2544,42,2415,2482,2414,0,2841,2928,2840,2438,2505,2437,42,2409,2458,2408,0,2835,2895,2834,2432,2481,2431,42,2388,2424,2383,0,2812,2850,2807,2411,2447,2406,42,2388,2383,2385,0,2812,2807,2809,2411,2406,2408,42,2382,2419,2380,0,2806,2845,2804,2405,2442,2403,42,2380,2413,2378,0,2804,2839,2802,2403,2436,2401,42,2378,2407,2376,0,2802,2833,2800,2401,2430,2399,42,2374,2376,2401,0,2798,2800,2827,2397,2399,2424,42,2397,2404,2405,4,2992,2993,2994,2420,2427,2428,42,2429,2410,2411,4,2995,2996,2997,2452,2433,2434,42,2429,2411,2479,4,2998,2999,3000,2452,2434,2502,42,2530,2531,2532,0,3001,3002,3003,2553,2554,2555,42,2530,2533,2531,0,3004,3005,3006,2553,2556,2554,42,2533,2530,2534,0,3005,3004,3007,2556,2553,2557,42,2535,2533,2534,0,3008,3005,3007,2558,2556,2557,42,2531,2533,2535,0,3006,3005,3008,2554,2556,2558,42,2531,2535,2536,0,3006,3008,3009,2554,2558,2559,42,2536,2535,2537,0,3009,3008,3010,2559,2558,2560,42,2537,2535,2538,0,3010,3008,3011,2560,2558,2561,42,2538,2535,2539,0,3011,3008,3012,2561,2558,2562,42,2535,2534,2539,0,3008,3007,3012,2558,2557,2562,42,2530,2539,2534,0,3004,3012,3007,2553,2562,2557,42,2539,2530,2540,0,3012,3004,3013,2562,2553,2563,42,2540,2541,2539,0,3013,3014,3012,2563,2564,2562,42,2542,2541,2540,0,3015,3014,3013,2565,2564,2563,42,2542,2543,2541,0,3015,3016,3014,2565,2566,2564,42,2542,2544,2543,0,3015,3017,3016,2565,2567,2566,42,2545,2544,2542,0,3018,3019,3020,2568,2567,2565,42,2546,2544,2545,0,3021,3019,3018,2569,2567,2568,42,2546,2547,2544,0,3021,3022,3019,2569,2570,2567,42,2546,2548,2547,0,3021,3023,3022,2569,2571,2570,42,2548,2546,2549,0,3023,3021,3024,2571,2569,2572,42,2549,2546,2550,0,3024,3021,3025,2572,2569,2573,42,2546,2551,2550,0,3021,3026,3025,2569,2574,2573,42,2546,2545,2551,0,3021,3018,3026,2569,2568,2574,42,2551,2545,2552,0,3026,3018,3027,2574,2568,2575,42,2552,2545,2553,0,3027,3018,3028,2575,2568,2576,42,2545,2542,2553,0,3018,3020,3028,2568,2565,2576,42,2553,2542,2540,0,3028,3020,3029,2576,2565,2563,42,2553,2540,2532,0,3028,3029,3003,2576,2563,2555,42,2540,2530,2532,0,3029,3001,3003,2563,2553,2555,42,2553,2532,2554,0,3028,3003,3030,2576,2555,2577,42,2532,2531,2554,0,3003,3002,3030,2555,2554,2577,42,2552,2554,2531,0,3027,3030,3002,2575,2577,2554,42,2552,2553,2554,0,3027,3028,3030,2575,2576,2577,42,2552,2531,2536,0,3027,3002,3031,2575,2554,2559,42,2552,2536,2551,0,3027,3031,3026,2575,2559,2574,42,2551,2536,2537,0,3026,3031,3032,2574,2559,2560,42,2551,2537,2550,0,3026,3032,3025,2574,2560,2573,42,2550,2537,2555,0,3025,3032,3033,2573,2560,2578,42,2537,2556,2555,0,3010,3034,3035,2560,2579,2578,42,2537,2538,2556,0,3010,3011,3034,2560,2561,2579,42,2541,2556,2538,0,3014,3034,3011,2564,2579,2561,42,2541,2543,2556,0,3014,3016,3034,2564,2566,2579,42,2557,2556,2543,0,3036,3034,3016,2580,2579,2566,42,2557,2558,2556,0,3036,3037,3034,2580,2581,2579,42,2559,2558,2557,0,3038,3037,3036,2582,2581,2580,42,2560,2558,2559,0,3039,3037,3038,2583,2581,2582,42,2560,2561,2558,0,3039,3040,3037,2583,2584,2581,42,2562,2561,2560,0,3041,3040,3039,2585,2584,2583,42,2562,2563,2561,0,3041,3042,3040,2585,2586,2584,42,2564,2563,2562,0,3043,3042,3041,2587,2586,2585,42,2564,2565,2563,0,3043,3044,3042,2587,2588,2586,42,2566,2565,2564,0,3045,3044,3043,2589,2588,2587,42,2567,2565,2566,0,3046,3044,3045,2590,2588,2589,42,2567,2568,2565,0,3046,3047,3044,2590,2591,2588,42,2569,2568,2567,0,3048,3047,3046,2592,2591,2590,42,2569,2570,2568,0,3048,3049,3047,2592,2593,2591,42,2569,2571,2570,0,3048,3050,3049,2592,2594,2593,42,2572,2571,2569,0,3051,3050,3048,2595,2594,2592,42,2573,2571,2572,0,3052,3050,3051,2596,2594,2595,42,2573,2574,2571,0,3052,3053,3050,2596,2597,2594,42,2573,2575,2574,0,3052,3054,3053,2596,2598,2597,42,2576,2575,2573,0,3055,3054,3052,2599,2598,2596,42,2577,2575,2576,0,3056,3054,3055,2600,2598,2599,42,2577,2578,2575,0,3056,3057,3054,2600,2601,2598,42,2577,2579,2578,0,3056,3058,3057,2600,2602,2601,42,2580,2579,2577,0,3059,3060,3056,2603,2602,2600,42,2579,2580,2581,0,3060,3059,3061,2602,2603,2604,42,2580,2582,2581,0,3059,3062,3061,2603,2605,2604,42,2582,2580,2583,0,3062,3059,3063,2605,2603,2606,42,2583,2580,2577,0,3063,3059,3056,2606,2603,2600,42,2577,2584,2583,0,3056,3064,3063,2600,2607,2606,42,2577,2576,2584,0,3056,3055,3064,2600,2599,2607,42,2584,2576,2585,0,3064,3055,3065,2607,2599,2608,42,2585,2576,2573,0,3065,3055,3052,2608,2599,2596,42,2585,2573,2586,0,3065,3052,3066,2608,2596,2609,42,2573,2572,2586,0,3052,3051,3066,2596,2595,2609,42,2586,2572,2587,0,3066,3051,3067,2609,2595,2610,42,2587,2572,2569,0,3067,3051,3048,2610,2595,2592,42,2587,2569,2588,0,3067,3048,3068,2610,2592,2611,42,2588,2569,2567,0,3068,3048,3046,2611,2592,2590,42,2588,2567,2566,0,3068,3046,3045,2611,2590,2589,42,2589,2588,2566,0,3069,3068,3045,2612,2611,2589,42,2589,2590,2588,0,3069,3070,3068,2612,2613,2611,42,2589,2591,2590,0,3069,3071,3070,2612,2614,2613,42,2592,2591,2589,0,3072,3071,3069,2615,2614,2612,42,2592,2593,2591,0,3072,3073,3071,2615,2616,2614,42,2594,2593,2592,0,3074,3073,3072,2617,2616,2615,42,2594,2595,2593,0,3074,3075,3073,2617,2618,2616,42,2596,2595,2594,0,3076,3075,3074,2619,2618,2617,42,2596,2597,2595,0,3076,3077,3075,2619,2620,2618,42,2598,2597,2596,0,3078,3077,3076,2621,2620,2619,42,2598,2599,2597,0,3078,3079,3077,2621,2622,2620,42,2599,2600,2597,0,3079,3080,3077,2622,2623,2620,42,2600,2601,2597,0,3080,3081,3077,2623,2624,2620,42,2600,2602,2601,0,3080,3082,3081,2623,2625,2624,42,2600,2603,2602,0,3080,3083,3082,2623,2626,2625,42,2603,2604,2602,0,3083,3084,3082,2626,2627,2625,42,2605,2604,2603,0,3085,3084,3083,2628,2627,2626,42,2605,2606,2604,0,3086,3087,3088,2628,2629,2627,42,2607,2606,2605,0,3089,3087,3086,2630,2629,2628,42,2607,2608,2606,0,3089,3090,3087,2630,2631,2629,42,2609,2608,2607,0,3091,3090,3089,2632,2631,2630,42,2609,2610,2608,0,3091,3092,3090,2632,2633,2631,42,2611,2610,2609,0,3093,3092,3091,2634,2633,2632,42,2612,2610,2611,0,3094,3092,3093,2635,2633,2634,42,2612,2613,2610,0,3094,3095,3092,2635,2636,2633,42,2614,2613,2612,0,3096,3095,3094,2637,2636,2635,42,2614,2615,2613,0,3096,3097,3095,2637,2638,2636,42,2614,2616,2615,0,3096,3098,3097,2637,2639,2638,42,2616,2617,2615,0,3098,3099,3097,2639,2640,2638,42,2598,2617,2616,0,3078,3099,3098,2621,2640,2639,42,2598,2596,2617,0,3078,3076,3099,2621,2619,2640,42,2596,2618,2617,0,3076,3100,3099,2619,2641,2640,42,2594,2618,2596,0,3074,3100,3076,2617,2641,2619,42,2592,2618,2594,0,3072,3100,3074,2615,2641,2617,42,2592,2619,2618,0,3072,3101,3100,2615,2642,2641,42,2592,2589,2619,0,3072,3069,3101,2615,2612,2642,42,2619,2589,2566,0,3101,3069,3045,2642,2612,2589,42,2619,2566,2620,0,3101,3045,3102,2642,2589,2643,42,2620,2566,2564,0,3102,3045,3043,2643,2589,2587,42,2620,2564,2621,0,3102,3043,3103,2643,2587,2644,42,2621,2564,2622,0,3103,3043,3104,2644,2587,2645,42,2622,2564,2562,0,3104,3043,3041,2645,2587,2585,42,2622,2562,2623,0,3104,3041,3105,2645,2585,2646,42,2623,2562,2560,0,3105,3041,3039,2646,2585,2583,42,2623,2560,2624,0,3105,3039,3106,2646,2583,2647,42,2624,2560,2559,0,3106,3039,3038,2647,2583,2582,42,2625,2624,2559,0,3107,3106,3038,2648,2647,2582,42,2625,2626,2624,0,3107,3108,3106,2648,2649,2647,42,2627,2626,2625,0,3109,3110,3111,2650,2649,2648,42,2627,2628,2626,0,3109,3112,3110,2650,2651,2649,42,2628,2627,2629,0,3112,3109,3113,2651,2650,2652,42,2629,2627,2549,0,3113,3109,3024,2652,2650,2572,42,2627,2548,2549,0,3109,3023,3024,2650,2571,2572,42,2548,2627,2625,0,3023,3109,3111,2571,2650,2648,42,2548,2625,2547,0,3023,3111,3022,2571,2648,2570,42,2547,2625,2559,0,3114,3107,3038,2570,2648,2582,42,2547,2559,2557,0,3114,3038,3036,2570,2582,2580,42,2544,2547,2557,0,3017,3114,3036,2567,2570,2580,42,2544,2557,2543,0,3017,3036,3016,2567,2580,2566,42,2549,2630,2629,0,3024,3115,3113,2572,2653,2652,42,2549,2550,2630,0,3024,3025,3115,2572,2573,2653,42,2630,2550,2631,0,3115,3025,3116,2653,2573,2654,42,2550,2632,2631,0,3025,3117,3116,2573,2655,2654,42,2550,2555,2632,0,3025,3033,3117,2573,2578,2655,42,2555,2633,2632,0,3035,3118,3119,2578,2656,2655,42,2555,2556,2633,0,3035,3034,3118,2578,2579,2656,42,2556,2634,2633,0,3034,3120,3118,2579,2657,2656,42,2558,2634,2556,0,3037,3120,3034,2581,2657,2579,42,2558,2635,2634,0,3037,3121,3120,2581,2658,2657,42,2561,2635,2558,0,3040,3121,3037,2584,2658,2581,42,2561,2636,2635,0,3040,3122,3121,2584,2659,2658,42,2563,2636,2561,0,3042,3122,3040,2586,2659,2584,42,2563,2568,2636,0,3042,3047,3122,2586,2591,2659,42,2565,2568,2563,0,3044,3047,3042,2588,2591,2586,42,2568,2637,2636,0,3047,3123,3122,2591,2660,2659,42,2568,2570,2637,0,3047,3049,3123,2591,2593,2660,42,2570,2638,2637,0,3049,3124,3123,2593,2661,2660,42,2570,2571,2638,0,3049,3050,3124,2593,2594,2661,42,2571,2639,2638,0,3050,3125,3124,2594,2662,2661,42,2571,2574,2639,0,3050,3053,3125,2594,2597,2662,42,2639,2574,2640,0,3125,3053,3126,2662,2597,2663,42,2640,2574,2575,0,3126,3053,3054,2663,2597,2598,42,2640,2575,2641,0,3126,3054,3127,2663,2598,2664,42,2641,2575,2578,0,3127,3054,3057,2664,2598,2601,42,2579,2641,2578,0,3058,3127,3057,2602,2664,2601,42,2579,2640,2641,0,3058,3126,3127,2602,2663,2664,42,2579,2581,2640,0,3058,3128,3126,2602,2604,2663,42,2581,2639,2640,0,3128,3125,3126,2604,2662,2663,42,2581,2642,2639,0,3128,3129,3125,2604,2665,2662,42,2582,2642,2581,0,3062,3130,3061,2605,2665,2604,42,2582,2643,2642,0,3062,3131,3130,2605,2666,2665,42,2643,2582,2584,0,3131,3062,3064,2666,2605,2607,42,2582,2583,2584,0,3062,3063,3064,2605,2606,2607,42,2643,2584,2585,0,3131,3064,3065,2666,2607,2608,42,2644,2643,2585,0,3132,3131,3065,2667,2666,2608,42,2643,2644,2645,0,3131,3132,3133,2666,2667,2668,42,2644,2646,2645,0,3132,3134,3133,2667,2669,2668,42,2644,2647,2646,0,3132,3135,3134,2667,2670,2669,42,2586,2647,2644,0,3066,3135,3132,2609,2670,2667,42,2587,2647,2586,0,3067,3135,3066,2610,2670,2609,42,2590,2647,2587,0,3070,3135,3067,2613,2670,2610,42,2647,2590,2648,0,3135,3070,3136,2670,2613,2671,42,2590,2649,2648,0,3070,3137,3136,2613,2672,2671,42,2650,2649,2590,0,3138,3137,3070,2673,2672,2613,42,2650,2651,2649,0,3138,3139,3137,2673,2674,2672,42,2652,2651,2650,0,3140,3139,3138,2675,2674,2673,42,2653,2651,2652,0,3141,3139,3140,2676,2674,2675,42,2653,2654,2651,0,3142,3143,3144,2676,2677,2674,42,2653,2655,2654,0,3142,3145,3143,2676,2678,2677,42,2653,2656,2655,0,3142,3146,3145,2676,2679,2678,42,2657,2656,2653,0,3147,3146,3142,2680,2679,2676,42,2658,2656,2657,0,3148,3146,3147,2681,2679,2680,42,2658,2659,2656,0,3148,3149,3146,2681,2682,2679,42,2660,2659,2658,0,3150,3149,3148,2683,2682,2681,42,2660,2661,2659,0,3150,3151,3149,2683,2684,2682,42,2662,2661,2660,0,3152,3151,3150,2685,2684,2683,42,2662,2656,2661,0,3152,3146,3151,2685,2679,2684,42,2662,2655,2656,0,3152,3145,3146,2685,2678,2679,42,2663,2655,2662,0,3153,3145,3152,2686,2678,2685,42,2663,2654,2655,0,3153,3143,3145,2686,2677,2678,42,2664,2654,2663,0,3154,3143,3153,2687,2677,2686,42,2665,2654,2664,0,3155,3143,3154,2688,2677,2687,42,2649,2654,2665,0,3156,3143,3155,2672,2677,2688,42,2651,2654,2649,0,3144,3143,3156,2674,2677,2672,42,2649,2665,2636,0,3156,3155,3122,2672,2688,2659,42,2636,2665,2666,0,3122,3155,3157,2659,2688,2689,42,2665,2664,2666,0,3155,3154,3157,2688,2687,2689,42,2667,2666,2664,0,3158,3157,3154,2690,2689,2687,42,2667,2668,2666,0,3158,3159,3157,2690,2691,2689,42,2669,2668,2667,0,3160,3161,3162,2692,2691,2690,42,2669,2670,2668,0,3160,3163,3161,2692,2693,2691,42,2652,2670,2669,0,3140,3163,3160,2675,2693,2692,42,2650,2670,2652,0,3138,3163,3140,2673,2693,2675,42,2671,2670,2650,0,3164,3163,3138,2694,2693,2673,42,2670,2671,2672,0,3163,3164,3165,2693,2694,2695,42,2671,2673,2672,0,3164,3166,3165,2694,2696,2695,42,2674,2673,2671,0,3167,3166,3164,2697,2696,2694,42,2674,2675,2673,0,3167,3168,3166,2697,2698,2696,42,2676,2675,2674,0,3169,3168,3167,2699,2698,2697,42,2677,2675,2676,0,3170,3168,3169,2700,2698,2699,42,2677,2678,2675,0,3171,3172,3173,2700,2701,2698,42,2677,2679,2678,0,3171,3174,3172,2700,2702,2701,42,2677,2680,2679,0,3171,3175,3174,2700,2703,2702,42,2681,2680,2677,0,3176,3175,3171,2704,2703,2700,42,2682,2680,2681,0,3177,3175,3176,2705,2703,2704,42,2682,2683,2680,0,3177,3178,3175,2705,2706,2703,42,2684,2683,2682,0,3179,3178,3177,2707,2706,2705,42,2684,2685,2683,0,3179,3180,3178,2707,2708,2706,42,2686,2685,2684,0,3181,3180,3179,2709,2708,2707,42,2686,2680,2685,0,3181,3175,3180,2709,2703,2708,42,2686,2679,2680,0,3181,3174,3175,2709,2702,2703,42,2687,2679,2686,0,3182,3174,3181,2710,2702,2709,42,2678,2679,2687,0,3172,3174,3182,2701,2702,2710,42,2688,2678,2687,0,3183,3172,3182,2711,2701,2710,42,2689,2678,2688,0,3184,3172,3183,2712,2701,2711,42,2673,2678,2689,0,3185,3172,3184,2696,2701,2712,42,2675,2678,2673,0,3173,3172,3185,2698,2701,2696,42,2673,2689,2635,0,3185,3184,3121,2696,2712,2658,42,2635,2689,2690,0,3121,3184,3186,2658,2712,2713,42,2689,2688,2690,0,3184,3183,3186,2712,2711,2713,42,2691,2690,2688,0,3187,3186,3183,2714,2713,2711,42,2691,2692,2690,0,3187,3188,3186,2714,2715,2713,42,2693,2692,2691,0,3189,3190,3191,2716,2715,2714,42,2693,2694,2692,0,3189,3192,3190,2716,2717,2715,42,2676,2694,2693,0,3169,3192,3189,2699,2717,2716,42,2674,2694,2676,0,3167,3192,3169,2697,2717,2699,42,2695,2694,2674,0,3193,3192,3167,2718,2717,2697,42,2694,2695,2696,0,3192,3193,3194,2717,2718,2719,42,2697,2696,2695,0,3195,3194,3193,2720,2719,2718,42,2697,2634,2696,0,3196,3120,3197,2720,2657,2719,42,2697,2698,2634,0,3196,3198,3120,2720,2721,2657,42,2697,2699,2698,0,3196,3199,3198,2720,2722,2721,42,2700,2699,2697,0,3200,3199,3196,2723,2722,2720,42,2701,2699,2700,0,3201,3199,3200,2724,2722,2723,42,2701,2702,2699,0,3201,3202,3199,2724,2725,2722,42,2701,2703,2702,0,3201,3203,3202,2724,2726,2725,42,2704,2703,2701,0,3204,3203,3201,2727,2726,2724,42,2705,2703,2704,0,3205,3203,3204,2728,2726,2727,42,2705,2706,2703,0,3205,3206,3203,2728,2729,2726,42,2707,2706,2705,0,3207,3206,3205,2730,2729,2728,42,2707,2708,2706,0,3207,3208,3206,2730,2731,2729,42,2709,2708,2707,0,3209,3208,3207,2732,2731,2730,42,2709,2703,2708,0,3209,3203,3208,2732,2726,2731,42,2709,2702,2703,0,3209,3202,3203,2732,2725,2726,42,2710,2702,2709,0,3210,3202,3209,2733,2725,2732,42,2699,2702,2710,0,3199,3202,3210,2722,2725,2733,42,2711,2699,2710,0,3211,3199,3210,2734,2722,2733,42,2711,2698,2699,0,3211,3198,3199,2734,2721,2722,42,2712,2698,2711,0,3212,3198,3211,2735,2721,2734,42,2634,2698,2712,0,3120,3198,3212,2657,2721,2735,42,2634,2712,2633,0,3120,3212,3118,2657,2735,2656,42,2713,2633,2712,0,3213,3118,3212,2736,2656,2735,42,2713,2632,2633,0,3213,3119,3118,2736,2655,2656,42,2714,2632,2713,0,3214,3117,3215,2737,2655,2736,42,2714,2631,2632,0,3214,3116,3117,2737,2654,2655,42,2631,2714,2715,0,3116,3214,3216,2654,2737,2738,42,2715,2714,2716,0,3216,3214,3217,2738,2737,2739,42,2716,2714,2717,0,3217,3214,3218,2739,2737,2740,42,2717,2714,2713,0,3218,3214,3215,2740,2737,2736,42,2717,2713,2718,0,3218,3215,3219,2740,2736,2741,42,2718,2713,2712,0,3220,3213,3212,2741,2736,2735,42,2718,2712,2711,0,3220,3212,3211,2741,2735,2734,42,2719,2718,2711,0,3221,3220,3211,2742,2741,2734,42,2720,2718,2719,0,3222,3219,3223,2743,2741,2742,42,2720,2717,2718,0,3222,3218,3219,2743,2740,2741,42,2717,2720,2721,0,3218,3222,3224,2740,2743,2744,42,2720,2722,2721,0,3222,3225,3224,2743,2745,2744,42,2720,2723,2722,0,3222,3226,3225,2743,2746,2745,42,2723,2720,2719,0,3226,3222,3223,2746,2743,2742,42,2723,2719,2724,0,3226,3223,3227,2746,2742,2747,42,2724,2719,2710,0,3228,3221,3210,2747,2742,2733,42,2719,2711,2710,0,3221,3211,3210,2742,2734,2733,42,2724,2710,2709,0,3228,3210,3209,2747,2733,2732,42,2724,2709,2707,0,3228,3209,3207,2747,2732,2730,42,2725,2724,2707,0,3229,3227,3230,2748,2747,2730,42,2725,2723,2724,0,3229,3226,3227,2748,2746,2747,42,2723,2725,2726,0,3226,3229,3231,2746,2748,2749,42,2726,2725,2705,0,3231,3229,3232,2749,2748,2728,42,2725,2707,2705,0,3229,3230,3232,2748,2730,2728,42,2726,2705,2722,0,3231,3232,3225,2749,2728,2745,42,2705,2704,2722,0,3232,3233,3225,2728,2727,2745,42,2722,2704,2721,0,3225,3233,3224,2745,2727,2744,42,2721,2704,2701,0,3224,3233,3234,2744,2727,2724,42,2721,2701,2716,0,3224,3234,3217,2744,2724,2739,42,2701,2700,2716,0,3234,3235,3217,2724,2723,2739,42,2716,2700,2715,0,3217,3235,3216,2739,2723,2738,42,2715,2700,2697,0,3216,3235,3195,2738,2723,2720,42,2715,2697,2695,0,3216,3195,3193,2738,2720,2718,42,2695,2631,2715,0,3193,3116,3216,2718,2654,2738,42,2630,2631,2695,0,3115,3116,3193,2653,2654,2718,42,2727,2630,2695,0,3236,3115,3193,2750,2653,2718,42,2593,2630,2727,0,3073,3115,3236,2616,2653,2750,42,2629,2630,2593,0,3113,3115,3073,2652,2653,2616,42,2595,2629,2593,0,3075,3113,3073,2618,2652,2616,42,2595,2728,2629,0,3075,3237,3113,2618,2751,2652,42,2601,2728,2595,0,3081,3237,3075,2624,2751,2618,42,2601,2628,2728,0,3081,3112,3237,2624,2651,2751,42,2601,2602,2628,0,3081,3082,3112,2624,2625,2651,42,2628,2602,2626,0,3112,3082,3110,2651,2625,2649,42,2602,2604,2626,0,3082,3084,3110,2625,2627,2649,42,2626,2604,2624,0,3108,3088,3106,2649,2627,2647,42,2604,2606,2624,0,3088,3087,3106,2627,2629,2647,42,2606,2623,2624,0,3087,3105,3106,2629,2646,2647,42,2608,2623,2606,0,3090,3105,3087,2631,2646,2629,42,2608,2622,2623,0,3090,3104,3105,2631,2645,2646,42,2610,2622,2608,0,3092,3104,3090,2633,2645,2631,42,2610,2621,2622,0,3092,3103,3104,2633,2644,2645,42,2613,2621,2610,0,3095,3103,3092,2636,2644,2633,42,2615,2621,2613,0,3097,3103,3095,2638,2644,2636,42,2729,2621,2615,0,3238,3103,3097,2752,2644,2638,42,2620,2621,2729,0,3102,3103,3238,2643,2644,2752,42,2619,2620,2729,0,3101,3102,3238,2642,2643,2752,42,2619,2729,2618,0,3101,3238,3100,2642,2752,2641,42,2618,2729,2617,0,3100,3238,3099,2641,2752,2640,42,2617,2729,2615,0,3099,3238,3097,2640,2752,2638,42,2728,2628,2629,0,3237,3112,3113,2751,2651,2652,42,2597,2601,2595,0,3077,3081,3075,2620,2624,2618,42,2593,2727,2591,0,3073,3236,3071,2616,2750,2614,42,2591,2727,2671,0,3071,3236,3164,2614,2750,2694,42,2727,2695,2671,0,3236,3193,3164,2750,2718,2694,42,2671,2695,2674,0,3164,3193,3167,2694,2718,2697,42,2591,2671,2590,0,3071,3164,3070,2614,2694,2613,42,2590,2671,2650,0,3070,3164,3138,2613,2694,2673,42,2717,2721,2716,0,3218,3224,3217,2740,2744,2739,42,2723,2726,2722,0,3226,3231,3225,2746,2749,2745,42,2703,2706,2708,0,3203,3206,3208,2726,2729,2731,42,2694,2696,2692,0,3192,3194,3190,2717,2719,2715,42,2692,2634,2690,0,3188,3120,3186,2715,2657,2713,42,2635,2690,2634,0,3121,3186,3120,2658,2713,2657,42,2676,2693,2730,0,3169,3189,3239,2699,2716,2753,42,2693,2731,2730,0,3189,3240,3239,2716,2754,2753,42,2731,2693,2691,0,3240,3189,3191,2754,2716,2714,42,2731,2691,2732,0,3240,3191,3241,2754,2714,2755,42,2732,2691,2688,0,3242,3187,3183,2755,2714,2711,42,2732,2688,2687,0,3242,3183,3182,2755,2711,2710,42,2733,2732,2687,0,3243,3242,3182,2756,2755,2710,42,2734,2732,2733,0,3244,3241,3245,2757,2755,2756,42,2734,2731,2732,0,3244,3240,3241,2757,2754,2755,42,2731,2734,2735,0,3240,3244,3246,2754,2757,2758,42,2734,2736,2735,0,3244,3247,3246,2757,2759,2758,42,2734,2737,2736,0,3244,3248,3247,2757,2760,2759,42,2737,2734,2733,0,3248,3244,3245,2760,2757,2756,42,2737,2733,2684,0,3248,3245,3249,2760,2756,2707,42,2684,2733,2686,0,3179,3243,3181,2707,2756,2709,42,2733,2687,2686,0,3243,3182,3181,2756,2710,2709,42,2737,2684,2682,0,3248,3249,3250,2760,2707,2705,42,2736,2737,2682,0,3247,3248,3250,2759,2760,2705,42,2736,2682,2735,0,3247,3250,3246,2759,2705,2758,42,2682,2681,2735,0,3250,3251,3246,2705,2704,2758,42,2735,2681,2730,0,3246,3251,3239,2758,2704,2753,42,2730,2681,2677,0,3239,3251,3170,2753,2704,2700,42,2730,2677,2676,0,3239,3170,3169,2753,2700,2699,42,2731,2735,2730,0,3240,3246,3239,2754,2758,2753,42,2673,2635,2672,0,3185,3121,3252,2696,2658,2695,42,2670,2672,2668,0,3163,3165,3161,2693,2695,2691,42,2668,2635,2666,0,3159,3121,3157,2691,2658,2689,42,2636,2666,2635,0,3122,3157,3121,2659,2689,2658,42,2680,2683,2685,0,3175,3178,3180,2703,2706,2708,42,2652,2669,2738,0,3140,3160,3253,2675,2692,2761,42,2669,2739,2738,0,3160,3254,3253,2692,2762,2761,42,2739,2669,2667,0,3254,3160,3162,2762,2692,2690,42,2739,2667,2740,0,3254,3162,3255,2762,2690,2763,42,2740,2667,2664,0,3256,3158,3154,2763,2690,2687,42,2740,2664,2663,0,3256,3154,3153,2763,2687,2686,42,2741,2740,2663,0,3257,3256,3153,2764,2763,2686,42,2742,2740,2741,0,3258,3255,3259,2765,2763,2764,42,2742,2739,2740,0,3258,3254,3255,2765,2762,2763,42,2739,2742,2743,0,3254,3258,3260,2762,2765,2766,42,2742,2744,2743,0,3258,3261,3260,2765,2767,2766,42,2742,2745,2744,0,3258,3262,3261,2765,2768,2767,42,2745,2742,2741,0,3262,3258,3259,2768,2765,2764,42,2745,2741,2660,0,3262,3259,3263,2768,2764,2683,42,2660,2741,2662,0,3150,3257,3152,2683,2764,2685,42,2741,2663,2662,0,3257,3153,3152,2764,2686,2685,42,2745,2660,2658,0,3262,3263,3264,2768,2683,2681,42,2744,2745,2658,0,3261,3262,3264,2767,2768,2681,42,2743,2744,2658,0,3260,3261,3264,2766,2767,2681,42,2658,2657,2743,0,3264,3265,3260,2681,2680,2766,42,2743,2657,2738,0,3260,3265,3253,2766,2680,2761,42,2738,2657,2653,0,3253,3265,3141,2761,2680,2676,42,2738,2653,2652,0,3253,3141,3140,2761,2676,2675,42,2739,2743,2738,0,3254,3260,3253,2762,2766,2761,42,2649,2636,2648,0,3156,3122,3266,2672,2659,2671,42,2646,2648,2636,0,3267,3266,3122,2669,2671,2659,42,2647,2648,2646,0,3135,3136,3134,2670,2671,2669,42,2646,2636,2637,0,3267,3122,3123,2669,2659,2660,42,2645,2646,2637,0,3268,3267,3123,2668,2669,2660,42,2645,2637,2638,0,3268,3123,3124,2668,2660,2661,42,2642,2645,2638,0,3129,3268,3124,2665,2668,2661,42,2643,2645,2642,0,3131,3133,3130,2666,2668,2665,42,2642,2638,2639,0,3129,3124,3125,2665,2661,2662,42,2661,2656,2659,0,3151,3146,3149,2684,2679,2682,42,2588,2590,2587,0,3068,3070,3067,2611,2613,2610,42,2586,2644,2585,0,3066,3132,3065,2609,2667,2608,42,2538,2539,2541,0,3011,3012,3014,2561,2562,2564,42,2692,2696,2634,4,3269,3270,3271,2715,2719,2657,42,2668,2672,2635,4,3272,3273,3274,2691,2695,2658], diff --git a/examples/obj/torus/Torus_slim.js b/examples/obj/torus/Torus_slim.js index ebdce587..50694150 100644 --- a/examples/obj/torus/Torus_slim.js +++ b/examples/obj/torus/Torus_slim.js @@ -29,7 +29,7 @@ var model = { "morphColors": [], - "normals": [1.000000,0.000000,0.000000,0.991424,0.000000,-0.130497,0.858547,0.500107,-0.113010,0.865963,0.500107,0.000000,0.495590,0.866085,-0.065249,0.499863,0.866085,0.000000,0.000000,1.000000,0.000000,-0.495590,0.866085,0.065249,-0.499863,0.866085,0.000000,-0.858547,0.500107,0.113010,-0.865963,0.500107,0.000000,-0.991424,0.000000,0.130497,-0.999969,0.000000,0.000000,-0.858547,-0.500107,0.113010,-0.865963,-0.500107,0.000000,-0.495590,-0.866085,0.065249,-0.499863,-0.866085,0.000000,0.000000,-1.000000,0.000000,0.495590,-0.866085,-0.065249,0.499863,-0.866085,0.000000,0.858547,-0.500107,-0.113010,0.865963,-0.500107,0.000000,0.965911,0.000000,-0.258797,0.836451,0.500107,-0.224128,0.482833,0.866085,-0.129368,-0.482833,0.866085,0.129368,-0.836451,0.500107,0.224097,-0.965911,0.000000,0.258797,-0.836451,-0.500107,0.224128,-0.482833,-0.866085,0.129368,0.482833,-0.866085,-0.129368,0.836451,-0.500107,-0.224128,0.923856,0.000000,-0.382672,0.800043,0.500107,-0.331370,0.461837,0.866085,-0.191290,-0.461837,0.866085,0.191290,-0.800043,0.500107,0.331370,-0.923856,0.000000,0.382672,-0.800043,-0.500107,0.331370,-0.461837,-0.866085,0.191290,0.461837,-0.866085,-0.191290,0.800043,-0.500107,-0.331370,0.866024,0.000000,-0.499985,0.749931,0.500107,-0.432966,0.432905,0.866085,-0.249916,-0.432905,0.866085,0.249916,-0.749931,0.500107,0.432966,-0.866024,0.000000,0.499985,-0.749931,-0.500107,0.432966,-0.432905,-0.866085,0.249916,0.432905,-0.866085,-0.249916,0.749931,-0.500107,-0.432966,0.793329,0.000000,-0.608753,0.687002,0.500107,-0.527146,0.396588,0.866085,-0.304300,-0.396588,0.866085,0.304300,-0.687002,0.500107,0.527146,-0.793329,0.000000,0.608753,-0.687002,-0.500107,0.527146,-0.396588,-0.866085,0.304300,0.396588,-0.866085,-0.304300,0.687002,-0.500107,-0.527146,0.707083,0.000000,-0.707083,0.612323,0.500107,-0.612323,0.353465,0.866085,-0.353465,-0.353465,0.866085,0.353465,-0.612323,0.500107,0.612323,-0.707083,0.000000,0.707083,-0.612323,-0.500107,0.612323,-0.353465,-0.866085,0.353465,0.353465,-0.866085,-0.353465,0.612323,-0.500107,-0.612323,0.608753,0.000000,-0.793329,0.527146,0.500107,-0.687002,0.304300,0.866085,-0.396588,-0.304300,0.866085,0.396588,-0.527146,0.500107,0.687002,-0.608753,0.000000,0.793329,-0.527146,-0.500107,0.687002,-0.304300,-0.866085,0.396588,0.304300,-0.866085,-0.396588,0.527146,-0.500107,-0.687002,0.499985,0.000000,-0.866024,0.432966,0.500107,-0.749931,0.249916,0.866085,-0.432905,-0.249916,0.866085,0.432905,-0.432966,0.500107,0.749931,-0.499985,0.000000,0.866024,-0.432966,-0.500107,0.749931,-0.249916,-0.866085,0.432905,0.249916,-0.866085,-0.432905,0.432966,-0.500107,-0.749931,0.382672,0.000000,-0.923856,0.331370,0.500107,-0.800043,0.191290,0.866085,-0.461837,-0.191290,0.866085,0.461837,-0.331370,0.500107,0.800043,-0.382672,0.000000,0.923856,-0.331370,-0.500107,0.800043,-0.191290,-0.866085,0.461837,0.191290,-0.866085,-0.461837,0.331370,-0.500107,-0.800043,0.258797,0.000000,-0.965911,0.224097,0.500107,-0.836451,0.129368,0.866085,-0.482833,-0.129368,0.866085,0.482833,-0.224097,0.500107,0.836451,-0.258797,0.000000,0.965911,-0.224128,-0.500107,0.836451,-0.129368,-0.866085,0.482833,0.129368,-0.866085,-0.482833,0.224097,-0.500107,-0.836451,0.130497,0.000000,-0.991424,0.113010,0.500107,-0.858547,0.065249,0.866085,-0.495590,-0.065249,0.866085,0.495590,-0.113010,0.500107,0.858547,-0.130497,0.000000,0.991424,-0.113010,-0.500107,0.858547,-0.065249,-0.866085,0.495590,0.065249,-0.866085,-0.495590,0.113010,-0.500107,-0.858547,0.000000,0.000000,-1.000000,0.000000,0.500107,-0.865963,0.000000,0.866085,-0.499863,0.000000,0.866085,0.499863,0.000000,0.500107,0.865963,0.000000,0.000000,1.000000,0.000000,-0.500107,0.865963,0.000000,-0.866085,0.499863,0.000000,-0.866085,-0.499863,0.000000,-0.500107,-0.865963,-0.130497,0.000000,-0.991424,-0.113010,0.500107,-0.858547,-0.065249,0.866085,-0.495590,0.065249,0.866085,0.495590,0.113010,0.500107,0.858547,0.130497,0.000000,0.991424,0.113010,-0.500107,0.858547,0.065249,-0.866085,0.495590,-0.065249,-0.866085,-0.495590,-0.113010,-0.500107,-0.858547,-0.258797,0.000000,-0.965911,-0.224097,0.500107,-0.836451,-0.129368,0.866085,-0.482833,0.129368,0.866085,0.482833,0.224097,0.500107,0.836451,0.258797,0.000000,0.965911,0.224097,-0.500107,0.836451,0.129368,-0.866085,0.482833,-0.129368,-0.866085,-0.482833,-0.224097,-0.500107,-0.836451,-0.382672,0.000000,-0.923856,-0.331370,0.500107,-0.800043,-0.191290,0.866085,-0.461837,0.191290,0.866085,0.461837,0.331370,0.500107,0.800043,0.382672,0.000000,0.923856,0.331370,-0.500107,0.800043,0.191290,-0.866085,0.461837,-0.191290,-0.866085,-0.461837,-0.331370,-0.500107,-0.800043,-0.499985,0.000000,-0.866024,-0.432966,0.500107,-0.749931,-0.249916,0.866085,-0.432905,0.249916,0.866085,0.432905,0.432966,0.500107,0.749931,0.499985,0.000000,0.866024,0.432966,-0.500107,0.749931,0.249916,-0.866085,0.432905,-0.249916,-0.866085,-0.432905,-0.432966,-0.500107,-0.749931,-0.608753,0.000000,-0.793329,-0.527146,0.500107,-0.687002,-0.304300,0.866085,-0.396588,0.304300,0.866085,0.396588,0.527146,0.500107,0.687002,0.608753,0.000000,0.793329,0.527146,-0.500107,0.687002,0.304300,-0.866085,0.396588,-0.304300,-0.866085,-0.396588,-0.527146,-0.500107,-0.687002,-0.707083,0.000000,-0.707083,-0.612323,0.500107,-0.612323,-0.353465,0.866085,-0.353465,0.353465,0.866085,0.353465,0.612323,0.500107,0.612323,0.707083,0.000000,0.707083,0.612323,-0.500107,0.612323,0.353465,-0.866085,0.353465,-0.353465,-0.866085,-0.353465,-0.612323,-0.500107,-0.612323,-0.793329,0.000000,-0.608753,-0.687002,0.500107,-0.527146,-0.396588,0.866085,-0.304300,0.396588,0.866085,0.304300,0.687002,0.500107,0.527146,0.793329,0.000000,0.608753,0.687002,-0.500107,0.527146,0.396588,-0.866085,0.304300,-0.396588,-0.866085,-0.304300,-0.687002,-0.500107,-0.527146,-0.866024,0.000000,-0.499985,-0.749931,0.500107,-0.432966,-0.432905,0.866085,-0.249916,0.432905,0.866085,0.249916,0.749931,0.500107,0.432966,0.866024,0.000000,0.499985,0.749931,-0.500107,0.432966,0.432905,-0.866085,0.249916,-0.432905,-0.866085,-0.249916,-0.749931,-0.500107,-0.432966,-0.923856,0.000000,-0.382672,-0.800043,0.500107,-0.331370,-0.461837,0.866085,-0.191290,0.461837,0.866085,0.191290,0.800043,0.500107,0.331370,0.923856,0.000000,0.382672,0.800043,-0.500107,0.331370,0.461837,-0.866085,0.191290,-0.461837,-0.866085,-0.191290,-0.800043,-0.500107,-0.331370,-0.965911,0.000000,-0.258797,-0.836451,0.500107,-0.224128,-0.482833,0.866085,-0.129368,0.482833,0.866085,0.129368,0.836451,0.500107,0.224128,0.965911,0.000000,0.258797,0.836451,-0.500107,0.224128,0.482833,-0.866085,0.129368,-0.482833,-0.866085,-0.129368,-0.836451,-0.500107,-0.224128,-0.991424,0.000000,-0.130497,-0.858547,0.500107,-0.113010,-0.495590,0.866085,-0.065249,0.495590,0.866085,0.065249,0.858547,0.500107,0.113010,0.991424,0.000000,0.130497,0.858547,-0.500107,0.113010,0.495590,-0.866085,0.065249,-0.495590,-0.866085,-0.065249,-0.858547,-0.500107,-0.113010,-1.000000,0.000000,0.000000,-0.836451,0.500107,0.224128,-0.224097,-0.500107,0.836451,0.000000,0.000000,-0.999969,-0.836451,0.500107,-0.224097], + "normals": [1,0,0,0.99142,0,-0.1305,0.85855,0.50011,-0.11301,0.86596,0.50011,0,0.49559,0.86608,-0.065249,0.49986,0.86608,0,0,1,0,-0.49559,0.86608,0.065249,-0.49986,0.86608,0,-0.85855,0.50011,0.11301,-0.86596,0.50011,0,-0.99142,0,0.1305,-0.99997,0,0,-0.85855,-0.50011,0.11301,-0.86596,-0.50011,0,-0.49559,-0.86608,0.065249,-0.49986,-0.86608,0,0,-1,0,0.49559,-0.86608,-0.065249,0.49986,-0.86608,0,0.85855,-0.50011,-0.11301,0.86596,-0.50011,0,0.96591,0,-0.2588,0.83645,0.50011,-0.22413,0.48283,0.86608,-0.12937,-0.48283,0.86608,0.12937,-0.83645,0.50011,0.2241,-0.96591,0,0.2588,-0.83645,-0.50011,0.22413,-0.48283,-0.86608,0.12937,0.48283,-0.86608,-0.12937,0.83645,-0.50011,-0.22413,0.92386,0,-0.38267,0.80004,0.50011,-0.33137,0.46184,0.86608,-0.19129,-0.46184,0.86608,0.19129,-0.80004,0.50011,0.33137,-0.92386,0,0.38267,-0.80004,-0.50011,0.33137,-0.46184,-0.86608,0.19129,0.46184,-0.86608,-0.19129,0.80004,-0.50011,-0.33137,0.86602,0,-0.49999,0.74993,0.50011,-0.43297,0.4329,0.86608,-0.24992,-0.4329,0.86608,0.24992,-0.74993,0.50011,0.43297,-0.86602,0,0.49999,-0.74993,-0.50011,0.43297,-0.4329,-0.86608,0.24992,0.4329,-0.86608,-0.24992,0.74993,-0.50011,-0.43297,0.79333,0,-0.60875,0.687,0.50011,-0.52715,0.39659,0.86608,-0.3043,-0.39659,0.86608,0.3043,-0.687,0.50011,0.52715,-0.79333,0,0.60875,-0.687,-0.50011,0.52715,-0.39659,-0.86608,0.3043,0.39659,-0.86608,-0.3043,0.687,-0.50011,-0.52715,0.70708,0,-0.70708,0.61232,0.50011,-0.61232,0.35346,0.86608,-0.35346,-0.35346,0.86608,0.35346,-0.61232,0.50011,0.61232,-0.70708,0,0.70708,-0.61232,-0.50011,0.61232,-0.35346,-0.86608,0.35346,0.35346,-0.86608,-0.35346,0.61232,-0.50011,-0.61232,0.60875,0,-0.79333,0.52715,0.50011,-0.687,0.3043,0.86608,-0.39659,-0.3043,0.86608,0.39659,-0.52715,0.50011,0.687,-0.60875,0,0.79333,-0.52715,-0.50011,0.687,-0.3043,-0.86608,0.39659,0.3043,-0.86608,-0.39659,0.52715,-0.50011,-0.687,0.49999,0,-0.86602,0.43297,0.50011,-0.74993,0.24992,0.86608,-0.4329,-0.24992,0.86608,0.4329,-0.43297,0.50011,0.74993,-0.49999,0,0.86602,-0.43297,-0.50011,0.74993,-0.24992,-0.86608,0.4329,0.24992,-0.86608,-0.4329,0.43297,-0.50011,-0.74993,0.38267,0,-0.92386,0.33137,0.50011,-0.80004,0.19129,0.86608,-0.46184,-0.19129,0.86608,0.46184,-0.33137,0.50011,0.80004,-0.38267,0,0.92386,-0.33137,-0.50011,0.80004,-0.19129,-0.86608,0.46184,0.19129,-0.86608,-0.46184,0.33137,-0.50011,-0.80004,0.2588,0,-0.96591,0.2241,0.50011,-0.83645,0.12937,0.86608,-0.48283,-0.12937,0.86608,0.48283,-0.2241,0.50011,0.83645,-0.2588,0,0.96591,-0.22413,-0.50011,0.83645,-0.12937,-0.86608,0.48283,0.12937,-0.86608,-0.48283,0.2241,-0.50011,-0.83645,0.1305,0,-0.99142,0.11301,0.50011,-0.85855,0.065249,0.86608,-0.49559,-0.065249,0.86608,0.49559,-0.11301,0.50011,0.85855,-0.1305,0,0.99142,-0.11301,-0.50011,0.85855,-0.065249,-0.86608,0.49559,0.065249,-0.86608,-0.49559,0.11301,-0.50011,-0.85855,0,0,-1,0,0.50011,-0.86596,0,0.86608,-0.49986,0,0.86608,0.49986,0,0.50011,0.86596,0,0,1,0,-0.50011,0.86596,0,-0.86608,0.49986,0,-0.86608,-0.49986,0,-0.50011,-0.86596,-0.1305,0,-0.99142,-0.11301,0.50011,-0.85855,-0.065249,0.86608,-0.49559,0.065249,0.86608,0.49559,0.11301,0.50011,0.85855,0.1305,0,0.99142,0.11301,-0.50011,0.85855,0.065249,-0.86608,0.49559,-0.065249,-0.86608,-0.49559,-0.11301,-0.50011,-0.85855,-0.2588,0,-0.96591,-0.2241,0.50011,-0.83645,-0.12937,0.86608,-0.48283,0.12937,0.86608,0.48283,0.2241,0.50011,0.83645,0.2588,0,0.96591,0.2241,-0.50011,0.83645,0.12937,-0.86608,0.48283,-0.12937,-0.86608,-0.48283,-0.2241,-0.50011,-0.83645,-0.38267,0,-0.92386,-0.33137,0.50011,-0.80004,-0.19129,0.86608,-0.46184,0.19129,0.86608,0.46184,0.33137,0.50011,0.80004,0.38267,0,0.92386,0.33137,-0.50011,0.80004,0.19129,-0.86608,0.46184,-0.19129,-0.86608,-0.46184,-0.33137,-0.50011,-0.80004,-0.49999,0,-0.86602,-0.43297,0.50011,-0.74993,-0.24992,0.86608,-0.4329,0.24992,0.86608,0.4329,0.43297,0.50011,0.74993,0.49999,0,0.86602,0.43297,-0.50011,0.74993,0.24992,-0.86608,0.4329,-0.24992,-0.86608,-0.4329,-0.43297,-0.50011,-0.74993,-0.60875,0,-0.79333,-0.52715,0.50011,-0.687,-0.3043,0.86608,-0.39659,0.3043,0.86608,0.39659,0.52715,0.50011,0.687,0.60875,0,0.79333,0.52715,-0.50011,0.687,0.3043,-0.86608,0.39659,-0.3043,-0.86608,-0.39659,-0.52715,-0.50011,-0.687,-0.70708,0,-0.70708,-0.61232,0.50011,-0.61232,-0.35346,0.86608,-0.35346,0.35346,0.86608,0.35346,0.61232,0.50011,0.61232,0.70708,0,0.70708,0.61232,-0.50011,0.61232,0.35346,-0.86608,0.35346,-0.35346,-0.86608,-0.35346,-0.61232,-0.50011,-0.61232,-0.79333,0,-0.60875,-0.687,0.50011,-0.52715,-0.39659,0.86608,-0.3043,0.39659,0.86608,0.3043,0.687,0.50011,0.52715,0.79333,0,0.60875,0.687,-0.50011,0.52715,0.39659,-0.86608,0.3043,-0.39659,-0.86608,-0.3043,-0.687,-0.50011,-0.52715,-0.86602,0,-0.49999,-0.74993,0.50011,-0.43297,-0.4329,0.86608,-0.24992,0.4329,0.86608,0.24992,0.74993,0.50011,0.43297,0.86602,0,0.49999,0.74993,-0.50011,0.43297,0.4329,-0.86608,0.24992,-0.4329,-0.86608,-0.24992,-0.74993,-0.50011,-0.43297,-0.92386,0,-0.38267,-0.80004,0.50011,-0.33137,-0.46184,0.86608,-0.19129,0.46184,0.86608,0.19129,0.80004,0.50011,0.33137,0.92386,0,0.38267,0.80004,-0.50011,0.33137,0.46184,-0.86608,0.19129,-0.46184,-0.86608,-0.19129,-0.80004,-0.50011,-0.33137,-0.96591,0,-0.2588,-0.83645,0.50011,-0.22413,-0.48283,0.86608,-0.12937,0.48283,0.86608,0.12937,0.83645,0.50011,0.22413,0.96591,0,0.2588,0.83645,-0.50011,0.22413,0.48283,-0.86608,0.12937,-0.48283,-0.86608,-0.12937,-0.83645,-0.50011,-0.22413,-0.99142,0,-0.1305,-0.85855,0.50011,-0.11301,-0.49559,0.86608,-0.065249,0.49559,0.86608,0.065249,0.85855,0.50011,0.11301,0.99142,0,0.1305,0.85855,-0.50011,0.11301,0.49559,-0.86608,0.065249,-0.49559,-0.86608,-0.065249,-0.85855,-0.50011,-0.11301,-1,0,0,-0.83645,0.50011,0.22413,-0.2241,-0.50011,0.83645,0,0,-0.99997,-0.83645,0.50011,-0.2241], "colors": [], diff --git a/examples/obj/walt/WaltHead_slim.js b/examples/obj/walt/WaltHead_slim.js index 31825c02..4e518060 100644 --- a/examples/obj/walt/WaltHead_slim.js +++ b/examples/obj/walt/WaltHead_slim.js @@ -36,7 +36,7 @@ var model = { "morphColors": [], - "normals": [0.159124,-0.401624,0.901852,0.245949,-0.145878,0.958220,0.175695,-0.414991,0.892666,0.806604,0.345225,0.479720,0.700827,0.488083,0.520157,0.845393,0.411939,0.340007,-0.616321,-0.724174,0.309275,-0.663045,-0.670278,0.333201,-0.661855,-0.698569,0.271859,-0.055849,0.991211,0.119877,0.010926,0.993774,0.110843,-0.035188,0.996796,-0.071474,0.967834,0.120273,0.220893,0.935423,0.131809,0.327982,0.990753,-0.052217,0.125004,0.180609,-0.538285,-0.823145,0.109745,-0.569170,-0.814844,0.306864,-0.553789,-0.774010,-0.094089,-0.386212,0.917570,-0.272103,-0.235115,0.933073,-0.184851,-0.530564,0.827204,-0.129917,-0.606769,0.784173,-0.389019,-0.470016,0.792261,-0.157353,-0.538621,0.827693,0.516434,-0.296579,-0.803308,0.383343,-0.032289,-0.923032,0.620319,-0.402814,-0.672994,0.649617,-0.325755,-0.686911,0.851283,-0.289804,-0.437330,0.493301,-0.650929,-0.576952,0.184667,-0.292917,-0.938108,0.211158,-0.287515,-0.934172,0.289499,-0.185003,-0.939116,-0.143895,0.287851,-0.946776,0.013062,0.327586,-0.944700,-0.254036,0.322489,-0.911802,0.802942,-0.229011,-0.550279,0.921293,-0.258553,0.290353,0.977142,-0.206793,0.049135,0.653127,-0.467635,-0.595569,0.669088,-0.279641,-0.688528,0.712272,-0.261422,-0.651387,0.437178,-0.375622,0.817133,0.444502,-0.314127,0.838862,0.521256,-0.354900,0.776086,-0.126591,0.794122,-0.594409,-0.257424,0.771783,-0.581408,-0.295907,0.676290,-0.674551,-0.424299,0.877010,0.225349,-0.365825,0.906186,0.212104,-0.395672,0.901669,0.174352,0.738182,-0.612018,0.283700,0.874660,-0.356304,0.328593,0.905576,-0.145451,0.398450,-0.469741,-0.190680,-0.861934,-0.514786,-0.244057,-0.821802,-0.655293,-0.276345,-0.702963,0.920530,-0.389538,0.028962,0.892666,-0.448439,0.044862,0.843898,-0.466262,0.265297,0.238258,-0.273965,-0.931730,0.229225,-0.328898,-0.916105,0.345195,-0.314676,-0.884182,0.713095,-0.307382,-0.630055,-0.355296,-0.629933,0.690573,-0.147984,-0.702872,0.695730,-0.697928,-0.271035,0.662862,-0.038331,0.205786,0.977813,0.017121,0.333689,0.942503,-0.036592,0.345561,0.937651,0.848140,-0.382183,-0.366832,0.697043,-0.525346,-0.487930,0.258522,0.941374,-0.216620,0.171514,0.944090,-0.281533,0.359172,0.919279,-0.160802,0.439222,0.822443,-0.361431,0.340983,0.870876,-0.353893,0.386242,0.889584,-0.243690,0.904324,-0.012726,0.426618,0.881161,0.049776,0.470168,0.893490,0.166112,0.417158,-0.539567,-0.156224,-0.827296,-0.400128,-0.339763,-0.851131,-0.422895,-0.351817,-0.835078,-0.489181,-0.351604,-0.798151,-0.475295,-0.278695,-0.834498,-0.497726,0.277688,0.821650,-0.540513,0.217444,0.812708,-0.559465,0.293008,0.775292,0.181158,0.804315,-0.565844,0.444166,0.735343,-0.511795,0.299478,0.819849,-0.487930,0.465133,-0.784356,0.410352,0.248665,-0.873867,0.417707,0.280221,-0.886593,0.367962,0.644612,-0.180792,0.742790,0.766320,-0.192633,0.612873,0.652791,-0.279946,0.703879,-0.089785,0.986602,0.136174,-0.103824,0.927152,0.359996,-0.243995,0.958831,0.145238,0.605487,-0.710288,-0.358959,0.788598,-0.396832,-0.469680,0.861415,-0.352184,-0.365917,-0.829005,-0.126530,0.544664,-0.659322,-0.116306,0.742790,-0.848994,0.282571,0.446425,0.651112,-0.298685,-0.697714,0.633931,-0.428327,-0.643910,0.352031,-0.436811,-0.827784,0.948790,-0.178076,-0.260811,0.625050,-0.658345,0.419324,0.629017,-0.701987,0.333964,0.588275,-0.744011,0.316782,0.073031,0.922727,0.378460,0.146062,0.883328,0.445357,0.285409,0.911832,0.295083,-0.089450,0.291391,-0.952391,-0.043397,0.191412,-0.980529,0.073397,0.199591,-0.977111,-0.050935,-0.231086,0.971587,-0.149083,-0.193060,0.969787,0.117924,-0.036256,0.992340,0.935026,-0.140477,0.325510,0.920469,-0.100223,0.377697,0.911313,-0.203589,0.357830,0.351054,0.499924,0.791681,0.241768,0.493240,0.835597,0.172796,0.370342,0.912656,-0.733390,0.274758,0.621784,-0.657704,0.406964,0.633839,-0.728751,0.230506,0.644795,0.720267,0.556932,0.413495,0.645314,0.543718,0.536546,0.595691,0.709159,0.377056,0.986267,0.072146,-0.148473,0.997711,-0.011139,0.066347,0.983581,0.177435,0.032136,-0.944700,0.164892,0.283364,-0.942747,0.021729,0.332743,-0.945494,0.166631,0.279733,0.743095,0.207038,0.636311,0.721946,0.054933,0.689718,0.861538,-0.173162,0.477218,-0.915738,0.163701,0.366863,-0.898801,0.357677,0.253395,-0.912564,0.331492,0.239326,0.953917,-0.020692,0.299295,0.957732,-0.096011,0.271126,0.851711,-0.279153,0.443403,-0.541429,-0.353954,0.762566,-0.447584,-0.457503,0.768334,-0.349651,-0.662160,0.662740,0.732109,0.207038,-0.648915,0.939451,-0.023804,-0.341838,0.857295,0.141484,-0.494980,0.401502,0.914701,0.045442,0.618763,0.783410,-0.057833,0.602924,0.782464,-0.155522,0.420728,-0.172002,-0.890713,0.494797,-0.317606,-0.808863,0.487167,-0.277688,-0.827967,0.821314,0.411176,0.395367,0.757927,0.424970,0.494888,0.826319,0.206885,0.523789,-0.582904,0.536180,0.610462,-0.539598,0.641102,0.545671,-0.537522,0.673452,0.507431,-0.850398,0.140904,-0.506882,-0.821497,0.037690,-0.568926,-0.907285,0.190893,-0.374645,0.645405,0.433393,0.628925,0.690054,0.272530,0.670431,0.501572,0.336070,0.797143,0.930601,-0.365795,0.012360,0.932768,-0.360057,0.016938,0.916715,-0.397748,-0.037355,0.564074,0.455061,0.688986,0.548692,0.538896,0.639119,0.584185,0.516831,0.625782,0.705924,0.435011,-0.558946,0.431349,0.590655,-0.681936,0.647786,0.402448,-0.646809,0.901273,-0.432447,-0.025880,0.978423,-0.206549,0.001648,0.874386,-0.286599,-0.391461,0.129917,-0.358043,-0.924589,-0.014191,-0.403974,-0.914640,0.030488,-0.258583,-0.965484,-0.587512,-0.383496,0.712546,-0.611805,-0.457595,0.645161,-0.311228,-0.184881,0.932157,0.765709,-0.450453,-0.459059,0.728690,-0.505173,-0.462325,0.708457,-0.431043,-0.558794,-0.668813,-0.426862,-0.608600,-0.781854,-0.459639,-0.421155,-0.552019,-0.343822,-0.759606,0.876064,-0.366466,-0.313364,0.879452,-0.315531,-0.356304,0.818995,-0.407697,-0.403729,-0.951659,0.027314,-0.305856,-0.888607,-0.188757,-0.417982,-0.796014,-0.005158,-0.605213,-0.059023,-0.209937,-0.975921,-0.049409,-0.445875,-0.893704,-0.131596,-0.319834,-0.938261,-0.181188,-0.274789,0.944243,0.048006,-0.330851,0.942442,-0.036744,-0.104648,0.993805,-0.484451,0.219092,0.846919,-0.439344,0.250954,0.862545,-0.593860,0.223640,0.772820,0.719718,-0.061708,0.691488,0.544298,-0.241096,0.803461,0.671926,-0.224738,0.705649,-0.945250,-0.319315,-0.067080,-0.969756,-0.230323,0.080447,-0.955596,-0.294290,0.014069,-0.731193,-0.184088,0.656819,0.067507,-0.678396,0.731559,-0.312784,-0.893185,0.323008,-0.402936,0.233589,-0.884884,-0.200568,0.298959,-0.932920,-0.505905,0.180303,-0.843532,0.223334,0.859767,-0.459243,0.174108,0.827418,-0.533860,0.407636,0.792138,-0.454176,0.962004,-0.123295,0.243477,0.961730,-0.009125,0.273812,0.949492,-0.144780,0.278268,-0.639271,-0.401776,-0.655629,-0.572771,-0.433363,-0.695761,-0.670949,-0.559740,-0.486251,0.522111,-0.368145,-0.769311,0.390606,-0.497421,-0.774560,0.115665,-0.406873,-0.906095,-0.857479,-0.379498,-0.347362,-0.790460,-0.422132,-0.443739,-0.879665,-0.375347,-0.291971,-0.947569,-0.310343,-0.075869,-0.402814,-0.112186,0.908353,-0.833461,-0.219642,0.507035,-0.784661,-0.018464,0.619648,-0.758446,0.293497,0.581866,-0.831507,0.079257,0.549791,0.694937,0.197028,0.691519,0.649678,0.081729,0.755760,0.744530,0.154637,0.649403,0.969115,0.050630,-0.241249,0.955290,0.010254,-0.295389,0.994690,-0.049623,0.089938,0.418683,0.411054,0.809748,0.413495,0.472854,0.778069,0.427992,0.520463,0.738853,-0.333354,0.162786,0.928617,-0.940001,-0.124729,0.317484,-0.959716,-0.273232,0.065127,-0.939879,-0.286630,-0.185583,-0.926908,-0.163457,-0.337748,-0.348857,-0.048372,-0.935911,-0.321787,-0.052553,-0.945341,-0.269539,-0.076724,-0.959899,0.026917,0.367687,-0.929533,0.277566,0.391308,-0.877377,0.297189,0.315500,-0.901151,-0.945067,-0.323496,0.046571,0.108371,-0.130802,-0.985443,-0.004852,-0.115696,-0.993255,0.069674,-0.063265,-0.995544,-0.694021,-0.300546,-0.654195,-0.722068,-0.363842,-0.588366,-0.678487,-0.467483,-0.566607,-0.730216,-0.106723,-0.674795,-0.579058,-0.188665,-0.793146,-0.578143,-0.127384,-0.805902,0.411145,-0.393597,-0.822169,0.197363,-0.455245,-0.868191,0.298776,-0.355998,-0.885403,0.892697,-0.056642,0.447035,0.863063,-0.008179,0.504990,0.853969,-0.042482,0.518540,-0.613392,-0.279000,0.738823,-0.396649,-0.402081,0.825190,-0.438887,-0.278390,0.854305,0.005737,0.402295,0.915464,0.092990,0.344218,0.934263,-0.063478,0.337107,0.939299,-0.427625,-0.387677,-0.816584,-0.380993,-0.307779,-0.871822,-0.465102,-0.499222,-0.731040,-0.508957,-0.251106,-0.823328,-0.524949,-0.205451,-0.825922,-0.490127,-0.263100,-0.830958,0.534654,-0.126469,-0.835536,0.631825,-0.151433,-0.760155,0.570452,-0.164739,-0.804590,0.672750,0.606403,-0.423841,-0.991668,0.106326,0.072573,-0.916349,0.022095,-0.399701,-0.639882,-0.333537,-0.692282,-0.526078,-0.360240,-0.770318,-0.394391,-0.501816,-0.769799,0.160863,0.629627,-0.760033,0.094668,0.594348,-0.798608,0.052278,0.489578,-0.870357,0.741142,0.108066,0.662557,0.486099,0.144108,0.861904,0.546312,-0.164006,0.821345,0.388226,-0.326701,-0.861690,0.375195,-0.225440,-0.899075,0.214515,-0.301798,-0.928922,0.302927,0.361431,0.881802,0.417249,0.427869,0.801752,0.346507,0.427473,0.834956,0.258400,-0.042817,-0.965087,0.406873,-0.002136,-0.913480,0.427320,-0.062838,-0.901883,-0.956969,-0.183050,0.225074,-0.954100,-0.026032,0.298318,-0.967437,-0.125675,0.219672,-0.977477,0.114841,0.176855,-0.966460,-0.026063,0.255409,-0.984924,-0.061769,0.161504,0.983673,-0.119053,0.134739,0.981048,-0.149510,0.123173,0.914304,-0.232917,0.331309,-0.486251,-0.528214,-0.696066,-0.584277,-0.438337,-0.682974,-0.418378,-0.425764,-0.802271,0.935118,-0.223945,0.274545,0.937376,-0.212989,0.275582,0.947996,-0.257515,-0.186987,-0.511643,0.041993,0.858150,-0.491653,0.150578,0.857662,-0.391278,0.084170,0.916379,0.957915,-0.115757,0.262581,0.910092,-0.154729,0.384350,0.922086,-0.060121,0.382214,0.397015,0.188116,-0.898312,0.202826,0.108188,-0.973205,0.190344,0.130070,-0.973052,0.972259,-0.204535,-0.113315,0.981536,-0.174139,-0.078768,0.948424,-0.310892,-0.061403,-0.983734,-0.144566,0.106540,-0.988952,-0.054567,0.137761,-0.979705,-0.120579,0.159948,0.933531,0.017609,-0.357982,0.827631,0.055574,-0.558489,0.860805,0.191778,-0.471389,-0.910062,0.082400,0.406171,-0.781610,0.158361,0.603290,-0.812494,0.019715,0.582598,-0.862911,-0.140172,0.485458,-0.782342,0.013123,0.622700,-0.864986,-0.429273,0.259713,0.889370,0.113620,0.442763,0.884457,-0.151616,0.441237,0.885403,-0.116428,0.449934,-0.979125,0.009339,-0.202948,-0.986053,-0.122776,-0.112125,-0.869961,-0.156590,-0.467544,0.876919,0.059236,0.476943,0.858821,0.023530,0.511673,0.968657,-0.084628,0.233406,-0.137730,0.577899,-0.804376,-0.031465,0.712546,-0.700888,-0.089175,0.673574,-0.733696,0.753716,0.177770,0.632649,0.849849,-0.034028,0.525864,0.880001,0.039888,0.473251,0.872585,-0.228614,0.431623,0.803308,-0.047914,0.593616,0.291177,-0.041688,0.955748,0.738884,-0.155217,0.655660,-0.422071,-0.420118,0.803339,0.653645,0.337107,0.677541,-0.951292,0.285989,0.114872,-0.991516,0.050172,0.119755,-0.973632,0.212043,0.083956,-0.147404,-0.564226,0.812311,-0.302744,-0.358196,0.883175,0.113926,-0.186682,0.975768,-0.028779,0.095767,0.994964,0.178503,0.160924,0.970672,0.915036,-0.282754,-0.287576,0.648427,-0.400952,-0.647084,0.732597,-0.177496,-0.657063,-0.179144,0.914365,-0.363018,-0.358074,0.918943,-0.165136,-0.030915,0.973449,-0.226722,-0.817103,-0.326762,-0.474899,-0.807367,-0.213843,-0.549883,-0.819880,-0.214606,-0.530747,-0.532975,-0.683035,0.499344,-0.666280,-0.496750,0.556108,-0.596789,-0.739738,0.310800,0.715415,0.048494,-0.696982,0.860347,-0.013337,-0.509507,0.783654,0.047578,-0.619343,-0.333415,0.877194,-0.345470,-0.051973,0.933805,-0.353984,-0.321085,0.908841,-0.266152,-0.890683,-0.373241,-0.259499,-0.949309,-0.146306,0.278115,-0.970977,-0.179693,0.157689,0.689901,0.374737,0.619312,0.667318,0.476608,0.572253,0.703757,0.366710,0.608417,-0.974517,-0.030824,0.222053,-0.923460,-0.066378,0.377819,-0.944914,0.125584,0.302194,-0.213599,0.735405,-0.643055,-0.252297,0.573717,-0.779199,-0.316324,0.691946,-0.648915,-0.741264,-0.258522,-0.619404,-0.863826,-0.060518,-0.500076,-0.780480,-0.020142,-0.624836,-0.966491,-0.248756,0.063143,-0.970794,-0.170080,0.169073,-0.913358,-0.209357,0.349193,-0.538896,-0.284463,0.792871,-0.395337,-0.402783,0.825465,-0.445479,-0.144261,0.883572,0.977569,0.005158,-0.210395,0.996734,-0.078585,-0.017670,0.970794,0.016388,-0.239265,0.570086,0.819971,0.050783,0.512955,0.856655,0.054659,0.508957,0.860317,0.028260,-0.439100,-0.452101,-0.776360,-0.275948,-0.310221,-0.909696,-0.416150,-0.443220,-0.793939,0.836909,-0.056276,-0.544389,0.846431,-0.081973,-0.526109,0.906217,-0.062899,-0.418043,-0.950926,-0.308786,0.019471,-0.915464,-0.284127,0.284860,-0.950835,-0.243904,-0.190680,-0.112125,0.841365,-0.528642,-0.003784,0.823542,-0.567186,-0.038209,0.829951,-0.556475,0.993316,-0.113315,-0.020508,0.979308,-0.153722,0.131382,0.970275,-0.239204,-0.036348,-0.453444,-0.485092,-0.747673,-0.452315,-0.461165,-0.763329,0.821345,0.299387,-0.485488,-0.368633,0.397626,-0.840205,0.844508,0.194983,-0.498733,0.905637,0.194494,0.376782,0.879513,0.211554,0.426191,0.833338,0.152959,0.531114,0.717673,0.052309,-0.694388,0.579089,0.002380,-0.815241,0.918088,0.238441,0.316568,0.906552,0.306619,0.289956,0.906705,0.335917,0.254982,-0.363414,-0.744133,0.560503,-0.108921,-0.761193,0.639271,-0.194159,-0.789727,0.581896,0.397259,-0.593860,0.699606,0.345714,-0.627583,0.697531,0.222907,-0.876370,0.426862,0.322703,0.945585,0.041322,0.358959,0.927091,0.107852,0.373821,0.915738,0.147221,-0.183996,0.021577,0.982665,0.993500,0.004944,0.113529,0.950865,-0.073214,0.300760,0.935972,-0.230323,0.266182,-0.068911,-0.218574,-0.973357,-0.095523,-0.245064,-0.964751,-0.257515,-0.249977,-0.933348,-0.363140,0.528916,-0.767022,-0.438765,0.590625,-0.677206,-0.512406,0.586718,-0.627033,-0.434980,-0.719962,0.540757,-0.381817,-0.718497,0.581317,-0.425459,-0.791559,0.438612,-0.157598,0.313608,-0.936369,-0.088260,0.347606,-0.933439,0.811914,-0.572985,0.111454,0.969359,-0.207160,-0.131932,0.840144,-0.523545,0.141362,0.060945,0.460158,-0.885708,-0.043367,0.455916,-0.888943,0.195166,0.322611,-0.926176,0.322947,0.929655,0.177190,0.196051,0.980590,0.002472,-0.239235,-0.145451,0.959990,-0.447035,-0.096500,0.889279,-0.513810,-0.120182,0.849422,-0.059206,-0.487564,-0.871059,0.408277,-0.457472,-0.789941,0.764153,-0.224433,-0.604724,0.773949,-0.336406,0.536424,0.703421,-0.492477,0.512436,0.715079,-0.514969,0.472671,-0.797754,0.164251,0.580126,-0.833949,0.122318,0.538072,-0.789270,0.614002,0.000000,-0.687613,0.702414,-0.183752,-0.622730,0.781365,-0.040437,0.978210,-0.092196,0.185980,0.965606,-0.232643,0.115909,0.970489,-0.059267,0.233711,0.914914,-0.159001,0.370983,0.821284,-0.058443,0.567492,0.838832,-0.205420,0.504135,0.474227,-0.672506,0.568133,0.420637,-0.727165,0.542467,0.518418,-0.757988,0.395764,-0.026246,0.761132,-0.648030,0.144108,0.737236,-0.660054,0.172277,0.767266,-0.617695,-0.012299,-0.053987,-0.998444,0.044343,0.030702,-0.998535,0.124912,-0.053804,-0.990692,0.941282,-0.130863,0.311136,0.826807,-0.229591,0.513443,0.875912,-0.227058,0.425642,-0.444655,-0.275369,-0.852290,-0.556902,-0.221320,-0.800531,-0.470626,-0.303934,-0.828303,0.323283,-0.241432,-0.914975,0.204657,-0.324107,-0.923612,0.388928,-0.220862,-0.894375,-0.874081,0.255104,0.413343,-0.935148,-0.012268,0.354015,-0.060152,0.055849,0.996612,0.448897,0.449812,0.772088,0.260567,0.602313,0.754509,0.917631,0.232673,0.322153,0.971496,0.135990,0.194067,0.940642,0.059450,0.334117,-0.971831,0.019990,0.234718,-0.990234,0.136509,0.027863,-0.982482,0.161412,0.092868,0.728813,0.599200,-0.331309,0.699759,0.525224,-0.484176,0.648976,0.603748,-0.462874,-0.634327,-0.605090,-0.481124,-0.129063,-0.783776,-0.607471,-0.513871,-0.777520,-0.362407,0.996002,-0.068575,-0.056917,0.998077,-0.061800,0.004181,0.998688,0.009613,-0.050203,0.177068,-0.556261,0.811884,0.172704,-0.732902,0.658010,-0.042970,-0.794580,0.605579,0.382244,0.920682,-0.078677,0.325419,0.919279,-0.221320,0.526139,0.844417,-0.100436,0.086367,-0.626148,-0.774865,0.969329,0.212104,0.123905,0.936216,0.349956,-0.031068,0.849818,0.526566,-0.021790,0.149297,0.636982,-0.756249,0.187109,0.640431,-0.744835,0.013337,0.689047,-0.724570,-0.868923,0.020600,0.494461,-0.857173,-0.088443,0.507309,-0.897031,-0.024842,0.441267,0.327555,0.935087,0.135075,0.333445,0.925138,0.181402,0.492782,0.866054,0.083895,-0.300150,-0.139927,-0.943541,0.192572,-0.059572,-0.979461,-0.110477,-0.157933,-0.981231,-0.861080,0.266366,-0.433088,-0.755608,0.352245,-0.552202,-0.902432,0.211280,-0.375439,0.186834,0.973266,0.133396,0.377026,0.922330,0.084323,-0.170019,0.421827,-0.890561,-0.258553,0.387768,-0.884732,-0.147191,0.428968,-0.891232,-0.872219,-0.077181,-0.482925,-0.805658,-0.147771,-0.573595,-0.899411,-0.010315,-0.436964,-0.140263,0.237709,0.961119,0.107456,-0.001679,0.994201,-0.165716,-0.405530,0.898923,0.233345,0.271462,0.933714,0.222510,0.401227,0.888516,0.180822,0.238258,0.954192,-0.464125,0.872433,-0.153020,-0.649709,0.728935,-0.215583,-0.468307,0.855129,-0.222297,-0.671194,-0.257241,-0.695212,-0.598193,-0.211859,-0.772820,-0.688986,-0.182989,-0.701285,0.420759,0.420881,0.803613,0.626576,0.309030,0.715445,0.451491,0.402417,0.796350,0.047090,0.997772,0.046663,-0.334056,0.936796,0.103854,0.038240,0.997955,0.050600,-0.112888,0.907315,-0.404950,0.087069,0.871731,-0.482162,-0.035493,0.902860,-0.428449,-0.180578,-0.112674,-0.977081,-0.135960,-0.009552,-0.990661,-0.097476,0.057772,-0.993530,-0.899838,-0.418958,-0.121281,-0.085604,0.296487,-0.951170,-0.084750,0.134922,-0.987213,-0.063784,0.212867,-0.974975,-0.432630,-0.389752,-0.812922,-0.524735,-0.343730,-0.778741,-0.480789,-0.511948,-0.711814,0.630116,-0.330515,-0.702597,0.479598,-0.307657,-0.821772,0.454024,-0.366802,-0.811945,-0.079165,-0.174139,-0.981506,0.176366,-0.049104,-0.983093,0.070009,-0.169866,-0.982971,-0.709799,0.408612,-0.573717,-0.419813,0.551225,-0.721000,-0.466781,0.721366,-0.511582,-0.160009,-0.451582,0.877743,-0.480422,0.469192,0.740959,-0.427045,0.614643,0.663167,-0.395978,0.556871,0.730094,0.372906,0.862026,0.343242,0.307382,0.857387,0.412763,0.150304,0.941527,0.301462,0.698233,-0.394635,-0.597217,0.778252,-0.351634,-0.520218,0.731162,-0.222755,-0.644765,0.668447,0.679983,-0.301248,0.792627,0.548906,-0.265267,0.651387,0.686270,-0.323527,-0.950987,-0.219977,-0.217170,-0.925962,-0.191504,-0.325419,-0.968566,-0.142491,-0.203803,0.583850,0.782617,0.215766,0.381512,0.873135,0.303385,0.348735,0.842311,0.410901,-0.967925,0.195807,0.157384,-0.946043,0.108982,0.305124,-0.015229,0.990814,0.134281,-0.968352,-0.235420,0.082705,-0.389355,0.490951,0.779321,-0.519700,-0.118168,0.846095,-0.410108,0.024659,0.911679,0.359966,-0.242500,-0.900876,0.440870,-0.295755,-0.847407,0.354717,-0.280099,-0.891995,-0.989410,-0.142613,0.025788,-0.914335,-0.064608,0.399731,-0.994415,-0.026490,0.102023,-0.442854,0.161107,0.881985,-0.291787,0.161046,0.942808,-0.316050,0.244972,0.916532,0.389477,-0.662587,0.639729,0.167791,-0.333659,-0.927610,0.228156,-0.353404,-0.907193,0.308084,-0.351360,-0.884060,0.593493,-0.088046,-0.799982,0.819269,-0.087191,-0.566698,0.571856,0.132481,-0.809564,-0.871181,0.392895,0.294351,-0.857845,0.406354,0.314554,-0.965850,0.085726,0.244362,-0.737846,-0.674673,0.019044,-0.945585,0.018525,0.324809,-0.448927,-0.154454,-0.880093,-0.484909,-0.382000,-0.786706,-0.683920,-0.294992,-0.667226,0.113285,0.769738,0.628193,0.341594,0.796289,0.499191,0.321177,0.774987,0.544237,-0.216895,0.066866,-0.973876,-0.252419,0.150578,-0.955809,0.034852,0.106265,-0.993713,0.821009,0.062655,0.567431,0.711356,0.076815,0.698599,0.762719,0.093478,0.639912,0.119633,0.129917,-0.984252,0.291787,0.359996,0.886105,0.116001,0.281350,0.952544,0.251839,0.212439,0.944151,0.008576,-0.111820,-0.993683,0.040101,-0.279885,-0.959166,-0.059511,-0.185308,-0.980865,-0.869839,0.014100,0.493088,-0.842830,-0.164769,0.512284,-0.593616,-0.349071,0.725059,-0.383923,-0.517808,-0.764458,-0.549608,-0.602863,-0.578326,-0.551866,-0.389996,-0.737083,-0.850795,0.353282,0.388989,-0.948363,0.153935,0.277261,-0.913999,-0.243477,0.324473,0.146489,-0.483810,0.862789,0.263192,-0.488784,0.831721,-0.090793,-0.549974,-0.830195,-0.216895,-0.500015,-0.838374,-0.176244,-0.529588,-0.829707,-0.509629,0.603168,0.613544,-0.516160,0.458174,0.723594,0.190435,-0.392285,0.899899,0.362712,-0.260292,0.894772,-0.948515,0.113346,-0.295663,-0.967040,-0.148198,-0.206885,0.420667,0.902646,0.090640,0.323801,0.929807,0.174871,0.501419,0.840815,0.203864,-0.210883,0.843593,-0.493789,-0.025910,0.821528,-0.569536,0.054079,0.323710,-0.944578,0.018403,0.117588,-0.992889,0.158696,0.424451,-0.891415,0.149052,-0.229102,0.961913,0.217963,-0.045106,0.974883,0.234870,0.073855,-0.969207,0.378887,0.142857,-0.914335,0.207099,0.181341,-0.961333,0.755364,-0.374798,-0.537492,0.783227,-0.363720,-0.504227,0.866390,-0.351115,-0.355022,-0.688131,-0.398724,-0.606189,-0.705710,-0.347667,-0.617298,-0.864467,-0.271889,-0.422773,0.943876,-0.090152,0.317698,0.928190,0.033052,0.370586,0.874599,0.347575,0.337931,-0.994598,-0.095584,-0.039705,-0.993622,0.097293,0.056795,-0.965361,-0.052370,0.255531,-0.756523,0.499619,-0.421918,-0.693106,0.628925,-0.352153,-0.795343,0.526353,-0.300607,0.064791,-0.391858,-0.917722,0.253792,-0.246254,-0.935362,0.871822,-0.312204,-0.377361,0.849239,-0.514328,-0.119175,0.864101,-0.386212,-0.322642,-0.288125,-0.432539,-0.854305,-0.889615,-0.324534,-0.321299,-0.819483,-0.327555,-0.470199,-0.979247,-0.183660,-0.085299,-0.973510,-0.228492,0.000946,-0.983367,-0.175542,-0.046113,-0.226508,0.016419,0.973846,-0.308145,-0.104007,0.945616,-0.284829,0.053926,0.957030,0.637776,-0.712210,0.293161,0.725700,-0.631764,0.272408,0.754357,-0.605121,0.254463,0.187567,0.916745,0.352672,0.266243,0.933470,0.240242,0.311380,0.916288,0.251900,-0.252693,-0.253853,0.933622,-0.355724,-0.377514,0.854915,-0.133305,-0.186468,0.973357,-0.096347,-0.718070,-0.689230,-0.611042,-0.493210,-0.619129,0.243477,-0.826411,-0.507675,-0.745140,-0.332682,-0.577960,-0.697989,-0.208533,-0.685049,-0.672079,-0.126011,-0.729667,-0.344096,-0.279489,-0.896329,-0.927946,-0.273995,-0.252571,-0.923215,-0.265389,-0.277840,-0.700278,-0.375958,-0.606800,-0.794946,0.576861,0.187750,-0.752953,0.617878,0.226295,-0.804529,0.547624,0.229743,0.297830,0.474654,-0.828242,0.245094,0.513596,-0.822260,-0.110691,0.550584,-0.827357,-0.729942,-0.003357,0.683493,-0.454421,0.098148,0.885342,-0.617084,0.043062,0.785699,-0.477584,-0.547258,-0.687307,-0.691244,-0.411847,-0.593738,-0.568438,-0.376812,-0.731315,-0.301431,-0.697195,0.650380,-0.270180,-0.654195,0.706381,0.932340,-0.266152,-0.244697,0.945738,-0.170202,-0.276742,0.963317,-0.245918,-0.107273,0.276681,-0.328135,-0.903165,-0.146977,-0.390667,-0.908689,-0.054323,-0.296609,-0.953429,-0.041353,-0.216712,-0.975341,0.160649,-0.343944,-0.925108,-0.907376,-0.416456,-0.056490,-0.927458,-0.372234,-0.035188,-0.945433,-0.325755,-0.003998,-0.057924,0.493088,-0.868007,-0.179418,0.511368,-0.840388,-0.126102,0.492691,-0.860988,0.973662,-0.082308,0.212470,0.990844,-0.057527,0.122013,0.985900,-0.113102,0.123142,0.192175,-0.082095,-0.977905,-0.264901,-0.197546,-0.943785,0.018281,-0.259072,-0.965667,-0.379192,-0.273385,-0.883999,-0.253761,-0.380993,-0.889035,-0.311258,-0.054994,-0.948729,0.984039,-0.032929,0.174688,0.998657,-0.005066,0.051149,0.984741,-0.006928,0.173772,0.114139,-0.144719,0.982849,0.043001,-0.281075,0.958708,0.031709,-0.100497,0.994415,0.268288,0.432722,0.860653,0.336894,0.307657,0.889828,0.581256,0.384320,0.717185,-0.472518,0.750969,-0.461226,-0.475906,0.678762,-0.559221,-0.563616,0.707663,-0.426008,-0.304025,0.947691,0.097018,-0.271676,0.962340,0.004700,-0.238838,0.966124,0.097690,-0.881710,-0.018738,0.471358,-0.766198,0.050874,0.640553,-0.843379,-0.191443,0.501999,0.424390,0.710715,0.560991,0.396558,0.738212,0.545640,0.183782,0.784326,0.592456,0.930845,0.124149,-0.343608,0.721549,-0.060030,-0.689718,0.706381,-0.158849,-0.689749,0.200354,0.420576,0.884823,0.124424,-0.000916,0.992218,0.332713,-0.037782,0.942259,-0.345317,0.938444,0.005829,0.759728,0.630787,0.157781,0.627644,0.768334,0.125126,-0.394299,-0.359416,-0.845759,-0.491562,-0.531358,-0.689901,-0.168126,-0.402997,-0.899594,-0.098727,0.245918,-0.964232,0.078341,0.397443,-0.914243,-0.050203,0.283425,-0.957671,0.954802,-0.088229,0.283731,0.911405,-0.201727,0.358623,0.971282,0.167211,0.169225,0.170476,-0.323527,-0.930723,0.190313,-0.269845,-0.943876,0.114231,-0.343608,-0.932127,0.107303,0.176092,-0.978484,0.213202,0.138737,-0.967101,0.370037,0.087680,-0.924863,-0.005554,0.026063,0.999634,-0.665273,-0.020386,0.746300,-0.861415,-0.274819,0.427107,-0.099796,-0.404889,-0.908872,-0.491440,-0.348125,-0.798273,-0.239845,-0.454329,-0.857906,0.788476,-0.340617,-0.512101,0.838862,-0.257790,-0.479415,0.822413,-0.261391,-0.505264,0.159795,0.374798,-0.913205,0.199011,0.332347,-0.921903,0.336894,0.331065,-0.881405,0.522446,0.432722,0.734672,0.534532,0.340159,0.773644,0.478866,0.482376,0.733451,0.924345,-0.282968,0.255867,0.992248,-0.121860,-0.023621,0.983337,-0.114353,0.141240,-0.477950,0.858699,0.184790,-0.381695,0.908567,0.169652,-0.502243,0.844997,0.183477,0.258522,-0.446394,-0.856655,0.138615,-0.436171,-0.889096,0.370556,-0.353587,-0.858852,0.905026,-0.306803,0.294595,0.096194,-0.147984,-0.984283,0.363628,-0.162175,-0.917295,0.709555,0.156590,0.686972,0.696493,0.303873,0.650014,0.824152,0.186377,0.534745,0.931913,0.132908,0.337413,0.851100,0.391430,0.349803,0.821009,0.426740,0.379223,0.636128,0.609302,-0.473342,0.358928,0.788568,-0.499283,0.597522,0.700552,-0.390027,0.935423,0.100986,0.338786,0.859462,0.193365,0.473159,0.788598,0.487259,0.375042,0.685018,-0.723594,0.084567,-0.767846,-0.457289,-0.448622,-0.602191,-0.597949,0.528947,-0.691366,-0.264412,0.672353,-0.521012,-0.629139,0.576769,0.954772,-0.146855,-0.258492,0.812464,-0.243599,-0.529618,0.979461,-0.167028,-0.112827,-0.389019,-0.349620,0.852290,-0.202155,-0.196051,0.959502,-0.360820,0.156163,0.919462,-0.773186,-0.294595,-0.561571,-0.758202,-0.427625,-0.492111,-0.662587,-0.472152,-0.581378,0.623371,0.704611,-0.338939,0.557054,0.795068,-0.239845,0.632130,0.693106,-0.346355,0.707083,0.333506,-0.623524,0.776421,0.398389,-0.488296,0.757744,0.450270,-0.472274,0.954039,0.139073,0.265419,0.910092,-0.137486,0.390881,0.987457,0.143864,0.064760,-0.204199,-0.482284,0.851863,-0.300943,-0.420850,0.855739,-0.019715,-0.415540,0.909360,-0.711509,0.702475,-0.015290,-0.730399,0.677572,0.085849,-0.796686,0.604327,-0.002136,0.440748,-0.379559,-0.813410,0.528764,-0.327342,-0.783074,0.604114,-0.426008,-0.673421,-0.939238,-0.283029,-0.194159,-0.923704,-0.251900,-0.288614,-0.370464,0.744957,0.554735,-0.210730,0.642933,0.736351,-0.271676,0.657643,0.702597,-0.777429,0.542680,-0.317881,-0.818293,0.568346,-0.085604,-0.732841,0.672018,-0.106265,0.960265,-0.238777,0.144292,0.958525,-0.280190,0.051637,0.925230,-0.379376,0.001831,-0.227943,0.305856,-0.924375,-0.213904,0.295724,-0.930998,-0.130009,0.386731,-0.912961,0.962249,0.238289,-0.131382,0.907224,0.410077,-0.093570,0.980102,0.198126,0.010529,-0.628559,-0.359508,-0.689657,-0.550066,-0.363659,-0.751762,-0.659047,-0.380108,-0.648946,0.907559,-0.379192,0.180364,0.857906,-0.479659,0.184149,0.826960,-0.503433,0.250313,0.350475,-0.639454,0.684255,0.616810,-0.394696,0.680960,0.586016,-0.459944,0.667074,0.544664,0.416395,-0.727928,0.379040,-0.252846,-0.890133,-0.076601,-0.323222,-0.943205,-0.672964,-0.352519,-0.650227,-0.730613,-0.171880,-0.660756,-0.591632,-0.231269,-0.772271,0.858943,-0.512009,-0.006226,0.881954,-0.430250,0.192389,0.842982,-0.499771,0.198859,0.640187,-0.318491,-0.699057,0.521470,-0.349895,-0.778191,0.382458,-0.413312,-0.826350,-0.314951,-0.470931,-0.824000,-0.690146,-0.441908,-0.573016,-0.536302,-0.414960,-0.734947,0.386883,-0.068606,0.919553,0.286782,-0.075625,0.954985,0.499069,-0.289499,0.816736,0.198187,0.851009,-0.486312,0.513901,0.571123,-0.640065,0.211249,0.658162,-0.722587,-0.061220,0.777764,-0.625538,0.025056,0.732383,-0.680380,0.011536,0.750969,-0.660207,0.843043,-0.400800,-0.358623,0.907163,-0.367962,-0.204047,-0.825983,0.304880,-0.474075,-0.681082,0.501999,-0.532975,-0.686422,0.516465,-0.511887,0.130650,-0.482620,0.865993,-0.921354,0.058687,-0.384228,-0.933714,0.116276,-0.338542,-0.168493,0.038331,0.984924,-0.231635,0.159154,0.959685,-0.338694,-0.058931,0.939024,0.687094,-0.388012,-0.614246,0.656178,-0.259285,-0.708609,0.492386,-0.352214,-0.795892,0.888272,-0.152654,0.433119,0.887326,-0.300729,0.349498,-0.404950,-0.226905,-0.885708,-0.011933,-0.309702,-0.950743,0.342509,-0.243934,-0.907285,-0.063692,-0.118870,-0.990844,-0.257607,-0.232215,-0.937895,-0.005768,-0.090609,-0.995849,0.131657,0.130375,-0.982665,0.079012,0.357646,-0.930479,0.270363,0.016541,0.962584,0.117832,-0.000519,0.993011,0.330515,0.019105,0.943571,0.900113,0.307413,-0.308573,0.996918,0.059175,-0.051332,0.892117,0.212439,-0.398724,-0.547563,0.076235,0.833247,-0.562151,0.041780,0.825953,-0.693960,-0.458052,-0.555467,-0.647786,-0.530412,-0.546800,0.393475,0.066103,0.916929,0.494430,0.033815,0.868557,0.466170,-0.068758,0.881985,0.446699,-0.399030,-0.800745,0.499741,-0.492843,-0.712272,0.500626,-0.447890,-0.740745,0.585986,-0.304819,-0.750755,0.465285,-0.278176,-0.840266,0.359081,-0.524247,-0.772118,0.951689,-0.305918,0.025819,0.971068,-0.237007,0.028016,0.888241,0.335276,-0.313913,0.992523,-0.038697,-0.115726,0.913938,0.240730,-0.326701,0.529649,0.353435,0.771050,0.684011,0.319987,0.655507,0.377209,0.199225,0.904416,0.026002,0.283883,-0.958495,0.139256,0.283547,-0.948759,0.967437,0.026887,-0.251625,0.978637,0.080447,-0.189093,0.947722,0.154454,-0.279122,0.199255,0.978484,0.053316,-0.276254,0.850734,0.447127,0.318583,0.915128,0.246956,-0.046236,0.472976,-0.879849,-0.021851,0.583239,-0.811975,-0.001251,0.471114,-0.882046,-0.876705,-0.095523,-0.471389,-0.875576,-0.252052,-0.412091,-0.951353,-0.272774,-0.143162,-0.592090,0.780908,0.198950,-0.720542,0.568133,0.397473,0.979644,-0.125553,0.156560,0.980346,-0.090365,0.175268,0.971374,-0.176153,0.159307,0.548479,-0.036622,0.835353,0.714438,0.015564,0.699484,0.813837,-0.548082,0.192907,0.735649,-0.668996,0.105899,-0.486007,-0.465438,-0.739677,-0.520920,-0.321146,-0.790857,-0.402448,-0.506241,-0.762688,0.305734,0.032472,-0.951537,0.275216,-0.118046,-0.954070,0.246864,0.160436,0.955657,0.137181,0.188269,0.972472,0.150731,0.033296,0.988006,0.703940,-0.577654,-0.413190,0.395367,-0.592975,-0.701468,0.757805,-0.619251,-0.205359,-0.373669,0.848659,-0.374310,-0.309488,0.853298,-0.419568,-0.214759,0.898129,-0.383648,-0.284310,0.620258,0.731040,0.513779,0.804804,0.297067,0.184820,0.900143,0.394421,0.006989,0.953581,0.300974,-0.038850,0.894040,0.446272,0.911313,-0.330699,-0.245186,0.849147,0.162084,0.502640,0.969329,-0.057009,0.238990,-0.768670,-0.332560,-0.546373,-0.488723,0.145787,-0.860134,-0.449538,0.108005,-0.886685,-0.448378,0.162389,-0.878933,-0.914670,-0.342814,-0.213965,-0.877346,-0.469955,-0.096805,-0.931028,-0.221107,-0.290231,-0.140751,-0.985809,0.091372,-0.375195,-0.920713,0.107150,-0.258980,-0.939238,0.225166,0.754814,0.267861,-0.598712,0.243446,0.281961,-0.928007,-0.080721,0.603046,-0.793603,-0.939756,-0.317301,0.127018,-0.834773,-0.348857,-0.425916,-0.923704,-0.299936,-0.238258,-0.715903,-0.218940,-0.662954,0.009247,0.137303,-0.990478,0.035493,0.251869,-0.967101,0.007691,0.216559,-0.976226,-0.544267,-0.314432,-0.777703,-0.418622,-0.278817,-0.864284,-0.573016,-0.257668,-0.777947,0.076083,-0.695090,0.714866,-0.657826,-0.693258,0.294290,-0.932463,0.273995,0.235359,-0.965423,0.200842,0.166112,-0.910276,0.264595,0.318308,-0.251564,0.500809,-0.828181,-0.042421,0.627552,-0.777398,-0.063143,0.624073,-0.778771,0.259316,-0.678610,0.687155,0.140996,-0.834346,0.532853,0.273019,0.811609,0.516434,0.241127,0.554735,0.796289,0.472152,0.196631,0.859279,0.497543,0.193732,0.845515,-0.774499,-0.302469,0.555528,-0.805353,-0.295419,0.513901,-0.742485,-0.443098,0.502335,-0.988433,-0.092959,-0.119724,-0.971892,-0.094455,0.215583,-0.951140,-0.062349,0.302377,-0.712210,0.278268,0.644398,-0.783044,0.259896,0.565020,-0.609973,0.131077,0.781487,-0.854030,0.200781,0.479904,-0.925748,0.181829,0.331523,-0.849757,0.272225,0.451399,0.986602,0.101077,-0.127934,0.990966,-0.097659,-0.091586,0.977416,0.000641,-0.211310,0.509262,-0.011170,0.860530,0.421766,-0.161565,0.892178,0.487747,-0.053865,0.871303,-0.538682,0.795038,0.278695,-0.976348,-0.197790,0.087191,-0.965392,0.257363,0.041932,-0.993011,-0.117069,-0.014557,0.598865,-0.412336,-0.686514,0.320048,-0.329539,-0.888211,-0.891903,-0.076601,0.445662,-0.817103,-0.155919,0.554979,-0.713706,0.080020,0.695822,0.160833,0.965911,-0.202704,0.443220,-0.019959,-0.896176,0.535112,-0.177587,-0.825892,0.547655,-0.016816,-0.836512,0.549120,0.511399,0.660970,0.503281,0.583270,0.637562,0.460952,0.616596,0.638203,0.969848,-0.084597,0.228431,0.934507,-0.157628,0.319102,0.951262,-0.096194,0.292917,-0.997589,0.023774,0.065035,-0.966491,-0.172002,0.190466,-0.982055,0.075076,0.172979,0.046999,0.150884,-0.987426,0.068850,0.404675,-0.911863,-0.870052,0.008545,0.492874,-0.521958,0.823695,0.221442,-0.681326,0.726310,0.090793,-0.857112,-0.121616,-0.500534,-0.701682,0.007141,-0.712424,-0.561724,-0.119572,-0.818598,-0.458419,-0.316813,-0.830317,0.027741,-0.182562,-0.982788,-0.110935,-0.270333,-0.956328,-0.232459,-0.584582,0.777306,-0.481216,-0.250984,0.839869,-0.412305,-0.448134,0.793176,-0.917966,-0.272103,-0.288522,-0.930113,-0.181646,-0.319163,-0.933775,-0.272530,-0.231819,0.335643,0.579089,0.742943,0.376843,0.702445,0.603748,0.459029,0.652394,0.602985,-0.899106,0.205695,0.386334,-0.669851,-0.314158,-0.672719,-0.715873,-0.309915,-0.625660,0.193457,0.491073,-0.849330,0.151341,0.426099,-0.891903,0.168554,0.507645,-0.844905,0.289163,-0.150395,-0.945372,-0.075869,-0.453078,-0.888211,0.311106,-0.332224,-0.890378,0.414655,0.019379,0.909757,0.403882,0.083010,0.911008,0.442671,0.030274,0.896146,-0.338450,0.055147,-0.939360,-0.694693,-0.447615,-0.563036,-0.553575,-0.471480,-0.686422,-0.608692,-0.403211,-0.683279,0.502182,0.428632,0.750999,0.539018,0.404614,0.738731,-0.885495,-0.423566,-0.190924,-0.910367,-0.231513,-0.342875,-0.376293,-0.290658,-0.879696,-0.405164,-0.286416,-0.868191,-0.698874,0.559130,-0.445998,-0.769189,0.570940,-0.286935,0.917966,-0.297067,0.262734,0.878140,-0.128849,0.460677,0.926847,0.115329,0.357250,0.128758,0.024293,-0.991363,0.580706,-0.136662,-0.802515,0.542375,-0.259163,-0.799127,0.261666,0.964812,-0.024812,0.348857,0.937162,0.000641,0.192999,0.980804,-0.026948,0.873989,0.057863,0.482406,0.868374,0.044801,0.493851,-0.249580,0.739372,-0.625294,-0.456099,0.785913,-0.417432,-0.352519,0.812922,-0.463515,0.765191,0.204291,0.610462,0.265877,0.052492,0.962554,0.253365,0.346843,0.903043,0.223640,-0.255318,-0.940611,0.226081,-0.397015,-0.889492,0.283670,-0.141972,-0.948332,0.188452,-0.422620,-0.886471,0.100192,0.036531,-0.994293,0.105899,0.085055,-0.990722,0.054842,0.951231,0.303507,-0.047029,-0.158330,-0.986236,-0.343303,-0.492935,0.799463,-0.371807,-0.700613,0.608997,-0.448592,-0.627979,0.635884,-0.205359,0.475173,-0.855586,-0.113102,0.421064,-0.899930,-0.001740,0.392804,-0.919584,-0.809107,0.237526,0.537461,-0.896268,-0.332621,0.293283,-0.956023,-0.101108,0.275216,-0.920560,-0.096133,0.378552,-0.894772,-0.138401,0.424482,0.579669,0.160558,0.798853,0.738395,-0.015168,0.674154,0.692740,0.055025,0.719047,0.810022,0.416059,0.413160,0.673757,0.627979,0.389386,0.846034,0.374004,0.379833,0.445357,0.513779,0.733238,0.577136,0.533860,0.617939,0.567766,0.369457,0.735588,-0.835353,0.435804,-0.335002,-0.925626,0.212043,-0.313425,-0.969512,0.180822,-0.165319,0.219642,0.507736,-0.833033,0.049593,0.287301,-0.956542,-0.114719,0.373486,-0.920499,-0.065218,-0.181951,-0.981140,-0.881924,-0.087649,-0.463118,-0.762627,-0.040986,-0.645497,-0.840358,-0.047975,-0.539872,-0.976379,0.096286,0.193274,0.906461,0.204718,-0.369304,0.919309,0.252968,-0.301370,0.950591,0.147099,-0.273263,0.023896,0.202216,0.979034,0.184790,0.212622,0.959471,0.115177,0.176489,0.977508,0.156102,-0.178686,0.971435,-0.052004,0.068209,0.996307,-0.009156,0.173711,0.984741,0.200354,0.430921,0.879849,0.257851,0.303781,0.917173,0.707083,0.472060,0.526414,0.713370,0.494003,0.497024,-0.646687,-0.215583,-0.731620,-0.673635,-0.192206,-0.713614,-0.717429,-0.163244,-0.677175,0.714133,0.498459,0.491440,0.672842,0.619404,0.404431,0.896359,-0.259529,0.359355,0.966735,-0.136814,-0.216071,0.926664,-0.129002,0.353008,-0.344584,0.930113,0.126804,-0.166478,0.962889,0.212409,0.463210,-0.270425,0.843959,0.334056,-0.446028,0.830317,0.692221,-0.110935,0.713095,0.826258,0.409803,0.386395,0.809839,0.352458,0.468947,-0.076846,-0.297922,0.951476,-0.321848,-0.157537,0.933561,-0.471480,-0.072695,0.878842,0.593677,-0.216987,0.774865,0.840846,-0.091769,0.533403,0.810877,-0.317759,0.491379,-0.821619,-0.177557,0.541642,0.070528,0.915891,-0.395093,-0.199011,0.915159,-0.350475,0.104709,0.953215,-0.283486,0.918760,0.130894,0.372417,0.938383,0.043428,0.342784,0.872341,-0.070040,0.483840,0.049562,0.413953,0.908933,0.021729,0.330668,0.943480,-0.183447,0.398267,0.898709,0.907529,0.088229,-0.410535,0.905545,0.261177,-0.334239,0.836695,0.229286,-0.497330,-0.595233,-0.275063,-0.754967,-0.722953,-0.328562,-0.607715,-0.644032,-0.157018,-0.748680,0.277566,-0.220832,-0.934965,0.220313,-0.387524,-0.895138,0.338786,-0.322733,-0.883755,-0.961394,0.257393,0.097079,-0.978515,0.201147,0.045106,-0.939024,0.337413,-0.066134,0.083041,-0.306253,0.948302,0.215979,-0.060976,0.974456,0.029725,-0.321299,0.946501,0.391247,0.620685,0.679403,0.433424,0.591235,0.680105,0.530412,0.801904,-0.274972,0.464156,0.849239,-0.251625,0.613300,0.725578,-0.312021,-0.541246,0.461043,0.703177,-0.458571,0.375866,0.805231,-0.482131,0.434187,0.760918,-0.409406,0.463607,-0.785760,-0.447859,0.544389,-0.709250,-0.157323,0.667287,-0.727989,-0.248024,-0.399213,-0.882656,-0.151646,-0.493393,-0.856441,-0.057253,-0.260292,-0.963805,-0.496719,-0.198157,-0.844966,-0.232765,-0.319285,-0.918607,-0.478683,-0.171697,-0.861019,0.248726,0.483169,0.839442,0.803583,-0.594012,-0.036897,0.776269,-0.629688,0.028565,-0.734275,-0.211646,0.644978,-0.569018,-0.344188,0.746788,0.481246,-0.044496,0.875423,0.430036,-0.068361,0.900204,0.165960,-0.489334,-0.856136,-0.390332,-0.525101,-0.756218,-0.079958,-0.469069,-0.879513,0.267953,-0.452498,0.850520,0.336009,-0.484176,0.807855,0.425550,-0.370403,-0.825617,0.609027,-0.407575,-0.680380,0.633290,-0.391369,-0.667623,0.121677,0.699820,0.703848,-0.637928,-0.218940,0.738304,-0.690573,-0.435377,0.577502,-0.547349,-0.377667,0.746788,-0.720206,-0.693075,-0.030152,-0.757591,-0.630421,-0.169103,-0.697226,0.007447,-0.716788,-0.632832,-0.052919,-0.772454,0.398907,0.529435,0.748680,0.419721,0.481704,0.769250,0.765770,0.396649,0.506180,0.069460,0.707724,-0.703024,0.311472,0.577013,-0.754997,0.112308,0.803430,-0.584674,0.267037,0.945158,0.187964,0.215430,0.963347,0.159642,0.122013,0.980438,0.154302,0.061434,0.992218,0.108249,-0.130528,0.963195,0.234901,-0.110324,0.971496,0.209693,0.216956,-0.949034,-0.228553,-0.022248,-0.921110,-0.388592,0.088778,-0.937162,-0.337321,0.974700,0.172704,0.141758,0.945616,0.147038,0.290139,0.998657,-0.017670,0.048524,0.238075,-0.815149,0.528031,-0.335124,-0.640156,0.691275,-0.018616,-0.337413,0.941160,-0.230232,-0.510056,0.828730,-0.266427,-0.431562,0.861812,-0.171545,-0.312632,0.934233,-0.077822,0.094119,-0.992492,0.249153,0.136082,-0.958831,-0.000610,-0.102481,-0.994720,-0.599170,0.071230,0.797418,-0.623127,0.039369,0.781121,-0.672719,-0.044801,0.738517,0.242836,0.946165,0.213843,0.406476,0.885342,0.225623,0.431654,0.878048,0.206580,-0.040620,0.665395,-0.745354,0.150487,0.647450,-0.747063,0.103916,0.646596,-0.755699,-0.921751,-0.271798,-0.276559,-0.985229,-0.167302,-0.036103,-0.953337,-0.301645,0.010529,-0.928434,-0.364818,0.069826,0.169195,-0.250435,-0.953215,-0.072054,-0.230934,-0.970275,0.098422,-0.405225,0.908872,-0.573565,-0.495712,-0.652120,-0.631642,-0.481307,-0.607746,-0.658315,0.730766,0.180517,-0.578509,0.788598,0.208380,-0.034242,0.253761,-0.966643,-0.125187,0.318247,-0.939695,-0.012879,0.309915,-0.950652,0.918516,0.053163,0.391766,0.939756,-0.207434,0.271676,-0.899350,-0.432325,-0.064882,0.173132,-0.896084,-0.408643,0.072939,-0.934996,-0.347026,0.057344,0.538224,-0.840815,0.093875,0.375103,-0.922178,0.164006,0.397961,-0.902585,0.760460,-0.194891,0.619404,0.882931,-0.091250,0.460494,-0.775018,0.483108,0.407300,-0.621052,0.288217,0.728813,-0.066317,0.954070,-0.292123,-0.225837,0.917844,-0.326365,-0.154485,0.980499,-0.121220,-0.753685,0.294900,-0.587329,-0.769280,0.398389,-0.499466,-0.837794,0.342601,-0.425092,-0.406842,0.722343,-0.559130,-0.306406,0.772790,-0.555742,-0.253090,0.794031,-0.552629,-0.856746,-0.342509,-0.385540,-0.496841,-0.319102,-0.807031,-0.438734,-0.261879,-0.859584,0.309580,0.749352,0.585315,0.403699,0.780816,0.476760,0.435743,0.749382,0.498489,-0.196173,0.320719,0.926633,-0.451247,0.285470,0.845485,0.160710,0.520981,-0.838282,0.460891,0.329173,-0.824122,0.315195,0.492264,-0.811335,0.410993,0.277291,0.868435,0.331797,0.471236,0.817194,-0.860866,0.205176,0.465590,-0.926023,0.069460,0.370952,-0.855617,0.094058,0.508927,0.080599,-0.076327,0.993805,0.051210,-0.488266,-0.871181,0.080599,-0.299753,-0.950591,-0.036134,-0.367656,-0.929228,0.192236,0.218177,-0.956786,-0.061037,0.298166,-0.952544,0.047975,0.194647,-0.979675,-0.604144,0.072451,-0.793542,-0.526383,0.047914,-0.848872,-0.525895,-0.370678,-0.765496,-0.334330,-0.318461,-0.886990,-0.778924,-0.332347,-0.531754,0.095248,0.053102,-0.994018,-0.276803,-0.007782,-0.960875,-0.037263,-0.009430,-0.999237,-0.654775,0.755699,0.012421,-0.754631,0.654469,0.046541,-0.561541,0.818659,0.120029,-0.712455,-0.313791,-0.627613,-0.770684,-0.240059,-0.590228,-0.773675,-0.363536,-0.518876,0.652211,0.430342,0.624012,0.651143,0.273934,0.707755,0.482376,0.234077,0.844081,-0.456862,-0.501511,0.734642,-0.688131,0.154180,0.709006,-0.045167,-0.299203,-0.953093,-0.108249,-0.216895,-0.970153,-0.192267,-0.294809,-0.936003,0.896664,0.164098,0.411145,0.694662,0.089572,0.713706,0.806421,0.246406,0.537522,0.148381,-0.165380,-0.974975,0.256966,-0.167974,-0.951689,0.259987,-0.193396,-0.946013,-0.186468,-0.215857,-0.958434,0.447249,-0.414411,-0.792596,0.459487,-0.414167,-0.785668,-0.501846,0.239051,0.831233,-0.402570,0.297433,0.865688,-0.461257,0.188513,0.866970,-0.370098,-0.914518,-0.163213,0.475234,0.713187,0.515213,0.714743,0.555345,0.425062,0.068667,0.205176,-0.976287,-0.060244,0.080782,-0.994903,-0.273568,0.061312,-0.959868,-0.657308,-0.339793,-0.672628,-0.331431,-0.337107,-0.881161,-0.093173,-0.517960,-0.850307,-0.060121,-0.477493,-0.876553,-0.473800,-0.437117,0.764458,-0.474136,-0.547563,0.689413,0.369823,-0.305734,-0.877346,0.168249,-0.406537,-0.897977,0.384228,-0.396985,-0.833491,-0.917386,-0.065737,-0.392468,-0.957823,-0.119083,-0.261422,-0.626820,-0.368328,-0.686605,-0.393109,-0.460280,-0.795953,-0.528031,-0.417432,-0.739525,-0.132328,0.906186,-0.401624,-0.638905,0.280404,0.716330,-0.963225,0.007019,0.268532,-0.627888,0.514267,0.584155,0.242775,-0.222175,-0.944273,-0.330149,-0.335978,-0.882077,0.264595,-0.450179,0.852809,-0.051943,-0.490066,0.870113,0.463485,-0.155217,0.872372,0.582141,-0.201575,-0.787652,0.622578,-0.243538,-0.743675,0.594226,-0.224250,-0.772393,0.585009,-0.348888,0.732109,0.548845,-0.247963,0.798273,0.684408,-0.245491,0.686483,-0.942717,-0.234474,0.237251,0.151891,-0.424665,0.892483,-0.314066,-0.423383,0.849727,-0.045656,-0.593524,0.803491,0.769585,0.253945,0.585803,0.684591,0.496078,0.534043,0.771172,0.214820,0.599261,-0.496963,0.695364,-0.519059,-0.060183,0.829341,-0.555437,-0.289102,0.701804,-0.651051,0.734764,0.288552,0.613849,0.674398,0.104099,0.730949,0.923368,0.015198,0.383557,0.197729,0.972655,0.121769,0.213507,0.970214,0.114200,0.396893,0.917631,-0.019623,0.953764,-0.285379,-0.094028,0.890103,-0.448256,0.082125,0.891842,-0.385113,0.237190,0.688620,0.120853,0.714957,0.790338,0.227332,0.568896,-0.883847,-0.454970,0.108463,-0.880612,-0.460707,0.110569,-0.839381,-0.415754,0.350078,0.518876,0.505783,0.689138,0.310923,-0.232521,0.921537,0.334422,-0.334056,0.881222,-0.854213,0.100589,0.510056,-0.527635,-0.097385,-0.843837,-0.661702,-0.132664,-0.737907,-0.593707,-0.143590,-0.791742,0.515397,-0.009674,0.856868,0.766350,-0.191809,0.613086,0.737144,0.011444,0.675619,0.008148,-0.001404,-0.999939,-0.015687,0.091922,-0.995636,-0.003662,-0.024842,-0.999664,-0.201453,0.419202,0.885220,-0.420362,0.897916,0.130436,-0.419233,0.894375,0.155797,-0.275735,0.957427,0.085177,0.980895,-0.181066,-0.070986,0.982269,-0.100558,-0.158116,-0.074618,0.179510,-0.980895,-0.114902,0.130100,-0.984802,-0.384014,-0.252693,0.888058,-0.457717,-0.079989,0.885464,-0.259682,-0.133091,0.956450,-0.690603,0.604572,-0.396893,-0.763726,0.479110,-0.432569,-0.753075,0.580584,-0.309397,0.660298,0.445601,0.604480,0.439680,0.889462,-0.124393,0.120396,0.971099,0.205969,0.292825,0.868129,-0.400739,0.558794,0.567583,0.604602,0.695364,0.444288,0.564806,0.553087,0.475692,0.683950,0.737114,0.452223,0.502121,0.629536,0.226539,0.743187,0.935545,-0.077792,0.344493,0.282235,-0.096347,-0.954466,0.153020,-0.019623,-0.988006,0.380352,-0.105136,-0.918821,0.522294,0.104434,-0.846339,-0.134495,-0.060671,-0.989044,-0.366863,0.275155,-0.888638,0.893948,0.077517,0.441328,0.897183,-0.201910,0.392743,0.909238,-0.127476,0.396222,-0.582751,-0.200903,-0.787408,-0.627491,-0.481643,-0.611744,-0.801233,-0.008789,-0.598224,0.367870,0.070833,0.927152,0.508652,0.285745,0.812128,0.369823,0.070742,0.926389,-0.814508,0.111026,-0.569414,-0.584735,0.031129,-0.810602,-0.712851,0.030213,-0.700613,0.333323,0.928251,0.164953,0.332102,0.932890,0.139134,0.415082,0.903348,0.107913,-0.931150,-0.246834,-0.268319,-0.868068,-0.365429,-0.335948,-0.940092,-0.340251,-0.020783,-0.930631,-0.334697,0.147801,0.092166,-0.250954,-0.963591,0.218024,-0.366436,-0.904508,0.263802,0.244148,-0.933134,0.034272,0.178259,-0.983367,-0.154637,0.343638,-0.926267,0.873379,-0.293863,-0.388318,0.872433,-0.346629,-0.344432,0.935453,-0.327311,-0.133213,0.915220,-0.188543,0.356059,0.752708,-0.642750,-0.142308,0.073458,-0.651875,0.754753,0.224647,-0.439314,0.869778,0.528886,0.839259,0.125950,0.698782,0.697012,0.160649,0.545030,0.819453,0.177190,0.936125,-0.349712,0.036714,0.811670,-0.394971,0.430250,0.912473,-0.408734,-0.017182,0.399487,0.909268,0.116672,0.578265,0.791742,0.196722,0.600696,0.791864,0.109745,-0.054903,-0.469131,-0.881405,0.138798,-0.453688,-0.880245,-0.598529,-0.249733,-0.761162,-0.697409,-0.279092,-0.660054,-0.726341,-0.356426,-0.587634,-0.428632,-0.570299,-0.700674,-0.506882,-0.419416,-0.753044,-0.556078,-0.551988,-0.621326,0.218970,0.967589,0.125523,0.578051,0.804407,0.136753,0.401624,0.913297,0.067385,0.578845,-0.247169,0.777062,0.510117,-0.143193,0.848079,0.676962,-0.260414,0.688375,0.192083,0.020875,-0.981140,-0.002167,0.111972,-0.993683,0.096652,0.093753,-0.990875,0.494217,0.833369,-0.247322,0.367687,0.875240,-0.314158,0.675222,-0.213569,-0.705985,0.567156,-0.367718,-0.736930,0.347148,-0.366924,-0.863033,-0.202307,0.457961,-0.865627,-0.258980,0.409284,-0.874844,-0.051454,0.549547,-0.833857,0.022034,0.282052,-0.959136,-0.132054,0.264840,-0.955199,0.004517,0.214606,-0.976684,0.355480,0.268380,-0.895291,0.269814,0.289529,-0.918332,0.682638,-0.730705,-0.005036,0.712790,-0.699271,0.053865,0.068300,0.568468,-0.819819,-0.021119,0.477981,-0.878109,0.187872,0.576189,-0.795404,0.354015,0.927335,0.121250,0.402631,0.893887,0.196936,0.463393,0.859462,0.215735,0.927061,-0.008301,0.374767,0.778222,0.464675,0.422346,0.746391,-0.025269,0.664968,-0.955412,0.273751,0.110416,-0.923856,0.368023,0.104923,-0.970153,0.241554,0.020600,0.920835,0.158391,0.356273,0.923063,0.157170,0.351024,0.820002,0.374065,0.433180,0.530320,-0.726249,0.437330,0.019471,-0.324412,-0.945708,0.049318,-0.402905,-0.913877,-0.874050,0.302866,0.379833,-0.516648,0.107974,0.849330,-0.465224,0.216376,0.858333,-0.506455,0.013398,0.862148,-0.934843,0.345256,0.082705,0.115879,-0.207007,-0.971435,0.095401,-0.164434,-0.981750,0.089908,-0.284524,-0.954436,-0.710959,0.354320,0.607410,-0.819147,0.458022,0.345195,-0.183935,0.226722,0.956420,-0.269021,0.300943,0.914884,-0.163640,0.224281,0.960662,0.739677,-0.142766,-0.657613,0.855037,0.144780,0.497909,0.851405,0.087161,0.517167,0.832362,0.155095,0.532029,-0.554308,0.211097,0.805048,-0.954527,-0.263497,-0.139225,-0.926603,-0.361492,-0.103488,-0.287667,-0.211219,-0.934111,-0.408185,-0.321574,-0.854366,-0.419752,-0.233589,-0.877041,0.414045,-0.157994,0.896420,-0.041658,0.833918,0.550249,-0.212378,0.971068,0.109043,0.059481,0.808740,0.585101,-0.880978,0.279916,0.381420,-0.912687,0.263100,0.312601,-0.873501,0.311869,0.373730,-0.767541,-0.159337,-0.620838,-0.855800,-0.469161,-0.217780,-0.844997,-0.048006,-0.532579,-0.752892,-0.258858,-0.605060,-0.762017,-0.416974,-0.495376,-0.648976,-0.261940,-0.714255,-0.308359,0.590350,-0.745903,0.826594,-0.476211,-0.299875,0.914090,-0.369304,-0.167455,0.837428,-0.368053,-0.404004,0.510544,0.832392,0.215491,0.329966,0.910337,0.249672,0.447188,0.848506,0.282815,-0.908078,-0.414594,0.058962,-0.883389,-0.389355,0.260781,-0.734245,-0.672140,-0.095218,-0.624104,-0.224555,-0.748344,-0.654317,-0.152837,-0.740562,0.685415,-0.253487,-0.682577,0.759362,-0.277108,-0.588672,0.822291,-0.269814,-0.500992,-0.510880,-0.443342,-0.736473,-0.791406,0.554857,0.256478,-0.832087,0.358135,0.423475,-0.870235,0.453108,0.193213,-0.963103,0.151463,0.222358,-0.976043,0.032380,0.215094,-0.956847,0.271645,0.103061,-0.936827,0.264534,0.228736,-0.938200,0.189856,0.289346,-0.896664,0.222968,0.382427,0.279977,-0.009461,0.959929,0.373791,-0.000946,0.927488,0.252815,0.007111,0.967467,0.380413,0.525925,0.760674,0.377453,0.573870,0.726737,0.375988,0.542070,0.751488,0.010926,0.729728,-0.683615,0.101382,0.804590,-0.585070,-0.029756,0.743797,-0.667684,-0.768090,-0.156163,-0.620960,-0.825129,-0.365734,-0.430525,-0.608966,0.420423,0.672567,-0.786462,0.250435,0.564531,-0.581927,0.439283,0.684347,0.546434,0.658193,-0.517808,0.430555,0.808405,-0.401318,0.559954,0.632252,-0.535386,-0.439222,0.880581,0.177770,-0.424909,0.882077,0.203345,-0.457198,0.869747,0.185614,-0.339732,0.190283,0.921049,0.191565,0.550981,0.812220,0.168401,0.509232,0.843959,-0.474380,-0.740501,0.475997,0.057283,0.231666,-0.971099,0.008240,0.164129,-0.986389,-0.071108,0.231574,-0.970183,-0.119663,-0.365429,-0.923093,-0.144597,-0.313456,-0.938505,0.101535,-0.315134,-0.943571,-0.680288,-0.410260,0.607349,-0.489914,-0.075320,0.868496,-0.922422,-0.347606,0.168035,-0.912198,-0.334422,0.236671,0.975677,-0.088565,-0.200476,0.997345,0.011170,-0.071535,0.903317,0.024903,-0.428205,-0.931578,-0.352245,0.089572,-0.986175,-0.160802,0.039705,0.364422,0.008728,0.931181,0.376568,-0.415967,0.827723,-0.551408,-0.420759,-0.720328,-0.354625,-0.225135,-0.907468,-0.024476,0.760369,-0.649007,0.045869,0.717643,-0.694845,0.037111,0.625263,-0.779504,0.099429,0.617939,-0.779870,0.613819,0.764489,0.196783,0.581713,0.777551,0.238746,0.589984,0.718070,0.369121,0.473281,-0.256020,0.842860,0.433851,-0.359142,0.826289,0.535234,-0.140843,0.832850,0.099338,0.266030,-0.958800,0.134953,0.160314,-0.977783,0.266671,0.284738,-0.920743,0.384411,0.887753,0.253182,0.492904,0.833216,0.250435,0.219398,0.966124,0.135716,-0.165532,0.924528,-0.343211,-0.102939,0.935911,-0.336802,-0.206366,0.944762,-0.254585,-0.211158,0.802301,-0.558275,0.071688,0.784906,-0.615406,-0.160375,0.833277,-0.529069,0.387860,-0.700156,0.599414,-0.435163,-0.010956,0.900266,-0.611652,-0.095431,0.785333,-0.454451,0.025269,0.890378,0.233680,-0.054262,-0.970763,0.236213,-0.028962,-0.971252,0.826624,0.126926,0.548235,0.804559,-0.032777,0.592944,0.844447,0.082186,0.529252,0.755577,-0.276284,-0.593890,0.736625,-0.230415,-0.635792,0.888607,-0.396130,0.231117,0.867397,-0.439375,0.233528,0.922636,-0.338206,0.185186,-0.959105,-0.280679,0.036134,-0.956877,-0.282785,0.066225,-0.958220,-0.285745,0.010407,-0.204138,0.092807,-0.974517,-0.921751,-0.330241,0.203131,-0.900510,-0.395276,0.181127,0.659627,0.579516,-0.478530,0.693503,0.662526,-0.282937,0.633839,0.634693,-0.442030,-0.269356,0.901059,0.339824,0.243324,0.969665,0.022553,0.304636,0.913022,0.271187,0.282998,0.949736,0.133702,-0.156163,0.190954,-0.969085,-0.269295,-0.140568,-0.952727,-0.274483,0.044832,-0.960509,-0.085757,-0.912870,0.399091,0.066744,-0.920835,0.384136,-0.039491,-0.843654,0.535386,-0.943968,0.279275,-0.175787,0.244911,-0.462783,-0.851924,0.155889,-0.553484,-0.818110,-0.522233,0.195349,0.830103,0.114841,-0.134678,-0.984191,0.988403,0.054323,0.141606,0.944517,-0.116306,0.307108,0.930143,-0.164708,0.328104,0.851680,-0.054109,-0.521195,0.690023,-0.060274,-0.721244,0.800409,-0.075259,-0.594653,-0.980010,-0.049165,0.192633,-0.984069,-0.003540,0.177618,0.189489,-0.438429,0.878536,0.164006,-0.223823,0.960723,0.040651,0.274361,-0.960753,-0.095340,0.464370,-0.880459,-0.183966,0.252754,-0.949858,0.010651,0.282754,-0.959105,-0.069063,0.299448,-0.951598,-0.005921,0.270516,-0.962676,-0.646840,0.273354,0.711905,-0.422468,0.142247,0.895108,-0.344127,0.358928,0.867580,-0.660237,-0.496261,-0.563707,-0.037355,0.782586,-0.621387,0.074404,0.768578,-0.635365,0.265542,0.697287,-0.665761,0.162511,-0.933866,-0.318461,-0.266488,0.299722,0.916013,-0.308786,0.397748,0.863948,-0.103092,-0.327128,0.939329,-0.248634,-0.339976,-0.906949,-0.094028,-0.299264,-0.949492,-0.180853,-0.219855,-0.958617,0.087039,-0.383251,-0.919523,0.005890,-0.334117,-0.942503,-0.229804,-0.418348,-0.878719,0.602954,-0.468642,0.645589,0.393048,-0.499008,0.772301,0.304880,-0.691427,0.654927,0.914396,0.087252,0.395245,0.952330,-0.077639,0.294992,0.956908,0.087191,0.276925,-0.031404,0.976257,0.214270,0.130222,0.971709,0.196997,0.320627,0.944548,0.070620,-0.071596,0.900266,-0.429365,-0.086917,0.900601,-0.425794,-0.429945,0.787164,-0.442122,0.409314,-0.143925,0.900937,0.446669,-0.074374,0.891568,0.023560,0.730888,-0.682089,-0.005615,0.792230,-0.610157,0.602374,0.681783,-0.415052,0.528275,0.664144,-0.528947,0.540788,0.622059,-0.566179,0.653279,0.569475,-0.498856,0.311716,0.798242,-0.515366,0.482253,0.658895,-0.577258,0.388653,0.886349,0.251534,0.191473,0.760857,0.619983,0.369335,0.624348,0.688284,0.522996,0.747307,0.409803,0.234413,-0.384411,0.892880,0.077090,-0.212165,0.974181,0.581011,-0.144078,0.801019,0.727500,-0.671285,0.141697,0.687521,-0.688833,0.229713,-0.292947,-0.062227,-0.954070,-0.388653,-0.072237,-0.918516,-0.023865,0.010010,-0.999664,-0.921384,-0.159551,-0.354350,-0.782647,-0.168523,-0.599170,-0.905698,-0.304758,-0.294626,0.029969,-0.189062,-0.981475,0.004639,-0.214820,-0.976623,0.206702,-0.214118,-0.954680,-0.448012,-0.352855,-0.821436,-0.466140,-0.389447,-0.794336,-0.539354,-0.484115,-0.688955,-0.957091,-0.287667,0.034181,-0.947966,-0.313425,0.055422,-0.972228,-0.190130,0.136235,-0.000092,-0.148350,-0.988922,0.985168,-0.169500,0.025788,0.974242,-0.181219,0.134159,-0.825343,-0.032075,-0.563707,-0.999390,0.029267,-0.018464,-0.967467,-0.183508,0.174078,0.550584,0.116916,0.826502,0.659505,0.153905,0.735740,0.634907,0.296701,0.713309,-0.084780,0.165624,-0.982513,-0.947813,-0.294656,0.121525,-0.955290,-0.280404,0.093448,-0.961364,-0.259499,0.091739,-0.957762,-0.137944,0.252266,-0.977081,-0.193152,0.089236,-0.013733,-0.466994,-0.884121,0.009980,-0.548479,-0.836085,-0.161534,-0.401166,-0.901639,-0.131108,0.170598,-0.976562,-0.171239,0.220099,-0.960295,-0.121403,0.287027,-0.950163,0.203436,0.218818,-0.954283,0.943205,0.032777,0.330576,0.879910,0.106571,0.462996,0.917447,-0.092196,0.387005,-0.375683,0.154790,0.913724,-0.406110,0.237800,0.882321,-0.313303,0.179937,0.932432,-0.347362,-0.339335,0.874142,-0.195654,-0.629353,0.752037,-0.213935,-0.875332,0.433546,0.309397,0.450758,-0.837275,0.234657,0.630696,-0.739677,0.289804,0.591205,-0.752617,0.975768,-0.218574,-0.007538,0.021973,0.468398,-0.883236,0.144810,0.471328,-0.869961,0.109287,0.497787,-0.860347,-0.936247,-0.078097,0.342540,-0.963225,0.058046,0.262307,-0.946532,0.033906,0.320811,0.391736,-0.803949,0.447371,-0.220374,-0.338267,0.914853,-0.339732,-0.232002,0.911435,-0.941099,0.154454,0.300729,-0.854946,0.312693,0.413831,-0.933103,0.158147,0.322886,0.111118,0.989898,0.087741,-0.016144,0.998871,0.044527,-0.008423,0.962493,0.271126,-0.199164,0.319681,-0.926328,-0.171850,0.274209,-0.946165,-0.963378,-0.111118,0.243965,-0.976867,0.022156,0.212622,-0.968200,-0.147710,0.201880,0.594165,-0.073489,-0.800928,-0.825617,-0.404706,-0.393109,0.939329,-0.040590,0.340587,-0.735588,0.670003,0.099948,0.888730,0.389843,0.241066,0.946532,0.226814,0.229316,0.950926,0.209723,0.227363,0.903958,-0.268349,-0.332865,0.838252,-0.318735,-0.442366,0.831568,-0.377392,-0.407483,-0.004822,0.289163,-0.957244,-0.423444,-0.099307,-0.900449,-0.363262,0.032868,-0.931089,-0.087954,-0.085940,-0.992401,0.773553,-0.207617,0.598712,0.557817,-0.039369,0.829005,0.768395,-0.486648,-0.415571,0.686666,-0.535203,-0.491958,0.063204,-0.019990,-0.997772,0.864772,0.022340,-0.501602,0.923826,-0.055269,-0.378765,0.910184,-0.156896,-0.383282,0.046480,0.225776,-0.973052,0.173681,0.419019,-0.891171,0.257179,0.267678,-0.928526,0.166204,-0.197760,-0.966033,-0.016114,-0.103214,-0.994507,0.861873,0.172674,0.476791,0.801508,0.207770,0.560686,0.749931,0.072054,0.657552,0.356670,0.855251,-0.375866,0.227393,0.853450,-0.468917,-0.482040,-0.330119,-0.811548,-0.461806,-0.378063,-0.802332,-0.260781,-0.439314,-0.859615,-0.427198,0.901944,0.062777,-0.309214,0.945402,0.102603,0.877468,0.310953,0.365123,0.786431,0.439711,0.433729,0.545946,0.816950,0.185705,0.687582,0.684408,0.242439,0.689749,0.716697,0.102695,0.351909,0.930174,0.104373,0.368511,0.928709,0.040590,0.338115,0.940031,0.044160,-0.769066,-0.294717,0.567125,-0.606616,-0.123447,0.785333,-0.694296,-0.349467,0.629109,0.464553,-0.875484,-0.132969,0.144017,-0.989074,-0.030915,0.567400,-0.821711,0.053102,0.480728,0.863155,0.154271,0.337931,0.941130,0.002747,0.388348,0.918302,0.076785,-0.075838,0.026032,-0.996765,-0.083834,-0.068911,-0.994079,-0.101749,-0.099521,-0.989807,-0.366466,-0.027100,0.930021,-0.256111,-0.245613,0.934904,-0.374645,-0.047731,0.925901,-0.241371,-0.128544,-0.961852,-0.140172,0.019471,-0.989929,-0.970031,0.185888,0.156377,0.444441,0.880184,0.166448,0.481491,0.871303,0.094607,0.234107,0.944639,0.229774,-0.309366,0.501846,-0.807703,-0.281716,0.549913,-0.786218,-0.362468,0.478408,-0.799829,-0.356761,0.746605,-0.561480,-0.065584,0.778069,-0.624714,-0.075961,0.815638,-0.573504,-0.522813,0.666982,-0.530778,-0.327342,0.762871,-0.557512,-0.454787,0.593249,-0.664235,-0.904294,0.128208,0.407178,-0.979430,-0.079958,0.185095,-0.889676,-0.057161,0.452956,-0.927824,-0.034333,0.371349,-0.940428,0.114353,0.320139,-0.949858,-0.074984,0.303507,0.965056,-0.254646,0.061281,0.972564,-0.228797,0.041383,-0.882412,-0.088992,-0.461928,-0.963408,0.112339,-0.243294,-0.169622,-0.504929,-0.846309,-0.279214,-0.537767,-0.795465,-0.161992,-0.527787,-0.833766,-0.310587,0.492111,-0.813227,-0.118961,0.639912,-0.759148,-0.165899,0.646718,-0.744438,-0.494491,-0.098392,-0.863582,-0.293435,0.803552,-0.517869,-0.298502,0.801630,-0.517930,0.970061,-0.001007,0.242836,0.971038,-0.159978,0.177282,0.891720,-0.114444,0.437819,-0.165410,-0.253182,-0.953154,-0.444472,-0.311899,-0.839717,-0.209418,-0.198370,-0.957457,0.993316,-0.016511,0.114078,0.956633,0.281014,-0.076571,-0.117313,0.783349,-0.610370,-0.136570,0.681692,-0.718741,-0.157781,0.841334,-0.516923,-0.193884,0.840846,-0.505325,-0.379162,-0.102756,-0.919584,-0.361431,-0.144627,-0.921079,-0.210822,-0.142979,-0.966979,0.621784,-0.680563,0.387463,0.757439,-0.235908,0.608753,0.600848,-0.772790,0.204321,-0.307443,0.850368,-0.426984,-0.093692,0.855159,-0.509751,-0.070315,0.885708,-0.458815,-0.278390,0.919553,-0.277200,-0.249489,0.878933,-0.406446,0.350078,0.360576,0.864528,0.892697,-0.048585,0.447981,-0.925718,0.025666,-0.377331,-0.937956,-0.072024,-0.339122,-0.923154,-0.067965,-0.378338,0.295602,0.895230,-0.333384,0.319956,0.847835,-0.422803,0.176519,0.890133,-0.420087,0.996155,-0.087130,0.006409,0.972991,-0.176672,-0.148503,0.943876,-0.200476,0.262398,-0.750877,-0.443129,-0.489639,-0.720359,-0.335887,-0.606800,-0.742729,-0.417341,-0.523545,0.007508,-0.111057,0.993774,0.101077,0.274392,-0.956267,-0.190832,0.833522,-0.518448,-0.017426,0.908628,-0.417188,-0.083560,0.818964,-0.567675,-0.111362,0.194830,-0.974487,0.549272,0.229163,-0.803583,-0.552721,-0.251930,0.794366,-0.627430,-0.187597,0.755699,-0.574328,-0.436720,0.692373,-0.589068,0.766778,-0.254982,-0.239143,0.934324,-0.264260,-0.355846,0.893277,-0.274575,0.135533,0.879757,-0.455672,0.231727,0.883450,-0.407147,0.086184,0.838191,-0.538499,0.260567,-0.340770,0.903287,-0.030213,-0.411328,0.910977,0.195074,-0.393262,0.898465,-0.567461,-0.252998,-0.783532,-0.621113,-0.190100,-0.760277,0.034486,0.322275,-0.945982,0.075045,0.243141,-0.967071,0.007599,0.968200,0.250038,0.218268,0.975585,0.022980,0.157140,0.976165,0.149602,-0.457106,-0.288247,0.841395,0.206580,-0.304880,0.929685,-0.590991,0.788110,0.172002,-0.470779,0.871456,0.137455,0.066805,-0.298349,-0.952086,0.123478,-0.189795,-0.973998,0.282815,0.958617,0.032197,0.037751,-0.902310,-0.429365,-0.043123,-0.964599,-0.260109,-0.743034,-0.279794,0.607898,-0.607593,-0.216681,0.764092,-0.758415,-0.277078,0.589923,-0.577685,-0.465438,-0.670522,-0.504593,-0.439833,-0.742882,-0.314707,-0.516495,-0.796319,-0.968078,0.173589,0.180761,-0.945860,0.254707,0.201025,-0.878964,0.183691,0.440046,-0.817713,0.276772,0.504685,-0.874172,0.205176,0.440107,0.873165,0.285745,0.394848,0.933195,0.206275,0.294229,0.895047,0.309702,0.320811,-0.831782,-0.171850,-0.527787,0.648701,-0.365429,-0.667531,0.560442,-0.222907,-0.797601,0.282296,-0.307169,-0.908811,0.350780,-0.739402,0.574633,0.190710,-0.725730,0.661000,0.443800,-0.600421,0.665181,-0.905026,-0.164708,0.392102,-0.894467,-0.211798,0.393689,-0.935972,-0.107974,0.335093,0.608814,0.118290,-0.784417,0.608417,0.082919,0.789239,0.593799,0.097903,0.798608,-0.498337,0.842647,0.203925,-0.423322,0.895108,0.139866,-0.535447,0.812799,0.229377,-0.416211,-0.105533,-0.903104,-0.451369,-0.000458,-0.892300,0.851863,0.494827,-0.171484,0.718558,0.650960,-0.244697,0.787347,0.546678,-0.284890,-0.653340,-0.389111,-0.649373,-0.563768,-0.435987,-0.701468,0.601428,-0.240944,-0.761711,0.649007,-0.250557,-0.718314,0.757164,0.615772,0.217933,0.557146,0.706931,0.435652,0.791467,0.516343,0.327006,-0.098514,-0.251198,-0.962889,-0.082827,-0.297311,-0.951170,0.452956,-0.085940,0.887356,0.346751,-0.074984,0.934935,0.874264,0.185583,0.448500,0.862758,0.061617,0.501816,0.890896,0.182379,0.415937,0.237922,-0.033113,0.970702,0.113834,0.042940,0.992553,0.204352,-0.105319,0.973205,-0.966399,-0.071474,0.246773,-0.936308,-0.220496,0.273232,-0.980895,-0.086123,0.174322,-0.014222,0.314005,-0.949309,-0.122562,0.162633,-0.979034,-0.096927,0.234840,-0.967162,-0.301584,-0.282754,-0.910520,-0.307596,-0.380627,-0.872036,0.623981,-0.438337,-0.646870,0.617695,0.110233,-0.778619,0.638508,0.108798,-0.761864,0.633839,0.236732,-0.736320,-0.041322,0.287729,-0.956816,-0.704642,-0.205084,-0.679250,-0.244881,0.041841,0.968627,-0.172857,-0.063906,0.982849,0.057711,-0.993011,0.102756,0.183172,-0.976745,0.111148,0.194250,-0.976928,0.088687,-0.979400,-0.193152,0.058718,0.579821,0.567980,0.584094,0.388653,0.704245,0.594104,0.401898,0.742241,0.536210,-0.680410,-0.449843,-0.578478,-0.723838,-0.422193,-0.545701,0.129215,0.858699,0.495895,0.115452,0.786065,0.607257,0.154210,0.842738,0.515732,0.048738,0.571459,0.819147,0.153050,0.480270,0.863643,-0.948912,0.179998,0.259102,-0.853175,0.406201,0.327189,-0.762047,0.632221,0.139683,-0.341075,0.493545,0.800012,0.439497,0.452589,0.775872,0.533006,0.358562,0.766350,-0.099002,-0.403211,-0.909696,0.100620,-0.336375,-0.936308,-0.193121,-0.320292,-0.927396,0.270486,0.004608,-0.962706,0.012848,-0.074892,-0.997101,0.961943,0.058260,0.266884,0.961303,0.078280,0.264046,0.952452,0.022279,0.303812,-0.269112,0.424238,-0.864620,0.122074,0.462233,-0.878292,0.246620,0.514237,-0.821406,0.675893,-0.316782,0.665426,0.761650,0.505234,0.405683,0.727775,0.567919,0.384411,0.663930,0.698721,0.266335,-0.732170,0.458449,-0.503677,-0.268899,0.082614,0.959593,-0.188452,0.078799,0.978881,-0.236702,0.123508,0.963683,-0.907163,0.286477,0.308176,-0.880856,0.338084,0.331278,-0.988525,-0.138768,-0.059542,-0.995514,-0.094577,-0.000671,-0.990478,-0.118503,0.069613,0.812891,-0.051881,0.580065,0.911313,0.004639,0.411664,0.993835,-0.088809,0.065889,-0.949522,-0.196387,0.244575,-0.964751,-0.108646,0.239570,-0.969848,-0.062716,0.235450,0.845607,0.006623,-0.533708,0.852199,0.029542,-0.522324,0.838069,0.285501,0.464827,0.902127,-0.034822,0.429975,0.926176,-0.161199,0.340861,-0.998596,0.051302,-0.011353,-0.968474,0.040559,-0.245705,-0.989471,0.070986,-0.126041,-0.968078,0.040559,-0.247230,-0.765099,-0.544633,0.343455,-0.233070,-0.969024,0.081454,-0.612812,-0.784631,-0.093783,0.246986,-0.295663,-0.922788,-0.823359,0.345225,0.450392,-0.925352,0.239174,0.294046,-0.248756,0.743858,-0.620289,-0.142918,0.833705,-0.533341,-0.130589,-0.385296,0.913480,0.095065,-0.543260,0.834162,0.116703,0.670888,-0.732292,0.134312,0.630787,-0.764214,0.349498,0.482406,-0.803186,0.248054,0.400128,-0.882229,0.339976,0.349071,-0.873226,-0.752098,0.046083,-0.657399,-0.841090,0.027100,-0.540147,-0.759239,0.085452,-0.645161,-0.227790,-0.393994,-0.890408,-0.578997,0.811975,0.073580,-0.846583,0.531205,-0.032533,-0.548936,0.674215,0.494034,0.869686,-0.002503,0.493545,0.735496,-0.167669,0.656423,0.745354,0.421491,-0.516495,0.618458,0.461379,-0.636097,0.560472,0.471450,-0.680837,-0.015961,0.691275,-0.722404,0.824274,-0.378368,-0.421125,0.799005,-0.234291,-0.553758,-0.106662,-0.623554,0.774438,-0.212867,-0.186010,0.959197,-0.210486,-0.493149,0.844081,-0.977874,0.021119,0.208045,-0.985321,0.152898,0.075503,-0.946410,0.109867,0.303690,-0.123508,0.647267,-0.752159,-0.972869,-0.223243,-0.060305,-0.986267,-0.106998,-0.125675,-0.930937,0.093173,0.353008,-0.950285,0.146367,0.274758,-0.927976,0.102847,0.358135,0.249763,0.869808,0.425428,-0.713279,-0.273965,-0.645070,-0.710013,-0.507004,-0.488662,0.724326,0.089084,0.683645,0.674429,0.485397,-0.556322,0.780084,0.421277,-0.462539,0.498703,0.612690,-0.613086,-0.628651,-0.772546,0.088900,-0.505692,-0.824976,0.252297,0.329447,-0.940855,-0.079073,-0.275491,0.588824,-0.759819,-0.291055,0.488876,-0.822321,-0.242042,0.458174,-0.855251,0.943480,-0.156438,0.292123,0.942869,-0.253639,0.215827,0.408887,0.015778,0.912442,0.094546,-0.788903,0.607166,-0.021973,-0.474502,0.879971,-0.355358,0.042634,-0.933744,0.677511,0.302225,0.670492,0.647786,0.005066,0.761773,0.365398,0.929289,0.053499,0.243110,0.957915,0.152593,0.380078,0.913663,0.144078,0.144017,0.269814,-0.952055,0.123936,0.215461,-0.968596,-0.860164,0.160558,-0.484054,-0.914731,-0.107669,-0.389386,0.233131,0.282205,-0.930570,0.243202,0.395734,-0.885556,0.161412,-0.360515,-0.918668,0.070711,-0.286691,-0.955382,0.279000,-0.960234,0.007447,0.159337,-0.987213,0.001312,-0.361431,-0.594592,-0.718192,-0.286386,-0.580004,-0.762596,-0.369243,-0.486953,-0.791498,-0.932829,0.036744,0.358379,0.921537,0.037568,0.386425,-0.875607,-0.198645,0.440260,-0.763573,-0.130619,0.632344,-0.868679,-0.078402,0.489120,-0.334269,-0.445845,-0.830317,0.125126,-0.337962,-0.932768,-0.047090,-0.337718,-0.940031,-0.952971,-0.291055,0.084262,-0.964293,-0.247353,0.094455,-0.896908,0.306436,-0.318766,0.886563,-0.285043,0.364299,0.845363,-0.206000,0.492843,0.840785,-0.212989,0.497635,0.817957,0.571215,0.068148,0.682211,0.708090,0.182073,0.376080,0.797143,-0.472274,0.825190,0.481094,-0.295877,-0.352062,-0.337413,-0.873012,-0.267769,-0.368145,-0.890347,-0.063448,0.196051,-0.978515,0.185095,0.313974,-0.931181,0.382488,0.452986,0.805261,0.282937,0.316019,0.905545,0.390881,0.439955,0.808435,0.253182,0.041658,-0.966491,0.011933,0.095248,-0.995361,0.688314,-0.315958,-0.652943,0.672597,-0.393841,-0.626453,0.423688,-0.388562,-0.818201,0.554338,0.099246,0.826350,0.336802,0.287545,0.896573,0.549944,0.268715,0.790765,-0.477401,-0.845912,0.237587,0.062746,-0.605426,0.793390,0.913633,0.171148,-0.368725,0.711722,0.325175,-0.622608,-0.110935,-0.261849,-0.958678,0.199347,-0.034883,-0.979278,-0.371776,-0.191168,-0.908414,0.856258,-0.400281,-0.326426,0.885586,-0.170110,-0.432142,0.825526,-0.410749,-0.386944,0.094180,-0.963591,0.250191,0.368938,0.425581,-0.826258,0.454207,0.404340,-0.793817,0.494919,0.262032,-0.828455,0.340007,0.713858,0.612171,0.172002,0.626179,0.760430,0.089267,0.670370,0.736625,0.895718,0.444136,0.019745,0.918912,0.394269,0.009125,0.884701,0.465560,-0.022431,0.009583,0.162786,-0.986602,-0.268654,-0.077395,-0.960112,-0.135289,0.103366,-0.985382,-0.335612,0.138798,-0.931700,-0.191137,0.403668,-0.894711,-0.130528,0.354167,-0.925993,-0.363170,0.329783,-0.871395,0.565386,-0.562151,0.603565,0.800714,-0.286172,0.526200,0.824183,0.337962,0.454390,0.964354,-0.237831,0.115726,0.944151,-0.247627,0.217292,-0.615406,0.036195,0.787347,-0.687551,0.036531,0.725181,0.742241,-0.180975,0.645192,0.735710,-0.270730,0.620808,-0.957274,0.027894,-0.287759,-0.980071,-0.187628,-0.064882,-0.944762,-0.275979,-0.176702,0.664144,-0.684042,0.301614,0.738823,-0.606708,0.293222,0.681265,-0.377911,-0.626911,0.776330,-0.338969,-0.531388,0.869869,-0.309458,-0.384106,0.294076,-0.121464,-0.947996,0.342814,-0.382397,-0.858028,0.349712,-0.365551,-0.862575,0.983367,-0.043489,-0.176305,0.577380,0.088626,-0.811609,0.809595,-0.181188,-0.558275,-0.258583,0.112522,-0.959380,-0.686026,0.084536,-0.722617,-0.233161,-0.219153,-0.947386,0.773492,-0.587329,-0.238105,0.938108,-0.173101,-0.299936,0.951964,-0.220191,-0.212745,0.907285,-0.401990,-0.123234,0.959899,-0.106021,0.259438,0.973724,-0.207587,0.093509,-0.460952,-0.305734,0.833064,-0.430708,-0.312723,0.846553,0.882260,-0.466628,-0.061678,0.870724,-0.362346,-0.332377,0.947935,-0.294504,0.120914,0.555773,-0.287088,0.780145,0.784631,-0.237495,0.572619,0.476730,-0.400311,0.782586,0.416242,0.195532,0.887967,-0.730949,-0.343913,-0.589404,-0.790979,-0.375011,-0.483383,-0.812281,-0.316172,-0.490097,-0.556963,0.677633,-0.480148,-0.596393,0.616047,-0.514512,-0.884030,-0.464217,0.054384,-0.871029,-0.325510,-0.367840,-0.914121,-0.345958,-0.211310,0.727653,0.641102,-0.243812,-0.387982,-0.349528,-0.852779,-0.625782,-0.398419,-0.670522,-0.400281,-0.317148,-0.859737,-0.996551,-0.000214,0.082614,-0.997559,-0.069521,-0.000793,-0.999329,0.030519,0.019532,-0.979430,-0.079714,0.185308,-0.996765,0.078799,0.015046,-0.977203,0.090091,0.192206,0.924436,-0.377392,-0.054323,0.715262,-0.614521,0.332743,0.885189,-0.425214,0.188574,0.686422,0.270608,0.674947,0.669546,0.407025,0.621265,0.407361,0.629139,0.661946,-0.530900,-0.232948,-0.814753,-0.354472,-0.196478,-0.914182,-0.481979,-0.084597,-0.872066,0.150060,0.136540,0.979186,0.736137,-0.134526,0.663289,0.379223,0.379986,0.843654,0.974548,-0.222297,0.027894,0.947417,-0.269509,0.172430,0.210334,0.792840,-0.571947,0.324534,0.766198,-0.554582,0.322001,0.712851,-0.622974,-0.315531,0.498032,0.807703,-0.236854,0.474471,0.847774,-0.418653,0.904721,0.078555,-0.616901,0.682089,-0.392590,-0.609760,0.752007,-0.250221,0.952788,-0.303354,0.011170,0.962920,-0.269753,0.000519,0.985107,-0.150517,0.082858,0.976806,-0.194159,0.090091,0.967772,-0.247597,0.045656,0.266396,-0.430372,-0.862423,-0.382214,-0.534349,-0.753899,-0.372692,-0.489547,-0.788263,0.149724,0.078158,-0.985626,0.314676,0.234779,-0.919675,0.459365,0.193793,-0.866817,0.956877,-0.267830,-0.112217,0.946959,-0.278146,-0.160863,0.924253,-0.293863,-0.243599,0.536088,0.759117,-0.369182,0.600696,0.711539,-0.364483,0.751274,0.552110,-0.361553,-0.298990,0.341655,0.890988,-0.355571,0.404736,0.842433,-0.370739,0.489212,0.789422,0.117893,-0.351695,-0.928648,-0.094638,-0.294443,-0.950957,0.891110,-0.023530,-0.453139,0.871853,-0.180486,-0.455275,0.873043,0.262917,-0.410627,0.812616,0.316782,-0.489151,0.945158,-0.117466,0.304666,-0.918638,-0.074190,-0.388012,0.302316,0.488601,-0.818415,0.385479,0.385083,-0.838496,0.446150,0.446455,-0.775597,0.146428,0.472304,-0.869167,0.348766,0.424940,-0.835292,0.416578,0.426496,-0.802820,0.599353,-0.470016,-0.647908,0.673238,-0.351573,-0.650441,0.729545,-0.384930,-0.565264,-0.361278,0.637165,0.680776,-0.070284,0.464888,0.882565,-0.930143,-0.363262,0.053041,-0.901212,-0.430769,-0.047060,-0.927396,-0.173315,-0.331431,-0.277047,-0.444258,-0.851955,0.239509,0.621082,0.746208,0.606830,0.778314,-0.161077,0.693075,0.719932,-0.035524,0.554155,0.832270,-0.014435,0.536485,-0.295267,-0.790521,0.685537,-0.435102,-0.583667,0.617206,-0.338267,-0.710349,-0.275918,0.172521,-0.945555,0.728080,0.306436,-0.613147,0.264443,0.784234,-0.561235,-0.531236,-0.464339,-0.708609,-0.524033,-0.397198,-0.753380,-0.561937,-0.420026,-0.712577,-0.647328,-0.185980,0.739158,-0.817621,-0.245460,0.520768,0.557207,0.106693,0.823450,0.583636,0.658925,-0.474471,0.586627,0.673055,-0.450362,0.545518,0.781610,-0.302438,0.437971,0.866176,0.240608,0.643605,0.749168,0.156529,0.468276,0.860866,0.198889,0.619587,0.515946,0.591479,-0.147954,-0.743461,0.652181,0.133763,-0.563738,0.815027,0.156774,-0.237556,0.958617,0.108188,-0.491928,-0.863857,0.702811,0.267403,-0.659169,0.606922,0.383435,-0.696127,-0.978454,0.139256,-0.152226,-0.997436,-0.001617,0.071505,-0.959380,0.080050,-0.270455,0.121982,0.594714,-0.794580,0.838984,-0.533341,0.107730,0.876736,-0.448714,0.173070,0.179083,-0.261940,-0.948302,0.183691,-0.229713,-0.955748,0.178808,0.975280,0.129795,0.280557,0.959777,0.009217,0.102390,0.976257,0.190741,0.389660,-0.432447,-0.813074,0.397198,-0.400159,-0.825861,0.345775,-0.423139,-0.837458,-0.149083,0.398511,0.904935,-0.156743,0.535264,0.829981,-0.118412,0.365764,0.923124,-0.696310,-0.014374,-0.717582,-0.731681,0.007080,-0.681570,-0.639576,0.076724,-0.764855,-0.079318,-0.236488,-0.968383,0.183233,-0.114658,-0.976348,0.106082,-0.219581,-0.969787,0.150517,-0.134037,-0.979461,0.297189,0.860225,-0.414319,0.242470,0.801538,-0.546525,0.197302,0.830500,-0.520859,0.663656,0.386090,-0.640675,-0.467879,0.409925,0.782952,0.490188,-0.317240,-0.811792,0.233192,-0.248146,-0.940214,0.440931,-0.257393,-0.859798,0.007874,0.400098,-0.916410,-0.053987,0.254799,-0.965453,-0.116306,0.255745,-0.959685,0.485031,0.632374,0.603961,0.409375,0.624195,0.665395,0.520676,0.614887,0.592242,0.451643,0.581561,0.676565,0.520951,0.595203,0.611774,0.509049,-0.857845,0.070315,0.398175,-0.866421,0.301157,0.293161,-0.955138,0.041444,-0.151952,-0.483016,-0.862300,-0.504471,-0.369732,-0.780236,-0.123966,-0.835475,0.535325,0.122227,0.954863,0.270699,0.032624,0.943754,0.328959,0.559801,-0.090609,-0.823634,0.684835,-0.144688,-0.714164,0.231666,-0.314737,-0.920469,-0.001923,-0.373638,-0.927549,-0.004212,-0.403088,-0.915128,-0.672323,-0.358715,-0.647511,-0.628803,-0.325510,-0.706137,-0.732780,-0.382000,-0.563097,-0.678762,-0.328654,-0.656667,-0.627461,-0.443770,-0.639760,-0.026124,-0.338420,-0.940611,-0.170110,-0.300790,-0.938383,-0.136052,-0.377026,-0.916135,-0.957945,0.132939,0.254250,0.437391,0.633473,0.638234,0.537797,0.354930,0.764672,0.277169,0.388073,0.878933,-0.576067,-0.255165,-0.776513,-0.239875,0.334605,0.911283,-0.630207,-0.109287,-0.768670,-0.638691,-0.317850,-0.700705,0.190588,0.612690,-0.766961,0.152715,0.639790,-0.753197,0.099582,0.570635,-0.815119,0.777612,-0.558946,-0.287851,0.972015,0.145940,0.184057,0.946532,0.226264,0.229835,0.937315,0.185430,0.294992,-0.362743,0.886868,0.286081,-0.460402,0.863063,0.207648,-0.343608,0.925779,0.157537,0.929044,-0.364483,-0.063112,0.832820,0.070589,0.548997,-0.161870,-0.462844,-0.871517,-0.300577,-0.420026,-0.856258,-0.382977,-0.300302,-0.873562,-0.887173,-0.163396,-0.431501,-0.863399,-0.211310,-0.458083,0.304392,-0.006867,-0.952513,0.161138,0.185400,-0.969329,0.479934,0.743553,0.465529,0.442030,0.801111,0.403455,0.378430,0.759148,0.529557,-0.423750,0.279611,-0.861507,-0.921323,0.141270,0.362194,-0.918424,-0.385144,0.090182,-0.935301,-0.353679,-0.008332,0.069399,-0.286996,-0.955382,-0.354930,-0.321940,-0.877682,-0.354747,-0.406873,-0.841762,-0.274239,-0.218329,-0.936521,-0.722556,0.385449,0.573809,0.916135,0.018952,-0.400403,0.977844,0.010315,-0.209021,0.855739,0.102664,-0.507065,0.908567,-0.197058,0.368297,0.977935,-0.066469,0.197943,0.987396,-0.098636,0.123661,0.960967,-0.145665,0.235084,0.737510,-0.245460,-0.629109,0.826777,-0.391003,-0.404370,0.990204,0.047273,0.131199,0.980468,-0.065004,0.185522,0.995025,-0.006012,0.099307,0.986694,0.088900,0.135990,0.950102,0.305216,-0.064028,0.756005,0.106571,-0.645802,0.537553,0.837825,0.095096,0.569750,0.765954,0.297708,0.949278,0.307413,-0.065798,0.997162,0.054231,-0.051729,0.941313,0.162755,0.295602,0.896817,-0.105686,0.429548,0.947539,-0.030854,0.318125,-0.980285,0.188238,0.059816,0.321116,0.926511,0.195959,0.197851,0.980132,0.013398,-0.404706,0.259224,-0.876919,-0.622700,0.137516,-0.770257,-0.683950,0.228797,-0.692679,-0.451918,-0.274880,-0.848628,-0.504959,-0.293374,-0.811731,0.294626,-0.672536,0.678854,-0.995086,-0.076388,0.062471,-0.990051,-0.129002,0.056063,-0.990631,-0.030549,0.132969,-0.125828,0.955504,-0.266732,-0.192389,0.960021,-0.203253,0.077242,0.880764,0.467177,0.261116,0.874599,0.408490,0.199957,0.846858,0.492752,-0.032044,0.971587,0.234382,0.229591,0.699606,0.676595,-0.226814,0.834590,0.501968,0.955840,-0.094302,0.278298,0.943114,-0.137486,0.302591,-0.274850,-0.151219,-0.949492,-0.324473,-0.367290,-0.871639,0.792413,-0.322245,0.517869,0.642109,-0.193854,0.741661,0.698447,-0.243049,0.673116,0.593280,-0.425245,0.683462,0.592730,-0.597095,0.540483,0.312082,-0.667135,0.676351,0.498489,-0.836482,0.227515,0.514573,-0.743095,0.427747,0.701987,0.247658,-0.667714,0.799738,0.085177,-0.594226,0.054750,0.512650,-0.856807,-0.263314,-0.529954,-0.806085,-0.404797,-0.269417,-0.873775,-0.749657,-0.090640,-0.655538,-0.851192,-0.111362,-0.512833,-0.724326,0.072481,-0.685598,0.498642,0.768609,-0.400678,0.960784,-0.015564,-0.276772,0.966857,-0.082003,-0.241707,0.967956,0.012391,-0.250801,-0.440596,-0.490249,-0.751976,-0.223182,-0.420881,-0.879208,0.424757,-0.008576,-0.905240,0.380718,-0.256844,-0.888272,0.352458,-0.424390,-0.834040,-0.140110,0.985534,0.095187,-0.045656,0.994659,0.092257,-0.072726,0.996979,0.026124,0.497879,0.867214,-0.001892,0.604572,0.796472,-0.008209,0.482772,0.870296,-0.097201,0.525468,0.424024,-0.737571,0.613208,0.482437,-0.625446,0.471267,0.400342,-0.785852,0.203436,0.954924,0.216132,0.089084,0.960753,0.262612,-0.020447,-0.718070,-0.695639,-0.198889,-0.634541,-0.746818,-0.238289,-0.775018,-0.585253,0.859462,-0.425153,0.283792,0.832850,-0.378277,0.403974,0.916654,-0.359600,0.174383,0.257973,0.457076,0.851161,0.174017,0.545793,0.819636,0.438002,0.141606,0.887722,0.954375,-0.289163,0.074221,0.518754,-0.141148,0.843165,0.214270,0.165654,-0.962615,-0.995575,-0.037996,0.085696,-0.984039,0.142155,0.106906,-0.971557,0.166570,0.168126,-0.869716,0.142521,0.472488,-0.916745,0.254585,0.307779,-0.880673,0.267953,0.390637,-0.136052,0.079867,-0.987457,-0.051149,0.243934,-0.968413,-0.123356,0.229194,-0.965514,-0.815638,0.385113,0.431745,0.475173,0.376476,0.795251,-0.802545,-0.411451,-0.431959,-0.160466,0.305094,-0.938688,0.934202,-0.346294,0.085482,0.933683,-0.355937,-0.038759,0.964538,-0.251320,0.080233,-0.139500,0.953398,-0.267464,-0.043947,0.952239,-0.302133,0.055147,0.975951,-0.210761,0.213904,-0.774407,0.595386,0.023957,-0.811060,0.584429,-0.169347,0.204138,-0.964171,-0.010712,0.358684,-0.933378,-0.786889,0.203589,0.582507,-0.822382,0.052492,0.566454,0.383831,-0.388531,-0.837672,0.196356,-0.460250,-0.865780,0.222022,-0.465377,-0.856777,-0.526933,0.830714,-0.179418,-0.243965,0.929441,0.276681,-0.179235,0.879727,0.440352,0.955626,0.108798,0.273721,0.955046,0.008179,0.296274,0.977355,0.193030,0.086459,0.911527,-0.214759,0.350627,0.904508,-0.293008,0.309732,-0.780145,-0.377667,0.498703,0.539720,-0.517258,-0.664174,0.561144,-0.140996,-0.815607,-0.329875,-0.438704,-0.835871,0.228462,0.517685,-0.824488,0.224708,0.453566,-0.862392,0.472427,0.407361,-0.781549,0.424543,0.562975,-0.709067,0.618488,0.478469,-0.623310,0.299661,0.952574,0.052736,0.426832,0.886044,0.180853,0.255745,0.963225,0.081973,-0.982574,0.185156,-0.014863,-0.980743,0.086367,-0.175024,-0.987457,0.132237,-0.085940,0.328745,0.395306,-0.857692,0.194006,0.545732,-0.815149,0.412458,0.802362,0.431318,0.514420,0.816736,0.261299,0.547014,0.777459,0.310312,-0.437361,-0.464583,-0.769951,-0.522324,-0.295297,-0.799951,0.993805,0.002014,0.110996,0.955931,0.016266,0.293100,0.969390,-0.126316,0.210395,0.893521,-0.067324,0.443892,0.910794,-0.147252,0.385662,-0.950926,-0.305277,-0.049867,-0.963561,-0.166997,-0.208838,-0.949004,-0.167852,-0.266762,-0.819422,0.269356,0.505905,-0.411420,-0.313547,-0.855800,-0.436964,-0.450423,-0.778558,-0.552477,-0.541826,-0.633351,-0.712149,0.305948,0.631794,-0.353984,-0.182379,0.917264,-0.467360,-0.158666,0.869686,-0.260689,-0.146428,0.954222,0.329539,0.099124,0.938902,0.182958,0.561113,-0.807245,0.094150,0.510178,-0.854885,0.058687,-0.966674,-0.249123,-0.124851,-0.966033,-0.226203,0.056093,-0.893735,-0.445021,0.479385,-0.347484,-0.805841,0.679281,-0.233589,-0.695700,0.748436,-0.216376,-0.626881,-0.737144,-0.444044,-0.509293,-0.834803,-0.452834,-0.313059,-0.998840,-0.034700,-0.032533,-0.992676,-0.024781,-0.118076,-0.986084,-0.125065,-0.109409,-0.836818,-0.368480,-0.404889,-0.632527,-0.303873,-0.712424,-0.839473,-0.254677,-0.479965,0.278817,0.835871,-0.472793,0.058901,0.720206,-0.691214,0.179876,0.856594,-0.483566,-0.739921,0.344462,0.577776,-0.688681,0.436171,0.579150,-0.780786,0.415387,0.466659,-0.818812,0.574023,-0.005799,-0.944975,0.312265,0.097446,0.805261,-0.289254,0.517533,0.781640,-0.326762,0.531236,0.724784,-0.412610,0.551714,0.610218,-0.427442,0.666982,0.184973,-0.554308,0.811457,-0.555040,-0.402844,-0.727744,-0.493210,-0.374889,-0.784967,0.592669,0.260414,-0.762169,-0.216956,0.379803,-0.899228,-0.311899,0.345164,-0.885159,-0.229682,0.268441,-0.935484,-0.430555,-0.399701,-0.809198,-0.625813,-0.387738,-0.676748,-0.567888,-0.367809,-0.736351,0.898801,-0.160283,0.407941,0.917814,-0.389599,0.075930,0.906064,-0.389782,0.164586,-0.503006,-0.269448,-0.821192,-0.671712,-0.280770,-0.685507,-0.707205,-0.503525,-0.496261,-0.383496,-0.441084,-0.811365,-0.178076,-0.361553,-0.915159,-0.120914,-0.484664,-0.866268,0.299051,-0.101871,0.948759,-0.064882,0.203925,0.976806,0.190954,0.190619,-0.962889,0.259102,0.181585,-0.948607,0.251442,0.269448,-0.929594,-0.499924,-0.235267,-0.833461,0.238197,0.961364,0.137822,0.283792,0.931028,0.229316,0.376110,0.318003,0.870266,0.374432,0.283639,0.882778,0.355846,0.417890,0.835871,0.191260,0.227302,-0.954833,-0.100375,0.371349,-0.923032,-0.357219,0.214545,0.909024,-0.667287,0.391919,0.633290,0.602405,-0.157933,-0.782373,0.784600,-0.252846,-0.566057,0.188055,0.391186,-0.900876,0.307047,0.285440,-0.907834,0.074435,0.498123,-0.863887,0.547227,-0.270608,-0.791986,0.714377,-0.226661,-0.662008,-0.043977,-0.564806,-0.824030,-0.956420,0.014679,-0.291543,-0.956847,0.082919,-0.278390,-0.717124,-0.369701,-0.590777,-0.731315,-0.199255,-0.652242,0.526811,0.568285,-0.632038,0.625751,0.517594,-0.583514,0.601764,0.550890,-0.578204,0.576861,-0.077822,-0.813105,0.897702,-0.319163,0.303690,0.925657,-0.374859,0.051271,0.023774,-0.371197,0.928220,-0.120548,-0.709677,0.694113,0.175115,-0.608264,0.774132,-0.077761,0.996796,0.018220,-0.099582,0.993713,-0.050874,-0.794977,-0.153020,-0.586963,-0.707083,-0.308329,-0.636311,-0.542283,-0.246651,-0.803156,0.517136,0.551592,-0.654408,0.493179,0.470443,-0.731712,0.359203,0.486618,-0.796319,0.125828,-0.297464,-0.946379,-0.171453,-0.372753,-0.911924,0.294168,-0.719810,0.628712,0.196326,-0.424818,0.883694,-0.617573,0.130863,0.775536,0.713095,-0.356792,-0.603412,0.702353,-0.397137,-0.590686,0.796503,-0.451369,-0.402203,-0.748833,-0.253609,-0.612262,-0.643055,-0.165563,-0.747673,0.854885,-0.347118,0.385571,0.955016,-0.174200,0.239937,0.927122,-0.280129,0.248878,0.763359,0.414747,0.495163,-0.286630,0.034120,-0.957427,0.029847,0.156072,-0.987274,-0.469222,0.081973,-0.879238,0.952483,0.100223,-0.287515,0.321390,-0.430860,-0.843226,-0.048524,-0.416761,-0.907682,0.951415,-0.044130,0.304666,0.914914,-0.047182,0.400861,0.998444,-0.054689,0.009278,-0.004578,-0.251686,-0.967772,0.891263,-0.052370,0.450392,0.444411,-0.730796,0.518052,0.526872,-0.720634,0.450606,-0.799432,-0.180883,-0.572832,-0.838496,-0.162206,-0.520127,-0.088687,-0.427656,-0.899564,0.250618,-0.135380,-0.958556,0.209693,-0.025697,-0.977416,0.673360,-0.392499,-0.626484,0.611744,-0.461989,-0.642079,0.636128,-0.440504,-0.633442,0.825709,-0.351451,-0.441145,0.695242,-0.442854,-0.566088,0.643208,0.408551,0.647572,0.588763,0.337474,0.734458,-0.002167,-0.007477,-0.999969,-0.080172,0.135929,-0.987457,0.057985,-0.006439,-0.998291,-0.913846,0.247383,0.321940,0.644856,0.047395,-0.762810,0.752129,-0.013092,-0.658834,0.665395,-0.513749,0.541520,0.719962,-0.485733,0.495651,0.708426,-0.551683,0.440138,-0.739158,-0.376446,-0.558458,-0.501328,-0.427717,-0.752129,0.899350,-0.408704,0.155248,0.929472,-0.240883,-0.279305,0.568590,0.773553,0.279794,0.597278,0.767785,0.231758,-0.356822,-0.898953,-0.254036,-0.400189,-0.855434,0.328684,-0.613544,-0.752159,0.240303,-0.886135,-0.462935,0.020539,-0.893490,-0.447737,0.034577,-0.948943,-0.309244,0.061861,-0.535661,0.102237,0.838191,-0.496872,-0.000641,0.867794,-0.474532,0.143773,0.868404,0.815455,-0.134861,0.562853,0.751732,-0.257057,0.607257,0.891140,-0.183020,0.415113,-0.900754,-0.396588,-0.176916,-0.695212,-0.411664,-0.589190,-0.708213,-0.437880,-0.553758,-0.840419,-0.535783,0.081210,-0.929838,-0.054476,-0.363872,-0.922208,0.117374,-0.368419,-0.959777,0.043703,-0.277261,0.770104,-0.209082,0.602619,0.111454,0.340037,-0.933775,0.399853,0.283608,-0.871578,-0.087893,0.386700,-0.917997,-0.080142,0.043580,-0.995819,0.065523,0.018250,-0.997681,-0.929594,-0.364544,-0.054292,0.945189,-0.326273,0.011292,0.216071,0.938383,0.269662,0.222663,0.941832,0.251686,0.182409,0.880490,-0.437483,0.239967,0.885922,-0.396893,0.171026,0.900052,-0.400769,0.854244,-0.034120,0.518723,0.051241,-0.402264,-0.914060,0.055940,-0.472121,-0.879727,0.228889,-0.384503,-0.894253,0.813288,-0.334971,0.475723,0.750511,-0.360973,0.553514,-0.994842,-0.097995,0.025300,-0.989471,-0.132023,-0.059145,-0.995849,-0.063723,-0.064852,-0.985473,-0.165197,0.039216,-0.994324,-0.093539,0.050233,0.422742,0.651295,0.630116,0.473891,0.627644,0.617603,0.605182,0.474471,0.639210,0.809931,-0.424055,0.405133,0.032136,-0.218329,-0.975341,-0.400708,-0.273965,-0.874264,0.582507,0.574969,0.574480,0.626728,0.278756,0.727622,-0.519181,0.459487,0.720603,-0.599994,0.283334,0.748131,-0.614429,0.350017,0.707053,0.960540,0.094974,0.261391,0.864040,-0.255318,-0.433851,0.781915,-0.322794,-0.533250,0.834498,-0.258827,-0.486404,0.778252,0.558123,0.287729,0.709738,0.652699,0.264962,0.958861,0.254921,-0.124668,0.090396,0.471664,-0.877102,0.967162,0.010681,0.253883,0.893857,-0.286142,0.345073,0.882015,-0.258003,0.394269,0.356212,0.778008,-0.517472,-0.086673,0.985717,0.144230,-0.007385,0.994140,0.107700,-0.996826,-0.025025,0.075198,-0.999725,0.022217,-0.003449,0.941740,-0.234779,0.240699,-0.506424,-0.150151,-0.849086,-0.307016,-0.344523,-0.887143,-0.883267,0.311960,0.349986,-0.790490,0.454115,0.410932,-0.753960,0.524277,0.395734,-0.429792,0.153233,0.889798,-0.469222,0.094272,0.878018,-0.679342,0.487014,0.548845,-0.274575,0.234626,-0.932463,-0.230903,0.154302,-0.960631,-0.106296,0.333506,-0.936705,-0.948302,-0.098025,0.301798,-0.969909,0.044191,0.239326,-0.909635,0.073824,0.408765,0.849940,-0.481307,-0.214209,0.882626,-0.338267,-0.326365,0.823847,-0.513169,-0.240608,-0.218421,-0.199774,0.955168,-0.410901,-0.071505,0.908841,-0.219001,0.171087,0.960570,-0.967681,0.188421,0.167394,-0.956786,0.085513,0.277902,-0.989685,0.036195,0.138432,-0.059816,-0.227851,-0.971831,-0.799921,-0.107517,-0.590350,-0.724326,0.026887,-0.688894,-0.733757,0.075228,-0.675222,-0.674856,0.519913,-0.523667,-0.724082,0.464309,-0.509964,-0.729820,0.442824,-0.520768,-0.151128,-0.031831,-0.987976,-0.152898,0.074465,-0.985412,-0.202918,0.817896,-0.538347,-0.274545,0.805292,-0.525437,0.177068,0.898831,0.400891,-0.354900,0.339305,-0.871151,0.866146,-0.054292,0.496780,-0.279855,-0.655232,0.701651,-0.766167,-0.374767,0.522019,0.348277,-0.175939,0.920713,0.173650,-0.100436,0.979644,0.273293,-0.099094,0.956786,0.739982,-0.608020,0.287576,0.579058,0.803003,0.140812,0.622272,0.750908,0.221046,0.506363,0.842860,0.182134,0.261177,0.956389,0.130619,0.347484,0.935759,0.059603,0.420637,0.871426,0.252297,0.916288,-0.392804,0.078005,0.184851,-0.145695,0.971892,0.053438,-0.354442,0.933531,0.290536,-0.189642,0.937864,-0.620899,-0.121647,-0.774377,-0.434980,-0.133946,-0.890408,-0.445387,-0.470412,-0.761773,-0.409772,-0.392102,-0.823573,0.298654,0.952300,-0.062319,0.223395,0.952788,-0.205573,0.554979,0.820215,-0.138554,-0.687826,-0.314127,0.654347,-0.038484,-0.529191,0.847591,0.565050,-0.570757,-0.595752,0.270089,-0.390240,-0.880184,0.529466,-0.458388,-0.713797,0.550554,0.816065,0.175756,0.583056,0.773339,0.248848,0.045198,-0.133702,-0.989959,0.098910,-0.269509,-0.957884,0.070620,-0.137089,-0.988006,0.104617,-0.108676,0.988525,0.401685,-0.095492,0.910764,0.338206,-0.419507,0.842372,0.988891,0.028260,0.145726,0.987518,-0.141911,0.067965,0.994720,-0.003906,0.102359,0.996124,0.015625,0.086489,0.951262,-0.054079,-0.303568,0.920408,-0.071749,-0.384289,0.449934,0.659993,0.601611,-0.418744,0.071169,0.905271,0.286019,0.946623,0.148503,-0.838221,-0.002472,-0.545274,-0.091220,0.555925,-0.826197,0.033815,0.898068,0.438490,0.019868,0.918912,0.393902,-0.010895,0.901242,0.433149,-0.376690,0.286660,0.880856,-0.444472,0.081515,0.892056,-0.415021,0.245186,0.876125,0.295633,0.036439,0.954588,-0.292703,0.358196,0.886563,0.400311,0.052889,0.914823,-0.948454,-0.312632,-0.051515,-0.960479,-0.275124,-0.041627,-0.996124,-0.082614,-0.029298,-0.985870,-0.088382,0.142125,0.331217,0.572192,-0.750237,0.372845,0.487411,-0.789514,0.273110,0.507431,-0.817225,-0.747734,-0.315287,-0.584338,-0.777825,-0.387951,-0.494369,-0.129307,0.144841,-0.980956,-0.297281,0.133671,-0.945372,-0.223640,0.049745,-0.973388,-0.910916,-0.120518,0.394513,0.935606,0.007660,0.352886,0.910489,-0.114597,0.397290,0.587756,0.783441,0.201788,0.561632,0.808802,0.174169,-0.857143,0.227424,0.462111,-0.282388,0.077639,-0.956114,-0.256172,0.318186,-0.912748,0.054109,0.893796,-0.445143,0.334330,-0.088595,0.938261,0.334971,0.085543,0.938322,-0.830683,0.055025,0.553972,-0.895505,-0.016663,0.444716,-0.869747,0.106388,0.481826,-0.326456,0.591449,-0.737266,0.870540,0.196265,0.451216,0.341594,-0.395947,-0.852351,0.458480,-0.537767,-0.707511,-0.284616,0.655263,0.699698,-0.617542,-0.221259,-0.754723,-0.648732,-0.233345,-0.724326,-0.628163,-0.242164,-0.739402,-0.516678,0.164617,0.840175,-0.529984,-0.006409,0.847957,-0.603748,0.004028,0.797143,0.809778,-0.329569,0.485397,-0.083621,-0.091067,-0.992309,-0.142491,-0.051790,-0.988433,0.909970,0.400067,-0.108921,0.782403,0.617359,0.081545,0.874416,0.482223,-0.052828,-0.282327,-0.367382,-0.886166,0.045991,-0.344859,-0.937498,-0.285409,-0.492965,-0.821863,0.964629,0.081545,-0.250649,0.985351,0.089694,-0.144841,0.332774,0.900723,-0.279153,0.882290,0.040590,0.468947,0.901059,-0.109256,0.419630,0.837336,-0.264260,0.478530,0.938383,-0.286721,0.192846,-0.377789,0.281655,0.881985,-0.463973,0.411023,0.784692,-0.572222,0.227638,0.787835,-0.515915,0.754936,-0.404797,-0.496567,0.769982,-0.400586,-0.108707,-0.947966,-0.299142,-0.331706,-0.745079,-0.578600,0.928007,-0.082095,0.363323,0.919950,-0.322764,0.222358,0.893582,-0.198004,0.402783,0.946867,-0.150426,0.284188,0.925932,0.055147,0.373608,0.957488,-0.086856,0.275063,-0.607013,-0.629292,0.485275,-0.708853,-0.524552,0.471541,-0.733146,-0.627338,0.262459,-0.673269,0.444533,0.590808,-0.617573,0.532334,0.578906,-0.505661,0.474746,0.720328,-0.660115,0.459700,-0.594043,-0.673910,0.410565,-0.614185,-0.662099,0.429456,-0.614124,0.706626,-0.425367,-0.565416,0.859706,-0.349864,-0.372082,0.925840,-0.242439,-0.289804,-0.062166,0.218726,-0.973785,0.152287,0.002319,-0.988311,0.387005,-0.400037,-0.830744,0.295816,-0.396191,-0.869167,0.144932,0.915464,0.375347,0.435774,0.882015,0.179205,0.484848,0.862911,0.142430,0.125828,0.066775,-0.989776,0.054750,-0.032868,-0.997955,0.923551,0.137822,-0.357830,0.966765,0.069002,-0.246101,0.948393,-0.001923,0.317026,0.947783,0.009247,0.318735,0.928770,0.073824,0.363170,-0.714286,0.312082,0.626392,-0.832698,0.196722,0.517533,0.546983,-0.362316,-0.754631,0.388379,-0.418958,-0.820734,-0.847835,-0.097446,-0.521165,-0.700980,-0.340983,-0.626331,0.905423,0.095614,0.413587,0.869991,0.051271,0.490371,0.910733,0.077761,0.405591,-0.404279,-0.283761,-0.869472,-0.122074,0.894436,-0.430189,-0.181219,0.874172,-0.450453,-0.156896,0.885739,-0.436811,-0.635853,-0.355785,-0.684866,-0.461654,-0.265053,-0.846522,-0.582873,-0.378033,-0.719230,0.085482,-0.352245,-0.931974,0.003479,-0.365490,-0.930784,0.382946,-0.590472,0.710379,0.536302,-0.299417,0.789087,0.596240,-0.212958,0.774010,0.446547,0.661000,0.603015,0.393170,0.721427,0.570025,0.356700,0.744713,0.564013,0.712760,-0.368511,-0.596789,0.856594,-0.228370,-0.462630,0.809412,-0.419080,-0.411328,-0.723502,-0.448927,-0.524400,-0.529649,-0.339030,-0.777490,-0.539567,-0.558641,-0.629871,0.508347,0.089633,0.856441,-0.737083,-0.061129,-0.672994,0.328471,0.302896,0.894620,0.054506,0.254891,-0.965423,0.012970,0.160192,-0.986969,0.163610,0.165227,-0.972564,-0.074099,-0.492019,-0.867397,-0.108066,-0.552507,-0.826441,-0.321207,-0.527665,-0.786340,0.297586,-0.758934,-0.579119,0.345561,0.920011,0.184729,0.220679,0.962859,0.155400,0.373089,0.906766,0.196234,0.182623,0.154759,-0.970916,0.263985,-0.018830,-0.964324,0.670370,-0.260628,-0.694693,0.476119,-0.209876,-0.853938,0.589709,-0.308969,-0.746147,-0.340342,0.934416,0.104862,-0.808771,-0.136937,-0.571947,0.934599,-0.351390,0.054903,0.822321,-0.559984,-0.100833,0.736961,-0.675314,0.028016,0.587024,-0.807611,0.056032,0.854030,0.395032,-0.338420,0.804590,0.469741,-0.363201,0.297891,-0.151952,0.942412,0.206214,-0.115482,0.971648,0.096347,-0.408155,0.907804,-0.504257,0.030061,0.863002,-0.339366,0.919797,0.196936,0.953734,0.091739,0.286264,0.950835,0.031343,0.308084,0.910855,0.314798,0.266884,0.914090,-0.113834,-0.389141,0.883328,-0.092746,-0.459456,0.204077,0.978851,0.012513,-0.216926,0.495499,-0.841060,0.054750,0.156133,-0.986206,0.971770,-0.235054,-0.018586,0.991485,-0.090701,0.093142,0.896481,0.327677,-0.298135,0.952452,0.173162,-0.250618,-0.018433,-0.262368,-0.964782,0.163396,0.520280,0.838191,0.379772,0.357463,0.853206,0.080325,0.243080,0.966643,0.427747,-0.429914,-0.795099,0.536515,-0.476119,-0.696707,0.110569,0.187323,-0.976043,0.057588,0.243873,-0.968078,0.198523,0.230659,-0.952544,0.062929,0.184667,-0.980773,-0.105228,0.191504,-0.975829,0.535630,-0.418561,-0.733390,0.622700,-0.094821,-0.776666,0.714164,-0.124577,-0.688772,0.721854,-0.634114,0.277078,0.870418,-0.422590,0.252449,0.927030,0.057741,0.370434,0.059572,-0.662526,0.746635,0.382122,-0.842616,0.379406,-0.800012,-0.354717,-0.483840,-0.935514,0.129276,0.328776,-0.930448,0.020386,0.365825,-0.987945,0.127384,0.087741,-0.943999,0.235511,0.231025,-0.388134,0.495468,0.777032,-0.010590,0.504013,0.863613,0.967284,-0.238472,0.086459,0.964995,-0.173528,-0.196509,0.680349,0.435682,0.589282,0.176122,0.903104,-0.391552,-0.200598,0.248390,-0.947630,0.074496,0.373913,-0.924436,-0.912534,-0.156835,-0.377697,-0.820276,-0.146306,-0.552873,-0.628559,0.391614,0.671926,-0.638447,0.320383,0.699789,-0.529801,0.162542,0.832362,-0.821467,-0.247475,-0.513688,-0.856563,-0.308908,-0.413312,-0.211951,0.576983,0.788751,-0.421705,0.275582,0.863826,-0.132298,0.657369,0.741844,0.464675,0.653096,0.597919,0.267861,-0.485244,-0.832301,0.184698,-0.508591,-0.840938,0.189947,-0.444044,-0.875607,0.703604,0.335887,0.626148,0.841456,0.249092,0.479446,-0.881497,-0.259835,-0.394177,-0.998230,-0.045991,-0.037568,-0.988830,-0.072848,0.129826,0.585894,-0.405072,-0.701834,0.772759,-0.384838,-0.504654,0.750542,0.359142,0.554643,0.756310,0.441755,0.482528,0.583087,-0.664846,0.466872,-0.949950,-0.143712,-0.277352,0.310190,0.266518,0.912534,0.222938,0.220191,0.949614,0.279916,0.142186,0.949400,0.990509,-0.127262,-0.051729,0.990143,0.137059,-0.027833,0.986785,-0.141881,0.078158,0.803888,-0.318247,-0.502426,0.526719,-0.385601,-0.757530,0.984252,-0.050508,0.169347,0.066378,0.802087,-0.593493,0.138829,0.620624,-0.771691,0.851619,-0.485244,-0.198126,0.805567,-0.513413,-0.295663,0.840480,-0.479232,-0.252724,-0.599994,0.646901,-0.470626,-0.531571,0.774102,-0.343699,-0.587970,0.694876,-0.414014,0.838160,-0.161168,-0.521012,0.837733,-0.317972,-0.443922,-0.561998,-0.186193,-0.805872,-0.507035,-0.065859,-0.859371,0.060183,-0.001465,0.998169,-0.062136,-0.345134,0.936460,-0.127934,-0.231880,0.964263,0.949583,-0.113742,0.292062,0.964782,-0.077120,0.251473,0.948637,-0.014985,0.315958,0.771508,-0.297006,-0.562609,0.895566,-0.411328,-0.169469,0.866421,-0.364391,-0.341319,0.052644,0.275918,-0.959716,-0.057863,0.219245,-0.973937,0.697684,-0.353862,-0.622852,-0.044038,-0.490188,-0.870479,0.226081,0.971496,0.070986,0.303385,0.952574,0.023103,0.309488,0.944121,0.113132,0.183050,0.932981,0.309854,-0.607990,-0.197119,0.769066,-0.431593,-0.141484,0.890896,-0.576098,-0.157384,0.802057,0.936491,-0.189306,0.295144,0.913755,-0.081118,0.398022,0.983337,-0.072237,0.166692,0.968383,-0.168401,0.183935,0.915708,0.042390,0.399518,0.555834,-0.255806,-0.790918,0.064943,0.068911,-0.995483,-0.129215,0.798578,-0.587817,-0.162358,0.826106,-0.539567,-0.172277,0.811121,-0.558885,0.155400,-0.120670,-0.980438,-0.155553,-0.146764,-0.976836,0.456435,-0.317392,-0.831202,-0.009552,-0.183508,-0.982940,-0.486953,0.493820,0.720389,0.538743,0.109043,-0.835353,0.439924,0.107852,-0.891507,0.294565,-0.060701,0.953673,0.004425,-0.385449,-0.922697,0.829798,-0.306955,-0.466018,0.771905,-0.246040,-0.586169,-0.834284,-0.276650,-0.476821,-0.776818,0.063143,-0.626514,-0.819605,-0.397870,-0.412152,-0.897732,0.209387,0.387524,-0.917020,0.259316,0.302927,-0.880825,0.251808,0.400861,-0.966796,0.238990,0.090182,-0.941618,0.327433,-0.077944,0.562670,0.048891,0.825220,0.499863,-0.241157,0.831843,0.619221,-0.067751,0.782250,0.953032,0.154393,0.260445,0.724876,-0.005524,-0.688803,0.590411,0.064394,-0.804498,0.832728,-0.035737,-0.552507,0.585376,-0.071383,0.807581,0.747703,-0.401044,0.529191,0.670370,-0.350017,0.654256,-0.361705,0.620075,-0.696158,-0.281350,0.714377,-0.640675,0.915769,0.034913,0.400098,0.895169,0.067232,0.440565,0.894192,0.100375,0.436232,-0.429701,0.524247,0.735160,-0.365947,0.391980,0.844020,-0.494095,0.495804,0.714164,0.132237,0.076296,-0.988250,0.914396,-0.147801,0.376812,0.895108,0.100558,0.434309,-0.540727,-0.374371,-0.753288,-0.523179,-0.445112,-0.726707,-0.903623,-0.176611,0.390179,-0.941954,-0.122013,0.312723,-0.895047,-0.172613,0.411176,0.790216,0.576556,-0.207587,0.830195,0.521500,-0.196905,0.711814,0.619739,-0.330393,0.338176,0.940825,-0.021607,0.289193,0.940336,-0.179144,0.136021,-0.963561,0.230262,0.113102,-0.984893,0.130924,0.977325,0.132115,0.165380,0.997650,0.057741,0.036073,-0.172308,-0.444166,-0.879177,0.012268,-0.316416,-0.948515,-0.185797,-0.323099,-0.927915,-0.571612,0.748985,-0.335002,-0.597644,0.752495,-0.276620,0.712272,0.004181,-0.701865,0.682241,-0.115757,-0.721854,0.902432,-0.369274,0.221839,0.849086,-0.482162,0.215674,0.955718,-0.270333,0.116001,-0.666860,0.222022,-0.711295,0.713523,0.517624,0.472091,0.801355,0.549211,0.237037,0.716422,0.539872,0.441816,-0.983245,-0.029786,0.179754,0.221076,0.958190,0.181494,0.509934,-0.439375,-0.739494,-0.495437,-0.124607,0.859645,-0.300088,0.949278,-0.093539,-0.310953,0.941557,0.129337,0.988189,-0.144383,0.050813,0.995483,-0.091678,0.023469,0.977660,-0.009766,0.209815,0.989380,0.002289,0.145116,0.296823,-0.597461,-0.744926,0.469253,-0.601215,-0.646748,0.250099,-0.497269,-0.830744,0.601367,0.418622,0.680502,-0.671468,-0.448988,-0.589465,-0.157109,-0.507431,-0.847224,0.201300,-0.365612,-0.908719,0.954527,0.123905,0.271035,0.926084,0.164953,0.339305,0.194220,-0.022614,-0.980682,0.850490,0.435316,0.295144,0.798181,0.534165,0.278420,-0.036256,-0.044252,0.998352,-0.200690,-0.215949,0.955535,-0.208777,-0.097964,0.973022,0.994476,-0.057070,0.087985,0.978820,-0.097446,0.179907,0.620289,0.778802,0.093051,-0.573992,0.521439,0.631336,0.725486,-0.315287,-0.611713,0.541276,0.120640,0.832118,0.708609,0.149358,0.689566,0.544877,0.050111,0.837001,-0.607105,-0.371899,-0.702170,-0.517472,-0.387646,-0.762841,-0.474288,-0.571703,-0.669454,0.021302,0.855159,0.517899,0.056887,0.775231,0.629078,0.290536,0.838099,0.461654,-0.899350,0.233863,0.369366,-0.908292,0.255440,0.331187,-0.992798,0.052614,0.107608,-0.998627,0.015961,0.049409,-0.998749,-0.036805,0.033631,-0.034577,-0.242775,-0.969451,0.162114,-0.498459,0.851588,-0.041169,-0.649831,0.758934,0.282693,-0.299966,-0.911069,-0.593829,-0.468978,0.653737,-0.574450,-0.633747,0.517960,-0.689352,-0.543809,0.478530,-0.234657,0.880856,0.411084,-0.055879,0.947203,0.315683,-0.020264,0.952635,0.303385,0.683828,0.058535,0.727256,0.648701,0.063540,0.758354,0.958647,-0.150792,0.241279,0.986724,-0.074892,0.144078,0.980499,-0.189123,0.053163,-0.634968,-0.078127,-0.768548,-0.897336,-0.259835,-0.356700,-0.839686,-0.386700,-0.381268,-0.895840,-0.323588,-0.304514,0.834773,0.545488,-0.074435,0.779900,0.589190,-0.211158,0.792138,0.591571,-0.150029,-0.377392,-0.853145,0.360118,-0.374981,-0.907071,0.191229,-0.166845,-0.983947,0.063173,0.206366,-0.401227,-0.892392,0.218390,-0.322825,-0.920896,0.347789,-0.348338,-0.870418,-0.348430,-0.522782,-0.777978,-0.336497,-0.450301,-0.827021,-0.886868,-0.056063,-0.458541,0.785455,-0.038484,-0.617664,-0.451430,0.876400,0.167638,0.862117,-0.180425,-0.473434,-0.408063,0.899655,0.155095,0.933866,-0.327464,0.143620,-0.224006,-0.268410,0.936888,-0.088443,-0.980956,-0.172857,0.963286,0.047578,0.264168,0.986389,0.002289,0.164220,-0.871639,-0.381573,0.307596,-0.722495,-0.688528,0.062319,-0.853877,-0.305887,0.421064,-0.103366,0.910581,-0.400159,-0.226295,0.943388,-0.242409,-0.657308,0.700034,-0.278970,-0.796014,0.575182,-0.188299,0.817377,0.079440,0.570574,0.964171,0.070650,0.255623,-0.172704,0.117985,-0.977874,-0.121860,0.113865,-0.985961,-0.330882,-0.264809,-0.905728,-0.236641,-0.307352,-0.921690,-0.258492,-0.275552,-0.925871,-0.733299,-0.505783,-0.454299,0.925535,-0.212653,-0.313242,0.785028,-0.413862,-0.460860,0.797388,-0.340587,-0.498123,0.998596,0.050172,-0.015168,0.982818,0.119633,-0.140416,0.973907,0.117771,-0.193976,0.820948,0.398236,0.409162,-0.196905,0.976257,-0.089908,-0.265786,0.961699,-0.066713,0.263833,-0.424726,-0.865993,0.669820,0.714377,0.202368,0.608936,0.737693,0.291482,0.842891,-0.447737,-0.298318,0.915647,-0.336680,-0.219520,-0.927458,0.372631,-0.030793,-0.755455,0.601184,-0.260384,-0.821223,0.562517,-0.095492,-0.159459,-0.373760,0.913694,-0.271401,-0.478378,0.835139,0.001312,-0.625568,0.780145,-0.271096,-0.813532,-0.514420,0.444044,0.723411,-0.528642,-0.056551,0.183935,0.981292,-0.922910,0.228828,0.309519,-0.915586,0.179724,0.359691,-0.950011,-0.310892,0.028169,-0.939573,-0.257179,0.225837,-0.945158,-0.318979,0.070101,0.908536,-0.290506,-0.300211,-0.924375,-0.245949,-0.291574,-0.911557,-0.221473,-0.346385,-0.844356,-0.535539,-0.014527,-0.579913,0.642750,-0.500534,-0.561846,0.589343,-0.580462,-0.993957,0.071291,0.083346,-0.983428,0.095920,0.153722,0.143712,-0.037233,-0.988891,-0.101566,0.359203,0.927702,-0.369396,-0.069826,0.926633,0.188116,-0.434431,-0.880825,0.497360,-0.399884,-0.769860,0.993774,-0.008667,0.110843,0.924894,0.368969,-0.091494,0.070101,-0.420759,-0.904447,0.526933,-0.713462,0.461776,0.438948,-0.770043,0.462935,0.329508,-0.335582,-0.882473,0.340709,-0.371288,-0.863704,-0.550371,-0.291147,0.782464,-0.633686,-0.309030,0.709128,-0.638997,-0.690695,0.338511,-0.663808,0.315104,0.678274,0.545610,-0.090670,0.833094,-0.042329,0.779382,0.625080,0.006561,0.954131,0.299295,-0.043855,0.872951,0.485794,0.960784,-0.185797,0.205756,-0.443190,-0.504807,-0.740745,0.080935,0.233589,-0.968932,0.322520,0.924802,0.201636,0.390301,0.894589,0.217597,0.448256,0.879391,0.160375,0.686514,0.642994,0.339396,0.618183,0.654592,0.435102,0.016327,0.925016,0.379559,-0.969420,-0.194037,0.150121,0.014374,-0.062532,-0.997925,0.644276,0.365642,0.671712,0.563189,0.407544,0.718802,0.988708,0.017487,-0.148747,0.993530,0.087008,-0.072939,0.406354,0.913419,0.021821,0.318491,0.941984,0.105686,-0.340800,0.593585,-0.728996,-0.975860,-0.215155,-0.036927,-0.856105,-0.210181,0.472091,-0.936674,-0.129582,0.325297,0.641743,0.684194,-0.346416,-0.004883,0.169439,-0.985504,-0.272622,0.127506,-0.953612,0.026307,0.397046,-0.917417,0.472427,-0.408643,0.780877,0.324015,-0.415326,0.849971,-0.143101,0.371960,0.917112,-0.232551,-0.296884,-0.926145,0.931974,-0.007508,0.362377,0.910154,0.063234,0.409345,0.349925,0.894070,0.279519,0.485336,0.867885,0.105716,0.355907,0.932554,0.060274,0.154057,0.227760,0.961425,0.178076,0.065615,0.981811,0.001709,0.044740,0.998993,-0.632771,-0.137791,-0.761956,-0.792749,-0.311106,-0.524155,0.493820,-0.038759,0.868679,0.329539,-0.036805,0.943388,0.269173,0.542222,0.795923,-0.987579,-0.154332,0.029054,-0.906980,-0.267830,0.324992,-0.144841,0.839229,-0.524094,0.495468,-0.135655,0.857936,0.331126,-0.097324,0.938536,0.539537,-0.064333,0.839473,0.039308,-0.415693,0.908628,-0.015870,-0.648152,0.761315,-0.157872,-0.525925,0.835719,0.011872,0.266762,-0.963683,-0.117252,0.081484,-0.989746,0.259682,-0.213538,-0.941771,0.348094,-0.218848,-0.911527,0.468886,-0.739494,0.482955,-0.858089,0.352306,-0.373486,-0.950407,0.177190,-0.255501,0.652486,0.325938,-0.684072,0.795160,0.190039,-0.575823,0.993347,0.114872,0.003723,0.973785,0.130100,-0.186438,0.988861,0.001068,-0.148808,-0.956420,0.137272,0.257637,-0.959960,0.073153,0.270302,-0.957823,-0.001343,0.287301,0.626789,0.174902,0.759270,0.873440,-0.243477,0.421674,0.895596,-0.176458,0.408338,0.895383,-0.211951,0.391522,-0.094699,0.441267,0.892331,0.278420,-0.192297,-0.940977,-0.005646,-0.310007,-0.950682,0.834376,0.095096,0.542863,0.952940,0.131138,-0.273263,0.850856,0.442396,-0.283334,0.490249,0.811823,-0.317057,0.858150,0.421186,-0.293466,0.932310,0.047029,-0.358531,0.907102,0.197119,-0.371838,0.036317,0.468398,-0.882748,0.080569,0.598407,-0.797113,0.438551,0.892514,0.105014,0.898434,0.056215,0.435438,0.880001,0.141362,0.453413,0.865352,0.065065,0.496872,0.638691,0.595508,0.487228,0.754570,0.460738,0.467238,-0.971129,-0.143956,0.190100,-0.159948,0.637287,0.753807,0.610950,0.782128,0.122227,0.553667,0.693960,0.460219,0.325510,-0.761895,0.559923,-0.985107,-0.151982,0.079989,-0.927610,-0.205390,0.311930,0.999146,-0.011536,0.039064,0.497482,0.709342,0.499313,0.611194,0.760979,0.217414,-0.014710,-0.394391,-0.918790,0.260475,-0.366558,-0.893185,0.001312,-0.317087,-0.948363,0.223518,0.939665,-0.258950,0.003143,0.976318,-0.216254,-0.066134,0.932493,-0.354991,-0.400494,-0.226722,-0.887783,-0.509507,-0.325022,-0.796686,0.255074,-0.515580,0.817957,0.137944,-0.537645,0.831782,0.004395,-0.006317,-0.999969,-0.579821,-0.018097,0.814539,-0.483383,-0.252876,0.838069,-0.654561,0.085269,0.751152,0.473647,-0.332011,-0.815699,0.437513,-0.368633,-0.820154,0.187201,0.045625,-0.981231,0.327158,0.128941,-0.936125,-0.312540,-0.185827,0.931516,-0.496109,-0.324442,0.805322,-0.564470,-0.260720,0.783166,-0.834773,0.501907,-0.226264,-0.809900,0.586505,0.002075,-0.665212,0.655568,-0.357280,-0.414655,-0.350658,-0.839656,-0.602832,-0.244758,-0.759362,0.418104,-0.313913,0.852412,0.651387,0.572497,-0.497879,0.617298,0.585162,-0.525803,0.700461,0.573870,-0.424238,0.168676,-0.248482,-0.953825,-0.429029,0.280923,0.858455,0.829981,-0.490890,0.264748,0.808161,-0.218970,0.546709,0.185827,0.317881,-0.929716,0.463057,0.389447,-0.796167,-0.836299,0.436506,-0.331706,-0.697043,0.494888,-0.518815,-0.911222,0.374889,-0.170537,0.408826,-0.034974,0.911924,0.207221,-0.320048,-0.924436,0.038362,-0.232765,-0.971740,0.071596,0.991272,0.110446,0.282998,-0.525010,-0.802637,0.324381,-0.439039,-0.837825,0.264534,-0.462111,-0.846431,-0.766076,-0.301767,-0.567461,-0.935179,0.039888,0.351878,-0.073244,-0.300577,0.950926,-0.478866,0.404584,0.779077,0.113529,0.449934,-0.885800,-0.982360,-0.132664,0.131748,-0.999115,-0.028077,0.030610,0.237037,0.378643,0.894650,0.400586,0.191900,0.895901,0.401898,0.382794,0.831813,0.816889,-0.343638,-0.463210,0.870266,-0.306497,-0.385571,0.525773,0.786706,0.323435,0.529893,0.679678,0.507157,0.275887,0.892575,0.356609,-0.703207,-0.292947,-0.647786,-0.499039,-0.341014,-0.796625,0.088961,-0.497543,-0.862850,0.378704,-0.453597,-0.806696,0.410901,-0.087619,-0.907437,0.057863,0.535081,-0.842799,-0.578631,-0.206458,-0.788995,-0.597613,-0.206702,-0.774651,0.523728,-0.675069,0.519547,0.602863,-0.674551,0.426008,-0.622486,-0.102542,-0.775842,0.479324,0.865261,-0.146825,0.591449,0.804743,-0.050264,0.736229,0.608295,-0.296518,-0.179479,0.308664,-0.934049,-0.613086,0.108097,0.782556,-0.672170,0.118870,0.730766,0.637715,0.730796,0.243294,0.594592,0.689108,0.414197,-0.774468,-0.377178,-0.507828,-0.840968,-0.276131,-0.465255,-0.940306,-0.221259,-0.258522,-0.086093,-0.102268,-0.990997,-0.156194,-0.141972,-0.977447,0.150395,0.865688,-0.477371,-0.214423,0.955473,-0.202612,-0.144230,0.979369,-0.141484,-0.183477,0.962645,-0.199042,0.067415,-0.938719,-0.337962,0.214515,-0.673482,-0.707358,0.668752,0.653340,-0.354808,0.532273,0.713034,-0.456313,-0.661916,0.328013,-0.673971,-0.130436,-0.787164,0.602741,-0.302011,-0.420392,-0.855586,-0.346171,-0.322001,-0.881161,-0.517289,-0.457961,-0.722922,0.805689,0.391491,-0.444472,0.755638,-0.440352,0.484848,-0.866237,-0.388134,-0.314554,-0.827479,-0.521867,-0.207129,-0.713523,-0.465377,-0.523667,0.996399,0.046541,0.070711,0.958251,0.088534,0.271767,0.959105,0.207312,0.192541,0.959807,-0.262429,0.099399,0.933836,-0.345073,0.093905,0.921934,-0.358470,0.146702,0.930509,-0.040315,-0.363964,-0.053652,-0.121372,-0.991150,0.961791,-0.250282,0.110813,0.903928,-0.371136,-0.212470,0.928343,-0.369304,0.042116,0.581286,-0.041688,0.812586,0.437208,0.075381,0.896176,0.558245,-0.124516,0.820246,-0.661550,0.020203,-0.749596,-0.692587,-0.006104,-0.721274,-0.943510,0.152196,0.294229,-0.985137,0.083926,0.149785,-0.953703,0.020081,0.300027,0.207312,0.916410,-0.342326,0.332377,0.890561,-0.310434,0.065340,0.928953,-0.364360,-0.725974,-0.226325,-0.649373,-0.624531,-0.354137,-0.696066,0.822901,0.189428,0.535630,0.424909,-0.842097,0.332102,0.065828,0.087313,-0.993988,0.566790,-0.621479,0.540788,0.473525,-0.726402,0.498032,-0.936766,0.078433,0.341044,-0.935606,0.149785,0.319651,-0.920225,0.095004,0.379650,-0.112247,-0.449660,0.886105,0.577746,-0.449416,0.681295,0.429945,-0.438887,0.788965,-0.935453,-0.035310,0.351604,-0.870846,0.223029,0.437971,-0.779107,0.148961,0.608875,0.974731,0.002655,0.223243,0.753685,-0.204291,0.624653,0.145970,0.907041,-0.394848,0.109806,0.989257,-0.096164,0.896817,0.068209,0.437025,0.865535,-0.004608,0.500809,0.876431,-0.053041,0.478591,0.625965,-0.179327,-0.758904,-0.934782,0.106845,0.338755,0.052217,0.330607,-0.942289,-0.429823,-0.388745,0.814905,-0.112094,-0.653340,0.748680,0.664266,-0.700491,0.260781,0.786737,-0.408216,-0.462996,0.900174,-0.259468,-0.349712,0.244026,-0.300943,-0.921873,0.684530,0.502518,0.528031,0.695273,0.514176,0.502182,-0.787011,-0.207312,-0.581011,-0.217658,-0.490005,-0.844081,-0.940184,0.299722,0.161809,-0.188116,0.439375,-0.878353,0.288339,-0.764061,0.577044,0.365703,-0.627888,0.687002,0.091159,0.403516,-0.910398,0.219367,0.261605,-0.939909,0.009369,0.349345,-0.936918,0.414136,0.818781,-0.397504,0.373699,0.823939,-0.425916,0.334758,0.840663,-0.425611,-0.627308,-0.430860,0.648671,-0.531419,-0.414777,0.738578,-0.864315,-0.014985,0.502670,-0.048524,-0.147954,-0.987793,0.090915,0.147954,0.984802,-0.027772,0.105838,0.993988,-0.015351,-0.289773,-0.956938,-0.164556,-0.349925,-0.922178,0.881375,0.197150,0.429243,0.509232,0.860500,-0.013672,0.539903,0.841700,-0.000397,0.360088,0.916349,0.174963,0.073641,0.664083,-0.744011,0.069643,0.693899,-0.716666,-0.528184,-0.448531,0.720939,-0.300760,-0.814417,0.496231,-0.423811,-0.430708,0.796777,0.536302,0.602435,0.591083,0.307810,0.159062,-0.938047,0.068575,0.045808,-0.996582,0.304056,-0.883206,0.357006,0.251289,-0.948912,0.190802,-0.181829,0.120945,0.975860,0.020386,0.051729,0.998444,0.051515,0.030610,0.998199,0.839106,-0.178747,0.513688,0.831416,-0.298227,0.468825,0.925016,-0.199438,0.323283,0.907010,-0.193701,0.373852,0.350627,0.121799,0.928526,0.263771,0.324992,0.908170,0.432875,0.309122,0.846767,0.367962,-0.351604,0.860775,0.831690,-0.320444,0.453383,0.959624,-0.017701,-0.280648,0.998291,-0.042726,-0.039613,0.995453,-0.080142,-0.051149,-0.282205,0.196142,0.939055,-0.312143,-0.116398,0.942839,-0.463546,0.591845,-0.659383,-0.149480,-0.358165,-0.921598,0.504288,0.452864,0.735221,-0.840632,-0.180334,-0.510636,-0.913572,-0.368511,-0.171911,-0.894620,-0.294961,-0.335551,-0.630940,0.599048,-0.492935,-0.627430,0.437086,-0.644398,-0.770653,0.388226,-0.505295,0.870632,0.220862,0.439528,0.501358,0.832667,0.235054,-0.920621,0.173406,0.349742,-0.113041,0.456465,-0.882504,-0.169286,0.595355,-0.785394,-0.124271,0.536882,-0.834437,-0.693838,0.314768,-0.647664,-0.523331,0.290017,-0.801233,-0.436354,0.428938,-0.790918,0.196936,0.866695,-0.458266,0.743248,0.013794,-0.668813,-0.138493,0.109073,-0.984313,0.815363,-0.255989,0.519272,0.838130,0.302896,-0.453597,0.641560,0.478774,-0.599261,-0.814570,-0.265267,-0.515793,0.848842,0.022889,0.528123,0.851375,0.328501,0.408918,0.790887,0.310038,0.527573,0.326762,-0.116886,0.937834,0.441054,0.470534,-0.764214,0.328532,0.539842,-0.774987,0.814508,0.503250,0.288614,0.869930,0.490127,0.054048,0.131779,0.646046,-0.751793,-0.101962,0.257790,-0.960784,0.134312,-0.284433,0.949217,0.249825,-0.425825,0.869594,0.046510,0.846614,-0.530106,0.155950,-0.244087,-0.957121,0.015748,-0.204413,-0.978729,0.706320,0.336924,0.622517,0.514634,0.097842,0.851772,0.494705,-0.089480,0.864406,-0.559496,-0.269753,0.783685,-0.550920,-0.328074,0.767327,0.960936,-0.118351,0.250130,-0.124119,-0.127842,-0.983978,-0.208563,-0.263894,-0.941710,0.940947,-0.337199,0.029145,0.933988,-0.326762,-0.144475,0.951537,-0.307230,-0.011078,-0.056246,0.583331,-0.810266,-0.003388,0.483474,-0.875332,0.868679,-0.373882,-0.324870,-0.742637,0.047060,-0.667989,-0.921506,-0.260292,0.288156,-0.893124,-0.194617,0.405469,-0.944212,-0.175726,0.278420,-0.186804,0.473525,0.860714,-0.122745,0.251411,0.960051,-0.114750,0.445448,0.887906,-0.543077,0.301920,0.783471,-0.435560,0.433882,0.788659,0.826289,-0.283395,-0.486740,-0.493027,-0.431989,-0.755150,-0.766167,-0.638508,0.072268,-0.862331,-0.383557,0.330485,-0.891293,-0.229652,0.390912,-0.861782,-0.456587,0.220954,-0.465194,-0.439070,-0.768609,0.816523,-0.294107,-0.496750,-0.866604,-0.368999,-0.335826,0.098270,0.819025,-0.565233,0.791528,-0.105747,-0.601856,0.949644,-0.133946,-0.283212,0.860653,-0.185827,-0.474044,-0.063021,-0.658925,0.749535,-0.070009,-0.953185,0.294076,0.383648,-0.444655,0.809351,0.389599,-0.345378,0.853755,0.586535,0.414502,-0.695761,0.785028,0.239204,-0.571368,0.915830,0.297189,0.269936,0.900845,0.292367,0.320902,0.804529,0.548875,0.226691,0.899899,-0.238380,0.365093,0.928678,-0.138157,0.344127,0.217383,0.898495,0.381329,0.270760,0.893277,0.358745,0.685171,-0.507309,0.522629,0.339671,0.243934,0.908322,0.101474,0.822382,0.559801,0.986908,-0.107242,0.120304,0.865963,-0.230903,0.443556,0.886685,-0.246254,0.391278,0.419660,-0.263314,0.868618,-0.973632,-0.182318,0.137028,-0.957305,-0.288766,-0.011475,0.670949,-0.288766,0.682913,0.520005,0.456557,-0.721885,0.832667,0.314707,-0.455641,-0.282296,-0.207648,0.936552,-0.469771,-0.185400,0.863063,-0.283761,0.030763,0.958373,0.011109,-0.397778,0.917386,0.893765,-0.366619,-0.258278,-0.844447,0.357921,0.398450,-0.684744,-0.677328,-0.268899,-0.359203,0.795892,-0.487350,-0.503189,0.656575,-0.561815,-0.271096,0.743339,-0.611469,-0.240791,0.322428,0.915433,-0.576556,0.521897,0.628620,-0.481338,0.457381,0.747703,-0.452528,-0.510392,-0.731223,-0.342448,-0.359050,-0.868191,-0.443861,-0.350627,-0.824641,0.421125,-0.241005,-0.874386,0.454695,-0.255684,-0.853145,-0.921262,-0.375164,0.102268,-0.902310,-0.385846,-0.192145,-0.984680,0.039460,0.169744,-0.997314,0.037080,-0.062990,-0.962767,-0.154576,-0.221625,0.165807,0.513016,0.842189,0.814356,0.065310,-0.576647,0.966186,-0.257668,-0.005646,0.957945,-0.272713,-0.089084,-0.115329,0.776971,-0.618854,-0.933744,-0.169225,-0.315348,-0.735405,-0.551714,-0.393414,-0.697989,-0.325816,-0.637654,0.939726,-0.066500,0.335307,0.933256,-0.159001,0.322062,-0.934172,0.126408,-0.333628,0.901639,0.055635,0.428877,0.985717,0.010010,0.168065,0.466140,0.868068,0.170751,-0.781518,-0.371746,-0.500992,0.000885,0.951933,0.306223,-0.322977,0.698599,0.638447,-0.417035,0.430647,0.800348,0.373547,-0.182195,-0.909513,0.222510,-0.375011,-0.899899,-0.571276,-0.373974,-0.730583,-0.675100,-0.501389,-0.541124,-0.496597,-0.487960,-0.717795,0.911008,-0.409925,0.044771,0.883541,-0.459578,0.090152,0.500595,0.861080,0.088870,0.767541,0.631947,0.107181,-0.411237,-0.564287,-0.715842,-0.473647,-0.876186,0.088961,0.577929,0.014466,0.815943,0.454634,0.079470,0.887112,-0.074129,0.019257,-0.997040,-0.187445,-0.024995,-0.981933,-0.904752,-0.395581,-0.157750,-0.669851,-0.507248,-0.542161,-0.802210,-0.548326,-0.236152,-0.951811,0.187445,-0.242683,-0.990844,-0.083651,-0.105716,-0.974792,-0.044801,0.218451,0.918455,-0.202185,0.339854,0.966216,0.030396,0.255837,0.931272,0.089541,0.353130,0.501114,-0.300943,-0.811335,0.182165,-0.327555,-0.927091,0.945708,-0.310251,0.096500,-0.993683,-0.072085,0.085788,-0.990875,-0.098727,0.091433,-0.975005,-0.102573,0.197028,-0.027253,0.959990,-0.278603,-0.111972,0.896054,-0.429579,0.217872,-0.291665,-0.931333,0.346141,-0.339305,-0.874660,0.432600,-0.257302,0.864071,0.009857,0.399182,0.916807,0.986389,-0.157445,0.046968,0.978271,-0.187139,0.089114,-0.944975,-0.042909,0.324259,-0.888272,-0.037141,0.457747,-0.866115,-0.015961,0.499557,0.292215,-0.262551,0.919584,-0.641102,0.144078,0.753777,-0.658010,0.024720,0.752586,-0.722892,-0.109256,0.682211,-0.583728,-0.571123,0.577074,-0.177313,-0.691641,0.700095,-0.429609,-0.482253,0.763421,-0.030946,-0.228889,0.972930,-0.092624,-0.445357,0.890530,0.279885,0.227515,0.932676,0.123936,0.167058,0.978118,-0.286752,-0.559465,-0.777642,0.161412,-0.492111,-0.855403,-0.092868,0.670095,-0.736412,0.200476,0.685751,-0.699637,-0.198645,0.108310,-0.974059,-0.067934,0.151219,-0.986145,0.557726,-0.305063,-0.771905,0.811609,-0.281198,-0.512040,-0.501236,-0.699240,0.509690,0.845637,-0.436110,0.307657,0.903592,-0.337443,0.263863,0.920713,-0.301065,0.248207,0.227210,0.912992,0.338755,0.799036,0.335398,-0.499008,0.713157,0.353221,-0.605457,0.953581,-0.129612,0.271706,0.997559,-0.024812,-0.065004,0.957549,-0.251015,-0.141606,-0.391247,-0.229926,-0.891079,-0.913541,-0.263100,0.310160,-0.593707,-0.108341,0.797327,-0.309580,-0.354198,-0.882412,0.116062,-0.314432,-0.942137,0.449629,-0.105747,0.886898,-0.992553,-0.117924,-0.029572,-0.894406,0.363140,0.260964,0.567614,0.803919,0.177374,0.680319,0.688711,0.250557,0.082339,-0.513565,-0.854060,0.026185,-0.575243,-0.817530,-0.172826,-0.342112,-0.923612,-0.104801,-0.402966,-0.909177,-0.180548,0.254036,-0.950163,-0.934324,-0.325510,-0.145085,-0.943754,-0.211219,0.254341,-0.669515,-0.424360,-0.609607,-0.840938,-0.331248,-0.427869,0.906461,0.132481,0.400922,0.967132,-0.250801,-0.041627,0.979980,-0.173956,-0.096591,0.955046,-0.101566,0.278512,0.975494,-0.062380,0.210974,0.981811,-0.049959,0.183020,-0.943358,-0.327830,0.050935,0.571734,-0.200568,-0.795526,0.628773,0.007172,-0.777520,0.274972,0.640919,-0.716636,-0.659230,-0.523270,0.539933,-0.656728,-0.688925,0.306619,-0.996948,0.029633,-0.072115,0.570025,0.721091,-0.393750,0.481857,0.822596,-0.301828,-0.994201,0.033235,-0.102115,-0.982727,-0.133061,0.128452,0.885403,-0.439589,0.150853,-0.949767,0.101047,0.296121,-0.943236,0.043306,0.329173,0.881954,0.285226,-0.375195,-0.335917,-0.464003,-0.819636,0.053682,-0.237129,-0.969970,0.053194,-0.250832,-0.966552,0.991974,0.118625,-0.043458,0.683096,-0.215766,0.697684,0.681783,0.343883,0.645650,0.576495,0.675192,0.460128,-0.794214,-0.253914,0.551988,-0.213294,-0.447798,0.868313,0.033876,-0.160009,0.986511,0.914945,-0.132664,0.381115,0.738701,-0.213202,0.639393,0.371166,-0.413800,0.831233,0.488998,-0.310800,-0.814997,0.481216,-0.297739,-0.824458,0.577776,-0.265633,-0.771722,0.448897,-0.372967,-0.812006,0.594043,-0.276315,-0.755455,0.804865,-0.248451,0.538896,0.796075,-0.254433,0.549058,0.856319,-0.304361,0.417158,0.167211,0.883694,0.437086,-0.459731,0.881588,0.106784,-0.514512,0.844569,0.148198,0.515305,-0.434004,-0.738945,-0.127415,-0.672201,0.729301,0.447829,0.698050,-0.558672,0.338542,0.840663,-0.422651,0.182165,0.787622,-0.588580,0.451125,-0.321329,-0.832575,0.472823,-0.351299,-0.808069,-0.347118,-0.535142,-0.770135,0.603473,0.249641,0.757286,0.487106,-0.357280,-0.796899,0.757561,-0.370617,-0.537309,-0.239601,-0.513321,0.824030,-0.216620,-0.349376,0.911588,-0.156407,-0.493851,0.855342,0.561876,0.744194,0.361126,0.552416,0.688955,0.469161,0.513016,0.642476,0.569201,0.906888,0.038667,0.419538,-0.542222,0.045137,0.838984,0.603748,0.741874,0.291696,0.580523,0.799188,0.155766,0.477523,0.878445,0.016633,0.941832,-0.308176,0.133854,0.932524,-0.357707,-0.049196,-0.548875,-0.469649,-0.691458,-0.468673,-0.170324,-0.866756,0.366314,0.920499,0.135777,0.157414,0.972839,0.169561,0.442793,0.881527,0.163762,0.926115,0.047334,0.374218,0.816553,-0.009644,0.577166,0.781365,-0.057741,0.621357,-0.206122,0.877102,-0.433760,-0.930876,-0.033753,0.363750,-0.942259,0.133030,0.307230,-0.928709,0.001160,0.370769,-0.075747,0.125828,-0.989135,0.123020,0.606891,-0.785180,0.009919,0.718619,-0.695303,0.202399,0.759453,-0.618244,-0.958831,-0.064364,0.276467,-0.559496,-0.172582,-0.810633,-0.513108,-0.451674,-0.729850,-0.298929,0.012787,0.954161,-0.365917,-0.021149,0.930387,0.964568,-0.263710,0.001099,0.897000,-0.405896,-0.174871,-0.264260,0.957976,0.111454,-0.535508,0.821284,0.196570,0.162847,-0.395184,-0.904019,0.139897,-0.336222,-0.931303,-0.257851,-0.207892,0.943541,0.155797,0.018036,0.987610,0.922727,-0.057741,0.381024,0.831843,-0.074557,0.549913,0.953185,-0.128239,0.273751,0.219703,0.966765,0.130558,0.337230,0.923856,0.180883,0.479751,0.666005,0.571154,0.349895,0.723624,0.594897,0.224677,-0.284738,-0.931883,0.249947,-0.296579,-0.921690,0.010712,-0.336528,-0.941588,0.650960,-0.671499,0.353984,0.645466,-0.663778,0.377819,-0.358959,-0.257851,0.897000,-0.634083,-0.305521,-0.710318,0.909207,-0.264168,0.321726,0.998627,-0.017792,-0.048860,0.499924,-0.090579,-0.861293,0.581256,-0.199896,-0.788751,-0.107089,-0.155248,-0.982025,-0.496170,-0.265542,-0.826594,-0.485244,-0.184118,-0.854732,0.149449,-0.665822,0.730949,0.054537,-0.263558,0.963073,0.927152,-0.166509,0.335582,0.332621,0.805567,0.490310,0.238350,0.846553,0.475906,0.453810,0.762108,0.461745,-0.910276,-0.387219,0.146306,0.034913,0.560533,0.827387,0.770318,0.636158,0.043641,0.386700,0.075564,0.919065,0.285470,0.044160,0.957366,-0.647389,-0.353618,-0.675130,-0.795618,-0.108036,-0.596026,0.370678,0.437941,0.818995,0.228919,0.490951,0.840541,-0.848170,-0.529649,0.003082,-0.906339,-0.416669,-0.069948,0.306406,0.933073,0.188299,0.267922,0.932340,0.242683,0.987548,0.155217,-0.024384,0.957335,0.119907,-0.262886,0.481216,0.835627,0.264840,-0.930509,-0.358287,-0.075900,0.237892,-0.164800,0.957183,0.478988,0.875942,0.057161,0.680441,0.721366,0.128636,0.362590,0.383862,0.849178,0.521989,0.189611,0.831599,0.412976,0.669118,0.617786,0.537187,0.403363,0.740745,-0.437239,-0.090304,-0.894772,-0.927732,0.002655,-0.373211,-0.946654,0.170812,0.273141,-0.952178,0.155889,0.262673,-0.963805,0.126286,0.234718,-0.938810,0.067629,0.337657,-0.764092,0.644520,-0.027406,0.057802,0.962981,-0.263253,0.222053,0.907651,0.356151,0.121555,-0.455458,0.881893,-0.137303,-0.143529,0.980071,-0.168340,0.204749,-0.964202,0.461013,-0.250404,-0.851314,-0.197913,-0.286691,-0.937346,0.594714,-0.194983,-0.779900,0.470962,-0.429914,-0.770257,0.446028,-0.571642,-0.688650,0.093661,-0.068270,-0.993255,-0.543107,-0.404584,-0.735710,-0.490036,-0.320597,-0.810572,0.086398,0.937834,0.336070,-0.532060,-0.362346,-0.765221,-0.569414,-0.269448,-0.776605,0.129490,0.664663,-0.735801,0.035005,0.716544,-0.696646,0.240486,0.959288,0.147923,0.972594,0.186499,-0.138615,-0.979888,0.020753,0.198431,-0.991943,-0.114597,0.053713,0.373638,0.799463,0.470290,-0.707755,0.381542,0.594501,-0.043306,-0.534013,0.844325,-0.020753,-0.487808,-0.872677,0.460158,-0.294107,-0.837672,0.820643,-0.361400,-0.442579,0.799097,-0.397137,-0.451338,0.883053,-0.229163,-0.409467,-0.878994,0.169988,0.445479,0.510910,-0.315897,-0.799463,0.126011,-0.986145,0.107730,0.334666,-0.220069,-0.916257,-0.997650,-0.067751,0.008545,-0.956816,0.109684,0.269143,-0.047639,0.088290,-0.994934,0.551622,-0.098941,0.828181,-0.943205,-0.042299,0.329417,-0.959014,-0.036653,0.280892,0.018769,0.803827,0.594531,0.521928,-0.217109,-0.824885,0.394177,-0.180822,-0.901059,0.321848,-0.256386,-0.911374,0.939299,0.328684,0.098361,0.978210,0.008728,0.207404,-0.320444,0.366436,-0.873501,-0.449721,0.221564,-0.865230,-0.288491,0.357402,0.888241,-0.346873,0.296945,0.889645,-0.491165,0.303629,0.816401,-0.933622,-0.155065,0.322916,-0.923154,-0.143010,0.356792,-0.955412,-0.132084,0.263985,-0.910276,-0.054201,0.410382,-0.713950,0.486038,-0.503952,-0.773370,-0.252174,-0.581622,-0.751610,-0.372326,-0.544450,-0.483383,-0.249123,-0.839167,-0.597156,-0.215094,-0.772729,-0.720420,-0.230323,-0.654134,0.169744,0.869106,0.464553,0.001129,0.873135,-0.487472,-0.134342,0.877926,-0.459517,0.068331,0.905942,-0.417798,0.526414,-0.274117,0.804804,0.345042,-0.354289,0.869106,0.549974,-0.301645,0.778771,0.475356,-0.265908,-0.838618,0.827204,-0.270547,-0.492447,0.919584,-0.285134,0.270241,0.689810,-0.624409,-0.366344,0.101382,0.855922,0.507035,0.497055,0.441267,0.747093,0.469955,0.429548,0.771081,-0.379315,-0.283090,-0.880856,-0.386456,-0.336039,-0.858882,-0.572069,-0.212378,-0.792199,0.331706,-0.470779,-0.817499,0.312449,-0.408032,-0.857814,0.373821,-0.472030,-0.798364,-0.402539,0.199164,0.893460,-0.358837,0.331095,0.872677,0.933866,-0.192358,0.301401,0.992401,-0.114780,0.044191,0.829829,0.289407,0.477035,0.780633,0.371654,0.502457,-0.334849,-0.022858,-0.941954,0.473037,-0.312967,-0.823542,0.402478,-0.174078,-0.898709,0.613239,-0.349254,-0.708457,0.464248,0.877041,0.123447,0.295206,0.938932,0.176702,0.290872,0.951323,0.101810,-0.384686,0.855953,-0.345470,-0.358867,0.885281,-0.295724,0.616504,-0.331004,-0.714347,0.963439,0.267800,-0.002686,0.355449,-0.929197,0.100925,-0.969176,-0.121311,-0.214331,0.301462,-0.466964,-0.831294,0.495315,-0.375164,-0.783502,-0.304056,0.040834,-0.951750,-0.895413,-0.223121,0.385235,-0.897885,-0.217170,0.382855,-0.900723,-0.255715,0.351054,0.218696,0.273965,0.936521,0.087436,0.244972,0.965575,0.931028,0.173284,0.321146,0.916074,-0.054262,0.397229,-0.990722,0.010987,0.135350,-0.002197,0.850887,-0.525315,0.119938,0.829035,-0.546129,-0.272591,0.757256,-0.593493,0.109439,-0.321574,0.940519,-0.395276,0.898984,0.188482,-0.537095,0.809137,0.238319,0.374950,-0.315958,0.871517,0.492111,-0.206030,0.845759,0.295877,-0.399792,0.867519,-0.414563,-0.351238,-0.839503,0.997040,-0.056642,-0.051637,0.997742,-0.032136,0.058718,0.333506,-0.232826,-0.913511,0.470748,-0.426923,-0.772057,0.822443,-0.368999,-0.432875,-0.976348,-0.215644,-0.015412,-0.658956,-0.417341,-0.625721,-0.575671,-0.320688,-0.752129,-0.584674,0.279519,0.761559,-0.697134,0.030915,0.716239,-0.408155,-0.590228,-0.696402,0.197607,0.407422,-0.891568,0.147252,0.373913,-0.915677,0.247047,-0.473251,-0.845546,-0.098025,0.858821,-0.502792,-0.197272,0.839991,-0.505417,-0.492355,-0.009430,0.870327,0.909146,-0.291940,0.296884,0.815699,-0.412519,0.405499,-0.981719,-0.046419,0.184454,-0.943815,-0.324320,0.063265,-0.935972,-0.102206,0.336863,-0.966399,-0.256600,-0.014130,-0.273812,0.956908,0.096347,-0.398572,0.907743,0.130863,-0.106082,-0.177770,-0.978332,-0.331614,-0.106357,-0.937376,-0.913572,-0.181829,0.363720,-0.571642,-0.150517,-0.806543,0.956572,0.102145,0.272988,-0.494156,0.413190,0.764885,-0.581469,0.279855,0.763878,-0.863155,-0.020386,0.504471,-0.794977,0.029695,0.605884,-0.776849,-0.041322,0.628315,0.862819,-0.030457,0.504532,0.797418,-0.247566,-0.550279,0.727805,-0.278817,-0.626514,0.679983,-0.252510,-0.688345,-0.963439,0.158330,0.215979,-0.975249,-0.183874,0.122593,-0.978881,-0.171819,0.110599,-0.024445,0.042085,-0.998810,-0.918241,-0.394971,-0.028565,-0.780572,-0.046846,-0.623249,-0.544481,0.124363,-0.829463,-0.340037,0.232917,-0.911100,0.545885,0.603961,-0.580676,0.485183,0.581469,-0.653035,-0.820338,-0.204260,-0.534135,-0.974181,-0.169683,-0.148747,-0.978545,-0.094028,-0.183172,-0.997620,-0.037690,-0.057619,0.429701,-0.342601,-0.835414,-0.826197,-0.330515,-0.456191,-0.765923,-0.226691,-0.601611,0.849025,-0.035920,-0.527085,0.875057,0.123997,-0.467818,0.908231,-0.155675,-0.388379,0.889676,-0.033357,0.455336,0.946440,-0.275185,0.168706,0.856777,-0.329234,-0.396832,0.901791,-0.265694,-0.340770,-0.407300,0.885983,0.221564,-0.510117,0.834407,0.208625,-0.566515,0.803919,0.180975,-0.732231,0.658589,0.173345,0.308786,0.525834,0.792535,0.430677,0.486373,0.760186,-0.793939,0.602954,0.077914,0.396008,-0.479446,0.783105,0.034516,0.914945,-0.402020,-0.234474,0.949675,0.207617,-0.191473,0.943419,0.270669,-0.945860,0.251503,0.205054,-0.972289,-0.000275,0.233680,-0.942686,-0.067476,0.326701,-0.876614,-0.170263,-0.450026,-0.840815,-0.354442,-0.409101,-0.869381,-0.120609,-0.479141,-0.841090,0.458907,0.286233,-0.879238,0.475295,0.031373,-0.505295,-0.274331,-0.818140,-0.149693,-0.388714,-0.909085,0.143468,0.967895,0.206244,-0.026002,0.986450,0.161901,0.200293,0.971404,0.127415,0.519303,0.838740,0.163610,-0.454085,-0.109958,-0.884121,-0.867550,-0.261757,0.422834,-0.946074,-0.110050,0.304605,-0.930174,-0.028901,0.365947,-0.881771,0.100375,0.460829,0.328806,0.933958,0.139866,0.379009,0.918973,0.108524,0.767266,-0.328745,0.550615,0.935209,-0.154088,0.318735,-0.530442,-0.249428,-0.810175,-0.437635,-0.386456,-0.811823,-0.584674,-0.320231,-0.745354,-0.577563,0.299081,0.759545,0.430433,-0.383435,-0.817103,0.392193,-0.457503,-0.797998,0.892209,-0.389996,-0.227699,0.964995,-0.185461,0.185247,0.389569,0.916379,0.091861,0.697714,0.690176,0.191839,-0.184820,-0.277779,-0.942686,-0.185247,-0.338023,-0.922697,-0.420087,0.146275,0.895596,-0.594226,0.334086,0.731590,0.504501,-0.232429,-0.831507,0.975341,-0.077975,-0.206366,0.988281,-0.076846,-0.131657,0.449019,0.506577,0.736015,-0.192816,-0.316538,-0.928739,0.792871,-0.165685,-0.586383,-0.948790,0.091403,-0.302377,0.543657,-0.499741,0.674276,0.992950,-0.100864,-0.062136,0.992584,-0.095584,0.074953,-0.742149,0.286477,0.605884,-0.340648,0.923765,-0.174902,-0.922697,-0.283853,0.260842,-0.843135,-0.534165,-0.061312,-0.957396,-0.272744,0.094516,-0.251259,-0.147710,-0.956572,0.185217,-0.131565,-0.973815,0.255165,0.681509,-0.685842,0.599384,0.779717,-0.180883,0.746117,0.541704,-0.387097,-0.714560,0.321329,0.621357,-0.630268,0.460952,0.624683,0.020905,0.178564,-0.983673,0.018281,0.408460,-0.912564,-0.541551,-0.224830,-0.810022,-0.661489,-0.303385,-0.685781,-0.231544,-0.320292,-0.918546,-0.518509,-0.240791,-0.820429,0.315195,0.836360,0.448469,-0.994903,0.089114,0.046754,-0.969604,0.165258,0.180242,0.097812,-0.124027,-0.987426,0.439070,0.875607,0.201178,0.369488,0.898160,0.238166,-0.558641,0.435469,-0.705863,-0.928983,0.202460,0.309732,-0.886013,0.329264,0.326365,-0.950285,0.214270,0.225867,0.545396,-0.334452,-0.768517,0.261177,0.948973,0.176580,0.456984,0.872250,0.174078,-0.151067,-0.349467,-0.924680,-0.463637,-0.542039,0.700858,-0.509232,-0.727103,0.460341,0.020692,0.359050,-0.933073,-0.136570,0.246132,-0.959563,-0.177465,-0.363140,-0.914670,0.190985,0.635639,-0.747948,0.281777,0.605914,-0.743919,-0.956114,0.037019,-0.290567,0.815180,-0.191076,0.546770,0.809748,0.019715,0.586413,0.966735,-0.146336,-0.209723,0.833644,-0.328593,-0.443861,0.958007,-0.286264,-0.014679,-0.067354,0.847133,-0.527055,-0.154302,0.848598,-0.505966,0.465468,-0.258003,-0.846614,0.158055,-0.110538,-0.981201,0.948057,-0.317118,-0.023774,0.957213,-0.285073,0.049135,0.927885,-0.371990,-0.024934,0.451338,0.844081,0.289438,0.676931,0.636036,0.370342,-0.492782,-0.243843,0.835261,-0.470138,-0.068484,0.879910,0.299722,-0.189825,-0.934935,0.435041,-0.185156,-0.881161,0.106388,-0.010132,-0.994263,0.085940,0.000092,-0.996277,0.038240,-0.080691,-0.996002,-0.116794,0.514756,0.849330,-0.094028,0.262398,0.960356,0.813715,-0.518845,0.261940,0.643941,-0.161809,-0.747734,0.563585,0.005066,-0.826014,0.290231,0.946226,0.142827,-0.016602,0.999847,-0.004700,0.858486,-0.486282,-0.162786,0.495926,-0.276711,-0.823054,-0.948088,0.061068,0.312021,-0.922605,0.307688,0.232612,0.820215,0.401990,0.406934,-0.285775,0.802942,0.523057,0.505020,0.505814,0.699332,0.895779,-0.119663,-0.428053,-0.877255,-0.237587,-0.417035,-0.331309,0.099857,0.938200,-0.321024,-0.058809,0.945219,0.481094,-0.568560,-0.667257,0.398724,-0.488205,-0.776299,0.377483,0.925962,-0.005493,0.393170,0.919462,0.001190,0.489975,0.560686,-0.667470,0.562853,0.557512,-0.610187,0.700125,0.105045,0.706229,0.185156,0.444777,0.876247,0.079897,0.384350,0.919706,0.340434,-0.322886,-0.883053,0.448134,0.881649,0.147740,0.519272,0.321665,0.791742,0.297464,0.645711,0.703238,0.935362,0.160955,0.314859,0.868038,0.461013,0.184179,0.930784,0.292245,0.219489,0.938841,0.278817,0.201941,0.683370,0.263955,0.680624,-0.320200,0.524094,0.789148,-0.388134,0.460097,0.798517,-0.272530,0.490982,0.827418,0.049837,-0.172826,-0.983673,-0.039094,-0.244209,-0.968902,0.226722,0.970672,0.079775,0.340800,-0.476058,-0.810663,0.315226,0.741722,0.591998,0.385205,0.886746,0.255440,0.479171,0.787683,0.387188,0.310465,-0.490616,0.814173,0.446303,-0.288217,0.847163,0.563646,0.817927,0.115238,0.638722,0.740898,0.207526,-0.987945,-0.095859,-0.121525,-0.968657,-0.218238,0.118564,0.876034,-0.473006,0.093844,0.909024,-0.415143,0.035585,-0.032167,0.381573,-0.923765,-0.763054,-0.580157,0.284829,-0.799280,-0.555315,0.229591,0.756127,0.311197,0.575640,0.801569,-0.073336,0.593371,0.533921,-0.265175,0.802850,0.651723,-0.333506,0.681143,0.110752,0.263466,-0.958251,-0.027924,0.283334,-0.958586,0.683035,0.697256,0.217383,0.689138,0.528520,0.495682,0.157140,0.475051,-0.865810,-0.001617,0.448561,-0.893735,0.102268,0.983703,0.147801,0.282876,0.931120,0.230079,0.420179,0.883328,0.207648,0.049532,0.279336,-0.958892,-0.930235,-0.090518,0.355571,-0.809839,-0.233894,-0.537950,-0.889126,-0.411359,-0.200415,-0.230537,-0.082522,-0.969543,-0.947386,-0.183721,-0.262032,-0.936888,-0.308603,-0.164281,-0.906735,-0.237831,-0.348186,0.413160,0.895718,0.164190,0.280984,0.892087,0.353801,0.352062,0.921140,0.165899,0.328684,0.935545,0.129093,0.056887,0.824244,0.563341,0.193670,-0.308054,-0.931425,0.959624,0.235755,0.153294,0.992187,0.061098,0.108554,0.972472,0.027833,0.231330,-0.512497,0.590136,-0.623737,0.507828,-0.323527,0.798364,0.488693,-0.319712,0.811731,-0.941191,-0.336650,-0.028016,0.560686,0.801813,0.206580,0.991272,-0.030580,0.128147,-0.953307,-0.075350,0.292367,0.034181,0.811365,-0.583483,0.149358,0.769921,-0.620380,-0.294504,0.456343,-0.839625,-0.372845,-0.197851,-0.906522,-0.441816,-0.271523,-0.854976,-0.122471,0.185797,-0.974914,-0.084506,0.103580,-0.990997,-0.531663,0.431684,-0.728660,-0.647053,0.487197,-0.586444,-0.158452,-0.340526,-0.926756,-0.252846,-0.375042,-0.891842,0.170202,-0.382519,-0.908109,-0.014313,-0.511704,-0.859004,0.041627,-0.530259,-0.846797,-0.916471,-0.145543,-0.372631,-0.878506,-0.303751,-0.368664,0.062563,-0.113895,-0.991516,0.161931,-0.167974,-0.972381,0.099216,-0.090182,-0.990966,-0.881771,0.340190,-0.326640,-0.804041,0.334483,-0.491501,0.922391,-0.260964,-0.284707,0.971831,-0.177343,-0.155004,0.980621,-0.069582,-0.183111,-0.778710,-0.398755,-0.484298,-0.813593,-0.286721,-0.505783,-0.149541,0.573901,-0.805109,0.009583,0.647938,-0.761589,-0.530931,-0.046205,0.846126,-0.415174,0.071627,0.906888,-0.329783,-0.042512,0.943083,-0.029298,0.179632,0.983276,-0.907834,0.298135,0.294748,-0.888974,0.096988,0.447493,0.745384,-0.022309,0.666219,0.900571,-0.341899,-0.268319,0.805994,-0.366527,-0.464736,0.187628,0.058687,-0.980468,-0.228065,0.053652,-0.972137,0.909574,0.099185,0.403485,0.938902,0.108097,0.326670,0.350566,0.080905,0.933012,0.524369,-0.278146,0.804743,-0.636097,-0.277963,0.719779,-0.801660,-0.145665,0.579730,-0.941313,-0.178259,0.286538,0.213202,0.609973,-0.763176,0.296823,0.944365,0.141453,0.370434,0.927305,0.053468,-0.452284,0.744469,-0.491073,0.912442,-0.336650,-0.232459,0.093539,-0.940916,0.325449,-0.005036,-0.981628,-0.190588,0.154637,-0.490158,-0.857784,-0.836940,-0.308512,0.451979,0.748863,0.637226,-0.181951,0.798364,0.594440,-0.095859,0.864040,-0.220985,-0.452284,-0.391339,-0.356304,-0.848445,-0.935728,-0.351573,0.027802,-0.037812,0.620472,-0.783288,-0.359752,0.602191,-0.712668,-0.994812,-0.100894,0.010895,-0.752434,0.657613,0.036561,-0.738884,0.663045,0.119816,0.407239,0.575854,0.708884,0.451064,0.709830,0.540941,-0.107883,0.096133,-0.989502,-0.614307,-0.467910,-0.635334,-0.172582,-0.329447,-0.928251,-0.396008,-0.293924,-0.869900,0.335612,0.923429,0.186071,0.240761,0.958373,0.153264,-0.009156,0.327952,-0.944639,-0.156713,0.609088,0.777429,0.973113,-0.176519,-0.147893,0.983581,-0.126255,-0.128727,-0.099948,0.325510,-0.940214,0.233497,-0.443648,0.865230,-0.262673,-0.650441,0.712668,-0.388531,-0.364879,0.846095,-0.880093,0.312540,-0.357372,0.725852,-0.199683,0.658193,-0.984497,0.027467,-0.173101,-0.918058,-0.201178,0.341502,-0.949950,-0.127873,0.284982,0.890805,0.160405,0.425062,0.740867,0.090335,0.665517,-0.902921,-0.286233,-0.320505,-0.857997,-0.194281,-0.475417,-0.327250,-0.258827,-0.908780,0.062960,-0.056063,-0.996429,-0.173437,0.839686,-0.514603,-0.083743,0.857479,-0.507584,0.663045,-0.479385,0.574877,0.381603,-0.276955,-0.881832,-0.013123,-0.297220,-0.954711,0.920530,-0.160192,0.356304,0.902585,0.038057,0.428816,0.940092,-0.306558,0.148930,-0.909146,0.116031,0.399945,-0.949278,0.173376,0.262246,-0.895077,0.234046,0.379528,-0.296579,-0.565905,-0.769250,-0.969115,-0.081545,0.232612,-0.991394,0.022279,0.128880,-0.471908,-0.342753,-0.812250,-0.372021,-0.498856,-0.782769,-0.443007,-0.428327,-0.787561,-0.370617,-0.340220,-0.864193,0.598895,-0.393994,-0.697165,0.530168,-0.183386,-0.827784,0.568224,-0.233711,-0.788965,-0.932066,-0.079501,-0.353435,-0.709983,0.503098,0.492721,-0.630146,0.523759,0.573199,-0.742973,0.395886,0.539628,0.170232,0.311197,-0.934965,0.140568,0.184362,-0.972747,0.127384,0.361522,-0.923582,-0.106021,0.358531,-0.927458,-0.037507,0.307688,-0.950713,0.271187,-0.172643,-0.946898,-0.667653,0.612659,-0.422895,-0.002472,0.707053,0.707114,0.483230,0.861904,0.153478,0.518143,0.818964,0.246498,0.440077,0.867885,0.230323,0.859218,-0.285134,-0.424757,0.307230,0.391430,0.867367,0.459914,0.361919,0.810846,-0.816950,0.576678,0.001129,-0.542711,-0.411267,-0.732292,-0.522843,-0.334422,-0.784051,0.207678,0.168889,-0.963500,0.894711,-0.167547,0.413953,-0.416791,-0.183813,-0.890194,0.968749,-0.170232,0.180334,0.979675,-0.148167,0.135166,0.912961,0.153508,0.378002,0.946501,0.080020,0.312601,-0.533891,-0.351177,-0.769158,-0.361156,-0.402936,-0.840938,0.267922,-0.409345,-0.872127,-0.052400,-0.508286,-0.859554,-0.552660,-0.003723,0.833369,-0.518479,0.076449,0.851619,-0.478988,-0.015931,0.877651,0.127049,0.106967,0.986084,0.313913,0.327921,0.891018,0.852596,0.188665,-0.487259,-0.960723,-0.176000,0.214484,-0.994842,-0.101169,-0.003754,-0.955809,-0.182653,0.230323,0.842097,-0.295022,0.451430,0.874233,-0.062471,0.481429,0.972991,-0.016449,0.230171,0.808863,-0.366100,-0.460067,0.965423,-0.089114,0.244911,-0.932249,-0.299020,0.203589,-0.488052,-0.259163,-0.833430,-0.554857,-0.195288,-0.808679,-0.977538,-0.210089,0.015320,-0.964812,-0.262703,0.007752,-0.380840,-0.186041,0.905698,0.909940,-0.404492,-0.091494,0.951628,-0.307047,-0.008332,0.141270,0.724662,-0.674429,0.608661,0.671804,0.422101,0.032868,-0.075014,0.996612,0.184057,0.784234,-0.592486,0.460829,0.705588,-0.538285,0.757469,0.620563,-0.202704,0.749931,0.648457,-0.130558,0.699026,0.698813,-0.151616,-0.490890,0.272927,0.827326,-0.503555,0.034455,0.863247,0.087741,0.271981,-0.958281,0.201972,0.208441,-0.956938,0.149815,0.338450,-0.928953,0.499893,0.815577,0.291360,-0.274056,0.865047,-0.420179,-0.441084,0.778436,-0.446577,0.652577,-0.321818,-0.685965,0.706961,-0.314798,-0.633320,-0.304849,-0.077731,-0.949217,0.018494,-0.073489,-0.997101,0.391461,0.763634,0.513382,0.329661,0.718223,0.612751,0.475173,0.639424,0.604419,-0.841487,0.158879,-0.516343,-0.627583,0.369976,-0.684988,-0.587359,0.385235,-0.711722,-0.571551,-0.370952,-0.731895,-0.131748,-0.259987,-0.956542,0.846889,-0.025544,0.531114,-0.107303,-0.021668,0.993988,-0.296976,-0.542711,0.785638,-0.267830,0.005402,0.963439,-0.011353,-0.441176,-0.897336,0.182409,-0.505966,-0.843013,0.154912,-0.422742,-0.892880,0.081973,0.557237,-0.826289,-0.110965,0.991302,-0.070681,-0.189245,0.977966,-0.087863,0.549425,0.023804,0.835200,0.320414,-0.089175,0.943052,0.333811,-0.030580,0.942106,0.453536,-0.007843,0.891201,-0.958342,-0.284799,0.020356,0.252785,-0.341929,0.905057,-0.824641,-0.563799,-0.045625,-0.279733,0.212317,-0.936277,-0.207953,0.173467,-0.962615,-0.274697,0.241432,-0.930692,0.917142,0.009308,0.398389,0.542955,0.715049,-0.440260,0.908933,0.047639,0.414136,-0.174108,-0.456465,-0.872494,-0.752983,-0.150578,0.640522,0.887600,-0.368053,0.276864,-0.188086,0.183264,-0.964873,-0.194189,0.325907,-0.925230,-0.951598,0.195471,0.237129,-0.951140,0.292550,0.098361,0.002747,0.682272,-0.731071,0.230659,0.819727,-0.524216,0.630604,-0.773431,-0.064150,0.462935,-0.850215,0.250526,0.450667,-0.836390,0.311899,0.916257,0.239509,0.321055,0.250801,0.418256,-0.872982,0.198431,0.459243,-0.865841,0.854183,-0.160436,0.494583,0.868496,0.037782,0.494217,0.858821,-0.450392,0.243965,0.893490,0.164953,0.417646,0.919126,0.283944,0.273080,0.978179,0.068850,0.195898,-0.390698,-0.849483,0.354534,-0.116337,-0.834437,0.538621,-0.321818,-0.940214,0.111240,-0.953154,-0.216254,-0.211402,-0.978027,-0.199255,-0.061129,-0.993744,-0.092288,-0.062532,-0.496170,-0.494430,-0.713645,-0.412397,-0.692618,-0.591723,0.526353,-0.121982,-0.841456,-0.986969,-0.097537,-0.127842,0.166723,0.637532,-0.752129,-0.024567,-0.325266,-0.945280,-0.026978,0.501267,-0.864834,0.100833,0.190771,-0.976409,-0.463790,0.445296,0.765862,-0.467269,0.508316,0.723350,-0.530503,0.366924,0.764122,-0.498489,0.394879,0.771691,-0.764000,0.290963,0.575854,-0.997925,0.047792,-0.042970,-0.279977,-0.705985,-0.650502,-0.585406,-0.306009,-0.750755,-0.261757,-0.197607,0.944670,-0.105808,-0.241279,0.964660,-0.037751,-0.409528,0.911496,-0.630665,-0.321238,-0.706412,0.475021,0.053316,0.878323,-0.922666,-0.254555,-0.289529,-0.897031,-0.107028,-0.428755,-0.896512,-0.300729,-0.325236,-0.935759,-0.077212,0.344035,-0.969176,0.010559,0.246040,-0.955077,-0.030396,0.294717,-0.696188,0.284799,0.658925,-0.789453,0.574572,-0.215857,-0.936125,-0.316965,0.152287,-0.963439,0.032655,0.265908,-0.092074,-0.795953,0.598285,-0.891232,0.224525,0.394024,-0.834773,0.170049,0.523637,-0.743675,-0.567186,0.353832,-0.211188,0.100284,-0.972259,-0.303293,-0.115177,-0.945891,-0.676656,-0.185492,0.712516,-0.244240,-0.317576,0.916196,0.892544,-0.314219,-0.323374,0.863399,-0.085726,-0.497147,0.792322,-0.199927,-0.576373,-0.978149,-0.205084,0.033784,-0.950713,-0.276284,0.140599,-0.982330,-0.131352,0.133091,0.246742,0.643391,0.724631,0.473617,0.872433,0.120487,0.403211,0.879147,0.253945,-0.839473,-0.006592,0.543352,-0.598376,-0.612293,0.516709,-0.919004,-0.187445,0.346782,-0.065462,0.175695,-0.982238,-0.559069,-0.327342,0.761742,-0.210273,-0.606159,0.766991,0.172735,-0.231361,-0.957396,0.082736,-0.334971,-0.938566,0.208380,-0.370037,-0.905332,0.762261,-0.121555,-0.635701,0.131535,-0.396527,-0.908536,0.586657,-0.413221,0.696463,-0.145940,-0.488968,0.859981,0.084964,-0.612140,0.786157,-0.887478,-0.260598,-0.380016,-0.924131,-0.316782,-0.213446,0.116489,0.190130,-0.974792,0.150212,0.266579,-0.952025,0.843562,0.536424,0.024995,0.951506,0.293161,-0.092868,0.936796,0.305826,0.169774,0.412305,0.108066,0.904599,0.484298,0.260994,0.835017,-0.628986,-0.222571,0.744865,-0.634602,-0.150731,0.757958,-0.988800,-0.134312,-0.064882,0.996155,-0.035554,0.080050,0.912900,-0.133091,0.385846,-0.981597,-0.094394,-0.165899,-0.995392,-0.027467,0.091647,-0.519242,0.649159,0.555803,-0.196173,-0.588397,0.784387,0.804041,0.374004,0.462142,-0.522202,0.658193,-0.542253,0.319529,-0.301065,-0.898434,0.551622,-0.518509,-0.653310,0.767571,-0.303079,-0.564745,0.694082,0.562487,-0.449232,0.795038,0.393475,-0.461592,0.824335,0.453871,-0.338298,0.998810,-0.043062,-0.022126,0.994476,-0.066866,0.080569,-0.140843,0.079318,-0.986816,-0.278787,-0.445601,-0.850673,0.319346,0.932676,-0.167577,0.480605,0.870785,-0.103458,0.293863,0.152959,0.943510,0.738029,0.661763,-0.131535,0.710105,0.650685,-0.268960,0.558641,0.739677,-0.375134,0.646687,0.279916,-0.709494,0.712546,0.219977,-0.666219,0.664815,-0.314615,-0.677480,0.446913,-0.338572,-0.827998,0.323618,0.898495,0.296579,0.022736,0.014405,-0.999634,-0.205634,-0.336161,0.919065,-0.108036,-0.511887,0.852199,-0.569811,0.241005,0.785607,-0.397473,0.001526,0.917600,0.696982,0.480178,0.532548,0.240150,-0.246986,-0.938780,0.367321,-0.073611,-0.927152,0.440565,0.863887,0.243995,0.560594,0.803278,0.201086,0.599719,0.738762,0.307443,-0.474349,0.428388,0.769036,-0.386761,0.584429,0.713309,-0.335002,0.633045,0.697836,-0.313913,0.619648,0.719321,-0.981109,0.082064,0.175054,-0.591052,0.358867,0.722373,0.249702,0.255348,-0.934019,0.495163,0.825251,0.271462,0.181982,0.872738,0.452986,0.144719,-0.035707,-0.988800,0.595477,-0.416181,0.687155,-0.502640,-0.214087,-0.837519,-0.459243,-0.317789,-0.829493,-0.975982,-0.181707,0.120060,-0.992584,-0.121097,-0.008850,0.318278,0.141911,-0.937284,-0.624378,-0.381603,-0.681539,0.193915,0.941862,0.274361,-0.996796,-0.079684,0.005890,-0.965361,-0.195441,0.172735,0.172643,0.251991,0.952178,0.136448,0.427045,0.893857,-0.237678,-0.490524,0.838374,0.834956,-0.300302,-0.461104,0.915281,-0.248695,-0.316813,0.263924,-0.289895,-0.919919,-0.212561,0.722831,0.657491,0.636128,-0.239570,-0.733421,0.612781,-0.324686,-0.720420,0.226112,0.705741,-0.671377,0.223731,0.687368,-0.690970,0.142338,-0.370678,-0.917753,0.479690,-0.245430,-0.842402,-0.552599,0.233039,0.800195,0.017548,0.961272,-0.274941,0.315165,0.501328,0.805780,0.560137,-0.343699,0.753716,0.741295,0.538652,-0.400372,-0.986480,-0.149052,0.067660,0.193487,-0.335582,-0.921903,0.302988,0.930357,0.206427,0.767327,0.336192,-0.546007,0.784875,0.312113,-0.535264,-0.846828,-0.252632,0.468001,-0.750237,-0.262246,0.606891,-0.850765,-0.235176,0.469924,0.104801,0.952513,0.285806,0.234626,0.914853,0.328532,0.100833,0.981597,-0.162114,0.403363,-0.803369,-0.438002,0.443739,-0.893063,-0.074007,-0.206885,0.466231,0.860103,-0.165288,0.559313,0.812281,-0.163671,0.589892,0.790704,-0.599658,-0.140019,0.787866,0.019807,0.233039,-0.972259,-0.002838,0.234565,-0.972076,-0.007569,0.818232,-0.574786,0.012329,0.788842,-0.614460,0.906827,0.119907,0.404035,0.831233,0.298685,0.468825,0.970183,0.074374,0.230598,0.933958,0.338023,0.115970,0.892453,0.330821,0.306681,-0.209998,0.063692,-0.975616,0.428999,0.895840,0.115696,-0.670980,-0.422742,-0.609119,-0.312632,-0.472945,0.823756,-0.699911,-0.102786,0.706778,0.929899,0.299051,-0.214057,0.940886,-0.336680,-0.036378,0.795251,-0.478744,-0.371960,0.207648,0.312693,0.926847,-0.977752,0.052248,0.203070,-0.992767,0.004791,0.119785,-0.426069,0.601794,0.675466,-0.557939,0.566942,0.606006,-0.609546,0.522507,0.596149,0.580798,-0.238716,-0.778222,0.987243,-0.109348,0.115604,0.763695,-0.520981,-0.381176,0.885891,-0.064455,0.459334,-0.939116,-0.006195,0.343455,-0.942869,-0.039583,0.330729,-0.573077,-0.465865,-0.674184,0.075564,0.950133,-0.302469,0.814051,0.221747,0.536729,-0.060305,-0.212653,-0.975249,0.675710,-0.006287,0.737114,0.884213,0.314920,0.344890,0.884518,0.088687,0.457991,-0.396405,-0.524308,-0.753594,0.980438,0.120762,0.155248,0.814264,-0.342509,-0.468642,0.958190,-0.275765,0.076083,0.765496,0.239631,0.597095,0.644795,-0.080813,0.760063,0.284585,0.952208,0.110874,-0.155126,0.565111,0.810266,-0.349956,0.234931,0.906796,-0.344707,0.426160,0.836390,0.924161,-0.264504,0.275552,0.952116,-0.283700,0.113712,-0.772942,0.069185,-0.630665,-0.945067,0.018006,-0.326365,-0.694784,0.021912,-0.718863,-0.870205,-0.171606,0.461776,-0.935667,-0.211921,0.282052,-0.876400,-0.194189,0.440657,0.224830,-0.509354,-0.830622,-0.049226,0.996673,-0.064577,-0.027223,0.995117,0.094790,0.900693,-0.157140,0.404981,0.891049,-0.365551,0.268960,-0.580950,-0.289315,-0.760765,-0.664937,-0.255013,-0.701987,0.136570,-0.047090,-0.989502,-0.734214,0.105075,-0.670705,-0.853420,0.004089,-0.521165,-0.866482,0.051485,-0.496506,-0.942076,-0.005402,-0.335337,0.775079,-0.268349,-0.572008,0.706565,-0.195044,-0.680197,0.588641,-0.244118,-0.770623,0.328745,-0.725150,0.605029,-0.004547,0.989410,0.144993,-0.440260,-0.234657,-0.866634,-0.354717,-0.401471,-0.844356,-0.001465,-0.164861,0.986297,-0.155614,-0.206183,0.966033,-0.245766,-0.158849,0.956206,0.682058,-0.532060,0.501663,0.576739,0.499466,0.646413,-0.481124,-0.289010,-0.827601,-0.173467,-0.282327,-0.943480,-0.429548,-0.195044,-0.881710,-0.690237,-0.220130,0.689230,-0.287301,-0.831538,0.475356,0.408094,0.893582,0.186804,0.343150,0.930204,0.130161,0.558153,0.782647,0.275491,0.165319,0.478896,-0.862148,0.256478,0.356731,-0.898282,0.908963,0.113773,-0.400983,0.951567,0.073824,-0.298349,0.929746,0.072939,-0.360851,0.251015,0.688375,-0.680532,0.320902,0.656056,-0.683065,0.375072,0.644978,-0.665792,-0.324717,0.712302,0.622211,-0.491012,0.493973,0.717521,0.541185,0.496292,0.678793,0.220222,0.099338,0.970367,0.640461,-0.010376,0.767907,-0.991333,0.125919,-0.036958,0.346446,0.829371,-0.438246,-0.005860,0.066408,-0.997772,-0.827876,0.551286,-0.103244,-0.616993,0.754295,-0.224281,-0.707694,0.668538,-0.228339,0.491867,0.720237,-0.489151,0.610889,0.690634,-0.387036,-0.008911,-0.476119,-0.879299,0.024506,-0.505478,-0.862453,0.673421,-0.615558,0.409284,0.062166,-0.492325,0.868160,-0.621967,-0.771325,0.134770,-0.029969,-0.958708,0.282723,-0.876919,0.083438,0.473281,-0.965209,0.183111,0.186529,-0.903806,0.318247,0.285989,-0.480667,0.822382,-0.304331,0.607593,0.716117,0.343425,0.470443,-0.215766,0.855617,0.297464,0.242958,0.923276,-0.961516,-0.212043,0.174505,0.479263,0.821772,0.308115,0.555986,0.802698,0.215674,0.495773,0.696738,0.518357,0.401654,0.791772,0.460158,-0.307840,0.416120,-0.855586,-0.257271,0.464888,-0.847133,-0.119724,-0.384747,0.915189,0.570025,-0.347270,-0.744591,0.523087,-0.238380,-0.818232,0.809168,-0.009827,0.587451,0.381817,0.592395,0.709403,-0.749870,-0.289224,-0.594989,0.904752,0.139042,0.402570,0.979583,0.043825,-0.196112,0.985778,-0.009705,-0.167730,0.896603,-0.359172,-0.258919,0.910031,-0.412061,-0.044832,0.947172,-0.229072,-0.224372,-0.947600,0.017762,0.318888,-0.913114,-0.087954,0.398022,-0.015412,0.766961,-0.641469,0.485214,0.854823,-0.183874,0.545030,0.837703,-0.033601,0.992859,-0.118534,-0.010804,-0.747307,-0.342662,-0.569231,-0.880551,-0.108036,0.461440,0.628651,0.775292,-0.060457,0.748955,0.659261,-0.066347,-0.091403,0.330363,-0.939390,-0.288095,0.297647,-0.910154,0.399640,-0.335612,-0.852992,0.436293,-0.290841,-0.851466,0.490432,-0.251625,-0.834346,-0.897916,-0.137333,-0.418134,0.015534,-0.496353,-0.867946,-0.123325,-0.475661,-0.870907,0.716636,0.042268,-0.696127,0.518876,0.820704,-0.239143,0.877285,-0.342753,0.335917,0.640767,-0.706534,0.300333,0.250923,0.162816,-0.954192,0.169744,0.286325,-0.942961,0.534135,0.604938,0.590503,0.676687,0.693014,0.248543,0.619770,-0.681448,0.389172,0.963836,-0.210395,0.163396,0.974853,-0.016877,0.222175,0.115665,-0.490310,-0.863796,0.158910,-0.479019,-0.863277,-0.004181,-0.400067,-0.916471,-0.964171,0.146916,0.220862,-0.899899,0.010834,0.435896,-0.999512,0.025056,-0.018281,-0.603748,-0.526353,0.598651,-0.300027,-0.454695,0.838557,0.452803,-0.383984,-0.804682,-0.477645,-0.201147,0.855190,-0.332499,-0.351604,0.875088,0.147893,0.974395,0.169195,-0.450942,0.482040,0.751152,-0.623676,-0.043855,0.780419,-0.788781,-0.243477,0.564379,-0.621662,-0.388928,0.679891,0.879055,-0.222999,-0.421277,0.882046,-0.259133,-0.393445,-0.674367,-0.682211,0.282449,-0.698508,-0.692007,0.182195,-0.451216,-0.258766,0.854030,0.875820,-0.456923,0.155339,0.846706,-0.522019,0.102664,-0.578295,0.593432,0.559771,-0.552751,0.658711,0.510422,-0.308054,0.613239,0.727317,0.855403,-0.297250,-0.424146,0.177313,0.567309,0.804163,-0.696799,-0.129032,-0.705527,-0.856960,-0.037568,-0.513993,-0.979308,0.026154,0.200537,-0.959838,0.044404,0.276894,-0.181524,-0.422498,-0.887967,-0.338298,-0.436110,0.833857,0.569353,0.456710,-0.683523,-0.456832,-0.218635,0.862239,0.415754,-0.323710,-0.849879,0.260720,-0.220985,-0.939756,0.980987,-0.163762,0.104007,-0.694784,-0.406751,-0.593097,-0.008545,-0.114292,-0.993408,0.055116,-0.286691,-0.956420,0.531083,0.027253,-0.846858,0.813349,0.497421,0.301645,-0.771874,0.450606,-0.448439,-0.592456,0.540422,-0.597400,0.833247,-0.264443,-0.485488,0.729972,-0.288461,-0.619587,0.692984,-0.285043,-0.662191,0.659566,-0.358684,-0.660512,0.531022,-0.401654,-0.746086,0.754204,-0.361064,-0.548387,0.619190,-0.287179,-0.730796,0.018342,0.165960,-0.985931,-0.084811,-0.990692,0.106357,0.521775,0.027131,0.852626,0.485611,-0.109989,0.867214,0.678762,0.588092,-0.439741,0.543718,0.733268,-0.408185,0.337748,0.699850,-0.629353,0.494125,0.548967,-0.674123,-0.493118,0.064180,-0.867580,-0.348003,-0.023591,-0.937162,0.211768,0.974303,0.076540,-0.438520,-0.236549,-0.867000,0.107944,0.977142,0.183020,0.382885,0.911100,0.152532,0.246040,0.946837,0.207190,0.731712,0.367901,-0.573779,-0.016083,0.294351,-0.955535,-0.990387,-0.113559,0.078738,-0.166845,-0.011628,-0.985900,-0.229102,0.112949,-0.966796,-0.220008,0.076205,-0.972503,-0.490280,-0.438581,-0.753136,-0.708609,-0.121830,0.694968,0.088656,0.299661,-0.949889,-0.118137,0.856960,-0.501633,-0.487289,0.814447,-0.314951,-0.540422,0.758202,-0.364757,0.235206,0.460707,0.855770,0.591784,0.668783,0.449934,0.391217,0.758110,0.521683,0.632496,0.773736,-0.035127,0.144505,0.912076,0.383679,-0.854549,-0.224647,-0.468245,-0.856410,-0.347362,-0.381939,-0.888150,-0.323344,-0.326487,0.005432,0.648488,-0.761193,0.110904,0.435865,-0.893124,-0.860256,-0.429121,-0.275277,-0.485000,-0.269631,-0.831874,-0.428602,-0.143742,-0.891964,-0.417249,0.839625,-0.347636,-0.464827,0.804834,-0.368969,-0.091464,0.847743,-0.522416,0.015137,-0.907346,0.420057,-0.073672,-0.988311,0.133335,0.337260,0.927793,0.159307,0.426221,0.896603,0.119968,0.740532,-0.250771,-0.623432,0.787408,-0.171239,-0.592120,0.852473,-0.000031,0.522752,0.970458,-0.166234,0.174718,0.664510,-0.425001,-0.614612,0.587878,-0.347819,-0.730308,-0.039918,-0.995361,0.087497,0.262429,0.731529,-0.629261,0.139195,0.789178,-0.598132,0.196844,0.418683,-0.886532,0.382183,-0.918882,0.097598,0.421491,-0.876278,0.233253,0.308084,0.619068,0.722373,0.173345,0.432813,0.884640,-0.738792,0.572741,-0.355144,-0.751335,0.537919,-0.382183,-0.545488,0.691031,-0.474197,0.462020,-0.413373,-0.784600,-0.358654,-0.189367,-0.914029,0.724326,-0.526139,0.445509,0.326975,-0.218879,0.919309,-0.562548,-0.160894,-0.810938,-0.665670,-0.142186,-0.732566,-0.577929,-0.228309,-0.783471,0.590167,-0.201697,0.781640,-0.074465,0.871273,-0.485061,0.091067,0.866054,-0.491531,-0.158422,0.181524,-0.970519,-0.998871,-0.010132,0.045839,-0.855861,-0.487777,0.171850,0.981750,-0.006134,-0.190008,0.035463,-0.216041,-0.975738,-0.856838,0.143895,0.495071,-0.852016,0.035737,0.522233,-0.361187,-0.435682,-0.824396,-0.733146,0.046999,0.678426,-0.775658,0.373669,0.508591,0.150700,-0.357830,-0.921537,0.247871,-0.368938,-0.895749,-0.998016,0.052828,0.034150,-0.941343,0.198492,0.272774,0.386547,-0.735099,0.556902,0.465835,-0.714042,0.522568,0.662923,0.605182,0.440718,0.751274,-0.301401,-0.587115,-0.994079,-0.104282,-0.029542,-0.615497,0.210150,0.759575,0.679830,-0.655873,0.328074,-0.850551,-0.178259,-0.494736,0.105136,0.881405,-0.460433,-0.472640,0.796045,-0.377972,-0.582690,0.656026,-0.479659,0.584735,0.644002,-0.493210,-0.438612,-0.746330,0.500565,-0.342692,-0.745109,0.572131,0.019990,0.595355,-0.803186,0.706351,0.655721,-0.266549,-0.938841,-0.342448,-0.035463,0.424696,0.671651,0.607013,0.627186,0.486618,0.608112,0.318247,0.930876,0.179235,0.033723,0.784356,-0.619343,0.208777,0.646290,-0.733940,0.057833,0.721854,-0.689596,0.247688,0.641499,-0.726005,0.192877,0.978271,0.075869,0.283517,0.958495,0.028962,-0.503922,-0.240455,-0.829585,-0.705832,-0.148930,-0.692526,0.054231,0.177770,0.982574,0.809442,-0.187780,-0.556322,0.808710,-0.185369,-0.558184,0.925871,-0.175726,-0.334422,0.451827,0.805109,-0.384198,0.516221,0.647267,-0.560808,-0.576708,-0.521531,-0.628803,-0.978698,-0.099948,0.179296,-0.993286,-0.057680,0.100223,0.595264,-0.494888,-0.633015,0.456679,-0.383923,-0.802484,0.700705,-0.485488,-0.522752,0.546312,0.827265,0.130833,0.907224,0.065371,0.415479,-0.610401,-0.692434,0.384594,-0.785821,-0.439741,0.434828,-0.128208,0.522782,0.842738,0.061617,0.528886,0.846431,0.745750,0.652821,0.132694,0.929319,-0.341227,-0.140934,0.121281,-0.819239,0.560442,0.213721,-0.732841,0.645924,-0.702811,0.165807,0.691763,-0.737754,0.141057,0.660115,-0.579730,0.108432,0.807520,-0.896237,0.274758,0.348186,0.427595,0.188086,0.884152,-0.500839,0.864284,0.045900,-0.487655,0.857051,-0.166082,0.948057,-0.317759,-0.012757,-0.066317,0.644520,-0.761681,-0.844997,-0.334910,-0.416852,-0.771722,-0.477798,-0.419630,-0.926450,-0.258400,0.273598,-0.021363,-0.128971,-0.991394,-0.088992,-0.330973,-0.939421,0.182745,-0.143864,-0.972564,0.834590,-0.300729,0.461470,0.793085,0.306619,-0.526231,-0.925047,0.180059,0.334422,0.245277,-0.235023,-0.940519,-0.203772,0.320902,-0.924894,-0.471450,0.257668,-0.843379,-0.944426,-0.031495,0.327158,0.511063,0.149358,0.846431,0.563677,0.186621,0.804621,-0.959136,-0.282479,-0.014649,0.324900,0.945158,0.032624,0.476394,-0.219916,-0.851253,0.050630,0.457320,-0.887845,-0.452132,-0.289193,-0.843745,-0.058809,-0.287332,-0.955992,0.727531,-0.270882,-0.630299,0.625935,-0.244453,-0.740532,-0.539323,-0.398022,-0.742058,0.808924,-0.151524,0.568041,0.778680,0.076235,0.622730,0.868892,-0.142613,0.473983,0.091433,0.979919,0.177129,0.426038,0.738121,0.523118,-0.290902,-0.308939,-0.905484,-0.044588,0.268380,-0.962249,-0.014801,0.197058,-0.980255,0.750999,0.355693,-0.556230,0.057466,0.458205,-0.886959,0.498642,0.866756,-0.006867,0.621723,0.779504,-0.075991,0.481094,0.876309,-0.024415,-0.919706,0.079287,0.384442,-0.265145,0.205206,0.942106,0.998535,-0.048585,-0.022553,0.999939,0.006623,0.008576,-0.635762,-0.266579,-0.724357,-0.773125,-0.452315,-0.444594,-0.914945,0.353038,0.195502,-0.958525,0.199774,0.203223,0.454451,-0.461440,-0.761925,0.449110,-0.526536,-0.721793,0.062990,0.982940,0.172613,0.996551,-0.043886,0.070132,-0.463271,-0.424024,-0.778161,-0.317637,-0.412488,-0.853755,-0.955718,-0.020844,-0.293435,-0.569781,-0.523881,-0.633137,-0.587664,0.442183,0.677541,-0.679281,0.415937,0.604602,-0.990875,-0.134465,-0.008545,-0.999939,-0.008148,-0.001404,-0.627827,0.384960,0.676473,-0.865810,-0.005951,0.500290,0.461104,-0.228462,-0.857418,-0.630848,-0.226936,-0.741966,-0.699362,-0.156774,-0.697317,-0.863857,0.118229,0.489608,0.913327,0.014161,0.406964,0.378216,0.612445,0.694113,0.391278,0.720542,0.572436,0.292093,0.625111,0.723808,0.154576,-0.377239,-0.913114,-0.133488,-0.106906,-0.985260,-0.214606,-0.160375,-0.963439,0.359813,0.701285,0.615375,0.502060,0.546587,0.670156,-0.962584,0.107913,0.248482,-0.958007,0.131809,0.254555,-0.967467,0.062441,0.245094,0.081027,-0.461104,-0.883633,-0.988739,-0.148076,-0.020905,-0.988983,0.022217,0.146245,0.265938,0.360576,-0.893979,0.953856,-0.092654,0.285531,0.954161,-0.240577,0.177984,0.767113,0.296335,0.568896,0.851283,0.052950,0.522019,0.690054,0.169408,0.703635,0.265603,0.949339,0.167882,-0.028077,0.088504,0.995666,-0.222785,0.203009,0.953459,0.415082,0.899258,0.137761,0.422040,0.897763,0.125950,-0.395154,-0.629566,-0.668935,-0.278054,-0.790643,-0.545457,0.077090,0.606372,0.791406,0.667837,-0.309915,-0.676687,0.987091,-0.070437,0.143712,0.888272,-0.396344,0.232032,0.395184,-0.348827,-0.849757,0.630665,-0.394818,-0.668050,-0.518662,-0.204627,0.830103,0.957244,0.278909,0.076479,0.953398,0.229957,0.195257,-0.132267,-0.656178,-0.742882,0.750847,-0.185003,-0.633992,-0.939055,-0.343730,-0.000397,-0.499832,-0.366100,-0.784936,-0.609577,-0.414930,-0.675436,-0.678671,-0.037416,0.733482,-0.497879,-0.190313,0.846065,-0.761620,-0.095157,0.640980,0.956725,0.087344,0.277535,0.675314,0.086184,0.732444,0.525925,0.127903,0.840815,-0.153142,0.152715,0.976318,-0.992492,-0.120975,-0.016816,0.296518,0.949278,0.104373,-0.042146,-0.053774,-0.997650,-0.068178,0.147160,-0.986755,-0.191748,0.150639,-0.969787,-0.930479,-0.130650,0.342204,-0.895108,-0.080691,0.438459,-0.023011,0.131260,-0.991058,0.747948,0.627338,0.216773,0.952849,0.002838,0.303385,0.213538,0.108249,0.970885,0.214515,0.126682,0.968444,0.783593,-0.374920,-0.495346,-0.812860,-0.318003,0.487960,-0.822871,-0.234321,-0.517594,-0.609912,-0.486526,-0.625507,-0.829585,-0.273690,-0.486648,0.253059,-0.281350,-0.925626,0.926176,-0.277230,-0.255531,0.969634,-0.244270,-0.011170,-0.998291,-0.012177,-0.056887,-0.973754,-0.227515,0.001038,-0.970550,-0.141423,0.194861,-0.540880,0.749931,0.380810,-0.513443,0.495834,0.700339,-0.384289,-0.124882,0.914701,-0.313883,0.207099,0.926572,0.986908,0.066744,0.146611,0.973357,-0.006989,0.229102,-0.330638,0.592547,0.734519,0.065706,0.628315,-0.775140,0.387280,-0.281106,-0.878048,0.068361,0.155004,-0.985534,-0.589709,0.253243,0.766839,-0.984344,0.135746,0.112247,-0.902585,0.112430,0.415540,0.162725,0.298990,0.940275,0.336253,0.928007,0.160314,0.337809,0.925626,0.170385,-0.938597,-0.275002,-0.208319,-0.924772,-0.108890,-0.364574,0.395672,0.766900,-0.505234,0.621418,0.538011,-0.569506,0.936796,0.153417,0.314402,-0.558275,-0.668752,0.490982,-0.923521,-0.189215,0.333537,0.430342,-0.276589,-0.859218,-0.977477,-0.168981,-0.126225,-0.960448,-0.261177,0.096255,0.161351,-0.161962,-0.973510,-0.875515,0.301126,0.377819,-0.789850,0.518632,0.327280,0.930631,0.215613,-0.295602,0.937742,-0.283608,0.200415,0.917722,-0.312387,0.245277,0.321574,0.906888,0.272225,-0.321482,-0.531419,-0.783715,-0.617450,-0.383526,-0.686728,0.148259,-0.455977,-0.877529,-0.090213,0.093295,-0.991516,0.263131,0.801721,-0.536637,0.460494,0.755608,-0.465804,0.321421,0.782189,-0.533677,-0.308481,-0.682760,0.662282,-0.988678,-0.137394,0.060213,-0.962981,-0.145665,0.226691,-0.547960,-0.450392,-0.704856,0.919553,0.129246,0.371044,-0.587695,-0.467452,-0.660329,0.453078,-0.891293,-0.016144,-0.104038,0.341624,-0.934049,0.724601,-0.390942,-0.567492,-0.349498,0.185949,0.918271,0.525559,-0.189032,0.829463,0.657826,-0.219733,0.720359,-0.826685,-0.492416,0.272134,-0.841517,-0.236274,0.485763,0.980804,-0.141545,0.133915,0.968108,-0.166387,0.187201,-0.275674,-0.035279,-0.960570,-0.654592,0.529283,-0.539720,-0.789483,0.493912,-0.364269,-0.809320,-0.300699,-0.504532,-0.834773,-0.416059,-0.360546,-0.947783,-0.086337,-0.306986,-0.321909,-0.251686,-0.912687,0.907620,-0.403790,-0.114628,0.943266,-0.301614,-0.138646,0.829829,0.090243,0.550615,0.960784,0.019349,0.276559,0.278512,0.950133,-0.140141,-0.016968,0.475936,-0.879299,-0.117832,0.358379,-0.926084,0.892300,-0.254891,-0.372570,0.987640,-0.153630,-0.030305,0.981475,-0.165532,-0.096255,-0.885006,-0.129734,0.447066,-0.956084,-0.044679,0.289651,-0.967742,-0.212165,0.135624,0.118412,0.980255,0.158177,0.410993,0.874355,0.257912,0.088687,0.956023,0.279458,-0.747429,0.063845,0.661245,-0.991577,-0.102695,-0.078829,-0.997864,-0.061678,0.021332,0.708396,0.595019,0.379559,0.460341,-0.446089,-0.767479,0.128483,-0.398694,-0.908017,0.305673,-0.464553,-0.831080,-0.489669,-0.386212,-0.781671,-0.020081,-0.167547,-0.985656,0.660970,-0.585101,-0.469832,-0.026917,-0.486740,-0.873104,0.132847,0.610218,-0.780999,0.967711,-0.129063,0.216376,0.139286,0.184790,0.972839,-0.981506,0.001648,0.191351,-0.915738,-0.077578,0.394208,-0.961150,0.078921,0.264473,-0.987060,0.143803,0.070498,0.606189,-0.430250,-0.668874,-0.375988,-0.346538,-0.859371,0.496933,-0.060488,0.865658,0.581439,0.272896,0.766411,0.698813,0.199194,0.686972,0.009339,-0.985290,0.170629,0.771142,0.497818,0.396832,0.983428,-0.178076,0.033174,0.961241,-0.266549,0.070162,0.850459,0.361797,0.381817,0.986297,0.004059,0.164892,0.987884,-0.082736,0.131199,0.729057,-0.399457,-0.555773,-0.159581,0.147130,-0.976135,0.559069,-0.358440,-0.747581,-0.153661,0.095645,-0.983459,0.890378,0.094028,-0.445387,-0.570421,-0.496506,-0.654286,-0.659780,-0.371715,-0.653035,0.791589,-0.283120,-0.541459,0.541917,0.201697,0.815821,0.212775,-0.533097,-0.818812,0.690878,-0.337474,-0.639332,0.744072,-0.369610,-0.556505,0.055269,0.098819,-0.993561,0.189795,0.087863,-0.977874,0.197241,0.969024,0.148442,0.169012,-0.184912,-0.968078,0.316660,0.934507,0.162450,0.061342,0.500290,0.863674,0.759972,0.358074,0.542375,0.625843,-0.335215,-0.704184,-0.012574,0.505753,-0.862575,0.173467,0.614582,-0.769524,-0.142674,-0.006439,0.989746,0.218543,0.204810,0.954070,0.941191,-0.337260,-0.018738,0.937895,-0.344951,0.036317,0.956420,-0.287515,0.050295,-0.497543,0.205176,0.842799,-0.932401,0.235023,-0.274453,-0.885739,0.409253,-0.218940,-0.951567,0.251869,-0.176183,-0.110508,0.017640,-0.993713,0.929319,-0.349223,-0.119785,0.893857,-0.305002,-0.328562,0.918638,-0.071139,0.388623,0.926481,0.045228,0.373577,0.270577,0.048128,0.961486,-0.813837,-0.020814,-0.580676,-0.808130,0.042390,-0.587451,-0.236915,-0.398907,0.885830,-0.272378,-0.339763,0.900174,0.491134,0.844417,0.213813,-0.803125,0.306314,0.511002,-0.864132,0.211524,0.456587,0.033570,0.862300,-0.505264,0.154912,0.987548,0.026612,0.129948,0.976684,0.170812,0.202063,0.975097,0.091220,0.202368,0.969237,0.140049,0.099918,0.980590,0.168615,-0.880276,-0.240120,0.409192,-0.910977,-0.187658,0.367260,-0.885159,-0.195990,0.421949,-0.975585,0.160863,0.149419,0.669637,-0.329539,-0.665517,0.069948,-0.698294,0.712363,0.838984,0.335185,0.428632,-0.154607,0.941984,-0.297861,-0.846858,0.203650,0.491226,0.901303,-0.241737,0.359416,0.868831,-0.235450,0.435469,-0.764214,0.017457,-0.644673,0.671072,-0.740257,0.040162,-0.508133,0.804621,0.307138,-0.250343,0.408399,0.877773,0.951964,-0.171972,-0.253304,0.967071,0.174810,-0.184942,-0.133030,-0.051912,-0.989746,-0.074862,-0.074160,-0.994415,-0.190466,-0.080630,-0.978362,0.720206,0.681661,-0.128788,0.599139,0.753990,-0.269234,0.183050,-0.207648,-0.960906,-0.488144,-0.470656,0.734947,-0.265755,-0.338481,0.902646,-0.341563,-0.437422,0.831843,-0.912137,0.349590,0.213904,0.897427,0.062685,-0.436659,-0.954192,0.089602,0.285379,0.875271,0.400891,0.270425,-0.657125,0.488327,-0.574175,-0.670858,0.619251,-0.407941,0.547105,-0.142430,0.824824,0.571520,-0.103366,0.814020,0.961608,0.013977,-0.274026,-0.557848,0.706687,-0.435163,0.776482,0.439192,0.451796,0.695944,0.190130,0.692434,-0.153050,0.327952,-0.932188,-0.340495,-0.136204,0.930296,0.700308,-0.220069,-0.679037,0.827296,-0.221870,-0.516068,0.767663,-0.118717,-0.629749,-0.099399,-0.900113,0.424116,0.770653,-0.135777,-0.622578,0.851497,-0.322855,-0.413129,-0.105319,-0.434523,-0.894467,-0.408429,-0.488174,-0.771264,0.375774,0.429029,-0.821375,0.374981,0.519425,-0.767815,0.556688,-0.314341,-0.768914,0.623890,0.192816,-0.757317,-0.621509,0.762078,0.181433,-0.321116,0.932463,0.165319,-0.441908,0.886898,0.134434,0.417463,0.889309,0.186560,-0.239906,0.259407,-0.935484,-0.323557,0.272011,-0.906247,-0.968810,-0.219214,-0.115299,-0.963469,-0.265816,0.032441,-0.008911,0.070315,0.997467,-0.032807,0.467849,0.883175,-0.229408,0.148564,0.961913,0.803034,-0.294015,-0.518296,0.767022,-0.323191,-0.554247,0.204016,0.978210,0.038270,-0.587909,0.050386,-0.807337,-0.904996,0.177984,-0.386303,0.596942,-0.255013,-0.760643,-0.940977,0.153386,0.301645,-0.921995,0.156163,0.354289,0.925169,-0.355602,-0.132511,0.774224,0.564440,-0.286264,-0.714866,-0.173956,-0.677236,-0.924131,-0.230293,-0.304788,0.911252,-0.345408,-0.224158,0.324320,0.090793,0.941557,-0.997803,0.063906,0.016572,0.392285,-0.269448,-0.879452,0.006775,0.994476,0.104556,-0.342112,0.920255,0.189795,0.926389,-0.200049,0.318949,0.971343,-0.111728,0.209662,-0.039399,0.999207,-0.002167,0.451766,0.847041,-0.279977,-0.436201,0.824763,-0.359752,0.275002,-0.058351,-0.959655,0.634938,0.261177,0.727042,-0.867367,-0.356883,-0.346782,-0.307138,0.937437,0.163793,-0.516068,0.846644,0.129765,-0.275918,0.290628,-0.916166,-0.093448,0.102664,-0.990295,-0.031526,0.306803,-0.951231,-0.003143,0.827693,-0.561144,-0.137333,-0.337779,-0.931120,0.245064,0.961272,0.125980,0.462386,0.525193,0.714347,-0.525620,-0.312296,0.791284,0.628651,0.417493,0.656087,0.715781,0.525803,0.459487,-0.426069,-0.292123,-0.856197,0.745781,0.250801,-0.617145,-0.521317,0.196966,0.830287,0.957091,-0.258003,0.131718,0.045106,-0.067202,-0.996704,0.933409,-0.001373,0.358776,0.721305,0.313425,-0.617603,-0.152532,0.006470,-0.988250,0.027680,0.083193,-0.996124,0.103916,0.401349,0.910001,0.312967,0.909177,0.274606,0.447523,0.501694,-0.740257,0.333445,0.468520,-0.818079,0.325785,0.510483,-0.795740,-0.944487,-0.328471,-0.004425,-0.393536,0.077090,0.916044,-0.100925,0.087100,-0.991058,0.954894,-0.189703,-0.228339,-0.758721,-0.616993,0.208869,-0.292093,-0.482376,0.825800,0.336070,0.939238,0.069735,0.265297,0.964141,-0.002686,-0.227638,0.779839,-0.583087,0.525254,0.846004,0.091159,0.051332,0.368755,0.928068,-0.313334,-0.607746,-0.729667,0.756340,-0.077761,-0.649525,0.597278,0.772210,0.216559,0.480361,0.821162,0.308023,0.502609,0.805811,0.313028,0.033509,0.959319,0.280221,0.238136,0.955931,0.171606,-0.214850,0.975402,0.049104,-0.413099,0.879116,0.237648,-0.426069,0.895627,0.127598,-0.165136,0.488571,-0.856716,0.166417,0.220771,-0.960997,0.393292,0.339976,-0.854213,-0.363598,-0.349864,-0.863338,-0.330729,0.257118,0.907987,-0.826838,0.257576,-0.499954,-0.990631,-0.040407,0.130253,0.033723,-0.657430,0.752739,0.417249,-0.520585,0.744865,-0.362835,0.927580,0.088931,-0.330790,0.940306,0.079531,-0.328288,0.359416,0.873501,-0.228858,0.353771,0.906857,-0.470382,0.723777,-0.504776,0.928953,0.335490,0.156377,-0.408490,0.237098,0.881405,0.582965,-0.424848,-0.692526,0.765801,-0.437086,-0.471664,0.727897,-0.367168,-0.579058,-0.417890,-0.222388,-0.880825,-0.521073,0.091525,-0.848567,-0.320109,0.090762,-0.942991,-0.488327,0.069247,-0.869900,0.965270,-0.178961,0.190191,0.993591,0.051546,0.100436,0.901669,0.334666,0.273721,0.965697,0.163396,0.201758,0.880367,-0.304544,0.363567,-0.954650,-0.280831,-0.098819,-0.480392,0.566363,0.669637,0.303385,-0.345500,0.887997,0.259072,-0.756096,0.600940,0.099918,-0.298227,-0.949217,-0.113132,-0.470748,-0.874966,0.967528,-0.085513,0.237831,-0.522965,0.603809,0.601550,0.543931,0.786615,0.292093,-0.851222,-0.396466,-0.343822,0.473739,0.834284,-0.281991,-0.154881,0.353130,-0.922636,0.083834,-0.604266,-0.792322,0.327525,-0.488144,-0.808924,-0.820154,-0.490371,-0.294687,-0.657643,-0.326060,-0.679067,-0.800531,-0.279916,-0.529862,0.957762,0.138157,0.252174,-0.011719,0.884671,-0.466018,0.558519,-0.439009,-0.703757,-0.283670,0.952788,-0.108066,-0.224616,0.969085,-0.101993,0.348827,-0.323832,-0.879452,0.749229,0.042085,0.660939,0.158147,0.856288,-0.491653,0.557146,-0.239906,0.794977,0.524186,-0.088351,0.846980,0.124363,-0.819147,0.559893,0.142949,0.233131,-0.961852,0.756615,0.344157,-0.555895,0.872189,0.265419,0.410871,-0.311899,-0.005493,0.950072,0.028718,0.549577,-0.834925,0.012696,0.479324,-0.877529,-0.995300,-0.076327,0.059389,-0.981536,-0.190435,0.016694,0.916898,-0.062807,0.394086,0.590167,0.804956,-0.060793,0.669301,0.739769,0.068758,0.066378,0.585925,-0.807611,-0.869198,-0.088351,0.486435,-0.940428,-0.253456,0.226508,-0.887509,-0.245491,0.389874,-0.650533,-0.267495,0.710807,-0.218421,0.973296,-0.070315,-0.066958,-0.212134,0.974914,-0.353954,-0.012177,0.935179,-0.978576,-0.091494,0.184271,-0.991577,-0.066866,0.110752,-0.434767,-0.297189,-0.850063,0.958708,-0.094882,-0.268014,0.975127,-0.201788,0.091403,0.031800,-0.592364,0.805017,-0.071566,-0.672750,0.736381,0.776879,-0.116581,-0.618732,0.441755,0.414441,-0.795648,0.481185,0.329478,-0.812311,-0.674276,-0.144993,0.724082,-0.631001,-0.076174,0.771996,-0.534715,0.424207,0.730796,-0.562639,0.377361,0.735527,-0.289224,0.930113,0.226234,-0.473769,0.863002,0.175237,-0.490585,0.858730,0.147801,0.842494,-0.368053,-0.393323,0.907224,-0.418683,0.040498,-0.193457,0.136204,0.971587,-0.997864,0.037202,-0.053224,0.795099,-0.307749,-0.522538,-0.762963,0.621174,0.178869,0.939116,-0.242988,0.242836,0.222724,0.868465,-0.442854,0.053255,0.906217,-0.419385,0.979553,-0.197211,0.038942,-0.233619,0.535661,0.811457,-0.047548,-0.574389,0.817164,0.144658,-0.576037,0.804498,-0.964965,0.215918,0.148900,-0.900021,0.283029,0.331370,-0.924619,0.068453,0.374584,-0.976684,0.008850,0.214454,0.306528,-0.347911,0.885983,-0.462447,-0.444349,-0.767235,-0.428266,-0.374889,-0.822199,-0.547777,-0.361370,-0.754540,-0.013123,0.741813,-0.670461,-0.159734,0.107822,0.981231,0.034303,0.397961,0.916745,0.334849,0.942198,-0.008911,0.951048,-0.231880,0.204199,-0.804132,0.243965,-0.542039,-0.725425,0.290994,-0.623707,0.256966,0.948454,0.185400,0.101260,0.038575,-0.994079,-0.376324,-0.285409,-0.881405,-0.539171,-0.388592,-0.747154,-0.279122,-0.279855,-0.918546,0.620899,0.363262,0.694601,-0.796747,-0.020020,-0.603961,0.011902,0.087771,-0.996063,-0.935301,-0.063234,0.348064,-0.932127,-0.002411,0.362041,0.289895,0.087497,0.953032,0.224586,-0.638081,-0.736442,0.350932,-0.606647,-0.713279,0.070132,-0.578112,0.812922,0.540422,-0.161718,-0.825678,0.480605,-0.223457,-0.847957,-0.320933,0.357097,-0.877163,-0.290841,0.262154,-0.920133,0.265023,0.434645,-0.860683,0.607715,-0.335826,-0.719626,0.626820,-0.435896,0.645802,0.602588,-0.602466,0.523331,0.208655,-0.743767,0.634999,-0.232612,0.112186,0.966063,0.284707,-0.255867,-0.923795,0.496902,-0.308115,-0.811212,0.550340,-0.251228,0.796228,0.331462,0.937193,-0.108463,-0.453017,-0.045930,0.890286,-0.353679,-0.301187,0.885525,-0.499985,-0.156133,0.851833,0.362560,0.913419,0.184912,0.383343,0.892178,0.238807,0.572558,0.016633,-0.819666,0.758415,0.047975,-0.649953,0.212561,0.609943,-0.763359,0.907224,-0.020508,0.420057,-0.732658,-0.602222,-0.316965,-0.887692,-0.394696,-0.236946,-0.869015,-0.454848,-0.194617,0.538041,-0.017243,-0.842708,0.729576,-0.025605,-0.683401,-0.193304,-0.161290,-0.967772,0.117252,-0.412854,-0.903195,0.605182,0.783715,0.139592,0.743736,0.652303,-0.145848,0.605670,0.756798,-0.245705,0.926450,0.158361,-0.341411,0.928343,0.094455,-0.359478,0.994201,-0.037996,-0.100467,-0.960692,-0.219184,-0.170202,-0.951415,-0.046510,0.304300,-0.950530,0.037690,0.308267,-0.981689,-0.012940,0.190039,0.950713,0.096988,0.294412,0.885495,0.107273,0.452071,0.773400,-0.633290,0.027100,0.973205,0.135533,-0.185705,0.192450,-0.469161,-0.861873,0.713218,-0.195044,0.673208,0.618885,-0.074038,0.781945,0.655202,-0.125004,0.745018,-0.181555,-0.917814,-0.352977,0.479019,-0.684042,0.550066,0.389294,0.394879,0.832148,0.317942,0.558733,0.765954,-0.921140,-0.166814,-0.351634,0.465773,-0.215217,0.858303,-0.916105,-0.265297,-0.300516,0.065401,-0.807703,0.585894,0.040773,-0.849452,0.526048,-0.973388,0.078005,-0.215308,-0.436567,-0.404889,-0.803400,0.486129,-0.394238,-0.779870,0.379772,-0.301096,-0.874691,-0.654317,0.704398,-0.275002,0.744133,0.649403,-0.156377,0.694266,0.689230,-0.207099,-0.120640,0.285592,-0.950713,-0.094485,0.551317,-0.828883,-0.046663,0.627857,-0.776879,-0.430067,-0.092441,-0.898038,-0.604175,-0.341197,-0.720054,0.493973,0.692953,-0.525132,0.473464,0.690359,-0.546953,0.105869,0.991791,0.071505,0.150090,0.983917,-0.096530,-0.192785,-0.028291,-0.980804,0.455550,-0.769402,0.447737,-0.130345,0.111515,-0.985168,0.981292,0.031892,0.189703,0.640126,-0.285745,-0.713126,-0.923765,-0.189459,-0.332743,-0.947081,-0.179357,-0.266121,0.974090,-0.097354,-0.204016,0.919431,0.024506,-0.392468,0.929319,0.116001,-0.350566,-0.763146,-0.428785,-0.483413,0.642232,0.536119,-0.547746,0.895657,-0.110508,-0.430738,0.852168,0.013886,-0.523057,0.362377,0.929350,-0.070315,-0.261971,-0.209906,-0.941954,0.130039,0.642537,-0.755089,-0.061617,0.672353,-0.737632,0.801660,-0.268258,-0.534165,0.772515,0.634358,0.027223,-0.800867,-0.535264,-0.268441,-0.472518,-0.815302,0.334574,0.646321,-0.555223,0.523362,-0.888455,0.457717,-0.033265,0.067263,0.636555,-0.768273,0.210364,0.441115,-0.872433,0.151189,0.357250,-0.921659,-0.938139,-0.137852,0.317606,0.325388,0.938322,0.116611,0.249092,0.024049,-0.968169,-0.941923,-0.015473,0.335398,-0.897336,0.102115,0.429304,-0.989715,0.044679,0.135685,0.861263,0.508133,-0.001526,-0.940123,-0.112583,0.321635,-0.962889,-0.245247,-0.112552,-0.908963,-0.393536,-0.137272,-0.824305,-0.402783,-0.397748,0.328806,0.164678,-0.929899,0.884243,-0.383496,0.266457,0.467605,-0.359630,0.807428,0.319712,-0.521470,0.791070,-0.971404,-0.150822,0.183294,-0.995880,0.047700,0.076846,-0.732627,0.251076,0.632588,-0.759606,0.180883,0.624683,-0.205023,-0.890194,0.406751,0.807215,0.245735,0.536607,0.436842,0.804743,0.401898,0.347789,0.795831,0.495621,0.532609,-0.135472,-0.835414,0.460067,-0.163274,-0.872738,0.912503,0.123417,0.389935,-0.926054,0.341929,0.159551,0.986724,-0.162206,0.007080,-0.435408,0.460189,-0.773675,0.962035,-0.095462,-0.255623,0.903256,0.173925,0.392224,0.934599,-0.001953,-0.355693,0.872463,0.181005,-0.453902,-0.751213,-0.252327,0.609882,0.588427,-0.667135,0.456771,-0.338908,-0.404584,0.849361,-0.921323,-0.194098,-0.336802,-0.905271,-0.227241,-0.358898,0.202582,0.562731,-0.801416,-0.370403,0.921354,0.117801,-0.386212,0.131504,0.912961,0.100101,0.670400,0.735160,0.112980,-0.131352,-0.984863,0.206153,-0.378246,-0.902432,0.377300,-0.496445,-0.781732,0.349101,-0.445387,-0.824458,0.887997,-0.379223,0.260018,0.995483,0.081240,0.048830,-0.962523,-0.086886,0.256874,0.947295,-0.094058,-0.306192,-0.954772,-0.294900,-0.037477,0.388897,0.913907,0.116184,0.167669,0.985534,-0.023896,0.072481,0.959288,-0.272958,0.537065,0.714255,0.448683,0.949980,0.010834,-0.312052,0.864956,0.357860,0.351817,-0.868404,-0.469985,0.157933,-0.917570,-0.393811,0.054018,-0.735679,-0.318278,-0.597858,-0.074740,-0.749382,0.657888,0.700217,0.058290,-0.711509,0.898038,0.012726,-0.439680,-0.846919,0.231147,0.478835,-0.211859,0.732322,-0.647145,-0.379986,-0.286081,0.879604,-0.150487,-0.386242,-0.910031,-0.684469,-0.174902,-0.707724,-0.769005,-0.067415,-0.635639,-0.129124,-0.200415,0.971160,-0.346446,-0.426557,0.835444,0.302744,0.140477,-0.942656,0.892209,-0.422712,-0.158879,0.997223,-0.043092,0.060671,0.995483,-0.064394,0.069643,0.639027,-0.338115,-0.690848,0.467666,-0.325968,-0.821558,0.895779,0.154790,-0.416608,0.978790,0.185797,0.086001,-0.864895,-0.488205,0.116428,-0.936613,-0.327738,0.123722,-0.984893,-0.026337,0.171026,0.160100,-0.041932,-0.986206,0.084475,0.055727,-0.994842,0.376965,0.843959,-0.381573,-0.310770,0.945036,0.101382,-0.910764,-0.407727,-0.065157,-0.897458,-0.440657,0.018616,-0.390210,-0.406934,-0.825892,0.535508,-0.382092,-0.753136,0.785699,-0.492050,-0.374859,-0.830409,0.555895,0.036744,-0.822779,0.566973,-0.039308,0.354717,0.271218,-0.894742,0.850978,-0.148167,-0.503800,-0.021882,-0.381634,-0.924039,-0.986053,-0.162542,-0.035279,-0.947356,-0.261361,-0.184759,-0.168279,0.410138,-0.896329,0.586413,-0.517075,0.623463,0.518265,-0.282235,0.807276,0.223243,0.354076,-0.908170,0.174932,0.276955,-0.944792,-0.103275,0.329295,0.938536,-0.802881,0.486160,-0.344920,0.413923,0.904050,-0.106418,0.903256,-0.273568,0.330515,0.983062,0.109226,0.147099,0.674215,0.697073,-0.243904,0.763848,0.595386,-0.249031,-0.501328,-0.497421,-0.707968,-0.343242,-0.379498,-0.859127,0.981323,-0.070345,0.178930,0.320048,0.199652,0.926115,0.116916,0.297525,0.947508,0.204718,0.174047,0.963195,-0.316935,-0.468398,-0.824702,-0.155126,0.372143,-0.915098,-0.319620,0.245308,-0.915220,-0.056124,0.939573,-0.337657,0.044557,0.917783,-0.394543,-0.952513,0.115452,0.281655,0.310373,-0.097385,-0.945585,0.806299,-0.344310,-0.480941,0.930662,0.078249,0.357372,-0.986419,-0.162938,-0.019288,0.244850,0.915067,0.320414,0.288797,0.948027,0.133457,0.296030,-0.024323,-0.954833,0.047182,0.154118,0.986908,-0.151646,0.266335,-0.951842,-0.129582,0.258705,-0.957213,-0.007355,0.992370,-0.123020,-0.131596,0.962127,-0.238624,0.241371,0.965728,0.095157,0.845149,-0.237220,0.478988,0.363170,-0.402295,0.840358,-0.446486,-0.376232,-0.811823,-0.382427,0.919370,0.092105,0.936735,-0.321879,0.137333,0.319285,0.263192,-0.910367,0.251564,0.070650,0.965239,0.100375,0.040040,0.994140,-0.868313,-0.495834,-0.012299,0.824061,-0.451399,-0.342204,0.298746,0.861934,-0.409650,0.533738,0.771325,-0.346599,-0.577227,-0.215003,-0.787713,-0.387921,-0.369793,-0.844234,0.828455,-0.338298,-0.446303,-0.155736,-0.914701,0.372845,-0.901700,0.298563,0.312693,0.666005,-0.401196,-0.628834,-0.400098,0.061281,0.914396,-0.571215,-0.031220,0.820185,-0.614277,-0.165899,0.771416,0.988952,-0.013825,0.147465,0.664479,0.709098,-0.235755,0.346477,0.899319,0.266671,-0.023133,0.179693,-0.983428,-0.157598,0.186163,-0.969787,-0.493057,0.519639,-0.697714,-0.364025,-0.224342,-0.903928,0.592883,0.785852,-0.175634,0.948302,-0.237251,0.210730,0.948790,-0.161565,0.271371,-0.257241,0.042543,-0.965392,-0.440352,-0.070559,-0.895016,-0.572344,-0.267251,-0.775201,-0.431928,0.345134,0.833247,-0.313791,0.402936,0.859737,-0.111759,-0.045717,0.992676,-0.135044,0.112339,0.984436,-0.845241,-0.463118,0.266579,-0.932798,-0.273507,0.234657,-0.784082,0.606494,0.131657,-0.764153,0.639882,0.080966,0.336833,-0.739280,-0.583026,0.442457,-0.596973,-0.669179,-0.183660,0.208319,0.960631,0.702841,0.673116,0.230018,0.945067,0.202704,0.256355,0.757561,0.652242,0.024506,0.434065,0.737541,0.517289,0.739830,0.522935,0.423292,-0.168310,0.940947,-0.293649,-0.905179,0.414106,0.095584,0.917722,0.051119,0.393872,0.442549,0.850703,0.283517,-0.855831,0.336955,0.392407,0.941740,0.098148,0.321635,-0.660390,0.665426,-0.347942,-0.622883,0.724265,-0.295633,0.411969,-0.189520,-0.891232,-0.961913,-0.216895,-0.166234,0.273385,-0.349406,-0.896176,-0.292947,0.835109,-0.465499,-0.284249,0.783105,-0.553087,-0.954650,0.060488,0.291421,-0.941130,0.032929,0.336344,0.971892,0.194189,0.132939,-0.974853,0.148595,0.165960,-0.987121,-0.142155,0.073244,-0.986175,-0.035249,0.161840,-0.587664,-0.781549,0.209235,-0.624592,0.493240,0.605426,-0.638844,0.369732,0.674642,-0.811029,-0.187994,0.553941,-0.858089,-0.160558,0.487716,0.980316,0.096103,-0.172338,0.272958,0.893857,0.355663,-0.410932,-0.008515,-0.911588,-0.661946,-0.184240,-0.726524,0.976531,0.186895,0.106876,0.323160,0.779168,-0.537065,0.272378,0.822321,-0.499557,-0.996460,-0.077578,-0.031556,0.716605,0.411725,-0.562944,0.270028,-0.921628,0.278603,0.721000,-0.415143,0.554765,0.191687,-0.444136,-0.875179,-0.120670,0.012299,-0.992615,-0.298685,0.094913,-0.949614,-0.511124,-0.715995,0.475417,-0.464980,-0.667165,0.581957,-0.963042,0.166387,0.211676,0.491104,0.854549,-0.168889,-0.026704,0.275887,-0.960814,-0.046236,0.159520,-0.986084,0.955504,-0.120212,0.269295,-0.823664,-0.337687,-0.455519,-0.451460,-0.755913,0.474075,-0.067873,-0.808985,0.583850,0.204535,-0.374676,-0.904294,-0.207434,0.245155,-0.947020,-0.428053,-0.616504,-0.660787,0.303720,0.949309,0.080752,0.333110,0.927427,0.169927,-0.511399,0.843745,0.162786,-0.872158,0.486435,-0.051424,-0.353679,0.935301,-0.007416,-0.456252,0.282968,-0.843623,-0.618732,-0.630482,0.468642,-0.481796,-0.700522,0.526383,-0.879879,0.232765,0.414258,0.541581,0.650990,0.531846,-0.669546,0.262276,0.694876,-0.182897,0.826075,-0.532975,0.702017,-0.259011,-0.663350,0.246406,0.959899,0.133610,0.815790,0.538041,0.211951,0.408612,0.909604,0.075045,-0.035981,0.283456,-0.958281,-0.893277,0.200659,0.402203,-0.913694,0.113346,0.390240,-0.950133,0.142491,0.277261,0.243873,0.528428,-0.813166,0.337382,0.404981,-0.849788,0.242653,0.469710,-0.848781,0.982910,-0.060549,0.173711,-0.749474,-0.653432,0.106204,0.909726,-0.237678,-0.340342,-0.984832,-0.050020,-0.165990,-0.999207,-0.003388,0.039552,-0.995819,-0.064364,-0.064425,0.945555,0.114719,-0.304514,-0.248787,0.305887,0.918973,0.698447,-0.383984,-0.603900,0.855586,-0.274941,-0.438581,0.910276,0.263985,0.318888,-0.382061,-0.349773,-0.855342,-0.813288,0.351848,-0.463363,-0.923765,-0.306284,0.229835,0.727897,0.465407,-0.503494,-0.007813,-0.995972,0.089053,0.459792,-0.387921,-0.798791,0.541276,0.818598,0.191961,0.804468,-0.320322,-0.500168,0.143071,0.164098,-0.975982,0.249580,0.255684,-0.933958,0.876095,-0.415448,-0.244514,-0.151982,0.237465,-0.959410,0.394696,0.912107,0.110446,0.448408,0.869259,0.208014,0.645680,-0.393445,-0.654408,-0.562243,0.647114,-0.514817,0.674429,0.188025,-0.713981,0.698782,0.213416,-0.682730,0.028352,0.211676,0.976897,0.307840,-0.260109,0.915159,-0.992157,0.025025,-0.122318,-0.939390,0.247627,-0.237007,-0.986694,0.125980,-0.102634,-0.953734,-0.277474,-0.115604,-0.981780,-0.100711,0.160924,0.968108,0.088717,0.234260,0.291635,0.162297,0.942625,0.504410,0.657552,-0.559587,-0.614246,-0.126988,-0.778802,0.492691,0.849178,0.190008,0.701315,-0.621723,0.348643,0.011017,-0.515549,0.856777,0.918149,-0.009735,0.396039,0.110294,0.316477,-0.942137,0.983795,-0.147282,-0.102145,0.447035,0.065523,0.892087,-0.782464,-0.355205,-0.511399,-0.661367,-0.359813,-0.658071,0.239845,0.926603,0.289560,0.167425,-0.180273,-0.969237,-0.920103,0.247932,0.303171,0.952330,-0.194098,0.235267,0.413221,-0.362865,-0.835170,-0.136418,0.421888,-0.896298,0.026032,0.350749,-0.936094,-0.148473,0.298898,-0.942625,-0.953154,-0.232765,0.192999,-0.969939,0.027253,0.241707,-0.942717,0.125553,-0.309030,-0.079134,-0.023713,-0.996551,-0.155705,-0.200140,-0.967284,0.049654,-0.023591,-0.998474,-0.995331,-0.067141,0.069277,-0.084902,0.813074,-0.575915,0.224647,0.793573,-0.565447,-0.498642,0.803888,-0.324168,-0.570574,0.191687,-0.798547,-0.510178,0.139805,-0.848598,-0.355876,-0.085086,-0.930631,-0.529954,-0.124332,-0.838832,-0.327006,-0.165136,-0.930479,0.601550,-0.752739,0.267342,-0.583483,0.280007,-0.762291,-0.337321,0.480117,-0.809717,0.975799,-0.208625,-0.065127,0.975433,-0.204535,-0.081545,0.984069,-0.144017,-0.103977,0.097598,-0.472060,-0.876125,-0.291482,0.827723,-0.479446,0.446822,0.604083,-0.659810,0.001801,0.593890,-0.804498,0.043794,0.597827,-0.800409,0.082400,-0.309641,-0.947264,-0.908475,-0.290384,-0.300455,-0.907010,-0.241310,-0.345012,-0.569933,0.224372,-0.790429,-0.512253,-0.252876,-0.820734,0.392163,-0.047121,0.918668,0.559038,-0.198675,-0.804956,0.533677,-0.227119,-0.814570,-0.840846,0.157384,0.517869,-0.917417,0.195959,0.346294,-0.923612,0.126713,0.361736,-0.583026,-0.404279,-0.704703,0.355693,-0.329905,-0.874416,0.750877,-0.432875,-0.498764,-0.926725,-0.369030,-0.070223,-0.922880,-0.251869,-0.291177,0.392529,-0.308481,-0.866421,-0.866176,-0.430189,-0.254189,-0.949065,-0.305063,0.078555,-0.977050,-0.211646,0.023103,0.283120,0.885372,-0.368633,0.346934,0.860653,-0.372631,0.175512,0.070315,0.981933,0.718955,0.607227,-0.338084,-0.671957,-0.637593,-0.376690,-0.726188,-0.420087,-0.544176,-0.097293,0.299387,0.949126,0.930845,0.077029,-0.357128,0.770531,0.509049,0.383526,0.751061,0.616596,0.235939,-0.469771,-0.193152,-0.861385,-0.564989,-0.346995,-0.748558,0.238502,0.945158,0.222968,-0.480697,0.653249,-0.584918,-0.724174,-0.046785,0.687979,-0.046022,0.829188,-0.557054,0.230689,-0.277261,-0.932676,0.346324,-0.380779,-0.857326,0.204443,-0.310923,-0.928159,0.809137,0.105258,0.578082,-0.800501,-0.372051,-0.469832,0.017212,0.175665,-0.984283,0.186316,-0.264595,0.946165,0.086520,-0.320292,0.943327,-0.574877,0.053285,0.816492,-0.196326,0.977325,-0.079012,-0.024995,-0.266488,-0.963500,-0.034394,-0.985809,-0.164159,0.217627,0.003143,0.976012,-0.101077,0.865108,-0.491287,0.976135,-0.138890,0.166845,-0.801782,0.168401,-0.573351,0.584704,0.736381,0.340342,0.317209,-0.107181,0.942259,0.276284,0.951567,-0.134709,0.152501,0.975341,0.159398,-0.516404,-0.114475,-0.848628,-0.722739,0.686117,0.082675,0.820673,-0.424177,0.382824,-0.886807,-0.340495,-0.312449,0.076083,0.192022,0.978423,0.021027,-0.026124,-0.999420,-0.956816,0.119327,0.264992,0.350566,-0.038301,0.935728,-0.376873,0.149022,-0.914182,-0.231300,0.293588,-0.927519,-0.924680,-0.358196,-0.128971,0.076266,0.986724,-0.143315,-0.528214,-0.256813,0.809320,-0.213904,-0.105594,-0.971099,-0.900510,-0.259560,0.348796,0.930204,-0.296640,-0.216102,-0.733848,-0.278359,-0.619617,0.302530,0.942534,0.141667,0.341960,0.212409,-0.915372,0.354472,0.303995,-0.884243,-0.425764,0.161901,0.890194,0.989898,0.049013,0.132939,0.981811,0.015778,0.189123,0.176397,-0.466170,-0.866909,-0.903592,-0.342509,-0.257179,0.524705,0.815638,0.243660,0.663961,-0.355388,0.657857,0.528428,0.716178,0.455885,-0.801874,-0.293558,-0.520371,-0.959960,0.158177,0.231086,0.696524,-0.236030,-0.677572,0.801508,0.106876,0.588305,-0.355510,0.931944,0.071139,-0.085818,0.992920,0.082095,0.114200,-0.019898,-0.993255,0.982910,-0.070620,0.169805,0.936308,-0.140782,0.321696,0.294595,0.950194,0.101627,-0.680044,-0.311136,-0.663839,0.271035,0.515091,-0.813135,0.398175,0.469466,-0.788049,0.910764,0.057222,0.408887,0.592212,0.249580,0.766106,0.456008,-0.499680,-0.736442,0.751213,-0.241188,-0.614368,-0.862545,-0.232276,0.449507,-0.823115,-0.212531,0.526597,-0.179571,0.229804,-0.956511,0.551012,-0.095767,-0.828944,-0.025910,0.034547,-0.999054,-0.736106,-0.217994,-0.640767,-0.768700,-0.554521,-0.318674,-0.682760,0.488083,0.543657,0.548997,0.715720,-0.431593,-0.286691,-0.224677,-0.931272,-0.893155,0.126835,0.431410,-0.826228,0.160222,0.540056,0.621784,-0.248360,0.742729,0.589557,-0.322459,0.740532,0.589923,-0.325205,-0.739036,-0.996734,0.069643,0.040742,-0.996551,0.060732,0.056001,0.964476,-0.249275,0.087069,0.440352,0.893643,0.086306,0.941801,-0.334788,0.029664,-0.209174,0.974761,0.077914,0.761620,0.002533,-0.647969,0.364269,0.370434,-0.854427,-0.907407,-0.142003,0.395520,-0.913450,-0.278207,0.296945,-0.521470,-0.522019,-0.674917,-0.568896,-0.216071,-0.793481,-0.088504,0.333415,-0.938597,-0.039216,0.253639,-0.966491,0.554613,0.474319,0.683676,0.154576,0.952391,-0.262734,0.948454,-0.304880,0.086398,0.948576,-0.316355,-0.008179,0.931730,-0.354198,0.079775,0.798151,0.325663,0.506790,0.313486,-0.490890,-0.812830,-0.138798,0.498367,0.855770,-0.015778,0.163396,0.986419,-0.129215,0.153172,0.979705,-0.249855,0.196905,-0.948027,0.731956,0.575152,-0.365246,0.904843,0.309061,0.292764,-0.991882,-0.009064,-0.126713,-0.785180,0.462386,0.411847,-0.901059,-0.409558,-0.142491,0.368053,-0.305185,0.878262,0.644398,0.618061,0.450240,-0.737327,0.274728,-0.617084,-0.636311,0.599200,-0.485824,0.492691,-0.091159,-0.865383,0.642262,-0.009766,-0.766381,-0.248878,-0.954161,0.166082,-0.237739,-0.698691,-0.674734,-0.036103,-0.993347,-0.109287,0.958831,0.152623,-0.239357,-0.976989,-0.093326,-0.191717,-0.929167,0.273415,-0.248726,-0.908322,0.331400,-0.255135,-0.771874,0.552538,0.314432,-0.284524,-0.120548,-0.951048,-0.289560,-0.233680,-0.928159,0.920103,-0.039186,0.389660,-0.876400,0.346385,-0.334544,-0.339549,-0.832087,0.438490,-0.479629,0.193457,-0.855861,0.843654,0.515275,-0.150639,-0.007630,0.249245,-0.968383,0.921232,-0.308359,-0.237098,-0.983856,-0.165502,0.067995,-0.229499,-0.785577,-0.574602,-0.933866,-0.108615,-0.340678,-0.105136,0.837794,-0.535752,0.924741,0.015687,0.380200,0.380627,0.912839,0.147740,-0.183721,0.206671,0.960997,-0.281594,0.043275,0.958525,0.273415,0.960448,0.052156,-0.528550,-0.309091,-0.790582,-0.109806,0.244697,0.963347,0.431166,-0.809687,0.398053,-0.186468,-0.216102,0.958373,0.993286,-0.093753,-0.067324,-0.720908,0.600848,-0.345317,-0.352580,-0.208960,0.912137,0.793329,-0.278298,-0.541429,0.510636,0.347606,0.786370,0.496628,0.426099,0.756157,-0.336375,-0.383984,-0.859859,0.017945,0.480392,-0.876858,-0.661184,0.203497,0.722068,-0.420087,-0.105930,-0.901273,-0.528062,0.097446,-0.843562,-0.969146,-0.122776,0.213660,0.698386,-0.316965,-0.641652,-0.651204,0.417646,0.633595,0.131901,0.738853,0.660787,-0.442488,-0.474166,-0.761132,-0.346873,-0.470626,-0.811274,-0.120579,0.848018,-0.516037,0.495682,0.454909,-0.739799,-0.195990,-0.533769,-0.822596,-0.456130,-0.437452,-0.774926,0.993408,-0.035524,0.108921,0.949950,-0.298593,0.091708,0.937834,-0.296182,0.180792,-0.712424,-0.388165,-0.584582,-0.797174,-0.424726,-0.429029,0.415601,-0.275124,0.866909,-0.138829,0.795434,-0.589892,0.528794,0.507096,0.680563,0.918149,0.244392,-0.311869,0.863521,0.258919,-0.432722,-0.976836,-0.096408,0.190893,-0.504654,0.348979,-0.789605,0.901883,0.430708,0.032838,0.115757,-0.466872,-0.876705,0.780816,-0.211646,0.587786,0.876003,-0.397382,0.273232,0.938475,-0.345103,0.010620,-0.858577,0.403546,0.316172,-0.888302,-0.239418,-0.391858,-0.870907,-0.474868,-0.126316,0.677511,-0.616016,-0.401807,-0.901547,-0.342906,-0.263802,0.905026,-0.401746,0.139531,0.750237,-0.441023,-0.492538,0.947691,0.052278,0.314798,0.999451,-0.031861,0.007569,0.987457,-0.137852,0.076876,0.495621,0.868435,-0.012635,0.445814,0.894833,-0.022309,0.952269,-0.287942,0.101169,-0.845454,-0.084841,-0.527238,-0.399731,-0.079501,0.913144,-0.944029,-0.278146,0.177282,0.356182,0.230964,0.905393,0.358715,0.932035,0.051088,-0.882107,-0.246437,0.401349,-0.237892,0.336467,0.911130,0.348155,-0.422040,-0.837031,-0.458113,-0.386090,0.800623,-0.616565,-0.499771,-0.608295,-0.515305,-0.497604,-0.697714,-0.082553,-0.488937,-0.868374,0.596728,-0.524735,-0.607074,-0.265114,-0.744652,0.612507,-0.136876,-0.772668,0.619831,-0.791864,0.194586,0.578845,-0.836512,-0.033326,0.546892,-0.729820,-0.402051,-0.552873,0.462966,0.815088,0.348186,0.589373,0.027680,0.807367,0.494156,-0.242103,0.834956,0.674032,-0.011017,0.738609,-0.934172,0.271126,-0.231849,0.400311,0.889706,0.219398,-0.658528,0.736351,0.155217,-0.279763,0.436354,-0.855159,-0.548997,-0.593066,-0.588885,-0.236518,-0.350352,0.906217,-0.680166,-0.083956,0.728202,0.394696,0.882015,0.257363,0.135960,-0.442732,-0.886258,0.207984,0.972503,0.104556,0.399335,0.905271,0.144749,0.329539,-0.203558,-0.921903,-0.465621,-0.188055,-0.864742,-0.406507,-0.136937,-0.903287,-0.486770,-0.206122,-0.848842,-0.057863,-0.431959,0.900021,0.648213,-0.526811,-0.549760,-0.129154,0.737907,0.662404,-0.049989,0.861080,0.505997,-0.074526,0.748222,0.659200,-0.961364,-0.220252,0.165044,0.905454,-0.339244,0.254982,0.979278,-0.063204,0.192328,0.885342,-0.265084,0.381939,0.049135,-0.264657,-0.963073,0.925474,0.099551,0.365459,0.266060,0.341563,-0.901395,0.316111,0.914243,0.253365,0.443678,0.826624,0.346141,-0.956053,-0.169836,-0.238929,0.237709,-0.504898,0.829768,0.161962,-0.397748,-0.903073,0.162236,0.757836,-0.631916,0.353221,0.652181,-0.670705,0.345653,0.673910,-0.652913,0.234230,0.969573,-0.070742,0.967528,-0.238289,0.084109,0.944517,-0.328196,0.011841,0.494736,0.869015,-0.005066,0.587848,-0.348064,-0.730216,0.832301,-0.164495,-0.529313,0.620380,0.018311,-0.784051,-0.800470,-0.473708,-0.367199,-0.561693,0.815332,-0.140263,-0.379803,0.387463,0.839991,-0.076662,0.166723,-0.983001,-0.581805,-0.292642,-0.758812,-0.835505,-0.279153,-0.473281,-0.298441,0.330302,0.895413,-0.472884,-0.456465,-0.753624,0.729606,0.403821,0.551866,-0.082186,0.097354,0.991821,-0.979125,-0.139073,0.148167,0.194037,0.013428,0.980895,-0.082858,0.251503,-0.964293,0.656636,-0.342357,-0.671987,0.947569,-0.307901,-0.085238,-0.692434,-0.141362,-0.707450,-0.777886,-0.308267,-0.547563,0.794946,0.566515,-0.216926,-0.625629,-0.314646,-0.713797,0.409589,0.903043,0.129368,-0.816919,0.372448,0.440321,-0.081362,0.754967,-0.650655,-0.126408,0.600818,-0.789300,0.505387,-0.354259,-0.786798,0.864223,0.276864,-0.419996,0.308023,-0.303903,-0.901517,0.892544,0.016572,0.450606,0.904721,0.059206,0.421796,0.488388,0.815241,0.311167,-0.550798,-0.606098,0.573779,0.597308,-0.473861,-0.647023,0.936552,-0.002930,-0.350475,0.539964,0.006775,0.841639,-0.979217,-0.144475,-0.142277,0.558397,0.823664,-0.098666,-0.892758,-0.425489,0.148045,-0.873745,-0.373943,-0.310923,-0.452773,-0.412000,-0.790704,-0.462630,0.051149,-0.885067,0.763329,-0.427259,-0.484512,0.697653,0.529801,0.482223,0.285989,0.732871,0.617298,-0.922178,0.194281,0.334330,-0.975677,-0.138829,0.169622,-0.985626,0.106265,-0.131138,0.048524,0.701376,0.711112,-0.320322,-0.397504,-0.859859,-0.452101,-0.456954,-0.765984,-0.145848,0.853023,-0.501053,-0.010865,0.837672,-0.546037,-0.024140,0.863186,-0.504288,0.527573,-0.259255,0.808954,0.224860,-0.641041,0.733787,0.685385,-0.359447,-0.633259,-0.870449,0.256417,-0.420118,0.920957,-0.105899,0.374920,-0.428663,-0.340434,0.836848,0.599933,-0.429792,0.674764,-0.996277,0.077792,-0.036317,-0.363536,-0.050813,0.930174,-0.490341,0.054018,0.869839,0.014527,0.761223,-0.648274,-0.045015,0.703696,-0.709037,0.904782,0.067965,0.420331,0.962218,-0.046510,0.268197,-0.024659,-0.455855,-0.889676,0.997589,0.007385,0.068728,0.889767,0.005615,0.456343,0.850581,-0.221259,0.476974,-0.897763,0.058504,0.436537,-0.306406,0.222205,0.925565,-0.863857,0.291513,0.410779,-0.898923,0.276650,0.339640,0.931425,-0.308115,-0.193579,-0.265633,-0.195410,-0.944029,-0.618458,-0.454360,-0.641102,-0.606891,0.713279,-0.350505,0.909635,0.074129,0.408673,0.106876,0.551164,-0.827509,0.179907,0.568957,-0.802423,0.378277,-0.228370,0.897061,-0.068178,-0.018677,-0.997497,-0.897519,0.207190,0.389203,-0.368908,0.542528,-0.754662,-0.425001,-0.435987,-0.793237,-0.512803,0.224128,0.828700,-0.557390,0.191870,0.807733,0.204474,0.407880,0.889828,-0.021943,-0.133274,-0.990814,0.033479,-0.136509,0.990051,-0.955565,-0.147618,-0.255074,-0.190649,-0.353984,0.915586,-0.247963,-0.279733,-0.927488,-0.302805,0.005402,-0.953032,0.292398,0.864559,-0.408643,0.987457,-0.087893,0.131108,0.994049,0.010010,-0.108188,-0.019074,0.280190,-0.959746,-0.585528,0.810602,0.005646,-0.478286,0.818751,-0.317576,-0.290262,0.937529,-0.191687,-0.069094,0.992126,0.104312,0.992035,-0.103397,0.071505,0.969817,-0.170354,0.174352,-0.733512,-0.624714,0.267647,-0.533403,-0.250252,-0.807947,0.945036,-0.191443,-0.264992,-0.094089,0.870968,0.482192,0.139195,-0.436872,-0.888668,0.067202,-0.340403,-0.937864,-0.246223,0.959014,-0.140172,-0.941252,0.187933,0.280557,0.696188,0.459670,0.551317,-0.995514,-0.037019,0.086825,-0.547624,-0.228370,-0.804926,-0.843318,-0.529344,-0.092563,0.520371,-0.350047,-0.778863,0.781304,-0.509232,-0.360820,0.903928,0.218055,-0.367870,-0.954955,-0.127934,0.267647,-0.136570,-0.092288,-0.986297,-0.932096,-0.078127,0.353587,-0.140996,0.955809,0.257881,-0.908109,-0.201697,0.366863,0.550340,-0.481460,0.682119,-0.908933,-0.136845,0.393780,-0.485824,-0.210120,-0.848415,0.547380,0.677023,-0.491897,0.940397,0.206397,-0.270150,-0.411054,0.378918,-0.829096,-0.426588,0.459517,-0.778985,0.094394,0.794427,-0.599933,0.951933,0.304910,0.028626,0.328471,0.524552,-0.785455,-0.786370,0.457472,-0.415052,0.491256,0.231788,0.839564,0.524735,0.248115,0.814264,0.937468,-0.213111,0.275124,-0.878079,-0.458937,-0.135228,0.230354,-0.230354,-0.945433,-0.515122,-0.340709,-0.786462,0.729087,0.026521,0.683889,0.003662,0.221107,-0.975219,-0.025300,0.124302,-0.991913,0.017762,0.173894,-0.984588,0.702658,-0.272073,0.657399,0.662618,-0.189093,0.724662,0.293008,-0.102756,-0.950560,0.329630,-0.125248,-0.935759,0.924039,-0.302408,-0.233802,0.940062,0.044435,0.338023,-0.722098,0.461776,0.515061,0.071871,0.410718,0.908902,0.016816,0.425825,0.904630,0.088992,0.483322,0.870876,-0.272042,0.854213,-0.443007,0.312510,0.675069,0.668264,0.244179,0.967803,-0.060854,-0.982604,-0.145421,0.115360,-0.631245,0.775140,0.025391,0.089022,-0.256539,-0.962401,-0.474960,-0.548296,-0.688284,-0.489486,-0.473373,-0.732322,-0.299753,0.001831,-0.954009,-0.775262,-0.015931,-0.631397,-0.146123,0.776055,-0.613453,0.106754,-0.525285,0.844172,-0.137608,-0.526414,0.838984,0.650685,0.535844,0.537980,-0.603168,-0.278085,0.747520,0.308481,0.443037,0.841731,0.941740,-0.220771,-0.253670,-0.406446,0.189642,0.893765,0.180151,-0.364544,-0.913572,0.930357,-0.205420,0.303598,0.304788,0.068484,-0.949919,-0.891018,-0.317148,-0.324717,-0.016297,0.116977,-0.992981,-0.331400,-0.575762,-0.747398,0.281472,0.951140,0.126652,0.601215,0.788629,-0.128574,-0.957427,0.287362,-0.027070,-0.969909,0.235176,0.062899,0.533555,-0.160161,-0.830439,0.601672,-0.244697,-0.760308,0.887783,-0.091189,0.451094,-0.526688,-0.274819,0.804376,0.752892,-0.001099,-0.658101,0.736259,-0.465011,-0.491562,-0.004791,0.205847,-0.978545,-0.694540,0.655293,0.296884,0.455489,0.325358,0.828639,-0.078555,0.055940,-0.995331,0.170385,0.799219,0.576342,0.685049,-0.095981,-0.722129,-0.323283,0.016938,-0.946135,0.724143,-0.015412,0.689444,0.981414,-0.173528,-0.081606,0.389966,0.211432,-0.896207,-0.990783,-0.126469,0.048189,-0.569872,0.693594,-0.440596,0.286935,-0.002472,0.957915,-0.016694,0.752281,-0.658589,0.855586,-0.424329,-0.296426,0.882351,0.106174,0.458419,0.883145,-0.147099,0.445418,0.888150,0.384594,-0.251442,-0.711142,-0.281137,0.644337,0.546159,-0.393353,-0.739555,0.191565,-0.407117,-0.893033,-0.118107,-0.594867,0.795068,-0.773400,-0.249672,0.582629,0.492813,-0.515091,-0.701254,-0.141514,0.301035,0.943022,0.674459,-0.366100,-0.641102,-0.930509,0.111301,0.348918,-0.939634,0.134129,0.314707,-0.566271,-0.315683,-0.761345,-0.299020,-0.162450,-0.940306,0.623951,0.737663,0.257820,0.950560,-0.222022,0.217048,0.670034,0.485275,-0.561724,0.148595,0.228431,-0.962127,0.766289,0.475265,0.432325,-0.851497,0.361461,0.379803,-0.789361,0.550035,-0.272652,-0.974181,-0.223426,0.031373,-0.379162,0.801691,-0.462020,-0.718833,0.627644,0.298837,-0.603320,0.752037,-0.265297,0.990692,-0.044374,0.128513,-0.907285,-0.178350,0.380779,-0.309854,0.949583,0.047121,0.975677,-0.208472,0.067385,0.838618,0.416486,0.350993,0.070406,-0.574328,0.815577,0.860653,0.490585,0.136296,0.004700,0.995544,0.093936,0.257912,0.264168,-0.929319,-0.808222,0.584094,-0.074587,-0.055544,0.061251,-0.996551,-0.751335,-0.361980,-0.551744,0.080386,-0.335398,-0.938627,-0.971557,-0.133091,0.195685,0.522752,-0.371685,-0.767174,0.827357,0.199591,-0.524979,-0.050203,0.472762,0.879727,-0.761986,-0.407636,-0.503189,-0.472579,-0.154790,-0.867550,0.298929,-0.280465,-0.912107,0.671072,0.738762,-0.061983,0.097568,0.759453,-0.643178,-0.071932,0.932890,-0.352886,0.372326,0.918241,0.134861,-0.478896,-0.117435,0.869961,-0.409131,-0.297067,-0.862728,0.855647,-0.314798,0.410749,-0.671834,0.218940,-0.707541,0.134831,0.033662,-0.990265,0.191473,0.935789,0.295969,0.280526,0.958342,0.053224,-0.628712,-0.691183,-0.356304,0.553545,0.798791,-0.235511,0.953703,-0.121982,0.274819,0.561052,0.627247,0.540117,0.758599,0.621418,-0.195654,0.742607,-0.223884,0.631153,-0.962615,0.270791,0.002197,0.182043,0.982757,0.032258,-0.896847,0.280862,-0.341716,-0.178503,0.037263,-0.983215,-0.050813,0.152959,-0.986908,0.688864,0.562822,-0.456801,0.531480,0.774132,-0.343822,0.589373,0.661885,-0.463118,0.248634,0.059145,-0.966765,-0.140110,0.211707,0.967223,-0.074618,0.012421,0.997131,0.927824,0.006195,0.372936,-0.648549,0.131932,-0.749626,-0.219031,0.295785,-0.929777,-0.651173,-0.402631,-0.643300,-0.572039,-0.207343,-0.793542,-0.422895,-0.568743,-0.705435,0.148686,0.393323,-0.907285,-0.497940,-0.553362,-0.667653,-0.086947,0.857082,-0.507767,0.677602,0.068941,-0.732170,-0.756157,-0.651357,0.062593,0.978820,0.159276,-0.128544,-0.236518,-0.443068,-0.864711,0.019074,0.762169,-0.647053,-0.451888,0.763085,-0.462050,0.149937,0.949767,0.274606,-0.398999,0.705679,0.585437,-0.466292,0.496750,0.731956,-0.988159,-0.061556,0.140507,-0.998962,-0.037446,-0.024903,-0.994354,-0.105991,-0.004425,-0.601367,0.636860,-0.482406,0.577807,0.192663,0.793085,0.189215,-0.203345,0.960631,0.888668,0.093173,0.448958,-0.737877,0.136570,0.660909,0.973510,-0.039003,0.225227,0.899533,-0.139012,0.414075,0.391217,0.476089,0.787561,0.378460,0.911740,-0.159459,-0.816065,-0.577776,0.012604,-0.958220,-0.283181,-0.040040,0.504227,-0.332743,-0.796869,-0.863155,0.325236,-0.386181,-0.855617,0.278664,-0.436140,-0.836482,0.335307,-0.433393,-0.143529,-0.379131,-0.914121,0.416028,0.201178,-0.886807,0.232215,0.078494,-0.969481,0.486007,0.528275,0.696188,-0.118686,0.092776,-0.988556,-0.113041,0.992370,0.048891,-0.296060,0.943358,0.149663,-0.394147,-0.000488,0.919034,-0.443159,0.259957,0.857906,0.487686,0.839717,0.238716,0.460402,0.854854,0.239204,0.402631,0.483383,-0.777276,-0.212806,0.663900,-0.716880,0.001160,-0.368114,-0.929777,0.360698,0.005982,0.932646,0.514817,0.835200,-0.193243,0.857204,-0.117100,-0.501419,-0.348827,-0.192541,-0.917173,-0.595386,-0.262032,-0.759453,0.108676,0.837977,-0.534745,-0.319712,0.784722,-0.530992,0.512253,-0.288522,-0.808893,0.941221,-0.290750,-0.171850,-0.907773,-0.102969,0.406537,-0.545122,0.792261,0.274117,-0.498459,-0.063784,-0.864528,-0.586016,-0.084109,-0.805902,-0.000183,0.749474,-0.662008,0.142552,-0.047212,-0.988647,-0.853420,-0.366497,-0.370556,-0.898129,-0.314524,-0.307260,-0.932554,0.151555,-0.327647,0.989471,0.118412,0.082888,0.953978,-0.099582,0.282846,0.953551,0.074099,0.291910,0.952452,-0.206793,0.223640,0.447249,-0.529099,-0.721091,0.702109,-0.118168,-0.702170,-0.272774,0.220038,0.936552,-0.392193,0.076540,0.916654,-0.258248,0.070498,0.963469,-0.139042,-0.487838,-0.861751,0.152074,0.446516,-0.881741,0.029298,0.936247,0.350047,0.928617,0.202673,-0.310739,0.470168,0.717185,-0.514359,0.393231,0.852016,-0.345500,-0.085788,0.992828,0.083193,-0.423414,-0.629627,-0.651326,-0.194678,-0.511277,-0.837062,-0.461806,-0.351024,-0.814539,-0.316446,-0.402814,-0.858791,-0.960845,0.075228,0.266610,-0.218085,-0.274117,-0.936613,0.573473,0.484359,0.660665,-0.939299,0.016449,0.342662,-0.938108,-0.024964,0.345378,-0.957274,-0.019196,0.288522,-0.916410,-0.090487,-0.389813,0.935118,-0.006470,0.354259,-0.976959,0.130131,-0.169103,-0.974212,0.118015,-0.192206,-0.988342,0.108432,-0.106662,-0.283578,0.915250,-0.286111,0.590808,0.740410,-0.320414,0.554613,-0.427625,-0.713797,-0.955596,0.150365,-0.253365,0.308206,0.639363,-0.704398,0.256874,0.953459,0.157689,-0.587481,0.395276,0.706107,-0.589831,0.289071,0.753960,0.711844,-0.018983,-0.702048,-0.395764,-0.319742,-0.860866,0.612964,0.121097,0.780725,-0.280435,0.958831,0.044191,0.921628,0.058046,-0.383648,-0.494980,0.007599,-0.868831,0.258431,0.718223,-0.646016,0.805658,0.592242,0.010620,0.447401,0.719230,-0.531510,0.268685,-0.734916,0.622639,0.837825,0.451918,0.306253,-0.116764,0.989563,0.084262,-0.393475,0.883480,0.254189,-0.160436,0.981964,0.099918,0.344462,0.217566,-0.913205,-0.960234,-0.014222,0.278787,0.053529,0.428358,-0.902005,0.053285,0.371624,0.926847,-0.974944,-0.214759,-0.057436,-0.978790,-0.165716,-0.120212,0.550951,-0.007447,0.834468,0.000092,0.973205,0.229926,-0.996796,-0.079440,-0.007660,-0.982330,0.119388,-0.143956,0.996033,-0.004761,0.088565,-0.369274,0.342814,0.863765,0.308542,0.450911,-0.837519,-0.837214,0.461318,-0.293588,-0.784387,0.376202,-0.493149,-0.484420,-0.717124,0.501022,-0.836329,-0.036500,-0.546953,0.237770,0.344493,-0.908139,-0.933958,0.226264,0.276528,-0.983154,-0.137150,0.120579,-0.971221,0.094821,0.218390,-0.462539,0.497726,-0.733665,0.574633,0.612659,-0.542558,0.813013,-0.051088,0.579943,0.742607,-0.362682,-0.562975,0.111393,0.276376,-0.954558,0.619251,-0.008454,0.785119,0.669210,0.125950,0.732292,0.184423,-0.293649,-0.937925,-0.063509,0.317759,-0.946013,-0.257576,0.512131,0.819330,-0.916013,0.083682,0.392315,0.471236,-0.735801,-0.486282,0.528672,0.808161,-0.259438,-0.775964,0.410932,-0.478500,-0.834254,0.083163,0.545061,-0.765435,0.213446,0.607044,0.290628,0.940672,0.175024,-0.843104,0.254128,0.473861,-0.278603,-0.450453,-0.848201,-0.203528,-0.322398,-0.924436,-0.299936,0.953948,0.003052,-0.377758,0.925596,0.023133,0.037935,-0.582293,-0.812067,-0.092441,-0.609119,-0.787622,-0.238990,0.145177,-0.960082,0.751152,0.635701,0.177801,-0.448653,0.883847,0.132176,0.759545,0.005127,-0.650410,0.812555,-0.382427,-0.439863,0.418348,-0.424757,-0.802820,-0.095340,0.193762,0.976379,-0.894772,-0.220649,-0.388165,0.733024,0.453017,0.507340,0.811701,0.336741,0.477157,0.054689,-0.273446,-0.960326,0.685934,-0.415845,-0.597095,0.686392,0.675954,-0.268166,-0.859127,0.356639,0.366985,0.451918,-0.262490,-0.852535,0.378460,-0.175359,-0.908841,0.904660,-0.277749,0.323099,0.685720,-0.376690,-0.622761,0.315287,-0.333842,0.888302,0.900754,0.386547,-0.197974,-0.506760,0.454634,-0.732414,-0.850642,-0.467055,-0.241310,0.323588,0.941374,0.095218,0.236396,-0.590503,0.771599,0.899228,-0.190405,0.393841,-0.642415,-0.275094,-0.715262,0.889584,-0.264077,0.372631,0.398022,-0.092746,0.912656,0.228858,0.030366,0.972961,0.990112,0.028748,0.137181,-0.312052,-0.279458,-0.908017,-0.805658,-0.280618,0.521653,0.380505,-0.551927,0.741966,-0.458937,-0.355480,-0.814234,0.992157,0.110477,-0.058199,-0.784295,-0.114505,0.609668,0.388012,0.426710,0.816889,-0.185400,0.970672,0.152928,0.735069,0.210334,-0.644490,-0.434217,0.070070,-0.898038,0.972503,-0.016572,0.232246,-0.035340,0.259713,-0.965026,-0.326975,0.239051,-0.914274,0.272408,0.861171,-0.429121,-0.930754,0.194403,0.309641,0.070650,-0.188543,-0.979492,0.148656,0.900845,-0.407880,0.125553,0.904813,-0.406812,0.244057,0.666189,0.704672,0.053346,0.717582,0.694388,0.513169,0.837825,0.186102,-0.640278,-0.150182,0.753288,-0.430708,0.779138,-0.455397,0.019715,0.999634,0.018220,-0.622761,-0.272256,0.733482,-0.483200,-0.614307,0.623798,-0.964904,0.259896,-0.036775,-0.682852,-0.300546,0.665853,0.852260,0.157506,0.498795,-0.845759,-0.015809,-0.533311,0.151585,0.630238,-0.761437,0.161077,0.279092,0.946623,-0.048433,-0.012391,-0.998718,0.463973,0.885739,-0.011780,-0.705313,-0.446486,0.550584,-0.727531,-0.182257,-0.661397,0.952788,0.206763,0.222297,0.929624,0.309030,0.200598,-0.424757,-0.229621,0.875698,-0.220496,-0.196081,0.955443,0.020051,0.180731,-0.983306,-0.854701,0.253304,0.453078,0.058260,0.725486,0.685751,-0.897397,0.014618,0.440962,0.995941,-0.088626,-0.013916,-0.948271,-0.105838,0.299234,0.422285,0.072390,0.903562,0.162786,0.976562,0.140599,-0.826197,-0.060610,-0.560045,0.904874,-0.273415,-0.326212,0.603717,0.749992,0.270150,0.677114,0.670705,-0.302713,-0.009156,0.748833,-0.662679,-0.665761,0.147038,0.731498,0.857601,-0.287851,-0.426160,0.642445,-0.013672,0.766167,-0.100528,0.275307,-0.956053,0.750603,0.392590,-0.531419,0.989441,-0.098910,0.105838,-0.044679,0.254677,-0.965972,0.036073,0.225227,-0.973632,0.000244,0.999969,0.001587,0.490524,0.718619,0.492843,0.058138,0.396954,-0.915983,-0.510880,-0.006592,0.859615,0.629322,-0.102329,0.770348,-0.949889,-0.284494,0.129368,0.727073,0.648976,-0.223945,-0.188879,-0.046907,0.980865,0.361614,0.138005,-0.922025,0.279794,0.403088,-0.871303,0.850856,-0.438948,-0.288644,-0.684500,0.122318,0.718619,-0.956114,-0.285989,0.063448,0.901730,0.249062,0.353252,-0.494522,-0.342753,-0.798700,0.648701,-0.225867,-0.726737,0.314035,0.314646,0.895749,0.487442,-0.604785,-0.629749,-0.148228,-0.665914,-0.731132,0.522233,0.847011,0.098910,-0.270455,0.962706,0.006256,-0.306925,0.946348,0.100772,-0.458907,0.255470,0.850917,0.478195,0.088961,-0.873714,-0.071322,-0.233070,0.969817,0.864528,0.295572,0.406446,0.316477,0.852016,-0.416944,0.771905,0.600391,0.208899,0.942503,-0.048647,0.330546,0.017365,0.484848,-0.874386,-0.715384,-0.272866,-0.643208,-0.097476,0.807886,-0.581195,0.003204,-0.504135,0.863582,0.001160,-0.055696,-0.998444,0.576922,-0.270455,-0.770684,-0.692251,0.471145,0.546556,0.986419,-0.117893,-0.114322,0.829829,-0.315073,-0.460494,-0.280679,0.229804,0.931852,-0.115055,0.991394,-0.062075,0.932249,0.360149,0.034639,-0.747948,-0.440321,0.496628,0.796747,-0.120548,-0.592151,-0.917112,-0.318003,0.240303,0.565142,-0.518906,0.641346,0.898404,-0.402783,0.174841,0.504227,-0.070711,0.860653,0.955718,-0.041505,-0.291299,0.739189,-0.431013,-0.517472,-0.220862,-0.453505,-0.863430,-0.726218,0.675619,0.126896,0.943663,0.064272,0.324534,-0.625385,0.698904,-0.346965,0.289804,-0.353679,-0.889309,0.291360,-0.350932,-0.889889,0.643117,-0.283059,-0.711509,-0.268715,0.181555,-0.945921,-0.173345,0.174352,-0.969298,0.003845,0.524461,-0.851405,-0.379620,0.915983,0.129612,-0.549394,0.820307,0.158757,-0.592334,0.759209,0.269631,0.589984,0.417432,-0.691092,0.852138,0.454512,0.259285,0.486312,0.555528,-0.674429,-0.817591,0.078524,0.570360,-0.371319,-0.058962,-0.926603,-0.160283,-0.135472,-0.977722,0.556749,0.725242,-0.404950,0.072878,0.401288,0.913022,-0.746117,0.133488,-0.652242,0.680929,-0.081545,-0.727744,0.776788,-0.180212,-0.603381,0.079257,0.581439,-0.809687,-0.425001,-0.476547,-0.769555,0.371075,-0.142430,0.917600,-0.452681,-0.353557,-0.818567,-0.707846,-0.134098,-0.693472,-0.607013,-0.263741,0.749596,0.653371,-0.253883,-0.713157,0.237648,-0.811182,0.534288,-0.049074,-0.752525,0.656697,-0.066378,-0.362651,0.929533,0.943541,0.232704,-0.235633,0.853908,0.504135,0.128910,0.749992,0.634907,-0.185430,-0.972900,-0.113437,0.201361,-0.658223,0.256203,0.707846,-0.485458,-0.007965,0.874203,-0.864009,-0.385205,-0.324137,-0.927396,-0.307260,0.213233,0.646168,-0.762658,0.027192,-0.433912,0.086947,0.896725,-0.393811,0.018799,0.918973,-0.945799,0.159032,0.283059,-0.207251,-0.482864,-0.850795,-0.169317,0.347667,0.922178,-0.237770,0.969604,0.057558,-0.618366,0.565539,0.545640,-0.089175,0.991211,0.097385,-0.446669,-0.081942,0.890896,-0.544359,-0.059847,0.836695,-0.409894,0.094394,0.907224,-0.585803,-0.152135,-0.796014,-0.104068,0.909574,-0.402234,-0.858669,0.338115,0.385144,0.020844,0.801447,-0.597674,-0.692770,-0.288766,-0.660787,-0.375225,-0.334452,-0.864467,0.832148,0.286355,-0.474868,-0.683920,-0.122166,0.719230,-0.574969,0.347545,0.740654,0.097446,-0.381329,0.919279,-0.198828,0.089450,0.975921,-0.114017,-0.987732,0.106510,0.302225,-0.555650,-0.774499,0.477004,-0.399152,-0.783013,-0.180486,0.978912,0.095370,-0.003571,0.218635,-0.975768,0.211249,0.966369,-0.146580,-0.636128,0.153874,0.756035,0.663472,-0.109226,0.740165,0.558061,-0.129460,0.819605,0.411206,-0.184454,0.892666,0.546617,0.721549,-0.424909,0.465957,0.772271,-0.431806,0.334971,-0.906735,0.256081,-0.313517,-0.822382,0.474685,-0.960265,0.206854,0.187170,0.872219,-0.418531,0.253029,0.169591,0.066256,0.983276,-0.703024,0.438704,0.559648,-0.790735,0.591235,0.158422,-0.111026,0.166448,-0.979766,0.211982,0.418561,0.883084,-0.111362,-0.011170,0.993713,0.869045,-0.029298,-0.493820,0.854183,-0.483230,0.191900,0.544145,0.002106,0.838954,0.179968,0.647145,0.740806,0.946959,0.092593,-0.307688,0.904355,-0.027985,-0.425855,-0.774560,0.588610,0.231422,-0.779015,0.607044,0.156835,-0.020905,0.989013,-0.146306,0.042665,0.604938,0.795099,-0.375469,-0.755364,0.537004,-0.381054,-0.864895,0.326640,-0.316416,0.455245,-0.832209,-0.435438,0.134251,0.890133,-0.818903,-0.028840,-0.573138,0.011017,-0.472243,0.881375,-0.324442,0.839778,-0.435316,-0.570757,0.099521,0.815058,0.259377,0.028993,-0.965331,0.315195,0.944090,0.096469,-0.833583,0.323160,0.447951,-0.901089,0.187750,0.390851,0.336497,0.157384,-0.928434,0.198004,0.238563,-0.950713,-0.856533,-0.239479,-0.457106,-0.089816,0.789483,-0.607135,-0.634816,0.027711,0.772118,0.237587,-0.416333,-0.877590,-0.700705,-0.326792,-0.634175,-0.494888,-0.317331,-0.808893,0.792901,0.458113,0.401746,0.142430,0.954802,0.260811,-0.058473,0.241981,-0.968505,-0.172430,0.437635,0.882443,-0.367931,0.146367,-0.918241,-0.991791,0.026948,0.124973,-0.629871,0.552629,-0.545732,-0.716544,-0.245125,-0.653005,0.439924,0.572375,0.691946,-0.587420,0.507065,0.630696,0.182836,-0.217505,-0.958770,-0.904782,-0.311808,0.290048,-0.826624,0.381939,-0.413221,-0.975585,-0.166692,-0.142796,-0.968719,0.092654,0.230110,0.300729,-0.124973,0.945463,-0.182836,0.162389,0.969604,0.418836,-0.404767,-0.812830,-0.888821,-0.425001,0.171209,-0.112491,-0.985748,0.125034,-0.006226,-0.094058,0.995544,0.760613,0.569689,0.311258,-0.695029,-0.320292,-0.643666,0.941252,0.061586,0.331980,0.594378,0.365307,0.716392,-0.824732,-0.546922,-0.143742,0.724906,0.543413,0.423292,0.960204,-0.269143,-0.074252,-0.638508,-0.681051,0.358379,-0.191504,0.977874,0.083804,-0.881619,0.267190,-0.389019,-0.802728,-0.090732,0.589373,-0.974181,0.095859,0.204291,-0.959166,-0.044740,0.279153,-0.063509,-0.749290,0.659139,0.947233,-0.288003,0.140721,0.892026,-0.202795,0.403851,0.701437,0.676809,0.223304,-0.068941,0.993225,0.093356,0.522538,0.329691,0.786248,0.131779,-0.263344,-0.955626,-0.633717,-0.057222,-0.771416,-0.934019,0.119510,0.336558,-0.910489,0.150060,0.385296,0.926939,0.185461,-0.326121,0.899472,-0.434675,0.044343,0.184362,-0.458296,-0.869442,0.620533,0.707053,-0.339061,0.227180,0.964782,0.132450,0.956755,-0.107303,0.270333,0.517624,0.842280,0.150243,0.030793,0.151585,0.987945,0.011231,0.551836,0.833857,-0.064760,0.404981,0.912015,0.350230,-0.394726,0.849422,-0.822687,0.562975,-0.078524,0.230537,0.655660,0.718955,-0.333445,-0.202094,-0.920835,-0.250496,0.178289,-0.951537,-0.458510,-0.318094,-0.829768,0.944090,-0.121189,-0.306528,-0.925779,0.109012,0.361919,-0.944762,-0.327677,0.002686,0.730583,-0.543260,0.413556,0.857204,0.036836,-0.513627,0.961974,0.081301,-0.260659,-0.693014,0.719871,-0.038362,-0.800409,-0.047365,-0.597552,0.151372,0.959471,0.237648,0.412702,0.721397,-0.556108,0.183905,0.254860,-0.949309,0.820795,0.177801,-0.542802,0.647633,0.280984,0.708213,0.976928,0.008240,0.213263,0.981323,-0.071657,0.178442,-0.063082,0.596210,-0.800317,-0.714927,0.673544,0.187567,-0.356059,0.440535,0.824091,-0.824915,0.355998,0.439009,-0.667226,0.461470,0.584613,0.852596,-0.159368,0.497635,0.331339,0.374950,-0.865780,0.080874,0.717093,-0.692251,0.509964,-0.032655,0.859554,-0.534593,0.133213,-0.834529,-0.613605,0.650899,-0.446944,-0.911954,-0.018006,0.409833,0.381054,0.801111,0.461501,0.080630,-0.061037,0.994842,0.288583,0.312052,0.905148,0.785546,0.615375,-0.064760,-0.619800,0.223212,-0.752312,0.974090,-0.215064,0.069887,0.912381,-0.340159,-0.227638,-0.997467,-0.047914,-0.052431,-0.499893,-0.146428,-0.853603,0.967742,-0.156590,-0.197302,0.772454,0.444075,0.453963,-0.129002,0.569353,0.811884,-0.987396,-0.136387,-0.079928,0.092807,-0.012604,-0.995575,-0.251686,-0.474837,-0.843287,0.359447,0.540971,0.760308,0.421155,0.904019,0.072939,0.267647,-0.422681,-0.865841,-0.065065,0.989654,0.127781,-0.530808,-0.620716,-0.576983,-0.210974,-0.290475,-0.933317,-0.137822,0.065737,-0.988250,-0.042421,-0.432905,-0.900418,0.033326,0.196142,0.979980,-0.348888,0.090030,-0.932798,0.245979,-0.393963,-0.885586,-0.928526,0.108768,-0.354961,-0.197211,0.945006,0.260781,0.424055,0.901273,-0.088382,-0.105350,0.767144,0.632710,0.578143,-0.272378,-0.769097,-0.948698,-0.267373,-0.168615,-0.738731,-0.021180,-0.673635,-0.833094,0.392529,0.389630,-0.956145,-0.157201,-0.247078,0.891018,-0.337870,-0.303171,-0.403912,-0.446883,-0.798181,0.019349,0.180425,0.983367,0.984436,-0.012116,0.175298,-0.450056,-0.101657,0.887173,-0.730155,0.680471,-0.061617,0.081668,-0.446303,-0.891110,-0.719657,-0.147313,-0.678487,0.364086,-0.379315,-0.850612,0.830714,-0.435591,-0.346568,-0.106113,0.608936,0.786065,-0.126682,0.635548,0.761559,0.936186,0.142186,0.321360,0.863094,-0.249763,0.438917,-0.464644,0.209113,0.860439,0.240303,-0.024323,0.970367,-0.423383,0.401074,0.812311,-0.747185,-0.341105,-0.570360,0.002319,-0.007721,-0.999939,0.087832,0.041566,0.995239,0.037172,-0.403241,-0.914304,-0.930845,0.200110,0.305673,-0.876858,0.391278,0.279214,-0.147221,-0.049196,-0.987854,-0.070254,0.996155,0.052065,0.359722,0.863063,0.354472,-0.569597,0.641804,0.513382,-0.115513,-0.372906,-0.920621,-0.455947,-0.264504,-0.849788,-0.020722,-0.932157,-0.361431,0.519974,-0.247353,-0.817560,0.263283,-0.343730,-0.901395,-0.168737,0.547380,-0.819666,-0.403790,0.903592,-0.142949,0.511765,-0.377422,-0.771752,0.448683,0.863521,0.230171,-0.675314,-0.551408,0.489761,-0.195288,0.564714,0.801813,0.462874,-0.400464,-0.790765,0.447249,-0.237678,-0.862239,0.475265,0.211768,-0.853938,0.697256,-0.479995,-0.532365,0.316568,0.882992,0.346477,-0.564653,-0.729179,-0.386547,0.204779,0.977660,0.046999,-0.203406,0.899472,0.386731,0.933714,0.143132,0.328074,0.307382,-0.466018,-0.829646,0.109409,0.953490,0.280801,-0.484329,-0.147771,-0.862300,-0.256142,0.703299,0.663137,-0.461013,-0.453536,-0.762719,-0.056063,0.372692,-0.926237,-0.732017,-0.355937,-0.580889,0.322428,0.856716,-0.402539,-0.439436,-0.278664,-0.853938,-0.500015,-0.487289,-0.715873,0.596332,-0.110721,0.795038,0.975494,-0.219825,0.005432,-0.186438,0.951811,-0.243416,0.087771,-0.987487,0.130924,-0.675130,0.372051,0.636982,0.113559,0.529740,0.840510,-0.580187,0.780389,-0.233100,-0.509751,0.819727,-0.261055,-0.241737,0.944151,0.223792,-0.337870,0.934111,0.115085,-0.426344,-0.534227,-0.729911,-0.103671,0.979400,0.173101,-0.273965,0.946623,0.169683,-0.282144,0.939940,0.192053,-0.256722,0.950530,0.174780,-0.250618,0.957884,0.140049,-0.117222,0.975799,0.184484,-0.294748,0.953154,0.067721,-0.322489,0.922269,0.212989,-0.484695,0.859127,0.164159,-0.626637,0.736625,0.254280,-0.174230,0.955473,0.238014,0.639088,0.760369,0.115452,-0.333018,-0.328074,-0.883969,-0.938322,0.171087,-0.300363,-0.416059,0.893674,0.167882,-0.239479,0.966674,0.090457,0.974120,-0.005280,0.225837,0.342723,-0.449416,0.824946,-0.338542,0.928251,0.153905,-0.314920,0.878658,0.358806,-0.221931,0.927671,0.300241,-0.111362,0.950468,0.290078,-0.341624,0.912320,0.225684,0.214118,0.958647,0.187384,0.616840,0.563280,-0.549699,-0.295663,0.931059,0.213752,-0.184271,0.940001,0.287057,-0.425367,0.778283,0.461806,-0.240761,0.871181,0.427808,-0.025300,0.910123,0.413495,-0.206183,0.900113,0.383740,-0.074282,0.889828,0.450148,-0.297311,0.848628,0.437483,-0.239021,0.904050,0.354289,-0.320078,0.898038,0.301675,-0.354686,0.850093,0.389233,-0.482162,0.798914,0.359447,-0.408826,0.798456,0.441908,0.434797,0.197729,0.878536,-0.325571,0.926695,0.187536,-0.284585,0.879452,0.381451,-0.540635,0.805048,0.244026,0.270608,-0.242042,-0.931730,0.656423,-0.382946,-0.649953,0.554277,-0.324686,-0.766350,0.589099,-0.376354,-0.715049,-0.251381,0.964263,0.083407,-0.431166,0.889157,0.153203,-0.525529,0.482376,-0.700797,-0.071352,0.913846,0.399670,-0.544450,0.674276,0.498856,-0.222297,0.907987,0.355113,-0.362651,0.820185,0.442427,0.120823,0.863277,0.490005,-0.200354,0.741478,0.640309,-0.290201,0.722465,0.627522,-0.199194,0.904141,0.377911,-0.046602,0.930998,0.362011,-0.203742,0.825556,0.526200,-0.583300,0.604968,0.541948,-0.021149,0.725791,-0.687582,0.023499,0.814020,0.580309,-0.074526,0.765038,0.639637,-0.213660,0.782647,0.584613,-0.113193,0.803278,0.584735,-0.228431,0.770867,0.594592,-0.385540,0.689932,0.612629,-0.508316,0.659871,0.553270,-0.612598,0.476363,0.630696,-0.310526,0.805872,0.504074,-0.417249,0.689566,0.591906,-0.664663,0.442549,0.601917,-0.685568,0.414808,0.598224,-0.443739,0.723624,0.528611,-0.421552,0.766900,0.483871,-0.627949,0.606159,0.488021,-0.414472,0.782708,0.464248,-0.135563,0.983093,0.122959,-0.332896,0.807978,0.486129,-0.749229,0.447798,0.487930,-0.468032,0.862392,0.192724,-0.740745,0.657338,0.138401,-0.365215,0.918455,0.151708,-0.612781,0.750847,0.246406,-0.326212,0.934446,0.142582,-0.297006,0.946013,0.129551,-0.595233,0.789697,0.148412,-0.998230,-0.058535,0.009827,-0.837581,-0.239509,0.490982,-0.599109,0.796960,0.076510,-0.395306,0.911527,0.113224,-0.433058,0.895108,0.105838,-0.319834,0.928922,0.186499,-0.504807,0.856777,0.105075,-0.466323,0.868862,0.166051,0.572741,0.234748,0.785394,-0.910733,0.065584,0.407666,-0.592303,-0.547075,-0.591479,-0.424207,0.903684,0.058138,-0.464431,0.842830,0.271828,0.160894,-0.407270,-0.899014,-0.295144,0.932432,0.208380,-0.598712,0.777154,0.193640,-0.597858,0.765648,0.237281,0.138340,0.243385,-0.959990,-0.328471,0.879208,0.345012,-0.378399,0.827570,0.414624,-0.549791,0.748039,0.371685,-0.536424,0.696219,0.476913,-0.231483,0.907743,0.349834,-0.656331,0.642506,0.395398,-0.618397,0.697439,0.362072,-0.246864,0.888638,0.386425,-0.344310,0.889553,0.300150,-0.239326,0.932676,0.269784,-0.864925,0.363506,-0.346019,-0.668752,0.688772,0.279885,-0.627827,0.750633,0.205756,-0.541765,0.758934,0.361187,-0.658254,0.690481,0.299814,-0.230811,0.953185,0.195288,0.860164,-0.053224,0.507187,-0.635945,0.732536,0.242714,-0.267434,0.810266,0.521439,-0.484420,0.701468,0.522691,-0.507126,0.733299,0.452834,-0.626789,0.562426,0.539201,-0.457320,0.765069,0.453291,-0.560411,0.650563,0.512497,-0.281350,0.815912,0.505051,0.382672,0.753441,0.534623,-0.328349,0.802332,0.498398,-0.154912,0.877285,0.454237,-0.149022,0.880062,0.450789,-0.615192,0.489334,0.618091,0.376232,-0.371136,0.848903,-0.910916,0.408307,-0.058779,-0.418104,0.729911,0.540727,-0.494217,0.714377,0.495315,-0.563982,0.595172,0.572436,-0.508774,0.689871,0.514969,-0.587512,0.677572,0.442335,-0.600787,0.678671,0.422346,-0.663442,0.536485,0.521500,0.376507,0.922910,0.080111,-0.471084,0.751793,0.461318,0.073916,0.412885,-0.907773,-0.887906,0.278848,0.365825,0.299539,-0.364086,-0.881863,-0.805841,0.574328,0.144047,-0.740532,0.664174,0.102237,-0.736564,0.663686,0.130039,-0.358135,-0.203803,-0.911130,-0.820551,0.557176,0.127293,-0.132298,0.908994,-0.395215,-0.794031,0.602619,0.079592,-0.963713,-0.078921,0.254952,0.130680,-0.519333,-0.844478,-0.909268,0.161199,0.383648,-0.933042,0.353618,0.065798,-0.791253,0.596545,0.134251,-0.875881,0.481491,0.031068,0.249519,0.349406,-0.903104,-0.724113,0.664144,0.185858,-0.840571,0.534898,0.085269,-0.351268,0.192267,-0.916288,-0.410565,-0.184576,0.892941,0.622425,-0.358318,0.695791,0.279000,0.878506,0.387738,0.757897,0.084811,0.646809,0.811029,0.096042,0.577013,-0.085788,-0.718894,0.689779,-0.803674,0.552385,0.221229,-0.746239,0.619037,0.244667,0.060549,-0.263009,-0.962889,-0.836634,0.493210,0.238136,-0.751976,0.622608,0.216346,-0.872494,0.405560,0.272469,-0.905820,0.341533,0.250649,-0.785791,0.456435,0.417280,-0.711325,0.639637,0.291238,-0.750084,0.592486,0.293741,-0.726676,0.558916,0.399396,-0.862423,0.424543,0.275582,-0.885525,0.351238,0.304025,-0.887997,0.308817,0.340648,-0.748833,0.534837,-0.391308,-0.947356,0.251106,0.198584,-0.873562,0.360820,0.326579,-0.951720,0.213569,0.220435,-0.131291,-0.386456,-0.912900,-0.959593,0.167272,0.226234,0.430860,0.126469,0.893490,0.258705,0.381451,0.887417,-0.737419,-0.352672,-0.576006,-0.108921,0.441084,-0.890805,-0.663045,0.626362,0.409894,-0.679647,0.569292,0.462539,0.929868,0.074648,0.360179,0.579516,0.306955,-0.754906,-0.611927,0.680380,0.403211,-0.798578,0.393994,0.454939,-0.879116,0.233589,0.415387,-0.787439,0.369396,0.493423,-0.920927,0.190802,0.339793,-0.836177,0.374920,0.400220,-0.932463,0.034364,0.359569,-0.844752,0.391522,0.364757,0.140385,0.969909,0.198798,-0.937071,0.122990,0.326701,-0.958037,0.052522,0.281686,-0.956450,-0.094760,0.276040,-0.942839,-0.212470,0.256600,-0.949736,0.018586,0.312387,-0.906949,-0.203223,0.368938,-0.957091,0.248360,0.149083,-0.954436,0.115909,0.274911,-0.908292,-0.132817,0.396619,-0.752831,0.058351,0.655599,-0.959105,-0.021760,0.282205,-0.952910,-0.021271,0.302469,-0.937315,0.118076,0.327830,-0.996033,0.000488,0.088900,-0.988678,-0.021577,0.148350,-0.019349,-0.296487,0.954802,-0.956450,0.049684,0.287606,-0.930174,0.159673,0.330515,-0.971129,0.214911,0.103244,-0.911130,0.077883,0.404675,0.043001,-0.745323,0.665273,0.074831,-0.777367,0.624531,-0.968383,0.117985,0.219794,-0.960234,0.087252,0.265114,-0.913755,0.002228,0.406232,-0.238594,-0.136357,-0.961486,-0.927183,-0.040925,0.372326,-0.210273,0.637226,0.741417,-0.921079,0.080325,0.380963,-0.910001,-0.068117,0.408948,-0.971007,-0.080721,-0.224921,-0.943327,0.084933,0.320750,-0.483291,0.734428,0.476455,0.011658,0.615711,-0.787866,-0.816340,-0.401196,0.415418,-0.883450,-0.066012,0.463820,-0.890225,0.232795,0.391522,0.981780,-0.117801,0.148961,-0.249428,0.309549,-0.917570,-0.407178,0.417035,-0.812555,0.053316,0.495865,-0.866726,-0.824976,-0.399548,-0.399670,-0.987121,-0.155797,0.035554,0.568194,0.569262,-0.594195,-0.798425,0.228462,0.557024,0.334758,0.143864,0.931242,0.451766,0.253945,0.855190,0.994507,-0.092105,0.049501,-0.817438,-0.042116,0.574419,-0.844142,0.005036,0.536058,0.838313,0.509873,-0.192907,-0.883480,-0.267220,0.384686,0.914762,0.162786,0.369671,-0.588092,-0.698233,0.408155,0.437757,0.699454,0.564867,-0.634205,-0.667043,0.390851,-0.563921,-0.715873,0.411634,0.757225,-0.505692,-0.413312,-0.507614,-0.723746,0.467391,-0.464644,-0.732841,0.496994,-0.472365,-0.749718,0.463393,-0.516037,-0.765374,0.384503,-0.940458,0.241188,0.239418,-0.378399,-0.732017,0.566485,-0.916044,0.315317,0.247780,-0.409101,0.680258,0.608142,0.155339,-0.122868,0.980163,-0.932554,-0.040162,0.358745,-0.788965,-0.597156,-0.144597,-0.227790,-0.731101,0.643055,-0.311197,-0.714560,0.626514,0.377789,0.685995,0.621815,-0.456252,-0.343150,-0.820978,-0.793878,0.607959,-0.009461,0.110538,-0.469222,0.876125,-0.245064,-0.535569,0.808130,0.674490,0.700339,-0.233558,-0.450484,0.621540,-0.640858,-0.165807,0.555101,0.815058,0.362560,0.917142,-0.165410,0.274026,0.125370,0.953490,-0.577990,0.064547,0.813440,-0.644765,-0.676260,0.356243,0.632069,0.689566,-0.353404,0.445723,-0.200415,-0.872433,0.968657,-0.179357,-0.171697,-0.897549,0.245766,0.365978,0.624714,-0.252358,-0.738914,0.551012,-0.127659,-0.824641,-0.412336,0.646931,0.641407,-0.316172,-0.045839,0.947569,-0.251442,-0.050752,0.966521,-0.512680,0.179479,0.839595,-0.346080,0.934660,0.081271,0.574084,-0.323435,-0.752159,-0.962645,0.031617,0.268777,-0.247780,0.957945,0.144658,-0.391797,0.701010,0.595843,-0.441725,0.665029,0.602130,-0.424604,0.612629,0.666585,-0.452406,0.703116,0.548540,-0.357128,0.704184,0.613636,-0.322733,0.807001,0.494522,-0.598254,0.593860,0.537919,-0.522599,0.695639,0.492874,-0.553880,0.615131,0.561052,-0.473952,0.680197,0.559160,-0.605487,0.542253,0.582476,-0.796777,0.358440,0.486404,-0.492691,0.688711,0.531877,-0.441664,0.740623,0.506333,-0.488205,0.636982,0.596545,-0.160283,0.832728,0.529923,-0.135624,0.791192,0.596301,-0.318979,0.724693,0.610767,-0.516007,0.399762,0.757561,-0.656301,0.381664,0.650807,-0.325053,0.689200,0.647542,-0.440382,0.594440,0.672811,-0.453810,0.575549,0.680258,-0.420118,0.491867,0.762566,-0.332316,0.664571,0.669240,-0.212622,0.759545,0.614673,-0.398358,0.700064,0.592578,0.010437,0.144261,-0.989471,-0.428327,-0.159886,0.889340,-0.551805,0.189611,0.812098,-0.668233,-0.049654,0.742241,-0.720573,-0.358531,0.593432,-0.905606,-0.111698,0.409070,-0.330485,-0.379101,-0.864315,-0.190588,-0.741386,0.643391,-0.279702,0.484603,0.828791,-0.970214,0.058718,0.234962,-0.640828,-0.696005,0.323832,0.212012,0.086398,-0.973418,-0.030366,0.988128,0.150395,-0.056764,0.989593,0.132176,0.143864,0.974639,0.171300,-0.027680,0.993530,0.110080,-0.087832,0.981872,0.167943,-0.033387,0.982513,0.183142,-0.233314,0.959624,0.156896,-0.539659,0.833338,0.119449,-0.345683,0.909452,0.230995,-0.312632,0.944090,0.104312,-0.499832,0.836055,0.226203,-0.541826,0.810144,0.223701,-0.407605,0.877865,0.251320,-0.535722,0.831385,0.147496,-0.334483,0.931364,0.143712,-0.386761,0.876217,0.287423,-0.432051,0.886502,0.165471,-0.045167,0.967132,0.250191,0.033387,0.938505,0.343608,-0.174841,0.963683,0.201727,-0.076357,0.969207,0.234016,-0.042756,0.959899,0.276955,-0.041108,0.911740,0.408673,0.055757,0.913450,0.403088,0.337413,0.887387,0.314066,0.024537,0.911679,0.410108,-0.075747,0.947722,0.309915,-0.241737,0.865230,0.439192,-0.219916,0.875759,0.429670,-0.317759,0.852016,0.415967,-0.214759,0.920347,0.326762,-0.168554,0.939512,0.298105,-0.045625,0.859767,0.508591,-0.277779,0.817499,0.504471,-0.230628,0.564928,0.792230,-0.370983,0.617359,0.693686,-0.416364,0.628071,0.657338,-0.463363,0.616535,0.636494,-0.195166,0.789697,0.581591,0.004456,0.785882,0.618305,-0.053499,0.755577,0.652821,-0.264351,0.642872,0.718863,-0.316202,0.717887,0.620167,-0.413129,0.651631,0.636128,-0.371838,0.570544,0.732231,-0.554521,0.645283,0.525437,-0.195502,0.841823,0.503037,0.098239,0.507492,0.856014,-0.011322,0.615833,0.787774,-0.005737,0.645405,0.763787,-0.228919,0.525925,0.819117,-0.081240,0.541520,0.836726,0.145116,0.606250,0.781915,-0.470565,0.492325,0.732200,0.020936,0.669424,0.742546,0.126530,0.742332,0.657949,-0.178594,0.706320,0.684957,-0.218207,0.489547,0.844203,-0.335704,0.647877,0.683737,-0.172979,0.630146,0.756920,-0.199622,0.588305,0.783593,-0.536271,0.776421,-0.330943,-0.250893,-0.967895,-0.014344,-0.457808,0.680990,0.571490,-0.430464,0.872433,0.231361,-0.412458,0.867855,0.276894,-0.465712,0.738914,0.486862,-0.636372,0.687674,0.349437,-0.633717,0.520402,0.572283,-0.597491,0.608509,0.522172,-0.664754,0.556169,0.498703,-0.672353,0.537004,0.509445,-0.586108,0.588824,0.556505,-0.765130,0.423902,0.484603,-0.714469,0.581744,0.388653,-0.583514,0.591388,0.556536,-0.716422,0.645650,0.264229,-0.412152,0.895047,0.170232,-0.541307,0.815119,0.206183,-0.764916,0.595355,0.245735,-0.614917,0.785730,0.066805,-0.409955,0.906766,0.098331,-0.636708,0.755913,0.152226,-0.532456,0.837611,0.121799,-0.473342,0.880306,0.031281,-0.350749,0.934812,0.055544,-0.241035,0.967040,0.081759,-0.544572,0.826411,0.142979,-0.500443,0.865108,-0.033326,-0.606555,-0.727928,0.319590,0.141667,0.034700,0.989288,-0.179998,0.911039,-0.370922,-0.425703,-0.370952,0.825312,-0.635792,0.356120,0.684774,-0.542985,-0.024171,0.839381,-0.400678,-0.315989,0.859981,-0.659108,0.101291,0.745170,-0.593219,0.206824,0.778008,-0.614795,0.581530,0.532731,-0.714774,0.536760,0.448256,-0.582018,0.480697,0.655843,-0.624104,0.586047,0.516739,-0.633503,0.539933,0.554155,-0.649312,0.485916,0.585009,-0.560045,0.631336,0.536393,-0.640736,0.587878,0.493789,-0.697684,0.597949,0.394513,-0.588824,0.697867,0.407727,-0.603717,0.597736,0.527451,-0.444227,0.677633,0.586016,-0.531846,0.715812,0.452467,-0.963530,0.052492,0.262337], + "normals": [0.15912,-0.40162,0.90185,0.24595,-0.14588,0.95822,0.17569,-0.41499,0.89267,0.8066,0.34523,0.47972,0.70083,0.48808,0.52016,0.84539,0.41194,0.34001,-0.61632,-0.72417,0.30928,-0.66305,-0.67028,0.3332,-0.66185,-0.69857,0.27186,-0.055849,0.99121,0.11988,0.010926,0.99377,0.11084,-0.035188,0.9968,-0.071474,0.96783,0.12027,0.22089,0.93542,0.13181,0.32798,0.99075,-0.052217,0.125,0.18061,-0.53829,-0.82315,0.10975,-0.56917,-0.81484,0.30686,-0.55379,-0.77401,-0.094089,-0.38621,0.91757,-0.2721,-0.23511,0.93307,-0.18485,-0.53056,0.8272,-0.12992,-0.60677,0.78417,-0.38902,-0.47002,0.79226,-0.15735,-0.53862,0.82769,0.51643,-0.29658,-0.80331,0.38334,-0.032289,-0.92303,0.62032,-0.40281,-0.67299,0.64962,-0.32576,-0.68691,0.85128,-0.2898,-0.43733,0.4933,-0.65093,-0.57695,0.18467,-0.29292,-0.93811,0.21116,-0.28752,-0.93417,0.2895,-0.185,-0.93912,-0.1439,0.28785,-0.94678,0.013062,0.32759,-0.9447,-0.25404,0.32249,-0.9118,0.80294,-0.22901,-0.55028,0.92129,-0.25855,0.29035,0.97714,-0.20679,0.049135,0.65313,-0.46764,-0.59557,0.66909,-0.27964,-0.68853,0.71227,-0.26142,-0.65139,0.43718,-0.37562,0.81713,0.4445,-0.31413,0.83886,0.52126,-0.3549,0.77609,-0.12659,0.79412,-0.59441,-0.25742,0.77178,-0.58141,-0.29591,0.67629,-0.67455,-0.4243,0.87701,0.22535,-0.36583,0.90619,0.2121,-0.39567,0.90167,0.17435,0.73818,-0.61202,0.2837,0.87466,-0.3563,0.32859,0.90558,-0.14545,0.39845,-0.46974,-0.19068,-0.86193,-0.51479,-0.24406,-0.8218,-0.65529,-0.27635,-0.70296,0.92053,-0.38954,0.028962,0.89267,-0.44844,0.044862,0.8439,-0.46626,0.2653,0.23826,-0.27397,-0.93173,0.22923,-0.3289,-0.9161,0.34519,-0.31468,-0.88418,0.7131,-0.30738,-0.63006,-0.3553,-0.62993,0.69057,-0.14798,-0.70287,0.69573,-0.69793,-0.27104,0.66286,-0.038331,0.20579,0.97781,0.017121,0.33369,0.9425,-0.036592,0.34556,0.93765,0.84814,-0.38218,-0.36683,0.69704,-0.52535,-0.48793,0.25852,0.94137,-0.21662,0.17151,0.94409,-0.28153,0.35917,0.91928,-0.1608,0.43922,0.82244,-0.36143,0.34098,0.87088,-0.35389,0.38624,0.88958,-0.24369,0.90432,-0.012726,0.42662,0.88116,0.049776,0.47017,0.89349,0.16611,0.41716,-0.53957,-0.15622,-0.8273,-0.40013,-0.33976,-0.85113,-0.4229,-0.35182,-0.83508,-0.48918,-0.3516,-0.79815,-0.4753,-0.2787,-0.8345,-0.49773,0.27769,0.82165,-0.54051,0.21744,0.81271,-0.55946,0.29301,0.77529,0.18116,0.80432,-0.56584,0.44417,0.73534,-0.5118,0.29948,0.81985,-0.48793,0.46513,-0.78436,0.41035,0.24867,-0.87387,0.41771,0.28022,-0.88659,0.36796,0.64461,-0.18079,0.74279,0.76632,-0.19263,0.61287,0.65279,-0.27995,0.70388,-0.089785,0.9866,0.13617,-0.10382,0.92715,0.36,-0.24399,0.95883,0.14524,0.60549,-0.71029,-0.35896,0.7886,-0.39683,-0.46968,0.86142,-0.35218,-0.36592,-0.829,-0.12653,0.54466,-0.65932,-0.11631,0.74279,-0.84899,0.28257,0.44643,0.65111,-0.29868,-0.69771,0.63393,-0.42833,-0.64391,0.35203,-0.43681,-0.82778,0.94879,-0.17808,-0.26081,0.62505,-0.65834,0.41932,0.62902,-0.70199,0.33396,0.58827,-0.74401,0.31678,0.073031,0.92273,0.37846,0.14606,0.88333,0.44536,0.28541,0.91183,0.29508,-0.08945,0.29139,-0.95239,-0.043397,0.19141,-0.98053,0.073397,0.19959,-0.97711,-0.050935,-0.23109,0.97159,-0.14908,-0.19306,0.96979,0.11792,-0.036256,0.99234,0.93503,-0.14048,0.32551,0.92047,-0.10022,0.3777,0.91131,-0.20359,0.35783,0.35105,0.49992,0.79168,0.24177,0.49324,0.8356,0.1728,0.37034,0.91266,-0.73339,0.27476,0.62178,-0.6577,0.40696,0.63384,-0.72875,0.23051,0.6448,0.72027,0.55693,0.4135,0.64531,0.54372,0.53655,0.59569,0.70916,0.37706,0.98627,0.072146,-0.14847,0.99771,-0.011139,0.066347,0.98358,0.17744,0.032136,-0.9447,0.16489,0.28336,-0.94275,0.021729,0.33274,-0.94549,0.16663,0.27973,0.74309,0.20704,0.63631,0.72195,0.054933,0.68972,0.86154,-0.17316,0.47722,-0.91574,0.1637,0.36686,-0.8988,0.35768,0.25339,-0.91256,0.33149,0.23933,0.95392,-0.020692,0.29929,0.95773,-0.096011,0.27113,0.85171,-0.27915,0.4434,-0.54143,-0.35395,0.76257,-0.44758,-0.4575,0.76833,-0.34965,-0.66216,0.66274,0.73211,0.20704,-0.64892,0.93945,-0.023804,-0.34184,0.8573,0.14148,-0.49498,0.4015,0.9147,0.045442,0.61876,0.78341,-0.057833,0.60292,0.78246,-0.15552,0.42073,-0.172,-0.89071,0.4948,-0.31761,-0.80886,0.48717,-0.27769,-0.82797,0.82131,0.41118,0.39537,0.75793,0.42497,0.49489,0.82632,0.20689,0.52379,-0.5829,0.53618,0.61046,-0.5396,0.6411,0.54567,-0.53752,0.67345,0.50743,-0.8504,0.1409,-0.50688,-0.8215,0.03769,-0.56893,-0.90729,0.19089,-0.37465,0.64541,0.43339,0.62892,0.69005,0.27253,0.67043,0.50157,0.33607,0.79714,0.9306,-0.36579,0.01236,0.93277,-0.36006,0.016938,0.91671,-0.39775,-0.037355,0.56407,0.45506,0.68899,0.54869,0.5389,0.63912,0.58418,0.51683,0.62578,0.70592,0.43501,-0.55895,0.43135,0.59066,-0.68194,0.64779,0.40245,-0.64681,0.90127,-0.43245,-0.02588,0.97842,-0.20655,0.001648,0.87439,-0.2866,-0.39146,0.12992,-0.35804,-0.92459,-0.014191,-0.40397,-0.91464,0.030488,-0.25858,-0.96548,-0.58751,-0.3835,0.71255,-0.61181,-0.45759,0.64516,-0.31123,-0.18488,0.93216,0.76571,-0.45045,-0.45906,0.72869,-0.50517,-0.46232,0.70846,-0.43104,-0.55879,-0.66881,-0.42686,-0.6086,-0.78185,-0.45964,-0.42116,-0.55202,-0.34382,-0.75961,0.87606,-0.36647,-0.31336,0.87945,-0.31553,-0.3563,0.819,-0.4077,-0.40373,-0.95166,0.027314,-0.30586,-0.88861,-0.18876,-0.41798,-0.79601,-0.005158,-0.60521,-0.059023,-0.20994,-0.97592,-0.049409,-0.44588,-0.8937,-0.1316,-0.31983,-0.93826,-0.18119,-0.27479,0.94424,0.048006,-0.33085,0.94244,-0.036744,-0.10465,0.99381,-0.48445,0.21909,0.84692,-0.43934,0.25095,0.86255,-0.59386,0.22364,0.77282,0.71972,-0.061708,0.69149,0.5443,-0.2411,0.80346,0.67193,-0.22474,0.70565,-0.94525,-0.31932,-0.06708,-0.96976,-0.23032,0.080447,-0.9556,-0.29429,0.014069,-0.73119,-0.18409,0.65682,0.067507,-0.6784,0.73156,-0.31278,-0.89319,0.32301,-0.40294,0.23359,-0.88488,-0.20057,0.29896,-0.93292,-0.50591,0.1803,-0.84353,0.22333,0.85977,-0.45924,0.17411,0.82742,-0.53386,0.40764,0.79214,-0.45418,0.962,-0.1233,0.24348,0.96173,-0.009125,0.27381,0.94949,-0.14478,0.27827,-0.63927,-0.40178,-0.65563,-0.57277,-0.43336,-0.69576,-0.67095,-0.55974,-0.48625,0.52211,-0.36815,-0.76931,0.39061,-0.49742,-0.77456,0.11567,-0.40687,-0.90609,-0.85748,-0.3795,-0.34736,-0.79046,-0.42213,-0.44374,-0.87967,-0.37535,-0.29197,-0.94757,-0.31034,-0.075869,-0.40281,-0.11219,0.90835,-0.83346,-0.21964,0.50704,-0.78466,-0.018464,0.61965,-0.75845,0.2935,0.58187,-0.83151,0.079257,0.54979,0.69494,0.19703,0.69152,0.64968,0.081729,0.75576,0.74453,0.15464,0.6494,0.96911,0.05063,-0.24125,0.95529,0.010254,-0.29539,0.99469,-0.049623,0.089938,0.41868,0.41105,0.80975,0.4135,0.47285,0.77807,0.42799,0.52046,0.73885,-0.33335,0.16279,0.92862,-0.94,-0.12473,0.31748,-0.95972,-0.27323,0.065127,-0.93988,-0.28663,-0.18558,-0.92691,-0.16346,-0.33775,-0.34886,-0.048372,-0.93591,-0.32179,-0.052553,-0.94534,-0.26954,-0.076724,-0.9599,0.026917,0.36769,-0.92953,0.27757,0.39131,-0.87738,0.29719,0.3155,-0.90115,-0.94507,-0.3235,0.046571,0.10837,-0.1308,-0.98544,-0.004852,-0.1157,-0.99326,0.069674,-0.063265,-0.99554,-0.69402,-0.30055,-0.65419,-0.72207,-0.36384,-0.58837,-0.67849,-0.46748,-0.56661,-0.73022,-0.10672,-0.6748,-0.57906,-0.18867,-0.79315,-0.57814,-0.12738,-0.8059,0.41114,-0.3936,-0.82217,0.19736,-0.45525,-0.86819,0.29878,-0.356,-0.8854,0.8927,-0.056642,0.44704,0.86306,-0.008179,0.50499,0.85397,-0.042482,0.51854,-0.61339,-0.279,0.73882,-0.39665,-0.40208,0.82519,-0.43889,-0.27839,0.8543,0.005737,0.4023,0.91546,0.09299,0.34422,0.93426,-0.063478,0.33711,0.9393,-0.42762,-0.38768,-0.81658,-0.38099,-0.30778,-0.87182,-0.4651,-0.49922,-0.73104,-0.50896,-0.25111,-0.82333,-0.52495,-0.20545,-0.82592,-0.49013,-0.2631,-0.83096,0.53465,-0.12647,-0.83554,0.63182,-0.15143,-0.76016,0.57045,-0.16474,-0.80459,0.67275,0.6064,-0.42384,-0.99167,0.10633,0.072573,-0.91635,0.022095,-0.3997,-0.63988,-0.33354,-0.69228,-0.52608,-0.36024,-0.77032,-0.39439,-0.50182,-0.7698,0.16086,0.62963,-0.76003,0.094668,0.59435,-0.79861,0.052278,0.48958,-0.87036,0.74114,0.10807,0.66256,0.4861,0.14411,0.8619,0.54631,-0.16401,0.82134,0.38823,-0.3267,-0.86169,0.3752,-0.22544,-0.89907,0.21452,-0.3018,-0.92892,0.30293,0.36143,0.8818,0.41725,0.42787,0.80175,0.34651,0.42747,0.83496,0.2584,-0.042817,-0.96509,0.40687,-0.002136,-0.91348,0.42732,-0.062838,-0.90188,-0.95697,-0.18305,0.22507,-0.9541,-0.026032,0.29832,-0.96744,-0.12568,0.21967,-0.97748,0.11484,0.17686,-0.96646,-0.026063,0.25541,-0.98492,-0.061769,0.1615,0.98367,-0.11905,0.13474,0.98105,-0.14951,0.12317,0.9143,-0.23292,0.33131,-0.48625,-0.52821,-0.69607,-0.58428,-0.43834,-0.68297,-0.41838,-0.42576,-0.80227,0.93512,-0.22395,0.27454,0.93738,-0.21299,0.27558,0.948,-0.25751,-0.18699,-0.51164,0.041993,0.85815,-0.49165,0.15058,0.85766,-0.39128,0.08417,0.91638,0.95791,-0.11576,0.26258,0.91009,-0.15473,0.38435,0.92209,-0.060121,0.38221,0.39702,0.18812,-0.89831,0.20283,0.10819,-0.9732,0.19034,0.13007,-0.97305,0.97226,-0.20453,-0.11332,0.98154,-0.17414,-0.078768,0.94842,-0.31089,-0.061403,-0.98373,-0.14457,0.10654,-0.98895,-0.054567,0.13776,-0.97971,-0.12058,0.15995,0.93353,0.017609,-0.35798,0.82763,0.055574,-0.55849,0.86081,0.19178,-0.47139,-0.91006,0.0824,0.40617,-0.78161,0.15836,0.60329,-0.81249,0.019715,0.5826,-0.86291,-0.14017,0.48546,-0.78234,0.013123,0.6227,-0.86499,-0.42927,0.25971,0.88937,0.11362,0.44276,0.88446,-0.15162,0.44124,0.8854,-0.11643,0.44993,-0.97913,0.009339,-0.20295,-0.98605,-0.12278,-0.11213,-0.86996,-0.15659,-0.46754,0.87692,0.059236,0.47694,0.85882,0.02353,0.51167,0.96866,-0.084628,0.23341,-0.13773,0.5779,-0.80438,-0.031465,0.71255,-0.70089,-0.089175,0.67357,-0.7337,0.75372,0.17777,0.63265,0.84985,-0.034028,0.52586,0.88,0.039888,0.47325,0.87259,-0.22861,0.43162,0.80331,-0.047914,0.59362,0.29118,-0.041688,0.95575,0.73888,-0.15522,0.65566,-0.42207,-0.42012,0.80334,0.65365,0.33711,0.67754,-0.95129,0.28599,0.11487,-0.99152,0.050172,0.11976,-0.97363,0.21204,0.083956,-0.1474,-0.56423,0.81231,-0.30274,-0.3582,0.88318,0.11393,-0.18668,0.97577,-0.028779,0.095767,0.99496,0.1785,0.16092,0.97067,0.91504,-0.28275,-0.28758,0.64843,-0.40095,-0.64708,0.7326,-0.1775,-0.65706,-0.17914,0.91436,-0.36302,-0.35807,0.91894,-0.16514,-0.030915,0.97345,-0.22672,-0.8171,-0.32676,-0.4749,-0.80737,-0.21384,-0.54988,-0.81988,-0.21461,-0.53075,-0.53297,-0.68303,0.49934,-0.66628,-0.49675,0.55611,-0.59679,-0.73974,0.3108,0.71542,0.048494,-0.69698,0.86035,-0.013337,-0.50951,0.78365,0.047578,-0.61934,-0.33342,0.87719,-0.34547,-0.051973,0.93381,-0.35398,-0.32109,0.90884,-0.26615,-0.89068,-0.37324,-0.2595,-0.94931,-0.14631,0.27812,-0.97098,-0.17969,0.15769,0.6899,0.37474,0.61931,0.66732,0.47661,0.57225,0.70376,0.36671,0.60842,-0.97452,-0.030824,0.22205,-0.92346,-0.066378,0.37782,-0.94491,0.12558,0.30219,-0.2136,0.7354,-0.64306,-0.2523,0.57372,-0.7792,-0.31632,0.69195,-0.64892,-0.74126,-0.25852,-0.6194,-0.86383,-0.060518,-0.50008,-0.78048,-0.020142,-0.62484,-0.96649,-0.24876,0.063143,-0.97079,-0.17008,0.16907,-0.91336,-0.20936,0.34919,-0.5389,-0.28446,0.79287,-0.39534,-0.40278,0.82547,-0.44548,-0.14426,0.88357,0.97757,0.005158,-0.2104,0.99673,-0.078585,-0.01767,0.97079,0.016388,-0.23927,0.57009,0.81997,0.050783,0.51296,0.85666,0.054659,0.50896,0.86032,0.02826,-0.4391,-0.4521,-0.77636,-0.27595,-0.31022,-0.9097,-0.41615,-0.44322,-0.79394,0.83691,-0.056276,-0.54439,0.84643,-0.081973,-0.52611,0.90622,-0.062899,-0.41804,-0.95093,-0.30879,0.019471,-0.91546,-0.28413,0.28486,-0.95083,-0.2439,-0.19068,-0.11213,0.84137,-0.52864,-0.003784,0.82354,-0.56719,-0.038209,0.82995,-0.55648,0.99332,-0.11332,-0.020508,0.97931,-0.15372,0.13138,0.97028,-0.2392,-0.036348,-0.45344,-0.48509,-0.74767,-0.45232,-0.46116,-0.76333,0.82134,0.29939,-0.48549,-0.36863,0.39763,-0.8402,0.84451,0.19498,-0.49873,0.90564,0.19449,0.37678,0.87951,0.21155,0.42619,0.83334,0.15296,0.53111,0.71767,0.052309,-0.69439,0.57909,0.00238,-0.81524,0.91809,0.23844,0.31657,0.90655,0.30662,0.28996,0.9067,0.33592,0.25498,-0.36341,-0.74413,0.5605,-0.10892,-0.76119,0.63927,-0.19416,-0.78973,0.5819,0.39726,-0.59386,0.69961,0.34571,-0.62758,0.69753,0.22291,-0.87637,0.42686,0.3227,0.94559,0.041322,0.35896,0.92709,0.10785,0.37382,0.91574,0.14722,-0.184,0.021577,0.98267,0.9935,0.004944,0.11353,0.95086,-0.073214,0.30076,0.93597,-0.23032,0.26618,-0.068911,-0.21857,-0.97336,-0.095523,-0.24506,-0.96475,-0.25751,-0.24998,-0.93335,-0.36314,0.52892,-0.76702,-0.43877,0.59062,-0.67721,-0.51241,0.58672,-0.62703,-0.43498,-0.71996,0.54076,-0.38182,-0.7185,0.58132,-0.42546,-0.79156,0.43861,-0.1576,0.31361,-0.93637,-0.08826,0.34761,-0.93344,0.81191,-0.57298,0.11145,0.96936,-0.20716,-0.13193,0.84014,-0.52355,0.14136,0.060945,0.46016,-0.88571,-0.043367,0.45592,-0.88894,0.19517,0.32261,-0.92618,0.32295,0.92966,0.17719,0.19605,0.98059,0.002472,-0.23924,-0.14545,0.95999,-0.44704,-0.0965,0.88928,-0.51381,-0.12018,0.84942,-0.059206,-0.48756,-0.87106,0.40828,-0.45747,-0.78994,0.76415,-0.22443,-0.60472,0.77395,-0.33641,0.53642,0.70342,-0.49248,0.51244,0.71508,-0.51497,0.47267,-0.79775,0.16425,0.58013,-0.83395,0.12232,0.53807,-0.78927,0.614,0,-0.68761,0.70241,-0.18375,-0.62273,0.78136,-0.040437,0.97821,-0.092196,0.18598,0.96561,-0.23264,0.11591,0.97049,-0.059267,0.23371,0.91491,-0.159,0.37098,0.82128,-0.058443,0.56749,0.83883,-0.20542,0.50414,0.47423,-0.67251,0.56813,0.42064,-0.72716,0.54247,0.51842,-0.75799,0.39576,-0.026246,0.76113,-0.64803,0.14411,0.73724,-0.66005,0.17228,0.76727,-0.61769,-0.012299,-0.053987,-0.99844,0.044343,0.030702,-0.99853,0.12491,-0.053804,-0.99069,0.94128,-0.13086,0.31114,0.82681,-0.22959,0.51344,0.87591,-0.22706,0.42564,-0.44466,-0.27537,-0.85229,-0.5569,-0.22132,-0.80053,-0.47063,-0.30393,-0.8283,0.32328,-0.24143,-0.91497,0.20466,-0.32411,-0.92361,0.38893,-0.22086,-0.89438,-0.87408,0.2551,0.41334,-0.93515,-0.012268,0.35402,-0.060152,0.055849,0.99661,0.4489,0.44981,0.77209,0.26057,0.60231,0.75451,0.91763,0.23267,0.32215,0.9715,0.13599,0.19407,0.94064,0.05945,0.33412,-0.97183,0.01999,0.23472,-0.99023,0.13651,0.027863,-0.98248,0.16141,0.092868,0.72881,0.5992,-0.33131,0.69976,0.52522,-0.48418,0.64898,0.60375,-0.46287,-0.63433,-0.60509,-0.48112,-0.12906,-0.78378,-0.60747,-0.51387,-0.77752,-0.36241,0.996,-0.068575,-0.056917,0.99808,-0.0618,0.004181,0.99869,0.009613,-0.050203,0.17707,-0.55626,0.81188,0.1727,-0.7329,0.65801,-0.04297,-0.79458,0.60558,0.38224,0.92068,-0.078677,0.32542,0.91928,-0.22132,0.52614,0.84442,-0.10044,0.086367,-0.62615,-0.77487,0.96933,0.2121,0.12391,0.93622,0.34996,-0.031068,0.84982,0.52657,-0.02179,0.1493,0.63698,-0.75625,0.18711,0.64043,-0.74484,0.013337,0.68905,-0.72457,-0.86892,0.0206,0.49446,-0.85717,-0.088443,0.50731,-0.89703,-0.024842,0.44127,0.32755,0.93509,0.13508,0.33344,0.92514,0.1814,0.49278,0.86605,0.083895,-0.30015,-0.13993,-0.94354,0.19257,-0.059572,-0.97946,-0.11048,-0.15793,-0.98123,-0.86108,0.26637,-0.43309,-0.75561,0.35224,-0.5522,-0.90243,0.21128,-0.37544,0.18683,0.97327,0.1334,0.37703,0.92233,0.084323,-0.17002,0.42183,-0.89056,-0.25855,0.38777,-0.88473,-0.14719,0.42897,-0.89123,-0.87222,-0.077181,-0.48292,-0.80566,-0.14777,-0.57359,-0.89941,-0.010315,-0.43696,-0.14026,0.23771,0.96112,0.10746,-0.001679,0.9942,-0.16572,-0.40553,0.89892,0.23335,0.27146,0.93371,0.22251,0.40123,0.88852,0.18082,0.23826,0.95419,-0.46413,0.87243,-0.15302,-0.64971,0.72894,-0.21558,-0.46831,0.85513,-0.2223,-0.67119,-0.25724,-0.69521,-0.59819,-0.21186,-0.77282,-0.68899,-0.18299,-0.70129,0.42076,0.42088,0.80361,0.62658,0.30903,0.71545,0.45149,0.40242,0.79635,0.04709,0.99777,0.046663,-0.33406,0.9368,0.10385,0.03824,0.99796,0.0506,-0.11289,0.90731,-0.40495,0.087069,0.87173,-0.48216,-0.035493,0.90286,-0.42845,-0.18058,-0.11267,-0.97708,-0.13596,-0.009552,-0.99066,-0.097476,0.057772,-0.99353,-0.89984,-0.41896,-0.12128,-0.085604,0.29649,-0.95117,-0.08475,0.13492,-0.98721,-0.063784,0.21287,-0.97498,-0.43263,-0.38975,-0.81292,-0.52473,-0.34373,-0.77874,-0.48079,-0.51195,-0.71181,0.63012,-0.33052,-0.7026,0.4796,-0.30766,-0.82177,0.45402,-0.3668,-0.81195,-0.079165,-0.17414,-0.98151,0.17637,-0.049104,-0.98309,0.070009,-0.16987,-0.98297,-0.7098,0.40861,-0.57372,-0.41981,0.55122,-0.721,-0.46678,0.72137,-0.51158,-0.16001,-0.45158,0.87774,-0.48042,0.46919,0.74096,-0.42705,0.61464,0.66317,-0.39598,0.55687,0.73009,0.37291,0.86203,0.34324,0.30738,0.85739,0.41276,0.1503,0.94153,0.30146,0.69823,-0.39464,-0.59722,0.77825,-0.35163,-0.52022,0.73116,-0.22276,-0.64477,0.66845,0.67998,-0.30125,0.79263,0.54891,-0.26527,0.65139,0.68627,-0.32353,-0.95099,-0.21998,-0.21717,-0.92596,-0.1915,-0.32542,-0.96857,-0.14249,-0.2038,0.58385,0.78262,0.21577,0.38151,0.87313,0.30339,0.34874,0.84231,0.4109,-0.96793,0.19581,0.15738,-0.94604,0.10898,0.30512,-0.015229,0.99081,0.13428,-0.96835,-0.23542,0.082705,-0.38936,0.49095,0.77932,-0.5197,-0.11817,0.8461,-0.41011,0.024659,0.91168,0.35997,-0.2425,-0.90088,0.44087,-0.29575,-0.84741,0.35472,-0.2801,-0.89199,-0.98941,-0.14261,0.025788,-0.91434,-0.064608,0.39973,-0.99442,-0.02649,0.10202,-0.44285,0.16111,0.88199,-0.29179,0.16105,0.94281,-0.31605,0.24497,0.91653,0.38948,-0.66259,0.63973,0.16779,-0.33366,-0.92761,0.22816,-0.3534,-0.90719,0.30808,-0.35136,-0.88406,0.59349,-0.088046,-0.79998,0.81927,-0.087191,-0.5667,0.57186,0.13248,-0.80956,-0.87118,0.39289,0.29435,-0.85784,0.40635,0.31455,-0.96585,0.085726,0.24436,-0.73785,-0.67467,0.019044,-0.94559,0.018525,0.32481,-0.44893,-0.15445,-0.88009,-0.48491,-0.382,-0.78671,-0.68392,-0.29499,-0.66723,0.11329,0.76974,0.62819,0.34159,0.79629,0.49919,0.32118,0.77499,0.54424,-0.2169,0.066866,-0.97388,-0.25242,0.15058,-0.95581,0.034852,0.10627,-0.99371,0.82101,0.062655,0.56743,0.71136,0.076815,0.6986,0.76272,0.093478,0.63991,0.11963,0.12992,-0.98425,0.29179,0.36,0.88611,0.116,0.28135,0.95254,0.25184,0.21244,0.94415,0.008576,-0.11182,-0.99368,0.040101,-0.27988,-0.95917,-0.059511,-0.18531,-0.98086,-0.86984,0.0141,0.49309,-0.84283,-0.16477,0.51228,-0.59362,-0.34907,0.72506,-0.38392,-0.51781,-0.76446,-0.54961,-0.60286,-0.57833,-0.55187,-0.39,-0.73708,-0.85079,0.35328,0.38899,-0.94836,0.15393,0.27726,-0.914,-0.24348,0.32447,0.14649,-0.48381,0.86279,0.26319,-0.48878,0.83172,-0.090793,-0.54997,-0.8302,-0.2169,-0.50001,-0.83837,-0.17624,-0.52959,-0.82971,-0.50963,0.60317,0.61354,-0.51616,0.45817,0.72359,0.19043,-0.39228,0.8999,0.36271,-0.26029,0.89477,-0.94852,0.11335,-0.29566,-0.96704,-0.1482,-0.20689,0.42067,0.90265,0.09064,0.3238,0.92981,0.17487,0.50142,0.84081,0.20386,-0.21088,0.84359,-0.49379,-0.02591,0.82153,-0.56954,0.054079,0.32371,-0.94458,0.018403,0.11759,-0.99289,0.1587,0.42445,-0.89141,0.14905,-0.2291,0.96191,0.21796,-0.045106,0.97488,0.23487,0.073855,-0.96921,0.37889,0.14286,-0.91434,0.2071,0.18134,-0.96133,0.75536,-0.3748,-0.53749,0.78323,-0.36372,-0.50423,0.86639,-0.35112,-0.35502,-0.68813,-0.39872,-0.60619,-0.70571,-0.34767,-0.6173,-0.86447,-0.27189,-0.42277,0.94388,-0.090152,0.3177,0.92819,0.033052,0.37059,0.8746,0.34758,0.33793,-0.9946,-0.095584,-0.039705,-0.99362,0.097293,0.056795,-0.96536,-0.05237,0.25553,-0.75652,0.49962,-0.42192,-0.69311,0.62892,-0.35215,-0.79534,0.52635,-0.30061,0.064791,-0.39186,-0.91772,0.25379,-0.24625,-0.93536,0.87182,-0.3122,-0.37736,0.84924,-0.51433,-0.11918,0.8641,-0.38621,-0.32264,-0.28813,-0.43254,-0.8543,-0.88962,-0.32453,-0.3213,-0.81948,-0.32755,-0.4702,-0.97925,-0.18366,-0.085299,-0.97351,-0.22849,0.000946,-0.98337,-0.17554,-0.046113,-0.22651,0.016419,0.97385,-0.30815,-0.10401,0.94562,-0.28483,0.053926,0.95703,0.63778,-0.71221,0.29316,0.7257,-0.63176,0.27241,0.75436,-0.60512,0.25446,0.18757,0.91675,0.35267,0.26624,0.93347,0.24024,0.31138,0.91629,0.2519,-0.25269,-0.25385,0.93362,-0.35572,-0.37751,0.85491,-0.13331,-0.18647,0.97336,-0.096347,-0.71807,-0.68923,-0.61104,-0.49321,-0.61913,0.24348,-0.82641,-0.50767,-0.74514,-0.33268,-0.57796,-0.69799,-0.20853,-0.68505,-0.67208,-0.12601,-0.72967,-0.3441,-0.27949,-0.89633,-0.92795,-0.27399,-0.25257,-0.92322,-0.26539,-0.27784,-0.70028,-0.37596,-0.6068,-0.79495,0.57686,0.18775,-0.75295,0.61788,0.2263,-0.80453,0.54762,0.22974,0.29783,0.47465,-0.82824,0.24509,0.5136,-0.82226,-0.11069,0.55058,-0.82736,-0.72994,-0.003357,0.68349,-0.45442,0.098148,0.88534,-0.61708,0.043062,0.7857,-0.47758,-0.54726,-0.68731,-0.69124,-0.41185,-0.59374,-0.56844,-0.37681,-0.73132,-0.30143,-0.6972,0.65038,-0.27018,-0.65419,0.70638,0.93234,-0.26615,-0.2447,0.94574,-0.1702,-0.27674,0.96332,-0.24592,-0.10727,0.27668,-0.32814,-0.90317,-0.14698,-0.39067,-0.90869,-0.054323,-0.29661,-0.95343,-0.041353,-0.21671,-0.97534,0.16065,-0.34394,-0.92511,-0.90738,-0.41646,-0.05649,-0.92746,-0.37223,-0.035188,-0.94543,-0.32576,-0.003998,-0.057924,0.49309,-0.86801,-0.17942,0.51137,-0.84039,-0.1261,0.49269,-0.86099,0.97366,-0.082308,0.21247,0.99084,-0.057527,0.12201,0.9859,-0.1131,0.12314,0.19218,-0.082095,-0.97791,-0.2649,-0.19755,-0.94378,0.018281,-0.25907,-0.96567,-0.37919,-0.27338,-0.884,-0.25376,-0.38099,-0.88904,-0.31126,-0.054994,-0.94873,0.98404,-0.032929,0.17469,0.99866,-0.005066,0.051149,0.98474,-0.006928,0.17377,0.11414,-0.14472,0.98285,0.043001,-0.28108,0.95871,0.031709,-0.1005,0.99442,0.26829,0.43272,0.86065,0.33689,0.30766,0.88983,0.58126,0.38432,0.71718,-0.47252,0.75097,-0.46123,-0.47591,0.67876,-0.55922,-0.56362,0.70766,-0.42601,-0.30402,0.94769,0.097018,-0.27168,0.96234,0.0047,-0.23884,0.96612,0.09769,-0.88171,-0.018738,0.47136,-0.7662,0.050874,0.64055,-0.84338,-0.19144,0.502,0.42439,0.71071,0.56099,0.39656,0.73821,0.54564,0.18378,0.78433,0.59246,0.93085,0.12415,-0.34361,0.72155,-0.06003,-0.68972,0.70638,-0.15885,-0.68975,0.20035,0.42058,0.88482,0.12442,-0.000916,0.99222,0.33271,-0.037782,0.94226,-0.34532,0.93844,0.005829,0.75973,0.63079,0.15778,0.62764,0.76833,0.12513,-0.3943,-0.35942,-0.84576,-0.49156,-0.53136,-0.6899,-0.16813,-0.403,-0.89959,-0.098727,0.24592,-0.96423,0.078341,0.39744,-0.91424,-0.050203,0.28342,-0.95767,0.9548,-0.088229,0.28373,0.91141,-0.20173,0.35862,0.97128,0.16721,0.16922,0.17048,-0.32353,-0.93072,0.19031,-0.26985,-0.94388,0.11423,-0.34361,-0.93213,0.1073,0.17609,-0.97848,0.2132,0.13874,-0.9671,0.37004,0.08768,-0.92486,-0.005554,0.026063,0.99963,-0.66527,-0.020386,0.7463,-0.86142,-0.27482,0.42711,-0.099796,-0.40489,-0.90887,-0.49144,-0.34813,-0.79827,-0.23985,-0.45433,-0.85791,0.78848,-0.34062,-0.5121,0.83886,-0.25779,-0.47941,0.82241,-0.26139,-0.50526,0.15979,0.3748,-0.91321,0.19901,0.33235,-0.9219,0.33689,0.33107,-0.8814,0.52245,0.43272,0.73467,0.53453,0.34016,0.77364,0.47887,0.48238,0.73345,0.92434,-0.28297,0.25587,0.99225,-0.12186,-0.023621,0.98334,-0.11435,0.14124,-0.47795,0.8587,0.18479,-0.3817,0.90857,0.16965,-0.50224,0.845,0.18348,0.25852,-0.44639,-0.85666,0.13861,-0.43617,-0.8891,0.37056,-0.35359,-0.85885,0.90503,-0.3068,0.2946,0.096194,-0.14798,-0.98428,0.36363,-0.16218,-0.91729,0.70956,0.15659,0.68697,0.69649,0.30387,0.65001,0.82415,0.18638,0.53475,0.93191,0.13291,0.33741,0.8511,0.39143,0.3498,0.82101,0.42674,0.37922,0.63613,0.6093,-0.47334,0.35893,0.78857,-0.49928,0.59752,0.70055,-0.39003,0.93542,0.10099,0.33879,0.85946,0.19337,0.47316,0.7886,0.48726,0.37504,0.68502,-0.72359,0.084567,-0.76785,-0.45729,-0.44862,-0.60219,-0.59795,0.52895,-0.69137,-0.26441,0.67235,-0.52101,-0.62914,0.57677,0.95477,-0.14686,-0.25849,0.81246,-0.2436,-0.52962,0.97946,-0.16703,-0.11283,-0.38902,-0.34962,0.85229,-0.20216,-0.19605,0.9595,-0.36082,0.15616,0.91946,-0.77319,-0.2946,-0.56157,-0.7582,-0.42762,-0.49211,-0.66259,-0.47215,-0.58138,0.62337,0.70461,-0.33894,0.55705,0.79507,-0.23985,0.63213,0.69311,-0.34636,0.70708,0.33351,-0.62352,0.77642,0.39839,-0.4883,0.75774,0.45027,-0.47227,0.95404,0.13907,0.26542,0.91009,-0.13749,0.39088,0.98746,0.14386,0.06476,-0.2042,-0.48228,0.85186,-0.30094,-0.42085,0.85574,-0.019715,-0.41554,0.90936,-0.71151,0.70247,-0.01529,-0.7304,0.67757,0.085849,-0.79669,0.60433,-0.002136,0.44075,-0.37956,-0.81341,0.52876,-0.32734,-0.78307,0.60411,-0.42601,-0.67342,-0.93924,-0.28303,-0.19416,-0.9237,-0.2519,-0.28861,-0.37046,0.74496,0.55473,-0.21073,0.64293,0.73635,-0.27168,0.65764,0.7026,-0.77743,0.54268,-0.31788,-0.81829,0.56835,-0.085604,-0.73284,0.67202,-0.10627,0.96027,-0.23878,0.14429,0.95852,-0.28019,0.051637,0.92523,-0.37938,0.001831,-0.22794,0.30586,-0.92437,-0.2139,0.29572,-0.931,-0.13001,0.38673,-0.91296,0.96225,0.23829,-0.13138,0.90722,0.41008,-0.09357,0.9801,0.19813,0.010529,-0.62856,-0.35951,-0.68966,-0.55007,-0.36366,-0.75176,-0.65905,-0.38011,-0.64895,0.90756,-0.37919,0.18036,0.85791,-0.47966,0.18415,0.82696,-0.50343,0.25031,0.35047,-0.63945,0.68425,0.61681,-0.3947,0.68096,0.58602,-0.45994,0.66707,0.54466,0.4164,-0.72793,0.37904,-0.25285,-0.89013,-0.076601,-0.32322,-0.9432,-0.67296,-0.35252,-0.65023,-0.73061,-0.17188,-0.66076,-0.59163,-0.23127,-0.77227,0.85894,-0.51201,-0.006226,0.88195,-0.43025,0.19239,0.84298,-0.49977,0.19886,0.64019,-0.31849,-0.69906,0.52147,-0.3499,-0.77819,0.38246,-0.41331,-0.82635,-0.31495,-0.47093,-0.824,-0.69015,-0.44191,-0.57302,-0.5363,-0.41496,-0.73495,0.38688,-0.068606,0.91955,0.28678,-0.075625,0.95498,0.49907,-0.2895,0.81674,0.19819,0.85101,-0.48631,0.5139,0.57112,-0.64007,0.21125,0.65816,-0.72259,-0.06122,0.77776,-0.62554,0.025056,0.73238,-0.68038,0.011536,0.75097,-0.66021,0.84304,-0.4008,-0.35862,0.90716,-0.36796,-0.20405,-0.82598,0.30488,-0.47408,-0.68108,0.502,-0.53297,-0.68642,0.51646,-0.51189,0.13065,-0.48262,0.86599,-0.92135,0.058687,-0.38423,-0.93371,0.11628,-0.33854,-0.16849,0.038331,0.98492,-0.23164,0.15915,0.95969,-0.33869,-0.058931,0.93902,0.68709,-0.38801,-0.61425,0.65618,-0.25928,-0.70861,0.49239,-0.35221,-0.79589,0.88827,-0.15265,0.43312,0.88733,-0.30073,0.3495,-0.40495,-0.22691,-0.88571,-0.011933,-0.3097,-0.95074,0.34251,-0.24393,-0.90729,-0.063692,-0.11887,-0.99084,-0.25761,-0.23222,-0.9379,-0.005768,-0.090609,-0.99585,0.13166,0.13037,-0.98267,0.079012,0.35765,-0.93048,0.27036,0.016541,0.96258,0.11783,-0.000519,0.99301,0.33052,0.019105,0.94357,0.90011,0.30741,-0.30857,0.99692,0.059175,-0.051332,0.89212,0.21244,-0.39872,-0.54756,0.076235,0.83325,-0.56215,0.04178,0.82595,-0.69396,-0.45805,-0.55547,-0.64779,-0.53041,-0.5468,0.39348,0.066103,0.91693,0.49443,0.033815,0.86856,0.46617,-0.068758,0.88199,0.4467,-0.39903,-0.80075,0.49974,-0.49284,-0.71227,0.50063,-0.44789,-0.74074,0.58599,-0.30482,-0.75075,0.46529,-0.27818,-0.84027,0.35908,-0.52425,-0.77212,0.95169,-0.30592,0.025819,0.97107,-0.23701,0.028016,0.88824,0.33528,-0.31391,0.99252,-0.038697,-0.11573,0.91394,0.24073,-0.3267,0.52965,0.35344,0.77105,0.68401,0.31999,0.65551,0.37721,0.19923,0.90442,0.026002,0.28388,-0.95849,0.13926,0.28355,-0.94876,0.96744,0.026887,-0.25162,0.97864,0.080447,-0.18909,0.94772,0.15445,-0.27912,0.19925,0.97848,0.053316,-0.27625,0.85073,0.44713,0.31858,0.91513,0.24696,-0.046236,0.47298,-0.87985,-0.021851,0.58324,-0.81198,-0.001251,0.47111,-0.88205,-0.8767,-0.095523,-0.47139,-0.87558,-0.25205,-0.41209,-0.95135,-0.27277,-0.14316,-0.59209,0.78091,0.19895,-0.72054,0.56813,0.39747,0.97964,-0.12555,0.15656,0.98035,-0.090365,0.17527,0.97137,-0.17615,0.15931,0.54848,-0.036622,0.83535,0.71444,0.015564,0.69948,0.81384,-0.54808,0.19291,0.73565,-0.669,0.1059,-0.48601,-0.46544,-0.73968,-0.52092,-0.32115,-0.79086,-0.40245,-0.50624,-0.76269,0.30573,0.032472,-0.95154,0.27522,-0.11805,-0.95407,0.24686,0.16044,0.95566,0.13718,0.18827,0.97247,0.15073,0.033296,0.98801,0.70394,-0.57765,-0.41319,0.39537,-0.59298,-0.70147,0.7578,-0.61925,-0.20536,-0.37367,0.84866,-0.37431,-0.30949,0.8533,-0.41957,-0.21476,0.89813,-0.38365,-0.28431,0.62026,0.73104,0.51378,0.8048,0.29707,0.18482,0.90014,0.39442,0.006989,0.95358,0.30097,-0.03885,0.89404,0.44627,0.91131,-0.3307,-0.24519,0.84915,0.16208,0.50264,0.96933,-0.057009,0.23899,-0.76867,-0.33256,-0.54637,-0.48872,0.14579,-0.86013,-0.44954,0.10801,-0.88668,-0.44838,0.16239,-0.87893,-0.91467,-0.34281,-0.21396,-0.87735,-0.46996,-0.096805,-0.93103,-0.22111,-0.29023,-0.14075,-0.98581,0.091372,-0.3752,-0.92071,0.10715,-0.25898,-0.93924,0.22517,0.75481,0.26786,-0.59871,0.24345,0.28196,-0.92801,-0.080721,0.60305,-0.7936,-0.93976,-0.3173,0.12702,-0.83477,-0.34886,-0.42592,-0.9237,-0.29994,-0.23826,-0.7159,-0.21894,-0.66295,0.009247,0.1373,-0.99048,0.035493,0.25187,-0.9671,0.007691,0.21656,-0.97623,-0.54427,-0.31443,-0.7777,-0.41862,-0.27882,-0.86428,-0.57302,-0.25767,-0.77795,0.076083,-0.69509,0.71487,-0.65783,-0.69326,0.29429,-0.93246,0.27399,0.23536,-0.96542,0.20084,0.16611,-0.91028,0.2646,0.31831,-0.25156,0.50081,-0.82818,-0.042421,0.62755,-0.7774,-0.063143,0.62407,-0.77877,0.25932,-0.67861,0.68715,0.141,-0.83435,0.53285,0.27302,0.81161,0.51643,0.24113,0.55473,0.79629,0.47215,0.19663,0.85928,0.49754,0.19373,0.84552,-0.7745,-0.30247,0.55553,-0.80535,-0.29542,0.5139,-0.74248,-0.4431,0.50233,-0.98843,-0.092959,-0.11972,-0.97189,-0.094455,0.21558,-0.95114,-0.062349,0.30238,-0.71221,0.27827,0.6444,-0.78304,0.2599,0.56502,-0.60997,0.13108,0.78149,-0.85403,0.20078,0.4799,-0.92575,0.18183,0.33152,-0.84976,0.27222,0.4514,0.9866,0.10108,-0.12793,0.99097,-0.097659,-0.091586,0.97742,0.000641,-0.21131,0.50926,-0.01117,0.86053,0.42177,-0.16156,0.89218,0.48775,-0.053865,0.8713,-0.53868,0.79504,0.2787,-0.97635,-0.19779,0.087191,-0.96539,0.25736,0.041932,-0.99301,-0.11707,-0.014557,0.59886,-0.41234,-0.68651,0.32005,-0.32954,-0.88821,-0.8919,-0.076601,0.44566,-0.8171,-0.15592,0.55498,-0.71371,0.08002,0.69582,0.16083,0.96591,-0.2027,0.44322,-0.019959,-0.89618,0.53511,-0.17759,-0.82589,0.54766,-0.016816,-0.83651,0.54912,0.5114,0.66097,0.50328,0.58327,0.63756,0.46095,0.6166,0.6382,0.96985,-0.084597,0.22843,0.93451,-0.15763,0.3191,0.95126,-0.096194,0.29292,-0.99759,0.023774,0.065035,-0.96649,-0.172,0.19047,-0.98206,0.075076,0.17298,0.046999,0.15088,-0.98743,0.06885,0.40468,-0.91186,-0.87005,0.008545,0.49287,-0.52196,0.82369,0.22144,-0.68133,0.72631,0.090793,-0.85711,-0.12162,-0.50053,-0.70168,0.007141,-0.71242,-0.56172,-0.11957,-0.8186,-0.45842,-0.31681,-0.83032,0.027741,-0.18256,-0.98279,-0.11094,-0.27033,-0.95633,-0.23246,-0.58458,0.77731,-0.48122,-0.25098,0.83987,-0.4123,-0.44813,0.79318,-0.91797,-0.2721,-0.28852,-0.93011,-0.18165,-0.31916,-0.93378,-0.27253,-0.23182,0.33564,0.57909,0.74294,0.37684,0.70244,0.60375,0.45903,0.65239,0.60298,-0.89911,0.20569,0.38633,-0.66985,-0.31416,-0.67272,-0.71587,-0.30992,-0.62566,0.19346,0.49107,-0.84933,0.15134,0.4261,-0.8919,0.16855,0.50765,-0.84491,0.28916,-0.1504,-0.94537,-0.075869,-0.45308,-0.88821,0.31111,-0.33222,-0.89038,0.41466,0.019379,0.90976,0.40388,0.08301,0.91101,0.44267,0.030274,0.89615,-0.33845,0.055147,-0.93936,-0.69469,-0.44761,-0.56304,-0.55358,-0.47148,-0.68642,-0.60869,-0.40321,-0.68328,0.50218,0.42863,0.751,0.53902,0.40461,0.73873,-0.8855,-0.42357,-0.19092,-0.91037,-0.23151,-0.34287,-0.37629,-0.29066,-0.8797,-0.40516,-0.28642,-0.86819,-0.69887,0.55913,-0.446,-0.76919,0.57094,-0.28694,0.91797,-0.29707,0.26273,0.87814,-0.12885,0.46068,0.92685,0.11533,0.35725,0.12876,0.024293,-0.99136,0.58071,-0.13666,-0.80251,0.54238,-0.25916,-0.79913,0.26167,0.96481,-0.024812,0.34886,0.93716,0.000641,0.193,0.9808,-0.026948,0.87399,0.057863,0.48241,0.86837,0.044801,0.49385,-0.24958,0.73937,-0.62529,-0.4561,0.78591,-0.41743,-0.35252,0.81292,-0.46352,0.76519,0.20429,0.61046,0.26588,0.052492,0.96255,0.25337,0.34684,0.90304,0.22364,-0.25532,-0.94061,0.22608,-0.39702,-0.88949,0.28367,-0.14197,-0.94833,0.18845,-0.42262,-0.88647,0.10019,0.036531,-0.99429,0.1059,0.085055,-0.99072,0.054842,0.95123,0.30351,-0.047029,-0.15833,-0.98624,-0.3433,-0.49294,0.79946,-0.37181,-0.70061,0.609,-0.44859,-0.62798,0.63588,-0.20536,0.47517,-0.85559,-0.1131,0.42106,-0.89993,-0.00174,0.3928,-0.91958,-0.80911,0.23753,0.53746,-0.89627,-0.33262,0.29328,-0.95602,-0.10111,0.27522,-0.92056,-0.096133,0.37855,-0.89477,-0.1384,0.42448,0.57967,0.16056,0.79885,0.7384,-0.015168,0.67415,0.69274,0.055025,0.71905,0.81002,0.41606,0.41316,0.67376,0.62798,0.38939,0.84603,0.374,0.37983,0.44536,0.51378,0.73324,0.57714,0.53386,0.61794,0.56777,0.36946,0.73559,-0.83535,0.4358,-0.335,-0.92563,0.21204,-0.31343,-0.96951,0.18082,-0.16532,0.21964,0.50774,-0.83303,0.049593,0.2873,-0.95654,-0.11472,0.37349,-0.9205,-0.065218,-0.18195,-0.98114,-0.88192,-0.087649,-0.46312,-0.76263,-0.040986,-0.6455,-0.84036,-0.047975,-0.53987,-0.97638,0.096286,0.19327,0.90646,0.20472,-0.3693,0.91931,0.25297,-0.30137,0.95059,0.1471,-0.27326,0.023896,0.20222,0.97903,0.18479,0.21262,0.95947,0.11518,0.17649,0.97751,0.1561,-0.17869,0.97144,-0.052004,0.068209,0.99631,-0.009156,0.17371,0.98474,0.20035,0.43092,0.87985,0.25785,0.30378,0.91717,0.70708,0.47206,0.52641,0.71337,0.494,0.49702,-0.64669,-0.21558,-0.73162,-0.67363,-0.19221,-0.71361,-0.71743,-0.16324,-0.67717,0.71413,0.49846,0.49144,0.67284,0.6194,0.40443,0.89636,-0.25953,0.35935,0.96674,-0.13681,-0.21607,0.92666,-0.129,0.35301,-0.34458,0.93011,0.1268,-0.16648,0.96289,0.21241,0.46321,-0.27043,0.84396,0.33406,-0.44603,0.83032,0.69222,-0.11094,0.7131,0.82626,0.4098,0.38639,0.80984,0.35246,0.46895,-0.076846,-0.29792,0.95148,-0.32185,-0.15754,0.93356,-0.47148,-0.072695,0.87884,0.59368,-0.21699,0.77487,0.84085,-0.091769,0.5334,0.81088,-0.31776,0.49138,-0.82162,-0.17756,0.54164,0.070528,0.91589,-0.39509,-0.19901,0.91516,-0.35047,0.10471,0.95322,-0.28349,0.91876,0.13089,0.37242,0.93838,0.043428,0.34278,0.87234,-0.07004,0.48384,0.049562,0.41395,0.90893,0.021729,0.33067,0.94348,-0.18345,0.39827,0.89871,0.90753,0.088229,-0.41053,0.90555,0.26118,-0.33424,0.83669,0.22929,-0.49733,-0.59523,-0.27506,-0.75497,-0.72295,-0.32856,-0.60772,-0.64403,-0.15702,-0.74868,0.27757,-0.22083,-0.93497,0.22031,-0.38752,-0.89514,0.33879,-0.32273,-0.88375,-0.96139,0.25739,0.097079,-0.97852,0.20115,0.045106,-0.93902,0.33741,-0.066134,0.083041,-0.30625,0.9483,0.21598,-0.060976,0.97446,0.029725,-0.3213,0.9465,0.39125,0.62069,0.6794,0.43342,0.59123,0.6801,0.53041,0.8019,-0.27497,0.46416,0.84924,-0.25162,0.6133,0.72558,-0.31202,-0.54125,0.46104,0.70318,-0.45857,0.37587,0.80523,-0.48213,0.43419,0.76092,-0.40941,0.46361,-0.78576,-0.44786,0.54439,-0.70925,-0.15732,0.66729,-0.72799,-0.24802,-0.39921,-0.88266,-0.15165,-0.49339,-0.85644,-0.057253,-0.26029,-0.96381,-0.49672,-0.19816,-0.84497,-0.23277,-0.31928,-0.91861,-0.47868,-0.1717,-0.86102,0.24873,0.48317,0.83944,0.80358,-0.59401,-0.036897,0.77627,-0.62969,0.028565,-0.73428,-0.21165,0.64498,-0.56902,-0.34419,0.74679,0.48125,-0.044496,0.87542,0.43004,-0.068361,0.9002,0.16596,-0.48933,-0.85614,-0.39033,-0.5251,-0.75622,-0.079958,-0.46907,-0.87951,0.26795,-0.4525,0.85052,0.33601,-0.48418,0.80785,0.42555,-0.3704,-0.82562,0.60903,-0.40758,-0.68038,0.63329,-0.39137,-0.66762,0.12168,0.69982,0.70385,-0.63793,-0.21894,0.7383,-0.69057,-0.43538,0.5775,-0.54735,-0.37767,0.74679,-0.72021,-0.69308,-0.030152,-0.75759,-0.63042,-0.1691,-0.69723,0.007447,-0.71679,-0.63283,-0.052919,-0.77245,0.39891,0.52943,0.74868,0.41972,0.4817,0.76925,0.76577,0.39665,0.50618,0.06946,0.70772,-0.70302,0.31147,0.57701,-0.755,0.11231,0.80343,-0.58467,0.26704,0.94516,0.18796,0.21543,0.96335,0.15964,0.12201,0.98044,0.1543,0.061434,0.99222,0.10825,-0.13053,0.9632,0.2349,-0.11032,0.9715,0.20969,0.21696,-0.94903,-0.22855,-0.022248,-0.92111,-0.38859,0.088778,-0.93716,-0.33732,0.9747,0.1727,0.14176,0.94562,0.14704,0.29014,0.99866,-0.01767,0.048524,0.23808,-0.81515,0.52803,-0.33512,-0.64016,0.69127,-0.018616,-0.33741,0.94116,-0.23023,-0.51006,0.82873,-0.26643,-0.43156,0.86181,-0.17155,-0.31263,0.93423,-0.077822,0.094119,-0.99249,0.24915,0.13608,-0.95883,-0.00061,-0.10248,-0.99472,-0.59917,0.07123,0.79742,-0.62313,0.039369,0.78112,-0.67272,-0.044801,0.73852,0.24284,0.94617,0.21384,0.40648,0.88534,0.22562,0.43165,0.87805,0.20658,-0.04062,0.66539,-0.74535,0.15049,0.64745,-0.74706,0.10392,0.6466,-0.7557,-0.92175,-0.2718,-0.27656,-0.98523,-0.1673,-0.036103,-0.95334,-0.30165,0.010529,-0.92843,-0.36482,0.069826,0.1692,-0.25044,-0.95322,-0.072054,-0.23093,-0.97028,0.098422,-0.40523,0.90887,-0.57356,-0.49571,-0.65212,-0.63164,-0.48131,-0.60775,-0.65831,0.73077,0.18052,-0.57851,0.7886,0.20838,-0.034242,0.25376,-0.96664,-0.12519,0.31825,-0.93969,-0.012879,0.30992,-0.95065,0.91852,0.053163,0.39177,0.93976,-0.20743,0.27168,-0.89935,-0.43233,-0.064882,0.17313,-0.89608,-0.40864,0.072939,-0.935,-0.34703,0.057344,0.53822,-0.84081,0.093875,0.3751,-0.92218,0.16401,0.39796,-0.90258,0.76046,-0.19489,0.6194,0.88293,-0.09125,0.46049,-0.77502,0.48311,0.4073,-0.62105,0.28822,0.72881,-0.066317,0.95407,-0.29212,-0.22584,0.91784,-0.32637,-0.15449,0.9805,-0.12122,-0.75369,0.2949,-0.58733,-0.76928,0.39839,-0.49947,-0.83779,0.3426,-0.42509,-0.40684,0.72234,-0.55913,-0.30641,0.77279,-0.55574,-0.25309,0.79403,-0.55263,-0.85675,-0.34251,-0.38554,-0.49684,-0.3191,-0.80703,-0.43873,-0.26188,-0.85958,0.30958,0.74935,0.58532,0.4037,0.78082,0.47676,0.43574,0.74938,0.49849,-0.19617,0.32072,0.92663,-0.45125,0.28547,0.84549,0.16071,0.52098,-0.83828,0.46089,0.32917,-0.82412,0.3152,0.49226,-0.81134,0.41099,0.27729,0.86843,0.3318,0.47124,0.81719,-0.86087,0.20518,0.46559,-0.92602,0.06946,0.37095,-0.85562,0.094058,0.50893,0.080599,-0.076327,0.99381,0.05121,-0.48827,-0.87118,0.080599,-0.29975,-0.95059,-0.036134,-0.36766,-0.92923,0.19224,0.21818,-0.95679,-0.061037,0.29817,-0.95254,0.047975,0.19465,-0.97967,-0.60414,0.072451,-0.79354,-0.52638,0.047914,-0.84887,-0.5259,-0.37068,-0.7655,-0.33433,-0.31846,-0.88699,-0.77892,-0.33235,-0.53175,0.095248,0.053102,-0.99402,-0.2768,-0.007782,-0.96088,-0.037263,-0.00943,-0.99924,-0.65478,0.7557,0.012421,-0.75463,0.65447,0.046541,-0.56154,0.81866,0.12003,-0.71245,-0.31379,-0.62761,-0.77068,-0.24006,-0.59023,-0.77368,-0.36354,-0.51888,0.65221,0.43034,0.62401,0.65114,0.27393,0.70776,0.48238,0.23408,0.84408,-0.45686,-0.50151,0.73464,-0.68813,0.15418,0.70901,-0.045167,-0.2992,-0.95309,-0.10825,-0.2169,-0.97015,-0.19227,-0.29481,-0.936,0.89666,0.1641,0.41114,0.69466,0.089572,0.71371,0.80642,0.24641,0.53752,0.14838,-0.16538,-0.97498,0.25697,-0.16797,-0.95169,0.25999,-0.1934,-0.94601,-0.18647,-0.21586,-0.95843,0.44725,-0.41441,-0.7926,0.45949,-0.41417,-0.78567,-0.50185,0.23905,0.83123,-0.40257,0.29743,0.86569,-0.46126,0.18851,0.86697,-0.3701,-0.91452,-0.16321,0.47523,0.71319,0.51521,0.71474,0.55534,0.42506,0.068667,0.20518,-0.97629,-0.060244,0.080782,-0.9949,-0.27357,0.061312,-0.95987,-0.65731,-0.33979,-0.67263,-0.33143,-0.33711,-0.88116,-0.093173,-0.51796,-0.85031,-0.060121,-0.47749,-0.87655,-0.4738,-0.43712,0.76446,-0.47414,-0.54756,0.68941,0.36982,-0.30573,-0.87735,0.16825,-0.40654,-0.89798,0.38423,-0.39698,-0.83349,-0.91739,-0.065737,-0.39247,-0.95782,-0.11908,-0.26142,-0.62682,-0.36833,-0.68661,-0.39311,-0.46028,-0.79595,-0.52803,-0.41743,-0.73952,-0.13233,0.90619,-0.40162,-0.6389,0.2804,0.71633,-0.96323,0.007019,0.26853,-0.62789,0.51427,0.58415,0.24277,-0.22218,-0.94427,-0.33015,-0.33598,-0.88208,0.2646,-0.45018,0.85281,-0.051943,-0.49007,0.87011,0.46348,-0.15522,0.87237,0.58214,-0.20158,-0.78765,0.62258,-0.24354,-0.74367,0.59423,-0.22425,-0.77239,0.58501,-0.34889,0.73211,0.54885,-0.24796,0.79827,0.68441,-0.24549,0.68648,-0.94272,-0.23447,0.23725,0.15189,-0.42467,0.89248,-0.31407,-0.42338,0.84973,-0.045656,-0.59352,0.80349,0.76958,0.25394,0.5858,0.68459,0.49608,0.53404,0.77117,0.21482,0.59926,-0.49696,0.69536,-0.51906,-0.060183,0.82934,-0.55544,-0.2891,0.7018,-0.65105,0.73476,0.28855,0.61385,0.6744,0.1041,0.73095,0.92337,0.015198,0.38356,0.19773,0.97266,0.12177,0.21351,0.97021,0.1142,0.39689,0.91763,-0.019623,0.95376,-0.28538,-0.094028,0.8901,-0.44826,0.082125,0.89184,-0.38511,0.23719,0.68862,0.12085,0.71496,0.79034,0.22733,0.5689,-0.88385,-0.45497,0.10846,-0.88061,-0.46071,0.11057,-0.83938,-0.41575,0.35008,0.51888,0.50578,0.68914,0.31092,-0.23252,0.92154,0.33442,-0.33406,0.88122,-0.85421,0.10059,0.51006,-0.52763,-0.097385,-0.84384,-0.6617,-0.13266,-0.73791,-0.59371,-0.14359,-0.79174,0.5154,-0.009674,0.85687,0.76635,-0.19181,0.61309,0.73714,0.011444,0.67562,0.008148,-0.001404,-0.99994,-0.015687,0.091922,-0.99564,-0.003662,-0.024842,-0.99966,-0.20145,0.4192,0.88522,-0.42036,0.89792,0.13044,-0.41923,0.89438,0.1558,-0.27574,0.95743,0.085177,0.98089,-0.18107,-0.070986,0.98227,-0.10056,-0.15812,-0.074618,0.17951,-0.98089,-0.1149,0.1301,-0.9848,-0.38401,-0.25269,0.88806,-0.45772,-0.079989,0.88546,-0.25968,-0.13309,0.95645,-0.6906,0.60457,-0.39689,-0.76373,0.47911,-0.43257,-0.75308,0.58058,-0.3094,0.6603,0.4456,0.60448,0.43968,0.88946,-0.12439,0.1204,0.9711,0.20597,0.29283,0.86813,-0.40074,0.55879,0.56758,0.6046,0.69536,0.44429,0.56481,0.55309,0.47569,0.68395,0.73711,0.45222,0.50212,0.62954,0.22654,0.74319,0.93554,-0.077792,0.34449,0.28224,-0.096347,-0.95447,0.15302,-0.019623,-0.98801,0.38035,-0.10514,-0.91882,0.52229,0.10443,-0.84634,-0.1345,-0.060671,-0.98904,-0.36686,0.27515,-0.88864,0.89395,0.077517,0.44133,0.89718,-0.20191,0.39274,0.90924,-0.12748,0.39622,-0.58275,-0.2009,-0.78741,-0.62749,-0.48164,-0.61174,-0.80123,-0.008789,-0.59822,0.36787,0.070833,0.92715,0.50865,0.28575,0.81213,0.36982,0.070742,0.92639,-0.81451,0.11103,-0.56941,-0.58474,0.031129,-0.8106,-0.71285,0.030213,-0.70061,0.33332,0.92825,0.16495,0.3321,0.93289,0.13913,0.41508,0.90335,0.10791,-0.93115,-0.24683,-0.26832,-0.86807,-0.36543,-0.33595,-0.94009,-0.34025,-0.020783,-0.93063,-0.3347,0.1478,0.092166,-0.25095,-0.96359,0.21802,-0.36644,-0.90451,0.2638,0.24415,-0.93313,0.034272,0.17826,-0.98337,-0.15464,0.34364,-0.92627,0.87338,-0.29386,-0.38832,0.87243,-0.34663,-0.34443,0.93545,-0.32731,-0.13321,0.91522,-0.18854,0.35606,0.75271,-0.64275,-0.14231,0.073458,-0.65187,0.75475,0.22465,-0.43931,0.86978,0.52889,0.83926,0.12595,0.69878,0.69701,0.16065,0.54503,0.81945,0.17719,0.93612,-0.34971,0.036714,0.81167,-0.39497,0.43025,0.91247,-0.40873,-0.017182,0.39949,0.90927,0.11667,0.57827,0.79174,0.19672,0.6007,0.79186,0.10975,-0.054903,-0.46913,-0.8814,0.1388,-0.45369,-0.88025,-0.59853,-0.24973,-0.76116,-0.69741,-0.27909,-0.66005,-0.72634,-0.35643,-0.58763,-0.42863,-0.5703,-0.70067,-0.50688,-0.41942,-0.75304,-0.55608,-0.55199,-0.62133,0.21897,0.96759,0.12552,0.57805,0.80441,0.13675,0.40162,0.9133,0.067385,0.57885,-0.24717,0.77706,0.51012,-0.14319,0.84808,0.67696,-0.26041,0.68837,0.19208,0.020875,-0.98114,-0.002167,0.11197,-0.99368,0.096652,0.093753,-0.99087,0.49422,0.83337,-0.24732,0.36769,0.87524,-0.31416,0.67522,-0.21357,-0.70598,0.56716,-0.36772,-0.73693,0.34715,-0.36692,-0.86303,-0.20231,0.45796,-0.86563,-0.25898,0.40928,-0.87484,-0.051454,0.54955,-0.83386,0.022034,0.28205,-0.95914,-0.13205,0.26484,-0.9552,0.004517,0.21461,-0.97668,0.35548,0.26838,-0.89529,0.26981,0.28953,-0.91833,0.68264,-0.73071,-0.005036,0.71279,-0.69927,0.053865,0.0683,0.56847,-0.81982,-0.021119,0.47798,-0.87811,0.18787,0.57619,-0.7954,0.35402,0.92734,0.12125,0.40263,0.89389,0.19694,0.46339,0.85946,0.21574,0.92706,-0.008301,0.37477,0.77822,0.46468,0.42235,0.74639,-0.025269,0.66497,-0.95541,0.27375,0.11042,-0.92386,0.36802,0.10492,-0.97015,0.24155,0.0206,0.92083,0.15839,0.35627,0.92306,0.15717,0.35102,0.82,0.37406,0.43318,0.53032,-0.72625,0.43733,0.019471,-0.32441,-0.94571,0.049318,-0.40291,-0.91388,-0.87405,0.30287,0.37983,-0.51665,0.10797,0.84933,-0.46522,0.21638,0.85833,-0.50645,0.013398,0.86215,-0.93484,0.34526,0.082705,0.11588,-0.20701,-0.97144,0.095401,-0.16443,-0.98175,0.089908,-0.28452,-0.95444,-0.71096,0.35432,0.60741,-0.81915,0.45802,0.34519,-0.18393,0.22672,0.95642,-0.26902,0.30094,0.91488,-0.16364,0.22428,0.96066,0.73968,-0.14277,-0.65761,0.85504,0.14478,0.49791,0.8514,0.087161,0.51717,0.83236,0.1551,0.53203,-0.55431,0.2111,0.80505,-0.95453,-0.2635,-0.13922,-0.9266,-0.36149,-0.10349,-0.28767,-0.21122,-0.93411,-0.40819,-0.32157,-0.85437,-0.41975,-0.23359,-0.87704,0.41405,-0.15799,0.89642,-0.041658,0.83392,0.55025,-0.21238,0.97107,0.10904,0.059481,0.80874,0.5851,-0.88098,0.27992,0.38142,-0.91269,0.2631,0.3126,-0.8735,0.31187,0.37373,-0.76754,-0.15934,-0.62084,-0.8558,-0.46916,-0.21778,-0.845,-0.048006,-0.53258,-0.75289,-0.25886,-0.60506,-0.76202,-0.41697,-0.49538,-0.64898,-0.26194,-0.71425,-0.30836,0.59035,-0.7459,0.82659,-0.47621,-0.29988,0.91409,-0.3693,-0.16745,0.83743,-0.36805,-0.404,0.51054,0.83239,0.21549,0.32997,0.91034,0.24967,0.44719,0.84851,0.28281,-0.90808,-0.41459,0.058962,-0.88339,-0.38936,0.26078,-0.73425,-0.67214,-0.095218,-0.6241,-0.22456,-0.74834,-0.65432,-0.15284,-0.74056,0.68542,-0.25349,-0.68258,0.75936,-0.27711,-0.58867,0.82229,-0.26981,-0.50099,-0.51088,-0.44334,-0.73647,-0.79141,0.55486,0.25648,-0.83209,0.35813,0.42347,-0.87023,0.45311,0.19321,-0.9631,0.15146,0.22236,-0.97604,0.03238,0.21509,-0.95685,0.27165,0.10306,-0.93683,0.26453,0.22874,-0.9382,0.18986,0.28935,-0.89666,0.22297,0.38243,0.27998,-0.009461,0.95993,0.37379,-0.000946,0.92749,0.25282,0.007111,0.96747,0.38041,0.52592,0.76067,0.37745,0.57387,0.72674,0.37599,0.54207,0.75149,0.010926,0.72973,-0.68361,0.10138,0.80459,-0.58507,-0.029756,0.7438,-0.66768,-0.76809,-0.15616,-0.62096,-0.82513,-0.36573,-0.43052,-0.60897,0.42042,0.67257,-0.78646,0.25044,0.56453,-0.58193,0.43928,0.68435,0.54643,0.65819,-0.51781,0.43056,0.80841,-0.40132,0.55995,0.63225,-0.53539,-0.43922,0.88058,0.17777,-0.42491,0.88208,0.20335,-0.4572,0.86975,0.18561,-0.33973,0.19028,0.92105,0.19157,0.55098,0.81222,0.1684,0.50923,0.84396,-0.47438,-0.7405,0.476,0.057283,0.23167,-0.9711,0.00824,0.16413,-0.98639,-0.071108,0.23157,-0.97018,-0.11966,-0.36543,-0.92309,-0.1446,-0.31346,-0.93851,0.10154,-0.31513,-0.94357,-0.68029,-0.41026,0.60735,-0.48991,-0.07532,0.8685,-0.92242,-0.34761,0.16803,-0.9122,-0.33442,0.23667,0.97568,-0.088565,-0.20048,0.99735,0.01117,-0.071535,0.90332,0.024903,-0.42821,-0.93158,-0.35224,0.089572,-0.98618,-0.1608,0.039705,0.36442,0.008728,0.93118,0.37657,-0.41597,0.82772,-0.55141,-0.42076,-0.72033,-0.35463,-0.22514,-0.90747,-0.024476,0.76037,-0.64901,0.045869,0.71764,-0.69485,0.037111,0.62526,-0.7795,0.099429,0.61794,-0.77987,0.61382,0.76449,0.19678,0.58171,0.77755,0.23875,0.58998,0.71807,0.36912,0.47328,-0.25602,0.84286,0.43385,-0.35914,0.82629,0.53523,-0.14084,0.83285,0.099338,0.26603,-0.9588,0.13495,0.16031,-0.97778,0.26667,0.28474,-0.92074,0.38441,0.88775,0.25318,0.4929,0.83322,0.25044,0.2194,0.96612,0.13572,-0.16553,0.92453,-0.34321,-0.10294,0.93591,-0.3368,-0.20637,0.94476,-0.25459,-0.21116,0.8023,-0.55827,0.071688,0.78491,-0.61541,-0.16037,0.83328,-0.52907,0.38786,-0.70016,0.59941,-0.43516,-0.010956,0.90027,-0.61165,-0.095431,0.78533,-0.45445,0.025269,0.89038,0.23368,-0.054262,-0.97076,0.23621,-0.028962,-0.97125,0.82662,0.12693,0.54824,0.80456,-0.032777,0.59294,0.84445,0.082186,0.52925,0.75558,-0.27628,-0.59389,0.73662,-0.23042,-0.63579,0.88861,-0.39613,0.23112,0.8674,-0.43938,0.23353,0.92264,-0.33821,0.18519,-0.9591,-0.28068,0.036134,-0.95688,-0.28279,0.066225,-0.95822,-0.28575,0.010407,-0.20414,0.092807,-0.97452,-0.92175,-0.33024,0.20313,-0.90051,-0.39528,0.18113,0.65963,0.57952,-0.47853,0.6935,0.66253,-0.28294,0.63384,0.63469,-0.44203,-0.26936,0.90106,0.33982,0.24332,0.96967,0.022553,0.30464,0.91302,0.27119,0.283,0.94974,0.1337,-0.15616,0.19095,-0.96908,-0.2693,-0.14057,-0.95273,-0.27448,0.044832,-0.96051,-0.085757,-0.91287,0.39909,0.066744,-0.92083,0.38414,-0.039491,-0.84365,0.53539,-0.94397,0.27928,-0.17579,0.24491,-0.46278,-0.85192,0.15589,-0.55348,-0.81811,-0.52223,0.19535,0.8301,0.11484,-0.13468,-0.98419,0.9884,0.054323,0.14161,0.94452,-0.11631,0.30711,0.93014,-0.16471,0.3281,0.85168,-0.054109,-0.52119,0.69002,-0.060274,-0.72124,0.80041,-0.075259,-0.59465,-0.98001,-0.049165,0.19263,-0.98407,-0.00354,0.17762,0.18949,-0.43843,0.87854,0.16401,-0.22382,0.96072,0.040651,0.27436,-0.96075,-0.09534,0.46437,-0.88046,-0.18397,0.25275,-0.94986,0.010651,0.28275,-0.9591,-0.069063,0.29945,-0.9516,-0.005921,0.27052,-0.96268,-0.64684,0.27335,0.71191,-0.42247,0.14225,0.89511,-0.34413,0.35893,0.86758,-0.66024,-0.49626,-0.56371,-0.037355,0.78259,-0.62139,0.074404,0.76858,-0.63536,0.26554,0.69729,-0.66576,0.16251,-0.93387,-0.31846,-0.26649,0.29972,0.91601,-0.30879,0.39775,0.86395,-0.10309,-0.32713,0.93933,-0.24863,-0.33998,-0.90695,-0.094028,-0.29926,-0.94949,-0.18085,-0.21985,-0.95862,0.087039,-0.38325,-0.91952,0.00589,-0.33412,-0.9425,-0.2298,-0.41835,-0.87872,0.60295,-0.46864,0.64559,0.39305,-0.49901,0.7723,0.30488,-0.69143,0.65493,0.9144,0.087252,0.39525,0.95233,-0.077639,0.29499,0.95691,0.087191,0.27692,-0.031404,0.97626,0.21427,0.13022,0.97171,0.197,0.32063,0.94455,0.07062,-0.071596,0.90027,-0.42937,-0.086917,0.9006,-0.42579,-0.42995,0.78716,-0.44212,0.40931,-0.14393,0.90094,0.44667,-0.074374,0.89157,0.02356,0.73089,-0.68209,-0.005615,0.79223,-0.61016,0.60237,0.68178,-0.41505,0.52828,0.66414,-0.52895,0.54079,0.62206,-0.56618,0.65328,0.56947,-0.49886,0.31172,0.79824,-0.51537,0.48225,0.6589,-0.57726,0.38865,0.88635,0.25153,0.19147,0.76086,0.61998,0.36934,0.62435,0.68828,0.523,0.74731,0.4098,0.23441,-0.38441,0.89288,0.07709,-0.21216,0.97418,0.58101,-0.14408,0.80102,0.7275,-0.67129,0.1417,0.68752,-0.68883,0.22971,-0.29295,-0.062227,-0.95407,-0.38865,-0.072237,-0.91852,-0.023865,0.01001,-0.99966,-0.92138,-0.15955,-0.35435,-0.78265,-0.16852,-0.59917,-0.9057,-0.30476,-0.29463,0.029969,-0.18906,-0.98147,0.004639,-0.21482,-0.97662,0.2067,-0.21412,-0.95468,-0.44801,-0.35285,-0.82144,-0.46614,-0.38945,-0.79434,-0.53935,-0.48412,-0.68895,-0.95709,-0.28767,0.034181,-0.94797,-0.31343,0.055422,-0.97223,-0.19013,0.13623,-9.2e-05,-0.14835,-0.98892,0.98517,-0.1695,0.025788,0.97424,-0.18122,0.13416,-0.82534,-0.032075,-0.56371,-0.99939,0.029267,-0.018464,-0.96747,-0.18351,0.17408,0.55058,0.11692,0.8265,0.65951,0.1539,0.73574,0.63491,0.2967,0.71331,-0.08478,0.16562,-0.98251,-0.94781,-0.29466,0.12152,-0.95529,-0.2804,0.093448,-0.96136,-0.2595,0.091739,-0.95776,-0.13794,0.25227,-0.97708,-0.19315,0.089236,-0.013733,-0.46699,-0.88412,0.00998,-0.54848,-0.83608,-0.16153,-0.40117,-0.90164,-0.13111,0.1706,-0.97656,-0.17124,0.2201,-0.9603,-0.1214,0.28703,-0.95016,0.20344,0.21882,-0.95428,0.9432,0.032777,0.33058,0.87991,0.10657,0.463,0.91745,-0.092196,0.387,-0.37568,0.15479,0.91372,-0.40611,0.2378,0.88232,-0.3133,0.17994,0.93243,-0.34736,-0.33934,0.87414,-0.19565,-0.62935,0.75204,-0.21393,-0.87533,0.43355,0.3094,0.45076,-0.83727,0.23466,0.6307,-0.73968,0.2898,0.5912,-0.75262,0.97577,-0.21857,-0.007538,0.021973,0.4684,-0.88324,0.14481,0.47133,-0.86996,0.10929,0.49779,-0.86035,-0.93625,-0.078097,0.34254,-0.96323,0.058046,0.26231,-0.94653,0.033906,0.32081,0.39174,-0.80395,0.44737,-0.22037,-0.33827,0.91485,-0.33973,-0.232,0.91144,-0.9411,0.15445,0.30073,-0.85495,0.31269,0.41383,-0.9331,0.15815,0.32289,0.11112,0.9899,0.087741,-0.016144,0.99887,0.044527,-0.008423,0.96249,0.27113,-0.19916,0.31968,-0.92633,-0.17185,0.27421,-0.94617,-0.96338,-0.11112,0.24396,-0.97687,0.022156,0.21262,-0.9682,-0.14771,0.20188,0.59417,-0.073489,-0.80093,-0.82562,-0.40471,-0.39311,0.93933,-0.04059,0.34059,-0.73559,0.67,0.099948,0.88873,0.38984,0.24107,0.94653,0.22681,0.22932,0.95093,0.20972,0.22736,0.90396,-0.26835,-0.33287,0.83825,-0.31873,-0.44237,0.83157,-0.37739,-0.40748,-0.004822,0.28916,-0.95724,-0.42344,-0.099307,-0.90045,-0.36326,0.032868,-0.93109,-0.087954,-0.08594,-0.9924,0.77355,-0.20762,0.59871,0.55782,-0.039369,0.829,0.7684,-0.48665,-0.41557,0.68667,-0.5352,-0.49196,0.063204,-0.01999,-0.99777,0.86477,0.02234,-0.5016,0.92383,-0.055269,-0.37877,0.91018,-0.1569,-0.38328,0.04648,0.22578,-0.97305,0.17368,0.41902,-0.89117,0.25718,0.26768,-0.92853,0.1662,-0.19776,-0.96603,-0.016114,-0.10321,-0.99451,0.86187,0.17267,0.47679,0.80151,0.20777,0.56069,0.74993,0.072054,0.65755,0.35667,0.85525,-0.37587,0.22739,0.85345,-0.46892,-0.48204,-0.33012,-0.81155,-0.46181,-0.37806,-0.80233,-0.26078,-0.43931,-0.85962,-0.4272,0.90194,0.062777,-0.30921,0.9454,0.1026,0.87747,0.31095,0.36512,0.78643,0.43971,0.43373,0.54595,0.81695,0.18571,0.68758,0.68441,0.24244,0.68975,0.7167,0.10269,0.35191,0.93017,0.10437,0.36851,0.92871,0.04059,0.33812,0.94003,0.04416,-0.76907,-0.29472,0.56712,-0.60662,-0.12345,0.78533,-0.6943,-0.34947,0.62911,0.46455,-0.87548,-0.13297,0.14402,-0.98907,-0.030915,0.5674,-0.82171,0.053102,0.48073,0.86316,0.15427,0.33793,0.94113,0.002747,0.38835,0.9183,0.076785,-0.075838,0.026032,-0.99677,-0.083834,-0.068911,-0.99408,-0.10175,-0.099521,-0.98981,-0.36647,-0.0271,0.93002,-0.25611,-0.24561,0.9349,-0.37465,-0.047731,0.9259,-0.24137,-0.12854,-0.96185,-0.14017,0.019471,-0.98993,-0.97003,0.18589,0.15638,0.44444,0.88018,0.16645,0.48149,0.8713,0.094607,0.23411,0.94464,0.22977,-0.30937,0.50185,-0.8077,-0.28172,0.54991,-0.78622,-0.36247,0.47841,-0.79983,-0.35676,0.7466,-0.56148,-0.065584,0.77807,-0.62471,-0.075961,0.81564,-0.5735,-0.52281,0.66698,-0.53078,-0.32734,0.76287,-0.55751,-0.45479,0.59325,-0.66424,-0.90429,0.12821,0.40718,-0.97943,-0.079958,0.1851,-0.88968,-0.057161,0.45296,-0.92782,-0.034333,0.37135,-0.94043,0.11435,0.32014,-0.94986,-0.074984,0.30351,0.96506,-0.25465,0.061281,0.97256,-0.2288,0.041383,-0.88241,-0.088992,-0.46193,-0.96341,0.11234,-0.24329,-0.16962,-0.50493,-0.84631,-0.27921,-0.53777,-0.79546,-0.16199,-0.52779,-0.83377,-0.31059,0.49211,-0.81323,-0.11896,0.63991,-0.75915,-0.1659,0.64672,-0.74444,-0.49449,-0.098392,-0.86358,-0.29344,0.80355,-0.51787,-0.2985,0.80163,-0.51793,0.97006,-0.001007,0.24284,0.97104,-0.15998,0.17728,0.89172,-0.11444,0.43782,-0.16541,-0.25318,-0.95315,-0.44447,-0.3119,-0.83972,-0.20942,-0.19837,-0.95746,0.99332,-0.016511,0.11408,0.95663,0.28101,-0.076571,-0.11731,0.78335,-0.61037,-0.13657,0.68169,-0.71874,-0.15778,0.84133,-0.51692,-0.19388,0.84085,-0.50533,-0.37916,-0.10276,-0.91958,-0.36143,-0.14463,-0.92108,-0.21082,-0.14298,-0.96698,0.62178,-0.68056,0.38746,0.75744,-0.23591,0.60875,0.60085,-0.77279,0.20432,-0.30744,0.85037,-0.42698,-0.093692,0.85516,-0.50975,-0.070315,0.88571,-0.45881,-0.27839,0.91955,-0.2772,-0.24949,0.87893,-0.40645,0.35008,0.36058,0.86453,0.8927,-0.048585,0.44798,-0.92572,0.025666,-0.37733,-0.93796,-0.072024,-0.33912,-0.92315,-0.067965,-0.37834,0.2956,0.89523,-0.33338,0.31996,0.84784,-0.4228,0.17652,0.89013,-0.42009,0.99616,-0.08713,0.006409,0.97299,-0.17667,-0.1485,0.94388,-0.20048,0.2624,-0.75088,-0.44313,-0.48964,-0.72036,-0.33589,-0.6068,-0.74273,-0.41734,-0.52355,0.007508,-0.11106,0.99377,0.10108,0.27439,-0.95627,-0.19083,0.83352,-0.51845,-0.017426,0.90863,-0.41719,-0.08356,0.81896,-0.56768,-0.11136,0.19483,-0.97449,0.54927,0.22916,-0.80358,-0.55272,-0.25193,0.79437,-0.62743,-0.1876,0.7557,-0.57433,-0.43672,0.69237,-0.58907,0.76678,-0.25498,-0.23914,0.93432,-0.26426,-0.35585,0.89328,-0.27458,0.13553,0.87976,-0.45567,0.23173,0.88345,-0.40715,0.086184,0.83819,-0.5385,0.26057,-0.34077,0.90329,-0.030213,-0.41133,0.91098,0.19507,-0.39326,0.89846,-0.56746,-0.253,-0.78353,-0.62111,-0.1901,-0.76028,0.034486,0.32227,-0.94598,0.075045,0.24314,-0.96707,0.007599,0.9682,0.25004,0.21827,0.97559,0.02298,0.15714,0.97616,0.1496,-0.45711,-0.28825,0.8414,0.20658,-0.30488,0.92968,-0.59099,0.78811,0.172,-0.47078,0.87146,0.13745,0.066805,-0.29835,-0.95209,0.12348,-0.18979,-0.974,0.28281,0.95862,0.032197,0.037751,-0.90231,-0.42937,-0.043123,-0.9646,-0.26011,-0.74303,-0.27979,0.6079,-0.60759,-0.21668,0.76409,-0.75841,-0.27708,0.58992,-0.57769,-0.46544,-0.67052,-0.50459,-0.43983,-0.74288,-0.31471,-0.5165,-0.79632,-0.96808,0.17359,0.18076,-0.94586,0.25471,0.20103,-0.87896,0.18369,0.44005,-0.81771,0.27677,0.50469,-0.87417,0.20518,0.44011,0.87316,0.28575,0.39485,0.9332,0.20627,0.29423,0.89505,0.3097,0.32081,-0.83178,-0.17185,-0.52779,0.6487,-0.36543,-0.66753,0.56044,-0.22291,-0.7976,0.2823,-0.30717,-0.90881,0.35078,-0.7394,0.57463,0.19071,-0.72573,0.661,0.4438,-0.60042,0.66518,-0.90503,-0.16471,0.3921,-0.89447,-0.2118,0.39369,-0.93597,-0.10797,0.33509,0.60881,0.11829,-0.78442,0.60842,0.082919,0.78924,0.5938,0.097903,0.79861,-0.49834,0.84265,0.20393,-0.42332,0.89511,0.13987,-0.53545,0.8128,0.22938,-0.41621,-0.10553,-0.9031,-0.45137,-0.000458,-0.8923,0.85186,0.49483,-0.17148,0.71856,0.65096,-0.2447,0.78735,0.54668,-0.28489,-0.65334,-0.38911,-0.64937,-0.56377,-0.43599,-0.70147,0.60143,-0.24094,-0.76171,0.64901,-0.25056,-0.71831,0.75716,0.61577,0.21793,0.55715,0.70693,0.43565,0.79147,0.51634,0.32701,-0.098514,-0.2512,-0.96289,-0.082827,-0.29731,-0.95117,0.45296,-0.08594,0.88736,0.34675,-0.074984,0.93493,0.87426,0.18558,0.4485,0.86276,0.061617,0.50182,0.8909,0.18238,0.41594,0.23792,-0.033113,0.9707,0.11383,0.04294,0.99255,0.20435,-0.10532,0.9732,-0.9664,-0.071474,0.24677,-0.93631,-0.2205,0.27323,-0.98089,-0.086123,0.17432,-0.014222,0.314,-0.94931,-0.12256,0.16263,-0.97903,-0.096927,0.23484,-0.96716,-0.30158,-0.28275,-0.91052,-0.3076,-0.38063,-0.87204,0.62398,-0.43834,-0.64687,0.61769,0.11023,-0.77862,0.63851,0.1088,-0.76186,0.63384,0.23673,-0.73632,-0.041322,0.28773,-0.95682,-0.70464,-0.20508,-0.67925,-0.24488,0.041841,0.96863,-0.17286,-0.063906,0.98285,0.057711,-0.99301,0.10276,0.18317,-0.97674,0.11115,0.19425,-0.97693,0.088687,-0.9794,-0.19315,0.058718,0.57982,0.56798,0.58409,0.38865,0.70425,0.5941,0.4019,0.74224,0.53621,-0.68041,-0.44984,-0.57848,-0.72384,-0.42219,-0.5457,0.12922,0.8587,0.49589,0.11545,0.78607,0.60726,0.15421,0.84274,0.51573,0.048738,0.57146,0.81915,0.15305,0.48027,0.86364,-0.94891,0.18,0.2591,-0.85318,0.4062,0.32719,-0.76205,0.63222,0.13968,-0.34108,0.49355,0.80001,0.4395,0.45259,0.77587,0.53301,0.35856,0.76635,-0.099002,-0.40321,-0.9097,0.10062,-0.33637,-0.93631,-0.19312,-0.32029,-0.9274,0.27049,0.004608,-0.96271,0.012848,-0.074892,-0.9971,0.96194,0.05826,0.26688,0.9613,0.07828,0.26405,0.95245,0.022279,0.30381,-0.26911,0.42424,-0.86462,0.12207,0.46223,-0.87829,0.24662,0.51424,-0.82141,0.67589,-0.31678,0.66543,0.76165,0.50523,0.40568,0.72777,0.56792,0.38441,0.66393,0.69872,0.26633,-0.73217,0.45845,-0.50368,-0.2689,0.082614,0.95959,-0.18845,0.078799,0.97888,-0.2367,0.12351,0.96368,-0.90716,0.28648,0.30818,-0.88086,0.33808,0.33128,-0.98852,-0.13877,-0.059542,-0.99551,-0.094577,-0.000671,-0.99048,-0.1185,0.069613,0.81289,-0.051881,0.58007,0.91131,0.004639,0.41166,0.99384,-0.088809,0.065889,-0.94952,-0.19639,0.24457,-0.96475,-0.10865,0.23957,-0.96985,-0.062716,0.23545,0.84561,0.006623,-0.53371,0.8522,0.029542,-0.52232,0.83807,0.2855,0.46483,0.90213,-0.034822,0.42998,0.92618,-0.1612,0.34086,-0.9986,0.051302,-0.011353,-0.96847,0.040559,-0.24571,-0.98947,0.070986,-0.12604,-0.96808,0.040559,-0.24723,-0.7651,-0.54463,0.34346,-0.23307,-0.96902,0.081454,-0.61281,-0.78463,-0.093783,0.24699,-0.29566,-0.92279,-0.82336,0.34523,0.45039,-0.92535,0.23917,0.29405,-0.24876,0.74386,-0.62029,-0.14292,0.83371,-0.53334,-0.13059,-0.3853,0.91348,0.095065,-0.54326,0.83416,0.1167,0.67089,-0.73229,0.13431,0.63079,-0.76421,0.3495,0.48241,-0.80319,0.24805,0.40013,-0.88223,0.33998,0.34907,-0.87323,-0.7521,0.046083,-0.6574,-0.84109,0.0271,-0.54015,-0.75924,0.085452,-0.64516,-0.22779,-0.39399,-0.89041,-0.579,0.81198,0.07358,-0.84658,0.53121,-0.032533,-0.54894,0.67422,0.49403,0.86969,-0.002503,0.49355,0.7355,-0.16767,0.65642,0.74535,0.42149,-0.5165,0.61846,0.46138,-0.6361,0.56047,0.47145,-0.68084,-0.015961,0.69127,-0.7224,0.82427,-0.37837,-0.42113,0.799,-0.23429,-0.55376,-0.10666,-0.62355,0.77444,-0.21287,-0.18601,0.9592,-0.21049,-0.49315,0.84408,-0.97787,0.021119,0.20805,-0.98532,0.1529,0.075503,-0.94641,0.10987,0.30369,-0.12351,0.64727,-0.75216,-0.97287,-0.22324,-0.060305,-0.98627,-0.107,-0.12568,-0.93094,0.093173,0.35301,-0.95029,0.14637,0.27476,-0.92798,0.10285,0.35813,0.24976,0.86981,0.42543,-0.71328,-0.27397,-0.64507,-0.71001,-0.507,-0.48866,0.72433,0.089084,0.68364,0.67443,0.4854,-0.55632,0.78008,0.42128,-0.46254,0.4987,0.61269,-0.61309,-0.62865,-0.77255,0.0889,-0.50569,-0.82498,0.2523,0.32945,-0.94086,-0.079073,-0.27549,0.58882,-0.75982,-0.29106,0.48888,-0.82232,-0.24204,0.45817,-0.85525,0.94348,-0.15644,0.29212,0.94287,-0.25364,0.21583,0.40889,0.015778,0.91244,0.094546,-0.7889,0.60717,-0.021973,-0.4745,0.87997,-0.35536,0.042634,-0.93374,0.67751,0.30223,0.67049,0.64779,0.005066,0.76177,0.3654,0.92929,0.053499,0.24311,0.95791,0.15259,0.38008,0.91366,0.14408,0.14402,0.26981,-0.95205,0.12394,0.21546,-0.9686,-0.86016,0.16056,-0.48405,-0.91473,-0.10767,-0.38939,0.23313,0.2822,-0.93057,0.2432,0.39573,-0.88556,0.16141,-0.36051,-0.91867,0.070711,-0.28669,-0.95538,0.279,-0.96023,0.007447,0.15934,-0.98721,0.001312,-0.36143,-0.59459,-0.71819,-0.28639,-0.58,-0.7626,-0.36924,-0.48695,-0.7915,-0.93283,0.036744,0.35838,0.92154,0.037568,0.38643,-0.87561,-0.19864,0.44026,-0.76357,-0.13062,0.63234,-0.86868,-0.078402,0.48912,-0.33427,-0.44584,-0.83032,0.12513,-0.33796,-0.93277,-0.04709,-0.33772,-0.94003,-0.95297,-0.29106,0.084262,-0.96429,-0.24735,0.094455,-0.89691,0.30644,-0.31877,0.88656,-0.28504,0.3643,0.84536,-0.206,0.49284,0.84079,-0.21299,0.49763,0.81796,0.57122,0.068148,0.68221,0.70809,0.18207,0.37608,0.79714,-0.47227,0.82519,0.48109,-0.29588,-0.35206,-0.33741,-0.87301,-0.26777,-0.36815,-0.89035,-0.063448,0.19605,-0.97852,0.1851,0.31397,-0.93118,0.38249,0.45299,0.80526,0.28294,0.31602,0.90555,0.39088,0.43995,0.80844,0.25318,0.041658,-0.96649,0.011933,0.095248,-0.99536,0.68831,-0.31596,-0.65294,0.6726,-0.39384,-0.62645,0.42369,-0.38856,-0.8182,0.55434,0.099246,0.82635,0.3368,0.28755,0.89657,0.54994,0.26871,0.79077,-0.4774,-0.84591,0.23759,0.062746,-0.60543,0.79339,0.91363,0.17115,-0.36873,0.71172,0.32517,-0.62261,-0.11094,-0.26185,-0.95868,0.19935,-0.034883,-0.97928,-0.37178,-0.19117,-0.90841,0.85626,-0.40028,-0.32643,0.88559,-0.17011,-0.43214,0.82553,-0.41075,-0.38694,0.09418,-0.96359,0.25019,0.36894,0.42558,-0.82626,0.45421,0.40434,-0.79382,0.49492,0.26203,-0.82846,0.34001,0.71386,0.61217,0.172,0.62618,0.76043,0.089267,0.67037,0.73662,0.89572,0.44414,0.019745,0.91891,0.39427,0.009125,0.8847,0.46556,-0.022431,0.009583,0.16279,-0.9866,-0.26865,-0.077395,-0.96011,-0.13529,0.10337,-0.98538,-0.33561,0.1388,-0.9317,-0.19114,0.40367,-0.89471,-0.13053,0.35417,-0.92599,-0.36317,0.32978,-0.8714,0.56539,-0.56215,0.60357,0.80071,-0.28617,0.5262,0.82418,0.33796,0.45439,0.96435,-0.23783,0.11573,0.94415,-0.24763,0.21729,-0.61541,0.036195,0.78735,-0.68755,0.036531,0.72518,0.74224,-0.18098,0.64519,0.73571,-0.27073,0.62081,-0.95727,0.027894,-0.28776,-0.98007,-0.18763,-0.064882,-0.94476,-0.27598,-0.1767,0.66414,-0.68404,0.30161,0.73882,-0.60671,0.29322,0.68127,-0.37791,-0.62691,0.77633,-0.33897,-0.53139,0.86987,-0.30946,-0.38411,0.29408,-0.12146,-0.948,0.34281,-0.3824,-0.85803,0.34971,-0.36555,-0.86257,0.98337,-0.043489,-0.1763,0.57738,0.088626,-0.81161,0.80959,-0.18119,-0.55827,-0.25858,0.11252,-0.95938,-0.68603,0.084536,-0.72262,-0.23316,-0.21915,-0.94739,0.77349,-0.58733,-0.23811,0.93811,-0.1731,-0.29994,0.95196,-0.22019,-0.21274,0.90729,-0.40199,-0.12323,0.9599,-0.10602,0.25944,0.97372,-0.20759,0.093509,-0.46095,-0.30573,0.83306,-0.43071,-0.31272,0.84655,0.88226,-0.46663,-0.061678,0.87072,-0.36235,-0.33238,0.94793,-0.2945,0.12091,0.55577,-0.28709,0.78014,0.78463,-0.2375,0.57262,0.47673,-0.40031,0.78259,0.41624,0.19553,0.88797,-0.73095,-0.34391,-0.5894,-0.79098,-0.37501,-0.48338,-0.81228,-0.31617,-0.4901,-0.55696,0.67763,-0.48015,-0.59639,0.61605,-0.51451,-0.88403,-0.46422,0.054384,-0.87103,-0.32551,-0.36784,-0.91412,-0.34596,-0.21131,0.72765,0.6411,-0.24381,-0.38798,-0.34953,-0.85278,-0.62578,-0.39842,-0.67052,-0.40028,-0.31715,-0.85974,-0.99655,-0.000214,0.082614,-0.99756,-0.069521,-0.000793,-0.99933,0.030519,0.019532,-0.97943,-0.079714,0.18531,-0.99677,0.078799,0.015046,-0.9772,0.090091,0.19221,0.92444,-0.37739,-0.054323,0.71526,-0.61452,0.33274,0.88519,-0.42521,0.18857,0.68642,0.27061,0.67495,0.66955,0.40703,0.62126,0.40736,0.62914,0.66195,-0.5309,-0.23295,-0.81475,-0.35447,-0.19648,-0.91418,-0.48198,-0.084597,-0.87207,0.15006,0.13654,0.97919,0.73614,-0.13453,0.66329,0.37922,0.37999,0.84365,0.97455,-0.2223,0.027894,0.94742,-0.26951,0.17243,0.21033,0.79284,-0.57195,0.32453,0.7662,-0.55458,0.322,0.71285,-0.62297,-0.31553,0.49803,0.8077,-0.23685,0.47447,0.84777,-0.41865,0.90472,0.078555,-0.6169,0.68209,-0.39259,-0.60976,0.75201,-0.25022,0.95279,-0.30335,0.01117,0.96292,-0.26975,0.000519,0.98511,-0.15052,0.082858,0.97681,-0.19416,0.090091,0.96777,-0.2476,0.045656,0.2664,-0.43037,-0.86242,-0.38221,-0.53435,-0.7539,-0.37269,-0.48955,-0.78826,0.14972,0.078158,-0.98563,0.31468,0.23478,-0.91968,0.45937,0.19379,-0.86682,0.95688,-0.26783,-0.11222,0.94696,-0.27815,-0.16086,0.92425,-0.29386,-0.2436,0.53609,0.75912,-0.36918,0.6007,0.71154,-0.36448,0.75127,0.55211,-0.36155,-0.29899,0.34165,0.89099,-0.35557,0.40474,0.84243,-0.37074,0.48921,0.78942,0.11789,-0.35169,-0.92865,-0.094638,-0.29444,-0.95096,0.89111,-0.02353,-0.45314,0.87185,-0.18049,-0.45527,0.87304,0.26292,-0.41063,0.81262,0.31678,-0.48915,0.94516,-0.11747,0.30467,-0.91864,-0.07419,-0.38801,0.30232,0.4886,-0.81842,0.38548,0.38508,-0.8385,0.44615,0.44645,-0.7756,0.14643,0.4723,-0.86917,0.34877,0.42494,-0.83529,0.41658,0.4265,-0.80282,0.59935,-0.47002,-0.64791,0.67324,-0.35157,-0.65044,0.72955,-0.38493,-0.56526,-0.36128,0.63716,0.68078,-0.070284,0.46489,0.88257,-0.93014,-0.36326,0.053041,-0.90121,-0.43077,-0.04706,-0.9274,-0.17332,-0.33143,-0.27705,-0.44426,-0.85196,0.23951,0.62108,0.74621,0.60683,0.77831,-0.16108,0.69308,0.71993,-0.035524,0.55415,0.83227,-0.014435,0.53648,-0.29527,-0.79052,0.68554,-0.4351,-0.58367,0.61721,-0.33827,-0.71035,-0.27592,0.17252,-0.94556,0.72808,0.30644,-0.61315,0.26444,0.78423,-0.56124,-0.53124,-0.46434,-0.70861,-0.52403,-0.3972,-0.75338,-0.56194,-0.42003,-0.71258,-0.64733,-0.18598,0.73916,-0.81762,-0.24546,0.52077,0.55721,0.10669,0.82345,0.58364,0.65892,-0.47447,0.58663,0.67305,-0.45036,0.54552,0.78161,-0.30244,0.43797,0.86618,0.24061,0.6436,0.74917,0.15653,0.46828,0.86087,0.19889,0.61959,0.51595,0.59148,-0.14795,-0.74346,0.65218,0.13376,-0.56374,0.81503,0.15677,-0.23756,0.95862,0.10819,-0.49193,-0.86386,0.70281,0.2674,-0.65917,0.60692,0.38344,-0.69613,-0.97845,0.13926,-0.15223,-0.99744,-0.001617,0.071505,-0.95938,0.08005,-0.27046,0.12198,0.59471,-0.79458,0.83898,-0.53334,0.10773,0.87674,-0.44871,0.17307,0.17908,-0.26194,-0.9483,0.18369,-0.22971,-0.95575,0.17881,0.97528,0.12979,0.28056,0.95978,0.009217,0.10239,0.97626,0.19074,0.38966,-0.43245,-0.81307,0.3972,-0.40016,-0.82586,0.34578,-0.42314,-0.83746,-0.14908,0.39851,0.90494,-0.15674,0.53526,0.82998,-0.11841,0.36576,0.92312,-0.69631,-0.014374,-0.71758,-0.73168,0.00708,-0.68157,-0.63958,0.076724,-0.76485,-0.079318,-0.23649,-0.96838,0.18323,-0.11466,-0.97635,0.10608,-0.21958,-0.96979,0.15052,-0.13404,-0.97946,0.29719,0.86023,-0.41432,0.24247,0.80154,-0.54653,0.1973,0.8305,-0.52086,0.66366,0.38609,-0.64067,-0.46788,0.40992,0.78295,0.49019,-0.31724,-0.81179,0.23319,-0.24815,-0.94021,0.44093,-0.25739,-0.8598,0.007874,0.4001,-0.91641,-0.053987,0.2548,-0.96545,-0.11631,0.25575,-0.95969,0.48503,0.63237,0.60396,0.40937,0.6242,0.66539,0.52068,0.61489,0.59224,0.45164,0.58156,0.67656,0.52095,0.5952,0.61177,0.50905,-0.85784,0.070315,0.39818,-0.86642,0.30116,0.29316,-0.95514,0.041444,-0.15195,-0.48302,-0.8623,-0.50447,-0.36973,-0.78024,-0.12397,-0.83547,0.53533,0.12223,0.95486,0.2707,0.032624,0.94375,0.32896,0.5598,-0.090609,-0.82363,0.68483,-0.14469,-0.71416,0.23167,-0.31474,-0.92047,-0.001923,-0.37364,-0.92755,-0.004212,-0.40309,-0.91513,-0.67232,-0.35872,-0.64751,-0.6288,-0.32551,-0.70614,-0.73278,-0.382,-0.5631,-0.67876,-0.32865,-0.65667,-0.62746,-0.44377,-0.63976,-0.026124,-0.33842,-0.94061,-0.17011,-0.30079,-0.93838,-0.13605,-0.37703,-0.91614,-0.95795,0.13294,0.25425,0.43739,0.63347,0.63823,0.5378,0.35493,0.76467,0.27717,0.38807,0.87893,-0.57607,-0.25516,-0.77651,-0.23988,0.3346,0.91128,-0.63021,-0.10929,-0.76867,-0.63869,-0.31785,-0.70071,0.19059,0.61269,-0.76696,0.15271,0.63979,-0.7532,0.099582,0.57064,-0.81512,0.77761,-0.55895,-0.28785,0.97201,0.14594,0.18406,0.94653,0.22626,0.22984,0.93732,0.18543,0.29499,-0.36274,0.88687,0.28608,-0.4604,0.86306,0.20765,-0.34361,0.92578,0.15754,0.92904,-0.36448,-0.063112,0.83282,0.070589,0.549,-0.16187,-0.46284,-0.87152,-0.30058,-0.42003,-0.85626,-0.38298,-0.3003,-0.87356,-0.88717,-0.1634,-0.4315,-0.8634,-0.21131,-0.45808,0.30439,-0.006867,-0.95251,0.16114,0.1854,-0.96933,0.47993,0.74355,0.46553,0.44203,0.80111,0.40346,0.37843,0.75915,0.52956,-0.42375,0.27961,-0.86151,-0.92132,0.14127,0.36219,-0.91842,-0.38514,0.090182,-0.9353,-0.35368,-0.008332,0.069399,-0.287,-0.95538,-0.35493,-0.32194,-0.87768,-0.35475,-0.40687,-0.84176,-0.27424,-0.21833,-0.93652,-0.72256,0.38545,0.57381,0.91614,0.018952,-0.4004,0.97784,0.010315,-0.20902,0.85574,0.10266,-0.50706,0.90857,-0.19706,0.3683,0.97794,-0.066469,0.19794,0.9874,-0.098636,0.12366,0.96097,-0.14566,0.23508,0.73751,-0.24546,-0.62911,0.82678,-0.391,-0.40437,0.9902,0.047273,0.1312,0.98047,-0.065004,0.18552,0.99503,-0.006012,0.099307,0.98669,0.0889,0.13599,0.9501,0.30522,-0.064028,0.75601,0.10657,-0.6458,0.53755,0.83783,0.095096,0.56975,0.76595,0.29771,0.94928,0.30741,-0.065798,0.99716,0.054231,-0.051729,0.94131,0.16276,0.2956,0.89682,-0.10569,0.42955,0.94754,-0.030854,0.31812,-0.98028,0.18824,0.059816,0.32112,0.92651,0.19596,0.19785,0.98013,0.013398,-0.40471,0.25922,-0.87692,-0.6227,0.13752,-0.77026,-0.68395,0.2288,-0.69268,-0.45192,-0.27488,-0.84863,-0.50496,-0.29337,-0.81173,0.29463,-0.67254,0.67885,-0.99509,-0.076388,0.062471,-0.99005,-0.129,0.056063,-0.99063,-0.030549,0.13297,-0.12583,0.9555,-0.26673,-0.19239,0.96002,-0.20325,0.077242,0.88076,0.46718,0.26112,0.8746,0.40849,0.19996,0.84686,0.49275,-0.032044,0.97159,0.23438,0.22959,0.69961,0.67659,-0.22681,0.83459,0.50197,0.95584,-0.094302,0.2783,0.94311,-0.13749,0.30259,-0.27485,-0.15122,-0.94949,-0.32447,-0.36729,-0.87164,0.79241,-0.32225,0.51787,0.64211,-0.19385,0.74166,0.69845,-0.24305,0.67312,0.59328,-0.42524,0.68346,0.59273,-0.5971,0.54048,0.31208,-0.66714,0.67635,0.49849,-0.83648,0.22752,0.51457,-0.74309,0.42775,0.70199,0.24766,-0.66771,0.79974,0.085177,-0.59423,0.05475,0.51265,-0.85681,-0.26331,-0.52995,-0.80609,-0.4048,-0.26942,-0.87377,-0.74966,-0.09064,-0.65554,-0.85119,-0.11136,-0.51283,-0.72433,0.072481,-0.6856,0.49864,0.76861,-0.40068,0.96078,-0.015564,-0.27677,0.96686,-0.082003,-0.24171,0.96796,0.012391,-0.2508,-0.4406,-0.49025,-0.75198,-0.22318,-0.42088,-0.87921,0.42476,-0.008576,-0.90524,0.38072,-0.25684,-0.88827,0.35246,-0.42439,-0.83404,-0.14011,0.98553,0.095187,-0.045656,0.99466,0.092257,-0.072726,0.99698,0.026124,0.49788,0.86721,-0.001892,0.60457,0.79647,-0.008209,0.48277,0.8703,-0.097201,0.52547,0.42402,-0.73757,0.61321,0.48244,-0.62545,0.47127,0.40034,-0.78585,0.20344,0.95492,0.21613,0.089084,0.96075,0.26261,-0.020447,-0.71807,-0.69564,-0.19889,-0.63454,-0.74682,-0.23829,-0.77502,-0.58525,0.85946,-0.42515,0.28379,0.83285,-0.37828,0.40397,0.91665,-0.3596,0.17438,0.25797,0.45708,0.85116,0.17402,0.54579,0.81964,0.438,0.14161,0.88772,0.95437,-0.28916,0.074221,0.51875,-0.14115,0.84317,0.21427,0.16565,-0.96262,-0.99557,-0.037996,0.085696,-0.98404,0.14216,0.10691,-0.97156,0.16657,0.16813,-0.86972,0.14252,0.47249,-0.91675,0.25459,0.30778,-0.88067,0.26795,0.39064,-0.13605,0.079867,-0.98746,-0.051149,0.24393,-0.96841,-0.12336,0.22919,-0.96551,-0.81564,0.38511,0.43174,0.47517,0.37648,0.79525,-0.80254,-0.41145,-0.43196,-0.16047,0.30509,-0.93869,0.9342,-0.34629,0.085482,0.93368,-0.35594,-0.038759,0.96454,-0.25132,0.080233,-0.1395,0.9534,-0.26746,-0.043947,0.95224,-0.30213,0.055147,0.97595,-0.21076,0.2139,-0.77441,0.59539,0.023957,-0.81106,0.58443,-0.16935,0.20414,-0.96417,-0.010712,0.35868,-0.93338,-0.78689,0.20359,0.58251,-0.82238,0.052492,0.56645,0.38383,-0.38853,-0.83767,0.19636,-0.46025,-0.86578,0.22202,-0.46538,-0.85678,-0.52693,0.83071,-0.17942,-0.24396,0.92944,0.27668,-0.17924,0.87973,0.44035,0.95563,0.1088,0.27372,0.95505,0.008179,0.29627,0.97735,0.19303,0.086459,0.91153,-0.21476,0.35063,0.90451,-0.29301,0.30973,-0.78014,-0.37767,0.4987,0.53972,-0.51726,-0.66417,0.56114,-0.141,-0.81561,-0.32987,-0.4387,-0.83587,0.22846,0.51768,-0.82449,0.22471,0.45357,-0.86239,0.47243,0.40736,-0.78155,0.42454,0.56298,-0.70907,0.61849,0.47847,-0.62331,0.29966,0.95257,0.052736,0.42683,0.88604,0.18085,0.25575,0.96323,0.081973,-0.98257,0.18516,-0.014863,-0.98074,0.086367,-0.17502,-0.98746,0.13224,-0.08594,0.32875,0.39531,-0.85769,0.19401,0.54573,-0.81515,0.41246,0.80236,0.43132,0.51442,0.81674,0.2613,0.54701,0.77746,0.31031,-0.43736,-0.46458,-0.76995,-0.52232,-0.2953,-0.79995,0.99381,0.002014,0.111,0.95593,0.016266,0.2931,0.96939,-0.12632,0.2104,0.89352,-0.067324,0.44389,0.91079,-0.14725,0.38566,-0.95093,-0.30528,-0.049867,-0.96356,-0.167,-0.20884,-0.949,-0.16785,-0.26676,-0.81942,0.26936,0.50591,-0.41142,-0.31355,-0.8558,-0.43696,-0.45042,-0.77856,-0.55248,-0.54183,-0.63335,-0.71215,0.30595,0.63179,-0.35398,-0.18238,0.91726,-0.46736,-0.15867,0.86969,-0.26069,-0.14643,0.95422,0.32954,0.099124,0.9389,0.18296,0.56111,-0.80724,0.09415,0.51018,-0.85489,0.058687,-0.96667,-0.24912,-0.12485,-0.96603,-0.2262,0.056093,-0.89373,-0.44502,0.47939,-0.34748,-0.80584,0.67928,-0.23359,-0.6957,0.74844,-0.21638,-0.62688,-0.73714,-0.44404,-0.50929,-0.8348,-0.45283,-0.31306,-0.99884,-0.0347,-0.032533,-0.99268,-0.024781,-0.11808,-0.98608,-0.12507,-0.10941,-0.83682,-0.36848,-0.40489,-0.63253,-0.30387,-0.71242,-0.83947,-0.25468,-0.47996,0.27882,0.83587,-0.47279,0.058901,0.72021,-0.69121,0.17988,0.85659,-0.48357,-0.73992,0.34446,0.57778,-0.68868,0.43617,0.57915,-0.78079,0.41539,0.46666,-0.81881,0.57402,-0.005799,-0.94498,0.31227,0.097446,0.80526,-0.28925,0.51753,0.78164,-0.32676,0.53124,0.72478,-0.41261,0.55171,0.61022,-0.42744,0.66698,0.18497,-0.55431,0.81146,-0.55504,-0.40284,-0.72774,-0.49321,-0.37489,-0.78497,0.59267,0.26041,-0.76217,-0.21696,0.3798,-0.89923,-0.3119,0.34516,-0.88516,-0.22968,0.26844,-0.93548,-0.43056,-0.3997,-0.8092,-0.62581,-0.38774,-0.67675,-0.56789,-0.36781,-0.73635,0.8988,-0.16028,0.40794,0.91781,-0.3896,0.07593,0.90606,-0.38978,0.16459,-0.50301,-0.26945,-0.82119,-0.67171,-0.28077,-0.68551,-0.7072,-0.50353,-0.49626,-0.3835,-0.44108,-0.81137,-0.17808,-0.36155,-0.91516,-0.12091,-0.48466,-0.86627,0.29905,-0.10187,0.94876,-0.064882,0.20393,0.97681,0.19095,0.19062,-0.96289,0.2591,0.18159,-0.94861,0.25144,0.26945,-0.92959,-0.49992,-0.23527,-0.83346,0.2382,0.96136,0.13782,0.28379,0.93103,0.22932,0.37611,0.318,0.87027,0.37443,0.28364,0.88278,0.35585,0.41789,0.83587,0.19126,0.2273,-0.95483,-0.10038,0.37135,-0.92303,-0.35722,0.21455,0.90902,-0.66729,0.39192,0.63329,0.6024,-0.15793,-0.78237,0.7846,-0.25285,-0.56606,0.18806,0.39119,-0.90088,0.30705,0.28544,-0.90783,0.074435,0.49812,-0.86389,0.54723,-0.27061,-0.79199,0.71438,-0.22666,-0.66201,-0.043977,-0.56481,-0.82403,-0.95642,0.014679,-0.29154,-0.95685,0.082919,-0.27839,-0.71712,-0.3697,-0.59078,-0.73132,-0.19925,-0.65224,0.52681,0.56829,-0.63204,0.62575,0.51759,-0.58351,0.60176,0.55089,-0.5782,0.57686,-0.077822,-0.8131,0.8977,-0.31916,0.30369,0.92566,-0.37486,0.051271,0.023774,-0.3712,0.92822,-0.12055,-0.70968,0.69411,0.17511,-0.60826,0.77413,-0.077761,0.9968,0.01822,-0.099582,0.99371,-0.050874,-0.79498,-0.15302,-0.58696,-0.70708,-0.30833,-0.63631,-0.54228,-0.24665,-0.80316,0.51714,0.55159,-0.65441,0.49318,0.47044,-0.73171,0.3592,0.48662,-0.79632,0.12583,-0.29746,-0.94638,-0.17145,-0.37275,-0.91192,0.29417,-0.71981,0.62871,0.19633,-0.42482,0.88369,-0.61757,0.13086,0.77554,0.7131,-0.35679,-0.60341,0.70235,-0.39714,-0.59069,0.7965,-0.45137,-0.4022,-0.74883,-0.25361,-0.61226,-0.64306,-0.16556,-0.74767,0.85489,-0.34712,0.38557,0.95502,-0.1742,0.23994,0.92712,-0.28013,0.24888,0.76336,0.41475,0.49516,-0.28663,0.03412,-0.95743,0.029847,0.15607,-0.98727,-0.46922,0.081973,-0.87924,0.95248,0.10022,-0.28752,0.32139,-0.43086,-0.84323,-0.048524,-0.41676,-0.90768,0.95142,-0.04413,0.30467,0.91491,-0.047182,0.40086,0.99844,-0.054689,0.009278,-0.004578,-0.25169,-0.96777,0.89126,-0.05237,0.45039,0.44441,-0.7308,0.51805,0.52687,-0.72063,0.45061,-0.79943,-0.18088,-0.57283,-0.8385,-0.16221,-0.52013,-0.088687,-0.42766,-0.89956,0.25062,-0.13538,-0.95856,0.20969,-0.025697,-0.97742,0.67336,-0.3925,-0.62648,0.61174,-0.46199,-0.64208,0.63613,-0.4405,-0.63344,0.82571,-0.35145,-0.44115,0.69524,-0.44285,-0.56609,0.64321,0.40855,0.64757,0.58876,0.33747,0.73446,-0.002167,-0.007477,-0.99997,-0.080172,0.13593,-0.98746,0.057985,-0.006439,-0.99829,-0.91385,0.24738,0.32194,0.64486,0.047395,-0.76281,0.75213,-0.013092,-0.65883,0.66539,-0.51375,0.54152,0.71996,-0.48573,0.49565,0.70843,-0.55168,0.44014,-0.73916,-0.37645,-0.55846,-0.50133,-0.42772,-0.75213,0.89935,-0.4087,0.15525,0.92947,-0.24088,-0.27931,0.56859,0.77355,0.27979,0.59728,0.76779,0.23176,-0.35682,-0.89895,-0.25404,-0.40019,-0.85543,0.32868,-0.61354,-0.75216,0.2403,-0.88614,-0.46293,0.020539,-0.89349,-0.44774,0.034577,-0.94894,-0.30924,0.061861,-0.53566,0.10224,0.83819,-0.49687,-0.000641,0.86779,-0.47453,0.14377,0.8684,0.81546,-0.13486,0.56285,0.75173,-0.25706,0.60726,0.89114,-0.18302,0.41511,-0.90075,-0.39659,-0.17692,-0.69521,-0.41166,-0.58919,-0.70821,-0.43788,-0.55376,-0.84042,-0.53578,0.08121,-0.92984,-0.054476,-0.36387,-0.92221,0.11737,-0.36842,-0.95978,0.043703,-0.27726,0.7701,-0.20908,0.60262,0.11145,0.34004,-0.93378,0.39985,0.28361,-0.87158,-0.087893,0.3867,-0.918,-0.080142,0.04358,-0.99582,0.065523,0.01825,-0.99768,-0.92959,-0.36454,-0.054292,0.94519,-0.32627,0.011292,0.21607,0.93838,0.26966,0.22266,0.94183,0.25169,0.18241,0.88049,-0.43748,0.23997,0.88592,-0.39689,0.17103,0.90005,-0.40077,0.85424,-0.03412,0.51872,0.051241,-0.40226,-0.91406,0.05594,-0.47212,-0.87973,0.22889,-0.3845,-0.89425,0.81329,-0.33497,0.47572,0.75051,-0.36097,0.55351,-0.99484,-0.097995,0.0253,-0.98947,-0.13202,-0.059145,-0.99585,-0.063723,-0.064852,-0.98547,-0.1652,0.039216,-0.99432,-0.093539,0.050233,0.42274,0.65129,0.63012,0.47389,0.62764,0.6176,0.60518,0.47447,0.63921,0.80993,-0.42406,0.40513,0.032136,-0.21833,-0.97534,-0.40071,-0.27397,-0.87426,0.58251,0.57497,0.57448,0.62673,0.27876,0.72762,-0.51918,0.45949,0.7206,-0.59999,0.28333,0.74813,-0.61443,0.35002,0.70705,0.96054,0.094974,0.26139,0.86404,-0.25532,-0.43385,0.78192,-0.32279,-0.53325,0.8345,-0.25883,-0.4864,0.77825,0.55812,0.28773,0.70974,0.6527,0.26496,0.95886,0.25492,-0.12467,0.090396,0.47166,-0.8771,0.96716,0.010681,0.25388,0.89386,-0.28614,0.34507,0.88201,-0.258,0.39427,0.35621,0.77801,-0.51747,-0.086673,0.98572,0.14423,-0.007385,0.99414,0.1077,-0.99683,-0.025025,0.075198,-0.99972,0.022217,-0.003449,0.94174,-0.23478,0.2407,-0.50642,-0.15015,-0.84909,-0.30702,-0.34452,-0.88714,-0.88327,0.31196,0.34999,-0.79049,0.45411,0.41093,-0.75396,0.52428,0.39573,-0.42979,0.15323,0.8898,-0.46922,0.094272,0.87802,-0.67934,0.48701,0.54885,-0.27458,0.23463,-0.93246,-0.2309,0.1543,-0.96063,-0.1063,0.33351,-0.93671,-0.9483,-0.098025,0.3018,-0.96991,0.044191,0.23933,-0.90963,0.073824,0.40876,0.84994,-0.48131,-0.21421,0.88263,-0.33827,-0.32637,0.82385,-0.51317,-0.24061,-0.21842,-0.19977,0.95517,-0.4109,-0.071505,0.90884,-0.219,0.17109,0.96057,-0.96768,0.18842,0.16739,-0.95679,0.085513,0.2779,-0.98969,0.036195,0.13843,-0.059816,-0.22785,-0.97183,-0.79992,-0.10752,-0.59035,-0.72433,0.026887,-0.68889,-0.73376,0.075228,-0.67522,-0.67486,0.51991,-0.52367,-0.72408,0.46431,-0.50996,-0.72982,0.44282,-0.52077,-0.15113,-0.031831,-0.98798,-0.1529,0.074465,-0.98541,-0.20292,0.8179,-0.53835,-0.27454,0.80529,-0.52544,0.17707,0.89883,0.40089,-0.3549,0.33931,-0.87115,0.86615,-0.054292,0.49678,-0.27986,-0.65523,0.70165,-0.76617,-0.37477,0.52202,0.34828,-0.17594,0.92071,0.17365,-0.10044,0.97964,0.27329,-0.099094,0.95679,0.73998,-0.60802,0.28758,0.57906,0.803,0.14081,0.62227,0.75091,0.22105,0.50636,0.84286,0.18213,0.26118,0.95639,0.13062,0.34748,0.93576,0.059603,0.42064,0.87143,0.2523,0.91629,-0.3928,0.078005,0.18485,-0.14569,0.97189,0.053438,-0.35444,0.93353,0.29054,-0.18964,0.93786,-0.6209,-0.12165,-0.77438,-0.43498,-0.13395,-0.89041,-0.44539,-0.47041,-0.76177,-0.40977,-0.3921,-0.82357,0.29865,0.9523,-0.062319,0.2234,0.95279,-0.20557,0.55498,0.82022,-0.13855,-0.68783,-0.31413,0.65435,-0.038484,-0.52919,0.84759,0.56505,-0.57076,-0.59575,0.27009,-0.39024,-0.88018,0.52947,-0.45839,-0.7138,0.55055,0.81607,0.17576,0.58306,0.77334,0.24885,0.045198,-0.1337,-0.98996,0.09891,-0.26951,-0.95788,0.07062,-0.13709,-0.98801,0.10462,-0.10868,0.98852,0.40169,-0.095492,0.91076,0.33821,-0.41951,0.84237,0.98889,0.02826,0.14573,0.98752,-0.14191,0.067965,0.99472,-0.003906,0.10236,0.99612,0.015625,0.086489,0.95126,-0.054079,-0.30357,0.92041,-0.071749,-0.38429,0.44993,0.65999,0.60161,-0.41874,0.071169,0.90527,0.28602,0.94662,0.1485,-0.83822,-0.002472,-0.54527,-0.09122,0.55593,-0.8262,0.033815,0.89807,0.43849,0.019868,0.91891,0.3939,-0.010895,0.90124,0.43315,-0.37669,0.28666,0.88086,-0.44447,0.081515,0.89206,-0.41502,0.24519,0.87613,0.29563,0.036439,0.95459,-0.2927,0.3582,0.88656,0.40031,0.052889,0.91482,-0.94845,-0.31263,-0.051515,-0.96048,-0.27512,-0.041627,-0.99612,-0.082614,-0.029298,-0.98587,-0.088382,0.14213,0.33122,0.57219,-0.75024,0.37284,0.48741,-0.78951,0.27311,0.50743,-0.81722,-0.74773,-0.31529,-0.58434,-0.77782,-0.38795,-0.49437,-0.12931,0.14484,-0.98096,-0.29728,0.13367,-0.94537,-0.22364,0.049745,-0.97339,-0.91092,-0.12052,0.39451,0.93561,0.00766,0.35289,0.91049,-0.1146,0.39729,0.58776,0.78344,0.20179,0.56163,0.8088,0.17417,-0.85714,0.22742,0.46211,-0.28239,0.077639,-0.95611,-0.25617,0.31819,-0.91275,0.054109,0.8938,-0.44514,0.33433,-0.088595,0.93826,0.33497,0.085543,0.93832,-0.83068,0.055025,0.55397,-0.89551,-0.016663,0.44472,-0.86975,0.10639,0.48183,-0.32646,0.59145,-0.73727,0.87054,0.19627,0.45122,0.34159,-0.39595,-0.85235,0.45848,-0.53777,-0.70751,-0.28462,0.65526,0.6997,-0.61754,-0.22126,-0.75472,-0.64873,-0.23335,-0.72433,-0.62816,-0.24216,-0.7394,-0.51668,0.16462,0.84018,-0.52998,-0.006409,0.84796,-0.60375,0.004028,0.79714,0.80978,-0.32957,0.4854,-0.083621,-0.091067,-0.99231,-0.14249,-0.05179,-0.98843,0.90997,0.40007,-0.10892,0.7824,0.61736,0.081545,0.87442,0.48222,-0.052828,-0.28233,-0.36738,-0.88617,0.045991,-0.34486,-0.9375,-0.28541,-0.49296,-0.82186,0.96463,0.081545,-0.25065,0.98535,0.089694,-0.14484,0.33277,0.90072,-0.27915,0.88229,0.04059,0.46895,0.90106,-0.10926,0.41963,0.83734,-0.26426,0.47853,0.93838,-0.28672,0.19285,-0.37779,0.28165,0.88199,-0.46397,0.41102,0.78469,-0.57222,0.22764,0.78783,-0.51592,0.75494,-0.4048,-0.49657,0.76998,-0.40059,-0.10871,-0.94797,-0.29914,-0.33171,-0.74508,-0.5786,0.92801,-0.082095,0.36332,0.91995,-0.32276,0.22236,0.89358,-0.198,0.40278,0.94687,-0.15043,0.28419,0.92593,0.055147,0.37361,0.95749,-0.086856,0.27506,-0.60701,-0.62929,0.48528,-0.70885,-0.52455,0.47154,-0.73315,-0.62734,0.26246,-0.67327,0.44453,0.59081,-0.61757,0.53233,0.57891,-0.50566,0.47475,0.72033,-0.66012,0.4597,-0.59404,-0.67391,0.41057,-0.61418,-0.6621,0.42946,-0.61412,0.70663,-0.42537,-0.56542,0.85971,-0.34986,-0.37208,0.92584,-0.24244,-0.2898,-0.062166,0.21873,-0.97379,0.15229,0.002319,-0.98831,0.387,-0.40004,-0.83074,0.29582,-0.39619,-0.86917,0.14493,0.91546,0.37535,0.43577,0.88201,0.17921,0.48485,0.86291,0.14243,0.12583,0.066775,-0.98978,0.05475,-0.032868,-0.99796,0.92355,0.13782,-0.35783,0.96676,0.069002,-0.2461,0.94839,-0.001923,0.31703,0.94778,0.009247,0.31873,0.92877,0.073824,0.36317,-0.71429,0.31208,0.62639,-0.8327,0.19672,0.51753,0.54698,-0.36232,-0.75463,0.38838,-0.41896,-0.82073,-0.84784,-0.097446,-0.52116,-0.70098,-0.34098,-0.62633,0.90542,0.095614,0.41359,0.86999,0.051271,0.49037,0.91073,0.077761,0.40559,-0.40428,-0.28376,-0.86947,-0.12207,0.89444,-0.43019,-0.18122,0.87417,-0.45045,-0.1569,0.88574,-0.43681,-0.63585,-0.35579,-0.68487,-0.46165,-0.26505,-0.84652,-0.58287,-0.37803,-0.71923,0.085482,-0.35224,-0.93197,0.003479,-0.36549,-0.93078,0.38295,-0.59047,0.71038,0.5363,-0.29942,0.78909,0.59624,-0.21296,0.77401,0.44655,0.661,0.60301,0.39317,0.72143,0.57003,0.3567,0.74471,0.56401,0.71276,-0.36851,-0.59679,0.85659,-0.22837,-0.46263,0.80941,-0.41908,-0.41133,-0.7235,-0.44893,-0.5244,-0.52965,-0.33903,-0.77749,-0.53957,-0.55864,-0.62987,0.50835,0.089633,0.85644,-0.73708,-0.061129,-0.67299,0.32847,0.3029,0.89462,0.054506,0.25489,-0.96542,0.01297,0.16019,-0.98697,0.16361,0.16523,-0.97256,-0.074099,-0.49202,-0.8674,-0.10807,-0.55251,-0.82644,-0.32121,-0.52767,-0.78634,0.29759,-0.75893,-0.57912,0.34556,0.92001,0.18473,0.22068,0.96286,0.1554,0.37309,0.90677,0.19623,0.18262,0.15476,-0.97092,0.26399,-0.01883,-0.96432,0.67037,-0.26063,-0.69469,0.47612,-0.20988,-0.85394,0.58971,-0.30897,-0.74615,-0.34034,0.93442,0.10486,-0.80877,-0.13694,-0.57195,0.9346,-0.35139,0.054903,0.82232,-0.55998,-0.10083,0.73696,-0.67531,0.028016,0.58702,-0.80761,0.056032,0.85403,0.39503,-0.33842,0.80459,0.46974,-0.3632,0.29789,-0.15195,0.94241,0.20621,-0.11548,0.97165,0.096347,-0.40815,0.9078,-0.50426,0.030061,0.863,-0.33937,0.9198,0.19694,0.95373,0.091739,0.28626,0.95083,0.031343,0.30808,0.91085,0.3148,0.26688,0.91409,-0.11383,-0.38914,0.88333,-0.092746,-0.45946,0.20408,0.97885,0.012513,-0.21693,0.4955,-0.84106,0.05475,0.15613,-0.98621,0.97177,-0.23505,-0.018586,0.99148,-0.090701,0.093142,0.89648,0.32768,-0.29813,0.95245,0.17316,-0.25062,-0.018433,-0.26237,-0.96478,0.1634,0.52028,0.83819,0.37977,0.35746,0.85321,0.080325,0.24308,0.96664,0.42775,-0.42991,-0.7951,0.53651,-0.47612,-0.69671,0.11057,0.18732,-0.97604,0.057588,0.24387,-0.96808,0.19852,0.23066,-0.95254,0.062929,0.18467,-0.98077,-0.10523,0.1915,-0.97583,0.53563,-0.41856,-0.73339,0.6227,-0.094821,-0.77667,0.71416,-0.12458,-0.68877,0.72185,-0.63411,0.27708,0.87042,-0.42259,0.25245,0.92703,0.057741,0.37043,0.059572,-0.66253,0.74664,0.38212,-0.84262,0.37941,-0.80001,-0.35472,-0.48384,-0.93551,0.12928,0.32878,-0.93045,0.020386,0.36583,-0.98794,0.12738,0.087741,-0.944,0.23551,0.23103,-0.38813,0.49547,0.77703,-0.01059,0.50401,0.86361,0.96728,-0.23847,0.086459,0.965,-0.17353,-0.19651,0.68035,0.43568,0.58928,0.17612,0.9031,-0.39155,-0.2006,0.24839,-0.94763,0.074496,0.37391,-0.92444,-0.91253,-0.15684,-0.3777,-0.82028,-0.14631,-0.55287,-0.62856,0.39161,0.67193,-0.63845,0.32038,0.69979,-0.5298,0.16254,0.83236,-0.82147,-0.24748,-0.51369,-0.85656,-0.30891,-0.41331,-0.21195,0.57698,0.78875,-0.42171,0.27558,0.86383,-0.1323,0.65737,0.74184,0.46468,0.6531,0.59792,0.26786,-0.48524,-0.8323,0.1847,-0.50859,-0.84094,0.18995,-0.44404,-0.87561,0.7036,0.33589,0.62615,0.84146,0.24909,0.47945,-0.8815,-0.25983,-0.39418,-0.99823,-0.045991,-0.037568,-0.98883,-0.072848,0.12983,0.58589,-0.40507,-0.70183,0.77276,-0.38484,-0.50465,0.75054,0.35914,0.55464,0.75631,0.44176,0.48253,0.58309,-0.66485,0.46687,-0.94995,-0.14371,-0.27735,0.31019,0.26652,0.91253,0.22294,0.22019,0.94961,0.27992,0.14219,0.9494,0.99051,-0.12726,-0.051729,0.99014,0.13706,-0.027833,0.98679,-0.14188,0.078158,0.80389,-0.31825,-0.50243,0.52672,-0.3856,-0.75753,0.98425,-0.050508,0.16935,0.066378,0.80209,-0.59349,0.13883,0.62062,-0.77169,0.85162,-0.48524,-0.19813,0.80557,-0.51341,-0.29566,0.84048,-0.47923,-0.25272,-0.59999,0.6469,-0.47063,-0.53157,0.7741,-0.3437,-0.58797,0.69488,-0.41401,0.83816,-0.16117,-0.52101,0.83773,-0.31797,-0.44392,-0.562,-0.18619,-0.80587,-0.50704,-0.065859,-0.85937,0.060183,-0.001465,0.99817,-0.062136,-0.34513,0.93646,-0.12793,-0.23188,0.96426,0.94958,-0.11374,0.29206,0.96478,-0.07712,0.25147,0.94864,-0.014985,0.31596,0.77151,-0.29701,-0.56261,0.89557,-0.41133,-0.16947,0.86642,-0.36439,-0.34132,0.052644,0.27592,-0.95972,-0.057863,0.21925,-0.97394,0.69768,-0.35386,-0.62285,-0.044038,-0.49019,-0.87048,0.22608,0.9715,0.070986,0.30339,0.95257,0.023103,0.30949,0.94412,0.11313,0.18305,0.93298,0.30985,-0.60799,-0.19712,0.76907,-0.43159,-0.14148,0.8909,-0.5761,-0.15738,0.80206,0.93649,-0.18931,0.29514,0.91375,-0.081118,0.39802,0.98334,-0.072237,0.16669,0.96838,-0.1684,0.18393,0.91571,0.04239,0.39952,0.55583,-0.25581,-0.79092,0.064943,0.068911,-0.99548,-0.12922,0.79858,-0.58782,-0.16236,0.82611,-0.53957,-0.17228,0.81112,-0.55888,0.1554,-0.12067,-0.98044,-0.15555,-0.14676,-0.97684,0.45643,-0.31739,-0.8312,-0.009552,-0.18351,-0.98294,-0.48695,0.49382,0.72039,0.53874,0.10904,-0.83535,0.43992,0.10785,-0.89151,0.29457,-0.060701,0.95367,0.004425,-0.38545,-0.9227,0.8298,-0.30695,-0.46602,0.7719,-0.24604,-0.58617,-0.83428,-0.27665,-0.47682,-0.77682,0.063143,-0.62651,-0.81961,-0.39787,-0.41215,-0.89773,0.20939,0.38752,-0.91702,0.25932,0.30293,-0.88082,0.25181,0.40086,-0.9668,0.23899,0.090182,-0.94162,0.32743,-0.077944,0.56267,0.048891,0.82522,0.49986,-0.24116,0.83184,0.61922,-0.067751,0.78225,0.95303,0.15439,0.26044,0.72488,-0.005524,-0.6888,0.59041,0.064394,-0.8045,0.83273,-0.035737,-0.55251,0.58538,-0.071383,0.80758,0.7477,-0.40104,0.52919,0.67037,-0.35002,0.65426,-0.36171,0.62008,-0.69616,-0.28135,0.71438,-0.64067,0.91577,0.034913,0.4001,0.89517,0.067232,0.44056,0.89419,0.10038,0.43623,-0.4297,0.52425,0.73516,-0.36595,0.39198,0.84402,-0.4941,0.4958,0.71416,0.13224,0.076296,-0.98825,0.9144,-0.1478,0.37681,0.89511,0.10056,0.43431,-0.54073,-0.37437,-0.75329,-0.52318,-0.44511,-0.72671,-0.90362,-0.17661,0.39018,-0.94195,-0.12201,0.31272,-0.89505,-0.17261,0.41118,0.79022,0.57656,-0.20759,0.8302,0.5215,-0.19691,0.71181,0.61974,-0.33039,0.33818,0.94083,-0.021607,0.28919,0.94034,-0.17914,0.13602,-0.96356,0.23026,0.1131,-0.98489,0.13092,0.97733,0.13212,0.16538,0.99765,0.057741,0.036073,-0.17231,-0.44417,-0.87918,0.012268,-0.31642,-0.94852,-0.1858,-0.3231,-0.92792,-0.57161,0.74899,-0.335,-0.59764,0.7525,-0.27662,0.71227,0.004181,-0.70186,0.68224,-0.11576,-0.72185,0.90243,-0.36927,0.22184,0.84909,-0.48216,0.21567,0.95572,-0.27033,0.116,-0.66686,0.22202,-0.7113,0.71352,0.51762,0.47209,0.80136,0.54921,0.23704,0.71642,0.53987,0.44182,-0.98325,-0.029786,0.17975,0.22108,0.95819,0.18149,0.50993,-0.43938,-0.73949,-0.49544,-0.12461,0.85964,-0.30009,0.94928,-0.093539,-0.31095,0.94156,0.12934,0.98819,-0.14438,0.050813,0.99548,-0.091678,0.023469,0.97766,-0.009766,0.20982,0.98938,0.002289,0.14512,0.29682,-0.59746,-0.74493,0.46925,-0.60122,-0.64675,0.2501,-0.49727,-0.83074,0.60137,0.41862,0.6805,-0.67147,-0.44899,-0.58947,-0.15711,-0.50743,-0.84722,0.2013,-0.36561,-0.90872,0.95453,0.12391,0.27104,0.92608,0.16495,0.33931,0.19422,-0.022614,-0.98068,0.85049,0.43532,0.29514,0.79818,0.53417,0.27842,-0.036256,-0.044252,0.99835,-0.20069,-0.21595,0.95554,-0.20878,-0.097964,0.97302,0.99448,-0.05707,0.087985,0.97882,-0.097446,0.17991,0.62029,0.7788,0.093051,-0.57399,0.52144,0.63134,0.72549,-0.31529,-0.61171,0.54128,0.12064,0.83212,0.70861,0.14936,0.68957,0.54488,0.050111,0.837,-0.60711,-0.3719,-0.70217,-0.51747,-0.38765,-0.76284,-0.47429,-0.5717,-0.66945,0.021302,0.85516,0.5179,0.056887,0.77523,0.62908,0.29054,0.8381,0.46165,-0.89935,0.23386,0.36937,-0.90829,0.25544,0.33119,-0.9928,0.052614,0.10761,-0.99863,0.015961,0.049409,-0.99875,-0.036805,0.033631,-0.034577,-0.24277,-0.96945,0.16211,-0.49846,0.85159,-0.041169,-0.64983,0.75893,0.28269,-0.29997,-0.91107,-0.59383,-0.46898,0.65374,-0.57445,-0.63375,0.51796,-0.68935,-0.54381,0.47853,-0.23466,0.88086,0.41108,-0.055879,0.9472,0.31568,-0.020264,0.95264,0.30339,0.68383,0.058535,0.72726,0.6487,0.06354,0.75835,0.95865,-0.15079,0.24128,0.98672,-0.074892,0.14408,0.9805,-0.18912,0.053163,-0.63497,-0.078127,-0.76855,-0.89734,-0.25983,-0.3567,-0.83969,-0.3867,-0.38127,-0.89584,-0.32359,-0.30451,0.83477,0.54549,-0.074435,0.7799,0.58919,-0.21116,0.79214,0.59157,-0.15003,-0.37739,-0.85315,0.36012,-0.37498,-0.90707,0.19123,-0.16684,-0.98395,0.063173,0.20637,-0.40123,-0.89239,0.21839,-0.32282,-0.9209,0.34779,-0.34834,-0.87042,-0.34843,-0.52278,-0.77798,-0.3365,-0.4503,-0.82702,-0.88687,-0.056063,-0.45854,0.78546,-0.038484,-0.61766,-0.45143,0.8764,0.16764,0.86212,-0.18043,-0.47343,-0.40806,0.89965,0.1551,0.93387,-0.32746,0.14362,-0.22401,-0.26841,0.93689,-0.088443,-0.98096,-0.17286,0.96329,0.047578,0.26417,0.98639,0.002289,0.16422,-0.87164,-0.38157,0.3076,-0.7225,-0.68853,0.062319,-0.85388,-0.30589,0.42106,-0.10337,0.91058,-0.40016,-0.2263,0.94339,-0.24241,-0.65731,0.70003,-0.27897,-0.79601,0.57518,-0.1883,0.81738,0.07944,0.57057,0.96417,0.07065,0.25562,-0.1727,0.11799,-0.97787,-0.12186,0.11386,-0.98596,-0.33088,-0.26481,-0.90573,-0.23664,-0.30735,-0.92169,-0.25849,-0.27555,-0.92587,-0.7333,-0.50578,-0.4543,0.92554,-0.21265,-0.31324,0.78503,-0.41386,-0.46086,0.79739,-0.34059,-0.49812,0.9986,0.050172,-0.015168,0.98282,0.11963,-0.14042,0.97391,0.11777,-0.19398,0.82095,0.39824,0.40916,-0.19691,0.97626,-0.089908,-0.26579,0.9617,-0.066713,0.26383,-0.42473,-0.86599,0.66982,0.71438,0.20237,0.60894,0.73769,0.29148,0.84289,-0.44774,-0.29832,0.91565,-0.33668,-0.21952,-0.92746,0.37263,-0.030793,-0.75545,0.60118,-0.26038,-0.82122,0.56252,-0.095492,-0.15946,-0.37376,0.91369,-0.2714,-0.47838,0.83514,0.001312,-0.62557,0.78014,-0.2711,-0.81353,-0.51442,0.44404,0.72341,-0.52864,-0.056551,0.18393,0.98129,-0.92291,0.22883,0.30952,-0.91559,0.17972,0.35969,-0.95001,-0.31089,0.028169,-0.93957,-0.25718,0.22584,-0.94516,-0.31898,0.070101,0.90854,-0.29051,-0.30021,-0.92437,-0.24595,-0.29157,-0.91156,-0.22147,-0.34639,-0.84436,-0.53554,-0.014527,-0.57991,0.64275,-0.50053,-0.56185,0.58934,-0.58046,-0.99396,0.071291,0.083346,-0.98343,0.09592,0.15372,0.14371,-0.037233,-0.98889,-0.10157,0.3592,0.9277,-0.3694,-0.069826,0.92663,0.18812,-0.43443,-0.88082,0.49736,-0.39988,-0.76986,0.99377,-0.008667,0.11084,0.92489,0.36897,-0.091494,0.070101,-0.42076,-0.90445,0.52693,-0.71346,0.46178,0.43895,-0.77004,0.46293,0.32951,-0.33558,-0.88247,0.34071,-0.37129,-0.8637,-0.55037,-0.29115,0.78246,-0.63369,-0.30903,0.70913,-0.639,-0.69069,0.33851,-0.66381,0.3151,0.67827,0.54561,-0.09067,0.83309,-0.042329,0.77938,0.62508,0.006561,0.95413,0.29929,-0.043855,0.87295,0.48579,0.96078,-0.1858,0.20576,-0.44319,-0.50481,-0.74074,0.080935,0.23359,-0.96893,0.32252,0.9248,0.20164,0.3903,0.89459,0.2176,0.44826,0.87939,0.16037,0.68651,0.64299,0.3394,0.61818,0.65459,0.4351,0.016327,0.92502,0.37956,-0.96942,-0.19404,0.15012,0.014374,-0.062532,-0.99792,0.64428,0.36564,0.67171,0.56319,0.40754,0.7188,0.98871,0.017487,-0.14875,0.99353,0.087008,-0.072939,0.40635,0.91342,0.021821,0.31849,0.94198,0.10569,-0.3408,0.59359,-0.729,-0.97586,-0.21516,-0.036927,-0.85611,-0.21018,0.47209,-0.93667,-0.12958,0.3253,0.64174,0.68419,-0.34642,-0.004883,0.16944,-0.9855,-0.27262,0.12751,-0.95361,0.026307,0.39705,-0.91742,0.47243,-0.40864,0.78088,0.32402,-0.41533,0.84997,-0.1431,0.37196,0.91711,-0.23255,-0.29688,-0.92615,0.93197,-0.007508,0.36238,0.91015,0.063234,0.40935,0.34992,0.89407,0.27952,0.48534,0.86789,0.10572,0.35591,0.93255,0.060274,0.15406,0.22776,0.96142,0.17808,0.065615,0.98181,0.001709,0.04474,0.99899,-0.63277,-0.13779,-0.76196,-0.79275,-0.31111,-0.52416,0.49382,-0.038759,0.86868,0.32954,-0.036805,0.94339,0.26917,0.54222,0.79592,-0.98758,-0.15433,0.029054,-0.90698,-0.26783,0.32499,-0.14484,0.83923,-0.52409,0.49547,-0.13566,0.85794,0.33113,-0.097324,0.93854,0.53954,-0.064333,0.83947,0.039308,-0.41569,0.90863,-0.01587,-0.64815,0.76131,-0.15787,-0.52592,0.83572,0.011872,0.26676,-0.96368,-0.11725,0.081484,-0.98975,0.25968,-0.21354,-0.94177,0.34809,-0.21885,-0.91153,0.46889,-0.73949,0.48296,-0.85809,0.35231,-0.37349,-0.95041,0.17719,-0.2555,0.65249,0.32594,-0.68407,0.79516,0.19004,-0.57582,0.99335,0.11487,0.003723,0.97379,0.1301,-0.18644,0.98886,0.001068,-0.14881,-0.95642,0.13727,0.25764,-0.95996,0.073153,0.2703,-0.95782,-0.001343,0.2873,0.62679,0.1749,0.75927,0.87344,-0.24348,0.42167,0.8956,-0.17646,0.40834,0.89538,-0.21195,0.39152,-0.094699,0.44127,0.89233,0.27842,-0.1923,-0.94098,-0.005646,-0.31001,-0.95068,0.83438,0.095096,0.54286,0.95294,0.13114,-0.27326,0.85086,0.4424,-0.28333,0.49025,0.81182,-0.31706,0.85815,0.42119,-0.29347,0.93231,0.047029,-0.35853,0.9071,0.19712,-0.37184,0.036317,0.4684,-0.88275,0.080569,0.59841,-0.79711,0.43855,0.89251,0.10501,0.89843,0.056215,0.43544,0.88,0.14136,0.45341,0.86535,0.065065,0.49687,0.63869,0.59551,0.48723,0.75457,0.46074,0.46724,-0.97113,-0.14396,0.1901,-0.15995,0.63729,0.75381,0.61095,0.78213,0.12223,0.55367,0.69396,0.46022,0.32551,-0.76189,0.55992,-0.98511,-0.15198,0.079989,-0.92761,-0.20539,0.31193,0.99915,-0.011536,0.039064,0.49748,0.70934,0.49931,0.61119,0.76098,0.21741,-0.01471,-0.39439,-0.91879,0.26048,-0.36656,-0.89319,0.001312,-0.31709,-0.94836,0.22352,0.93966,-0.25895,0.003143,0.97632,-0.21625,-0.066134,0.93249,-0.35499,-0.40049,-0.22672,-0.88778,-0.50951,-0.32502,-0.79669,0.25507,-0.51558,0.81796,0.13794,-0.53765,0.83178,0.004395,-0.006317,-0.99997,-0.57982,-0.018097,0.81454,-0.48338,-0.25288,0.83807,-0.65456,0.085269,0.75115,0.47365,-0.33201,-0.8157,0.43751,-0.36863,-0.82015,0.1872,0.045625,-0.98123,0.32716,0.12894,-0.93612,-0.31254,-0.18583,0.93152,-0.49611,-0.32444,0.80532,-0.56447,-0.26072,0.78317,-0.83477,0.50191,-0.22626,-0.8099,0.58651,0.002075,-0.66521,0.65557,-0.35728,-0.41466,-0.35066,-0.83966,-0.60283,-0.24476,-0.75936,0.4181,-0.31391,0.85241,0.65139,0.5725,-0.49788,0.6173,0.58516,-0.5258,0.70046,0.57387,-0.42424,0.16868,-0.24848,-0.95383,-0.42903,0.28092,0.85845,0.82998,-0.49089,0.26475,0.80816,-0.21897,0.54671,0.18583,0.31788,-0.92972,0.46306,0.38945,-0.79617,-0.8363,0.43651,-0.33171,-0.69704,0.49489,-0.51882,-0.91122,0.37489,-0.17054,0.40883,-0.034974,0.91192,0.20722,-0.32005,-0.92444,0.038362,-0.23277,-0.97174,0.071596,0.99127,0.11045,0.283,-0.52501,-0.80264,0.32438,-0.43904,-0.83783,0.26453,-0.46211,-0.84643,-0.76608,-0.30177,-0.56746,-0.93518,0.039888,0.35188,-0.073244,-0.30058,0.95093,-0.47887,0.40458,0.77908,0.11353,0.44993,-0.8858,-0.98236,-0.13266,0.13175,-0.99911,-0.028077,0.03061,0.23704,0.37864,0.89465,0.40059,0.1919,0.8959,0.4019,0.38279,0.83181,0.81689,-0.34364,-0.46321,0.87027,-0.3065,-0.38557,0.52577,0.78671,0.32343,0.52989,0.67968,0.50716,0.27589,0.89258,0.35661,-0.70321,-0.29295,-0.64779,-0.49904,-0.34101,-0.79663,0.088961,-0.49754,-0.86285,0.3787,-0.4536,-0.8067,0.4109,-0.087619,-0.90744,0.057863,0.53508,-0.8428,-0.57863,-0.20646,-0.789,-0.59761,-0.2067,-0.77465,0.52373,-0.67507,0.51955,0.60286,-0.67455,0.42601,-0.62249,-0.10254,-0.77584,0.47932,0.86526,-0.14683,0.59145,0.80474,-0.050264,0.73623,0.6083,-0.29652,-0.17948,0.30866,-0.93405,-0.61309,0.1081,0.78256,-0.67217,0.11887,0.73077,0.63772,0.7308,0.24329,0.59459,0.68911,0.4142,-0.77447,-0.37718,-0.50783,-0.84097,-0.27613,-0.46525,-0.94031,-0.22126,-0.25852,-0.086093,-0.10227,-0.991,-0.15619,-0.14197,-0.97745,0.1504,0.86569,-0.47737,-0.21442,0.95547,-0.20261,-0.14423,0.97937,-0.14148,-0.18348,0.96264,-0.19904,0.067415,-0.93872,-0.33796,0.21452,-0.67348,-0.70736,0.66875,0.65334,-0.35481,0.53227,0.71303,-0.45631,-0.66192,0.32801,-0.67397,-0.13044,-0.78716,0.60274,-0.30201,-0.42039,-0.85559,-0.34617,-0.322,-0.88116,-0.51729,-0.45796,-0.72292,0.80569,0.39149,-0.44447,0.75564,-0.44035,0.48485,-0.86624,-0.38813,-0.31455,-0.82748,-0.52187,-0.20713,-0.71352,-0.46538,-0.52367,0.9964,0.046541,0.070711,0.95825,0.088534,0.27177,0.9591,0.20731,0.19254,0.95981,-0.26243,0.099399,0.93384,-0.34507,0.093905,0.92193,-0.35847,0.1467,0.93051,-0.040315,-0.36396,-0.053652,-0.12137,-0.99115,0.96179,-0.25028,0.11081,0.90393,-0.37114,-0.21247,0.92834,-0.3693,0.042116,0.58129,-0.041688,0.81259,0.43721,0.075381,0.89618,0.55824,-0.12452,0.82025,-0.66155,0.020203,-0.7496,-0.69259,-0.006104,-0.72127,-0.94351,0.1522,0.29423,-0.98514,0.083926,0.14979,-0.9537,0.020081,0.30003,0.20731,0.91641,-0.34233,0.33238,0.89056,-0.31043,0.06534,0.92895,-0.36436,-0.72597,-0.22633,-0.64937,-0.62453,-0.35414,-0.69607,0.8229,0.18943,0.53563,0.42491,-0.8421,0.3321,0.065828,0.087313,-0.99399,0.56679,-0.62148,0.54079,0.47352,-0.7264,0.49803,-0.93677,0.078433,0.34104,-0.93561,0.14979,0.31965,-0.92022,0.095004,0.37965,-0.11225,-0.44966,0.88611,0.57775,-0.44942,0.68129,0.42995,-0.43889,0.78897,-0.93545,-0.03531,0.3516,-0.87085,0.22303,0.43797,-0.77911,0.14896,0.60888,0.97473,0.002655,0.22324,0.75369,-0.20429,0.62465,0.14597,0.90704,-0.39485,0.10981,0.98926,-0.096164,0.89682,0.068209,0.43703,0.86554,-0.004608,0.50081,0.87643,-0.053041,0.47859,0.62596,-0.17933,-0.7589,-0.93478,0.10685,0.33875,0.052217,0.33061,-0.94229,-0.42982,-0.38875,0.8149,-0.11209,-0.65334,0.74868,0.66427,-0.70049,0.26078,0.78674,-0.40822,-0.463,0.90017,-0.25947,-0.34971,0.24403,-0.30094,-0.92187,0.68453,0.50252,0.52803,0.69527,0.51418,0.50218,-0.78701,-0.20731,-0.58101,-0.21766,-0.49001,-0.84408,-0.94018,0.29972,0.16181,-0.18812,0.43938,-0.87835,0.28834,-0.76406,0.57704,0.3657,-0.62789,0.687,0.091159,0.40352,-0.9104,0.21937,0.2616,-0.93991,0.009369,0.34935,-0.93692,0.41414,0.81878,-0.3975,0.3737,0.82394,-0.42592,0.33476,0.84066,-0.42561,-0.62731,-0.43086,0.64867,-0.53142,-0.41478,0.73858,-0.86432,-0.014985,0.50267,-0.048524,-0.14795,-0.98779,0.090915,0.14795,0.9848,-0.027772,0.10584,0.99399,-0.015351,-0.28977,-0.95694,-0.16456,-0.34992,-0.92218,0.88138,0.19715,0.42924,0.50923,0.8605,-0.013672,0.5399,0.8417,-0.000397,0.36009,0.91635,0.17496,0.073641,0.66408,-0.74401,0.069643,0.6939,-0.71667,-0.52818,-0.44853,0.72094,-0.30076,-0.81442,0.49623,-0.42381,-0.43071,0.79678,0.5363,0.60244,0.59108,0.30781,0.15906,-0.93805,0.068575,0.045808,-0.99658,0.30406,-0.88321,0.35701,0.25129,-0.94891,0.1908,-0.18183,0.12095,0.97586,0.020386,0.051729,0.99844,0.051515,0.03061,0.9982,0.83911,-0.17875,0.51369,0.83142,-0.29823,0.46882,0.92502,-0.19944,0.32328,0.90701,-0.1937,0.37385,0.35063,0.1218,0.92853,0.26377,0.32499,0.90817,0.43288,0.30912,0.84677,0.36796,-0.3516,0.86077,0.83169,-0.32044,0.45338,0.95962,-0.017701,-0.28065,0.99829,-0.042726,-0.039613,0.99545,-0.080142,-0.051149,-0.2822,0.19614,0.93905,-0.31214,-0.1164,0.94284,-0.46355,0.59184,-0.65938,-0.14948,-0.35817,-0.9216,0.50429,0.45286,0.73522,-0.84063,-0.18033,-0.51064,-0.91357,-0.36851,-0.17191,-0.89462,-0.29496,-0.33555,-0.63094,0.59905,-0.49294,-0.62743,0.43709,-0.6444,-0.77065,0.38823,-0.5053,0.87063,0.22086,0.43953,0.50136,0.83267,0.23505,-0.92062,0.17341,0.34974,-0.11304,0.45647,-0.8825,-0.16929,0.59535,-0.78539,-0.12427,0.53688,-0.83444,-0.69384,0.31477,-0.64766,-0.52333,0.29002,-0.80123,-0.43635,0.42894,-0.79092,0.19694,0.86669,-0.45827,0.74325,0.013794,-0.66881,-0.13849,0.10907,-0.98431,0.81536,-0.25599,0.51927,0.83813,0.3029,-0.4536,0.64156,0.47877,-0.59926,-0.81457,-0.26527,-0.51579,0.84884,0.022889,0.52812,0.85137,0.3285,0.40892,0.79089,0.31004,0.52757,0.32676,-0.11689,0.93783,0.44105,0.47053,-0.76421,0.32853,0.53984,-0.77499,0.81451,0.50325,0.28861,0.86993,0.49013,0.054048,0.13178,0.64605,-0.75179,-0.10196,0.25779,-0.96078,0.13431,-0.28443,0.94922,0.24982,-0.42583,0.86959,0.04651,0.84661,-0.53011,0.15595,-0.24409,-0.95712,0.015748,-0.20441,-0.97873,0.70632,0.33692,0.62252,0.51463,0.097842,0.85177,0.49471,-0.08948,0.86441,-0.5595,-0.26975,0.78368,-0.55092,-0.32807,0.76733,0.96094,-0.11835,0.25013,-0.12412,-0.12784,-0.98398,-0.20856,-0.26389,-0.94171,0.94095,-0.3372,0.029145,0.93399,-0.32676,-0.14447,0.95154,-0.30723,-0.011078,-0.056246,0.58333,-0.81027,-0.003388,0.48347,-0.87533,0.86868,-0.37388,-0.32487,-0.74264,0.04706,-0.66799,-0.92151,-0.26029,0.28816,-0.89312,-0.19462,0.40547,-0.94421,-0.17573,0.27842,-0.1868,0.47352,0.86071,-0.12275,0.25141,0.96005,-0.11475,0.44545,0.88791,-0.54308,0.30192,0.78347,-0.43556,0.43388,0.78866,0.82629,-0.2834,-0.48674,-0.49303,-0.43199,-0.75515,-0.76617,-0.63851,0.072268,-0.86233,-0.38356,0.33048,-0.89129,-0.22965,0.39091,-0.86178,-0.45659,0.22095,-0.46519,-0.43907,-0.76861,0.81652,-0.29411,-0.49675,-0.8666,-0.369,-0.33583,0.09827,0.81903,-0.56523,0.79153,-0.10575,-0.60186,0.94964,-0.13395,-0.28321,0.86065,-0.18583,-0.47404,-0.063021,-0.65892,0.74953,-0.070009,-0.95318,0.29408,0.38365,-0.44466,0.80935,0.3896,-0.34538,0.85376,0.58654,0.4145,-0.69576,0.78503,0.2392,-0.57137,0.91583,0.29719,0.26994,0.90085,0.29237,0.3209,0.80453,0.54888,0.22669,0.8999,-0.23838,0.36509,0.92868,-0.13816,0.34413,0.21738,0.8985,0.38133,0.27076,0.89328,0.35874,0.68517,-0.50731,0.52263,0.33967,0.24393,0.90832,0.10147,0.82238,0.5598,0.98691,-0.10724,0.1203,0.86596,-0.2309,0.44356,0.88668,-0.24625,0.39128,0.41966,-0.26331,0.86862,-0.97363,-0.18232,0.13703,-0.9573,-0.28877,-0.011475,0.67095,-0.28877,0.68291,0.52001,0.45656,-0.72189,0.83267,0.31471,-0.45564,-0.2823,-0.20765,0.93655,-0.46977,-0.1854,0.86306,-0.28376,0.030763,0.95837,0.011109,-0.39778,0.91739,0.89377,-0.36662,-0.25828,-0.84445,0.35792,0.39845,-0.68474,-0.67733,-0.2689,-0.3592,0.79589,-0.48735,-0.50319,0.65658,-0.56181,-0.2711,0.74334,-0.61147,-0.24079,0.32243,0.91543,-0.57656,0.5219,0.62862,-0.48134,0.45738,0.7477,-0.45253,-0.51039,-0.73122,-0.34245,-0.35905,-0.86819,-0.44386,-0.35063,-0.82464,0.42113,-0.24101,-0.87439,0.4547,-0.25568,-0.85315,-0.92126,-0.37516,0.10227,-0.90231,-0.38585,-0.19215,-0.98468,0.03946,0.16974,-0.99731,0.03708,-0.06299,-0.96277,-0.15458,-0.22162,0.16581,0.51302,0.84219,0.81436,0.06531,-0.57665,0.96619,-0.25767,-0.005646,0.95795,-0.27271,-0.089084,-0.11533,0.77697,-0.61885,-0.93374,-0.16922,-0.31535,-0.7354,-0.55171,-0.39341,-0.69799,-0.32582,-0.63765,0.93973,-0.0665,0.33531,0.93326,-0.159,0.32206,-0.93417,0.12641,-0.33363,0.90164,0.055635,0.42888,0.98572,0.01001,0.16806,0.46614,0.86807,0.17075,-0.78152,-0.37175,-0.50099,0.000885,0.95193,0.30622,-0.32298,0.6986,0.63845,-0.41703,0.43065,0.80035,0.37355,-0.1822,-0.90951,0.22251,-0.37501,-0.8999,-0.57128,-0.37397,-0.73058,-0.6751,-0.50139,-0.54112,-0.4966,-0.48796,-0.71779,0.91101,-0.40992,0.044771,0.88354,-0.45958,0.090152,0.5006,0.86108,0.08887,0.76754,0.63195,0.10718,-0.41124,-0.56429,-0.71584,-0.47365,-0.87619,0.088961,0.57793,0.014466,0.81594,0.45463,0.07947,0.88711,-0.074129,0.019257,-0.99704,-0.18745,-0.024995,-0.98193,-0.90475,-0.39558,-0.15775,-0.66985,-0.50725,-0.54216,-0.80221,-0.54833,-0.23615,-0.95181,0.18745,-0.24268,-0.99084,-0.083651,-0.10572,-0.97479,-0.044801,0.21845,0.91846,-0.20219,0.33985,0.96622,0.030396,0.25584,0.93127,0.089541,0.35313,0.50111,-0.30094,-0.81134,0.18216,-0.32755,-0.92709,0.94571,-0.31025,0.0965,-0.99368,-0.072085,0.085788,-0.99087,-0.098727,0.091433,-0.97501,-0.10257,0.19703,-0.027253,0.95999,-0.2786,-0.11197,0.89605,-0.42958,0.21787,-0.29167,-0.93133,0.34614,-0.33931,-0.87466,0.4326,-0.2573,0.86407,0.009857,0.39918,0.91681,0.98639,-0.15745,0.046968,0.97827,-0.18714,0.089114,-0.94498,-0.042909,0.32426,-0.88827,-0.037141,0.45775,-0.86611,-0.015961,0.49956,0.29222,-0.26255,0.91958,-0.6411,0.14408,0.75378,-0.65801,0.02472,0.75259,-0.72289,-0.10926,0.68221,-0.58373,-0.57112,0.57707,-0.17731,-0.69164,0.7001,-0.42961,-0.48225,0.76342,-0.030946,-0.22889,0.97293,-0.092624,-0.44536,0.89053,0.27988,0.22752,0.93268,0.12394,0.16706,0.97812,-0.28675,-0.55946,-0.77764,0.16141,-0.49211,-0.8554,-0.092868,0.6701,-0.73641,0.20048,0.68575,-0.69964,-0.19864,0.10831,-0.97406,-0.067934,0.15122,-0.98615,0.55773,-0.30506,-0.7719,0.81161,-0.2812,-0.51204,-0.50124,-0.69924,0.50969,0.84564,-0.43611,0.30766,0.90359,-0.33744,0.26386,0.92071,-0.30107,0.24821,0.22721,0.91299,0.33875,0.79904,0.3354,-0.49901,0.71316,0.35322,-0.60546,0.95358,-0.12961,0.27171,0.99756,-0.024812,-0.065004,0.95755,-0.25101,-0.14161,-0.39125,-0.22993,-0.89108,-0.91354,-0.2631,0.31016,-0.59371,-0.10834,0.79733,-0.30958,-0.3542,-0.88241,0.11606,-0.31443,-0.94214,0.44963,-0.10575,0.8869,-0.99255,-0.11792,-0.029572,-0.89441,0.36314,0.26096,0.56761,0.80392,0.17737,0.68032,0.68871,0.25056,0.082339,-0.51357,-0.85406,0.026185,-0.57524,-0.81753,-0.17283,-0.34211,-0.92361,-0.1048,-0.40297,-0.90918,-0.18055,0.25404,-0.95016,-0.93432,-0.32551,-0.14508,-0.94375,-0.21122,0.25434,-0.66951,-0.42436,-0.60961,-0.84094,-0.33125,-0.42787,0.90646,0.13248,0.40092,0.96713,-0.2508,-0.041627,0.97998,-0.17396,-0.096591,0.95505,-0.10157,0.27851,0.97549,-0.06238,0.21097,0.98181,-0.049959,0.18302,-0.94336,-0.32783,0.050935,0.57173,-0.20057,-0.79553,0.62877,0.007172,-0.77752,0.27497,0.64092,-0.71664,-0.65923,-0.52327,0.53993,-0.65673,-0.68893,0.30662,-0.99695,0.029633,-0.072115,0.57003,0.72109,-0.39375,0.48186,0.8226,-0.30183,-0.9942,0.033235,-0.10212,-0.98273,-0.13306,0.12845,0.8854,-0.43959,0.15085,-0.94977,0.10105,0.29612,-0.94324,0.043306,0.32917,0.88195,0.28523,-0.3752,-0.33592,-0.464,-0.81964,0.053682,-0.23713,-0.96997,0.053194,-0.25083,-0.96655,0.99197,0.11862,-0.043458,0.6831,-0.21577,0.69768,0.68178,0.34388,0.64565,0.57649,0.67519,0.46013,-0.79421,-0.25391,0.55199,-0.21329,-0.4478,0.86831,0.033876,-0.16001,0.98651,0.91495,-0.13266,0.38111,0.7387,-0.2132,0.63939,0.37117,-0.4138,0.83123,0.489,-0.3108,-0.815,0.48122,-0.29774,-0.82446,0.57778,-0.26563,-0.77172,0.4489,-0.37297,-0.81201,0.59404,-0.27631,-0.75545,0.80487,-0.24845,0.5389,0.79607,-0.25443,0.54906,0.85632,-0.30436,0.41716,0.16721,0.88369,0.43709,-0.45973,0.88159,0.10678,-0.51451,0.84457,0.1482,0.51531,-0.434,-0.73894,-0.12742,-0.6722,0.7293,0.44783,0.69805,-0.55867,0.33854,0.84066,-0.42265,0.18216,0.78762,-0.58858,0.45113,-0.32133,-0.83257,0.47282,-0.3513,-0.80807,-0.34712,-0.53514,-0.77014,0.60347,0.24964,0.75729,0.48711,-0.35728,-0.7969,0.75756,-0.37062,-0.53731,-0.2396,-0.51332,0.82403,-0.21662,-0.34938,0.91159,-0.15641,-0.49385,0.85534,0.56188,0.74419,0.36113,0.55242,0.68895,0.46916,0.51302,0.64248,0.5692,0.90689,0.038667,0.41954,-0.54222,0.045137,0.83898,0.60375,0.74187,0.2917,0.58052,0.79919,0.15577,0.47752,0.87845,0.016633,0.94183,-0.30818,0.13385,0.93252,-0.35771,-0.049196,-0.54888,-0.46965,-0.69146,-0.46867,-0.17032,-0.86676,0.36631,0.9205,0.13578,0.15741,0.97284,0.16956,0.44279,0.88153,0.16376,0.92612,0.047334,0.37422,0.81655,-0.009644,0.57717,0.78136,-0.057741,0.62136,-0.20612,0.8771,-0.43376,-0.93088,-0.033753,0.36375,-0.94226,0.13303,0.30723,-0.92871,0.00116,0.37077,-0.075747,0.12583,-0.98913,0.12302,0.60689,-0.78518,0.009919,0.71862,-0.6953,0.2024,0.75945,-0.61824,-0.95883,-0.064364,0.27647,-0.5595,-0.17258,-0.81063,-0.51311,-0.45167,-0.72985,-0.29893,0.012787,0.95416,-0.36592,-0.021149,0.93039,0.96457,-0.26371,0.001099,0.897,-0.4059,-0.17487,-0.26426,0.95798,0.11145,-0.53551,0.82128,0.19657,0.16285,-0.39518,-0.90402,0.1399,-0.33622,-0.9313,-0.25785,-0.20789,0.94354,0.1558,0.018036,0.98761,0.92273,-0.057741,0.38102,0.83184,-0.074557,0.54991,0.95318,-0.12824,0.27375,0.2197,0.96676,0.13056,0.33723,0.92386,0.18088,0.47975,0.666,0.57115,0.3499,0.72362,0.5949,0.22468,-0.28474,-0.93188,0.24995,-0.29658,-0.92169,0.010712,-0.33653,-0.94159,0.65096,-0.6715,0.35398,0.64547,-0.66378,0.37782,-0.35896,-0.25785,0.897,-0.63408,-0.30552,-0.71032,0.90921,-0.26417,0.32173,0.99863,-0.017792,-0.04886,0.49992,-0.090579,-0.86129,0.58126,-0.1999,-0.78875,-0.10709,-0.15525,-0.98203,-0.49617,-0.26554,-0.82659,-0.48524,-0.18412,-0.85473,0.14945,-0.66582,0.73095,0.054537,-0.26356,0.96307,0.92715,-0.16651,0.33558,0.33262,0.80557,0.49031,0.23835,0.84655,0.47591,0.45381,0.76211,0.46175,-0.91028,-0.38722,0.14631,0.034913,0.56053,0.82739,0.77032,0.63616,0.043641,0.3867,0.075564,0.91907,0.28547,0.04416,0.95737,-0.64739,-0.35362,-0.67513,-0.79562,-0.10804,-0.59603,0.37068,0.43794,0.819,0.22892,0.49095,0.84054,-0.84817,-0.52965,0.003082,-0.90634,-0.41667,-0.069948,0.30641,0.93307,0.1883,0.26792,0.93234,0.24268,0.98755,0.15522,-0.024384,0.95734,0.11991,-0.26289,0.48122,0.83563,0.26484,-0.93051,-0.35829,-0.0759,0.23789,-0.1648,0.95718,0.47899,0.87594,0.057161,0.68044,0.72137,0.12864,0.36259,0.38386,0.84918,0.52199,0.18961,0.8316,0.41298,0.66912,0.61779,0.53719,0.40336,0.74074,-0.43724,-0.090304,-0.89477,-0.92773,0.002655,-0.37321,-0.94665,0.17081,0.27314,-0.95218,0.15589,0.26267,-0.96381,0.12629,0.23472,-0.93881,0.067629,0.33766,-0.76409,0.64452,-0.027406,0.057802,0.96298,-0.26325,0.22205,0.90765,0.35615,0.12156,-0.45546,0.88189,-0.1373,-0.14353,0.98007,-0.16834,0.20475,-0.9642,0.46101,-0.2504,-0.85131,-0.19791,-0.28669,-0.93735,0.59471,-0.19498,-0.7799,0.47096,-0.42991,-0.77026,0.44603,-0.57164,-0.68865,0.093661,-0.06827,-0.99326,-0.54311,-0.40458,-0.73571,-0.49004,-0.3206,-0.81057,0.086398,0.93783,0.33607,-0.53206,-0.36235,-0.76522,-0.56941,-0.26945,-0.7766,0.12949,0.66466,-0.7358,0.035005,0.71654,-0.69665,0.24049,0.95929,0.14792,0.97259,0.1865,-0.13861,-0.97989,0.020753,0.19843,-0.99194,-0.1146,0.053713,0.37364,0.79946,0.47029,-0.70776,0.38154,0.5945,-0.043306,-0.53401,0.84432,-0.020753,-0.48781,-0.87268,0.46016,-0.29411,-0.83767,0.82064,-0.3614,-0.44258,0.7991,-0.39714,-0.45134,0.88305,-0.22916,-0.40947,-0.87899,0.16999,0.44548,0.51091,-0.3159,-0.79946,0.12601,-0.98615,0.10773,0.33467,-0.22007,-0.91626,-0.99765,-0.067751,0.008545,-0.95682,0.10968,0.26914,-0.047639,0.08829,-0.99493,0.55162,-0.098941,0.82818,-0.9432,-0.042299,0.32942,-0.95901,-0.036653,0.28089,0.018769,0.80383,0.59453,0.52193,-0.21711,-0.82488,0.39418,-0.18082,-0.90106,0.32185,-0.25639,-0.91137,0.9393,0.32868,0.098361,0.97821,0.008728,0.2074,-0.32044,0.36644,-0.8735,-0.44972,0.22156,-0.86523,-0.28849,0.3574,0.88824,-0.34687,0.29695,0.88965,-0.49117,0.30363,0.8164,-0.93362,-0.15507,0.32292,-0.92315,-0.14301,0.35679,-0.95541,-0.13208,0.26399,-0.91028,-0.054201,0.41038,-0.71395,0.48604,-0.50395,-0.77337,-0.25217,-0.58162,-0.75161,-0.37233,-0.54445,-0.48338,-0.24912,-0.83917,-0.59716,-0.21509,-0.77273,-0.72042,-0.23032,-0.65413,0.16974,0.86911,0.46455,0.001129,0.87313,-0.48747,-0.13434,0.87793,-0.45952,0.068331,0.90594,-0.4178,0.52641,-0.27412,0.8048,0.34504,-0.35429,0.86911,0.54997,-0.30165,0.77877,0.47536,-0.26591,-0.83862,0.8272,-0.27055,-0.49245,0.91958,-0.28513,0.27024,0.68981,-0.62441,-0.36634,0.10138,0.85592,0.50704,0.49706,0.44127,0.74709,0.46996,0.42955,0.77108,-0.37932,-0.28309,-0.88086,-0.38646,-0.33604,-0.85888,-0.57207,-0.21238,-0.7922,0.33171,-0.47078,-0.8175,0.31245,-0.40803,-0.85781,0.37382,-0.47203,-0.79836,-0.40254,0.19916,0.89346,-0.35884,0.33109,0.87268,0.93387,-0.19236,0.3014,0.9924,-0.11478,0.044191,0.82983,0.28941,0.47703,0.78063,0.37165,0.50246,-0.33485,-0.022858,-0.94195,0.47304,-0.31297,-0.82354,0.40248,-0.17408,-0.89871,0.61324,-0.34925,-0.70846,0.46425,0.87704,0.12345,0.29521,0.93893,0.1767,0.29087,0.95132,0.10181,-0.38469,0.85595,-0.34547,-0.35887,0.88528,-0.29572,0.6165,-0.331,-0.71435,0.96344,0.2678,-0.002686,0.35545,-0.9292,0.10093,-0.96918,-0.12131,-0.21433,0.30146,-0.46696,-0.83129,0.49532,-0.37516,-0.7835,-0.30406,0.040834,-0.95175,-0.89541,-0.22312,0.38523,-0.89789,-0.21717,0.38286,-0.90072,-0.25572,0.35105,0.2187,0.27397,0.93652,0.087436,0.24497,0.96557,0.93103,0.17328,0.32115,0.91607,-0.054262,0.39723,-0.99072,0.010987,0.13535,-0.002197,0.85089,-0.52531,0.11994,0.82903,-0.54613,-0.27259,0.75726,-0.59349,0.10944,-0.32157,0.94052,-0.39528,0.89898,0.18848,-0.53709,0.80914,0.23832,0.37495,-0.31596,0.87152,0.49211,-0.20603,0.84576,0.29588,-0.39979,0.86752,-0.41456,-0.35124,-0.8395,0.99704,-0.056642,-0.051637,0.99774,-0.032136,0.058718,0.33351,-0.23283,-0.91351,0.47075,-0.42692,-0.77206,0.82244,-0.369,-0.43288,-0.97635,-0.21564,-0.015412,-0.65896,-0.41734,-0.62572,-0.57567,-0.32069,-0.75213,-0.58467,0.27952,0.76156,-0.69713,0.030915,0.71624,-0.40815,-0.59023,-0.6964,0.19761,0.40742,-0.89157,0.14725,0.37391,-0.91568,0.24705,-0.47325,-0.84555,-0.098025,0.85882,-0.50279,-0.19727,0.83999,-0.50542,-0.49235,-0.00943,0.87033,0.90915,-0.29194,0.29688,0.8157,-0.41252,0.4055,-0.98172,-0.046419,0.18445,-0.94381,-0.32432,0.063265,-0.93597,-0.10221,0.33686,-0.9664,-0.2566,-0.01413,-0.27381,0.95691,0.096347,-0.39857,0.90774,0.13086,-0.10608,-0.17777,-0.97833,-0.33161,-0.10636,-0.93738,-0.91357,-0.18183,0.36372,-0.57164,-0.15052,-0.80654,0.95657,0.10215,0.27299,-0.49416,0.41319,0.76489,-0.58147,0.27986,0.76388,-0.86316,-0.020386,0.50447,-0.79498,0.029695,0.60588,-0.77685,-0.041322,0.62831,0.86282,-0.030457,0.50453,0.79742,-0.24757,-0.55028,0.72781,-0.27882,-0.62651,0.67998,-0.25251,-0.68834,-0.96344,0.15833,0.21598,-0.97525,-0.18387,0.12259,-0.97888,-0.17182,0.1106,-0.024445,0.042085,-0.99881,-0.91824,-0.39497,-0.028565,-0.78057,-0.046846,-0.62325,-0.54448,0.12436,-0.82946,-0.34004,0.23292,-0.9111,0.54588,0.60396,-0.58068,0.48518,0.58147,-0.65304,-0.82034,-0.20426,-0.53414,-0.97418,-0.16968,-0.14875,-0.97855,-0.094028,-0.18317,-0.99762,-0.03769,-0.057619,0.4297,-0.3426,-0.83541,-0.8262,-0.33052,-0.45619,-0.76592,-0.22669,-0.60161,0.84903,-0.03592,-0.52709,0.87506,0.124,-0.46782,0.90823,-0.15568,-0.38838,0.88968,-0.033357,0.45534,0.94644,-0.27519,0.16871,0.85678,-0.32923,-0.39683,0.90179,-0.26569,-0.34077,-0.4073,0.88598,0.22156,-0.51012,0.83441,0.20863,-0.56651,0.80392,0.18098,-0.73223,0.65859,0.17335,0.30879,0.52583,0.79253,0.43068,0.48637,0.76019,-0.79394,0.60295,0.077914,0.39601,-0.47945,0.78311,0.034516,0.91495,-0.40202,-0.23447,0.94968,0.20762,-0.19147,0.94342,0.27067,-0.94586,0.2515,0.20505,-0.97229,-0.000275,0.23368,-0.94269,-0.067476,0.3267,-0.87661,-0.17026,-0.45003,-0.84081,-0.35444,-0.4091,-0.86938,-0.12061,-0.47914,-0.84109,0.45891,0.28623,-0.87924,0.4753,0.031373,-0.5053,-0.27433,-0.81814,-0.14969,-0.38871,-0.90909,0.14347,0.96789,0.20624,-0.026002,0.98645,0.1619,0.20029,0.9714,0.12742,0.5193,0.83874,0.16361,-0.45409,-0.10996,-0.88412,-0.86755,-0.26176,0.42283,-0.94607,-0.11005,0.30461,-0.93017,-0.028901,0.36595,-0.88177,0.10038,0.46083,0.32881,0.93396,0.13987,0.37901,0.91897,0.10852,0.76727,-0.32875,0.55061,0.93521,-0.15409,0.31873,-0.53044,-0.24943,-0.81017,-0.43764,-0.38646,-0.81182,-0.58467,-0.32023,-0.74535,-0.57756,0.29908,0.75955,0.43043,-0.38344,-0.8171,0.39219,-0.4575,-0.798,0.89221,-0.39,-0.2277,0.965,-0.18546,0.18525,0.38957,0.91638,0.091861,0.69771,0.69018,0.19184,-0.18482,-0.27778,-0.94269,-0.18525,-0.33802,-0.9227,-0.42009,0.14627,0.8956,-0.59423,0.33409,0.73159,0.5045,-0.23243,-0.83151,0.97534,-0.077975,-0.20637,0.98828,-0.076846,-0.13166,0.44902,0.50658,0.73601,-0.19282,-0.31654,-0.92874,0.79287,-0.16569,-0.58638,-0.94879,0.091403,-0.30238,0.54366,-0.49974,0.67428,0.99295,-0.10086,-0.062136,0.99258,-0.095584,0.074953,-0.74215,0.28648,0.60588,-0.34065,0.92376,-0.1749,-0.9227,-0.28385,0.26084,-0.84313,-0.53417,-0.061312,-0.9574,-0.27274,0.094516,-0.25126,-0.14771,-0.95657,0.18522,-0.13156,-0.97381,0.25516,0.68151,-0.68584,0.59938,0.77972,-0.18088,0.74612,0.5417,-0.3871,-0.71456,0.32133,0.62136,-0.63027,0.46095,0.62468,0.020905,0.17856,-0.98367,0.018281,0.40846,-0.91256,-0.54155,-0.22483,-0.81002,-0.66149,-0.30339,-0.68578,-0.23154,-0.32029,-0.91855,-0.51851,-0.24079,-0.82043,0.3152,0.83636,0.44847,-0.9949,0.089114,0.046754,-0.9696,0.16526,0.18024,0.097812,-0.12403,-0.98743,0.43907,0.87561,0.20118,0.36949,0.89816,0.23817,-0.55864,0.43547,-0.70586,-0.92898,0.20246,0.30973,-0.88601,0.32926,0.32637,-0.95029,0.21427,0.22587,0.5454,-0.33445,-0.76852,0.26118,0.94897,0.17658,0.45698,0.87225,0.17408,-0.15107,-0.34947,-0.92468,-0.46364,-0.54204,0.70086,-0.50923,-0.7271,0.46034,0.020692,0.35905,-0.93307,-0.13657,0.24613,-0.95956,-0.17747,-0.36314,-0.91467,0.19098,0.63564,-0.74795,0.28178,0.60591,-0.74392,-0.95611,0.037019,-0.29057,0.81518,-0.19108,0.54677,0.80975,0.019715,0.58641,0.96674,-0.14634,-0.20972,0.83364,-0.32859,-0.44386,0.95801,-0.28626,-0.014679,-0.067354,0.84713,-0.52706,-0.1543,0.8486,-0.50597,0.46547,-0.258,-0.84661,0.15806,-0.11054,-0.9812,0.94806,-0.31712,-0.023774,0.95721,-0.28507,0.049135,0.92788,-0.37199,-0.024934,0.45134,0.84408,0.28944,0.67693,0.63604,0.37034,-0.49278,-0.24384,0.83526,-0.47014,-0.068484,0.87991,0.29972,-0.18982,-0.93493,0.43504,-0.18516,-0.88116,0.10639,-0.010132,-0.99426,0.08594,9.2e-05,-0.99628,0.03824,-0.080691,-0.996,-0.11679,0.51476,0.84933,-0.094028,0.2624,0.96036,0.81371,-0.51885,0.26194,0.64394,-0.16181,-0.74773,0.56359,0.005066,-0.82601,0.29023,0.94623,0.14283,-0.016602,0.99985,-0.0047,0.85849,-0.48628,-0.16279,0.49593,-0.27671,-0.82305,-0.94809,0.061068,0.31202,-0.92261,0.30769,0.23261,0.82022,0.40199,0.40693,-0.28578,0.80294,0.52306,0.50502,0.50581,0.69933,0.89578,-0.11966,-0.42805,-0.87726,-0.23759,-0.41703,-0.33131,0.099857,0.9382,-0.32102,-0.058809,0.94522,0.48109,-0.56856,-0.66726,0.39872,-0.48821,-0.7763,0.37748,0.92596,-0.005493,0.39317,0.91946,0.00119,0.48997,0.56069,-0.66747,0.56285,0.55751,-0.61019,0.70013,0.10505,0.70623,0.18516,0.44478,0.87625,0.079897,0.38435,0.91971,0.34043,-0.32289,-0.88305,0.44813,0.88165,0.14774,0.51927,0.32166,0.79174,0.29746,0.64571,0.70324,0.93536,0.16095,0.31486,0.86804,0.46101,0.18418,0.93078,0.29224,0.21949,0.93884,0.27882,0.20194,0.68337,0.26396,0.68062,-0.3202,0.52409,0.78915,-0.38813,0.4601,0.79852,-0.27253,0.49098,0.82742,0.049837,-0.17283,-0.98367,-0.039094,-0.24421,-0.9689,0.22672,0.97067,0.079775,0.3408,-0.47606,-0.81066,0.31523,0.74172,0.592,0.38521,0.88675,0.25544,0.47917,0.78768,0.38719,0.31046,-0.49062,0.81417,0.4463,-0.28822,0.84716,0.56365,0.81793,0.11524,0.63872,0.7409,0.20753,-0.98794,-0.095859,-0.12152,-0.96866,-0.21824,0.11856,0.87603,-0.47301,0.093844,0.90902,-0.41514,0.035585,-0.032167,0.38157,-0.92376,-0.76305,-0.58016,0.28483,-0.79928,-0.55532,0.22959,0.75613,0.3112,0.57564,0.80157,-0.073336,0.59337,0.53392,-0.26517,0.80285,0.65172,-0.33351,0.68114,0.11075,0.26347,-0.95825,-0.027924,0.28333,-0.95859,0.68303,0.69726,0.21738,0.68914,0.52852,0.49568,0.15714,0.47505,-0.86581,-0.001617,0.44856,-0.89373,0.10227,0.9837,0.1478,0.28288,0.93112,0.23008,0.42018,0.88333,0.20765,0.049532,0.27934,-0.95889,-0.93024,-0.090518,0.35557,-0.80984,-0.23389,-0.53795,-0.88913,-0.41136,-0.20042,-0.23054,-0.082522,-0.96954,-0.94739,-0.18372,-0.26203,-0.93689,-0.3086,-0.16428,-0.90673,-0.23783,-0.34819,0.41316,0.89572,0.16419,0.28098,0.89209,0.3538,0.35206,0.92114,0.1659,0.32868,0.93554,0.12909,0.056887,0.82424,0.56334,0.19367,-0.30805,-0.93142,0.95962,0.23575,0.15329,0.99219,0.061098,0.10855,0.97247,0.027833,0.23133,-0.5125,0.59014,-0.62374,0.50783,-0.32353,0.79836,0.48869,-0.31971,0.81173,-0.94119,-0.33665,-0.028016,0.56069,0.80181,0.20658,0.99127,-0.03058,0.12815,-0.95331,-0.07535,0.29237,0.034181,0.81137,-0.58348,0.14936,0.76992,-0.62038,-0.2945,0.45634,-0.83962,-0.37284,-0.19785,-0.90652,-0.44182,-0.27152,-0.85498,-0.12247,0.1858,-0.97491,-0.084506,0.10358,-0.991,-0.53166,0.43168,-0.72866,-0.64705,0.4872,-0.58644,-0.15845,-0.34053,-0.92676,-0.25285,-0.37504,-0.89184,0.1702,-0.38252,-0.90811,-0.014313,-0.5117,-0.859,0.041627,-0.53026,-0.8468,-0.91647,-0.14554,-0.37263,-0.87851,-0.30375,-0.36866,0.062563,-0.1139,-0.99152,0.16193,-0.16797,-0.97238,0.099216,-0.090182,-0.99097,-0.88177,0.34019,-0.32664,-0.80404,0.33448,-0.4915,0.92239,-0.26096,-0.28471,0.97183,-0.17734,-0.155,0.98062,-0.069582,-0.18311,-0.77871,-0.39876,-0.4843,-0.81359,-0.28672,-0.50578,-0.14954,0.5739,-0.80511,0.009583,0.64794,-0.76159,-0.53093,-0.046205,0.84613,-0.41517,0.071627,0.90689,-0.32978,-0.042512,0.94308,-0.029298,0.17963,0.98328,-0.90783,0.29813,0.29475,-0.88897,0.096988,0.44749,0.74538,-0.022309,0.66622,0.90057,-0.3419,-0.26832,0.80599,-0.36653,-0.46474,0.18763,0.058687,-0.98047,-0.22806,0.053652,-0.97214,0.90957,0.099185,0.40348,0.9389,0.1081,0.32667,0.35057,0.080905,0.93301,0.52437,-0.27815,0.80474,-0.6361,-0.27796,0.71978,-0.80166,-0.14566,0.57973,-0.94131,-0.17826,0.28654,0.2132,0.60997,-0.76318,0.29682,0.94437,0.14145,0.37043,0.92731,0.053468,-0.45228,0.74447,-0.49107,0.91244,-0.33665,-0.23246,0.093539,-0.94092,0.32545,-0.005036,-0.98163,-0.19059,0.15464,-0.49016,-0.85778,-0.83694,-0.30851,0.45198,0.74886,0.63723,-0.18195,0.79836,0.59444,-0.095859,0.86404,-0.22098,-0.45228,-0.39134,-0.3563,-0.84845,-0.93573,-0.35157,0.027802,-0.037812,0.62047,-0.78329,-0.35975,0.60219,-0.71267,-0.99481,-0.10089,0.010895,-0.75243,0.65761,0.036561,-0.73888,0.66305,0.11982,0.40724,0.57585,0.70888,0.45106,0.70983,0.54094,-0.10788,0.096133,-0.9895,-0.61431,-0.46791,-0.63533,-0.17258,-0.32945,-0.92825,-0.39601,-0.29392,-0.8699,0.33561,0.92343,0.18607,0.24076,0.95837,0.15326,-0.009156,0.32795,-0.94464,-0.15671,0.60909,0.77743,0.97311,-0.17652,-0.14789,0.98358,-0.12626,-0.12873,-0.099948,0.32551,-0.94021,0.2335,-0.44365,0.86523,-0.26267,-0.65044,0.71267,-0.38853,-0.36488,0.8461,-0.88009,0.31254,-0.35737,0.72585,-0.19968,0.65819,-0.9845,0.027467,-0.1731,-0.91806,-0.20118,0.3415,-0.94995,-0.12787,0.28498,0.8908,0.1604,0.42506,0.74087,0.090335,0.66552,-0.90292,-0.28623,-0.3205,-0.858,-0.19428,-0.47542,-0.32725,-0.25883,-0.90878,0.06296,-0.056063,-0.99643,-0.17344,0.83969,-0.5146,-0.083743,0.85748,-0.50758,0.66305,-0.47939,0.57488,0.3816,-0.27696,-0.88183,-0.013123,-0.29722,-0.95471,0.92053,-0.16019,0.3563,0.90258,0.038057,0.42882,0.94009,-0.30656,0.14893,-0.90915,0.11603,0.39994,-0.94928,0.17338,0.26225,-0.89508,0.23405,0.37953,-0.29658,-0.5659,-0.76925,-0.96911,-0.081545,0.23261,-0.99139,0.022279,0.12888,-0.47191,-0.34275,-0.81225,-0.37202,-0.49886,-0.78277,-0.44301,-0.42833,-0.78756,-0.37062,-0.34022,-0.86419,0.59889,-0.39399,-0.69717,0.53017,-0.18339,-0.82778,0.56822,-0.23371,-0.78897,-0.93207,-0.079501,-0.35344,-0.70998,0.5031,0.49272,-0.63015,0.52376,0.5732,-0.74297,0.39589,0.53963,0.17023,0.3112,-0.93497,0.14057,0.18436,-0.97275,0.12738,0.36152,-0.92358,-0.10602,0.35853,-0.92746,-0.037507,0.30769,-0.95071,0.27119,-0.17264,-0.9469,-0.66765,0.61266,-0.4229,-0.002472,0.70705,0.70711,0.48323,0.8619,0.15348,0.51814,0.81896,0.2465,0.44008,0.86789,0.23032,0.85922,-0.28513,-0.42476,0.30723,0.39143,0.86737,0.45991,0.36192,0.81085,-0.81695,0.57668,0.001129,-0.54271,-0.41127,-0.73229,-0.52284,-0.33442,-0.78405,0.20768,0.16889,-0.9635,0.89471,-0.16755,0.41395,-0.41679,-0.18381,-0.89019,0.96875,-0.17023,0.18033,0.97967,-0.14817,0.13517,0.91296,0.15351,0.378,0.9465,0.08002,0.3126,-0.53389,-0.35118,-0.76916,-0.36116,-0.40294,-0.84094,0.26792,-0.40935,-0.87213,-0.0524,-0.50829,-0.85955,-0.55266,-0.003723,0.83337,-0.51848,0.076449,0.85162,-0.47899,-0.015931,0.87765,0.12705,0.10697,0.98608,0.31391,0.32792,0.89102,0.8526,0.18867,-0.48726,-0.96072,-0.176,0.21448,-0.99484,-0.10117,-0.003754,-0.95581,-0.18265,0.23032,0.8421,-0.29502,0.45143,0.87423,-0.062471,0.48143,0.97299,-0.016449,0.23017,0.80886,-0.3661,-0.46007,0.96542,-0.089114,0.24491,-0.93225,-0.29902,0.20359,-0.48805,-0.25916,-0.83343,-0.55486,-0.19529,-0.80868,-0.97754,-0.21009,0.01532,-0.96481,-0.2627,0.007752,-0.38084,-0.18604,0.9057,0.90994,-0.40449,-0.091494,0.95163,-0.30705,-0.008332,0.14127,0.72466,-0.67443,0.60866,0.6718,0.4221,0.032868,-0.075014,0.99661,0.18406,0.78423,-0.59249,0.46083,0.70559,-0.53829,0.75747,0.62056,-0.2027,0.74993,0.64846,-0.13056,0.69903,0.69881,-0.15162,-0.49089,0.27293,0.82733,-0.50355,0.034455,0.86325,0.087741,0.27198,-0.95828,0.20197,0.20844,-0.95694,0.14982,0.33845,-0.92895,0.49989,0.81558,0.29136,-0.27406,0.86505,-0.42018,-0.44108,0.77844,-0.44658,0.65258,-0.32182,-0.68597,0.70696,-0.3148,-0.63332,-0.30485,-0.077731,-0.94922,0.018494,-0.073489,-0.9971,0.39146,0.76363,0.51338,0.32966,0.71822,0.61275,0.47517,0.63942,0.60442,-0.84149,0.15888,-0.51634,-0.62758,0.36998,-0.68499,-0.58736,0.38523,-0.71172,-0.57155,-0.37095,-0.73189,-0.13175,-0.25999,-0.95654,0.84689,-0.025544,0.53111,-0.1073,-0.021668,0.99399,-0.29698,-0.54271,0.78564,-0.26783,0.005402,0.96344,-0.011353,-0.44118,-0.89734,0.18241,-0.50597,-0.84301,0.15491,-0.42274,-0.89288,0.081973,0.55724,-0.82629,-0.11096,0.9913,-0.070681,-0.18925,0.97797,-0.087863,0.54943,0.023804,0.8352,0.32041,-0.089175,0.94305,0.33381,-0.03058,0.94211,0.45354,-0.007843,0.8912,-0.95834,-0.2848,0.020356,0.25278,-0.34193,0.90506,-0.82464,-0.5638,-0.045625,-0.27973,0.21232,-0.93628,-0.20795,0.17347,-0.96262,-0.2747,0.24143,-0.93069,0.91714,0.009308,0.39839,0.54295,0.71505,-0.44026,0.90893,0.047639,0.41414,-0.17411,-0.45647,-0.87249,-0.75298,-0.15058,0.64052,0.8876,-0.36805,0.27686,-0.18809,0.18326,-0.96487,-0.19419,0.32591,-0.92523,-0.9516,0.19547,0.23713,-0.95114,0.29255,0.098361,0.002747,0.68227,-0.73107,0.23066,0.81973,-0.52422,0.6306,-0.77343,-0.06415,0.46293,-0.85022,0.25053,0.45067,-0.83639,0.3119,0.91626,0.23951,0.32105,0.2508,0.41826,-0.87298,0.19843,0.45924,-0.86584,0.85418,-0.16044,0.49458,0.8685,0.037782,0.49422,0.85882,-0.45039,0.24396,0.89349,0.16495,0.41765,0.91913,0.28394,0.27308,0.97818,0.06885,0.1959,-0.3907,-0.84948,0.35453,-0.11634,-0.83444,0.53862,-0.32182,-0.94021,0.11124,-0.95315,-0.21625,-0.2114,-0.97803,-0.19925,-0.061129,-0.99374,-0.092288,-0.062532,-0.49617,-0.49443,-0.71364,-0.4124,-0.69262,-0.59172,0.52635,-0.12198,-0.84146,-0.98697,-0.097537,-0.12784,0.16672,0.63753,-0.75213,-0.024567,-0.32527,-0.94528,-0.026978,0.50127,-0.86483,0.10083,0.19077,-0.97641,-0.46379,0.4453,0.76586,-0.46727,0.50832,0.72335,-0.5305,0.36692,0.76412,-0.49849,0.39488,0.77169,-0.764,0.29096,0.57585,-0.99792,0.047792,-0.04297,-0.27998,-0.70598,-0.6505,-0.58541,-0.30601,-0.75075,-0.26176,-0.19761,0.94467,-0.10581,-0.24128,0.96466,-0.037751,-0.40953,0.9115,-0.63067,-0.32124,-0.70641,0.47502,0.053316,0.87832,-0.92267,-0.25455,-0.28953,-0.89703,-0.10703,-0.42876,-0.89651,-0.30073,-0.32524,-0.93576,-0.077212,0.34403,-0.96918,0.010559,0.24604,-0.95508,-0.030396,0.29472,-0.69619,0.2848,0.65892,-0.78945,0.57457,-0.21586,-0.93612,-0.31697,0.15229,-0.96344,0.032655,0.26591,-0.092074,-0.79595,0.59828,-0.89123,0.22453,0.39402,-0.83477,0.17005,0.52364,-0.74367,-0.56719,0.35383,-0.21119,0.10028,-0.97226,-0.30329,-0.11518,-0.94589,-0.67666,-0.18549,0.71252,-0.24424,-0.31758,0.9162,0.89254,-0.31422,-0.32337,0.8634,-0.085726,-0.49715,0.79232,-0.19993,-0.57637,-0.97815,-0.20508,0.033784,-0.95071,-0.27628,0.1406,-0.98233,-0.13135,0.13309,0.24674,0.64339,0.72463,0.47362,0.87243,0.12049,0.40321,0.87915,0.25394,-0.83947,-0.006592,0.54335,-0.59838,-0.61229,0.51671,-0.919,-0.18745,0.34678,-0.065462,0.17569,-0.98224,-0.55907,-0.32734,0.76174,-0.21027,-0.60616,0.76699,0.17274,-0.23136,-0.9574,0.082736,-0.33497,-0.93857,0.20838,-0.37004,-0.90533,0.76226,-0.12156,-0.6357,0.13154,-0.39653,-0.90854,0.58666,-0.41322,0.69646,-0.14594,-0.48897,0.85998,0.084964,-0.61214,0.78616,-0.88748,-0.2606,-0.38002,-0.92413,-0.31678,-0.21345,0.11649,0.19013,-0.97479,0.15021,0.26658,-0.95203,0.84356,0.53642,0.024995,0.95151,0.29316,-0.092868,0.9368,0.30583,0.16977,0.4123,0.10807,0.9046,0.4843,0.26099,0.83502,-0.62899,-0.22257,0.74487,-0.6346,-0.15073,0.75796,-0.9888,-0.13431,-0.064882,0.99616,-0.035554,0.08005,0.9129,-0.13309,0.38585,-0.9816,-0.094394,-0.1659,-0.99539,-0.027467,0.091647,-0.51924,0.64916,0.5558,-0.19617,-0.5884,0.78439,0.80404,0.374,0.46214,-0.5222,0.65819,-0.54225,0.31953,-0.30107,-0.89843,0.55162,-0.51851,-0.65331,0.76757,-0.30308,-0.56475,0.69408,0.56249,-0.44923,0.79504,0.39348,-0.46159,0.82434,0.45387,-0.3383,0.99881,-0.043062,-0.022126,0.99448,-0.066866,0.080569,-0.14084,0.079318,-0.98682,-0.27879,-0.4456,-0.85067,0.31935,0.93268,-0.16758,0.48061,0.87079,-0.10346,0.29386,0.15296,0.94351,0.73803,0.66176,-0.13154,0.7101,0.65068,-0.26896,0.55864,0.73968,-0.37513,0.64669,0.27992,-0.70949,0.71255,0.21998,-0.66622,0.66482,-0.31461,-0.67748,0.44691,-0.33857,-0.828,0.32362,0.8985,0.29658,0.022736,0.014405,-0.99963,-0.20563,-0.33616,0.91907,-0.10804,-0.51189,0.8522,-0.56981,0.24101,0.78561,-0.39747,0.001526,0.9176,0.69698,0.48018,0.53255,0.24015,-0.24699,-0.93878,0.36732,-0.073611,-0.92715,0.44056,0.86389,0.24399,0.56059,0.80328,0.20109,0.59972,0.73876,0.30744,-0.47435,0.42839,0.76904,-0.38676,0.58443,0.71331,-0.335,0.63304,0.69784,-0.31391,0.61965,0.71932,-0.98111,0.082064,0.17505,-0.59105,0.35887,0.72237,0.2497,0.25535,-0.93402,0.49516,0.82525,0.27146,0.18198,0.87274,0.45299,0.14472,-0.035707,-0.9888,0.59548,-0.41618,0.68715,-0.50264,-0.21409,-0.83752,-0.45924,-0.31779,-0.82949,-0.97598,-0.18171,0.12006,-0.99258,-0.1211,-0.00885,0.31828,0.14191,-0.93728,-0.62438,-0.3816,-0.68154,0.19392,0.94186,0.27436,-0.9968,-0.079684,0.00589,-0.96536,-0.19544,0.17274,0.17264,0.25199,0.95218,0.13645,0.42705,0.89386,-0.23768,-0.49052,0.83837,0.83496,-0.3003,-0.4611,0.91528,-0.2487,-0.31681,0.26392,-0.2899,-0.91992,-0.21256,0.72283,0.65749,0.63613,-0.23957,-0.73342,0.61278,-0.32469,-0.72042,0.22611,0.70574,-0.67138,0.22373,0.68737,-0.69097,0.14234,-0.37068,-0.91775,0.47969,-0.24543,-0.8424,-0.5526,0.23304,0.80019,0.017548,0.96127,-0.27494,0.31516,0.50133,0.80578,0.56014,-0.3437,0.75372,0.7413,0.53865,-0.40037,-0.98648,-0.14905,0.06766,0.19349,-0.33558,-0.9219,0.30299,0.93036,0.20643,0.76733,0.33619,-0.54601,0.78487,0.31211,-0.53526,-0.84683,-0.25263,0.468,-0.75024,-0.26225,0.60689,-0.85076,-0.23518,0.46992,0.1048,0.95251,0.28581,0.23463,0.91485,0.32853,0.10083,0.9816,-0.16211,0.40336,-0.80337,-0.438,0.44374,-0.89306,-0.074007,-0.20689,0.46623,0.8601,-0.16529,0.55931,0.81228,-0.16367,0.58989,0.7907,-0.59966,-0.14002,0.78787,0.019807,0.23304,-0.97226,-0.002838,0.23457,-0.97208,-0.007569,0.81823,-0.57479,0.012329,0.78884,-0.61446,0.90683,0.11991,0.40403,0.83123,0.29868,0.46882,0.97018,0.074374,0.2306,0.93396,0.33802,0.11597,0.89245,0.33082,0.30668,-0.21,0.063692,-0.97562,0.429,0.89584,0.1157,-0.67098,-0.42274,-0.60912,-0.31263,-0.47295,0.82376,-0.69991,-0.10279,0.70678,0.9299,0.29905,-0.21406,0.94089,-0.33668,-0.036378,0.79525,-0.47874,-0.37196,0.20765,0.31269,0.92685,-0.97775,0.052248,0.20307,-0.99277,0.004791,0.11979,-0.42607,0.60179,0.67547,-0.55794,0.56694,0.60601,-0.60955,0.52251,0.59615,0.5808,-0.23872,-0.77822,0.98724,-0.10935,0.1156,0.7637,-0.52098,-0.38118,0.88589,-0.064455,0.45933,-0.93912,-0.006195,0.34346,-0.94287,-0.039583,0.33073,-0.57308,-0.46586,-0.67418,0.075564,0.95013,-0.30247,0.81405,0.22175,0.53673,-0.060305,-0.21265,-0.97525,0.67571,-0.006287,0.73711,0.88421,0.31492,0.34489,0.88452,0.088687,0.45799,-0.39641,-0.52431,-0.75359,0.98044,0.12076,0.15525,0.81426,-0.34251,-0.46864,0.95819,-0.27576,0.076083,0.7655,0.23963,0.5971,0.6448,-0.080813,0.76006,0.28458,0.95221,0.11087,-0.15513,0.56511,0.81027,-0.34996,0.23493,0.9068,-0.34471,0.42616,0.83639,0.92416,-0.2645,0.27555,0.95212,-0.2837,0.11371,-0.77294,0.069185,-0.63067,-0.94507,0.018006,-0.32637,-0.69478,0.021912,-0.71886,-0.87021,-0.17161,0.46178,-0.93567,-0.21192,0.28205,-0.8764,-0.19419,0.44066,0.22483,-0.50935,-0.83062,-0.049226,0.99667,-0.064577,-0.027223,0.99512,0.09479,0.90069,-0.15714,0.40498,0.89105,-0.36555,0.26896,-0.58095,-0.28931,-0.76077,-0.66494,-0.25501,-0.70199,0.13657,-0.04709,-0.9895,-0.73421,0.10508,-0.67071,-0.85342,0.004089,-0.52116,-0.86648,0.051485,-0.49651,-0.94208,-0.005402,-0.33534,0.77508,-0.26835,-0.57201,0.70657,-0.19504,-0.6802,0.58864,-0.24412,-0.77062,0.32875,-0.72515,0.60503,-0.004547,0.98941,0.14499,-0.44026,-0.23466,-0.86663,-0.35472,-0.40147,-0.84436,-0.001465,-0.16486,0.9863,-0.15561,-0.20618,0.96603,-0.24577,-0.15885,0.95621,0.68206,-0.53206,0.50166,0.57674,0.49947,0.64641,-0.48112,-0.28901,-0.8276,-0.17347,-0.28233,-0.94348,-0.42955,-0.19504,-0.88171,-0.69024,-0.22013,0.68923,-0.2873,-0.83154,0.47536,0.40809,0.89358,0.1868,0.34315,0.9302,0.13016,0.55815,0.78265,0.27549,0.16532,0.4789,-0.86215,0.25648,0.35673,-0.89828,0.90896,0.11377,-0.40098,0.95157,0.073824,-0.29835,0.92975,0.072939,-0.36085,0.25101,0.68837,-0.68053,0.3209,0.65606,-0.68307,0.37507,0.64498,-0.66579,-0.32472,0.7123,0.62221,-0.49101,0.49397,0.71752,0.54119,0.49629,0.67879,0.22022,0.099338,0.97037,0.64046,-0.010376,0.76791,-0.99133,0.12592,-0.036958,0.34645,0.82937,-0.43825,-0.00586,0.066408,-0.99777,-0.82788,0.55129,-0.10324,-0.61699,0.7543,-0.22428,-0.70769,0.66854,-0.22834,0.49187,0.72024,-0.48915,0.61089,0.69063,-0.38704,-0.008911,-0.47612,-0.8793,0.024506,-0.50548,-0.86245,0.67342,-0.61556,0.40928,0.062166,-0.49233,0.86816,-0.62197,-0.77133,0.13477,-0.029969,-0.95871,0.28272,-0.87692,0.083438,0.47328,-0.96521,0.18311,0.18653,-0.90381,0.31825,0.28599,-0.48067,0.82238,-0.30433,0.60759,0.71612,0.34342,0.47044,-0.21577,0.85562,0.29746,0.24296,0.92328,-0.96152,-0.21204,0.1745,0.47926,0.82177,0.30812,0.55599,0.8027,0.21567,0.49577,0.69674,0.51836,0.40165,0.79177,0.46016,-0.30784,0.41612,-0.85559,-0.25727,0.46489,-0.84713,-0.11972,-0.38475,0.91519,0.57003,-0.34727,-0.74459,0.52309,-0.23838,-0.81823,0.80917,-0.009827,0.58745,0.38182,0.5924,0.7094,-0.74987,-0.28922,-0.59499,0.90475,0.13904,0.40257,0.97958,0.043825,-0.19611,0.98578,-0.009705,-0.16773,0.8966,-0.35917,-0.25892,0.91003,-0.41206,-0.044832,0.94717,-0.22907,-0.22437,-0.9476,0.017762,0.31889,-0.91311,-0.087954,0.39802,-0.015412,0.76696,-0.64147,0.48521,0.85482,-0.18387,0.54503,0.8377,-0.033601,0.99286,-0.11853,-0.010804,-0.74731,-0.34266,-0.56923,-0.88055,-0.10804,0.46144,0.62865,0.77529,-0.060457,0.74896,0.65926,-0.066347,-0.091403,0.33036,-0.93939,-0.28809,0.29765,-0.91015,0.39964,-0.33561,-0.85299,0.43629,-0.29084,-0.85147,0.49043,-0.25162,-0.83435,-0.89792,-0.13733,-0.41813,0.015534,-0.49635,-0.86795,-0.12333,-0.47566,-0.87091,0.71664,0.042268,-0.69613,0.51888,0.8207,-0.23914,0.87728,-0.34275,0.33592,0.64077,-0.70653,0.30033,0.25092,0.16282,-0.95419,0.16974,0.28633,-0.94296,0.53414,0.60494,0.5905,0.67669,0.69301,0.24854,0.61977,-0.68145,0.38917,0.96384,-0.2104,0.1634,0.97485,-0.016877,0.22218,0.11567,-0.49031,-0.8638,0.15891,-0.47902,-0.86328,-0.004181,-0.40007,-0.91647,-0.96417,0.14692,0.22086,-0.8999,0.010834,0.4359,-0.99951,0.025056,-0.018281,-0.60375,-0.52635,0.59865,-0.30003,-0.4547,0.83856,0.4528,-0.38398,-0.80468,-0.47764,-0.20115,0.85519,-0.3325,-0.3516,0.87509,0.14789,0.9744,0.1692,-0.45094,0.48204,0.75115,-0.62368,-0.043855,0.78042,-0.78878,-0.24348,0.56438,-0.62166,-0.38893,0.67989,0.87906,-0.223,-0.42128,0.88205,-0.25913,-0.39344,-0.67437,-0.68221,0.28245,-0.69851,-0.69201,0.1822,-0.45122,-0.25877,0.85403,0.87582,-0.45692,0.15534,0.84671,-0.52202,0.10266,-0.5783,0.59343,0.55977,-0.55275,0.65871,0.51042,-0.30805,0.61324,0.72732,0.8554,-0.29725,-0.42415,0.17731,0.56731,0.80416,-0.6968,-0.12903,-0.70553,-0.85696,-0.037568,-0.51399,-0.97931,0.026154,0.20054,-0.95984,0.044404,0.27689,-0.18152,-0.4225,-0.88797,-0.3383,-0.43611,0.83386,0.56935,0.45671,-0.68352,-0.45683,-0.21864,0.86224,0.41575,-0.32371,-0.84988,0.26072,-0.22098,-0.93976,0.98099,-0.16376,0.10401,-0.69478,-0.40675,-0.5931,-0.008545,-0.11429,-0.99341,0.055116,-0.28669,-0.95642,0.53108,0.027253,-0.84686,0.81335,0.49742,0.30165,-0.77187,0.45061,-0.44844,-0.59246,0.54042,-0.5974,0.83325,-0.26444,-0.48549,0.72997,-0.28846,-0.61959,0.69298,-0.28504,-0.66219,0.65957,-0.35868,-0.66051,0.53102,-0.40165,-0.74609,0.7542,-0.36106,-0.54839,0.61919,-0.28718,-0.7308,0.018342,0.16596,-0.98593,-0.084811,-0.99069,0.10636,0.52177,0.027131,0.85263,0.48561,-0.10999,0.86721,0.67876,0.58809,-0.43974,0.54372,0.73327,-0.40819,0.33775,0.69985,-0.62935,0.49412,0.54897,-0.67412,-0.49312,0.06418,-0.86758,-0.348,-0.023591,-0.93716,0.21177,0.9743,0.07654,-0.43852,-0.23655,-0.867,0.10794,0.97714,0.18302,0.38288,0.9111,0.15253,0.24604,0.94684,0.20719,0.73171,0.3679,-0.57378,-0.016083,0.29435,-0.95554,-0.99039,-0.11356,0.078738,-0.16684,-0.011628,-0.9859,-0.2291,0.11295,-0.9668,-0.22001,0.076205,-0.9725,-0.49028,-0.43858,-0.75314,-0.70861,-0.12183,0.69497,0.088656,0.29966,-0.94989,-0.11814,0.85696,-0.50163,-0.48729,0.81445,-0.31495,-0.54042,0.7582,-0.36476,0.23521,0.46071,0.85577,0.59178,0.66878,0.44993,0.39122,0.75811,0.52168,0.6325,0.77374,-0.035127,0.1445,0.91208,0.38368,-0.85455,-0.22465,-0.46825,-0.85641,-0.34736,-0.38194,-0.88815,-0.32334,-0.32649,0.005432,0.64849,-0.76119,0.1109,0.43587,-0.89312,-0.86026,-0.42912,-0.27528,-0.485,-0.26963,-0.83187,-0.4286,-0.14374,-0.89196,-0.41725,0.83962,-0.34764,-0.46483,0.80483,-0.36897,-0.091464,0.84774,-0.52242,0.015137,-0.90735,0.42006,-0.073672,-0.98831,0.13334,0.33726,0.92779,0.15931,0.42622,0.8966,0.11997,0.74053,-0.25077,-0.62343,0.78741,-0.17124,-0.59212,0.85247,-3.1e-05,0.52275,0.97046,-0.16623,0.17472,0.66451,-0.425,-0.61461,0.58788,-0.34782,-0.73031,-0.039918,-0.99536,0.087497,0.26243,0.73153,-0.62926,0.1392,0.78918,-0.59813,0.19684,0.41868,-0.88653,0.38218,-0.91888,0.097598,0.42149,-0.87628,0.23325,0.30808,0.61907,0.72237,0.17335,0.43281,0.88464,-0.73879,0.57274,-0.35514,-0.75133,0.53792,-0.38218,-0.54549,0.69103,-0.4742,0.46202,-0.41337,-0.7846,-0.35865,-0.18937,-0.91403,0.72433,-0.52614,0.44551,0.32698,-0.21888,0.91931,-0.56255,-0.16089,-0.81094,-0.66567,-0.14219,-0.73257,-0.57793,-0.22831,-0.78347,0.59017,-0.2017,0.78164,-0.074465,0.87127,-0.48506,0.091067,0.86605,-0.49153,-0.15842,0.18152,-0.97052,-0.99887,-0.010132,0.045839,-0.85586,-0.48778,0.17185,0.98175,-0.006134,-0.19001,0.035463,-0.21604,-0.97574,-0.85684,0.1439,0.49507,-0.85202,0.035737,0.52223,-0.36119,-0.43568,-0.8244,-0.73315,0.046999,0.67843,-0.77566,0.37367,0.50859,0.1507,-0.35783,-0.92154,0.24787,-0.36894,-0.89575,-0.99802,0.052828,0.03415,-0.94134,0.19849,0.27277,0.38655,-0.7351,0.5569,0.46584,-0.71404,0.52257,0.66292,0.60518,0.44072,0.75127,-0.3014,-0.58712,-0.99408,-0.10428,-0.029542,-0.6155,0.21015,0.75958,0.67983,-0.65587,0.32807,-0.85055,-0.17826,-0.49474,0.10514,0.8814,-0.46043,-0.47264,0.79605,-0.37797,-0.58269,0.65603,-0.47966,0.58474,0.644,-0.49321,-0.43861,-0.74633,0.50057,-0.34269,-0.74511,0.57213,0.01999,0.59535,-0.80319,0.70635,0.65572,-0.26655,-0.93884,-0.34245,-0.035463,0.4247,0.67165,0.60701,0.62719,0.48662,0.60811,0.31825,0.93088,0.17924,0.033723,0.78436,-0.61934,0.20878,0.64629,-0.73394,0.057833,0.72185,-0.6896,0.24769,0.6415,-0.72601,0.19288,0.97827,0.075869,0.28352,0.95849,0.028962,-0.50392,-0.24046,-0.82959,-0.70583,-0.14893,-0.69253,0.054231,0.17777,0.98257,0.80944,-0.18778,-0.55632,0.80871,-0.18537,-0.55818,0.92587,-0.17573,-0.33442,0.45183,0.80511,-0.3842,0.51622,0.64727,-0.56081,-0.57671,-0.52153,-0.6288,-0.9787,-0.099948,0.1793,-0.99329,-0.05768,0.10022,0.59526,-0.49489,-0.63301,0.45668,-0.38392,-0.80248,0.70071,-0.48549,-0.52275,0.54631,0.82727,0.13083,0.90722,0.065371,0.41548,-0.6104,-0.69243,0.38459,-0.78582,-0.43974,0.43483,-0.12821,0.52278,0.84274,0.061617,0.52889,0.84643,0.74575,0.65282,0.13269,0.92932,-0.34123,-0.14093,0.12128,-0.81924,0.56044,0.21372,-0.73284,0.64592,-0.70281,0.16581,0.69176,-0.73775,0.14106,0.66012,-0.57973,0.10843,0.80752,-0.89624,0.27476,0.34819,0.4276,0.18809,0.88415,-0.50084,0.86428,0.0459,-0.48766,0.85705,-0.16608,0.94806,-0.31776,-0.012757,-0.066317,0.64452,-0.76168,-0.845,-0.33491,-0.41685,-0.77172,-0.4778,-0.41963,-0.92645,-0.2584,0.2736,-0.021363,-0.12897,-0.99139,-0.088992,-0.33097,-0.93942,0.18274,-0.14386,-0.97256,0.83459,-0.30073,0.46147,0.79309,0.30662,-0.52623,-0.92505,0.18006,0.33442,0.24528,-0.23502,-0.94052,-0.20377,0.3209,-0.92489,-0.47145,0.25767,-0.84338,-0.94443,-0.031495,0.32716,0.51106,0.14936,0.84643,0.56368,0.18662,0.80462,-0.95914,-0.28248,-0.014649,0.3249,0.94516,0.032624,0.47639,-0.21992,-0.85125,0.05063,0.45732,-0.88785,-0.45213,-0.28919,-0.84374,-0.058809,-0.28733,-0.95599,0.72753,-0.27088,-0.6303,0.62594,-0.24445,-0.74053,-0.53932,-0.39802,-0.74206,0.80892,-0.15152,0.56804,0.77868,0.076235,0.62273,0.86889,-0.14261,0.47398,0.091433,0.97992,0.17713,0.42604,0.73812,0.52312,-0.2909,-0.30894,-0.90548,-0.044588,0.26838,-0.96225,-0.014801,0.19706,-0.98025,0.751,0.35569,-0.55623,0.057466,0.4582,-0.88696,0.49864,0.86676,-0.006867,0.62172,0.7795,-0.075991,0.48109,0.87631,-0.024415,-0.91971,0.079287,0.38444,-0.26515,0.20521,0.94211,0.99853,-0.048585,-0.022553,0.99994,0.006623,0.008576,-0.63576,-0.26658,-0.72436,-0.77312,-0.45232,-0.44459,-0.91495,0.35304,0.1955,-0.95852,0.19977,0.20322,0.45445,-0.46144,-0.76192,0.44911,-0.52654,-0.72179,0.06299,0.98294,0.17261,0.99655,-0.043886,0.070132,-0.46327,-0.42402,-0.77816,-0.31764,-0.41249,-0.85376,-0.95572,-0.020844,-0.29344,-0.56978,-0.52388,-0.63314,-0.58766,0.44218,0.67754,-0.67928,0.41594,0.6046,-0.99087,-0.13447,-0.008545,-0.99994,-0.008148,-0.001404,-0.62783,0.38496,0.67647,-0.86581,-0.005951,0.50029,0.4611,-0.22846,-0.85742,-0.63085,-0.22694,-0.74197,-0.69936,-0.15677,-0.69732,-0.86386,0.11823,0.48961,0.91333,0.014161,0.40696,0.37822,0.61245,0.69411,0.39128,0.72054,0.57244,0.29209,0.62511,0.72381,0.15458,-0.37724,-0.91311,-0.13349,-0.10691,-0.98526,-0.21461,-0.16037,-0.96344,0.35981,0.70129,0.61538,0.50206,0.54659,0.67016,-0.96258,0.10791,0.24848,-0.95801,0.13181,0.25455,-0.96747,0.062441,0.24509,0.081027,-0.4611,-0.88363,-0.98874,-0.14808,-0.020905,-0.98898,0.022217,0.14625,0.26594,0.36058,-0.89398,0.95386,-0.092654,0.28553,0.95416,-0.24058,0.17798,0.76711,0.29634,0.5689,0.85128,0.05295,0.52202,0.69005,0.16941,0.70364,0.2656,0.94934,0.16788,-0.028077,0.088504,0.99567,-0.22279,0.20301,0.95346,0.41508,0.89926,0.13776,0.42204,0.89776,0.12595,-0.39515,-0.62957,-0.66893,-0.27805,-0.79064,-0.54546,0.07709,0.60637,0.79141,0.66784,-0.30992,-0.67669,0.98709,-0.070437,0.14371,0.88827,-0.39634,0.23203,0.39518,-0.34883,-0.84976,0.63067,-0.39482,-0.66805,-0.51866,-0.20463,0.8301,0.95724,0.27891,0.076479,0.9534,0.22996,0.19526,-0.13227,-0.65618,-0.74288,0.75085,-0.185,-0.63399,-0.93905,-0.34373,-0.000397,-0.49983,-0.3661,-0.78494,-0.60958,-0.41493,-0.67544,-0.67867,-0.037416,0.73348,-0.49788,-0.19031,0.84606,-0.76162,-0.095157,0.64098,0.95673,0.087344,0.27753,0.67531,0.086184,0.73244,0.52592,0.1279,0.84081,-0.15314,0.15271,0.97632,-0.99249,-0.12098,-0.016816,0.29652,0.94928,0.10437,-0.042146,-0.053774,-0.99765,-0.068178,0.14716,-0.98676,-0.19175,0.15064,-0.96979,-0.93048,-0.13065,0.3422,-0.89511,-0.080691,0.43846,-0.023011,0.13126,-0.99106,0.74795,0.62734,0.21677,0.95285,0.002838,0.30339,0.21354,0.10825,0.97089,0.21452,0.12668,0.96844,0.78359,-0.37492,-0.49535,-0.81286,-0.318,0.48796,-0.82287,-0.23432,-0.51759,-0.60991,-0.48653,-0.62551,-0.82959,-0.27369,-0.48665,0.25306,-0.28135,-0.92563,0.92618,-0.27723,-0.25553,0.96963,-0.24427,-0.01117,-0.99829,-0.012177,-0.056887,-0.97375,-0.22752,0.001038,-0.97055,-0.14142,0.19486,-0.54088,0.74993,0.38081,-0.51344,0.49583,0.70034,-0.38429,-0.12488,0.9147,-0.31388,0.2071,0.92657,0.98691,0.066744,0.14661,0.97336,-0.006989,0.2291,-0.33064,0.59255,0.73452,0.065706,0.62831,-0.77514,0.38728,-0.28111,-0.87805,0.068361,0.155,-0.98553,-0.58971,0.25324,0.76684,-0.98434,0.13575,0.11225,-0.90258,0.11243,0.41554,0.16273,0.29899,0.94027,0.33625,0.92801,0.16031,0.33781,0.92563,0.17039,-0.9386,-0.275,-0.20832,-0.92477,-0.10889,-0.36457,0.39567,0.7669,-0.50523,0.62142,0.53801,-0.56951,0.9368,0.15342,0.3144,-0.55827,-0.66875,0.49098,-0.92352,-0.18921,0.33354,0.43034,-0.27659,-0.85922,-0.97748,-0.16898,-0.12623,-0.96045,-0.26118,0.096255,0.16135,-0.16196,-0.97351,-0.87552,0.30113,0.37782,-0.78985,0.51863,0.32728,0.93063,0.21561,-0.2956,0.93774,-0.28361,0.20042,0.91772,-0.31239,0.24528,0.32157,0.90689,0.27222,-0.32148,-0.53142,-0.78372,-0.61745,-0.38353,-0.68673,0.14826,-0.45598,-0.87753,-0.090213,0.093295,-0.99152,0.26313,0.80172,-0.53664,0.46049,0.75561,-0.4658,0.32142,0.78219,-0.53368,-0.30848,-0.68276,0.66228,-0.98868,-0.13739,0.060213,-0.96298,-0.14566,0.22669,-0.54796,-0.45039,-0.70486,0.91955,0.12925,0.37104,-0.58769,-0.46745,-0.66033,0.45308,-0.89129,-0.016144,-0.10404,0.34162,-0.93405,0.7246,-0.39094,-0.56749,-0.3495,0.18595,0.91827,0.52556,-0.18903,0.82946,0.65783,-0.21973,0.72036,-0.82669,-0.49242,0.27213,-0.84152,-0.23627,0.48576,0.9808,-0.14155,0.13392,0.96811,-0.16639,0.1872,-0.27567,-0.035279,-0.96057,-0.65459,0.52928,-0.53972,-0.78948,0.49391,-0.36427,-0.80932,-0.3007,-0.50453,-0.83477,-0.41606,-0.36055,-0.94778,-0.086337,-0.30699,-0.32191,-0.25169,-0.91269,0.90762,-0.40379,-0.11463,0.94327,-0.30161,-0.13865,0.82983,0.090243,0.55061,0.96078,0.019349,0.27656,0.27851,0.95013,-0.14014,-0.016968,0.47594,-0.8793,-0.11783,0.35838,-0.92608,0.8923,-0.25489,-0.37257,0.98764,-0.15363,-0.030305,0.98147,-0.16553,-0.096255,-0.88501,-0.12973,0.44707,-0.95608,-0.044679,0.28965,-0.96774,-0.21216,0.13562,0.11841,0.98025,0.15818,0.41099,0.87435,0.25791,0.088687,0.95602,0.27946,-0.74743,0.063845,0.66124,-0.99158,-0.10269,-0.078829,-0.99786,-0.061678,0.021332,0.7084,0.59502,0.37956,0.46034,-0.44609,-0.76748,0.12848,-0.39869,-0.90802,0.30567,-0.46455,-0.83108,-0.48967,-0.38621,-0.78167,-0.020081,-0.16755,-0.98566,0.66097,-0.5851,-0.46983,-0.026917,-0.48674,-0.8731,0.13285,0.61022,-0.781,0.96771,-0.12906,0.21638,0.13929,0.18479,0.97284,-0.98151,0.001648,0.19135,-0.91574,-0.077578,0.39421,-0.96115,0.078921,0.26447,-0.98706,0.1438,0.070498,0.60619,-0.43025,-0.66887,-0.37599,-0.34654,-0.85937,0.49693,-0.060488,0.86566,0.58144,0.2729,0.76641,0.69881,0.19919,0.68697,0.009339,-0.98529,0.17063,0.77114,0.49782,0.39683,0.98343,-0.17808,0.033174,0.96124,-0.26655,0.070162,0.85046,0.3618,0.38182,0.9863,0.004059,0.16489,0.98788,-0.082736,0.1312,0.72906,-0.39946,-0.55577,-0.15958,0.14713,-0.97613,0.55907,-0.35844,-0.74758,-0.15366,0.095645,-0.98346,0.89038,0.094028,-0.44539,-0.57042,-0.49651,-0.65429,-0.65978,-0.37172,-0.65304,0.79159,-0.28312,-0.54146,0.54192,0.2017,0.81582,0.21277,-0.5331,-0.81881,0.69088,-0.33747,-0.63933,0.74407,-0.36961,-0.55651,0.055269,0.098819,-0.99356,0.18979,0.087863,-0.97787,0.19724,0.96902,0.14844,0.16901,-0.18491,-0.96808,0.31666,0.93451,0.16245,0.061342,0.50029,0.86367,0.75997,0.35807,0.54238,0.62584,-0.33521,-0.70418,-0.012574,0.50575,-0.86257,0.17347,0.61458,-0.76952,-0.14267,-0.006439,0.98975,0.21854,0.20481,0.95407,0.94119,-0.33726,-0.018738,0.9379,-0.34495,0.036317,0.95642,-0.28752,0.050295,-0.49754,0.20518,0.8428,-0.9324,0.23502,-0.27445,-0.88574,0.40925,-0.21894,-0.95157,0.25187,-0.17618,-0.11051,0.01764,-0.99371,0.92932,-0.34922,-0.11979,0.89386,-0.305,-0.32856,0.91864,-0.071139,0.38862,0.92648,0.045228,0.37358,0.27058,0.048128,0.96149,-0.81384,-0.020814,-0.58068,-0.80813,0.04239,-0.58745,-0.23691,-0.39891,0.88583,-0.27238,-0.33976,0.90017,0.49113,0.84442,0.21381,-0.80312,0.30631,0.511,-0.86413,0.21152,0.45659,0.03357,0.8623,-0.50526,0.15491,0.98755,0.026612,0.12995,0.97668,0.17081,0.20206,0.9751,0.09122,0.20237,0.96924,0.14005,0.099918,0.98059,0.16861,-0.88028,-0.24012,0.40919,-0.91098,-0.18766,0.36726,-0.88516,-0.19599,0.42195,-0.97559,0.16086,0.14942,0.66964,-0.32954,-0.66552,0.069948,-0.69829,0.71236,0.83898,0.33519,0.42863,-0.15461,0.94198,-0.29786,-0.84686,0.20365,0.49123,0.9013,-0.24174,0.35942,0.86883,-0.23545,0.43547,-0.76421,0.017457,-0.64467,0.67107,-0.74026,0.040162,-0.50813,0.80462,0.30714,-0.25034,0.4084,0.87777,0.95196,-0.17197,-0.2533,0.96707,0.17481,-0.18494,-0.13303,-0.051912,-0.98975,-0.074862,-0.07416,-0.99442,-0.19047,-0.08063,-0.97836,0.72021,0.68166,-0.12879,0.59914,0.75399,-0.26923,0.18305,-0.20765,-0.96091,-0.48814,-0.47066,0.73495,-0.26576,-0.33848,0.90265,-0.34156,-0.43742,0.83184,-0.91214,0.34959,0.2139,0.89743,0.062685,-0.43666,-0.95419,0.089602,0.28538,0.87527,0.40089,0.27043,-0.65712,0.48833,-0.57417,-0.67086,0.61925,-0.40794,0.5471,-0.14243,0.82482,0.57152,-0.10337,0.81402,0.96161,0.013977,-0.27403,-0.55785,0.70669,-0.43516,0.77648,0.43919,0.4518,0.69594,0.19013,0.69243,-0.15305,0.32795,-0.93219,-0.34049,-0.1362,0.9303,0.70031,-0.22007,-0.67904,0.8273,-0.22187,-0.51607,0.76766,-0.11872,-0.62975,-0.099399,-0.90011,0.42412,0.77065,-0.13578,-0.62258,0.8515,-0.32286,-0.41313,-0.10532,-0.43452,-0.89447,-0.40843,-0.48817,-0.77126,0.37577,0.42903,-0.82137,0.37498,0.51943,-0.76782,0.55669,-0.31434,-0.76891,0.62389,0.19282,-0.75732,-0.62151,0.76208,0.18143,-0.32112,0.93246,0.16532,-0.44191,0.8869,0.13443,0.41746,0.88931,0.18656,-0.23991,0.25941,-0.93548,-0.32356,0.27201,-0.90625,-0.96881,-0.21921,-0.1153,-0.96347,-0.26582,0.032441,-0.008911,0.070315,0.99747,-0.032807,0.46785,0.88318,-0.22941,0.14856,0.96191,0.80303,-0.29402,-0.5183,0.76702,-0.32319,-0.55425,0.20402,0.97821,0.03827,-0.58791,0.050386,-0.80734,-0.905,0.17798,-0.3863,0.59694,-0.25501,-0.76064,-0.94098,0.15339,0.30165,-0.922,0.15616,0.35429,0.92517,-0.3556,-0.13251,0.77422,0.56444,-0.28626,-0.71487,-0.17396,-0.67724,-0.92413,-0.23029,-0.30479,0.91125,-0.34541,-0.22416,0.32432,0.090793,0.94156,-0.9978,0.063906,0.016572,0.39228,-0.26945,-0.87945,0.006775,0.99448,0.10456,-0.34211,0.92026,0.18979,0.92639,-0.20005,0.31895,0.97134,-0.11173,0.20966,-0.039399,0.99921,-0.002167,0.45177,0.84704,-0.27998,-0.4362,0.82476,-0.35975,0.275,-0.058351,-0.95966,0.63494,0.26118,0.72704,-0.86737,-0.35688,-0.34678,-0.30714,0.93744,0.16379,-0.51607,0.84664,0.12976,-0.27592,0.29063,-0.91617,-0.093448,0.10266,-0.9903,-0.031526,0.3068,-0.95123,-0.003143,0.82769,-0.56114,-0.13733,-0.33778,-0.93112,0.24506,0.96127,0.12598,0.46239,0.52519,0.71435,-0.52562,-0.3123,0.79128,0.62865,0.41749,0.65609,0.71578,0.5258,0.45949,-0.42607,-0.29212,-0.8562,0.74578,0.2508,-0.61715,-0.52132,0.19697,0.83029,0.95709,-0.258,0.13172,0.045106,-0.067202,-0.9967,0.93341,-0.001373,0.35878,0.7213,0.31343,-0.6176,-0.15253,0.00647,-0.98825,0.02768,0.083193,-0.99612,0.10392,0.40135,0.91,0.31297,0.90918,0.27461,0.44752,0.50169,-0.74026,0.33344,0.46852,-0.81808,0.32578,0.51048,-0.79574,-0.94449,-0.32847,-0.004425,-0.39354,0.07709,0.91604,-0.10093,0.0871,-0.99106,0.95489,-0.1897,-0.22834,-0.75872,-0.61699,0.20887,-0.29209,-0.48238,0.8258,0.33607,0.93924,0.069735,0.2653,0.96414,-0.002686,-0.22764,0.77984,-0.58309,0.52525,0.846,0.091159,0.051332,0.36876,0.92807,-0.31333,-0.60775,-0.72967,0.75634,-0.077761,-0.64953,0.59728,0.77221,0.21656,0.48036,0.82116,0.30802,0.50261,0.80581,0.31303,0.033509,0.95932,0.28022,0.23814,0.95593,0.17161,-0.21485,0.9754,0.049104,-0.4131,0.87912,0.23765,-0.42607,0.89563,0.1276,-0.16514,0.48857,-0.85672,0.16642,0.22077,-0.961,0.39329,0.33998,-0.85421,-0.3636,-0.34986,-0.86334,-0.33073,0.25712,0.90799,-0.82684,0.25758,-0.49995,-0.99063,-0.040407,0.13025,0.033723,-0.65743,0.75274,0.41725,-0.52058,0.74487,-0.36284,0.92758,0.088931,-0.33079,0.94031,0.079531,-0.32829,0.35942,0.8735,-0.22886,0.35377,0.90686,-0.47038,0.72378,-0.50478,0.92895,0.33549,0.15638,-0.40849,0.2371,0.8814,0.58296,-0.42485,-0.69253,0.7658,-0.43709,-0.47166,0.7279,-0.36717,-0.57906,-0.41789,-0.22239,-0.88082,-0.52107,0.091525,-0.84857,-0.32011,0.090762,-0.94299,-0.48833,0.069247,-0.8699,0.96527,-0.17896,0.19019,0.99359,0.051546,0.10044,0.90167,0.33467,0.27372,0.9657,0.1634,0.20176,0.88037,-0.30454,0.36357,-0.95465,-0.28083,-0.098819,-0.48039,0.56636,0.66964,0.30339,-0.3455,0.888,0.25907,-0.7561,0.60094,0.099918,-0.29823,-0.94922,-0.11313,-0.47075,-0.87497,0.96753,-0.085513,0.23783,-0.52297,0.60381,0.60155,0.54393,0.78661,0.29209,-0.85122,-0.39647,-0.34382,0.47374,0.83428,-0.28199,-0.15488,0.35313,-0.92264,0.083834,-0.60427,-0.79232,0.32753,-0.48814,-0.80892,-0.82015,-0.49037,-0.29469,-0.65764,-0.32606,-0.67907,-0.80053,-0.27992,-0.52986,0.95776,0.13816,0.25217,-0.011719,0.88467,-0.46602,0.55852,-0.43901,-0.70376,-0.28367,0.95279,-0.10807,-0.22462,0.96908,-0.10199,0.34883,-0.32383,-0.87945,0.74923,0.042085,0.66094,0.15815,0.85629,-0.49165,0.55715,-0.23991,0.79498,0.52419,-0.088351,0.84698,0.12436,-0.81915,0.55989,0.14295,0.23313,-0.96185,0.75662,0.34416,-0.5559,0.87219,0.26542,0.41087,-0.3119,-0.005493,0.95007,0.028718,0.54958,-0.83493,0.012696,0.47932,-0.87753,-0.9953,-0.076327,0.059389,-0.98154,-0.19043,0.016694,0.9169,-0.062807,0.39409,0.59017,0.80496,-0.060793,0.6693,0.73977,0.068758,0.066378,0.58593,-0.80761,-0.8692,-0.088351,0.48644,-0.94043,-0.25346,0.22651,-0.88751,-0.24549,0.38987,-0.65053,-0.26749,0.71081,-0.21842,0.9733,-0.070315,-0.066958,-0.21213,0.97491,-0.35395,-0.012177,0.93518,-0.97858,-0.091494,0.18427,-0.99158,-0.066866,0.11075,-0.43477,-0.29719,-0.85006,0.95871,-0.094882,-0.26801,0.97513,-0.20179,0.091403,0.0318,-0.59236,0.80502,-0.071566,-0.67275,0.73638,0.77688,-0.11658,-0.61873,0.44176,0.41444,-0.79565,0.48118,0.32948,-0.81231,-0.67428,-0.14499,0.72408,-0.631,-0.076174,0.772,-0.53472,0.42421,0.7308,-0.56264,0.37736,0.73553,-0.28922,0.93011,0.22623,-0.47377,0.863,0.17524,-0.49058,0.85873,0.1478,0.84249,-0.36805,-0.39332,0.90722,-0.41868,0.040498,-0.19346,0.1362,0.97159,-0.99786,0.037202,-0.053224,0.7951,-0.30775,-0.52254,-0.76296,0.62117,0.17887,0.93912,-0.24299,0.24284,0.22272,0.86847,-0.44285,0.053255,0.90622,-0.41939,0.97955,-0.19721,0.038942,-0.23362,0.53566,0.81146,-0.047548,-0.57439,0.81716,0.14466,-0.57604,0.8045,-0.96496,0.21592,0.1489,-0.90002,0.28303,0.33137,-0.92462,0.068453,0.37458,-0.97668,0.00885,0.21445,0.30653,-0.34791,0.88598,-0.46245,-0.44435,-0.76724,-0.42827,-0.37489,-0.8222,-0.54778,-0.36137,-0.75454,-0.013123,0.74181,-0.67046,-0.15973,0.10782,0.98123,0.034303,0.39796,0.91675,0.33485,0.9422,-0.008911,0.95105,-0.23188,0.2042,-0.80413,0.24396,-0.54204,-0.72542,0.29099,-0.62371,0.25697,0.94845,0.1854,0.10126,0.038575,-0.99408,-0.37632,-0.28541,-0.8814,-0.53917,-0.38859,-0.74715,-0.27912,-0.27986,-0.91855,0.6209,0.36326,0.6946,-0.79675,-0.02002,-0.60396,0.011902,0.087771,-0.99606,-0.9353,-0.063234,0.34806,-0.93213,-0.002411,0.36204,0.2899,0.087497,0.95303,0.22459,-0.63808,-0.73644,0.35093,-0.60665,-0.71328,0.070132,-0.57811,0.81292,0.54042,-0.16172,-0.82568,0.48061,-0.22346,-0.84796,-0.32093,0.3571,-0.87716,-0.29084,0.26215,-0.92013,0.26502,0.43465,-0.86068,0.60772,-0.33583,-0.71963,0.62682,-0.4359,0.6458,0.60259,-0.60247,0.52333,0.20866,-0.74377,0.635,-0.23261,0.11219,0.96606,0.28471,-0.25587,-0.9238,0.4969,-0.30812,-0.81121,0.55034,-0.25123,0.79623,0.33146,0.93719,-0.10846,-0.45302,-0.04593,0.89029,-0.35368,-0.30119,0.88553,-0.49999,-0.15613,0.85183,0.36256,0.91342,0.18491,0.38334,0.89218,0.23881,0.57256,0.016633,-0.81967,0.75841,0.047975,-0.64995,0.21256,0.60994,-0.76336,0.90722,-0.020508,0.42006,-0.73266,-0.60222,-0.31697,-0.88769,-0.3947,-0.23695,-0.86901,-0.45485,-0.19462,0.53804,-0.017243,-0.84271,0.72958,-0.025605,-0.6834,-0.1933,-0.16129,-0.96777,0.11725,-0.41285,-0.90319,0.60518,0.78372,0.13959,0.74374,0.6523,-0.14585,0.60567,0.7568,-0.24571,0.92645,0.15836,-0.34141,0.92834,0.094455,-0.35948,0.9942,-0.037996,-0.10047,-0.96069,-0.21918,-0.1702,-0.95142,-0.04651,0.3043,-0.95053,0.03769,0.30827,-0.98169,-0.01294,0.19004,0.95071,0.096988,0.29441,0.8855,0.10727,0.45207,0.7734,-0.63329,0.0271,0.9732,0.13553,-0.18571,0.19245,-0.46916,-0.86187,0.71322,-0.19504,0.67321,0.61889,-0.074038,0.78195,0.6552,-0.125,0.74502,-0.18155,-0.91781,-0.35298,0.47902,-0.68404,0.55007,0.38929,0.39488,0.83215,0.31794,0.55873,0.76595,-0.92114,-0.16681,-0.35163,0.46577,-0.21522,0.8583,-0.9161,-0.2653,-0.30052,0.065401,-0.8077,0.58589,0.040773,-0.84945,0.52605,-0.97339,0.078005,-0.21531,-0.43657,-0.40489,-0.8034,0.48613,-0.39424,-0.77987,0.37977,-0.3011,-0.87469,-0.65432,0.7044,-0.275,0.74413,0.6494,-0.15638,0.69427,0.68923,-0.2071,-0.12064,0.28559,-0.95071,-0.094485,0.55132,-0.82888,-0.046663,0.62786,-0.77688,-0.43007,-0.092441,-0.89804,-0.60418,-0.3412,-0.72005,0.49397,0.69295,-0.52513,0.47346,0.69036,-0.54695,0.10587,0.99179,0.071505,0.15009,0.98392,-0.09653,-0.19279,-0.028291,-0.9808,0.45555,-0.7694,0.44774,-0.13034,0.11152,-0.98517,0.98129,0.031892,0.1897,0.64013,-0.28575,-0.71313,-0.92376,-0.18946,-0.33274,-0.94708,-0.17936,-0.26612,0.97409,-0.097354,-0.20402,0.91943,0.024506,-0.39247,0.92932,0.116,-0.35057,-0.76315,-0.42879,-0.48341,0.64223,0.53612,-0.54775,0.89566,-0.11051,-0.43074,0.85217,0.013886,-0.52306,0.36238,0.92935,-0.070315,-0.26197,-0.20991,-0.94195,0.13004,0.64254,-0.75509,-0.061617,0.67235,-0.73763,0.80166,-0.26826,-0.53417,0.77251,0.63436,0.027223,-0.80087,-0.53526,-0.26844,-0.47252,-0.8153,0.33457,0.64632,-0.55522,0.52336,-0.88845,0.45772,-0.033265,0.067263,0.63655,-0.76827,0.21036,0.44111,-0.87243,0.15119,0.35725,-0.92166,-0.93814,-0.13785,0.31761,0.32539,0.93832,0.11661,0.24909,0.024049,-0.96817,-0.94192,-0.015473,0.3354,-0.89734,0.10212,0.4293,-0.98972,0.044679,0.13569,0.86126,0.50813,-0.001526,-0.94012,-0.11258,0.32164,-0.96289,-0.24525,-0.11255,-0.90896,-0.39354,-0.13727,-0.8243,-0.40278,-0.39775,0.32881,0.16468,-0.9299,0.88424,-0.3835,0.26646,0.4676,-0.35963,0.80743,0.31971,-0.52147,0.79107,-0.9714,-0.15082,0.18329,-0.99588,0.0477,0.076846,-0.73263,0.25108,0.63259,-0.75961,0.18088,0.62468,-0.20502,-0.89019,0.40675,0.80722,0.24574,0.53661,0.43684,0.80474,0.4019,0.34779,0.79583,0.49562,0.53261,-0.13547,-0.83541,0.46007,-0.16327,-0.87274,0.9125,0.12342,0.38993,-0.92605,0.34193,0.15955,0.98672,-0.16221,0.00708,-0.43541,0.46019,-0.77368,0.96203,-0.095462,-0.25562,0.90326,0.17393,0.39222,0.9346,-0.001953,-0.35569,0.87246,0.18101,-0.4539,-0.75121,-0.25233,0.60988,0.58843,-0.66714,0.45677,-0.33891,-0.40458,0.84936,-0.92132,-0.1941,-0.3368,-0.90527,-0.22724,-0.3589,0.20258,0.56273,-0.80142,-0.3704,0.92135,0.1178,-0.38621,0.1315,0.91296,0.1001,0.6704,0.73516,0.11298,-0.13135,-0.98486,0.20615,-0.37825,-0.90243,0.3773,-0.49645,-0.78173,0.3491,-0.44539,-0.82446,0.888,-0.37922,0.26002,0.99548,0.08124,0.04883,-0.96252,-0.086886,0.25687,0.9473,-0.094058,-0.30619,-0.95477,-0.2949,-0.037477,0.3889,0.91391,0.11618,0.16767,0.98553,-0.023896,0.072481,0.95929,-0.27296,0.53707,0.71425,0.44868,0.94998,0.010834,-0.31205,0.86496,0.35786,0.35182,-0.8684,-0.46998,0.15793,-0.91757,-0.39381,0.054018,-0.73568,-0.31828,-0.59786,-0.07474,-0.74938,0.65789,0.70022,0.05829,-0.71151,0.89804,0.012726,-0.43968,-0.84692,0.23115,0.47884,-0.21186,0.73232,-0.64714,-0.37999,-0.28608,0.8796,-0.15049,-0.38624,-0.91003,-0.68447,-0.1749,-0.70772,-0.76901,-0.067415,-0.63564,-0.12912,-0.20042,0.97116,-0.34645,-0.42656,0.83544,0.30274,0.14048,-0.94266,0.89221,-0.42271,-0.15888,0.99722,-0.043092,0.060671,0.99548,-0.064394,0.069643,0.63903,-0.33812,-0.69085,0.46767,-0.32597,-0.82156,0.89578,0.15479,-0.41661,0.97879,0.1858,0.086001,-0.86489,-0.48821,0.11643,-0.93661,-0.32774,0.12372,-0.98489,-0.026337,0.17103,0.1601,-0.041932,-0.98621,0.084475,0.055727,-0.99484,0.37696,0.84396,-0.38157,-0.31077,0.94504,0.10138,-0.91076,-0.40773,-0.065157,-0.89746,-0.44066,0.018616,-0.39021,-0.40693,-0.82589,0.53551,-0.38209,-0.75314,0.7857,-0.49205,-0.37486,-0.83041,0.5559,0.036744,-0.82278,0.56697,-0.039308,0.35472,0.27122,-0.89474,0.85098,-0.14817,-0.5038,-0.021882,-0.38163,-0.92404,-0.98605,-0.16254,-0.035279,-0.94736,-0.26136,-0.18476,-0.16828,0.41014,-0.89633,0.58641,-0.51707,0.62346,0.51826,-0.28224,0.80728,0.22324,0.35408,-0.90817,0.17493,0.27696,-0.94479,-0.10328,0.3293,0.93854,-0.80288,0.48616,-0.34492,0.41392,0.90405,-0.10642,0.90326,-0.27357,0.33052,0.98306,0.10923,0.1471,0.67422,0.69707,-0.2439,0.76385,0.59539,-0.24903,-0.50133,-0.49742,-0.70797,-0.34324,-0.3795,-0.85913,0.98132,-0.070345,0.17893,0.32005,0.19965,0.92612,0.11692,0.29752,0.94751,0.20472,0.17405,0.9632,-0.31694,-0.4684,-0.8247,-0.15513,0.37214,-0.9151,-0.31962,0.24531,-0.91522,-0.056124,0.93957,-0.33766,0.044557,0.91778,-0.39454,-0.95251,0.11545,0.28165,0.31037,-0.097385,-0.94559,0.8063,-0.34431,-0.48094,0.93066,0.078249,0.35737,-0.98642,-0.16294,-0.019288,0.24485,0.91507,0.32041,0.2888,0.94803,0.13346,0.29603,-0.024323,-0.95483,0.047182,0.15412,0.98691,-0.15165,0.26633,-0.95184,-0.12958,0.25871,-0.95721,-0.007355,0.99237,-0.12302,-0.1316,0.96213,-0.23862,0.24137,0.96573,0.095157,0.84515,-0.23722,0.47899,0.36317,-0.4023,0.84036,-0.44649,-0.37623,-0.81182,-0.38243,0.91937,0.092105,0.93673,-0.32188,0.13733,0.31928,0.26319,-0.91037,0.25156,0.07065,0.96524,0.10038,0.04004,0.99414,-0.86831,-0.49583,-0.012299,0.82406,-0.4514,-0.3422,0.29875,0.86193,-0.40965,0.53374,0.77133,-0.3466,-0.57723,-0.215,-0.78771,-0.38792,-0.36979,-0.84423,0.82846,-0.3383,-0.4463,-0.15574,-0.9147,0.37284,-0.9017,0.29856,0.31269,0.666,-0.4012,-0.62883,-0.4001,0.061281,0.9144,-0.57122,-0.03122,0.82019,-0.61428,-0.1659,0.77142,0.98895,-0.013825,0.14747,0.66448,0.7091,-0.23575,0.34648,0.89932,0.26667,-0.023133,0.17969,-0.98343,-0.1576,0.18616,-0.96979,-0.49306,0.51964,-0.69771,-0.36402,-0.22434,-0.90393,0.59288,0.78585,-0.17563,0.9483,-0.23725,0.21073,0.94879,-0.16156,0.27137,-0.25724,0.042543,-0.96539,-0.44035,-0.070559,-0.89502,-0.57234,-0.26725,-0.7752,-0.43193,0.34513,0.83325,-0.31379,0.40294,0.85974,-0.11176,-0.045717,0.99268,-0.13504,0.11234,0.98444,-0.84524,-0.46312,0.26658,-0.9328,-0.27351,0.23466,-0.78408,0.60649,0.13166,-0.76415,0.63988,0.080966,0.33683,-0.73928,-0.58303,0.44246,-0.59697,-0.66918,-0.18366,0.20832,0.96063,0.70284,0.67312,0.23002,0.94507,0.2027,0.25636,0.75756,0.65224,0.024506,0.43406,0.73754,0.51729,0.73983,0.52294,0.42329,-0.16831,0.94095,-0.29365,-0.90518,0.41411,0.095584,0.91772,0.051119,0.39387,0.44255,0.8507,0.28352,-0.85583,0.33696,0.39241,0.94174,0.098148,0.32164,-0.66039,0.66543,-0.34794,-0.62288,0.72427,-0.29563,0.41197,-0.18952,-0.89123,-0.96191,-0.2169,-0.16623,0.27338,-0.34941,-0.89618,-0.29295,0.83511,-0.4655,-0.28425,0.78311,-0.55309,-0.95465,0.060488,0.29142,-0.94113,0.032929,0.33634,0.97189,0.19419,0.13294,-0.97485,0.1486,0.16596,-0.98712,-0.14216,0.073244,-0.98618,-0.035249,0.16184,-0.58766,-0.78155,0.20924,-0.62459,0.49324,0.60543,-0.63884,0.36973,0.67464,-0.81103,-0.18799,0.55394,-0.85809,-0.16056,0.48772,0.98032,0.096103,-0.17234,0.27296,0.89386,0.35566,-0.41093,-0.008515,-0.91159,-0.66195,-0.18424,-0.72652,0.97653,0.1869,0.10688,0.32316,0.77917,-0.53707,0.27238,0.82232,-0.49956,-0.99646,-0.077578,-0.031556,0.71661,0.41173,-0.56294,0.27003,-0.92163,0.2786,0.721,-0.41514,0.55476,0.19169,-0.44414,-0.87518,-0.12067,0.012299,-0.99262,-0.29868,0.094913,-0.94961,-0.51112,-0.716,0.47542,-0.46498,-0.66717,0.58196,-0.96304,0.16639,0.21168,0.4911,0.85455,-0.16889,-0.026704,0.27589,-0.96081,-0.046236,0.15952,-0.98608,0.9555,-0.12021,0.2693,-0.82366,-0.33769,-0.45552,-0.45146,-0.75591,0.47408,-0.067873,-0.80898,0.58385,0.20453,-0.37468,-0.90429,-0.20743,0.24516,-0.94702,-0.42805,-0.6165,-0.66079,0.30372,0.94931,0.080752,0.33311,0.92743,0.16993,-0.5114,0.84374,0.16279,-0.87216,0.48644,-0.051424,-0.35368,0.9353,-0.007416,-0.45625,0.28297,-0.84362,-0.61873,-0.63048,0.46864,-0.4818,-0.70052,0.52638,-0.87988,0.23277,0.41426,0.54158,0.65099,0.53185,-0.66955,0.26228,0.69488,-0.1829,0.82608,-0.53297,0.70202,-0.25901,-0.66335,0.24641,0.9599,0.13361,0.81579,0.53804,0.21195,0.40861,0.9096,0.075045,-0.035981,0.28346,-0.95828,-0.89328,0.20066,0.4022,-0.91369,0.11335,0.39024,-0.95013,0.14249,0.27726,0.24387,0.52843,-0.81317,0.33738,0.40498,-0.84979,0.24265,0.46971,-0.84878,0.98291,-0.060549,0.17371,-0.74947,-0.65343,0.1062,0.90973,-0.23768,-0.34034,-0.98483,-0.05002,-0.16599,-0.99921,-0.003388,0.039552,-0.99582,-0.064364,-0.064425,0.94556,0.11472,-0.30451,-0.24879,0.30589,0.91897,0.69845,-0.38398,-0.6039,0.85559,-0.27494,-0.43858,0.91028,0.26399,0.31889,-0.38206,-0.34977,-0.85534,-0.81329,0.35185,-0.46336,-0.92376,-0.30628,0.22984,0.7279,0.46541,-0.50349,-0.007813,-0.99597,0.089053,0.45979,-0.38792,-0.79879,0.54128,0.8186,0.19196,0.80447,-0.32032,-0.50017,0.14307,0.1641,-0.97598,0.24958,0.25568,-0.93396,0.87609,-0.41545,-0.24451,-0.15198,0.23747,-0.95941,0.3947,0.91211,0.11045,0.44841,0.86926,0.20801,0.64568,-0.39344,-0.65441,-0.56224,0.64711,-0.51482,0.67443,0.18803,-0.71398,0.69878,0.21342,-0.68273,0.028352,0.21168,0.9769,0.30784,-0.26011,0.91516,-0.99216,0.025025,-0.12232,-0.93939,0.24763,-0.23701,-0.98669,0.12598,-0.10263,-0.95373,-0.27747,-0.1156,-0.98178,-0.10071,0.16092,0.96811,0.088717,0.23426,0.29163,0.1623,0.94263,0.50441,0.65755,-0.55959,-0.61425,-0.12699,-0.7788,0.49269,0.84918,0.19001,0.70132,-0.62172,0.34864,0.011017,-0.51555,0.85678,0.91815,-0.009735,0.39604,0.11029,0.31648,-0.94214,0.98379,-0.14728,-0.10215,0.44704,0.065523,0.89209,-0.78246,-0.3552,-0.5114,-0.66137,-0.35981,-0.65807,0.23985,0.9266,0.28956,0.16742,-0.18027,-0.96924,-0.9201,0.24793,0.30317,0.95233,-0.1941,0.23527,0.41322,-0.36286,-0.83517,-0.13642,0.42189,-0.8963,0.026032,0.35075,-0.93609,-0.14847,0.2989,-0.94263,-0.95315,-0.23277,0.193,-0.96994,0.027253,0.24171,-0.94272,0.12555,-0.30903,-0.079134,-0.023713,-0.99655,-0.15571,-0.20014,-0.96728,0.049654,-0.023591,-0.99847,-0.99533,-0.067141,0.069277,-0.084902,0.81307,-0.57591,0.22465,0.79357,-0.56545,-0.49864,0.80389,-0.32417,-0.57057,0.19169,-0.79855,-0.51018,0.13981,-0.8486,-0.35588,-0.085086,-0.93063,-0.52995,-0.12433,-0.83883,-0.32701,-0.16514,-0.93048,0.60155,-0.75274,0.26734,-0.58348,0.28001,-0.76229,-0.33732,0.48012,-0.80972,0.9758,-0.20863,-0.065127,0.97543,-0.20453,-0.081545,0.98407,-0.14402,-0.10398,0.097598,-0.47206,-0.87613,-0.29148,0.82772,-0.47945,0.44682,0.60408,-0.65981,0.001801,0.59389,-0.8045,0.043794,0.59783,-0.80041,0.0824,-0.30964,-0.94726,-0.90848,-0.29038,-0.30046,-0.90701,-0.24131,-0.34501,-0.56993,0.22437,-0.79043,-0.51225,-0.25288,-0.82073,0.39216,-0.047121,0.91867,0.55904,-0.19867,-0.80496,0.53368,-0.22712,-0.81457,-0.84085,0.15738,0.51787,-0.91742,0.19596,0.34629,-0.92361,0.12671,0.36174,-0.58303,-0.40428,-0.7047,0.35569,-0.32991,-0.87442,0.75088,-0.43288,-0.49876,-0.92673,-0.36903,-0.070223,-0.92288,-0.25187,-0.29118,0.39253,-0.30848,-0.86642,-0.86618,-0.43019,-0.25419,-0.94907,-0.30506,0.078555,-0.97705,-0.21165,0.023103,0.28312,0.88537,-0.36863,0.34693,0.86065,-0.37263,0.17551,0.070315,0.98193,0.71896,0.60723,-0.33808,-0.67196,-0.63759,-0.37669,-0.72619,-0.42009,-0.54418,-0.097293,0.29939,0.94913,0.93085,0.077029,-0.35713,0.77053,0.50905,0.38353,0.75106,0.6166,0.23594,-0.46977,-0.19315,-0.86138,-0.56499,-0.347,-0.74856,0.2385,0.94516,0.22297,-0.4807,0.65325,-0.58492,-0.72417,-0.046785,0.68798,-0.046022,0.82919,-0.55705,0.23069,-0.27726,-0.93268,0.34632,-0.38078,-0.85733,0.20444,-0.31092,-0.92816,0.80914,0.10526,0.57808,-0.8005,-0.37205,-0.46983,0.017212,0.17566,-0.98428,0.18632,-0.2646,0.94617,0.08652,-0.32029,0.94333,-0.57488,0.053285,0.81649,-0.19633,0.97733,-0.079012,-0.024995,-0.26649,-0.9635,-0.034394,-0.98581,-0.16416,0.21763,0.003143,0.97601,-0.10108,0.86511,-0.49129,0.97613,-0.13889,0.16684,-0.80178,0.1684,-0.57335,0.5847,0.73638,0.34034,0.31721,-0.10718,0.94226,0.27628,0.95157,-0.13471,0.1525,0.97534,0.1594,-0.5164,-0.11447,-0.84863,-0.72274,0.68612,0.082675,0.82067,-0.42418,0.38282,-0.88681,-0.34049,-0.31245,0.076083,0.19202,0.97842,0.021027,-0.026124,-0.99942,-0.95682,0.11933,0.26499,0.35057,-0.038301,0.93573,-0.37687,0.14902,-0.91418,-0.2313,0.29359,-0.92752,-0.92468,-0.3582,-0.12897,0.076266,0.98672,-0.14332,-0.52821,-0.25681,0.80932,-0.2139,-0.10559,-0.9711,-0.90051,-0.25956,0.3488,0.9302,-0.29664,-0.2161,-0.73385,-0.27836,-0.61962,0.30253,0.94253,0.14167,0.34196,0.21241,-0.91537,0.35447,0.304,-0.88424,-0.42576,0.1619,0.89019,0.9899,0.049013,0.13294,0.98181,0.015778,0.18912,0.1764,-0.46617,-0.86691,-0.90359,-0.34251,-0.25718,0.5247,0.81564,0.24366,0.66396,-0.35539,0.65786,0.52843,0.71618,0.45588,-0.80187,-0.29356,-0.52037,-0.95996,0.15818,0.23109,0.69652,-0.23603,-0.67757,0.80151,0.10688,0.5883,-0.35551,0.93194,0.071139,-0.085818,0.99292,0.082095,0.1142,-0.019898,-0.99326,0.98291,-0.07062,0.16981,0.93631,-0.14078,0.3217,0.2946,0.95019,0.10163,-0.68004,-0.31114,-0.66384,0.27104,0.51509,-0.81314,0.39818,0.46947,-0.78805,0.91076,0.057222,0.40889,0.59221,0.24958,0.76611,0.45601,-0.49968,-0.73644,0.75121,-0.24119,-0.61437,-0.86255,-0.23228,0.44951,-0.82312,-0.21253,0.5266,-0.17957,0.2298,-0.95651,0.55101,-0.095767,-0.82894,-0.02591,0.034547,-0.99905,-0.73611,-0.21799,-0.64077,-0.7687,-0.55452,-0.31867,-0.68276,0.48808,0.54366,0.549,0.71572,-0.43159,-0.28669,-0.22468,-0.93127,-0.89316,0.12684,0.43141,-0.82623,0.16022,0.54006,0.62178,-0.24836,0.74273,0.58956,-0.32246,0.74053,0.58992,-0.32521,-0.73904,-0.99673,0.069643,0.040742,-0.99655,0.060732,0.056001,0.96448,-0.24928,0.087069,0.44035,0.89364,0.086306,0.9418,-0.33479,0.029664,-0.20917,0.97476,0.077914,0.76162,0.002533,-0.64797,0.36427,0.37043,-0.85443,-0.90741,-0.142,0.39552,-0.91345,-0.27821,0.29695,-0.52147,-0.52202,-0.67492,-0.5689,-0.21607,-0.79348,-0.088504,0.33342,-0.9386,-0.039216,0.25364,-0.96649,0.55461,0.47432,0.68368,0.15458,0.95239,-0.26273,0.94845,-0.30488,0.086398,0.94858,-0.31636,-0.008179,0.93173,-0.3542,0.079775,0.79815,0.32566,0.50679,0.31349,-0.49089,-0.81283,-0.1388,0.49837,0.85577,-0.015778,0.1634,0.98642,-0.12922,0.15317,0.97971,-0.24985,0.19691,-0.94803,0.73196,0.57515,-0.36525,0.90484,0.30906,0.29276,-0.99188,-0.009064,-0.12671,-0.78518,0.46239,0.41185,-0.90106,-0.40956,-0.14249,0.36805,-0.30518,0.87826,0.6444,0.61806,0.45024,-0.73733,0.27473,-0.61708,-0.63631,0.5992,-0.48582,0.49269,-0.091159,-0.86538,0.64226,-0.009766,-0.76638,-0.24888,-0.95416,0.16608,-0.23774,-0.69869,-0.67473,-0.036103,-0.99335,-0.10929,0.95883,0.15262,-0.23936,-0.97699,-0.093326,-0.19172,-0.92917,0.27342,-0.24873,-0.90832,0.3314,-0.25514,-0.77187,0.55254,0.31443,-0.28452,-0.12055,-0.95105,-0.28956,-0.23368,-0.92816,0.9201,-0.039186,0.38966,-0.8764,0.34639,-0.33454,-0.33955,-0.83209,0.43849,-0.47963,0.19346,-0.85586,0.84365,0.51528,-0.15064,-0.00763,0.24924,-0.96838,0.92123,-0.30836,-0.2371,-0.98386,-0.1655,0.067995,-0.2295,-0.78558,-0.5746,-0.93387,-0.10862,-0.34068,-0.10514,0.83779,-0.53575,0.92474,0.015687,0.3802,0.38063,0.91284,0.14774,-0.18372,0.20667,0.961,-0.28159,0.043275,0.95852,0.27342,0.96045,0.052156,-0.52855,-0.30909,-0.79058,-0.10981,0.2447,0.96335,0.43117,-0.80969,0.39805,-0.18647,-0.2161,0.95837,0.99329,-0.093753,-0.067324,-0.72091,0.60085,-0.34532,-0.35258,-0.20896,0.91214,0.79333,-0.2783,-0.54143,0.51064,0.34761,0.78637,0.49663,0.4261,0.75616,-0.33637,-0.38398,-0.85986,0.017945,0.48039,-0.87686,-0.66118,0.2035,0.72207,-0.42009,-0.10593,-0.90127,-0.52806,0.097446,-0.84356,-0.96915,-0.12278,0.21366,0.69839,-0.31697,-0.64165,-0.6512,0.41765,0.6336,0.1319,0.73885,0.66079,-0.44249,-0.47417,-0.76113,-0.34687,-0.47063,-0.81127,-0.12058,0.84802,-0.51604,0.49568,0.45491,-0.7398,-0.19599,-0.53377,-0.8226,-0.45613,-0.43745,-0.77493,0.99341,-0.035524,0.10892,0.94995,-0.29859,0.091708,0.93783,-0.29618,0.18079,-0.71242,-0.38816,-0.58458,-0.79717,-0.42473,-0.42903,0.4156,-0.27512,0.86691,-0.13883,0.79543,-0.58989,0.52879,0.5071,0.68056,0.91815,0.24439,-0.31187,0.86352,0.25892,-0.43272,-0.97684,-0.096408,0.19089,-0.50465,0.34898,-0.78961,0.90188,0.43071,0.032838,0.11576,-0.46687,-0.8767,0.78082,-0.21165,0.58779,0.876,-0.39738,0.27323,0.93847,-0.3451,0.01062,-0.85858,0.40355,0.31617,-0.8883,-0.23942,-0.39186,-0.87091,-0.47487,-0.12632,0.67751,-0.61602,-0.40181,-0.90155,-0.34291,-0.2638,0.90503,-0.40175,0.13953,0.75024,-0.44102,-0.49254,0.94769,0.052278,0.3148,0.99945,-0.031861,0.007569,0.98746,-0.13785,0.076876,0.49562,0.86843,-0.012635,0.44581,0.89483,-0.022309,0.95227,-0.28794,0.10117,-0.84545,-0.084841,-0.52724,-0.39973,-0.079501,0.91314,-0.94403,-0.27815,0.17728,0.35618,0.23096,0.90539,0.35872,0.93203,0.051088,-0.88211,-0.24644,0.40135,-0.23789,0.33647,0.91113,0.34815,-0.42204,-0.83703,-0.45811,-0.38609,0.80062,-0.61657,-0.49977,-0.6083,-0.51531,-0.4976,-0.69771,-0.082553,-0.48894,-0.86837,0.59673,-0.52473,-0.60707,-0.26511,-0.74465,0.61251,-0.13688,-0.77267,0.61983,-0.79186,0.19459,0.57885,-0.83651,-0.033326,0.54689,-0.72982,-0.40205,-0.55287,0.46297,0.81509,0.34819,0.58937,0.02768,0.80737,0.49416,-0.2421,0.83496,0.67403,-0.011017,0.73861,-0.93417,0.27113,-0.23185,0.40031,0.88971,0.2194,-0.65853,0.73635,0.15522,-0.27976,0.43635,-0.85516,-0.549,-0.59307,-0.58888,-0.23652,-0.35035,0.90622,-0.68017,-0.083956,0.7282,0.3947,0.88201,0.25736,0.13596,-0.44273,-0.88626,0.20798,0.9725,0.10456,0.39934,0.90527,0.14475,0.32954,-0.20356,-0.9219,-0.46562,-0.18806,-0.86474,-0.40651,-0.13694,-0.90329,-0.48677,-0.20612,-0.84884,-0.057863,-0.43196,0.90002,0.64821,-0.52681,-0.54976,-0.12915,0.73791,0.6624,-0.049989,0.86108,0.506,-0.074526,0.74822,0.6592,-0.96136,-0.22025,0.16504,0.90545,-0.33924,0.25498,0.97928,-0.063204,0.19233,0.88534,-0.26508,0.38194,0.049135,-0.26466,-0.96307,0.92547,0.099551,0.36546,0.26606,0.34156,-0.90139,0.31611,0.91424,0.25337,0.44368,0.82662,0.34614,-0.95605,-0.16984,-0.23893,0.23771,-0.5049,0.82977,0.16196,-0.39775,-0.90307,0.16224,0.75784,-0.63192,0.35322,0.65218,-0.67071,0.34565,0.67391,-0.65291,0.23423,0.96957,-0.070742,0.96753,-0.23829,0.084109,0.94452,-0.3282,0.011841,0.49474,0.86901,-0.005066,0.58785,-0.34806,-0.73022,0.8323,-0.1645,-0.52931,0.62038,0.018311,-0.78405,-0.80047,-0.47371,-0.3672,-0.56169,0.81533,-0.14026,-0.3798,0.38746,0.83999,-0.076662,0.16672,-0.983,-0.58181,-0.29264,-0.75881,-0.83551,-0.27915,-0.47328,-0.29844,0.3303,0.89541,-0.47288,-0.45647,-0.75362,0.72961,0.40382,0.55187,-0.082186,0.097354,0.99182,-0.97913,-0.13907,0.14817,0.19404,0.013428,0.98089,-0.082858,0.2515,-0.96429,0.65664,-0.34236,-0.67199,0.94757,-0.3079,-0.085238,-0.69243,-0.14136,-0.70745,-0.77789,-0.30827,-0.54756,0.79495,0.56651,-0.21693,-0.62563,-0.31465,-0.7138,0.40959,0.90304,0.12937,-0.81692,0.37245,0.44032,-0.081362,0.75497,-0.65065,-0.12641,0.60082,-0.7893,0.50539,-0.35426,-0.7868,0.86422,0.27686,-0.42,0.30802,-0.3039,-0.90152,0.89254,0.016572,0.45061,0.90472,0.059206,0.4218,0.48839,0.81524,0.31117,-0.5508,-0.6061,0.57378,0.59731,-0.47386,-0.64702,0.93655,-0.00293,-0.35047,0.53996,0.006775,0.84164,-0.97922,-0.14447,-0.14228,0.5584,0.82366,-0.098666,-0.89276,-0.42549,0.14805,-0.87374,-0.37394,-0.31092,-0.45277,-0.412,-0.7907,-0.46263,0.051149,-0.88507,0.76333,-0.42726,-0.48451,0.69765,0.5298,0.48222,0.28599,0.73287,0.6173,-0.92218,0.19428,0.33433,-0.97568,-0.13883,0.16962,-0.98563,0.10627,-0.13114,0.048524,0.70138,0.71111,-0.32032,-0.3975,-0.85986,-0.4521,-0.45695,-0.76598,-0.14585,0.85302,-0.50105,-0.010865,0.83767,-0.54604,-0.02414,0.86319,-0.50429,0.52757,-0.25926,0.80895,0.22486,-0.64104,0.73379,0.68539,-0.35945,-0.63326,-0.87045,0.25642,-0.42012,0.92096,-0.1059,0.37492,-0.42866,-0.34043,0.83685,0.59993,-0.42979,0.67476,-0.99628,0.077792,-0.036317,-0.36354,-0.050813,0.93017,-0.49034,0.054018,0.86984,0.014527,0.76122,-0.64827,-0.045015,0.7037,-0.70904,0.90478,0.067965,0.42033,0.96222,-0.04651,0.2682,-0.024659,-0.45586,-0.88968,0.99759,0.007385,0.068728,0.88977,0.005615,0.45634,0.85058,-0.22126,0.47697,-0.89776,0.058504,0.43654,-0.30641,0.22221,0.92556,-0.86386,0.29151,0.41078,-0.89892,0.27665,0.33964,0.93142,-0.30812,-0.19358,-0.26563,-0.19541,-0.94403,-0.61846,-0.45436,-0.6411,-0.60689,0.71328,-0.35051,0.90963,0.074129,0.40867,0.10688,0.55116,-0.82751,0.17991,0.56896,-0.80242,0.37828,-0.22837,0.89706,-0.068178,-0.018677,-0.9975,-0.89752,0.20719,0.3892,-0.36891,0.54253,-0.75466,-0.425,-0.43599,-0.79324,-0.5128,0.22413,0.8287,-0.55739,0.19187,0.80773,0.20447,0.40788,0.88983,-0.021943,-0.13327,-0.99081,0.033479,-0.13651,0.99005,-0.95557,-0.14762,-0.25507,-0.19065,-0.35398,0.91559,-0.24796,-0.27973,-0.92749,-0.3028,0.005402,-0.95303,0.2924,0.86456,-0.40864,0.98746,-0.087893,0.13111,0.99405,0.01001,-0.10819,-0.019074,0.28019,-0.95975,-0.58553,0.8106,0.005646,-0.47829,0.81875,-0.31758,-0.29026,0.93753,-0.19169,-0.069094,0.99213,0.10431,0.99204,-0.1034,0.071505,0.96982,-0.17035,0.17435,-0.73351,-0.62471,0.26765,-0.5334,-0.25025,-0.80795,0.94504,-0.19144,-0.26499,-0.094089,0.87097,0.48219,0.1392,-0.43687,-0.88867,0.067202,-0.3404,-0.93786,-0.24622,0.95901,-0.14017,-0.94125,0.18793,0.28056,0.69619,0.45967,0.55132,-0.99551,-0.037019,0.086825,-0.54762,-0.22837,-0.80493,-0.84332,-0.52934,-0.092563,0.52037,-0.35005,-0.77886,0.7813,-0.50923,-0.36082,0.90393,0.21806,-0.36787,-0.95496,-0.12793,0.26765,-0.13657,-0.092288,-0.9863,-0.9321,-0.078127,0.35359,-0.141,0.95581,0.25788,-0.90811,-0.2017,0.36686,0.55034,-0.48146,0.68212,-0.90893,-0.13684,0.39378,-0.48582,-0.21012,-0.84842,0.54738,0.67702,-0.4919,0.9404,0.2064,-0.27015,-0.41105,0.37892,-0.8291,-0.42659,0.45952,-0.77899,0.094394,0.79443,-0.59993,0.95193,0.30491,0.028626,0.32847,0.52455,-0.78546,-0.78637,0.45747,-0.41505,0.49126,0.23179,0.83956,0.52473,0.24812,0.81426,0.93747,-0.21311,0.27512,-0.87808,-0.45894,-0.13523,0.23035,-0.23035,-0.94543,-0.51512,-0.34071,-0.78646,0.72909,0.026521,0.68389,0.003662,0.22111,-0.97522,-0.0253,0.1243,-0.99191,0.017762,0.17389,-0.98459,0.70266,-0.27207,0.6574,0.66262,-0.18909,0.72466,0.29301,-0.10276,-0.95056,0.32963,-0.12525,-0.93576,0.92404,-0.30241,-0.2338,0.94006,0.044435,0.33802,-0.7221,0.46178,0.51506,0.071871,0.41072,0.9089,0.016816,0.42583,0.90463,0.088992,0.48332,0.87088,-0.27204,0.85421,-0.44301,0.31251,0.67507,0.66826,0.24418,0.9678,-0.060854,-0.9826,-0.14542,0.11536,-0.63124,0.77514,0.025391,0.089022,-0.25654,-0.9624,-0.47496,-0.5483,-0.68828,-0.48949,-0.47337,-0.73232,-0.29975,0.001831,-0.95401,-0.77526,-0.015931,-0.6314,-0.14612,0.77606,-0.61345,0.10675,-0.52529,0.84417,-0.13761,-0.52641,0.83898,0.65068,0.53584,0.53798,-0.60317,-0.27809,0.74752,0.30848,0.44304,0.84173,0.94174,-0.22077,-0.25367,-0.40645,0.18964,0.89377,0.18015,-0.36454,-0.91357,0.93036,-0.20542,0.3036,0.30479,0.068484,-0.94992,-0.89102,-0.31715,-0.32472,-0.016297,0.11698,-0.99298,-0.3314,-0.57576,-0.7474,0.28147,0.95114,0.12665,0.60122,0.78863,-0.12857,-0.95743,0.28736,-0.02707,-0.96991,0.23518,0.062899,0.53356,-0.16016,-0.83044,0.60167,-0.2447,-0.76031,0.88778,-0.091189,0.45109,-0.52669,-0.27482,0.80438,0.75289,-0.001099,-0.6581,0.73626,-0.46501,-0.49156,-0.004791,0.20585,-0.97855,-0.69454,0.65529,0.29688,0.45549,0.32536,0.82864,-0.078555,0.05594,-0.99533,0.17039,0.79922,0.57634,0.68505,-0.095981,-0.72213,-0.32328,0.016938,-0.94613,0.72414,-0.015412,0.68944,0.98141,-0.17353,-0.081606,0.38997,0.21143,-0.89621,-0.99078,-0.12647,0.048189,-0.56987,0.69359,-0.4406,0.28694,-0.002472,0.95791,-0.016694,0.75228,-0.65859,0.85559,-0.42433,-0.29643,0.88235,0.10617,0.45842,0.88314,-0.1471,0.44542,0.88815,0.38459,-0.25144,-0.71114,-0.28114,0.64434,0.54616,-0.39335,-0.73955,0.19157,-0.40712,-0.89303,-0.11811,-0.59487,0.79507,-0.7734,-0.24967,0.58263,0.49281,-0.51509,-0.70125,-0.14151,0.30104,0.94302,0.67446,-0.3661,-0.6411,-0.93051,0.1113,0.34892,-0.93963,0.13413,0.31471,-0.56627,-0.31568,-0.76135,-0.29902,-0.16245,-0.94031,0.62395,0.73766,0.25782,0.95056,-0.22202,0.21705,0.67003,0.48528,-0.56172,0.1486,0.22843,-0.96213,0.76629,0.47526,0.43233,-0.8515,0.36146,0.3798,-0.78936,0.55004,-0.27265,-0.97418,-0.22343,0.031373,-0.37916,0.80169,-0.46202,-0.71883,0.62764,0.29884,-0.60332,0.75204,-0.2653,0.99069,-0.044374,0.12851,-0.90729,-0.17835,0.38078,-0.30985,0.94958,0.047121,0.97568,-0.20847,0.067385,0.83862,0.41649,0.35099,0.070406,-0.57433,0.81558,0.86065,0.49058,0.1363,0.0047,0.99554,0.093936,0.25791,0.26417,-0.92932,-0.80822,0.58409,-0.074587,-0.055544,0.061251,-0.99655,-0.75133,-0.36198,-0.55174,0.080386,-0.3354,-0.93863,-0.97156,-0.13309,0.19569,0.52275,-0.37168,-0.76717,0.82736,0.19959,-0.52498,-0.050203,0.47276,0.87973,-0.76199,-0.40764,-0.50319,-0.47258,-0.15479,-0.86755,0.29893,-0.28047,-0.91211,0.67107,0.73876,-0.061983,0.097568,0.75945,-0.64318,-0.071932,0.93289,-0.35289,0.37233,0.91824,0.13486,-0.4789,-0.11744,0.86996,-0.40913,-0.29707,-0.86273,0.85565,-0.3148,0.41075,-0.67183,0.21894,-0.70754,0.13483,0.033662,-0.99026,0.19147,0.93579,0.29597,0.28053,0.95834,0.053224,-0.62871,-0.69118,-0.3563,0.55354,0.79879,-0.23551,0.9537,-0.12198,0.27482,0.56105,0.62725,0.54012,0.7586,0.62142,-0.19565,0.74261,-0.22388,0.63115,-0.96262,0.27079,0.002197,0.18204,0.98276,0.032258,-0.89685,0.28086,-0.34172,-0.1785,0.037263,-0.98321,-0.050813,0.15296,-0.98691,0.68886,0.56282,-0.4568,0.53148,0.77413,-0.34382,0.58937,0.66188,-0.46312,0.24863,0.059145,-0.96676,-0.14011,0.21171,0.96722,-0.074618,0.012421,0.99713,0.92782,0.006195,0.37294,-0.64855,0.13193,-0.74963,-0.21903,0.29579,-0.92978,-0.65117,-0.40263,-0.6433,-0.57204,-0.20734,-0.79354,-0.4229,-0.56874,-0.70544,0.14869,0.39332,-0.90729,-0.49794,-0.55336,-0.66765,-0.086947,0.85708,-0.50777,0.6776,0.068941,-0.73217,-0.75616,-0.65136,0.062593,0.97882,0.15928,-0.12854,-0.23652,-0.44307,-0.86471,0.019074,0.76217,-0.64705,-0.45189,0.76309,-0.46205,0.14994,0.94977,0.27461,-0.399,0.70568,0.58544,-0.46629,0.49675,0.73196,-0.98816,-0.061556,0.14051,-0.99896,-0.037446,-0.024903,-0.99435,-0.10599,-0.004425,-0.60137,0.63686,-0.48241,0.57781,0.19266,0.79309,0.18921,-0.20335,0.96063,0.88867,0.093173,0.44896,-0.73788,0.13657,0.66091,0.97351,-0.039003,0.22523,0.89953,-0.13901,0.41408,0.39122,0.47609,0.78756,0.37846,0.91174,-0.15946,-0.81607,-0.57778,0.012604,-0.95822,-0.28318,-0.04004,0.50423,-0.33274,-0.79687,-0.86316,0.32524,-0.38618,-0.85562,0.27866,-0.43614,-0.83648,0.33531,-0.43339,-0.14353,-0.37913,-0.91412,0.41603,0.20118,-0.88681,0.23222,0.078494,-0.96948,0.48601,0.52828,0.69619,-0.11869,0.092776,-0.98856,-0.11304,0.99237,0.048891,-0.29606,0.94336,0.14966,-0.39415,-0.000488,0.91903,-0.44316,0.25996,0.85791,0.48769,0.83972,0.23872,0.4604,0.85485,0.2392,0.40263,0.48338,-0.77728,-0.21281,0.6639,-0.71688,0.00116,-0.36811,-0.92978,0.3607,0.005982,0.93265,0.51482,0.8352,-0.19324,0.8572,-0.1171,-0.50142,-0.34883,-0.19254,-0.91717,-0.59539,-0.26203,-0.75945,0.10868,0.83798,-0.53475,-0.31971,0.78472,-0.53099,0.51225,-0.28852,-0.80889,0.94122,-0.29075,-0.17185,-0.90777,-0.10297,0.40654,-0.54512,0.79226,0.27412,-0.49846,-0.063784,-0.86453,-0.58602,-0.084109,-0.8059,-0.000183,0.74947,-0.66201,0.14255,-0.047212,-0.98865,-0.85342,-0.3665,-0.37056,-0.89813,-0.31452,-0.30726,-0.93255,0.15156,-0.32765,0.98947,0.11841,0.082888,0.95398,-0.099582,0.28285,0.95355,0.074099,0.29191,0.95245,-0.20679,0.22364,0.44725,-0.5291,-0.72109,0.70211,-0.11817,-0.70217,-0.27277,0.22004,0.93655,-0.39219,0.07654,0.91665,-0.25825,0.070498,0.96347,-0.13904,-0.48784,-0.86175,0.15207,0.44652,-0.88174,0.029298,0.93625,0.35005,0.92862,0.20267,-0.31074,0.47017,0.71718,-0.51436,0.39323,0.85202,-0.3455,-0.085788,0.99283,0.083193,-0.42341,-0.62963,-0.65133,-0.19468,-0.51128,-0.83706,-0.46181,-0.35102,-0.81454,-0.31645,-0.40281,-0.85879,-0.96084,0.075228,0.26661,-0.21809,-0.27412,-0.93661,0.57347,0.48436,0.66066,-0.9393,0.016449,0.34266,-0.93811,-0.024964,0.34538,-0.95727,-0.019196,0.28852,-0.91641,-0.090487,-0.38981,0.93512,-0.00647,0.35426,-0.97696,0.13013,-0.1691,-0.97421,0.11801,-0.19221,-0.98834,0.10843,-0.10666,-0.28358,0.91525,-0.28611,0.59081,0.74041,-0.32041,0.55461,-0.42762,-0.7138,-0.9556,0.15037,-0.25337,0.30821,0.63936,-0.7044,0.25687,0.95346,0.15769,-0.58748,0.39528,0.70611,-0.58983,0.28907,0.75396,0.71184,-0.018983,-0.70205,-0.39576,-0.31974,-0.86087,0.61296,0.1211,0.78073,-0.28043,0.95883,0.044191,0.92163,0.058046,-0.38365,-0.49498,0.007599,-0.86883,0.25843,0.71822,-0.64602,0.80566,0.59224,0.01062,0.4474,0.71923,-0.53151,0.26869,-0.73492,0.62264,0.83783,0.45192,0.30625,-0.11676,0.98956,0.084262,-0.39348,0.88348,0.25419,-0.16044,0.98196,0.099918,0.34446,0.21757,-0.91321,-0.96023,-0.014222,0.27879,0.053529,0.42836,-0.902,0.053285,0.37162,0.92685,-0.97494,-0.21476,-0.057436,-0.97879,-0.16572,-0.12021,0.55095,-0.007447,0.83447,9.2e-05,0.9732,0.22993,-0.9968,-0.07944,-0.00766,-0.98233,0.11939,-0.14396,0.99603,-0.004761,0.088565,-0.36927,0.34281,0.86377,0.30854,0.45091,-0.83752,-0.83721,0.46132,-0.29359,-0.78439,0.3762,-0.49315,-0.48442,-0.71712,0.50102,-0.83633,-0.0365,-0.54695,0.23777,0.34449,-0.90814,-0.93396,0.22626,0.27653,-0.98315,-0.13715,0.12058,-0.97122,0.094821,0.21839,-0.46254,0.49773,-0.73367,0.57463,0.61266,-0.54256,0.81301,-0.051088,0.57994,0.74261,-0.36268,-0.56298,0.11139,0.27638,-0.95456,0.61925,-0.008454,0.78512,0.66921,0.12595,0.73229,0.18442,-0.29365,-0.93793,-0.063509,0.31776,-0.94601,-0.25758,0.51213,0.81933,-0.91601,0.083682,0.39232,0.47124,-0.7358,-0.48628,0.52867,0.80816,-0.25944,-0.77596,0.41093,-0.4785,-0.83425,0.083163,0.54506,-0.76543,0.21345,0.60704,0.29063,0.94067,0.17502,-0.8431,0.25413,0.47386,-0.2786,-0.45045,-0.8482,-0.20353,-0.3224,-0.92444,-0.29994,0.95395,0.003052,-0.37776,0.9256,0.023133,0.037935,-0.58229,-0.81207,-0.092441,-0.60912,-0.78762,-0.23899,0.14518,-0.96008,0.75115,0.6357,0.1778,-0.44865,0.88385,0.13218,0.75955,0.005127,-0.65041,0.81256,-0.38243,-0.43986,0.41835,-0.42476,-0.80282,-0.09534,0.19376,0.97638,-0.89477,-0.22065,-0.38816,0.73302,0.45302,0.50734,0.8117,0.33674,0.47716,0.054689,-0.27345,-0.96033,0.68593,-0.41585,-0.5971,0.68639,0.67595,-0.26817,-0.85913,0.35664,0.36699,0.45192,-0.26249,-0.85254,0.37846,-0.17536,-0.90884,0.90466,-0.27775,0.3231,0.68572,-0.37669,-0.62276,0.31529,-0.33384,0.8883,0.90075,0.38655,-0.19797,-0.50676,0.45463,-0.73241,-0.85064,-0.46706,-0.24131,0.32359,0.94137,0.095218,0.2364,-0.5905,0.7716,0.89923,-0.1904,0.39384,-0.64241,-0.27509,-0.71526,0.88958,-0.26408,0.37263,0.39802,-0.092746,0.91266,0.22886,0.030366,0.97296,0.99011,0.028748,0.13718,-0.31205,-0.27946,-0.90802,-0.80566,-0.28062,0.52165,0.3805,-0.55193,0.74197,-0.45894,-0.35548,-0.81423,0.99216,0.11048,-0.058199,-0.78429,-0.11451,0.60967,0.38801,0.42671,0.81689,-0.1854,0.97067,0.15293,0.73507,0.21033,-0.64449,-0.43422,0.07007,-0.89804,0.9725,-0.016572,0.23225,-0.03534,0.25971,-0.96503,-0.32698,0.23905,-0.91427,0.27241,0.86117,-0.42912,-0.93075,0.1944,0.30964,0.07065,-0.18854,-0.97949,0.14866,0.90085,-0.40788,0.12555,0.90481,-0.40681,0.24406,0.66619,0.70467,0.053346,0.71758,0.69439,0.51317,0.83783,0.1861,-0.64028,-0.15018,0.75329,-0.43071,0.77914,-0.4554,0.019715,0.99963,0.01822,-0.62276,-0.27226,0.73348,-0.4832,-0.61431,0.6238,-0.9649,0.2599,-0.036775,-0.68285,-0.30055,0.66585,0.85226,0.15751,0.49879,-0.84576,-0.015809,-0.53331,0.15159,0.63024,-0.76144,0.16108,0.27909,0.94662,-0.048433,-0.012391,-0.99872,0.46397,0.88574,-0.01178,-0.70531,-0.44649,0.55058,-0.72753,-0.18226,-0.6614,0.95279,0.20676,0.2223,0.92962,0.30903,0.2006,-0.42476,-0.22962,0.8757,-0.2205,-0.19608,0.95544,0.020051,0.18073,-0.98331,-0.8547,0.2533,0.45308,0.05826,0.72549,0.68575,-0.8974,0.014618,0.44096,0.99594,-0.088626,-0.013916,-0.94827,-0.10584,0.29923,0.42229,0.07239,0.90356,0.16279,0.97656,0.1406,-0.8262,-0.06061,-0.56005,0.90487,-0.27342,-0.32621,0.60372,0.74999,0.27015,0.67711,0.67071,-0.30271,-0.009156,0.74883,-0.66268,-0.66576,0.14704,0.7315,0.8576,-0.28785,-0.42616,0.64245,-0.013672,0.76617,-0.10053,0.27531,-0.95605,0.7506,0.39259,-0.53142,0.98944,-0.09891,0.10584,-0.044679,0.25468,-0.96597,0.036073,0.22523,-0.97363,0.000244,0.99997,0.001587,0.49052,0.71862,0.49284,0.058138,0.39695,-0.91598,-0.51088,-0.006592,0.85962,0.62932,-0.10233,0.77035,-0.94989,-0.28449,0.12937,0.72707,0.64898,-0.22395,-0.18888,-0.046907,0.98086,0.36161,0.138,-0.92202,0.27979,0.40309,-0.8713,0.85086,-0.43895,-0.28864,-0.6845,0.12232,0.71862,-0.95611,-0.28599,0.063448,0.90173,0.24906,0.35325,-0.49452,-0.34275,-0.7987,0.6487,-0.22587,-0.72674,0.31404,0.31465,0.89575,0.48744,-0.60479,-0.62975,-0.14823,-0.66591,-0.73113,0.52223,0.84701,0.09891,-0.27046,0.96271,0.006256,-0.30693,0.94635,0.10077,-0.45891,0.25547,0.85092,0.47819,0.088961,-0.87371,-0.071322,-0.23307,0.96982,0.86453,0.29557,0.40645,0.31648,0.85202,-0.41694,0.7719,0.60039,0.2089,0.9425,-0.048647,0.33055,0.017365,0.48485,-0.87439,-0.71538,-0.27287,-0.64321,-0.097476,0.80789,-0.5812,0.003204,-0.50414,0.86358,0.00116,-0.055696,-0.99844,0.57692,-0.27046,-0.77068,-0.69225,0.47114,0.54656,0.98642,-0.11789,-0.11432,0.82983,-0.31507,-0.46049,-0.28068,0.2298,0.93185,-0.11506,0.99139,-0.062075,0.93225,0.36015,0.034639,-0.74795,-0.44032,0.49663,0.79675,-0.12055,-0.59215,-0.91711,-0.318,0.2403,0.56514,-0.51891,0.64135,0.8984,-0.40278,0.17484,0.50423,-0.070711,0.86065,0.95572,-0.041505,-0.2913,0.73919,-0.43101,-0.51747,-0.22086,-0.4535,-0.86343,-0.72622,0.67562,0.1269,0.94366,0.064272,0.32453,-0.62538,0.6989,-0.34697,0.2898,-0.35368,-0.88931,0.29136,-0.35093,-0.88989,0.64312,-0.28306,-0.71151,-0.26871,0.18155,-0.94592,-0.17335,0.17435,-0.9693,0.003845,0.52446,-0.8514,-0.37962,0.91598,0.12961,-0.54939,0.82031,0.15876,-0.59233,0.75921,0.26963,0.58998,0.41743,-0.69109,0.85214,0.45451,0.25928,0.48631,0.55553,-0.67443,-0.81759,0.078524,0.57036,-0.37132,-0.058962,-0.9266,-0.16028,-0.13547,-0.97772,0.55675,0.72524,-0.40495,0.072878,0.40129,0.91302,-0.74612,0.13349,-0.65224,0.68093,-0.081545,-0.72774,0.77679,-0.18021,-0.60338,0.079257,0.58144,-0.80969,-0.425,-0.47655,-0.76955,0.37107,-0.14243,0.9176,-0.45268,-0.35356,-0.81857,-0.70785,-0.1341,-0.69347,-0.60701,-0.26374,0.7496,0.65337,-0.25388,-0.71316,0.23765,-0.81118,0.53429,-0.049074,-0.75253,0.6567,-0.066378,-0.36265,0.92953,0.94354,0.2327,-0.23563,0.85391,0.50414,0.12891,0.74999,0.63491,-0.18543,-0.9729,-0.11344,0.20136,-0.65822,0.2562,0.70785,-0.48546,-0.007965,0.8742,-0.86401,-0.38521,-0.32414,-0.9274,-0.30726,0.21323,0.64617,-0.76266,0.027192,-0.43391,0.086947,0.89672,-0.39381,0.018799,0.91897,-0.9458,0.15903,0.28306,-0.20725,-0.48286,-0.85079,-0.16932,0.34767,0.92218,-0.23777,0.9696,0.057558,-0.61837,0.56554,0.54564,-0.089175,0.99121,0.097385,-0.44667,-0.081942,0.8909,-0.54436,-0.059847,0.83669,-0.40989,0.094394,0.90722,-0.5858,-0.15213,-0.79601,-0.10407,0.90957,-0.40223,-0.85867,0.33812,0.38514,0.020844,0.80145,-0.59767,-0.69277,-0.28877,-0.66079,-0.37522,-0.33445,-0.86447,0.83215,0.28636,-0.47487,-0.68392,-0.12217,0.71923,-0.57497,0.34754,0.74065,0.097446,-0.38133,0.91928,-0.19883,0.08945,0.97592,-0.11402,-0.98773,0.10651,0.30223,-0.55565,-0.7745,0.477,-0.39915,-0.78301,-0.18049,0.97891,0.09537,-0.003571,0.21864,-0.97577,0.21125,0.96637,-0.14658,-0.63613,0.15387,0.75604,0.66347,-0.10923,0.74016,0.55806,-0.12946,0.81961,0.41121,-0.18445,0.89267,0.54662,0.72155,-0.42491,0.46596,0.77227,-0.43181,0.33497,-0.90673,0.25608,-0.31352,-0.82238,0.47469,-0.96027,0.20685,0.18717,0.87222,-0.41853,0.25303,0.16959,0.066256,0.98328,-0.70302,0.4387,0.55965,-0.79073,0.59123,0.15842,-0.11103,0.16645,-0.97977,0.21198,0.41856,0.88308,-0.11136,-0.01117,0.99371,0.86904,-0.029298,-0.49382,0.85418,-0.48323,0.1919,0.54414,0.002106,0.83895,0.17997,0.64714,0.74081,0.94696,0.092593,-0.30769,0.90436,-0.027985,-0.42585,-0.77456,0.58861,0.23142,-0.77902,0.60704,0.15684,-0.020905,0.98901,-0.14631,0.042665,0.60494,0.7951,-0.37547,-0.75536,0.537,-0.38105,-0.86489,0.32664,-0.31642,0.45525,-0.83221,-0.43544,0.13425,0.89013,-0.8189,-0.02884,-0.57314,0.011017,-0.47224,0.88138,-0.32444,0.83978,-0.43532,-0.57076,0.099521,0.81506,0.25938,0.028993,-0.96533,0.3152,0.94409,0.096469,-0.83358,0.32316,0.44795,-0.90109,0.18775,0.39085,0.3365,0.15738,-0.92843,0.198,0.23856,-0.95071,-0.85653,-0.23948,-0.45711,-0.089816,0.78948,-0.60713,-0.63482,0.027711,0.77212,0.23759,-0.41633,-0.87759,-0.70071,-0.32679,-0.63418,-0.49489,-0.31733,-0.80889,0.7929,0.45811,0.40175,0.14243,0.9548,0.26081,-0.058473,0.24198,-0.9685,-0.17243,0.43764,0.88244,-0.36793,0.14637,-0.91824,-0.99179,0.026948,0.12497,-0.62987,0.55263,-0.54573,-0.71654,-0.24513,-0.653,0.43992,0.57237,0.69195,-0.58742,0.50706,0.6307,0.18284,-0.21751,-0.95877,-0.90478,-0.31181,0.29005,-0.82662,0.38194,-0.41322,-0.97559,-0.16669,-0.1428,-0.96872,0.092654,0.23011,0.30073,-0.12497,0.94546,-0.18284,0.16239,0.9696,0.41884,-0.40477,-0.81283,-0.88882,-0.425,0.17121,-0.11249,-0.98575,0.12503,-0.006226,-0.094058,0.99554,0.76061,0.56969,0.31126,-0.69503,-0.32029,-0.64367,0.94125,0.061586,0.33198,0.59438,0.36531,0.71639,-0.82473,-0.54692,-0.14374,0.72491,0.54341,0.42329,0.9602,-0.26914,-0.074252,-0.63851,-0.68105,0.35838,-0.1915,0.97787,0.083804,-0.88162,0.26719,-0.38902,-0.80273,-0.090732,0.58937,-0.97418,0.095859,0.20429,-0.95917,-0.04474,0.27915,-0.063509,-0.74929,0.65914,0.94723,-0.288,0.14072,0.89203,-0.2028,0.40385,0.70144,0.67681,0.2233,-0.068941,0.99323,0.093356,0.52254,0.32969,0.78625,0.13178,-0.26334,-0.95563,-0.63372,-0.057222,-0.77142,-0.93402,0.11951,0.33656,-0.91049,0.15006,0.3853,0.92694,0.18546,-0.32612,0.89947,-0.43467,0.044343,0.18436,-0.4583,-0.86944,0.62053,0.70705,-0.33906,0.22718,0.96478,0.13245,0.95676,-0.1073,0.27033,0.51762,0.84228,0.15024,0.030793,0.15159,0.98794,0.011231,0.55184,0.83386,-0.06476,0.40498,0.91202,0.35023,-0.39473,0.84942,-0.82269,0.56298,-0.078524,0.23054,0.65566,0.71896,-0.33344,-0.20209,-0.92083,-0.2505,0.17829,-0.95154,-0.45851,-0.31809,-0.82977,0.94409,-0.12119,-0.30653,-0.92578,0.10901,0.36192,-0.94476,-0.32768,0.002686,0.73058,-0.54326,0.41356,0.8572,0.036836,-0.51363,0.96197,0.081301,-0.26066,-0.69301,0.71987,-0.038362,-0.80041,-0.047365,-0.59755,0.15137,0.95947,0.23765,0.4127,0.7214,-0.55611,0.18391,0.25486,-0.94931,0.8208,0.1778,-0.5428,0.64763,0.28098,0.70821,0.97693,0.00824,0.21326,0.98132,-0.071657,0.17844,-0.063082,0.59621,-0.80032,-0.71493,0.67354,0.18757,-0.35606,0.44054,0.82409,-0.82491,0.356,0.43901,-0.66723,0.46147,0.58461,0.8526,-0.15937,0.49763,0.33134,0.37495,-0.86578,0.080874,0.71709,-0.69225,0.50996,-0.032655,0.85955,-0.53459,0.13321,-0.83453,-0.6136,0.6509,-0.44694,-0.91195,-0.018006,0.40983,0.38105,0.80111,0.4615,0.08063,-0.061037,0.99484,0.28858,0.31205,0.90515,0.78555,0.61538,-0.06476,-0.6198,0.22321,-0.75231,0.97409,-0.21506,0.069887,0.91238,-0.34016,-0.22764,-0.99747,-0.047914,-0.052431,-0.49989,-0.14643,-0.8536,0.96774,-0.15659,-0.1973,0.77245,0.44408,0.45396,-0.129,0.56935,0.81188,-0.9874,-0.13639,-0.079928,0.092807,-0.012604,-0.99557,-0.25169,-0.47484,-0.84329,0.35945,0.54097,0.76031,0.42116,0.90402,0.072939,0.26765,-0.42268,-0.86584,-0.065065,0.98965,0.12778,-0.53081,-0.62072,-0.57698,-0.21097,-0.29047,-0.93332,-0.13782,0.065737,-0.98825,-0.042421,-0.4329,-0.90042,0.033326,0.19614,0.97998,-0.34889,0.09003,-0.9328,0.24598,-0.39396,-0.88559,-0.92853,0.10877,-0.35496,-0.19721,0.94501,0.26078,0.42406,0.90127,-0.088382,-0.10535,0.76714,0.63271,0.57814,-0.27238,-0.7691,-0.9487,-0.26737,-0.16861,-0.73873,-0.02118,-0.67363,-0.83309,0.39253,0.38963,-0.95615,-0.1572,-0.24708,0.89102,-0.33787,-0.30317,-0.40391,-0.44688,-0.79818,0.019349,0.18043,0.98337,0.98444,-0.012116,0.1753,-0.45006,-0.10166,0.88717,-0.73016,0.68047,-0.061617,0.081668,-0.4463,-0.89111,-0.71966,-0.14731,-0.67849,0.36409,-0.37932,-0.85061,0.83071,-0.43559,-0.34657,-0.10611,0.60894,0.78607,-0.12668,0.63555,0.76156,0.93619,0.14219,0.32136,0.86309,-0.24976,0.43892,-0.46464,0.20911,0.86044,0.2403,-0.024323,0.97037,-0.42338,0.40107,0.81231,-0.74718,-0.3411,-0.57036,0.002319,-0.007721,-0.99994,0.087832,0.041566,0.99524,0.037172,-0.40324,-0.9143,-0.93085,0.20011,0.30567,-0.87686,0.39128,0.27921,-0.14722,-0.049196,-0.98785,-0.070254,0.99616,0.052065,0.35972,0.86306,0.35447,-0.5696,0.6418,0.51338,-0.11551,-0.37291,-0.92062,-0.45595,-0.2645,-0.84979,-0.020722,-0.93216,-0.36143,0.51997,-0.24735,-0.81756,0.26328,-0.34373,-0.90139,-0.16874,0.54738,-0.81967,-0.40379,0.90359,-0.14295,0.51177,-0.37742,-0.77175,0.44868,0.86352,0.23017,-0.67531,-0.55141,0.48976,-0.19529,0.56471,0.80181,0.46287,-0.40046,-0.79077,0.44725,-0.23768,-0.86224,0.47526,0.21177,-0.85394,0.69726,-0.48,-0.53236,0.31657,0.88299,0.34648,-0.56465,-0.72918,-0.38655,0.20478,0.97766,0.046999,-0.20341,0.89947,0.38673,0.93371,0.14313,0.32807,0.30738,-0.46602,-0.82965,0.10941,0.95349,0.2808,-0.48433,-0.14777,-0.8623,-0.25614,0.7033,0.66314,-0.46101,-0.45354,-0.76272,-0.056063,0.37269,-0.92624,-0.73202,-0.35594,-0.58089,0.32243,0.85672,-0.40254,-0.43944,-0.27866,-0.85394,-0.50001,-0.48729,-0.71587,0.59633,-0.11072,0.79504,0.97549,-0.21982,0.005432,-0.18644,0.95181,-0.24342,0.087771,-0.98749,0.13092,-0.67513,0.37205,0.63698,0.11356,0.52974,0.84051,-0.58019,0.78039,-0.2331,-0.50975,0.81973,-0.26105,-0.24174,0.94415,0.22379,-0.33787,0.93411,0.11509,-0.42634,-0.53423,-0.72991,-0.10367,0.9794,0.1731,-0.27397,0.94662,0.16968,-0.28214,0.93994,0.19205,-0.25672,0.95053,0.17478,-0.25062,0.95788,0.14005,-0.11722,0.9758,0.18448,-0.29475,0.95315,0.067721,-0.32249,0.92227,0.21299,-0.48469,0.85913,0.16416,-0.62664,0.73662,0.25428,-0.17423,0.95547,0.23801,0.63909,0.76037,0.11545,-0.33302,-0.32807,-0.88397,-0.93832,0.17109,-0.30036,-0.41606,0.89367,0.16788,-0.23948,0.96667,0.090457,0.97412,-0.00528,0.22584,0.34272,-0.44942,0.82495,-0.33854,0.92825,0.1539,-0.31492,0.87866,0.35881,-0.22193,0.92767,0.30024,-0.11136,0.95047,0.29008,-0.34162,0.91232,0.22568,0.21412,0.95865,0.18738,0.61684,0.56328,-0.5497,-0.29566,0.93106,0.21375,-0.18427,0.94,0.28706,-0.42537,0.77828,0.46181,-0.24076,0.87118,0.42781,-0.0253,0.91012,0.4135,-0.20618,0.90011,0.38374,-0.074282,0.88983,0.45015,-0.29731,0.84863,0.43748,-0.23902,0.90405,0.35429,-0.32008,0.89804,0.30168,-0.35469,0.85009,0.38923,-0.48216,0.79891,0.35945,-0.40883,0.79846,0.44191,0.4348,0.19773,0.87854,-0.32557,0.9267,0.18754,-0.28458,0.87945,0.38145,-0.54063,0.80505,0.24403,0.27061,-0.24204,-0.93173,0.65642,-0.38295,-0.64995,0.55428,-0.32469,-0.76635,0.5891,-0.37635,-0.71505,-0.25138,0.96426,0.083407,-0.43117,0.88916,0.1532,-0.52553,0.48238,-0.7008,-0.071352,0.91385,0.39967,-0.54445,0.67428,0.49886,-0.2223,0.90799,0.35511,-0.36265,0.82019,0.44243,0.12082,0.86328,0.49001,-0.20035,0.74148,0.64031,-0.2902,0.72247,0.62752,-0.19919,0.90414,0.37791,-0.046602,0.931,0.36201,-0.20374,0.82556,0.5262,-0.5833,0.60497,0.54195,-0.021149,0.72579,-0.68758,0.023499,0.81402,0.58031,-0.074526,0.76504,0.63964,-0.21366,0.78265,0.58461,-0.11319,0.80328,0.58474,-0.22843,0.77087,0.59459,-0.38554,0.68993,0.61263,-0.50832,0.65987,0.55327,-0.6126,0.47636,0.6307,-0.31053,0.80587,0.50407,-0.41725,0.68957,0.59191,-0.66466,0.44255,0.60192,-0.68557,0.41481,0.59822,-0.44374,0.72362,0.52861,-0.42155,0.7669,0.48387,-0.62795,0.60616,0.48802,-0.41447,0.78271,0.46425,-0.13556,0.98309,0.12296,-0.3329,0.80798,0.48613,-0.74923,0.4478,0.48793,-0.46803,0.86239,0.19272,-0.74074,0.65734,0.1384,-0.36522,0.91846,0.15171,-0.61278,0.75085,0.24641,-0.32621,0.93445,0.14258,-0.29701,0.94601,0.12955,-0.59523,0.7897,0.14841,-0.99823,-0.058535,0.009827,-0.83758,-0.23951,0.49098,-0.59911,0.79696,0.07651,-0.39531,0.91153,0.11322,-0.43306,0.89511,0.10584,-0.31983,0.92892,0.1865,-0.50481,0.85678,0.10508,-0.46632,0.86886,0.16605,0.57274,0.23475,0.78539,-0.91073,0.065584,0.40767,-0.5923,-0.54707,-0.59148,-0.42421,0.90368,0.058138,-0.46443,0.84283,0.27183,0.16089,-0.40727,-0.89901,-0.29514,0.93243,0.20838,-0.59871,0.77715,0.19364,-0.59786,0.76565,0.23728,0.13834,0.24338,-0.95999,-0.32847,0.87921,0.34501,-0.3784,0.82757,0.41462,-0.54979,0.74804,0.37168,-0.53642,0.69622,0.47691,-0.23148,0.90774,0.34983,-0.65633,0.64251,0.3954,-0.6184,0.69744,0.36207,-0.24686,0.88864,0.38643,-0.34431,0.88955,0.30015,-0.23933,0.93268,0.26978,-0.86493,0.36351,-0.34602,-0.66875,0.68877,0.27988,-0.62783,0.75063,0.20576,-0.54177,0.75893,0.36119,-0.65825,0.69048,0.29981,-0.23081,0.95318,0.19529,0.86016,-0.053224,0.50719,-0.63594,0.73254,0.24271,-0.26743,0.81027,0.52144,-0.48442,0.70147,0.52269,-0.50713,0.7333,0.45283,-0.62679,0.56243,0.5392,-0.45732,0.76507,0.45329,-0.56041,0.65056,0.5125,-0.28135,0.81591,0.50505,0.38267,0.75344,0.53462,-0.32835,0.80233,0.4984,-0.15491,0.87728,0.45424,-0.14902,0.88006,0.45079,-0.61519,0.48933,0.61809,0.37623,-0.37114,0.8489,-0.91092,0.40831,-0.058779,-0.4181,0.72991,0.54073,-0.49422,0.71438,0.49532,-0.56398,0.59517,0.57244,-0.50877,0.68987,0.51497,-0.58751,0.67757,0.44233,-0.60079,0.67867,0.42235,-0.66344,0.53648,0.5215,0.37651,0.92291,0.080111,-0.47108,0.75179,0.46132,0.073916,0.41289,-0.90777,-0.88791,0.27885,0.36583,0.29954,-0.36409,-0.88186,-0.80584,0.57433,0.14405,-0.74053,0.66417,0.10224,-0.73656,0.66369,0.13004,-0.35813,-0.2038,-0.91113,-0.82055,0.55718,0.12729,-0.1323,0.90899,-0.39521,-0.79403,0.60262,0.079592,-0.96371,-0.078921,0.25495,0.13068,-0.51933,-0.84448,-0.90927,0.1612,0.38365,-0.93304,0.35362,0.065798,-0.79125,0.59654,0.13425,-0.87588,0.48149,0.031068,0.24952,0.34941,-0.9031,-0.72411,0.66414,0.18586,-0.84057,0.5349,0.085269,-0.35127,0.19227,-0.91629,-0.41057,-0.18458,0.89294,0.62243,-0.35832,0.69579,0.279,0.87851,0.38774,0.7579,0.084811,0.64681,0.81103,0.096042,0.57701,-0.085788,-0.71889,0.68978,-0.80367,0.55239,0.22123,-0.74624,0.61904,0.24467,0.060549,-0.26301,-0.96289,-0.83663,0.49321,0.23814,-0.75198,0.62261,0.21635,-0.87249,0.40556,0.27247,-0.90582,0.34153,0.25065,-0.78579,0.45643,0.41728,-0.71132,0.63964,0.29124,-0.75008,0.59249,0.29374,-0.72668,0.55892,0.3994,-0.86242,0.42454,0.27558,-0.88553,0.35124,0.30402,-0.888,0.30882,0.34065,-0.74883,0.53484,-0.39131,-0.94736,0.25111,0.19858,-0.87356,0.36082,0.32658,-0.95172,0.21357,0.22043,-0.13129,-0.38646,-0.9129,-0.95959,0.16727,0.22623,0.43086,0.12647,0.89349,0.25871,0.38145,0.88742,-0.73742,-0.35267,-0.57601,-0.10892,0.44108,-0.8908,-0.66305,0.62636,0.40989,-0.67965,0.56929,0.46254,0.92987,0.074648,0.36018,0.57952,0.30695,-0.75491,-0.61193,0.68038,0.40321,-0.79858,0.39399,0.45494,-0.87912,0.23359,0.41539,-0.78744,0.3694,0.49342,-0.92093,0.1908,0.33979,-0.83618,0.37492,0.40022,-0.93246,0.034364,0.35957,-0.84475,0.39152,0.36476,0.14039,0.96991,0.1988,-0.93707,0.12299,0.3267,-0.95804,0.052522,0.28169,-0.95645,-0.09476,0.27604,-0.94284,-0.21247,0.2566,-0.94974,0.018586,0.31239,-0.90695,-0.20322,0.36894,-0.95709,0.24836,0.14908,-0.95444,0.11591,0.27491,-0.90829,-0.13282,0.39662,-0.75283,0.058351,0.6556,-0.9591,-0.02176,0.2822,-0.95291,-0.021271,0.30247,-0.93732,0.11808,0.32783,-0.99603,0.000488,0.0889,-0.98868,-0.021577,0.14835,-0.019349,-0.29649,0.9548,-0.95645,0.049684,0.28761,-0.93017,0.15967,0.33052,-0.97113,0.21491,0.10324,-0.91113,0.077883,0.40468,0.043001,-0.74532,0.66527,0.074831,-0.77737,0.62453,-0.96838,0.11799,0.21979,-0.96023,0.087252,0.26511,-0.91375,0.002228,0.40623,-0.23859,-0.13636,-0.96149,-0.92718,-0.040925,0.37233,-0.21027,0.63723,0.74142,-0.92108,0.080325,0.38096,-0.91,-0.068117,0.40895,-0.97101,-0.080721,-0.22492,-0.94333,0.084933,0.32075,-0.48329,0.73443,0.47646,0.011658,0.61571,-0.78787,-0.81634,-0.4012,0.41542,-0.88345,-0.066012,0.46382,-0.89023,0.2328,0.39152,0.98178,-0.1178,0.14896,-0.24943,0.30955,-0.91757,-0.40718,0.41703,-0.81256,0.053316,0.49587,-0.86673,-0.82498,-0.39955,-0.39967,-0.98712,-0.1558,0.035554,0.56819,0.56926,-0.5942,-0.79843,0.22846,0.55702,0.33476,0.14386,0.93124,0.45177,0.25394,0.85519,0.99451,-0.092105,0.049501,-0.81744,-0.042116,0.57442,-0.84414,0.005036,0.53606,0.83831,0.50987,-0.19291,-0.88348,-0.26722,0.38469,0.91476,0.16279,0.36967,-0.58809,-0.69823,0.40815,0.43776,0.69945,0.56487,-0.63421,-0.66704,0.39085,-0.56392,-0.71587,0.41163,0.75723,-0.50569,-0.41331,-0.50761,-0.72375,0.46739,-0.46464,-0.73284,0.49699,-0.47236,-0.74972,0.46339,-0.51604,-0.76537,0.3845,-0.94046,0.24119,0.23942,-0.3784,-0.73202,0.56649,-0.91604,0.31532,0.24778,-0.4091,0.68026,0.60814,0.15534,-0.12287,0.98016,-0.93255,-0.040162,0.35874,-0.78897,-0.59716,-0.1446,-0.22779,-0.7311,0.64306,-0.3112,-0.71456,0.62651,0.37779,0.686,0.62182,-0.45625,-0.34315,-0.82098,-0.79388,0.60796,-0.009461,0.11054,-0.46922,0.87613,-0.24506,-0.53557,0.80813,0.67449,0.70034,-0.23356,-0.45048,0.62154,-0.64086,-0.16581,0.5551,0.81506,0.36256,0.91714,-0.16541,0.27403,0.12537,0.95349,-0.57799,0.064547,0.81344,-0.64477,-0.67626,0.35624,0.63207,0.68957,-0.3534,0.44572,-0.20042,-0.87243,0.96866,-0.17936,-0.1717,-0.89755,0.24577,0.36598,0.62471,-0.25236,-0.73891,0.55101,-0.12766,-0.82464,-0.41234,0.64693,0.64141,-0.31617,-0.045839,0.94757,-0.25144,-0.050752,0.96652,-0.51268,0.17948,0.83959,-0.34608,0.93466,0.081271,0.57408,-0.32343,-0.75216,-0.96264,0.031617,0.26878,-0.24778,0.95795,0.14466,-0.3918,0.70101,0.59584,-0.44172,0.66503,0.60213,-0.4246,0.61263,0.66658,-0.45241,0.70312,0.54854,-0.35713,0.70418,0.61364,-0.32273,0.807,0.49452,-0.59825,0.59386,0.53792,-0.5226,0.69564,0.49287,-0.55388,0.61513,0.56105,-0.47395,0.6802,0.55916,-0.60549,0.54225,0.58248,-0.79678,0.35844,0.4864,-0.49269,0.68871,0.53188,-0.44166,0.74062,0.50633,-0.48821,0.63698,0.59654,-0.16028,0.83273,0.52992,-0.13562,0.79119,0.5963,-0.31898,0.72469,0.61077,-0.51601,0.39976,0.75756,-0.6563,0.38166,0.65081,-0.32505,0.6892,0.64754,-0.44038,0.59444,0.67281,-0.45381,0.57555,0.68026,-0.42012,0.49187,0.76257,-0.33232,0.66457,0.66924,-0.21262,0.75955,0.61467,-0.39836,0.70006,0.59258,0.010437,0.14426,-0.98947,-0.42833,-0.15989,0.88934,-0.5518,0.18961,0.8121,-0.66823,-0.049654,0.74224,-0.72057,-0.35853,0.59343,-0.90561,-0.1117,0.40907,-0.33048,-0.3791,-0.86432,-0.19059,-0.74139,0.64339,-0.2797,0.4846,0.82879,-0.97021,0.058718,0.23496,-0.64083,-0.696,0.32383,0.21201,0.086398,-0.97342,-0.030366,0.98813,0.1504,-0.056764,0.98959,0.13218,0.14386,0.97464,0.1713,-0.02768,0.99353,0.11008,-0.087832,0.98187,0.16794,-0.033387,0.98251,0.18314,-0.23331,0.95962,0.1569,-0.53966,0.83334,0.11945,-0.34568,0.90945,0.231,-0.31263,0.94409,0.10431,-0.49983,0.83605,0.2262,-0.54183,0.81014,0.2237,-0.40761,0.87787,0.25132,-0.53572,0.83139,0.1475,-0.33448,0.93136,0.14371,-0.38676,0.87622,0.28742,-0.43205,0.8865,0.16547,-0.045167,0.96713,0.25019,0.033387,0.93851,0.34361,-0.17484,0.96368,0.20173,-0.076357,0.96921,0.23402,-0.042756,0.9599,0.27696,-0.041108,0.91174,0.40867,0.055757,0.91345,0.40309,0.33741,0.88739,0.31407,0.024537,0.91168,0.41011,-0.075747,0.94772,0.30992,-0.24174,0.86523,0.43919,-0.21992,0.87576,0.42967,-0.31776,0.85202,0.41597,-0.21476,0.92035,0.32676,-0.16855,0.93951,0.29811,-0.045625,0.85977,0.50859,-0.27778,0.8175,0.50447,-0.23063,0.56493,0.79223,-0.37098,0.61736,0.69369,-0.41636,0.62807,0.65734,-0.46336,0.61654,0.63649,-0.19517,0.7897,0.58159,0.004456,0.78588,0.6183,-0.053499,0.75558,0.65282,-0.26435,0.64287,0.71886,-0.3162,0.71789,0.62017,-0.41313,0.65163,0.63613,-0.37184,0.57054,0.73223,-0.55452,0.64528,0.52544,-0.1955,0.84182,0.50304,0.098239,0.50749,0.85601,-0.011322,0.61583,0.78777,-0.005737,0.64541,0.76379,-0.22892,0.52592,0.81912,-0.08124,0.54152,0.83673,0.14512,0.60625,0.78192,-0.47057,0.49233,0.7322,0.020936,0.66942,0.74255,0.12653,0.74233,0.65795,-0.17859,0.70632,0.68496,-0.21821,0.48955,0.8442,-0.3357,0.64788,0.68374,-0.17298,0.63015,0.75692,-0.19962,0.5883,0.78359,-0.53627,0.77642,-0.33094,-0.25089,-0.96789,-0.014344,-0.45781,0.68099,0.57149,-0.43046,0.87243,0.23136,-0.41246,0.86786,0.27689,-0.46571,0.73891,0.48686,-0.63637,0.68767,0.34944,-0.63372,0.5204,0.57228,-0.59749,0.60851,0.52217,-0.66475,0.55617,0.4987,-0.67235,0.537,0.50945,-0.58611,0.58882,0.55651,-0.76513,0.4239,0.4846,-0.71447,0.58174,0.38865,-0.58351,0.59139,0.55654,-0.71642,0.64565,0.26423,-0.41215,0.89505,0.17023,-0.54131,0.81512,0.20618,-0.76492,0.59535,0.24574,-0.61492,0.78573,0.066805,-0.40996,0.90677,0.098331,-0.63671,0.75591,0.15223,-0.53246,0.83761,0.1218,-0.47334,0.88031,0.031281,-0.35075,0.93481,0.055544,-0.24104,0.96704,0.081759,-0.54457,0.82641,0.14298,-0.50044,0.86511,-0.033326,-0.60655,-0.72793,0.31959,0.14167,0.0347,0.98929,-0.18,0.91104,-0.37092,-0.4257,-0.37095,0.82531,-0.63579,0.35612,0.68477,-0.54299,-0.024171,0.83938,-0.40068,-0.31599,0.85998,-0.65911,0.10129,0.74517,-0.59322,0.20682,0.77801,-0.61479,0.58153,0.53273,-0.71477,0.53676,0.44826,-0.58202,0.4807,0.65584,-0.6241,0.58605,0.51674,-0.6335,0.53993,0.55415,-0.64931,0.48592,0.58501,-0.56005,0.63134,0.53639,-0.64074,0.58788,0.49379,-0.69768,0.59795,0.39451,-0.58882,0.69787,0.40773,-0.60372,0.59774,0.52745,-0.44423,0.67763,0.58602,-0.53185,0.71581,0.45247,-0.96353,0.052492,0.26234], "colors": [], diff --git a/utils/exporters/blender/2.56/scripts/op/io_mesh_threejs/export_threejs.py b/utils/exporters/blender/2.56/scripts/op/io_mesh_threejs/export_threejs.py index bc287e5b..02b21530 100644 --- a/utils/exporters/blender/2.56/scripts/op/io_mesh_threejs/export_threejs.py +++ b/utils/exporters/blender/2.56/scripts/op/io_mesh_threejs/export_threejs.py @@ -103,7 +103,7 @@ var scene = { { "position" : %(position)s, "rotation" : %(rotation)s, - "scale" : %(scale)s, + "scale" : %(scale)s }, "defaults" : @@ -1282,30 +1282,27 @@ def generate_material_string(material): shading = material.get("shading", "Lambert") material_type = type_map.get(shading, "MeshBasicMaterial") - #parameters = "color: %s" % generate_hex(rgb2int(material["colorDiffuse"])) - parameters = "color: %d" % rgb2int(material["colorDiffuse"]) - parameters += ", opacity: %.2f" % material["transparency"] + parameters = '"color": %d' % rgb2int(material["colorDiffuse"]) + parameters += ', "opacity": %.2g' % material["transparency"] if shading == "Phong": - #parameters += ", ambient: %s" % generate_hex(rgb2int(material["colorAmbient"])) - #parameters += ", specular: %s" % generate_hex(rgb2int(material["colorSpecular"])) - parameters += ", ambient: %d" % rgb2int(material["colorAmbient"]) - parameters += ", specular: %d" % rgb2int(material["colorSpecular"]) - parameters += ", shininess: %.1f" % material["specularCoef"] + parameters += ', "ambient": %d' % rgb2int(material["colorAmbient"]) + parameters += ', "specular": %d' % rgb2int(material["colorSpecular"]) + parameters += ', "shininess": %.1g' % material["specularCoef"] colorMap = material['mapDiffuse'] lightMap = material['mapLight'] - normalMap = material['mapNormal'] + normalMap = material['mapNormal'] if colorMap: - parameters += ", map: %s" % generate_string(colorMap) + parameters += ', "map": %s' % generate_string(colorMap) if lightMap: - parameters += ", lightMap: %s" % generate_string(lightMap) + parameters += ', "lightMap": %s' % generate_string(lightMap) if normalMap: - parameters += ", normalMap: %s" % generate_string(normalMap) + parameters += ', "normalMap": %s' % generate_string(normalMap) if material['vertexColors']: - parameters += ', vertexColors: "vertex"' + parameters += ', "vertexColors": "vertex"' material_string = TEMPLATE_MATERIAL_SCENE % { "material_id" : generate_string(material_id), diff --git a/utils/exporters/convert_obj_three.py b/utils/exporters/convert_obj_three.py index d5d4567e..39a44e2b 100644 --- a/utils/exporters/convert_obj_three.py +++ b/utils/exporters/convert_obj_three.py @@ -231,9 +231,9 @@ close(); TEMPLATE_VERTEX = "%f,%f,%f" TEMPLATE_VERTEX_TRUNCATE = "%d,%d,%d" -TEMPLATE_N = "%f,%f,%f" -TEMPLATE_UV = "%f,%f" -TEMPLATE_COLOR = "%.3f,%.3f,%.3f" +TEMPLATE_N = "%.5g,%.5g,%.5g" +TEMPLATE_UV = "%.5g,%.5g" +TEMPLATE_COLOR = "%.3g,%.3g,%.3g" TEMPLATE_COLOR_DEC = "%d" TEMPLATE_EDGE = "%d,%d"