From 9db71a171a67c7ecc9f95178af30a1e8e90164b9 Mon Sep 17 00:00:00 2001 From: alteredq Date: Tue, 22 Mar 2011 00:32:45 +0100 Subject: [PATCH] Fixed tangents and UVs in Blender exporter. Also updated docstring for OBJ converter. All WebGL examples should now work. --- build/Three.js | 468 +++++++++--------- build/custom/ThreeCanvas.js | 201 ++++---- build/custom/ThreeDOM.js | 5 +- build/custom/ThreeSVG.js | 103 ++-- build/custom/ThreeWebGL.js | 304 ++++++------ examples/obj/leeperrysmith/LeePerrySmith.js | 8 +- examples/webgl_materials_normalmap.html | 6 +- examples/webgl_materials_normalmap2.html | 87 +--- src/core/Face3.js | 2 + src/core/Face4.js | 2 + src/core/Geometry.js | 52 +- src/renderers/WebGLRenderer.js | 19 +- .../op/io_mesh_threejs/export_threejs.py | 10 +- utils/exporters/convert_obj_three.py | 17 +- 14 files changed, 607 insertions(+), 677 deletions(-) diff --git a/build/Three.js b/build/Three.js index ea1ff674bc..9ec074ff2d 100755 --- a/build/Three.js +++ b/build/Three.js @@ -1,6 +1,6 @@ // Three.js r36 - http://github.com/mrdoob/three.js var THREE=THREE||{};THREE.Color=function(a){this.setHex(a)}; -THREE.Color.prototype={autoUpdate:!0,setRGB:function(a,c,b){this.r=a;this.g=c;this.b=b;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHSV:function(a,c,b){var d,e,h,g,k,j;if(b==0)d=e=h=0;else{g=Math.floor(a*6);k=a*6-g;a=b*(1-c);j=b*(1-c*k);c=b*(1-c*(1-k));switch(g){case 1:d=j;e=b;h=a;break;case 2:d=a;e=b;h=c;break;case 3:d=a;e=j;h=b;break;case 4:d=c;e=a;h=b;break;case 5:d=b;e=a;h=j;break;case 6:case 0:d=b;e=c;h=a}}this.r=d;this.g=e;this.b=h;if(this.autoUpdate){this.updateHex(); +THREE.Color.prototype={autoUpdate:!0,setRGB:function(a,c,b){this.r=a;this.g=c;this.b=b;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHSV:function(a,c,b){var d,e,g,h,k,j;if(b==0)d=e=g=0;else{h=Math.floor(a*6);k=a*6-h;a=b*(1-c);j=b*(1-c*k);c=b*(1-c*(1-k));switch(h){case 1:d=j;e=b;g=a;break;case 2:d=a;e=b;g=c;break;case 3:d=a;e=j;g=b;break;case 4:d=c;e=a;g=b;break;case 5:d=b;e=a;g=j;break;case 6:case 0:d=b;e=c;g=a}}this.r=d;this.g=e;this.b=g;if(this.autoUpdate){this.updateHex(); this.updateStyleString()}},setHex:function(a){this.hex=~~a&16777215;if(this.autoUpdate){this.updateRGB();this.updateStyleString()}},updateHex:function(){this.hex=~~(this.r*255)<<16^~~(this.g*255)<<8^~~(this.b*255)},updateRGB:function(){this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgb("+~~(this.r*255)+","+~~(this.g*255)+","+~~(this.b*255)+")"},clone:function(){return new THREE.Color(this.hex)}}; THREE.Vector2=function(a,c){this.set(a||0,c||0)}; THREE.Vector2.prototype={set:function(a,c){this.x=a;this.y=c;return this},copy:function(a){this.set(a.x,a.y);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y);return this},add:function(a,c){this.set(a.x+c.x,a.y+c.y);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y);return this},sub:function(a,c){this.set(a.x-c.x,a.y-c.y);return this},multiplyScalar:function(a){this.set(this.x*a,this.y*a);return this},negate:function(){this.set(-this.x,-this.y);return this},unit:function(){this.multiplyScalar(1/ @@ -12,76 +12,76 @@ this.length();a>0?this.multiplyScalar(1/a):this.set(0,0,0);return this},setPosit 1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)}};THREE.Vector4=function(a,c,b,d){this.set(a||0,c||0,b||0,d||1)}; THREE.Vector4.prototype={set:function(a,c,b,d){this.x=a;this.y=c;this.z=b;this.w=d;return this},copy:function(a){this.set(a.x,a.y,a.z,a.w||1);return this},add:function(a,c){this.set(a.x+c.x,a.y+c.y,a.z+c.z,a.w+c.w);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y,this.z+a.z,this.w+a.w);return this},sub:function(a,c){this.set(a.x-c.x,a.y-c.y,a.z-c.z,a.w-c.w);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y,this.z-a.z,this.w-a.w);return this},multiplyScalar:function(a){this.set(this.x* a,this.y*a,this.z*a,this.w*a);return this},divideScalar:function(a){this.set(this.x/a,this.y/a,this.z/a,this.w/a);return this},lerpSelf:function(a,c){this.set(this.x+(a.x-this.x)*c,this.y+(a.y-this.y)*c,this.z+(a.z-this.z)*c,this.w+(a.w-this.w)*c)},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)}};THREE.Ray=function(a,c){this.origin=a||new THREE.Vector3;this.direction=c||new THREE.Vector3}; -THREE.Ray.prototype={intersectScene:function(a){var c,b,d=a.objects,e=[];a=0;for(c=d.length;a0&&I>0&&Q+I<1}var b,d,e,h,g,k,j,m,t,x, -y,q=a.geometry,A=q.vertices,G=[];b=0;for(d=q.faces.length;bj?d:j;e=e>m?e:m}a()}; +THREE.Ray.prototype={intersectScene:function(a){var c,b,d=a.objects,e=[];a=0;for(c=d.length;a0&&H>0&&P+H<1}var b,d,e,g,h,k,j,m,t,x, +y,q=a.geometry,A=q.vertices,G=[];b=0;for(d=q.faces.length;bj?d:j;e=e>m?e:m}a()}; this.add3Points=function(j,m,t,x,y,q){if(k){k=!1;c=jt?j>y?j:y:t>y?t:y;e=m>x?m>q?m:q:x>q?x:q}else{c=jt?j>y?j>d?j:d:y>d?y:d:t>y?t>d?t:d:y>d?y:d;e=m>x?m>q?m>e?m:e:q>e?q:e:x>q?x>e?x:e:q>e?q:e}a()};this.addRectangle=function(j){if(k){k=!1;c=j.getLeft();b=j.getTop();d=j.getRight();e=j.getBottom()}else{c=cj.getRight()? d:j.getRight();e=e>j.getBottom()?e:j.getBottom()}a()};this.inflate=function(j){c-=j;b-=j;d+=j;e+=j;a()};this.minSelf=function(j){c=c>j.getLeft()?c:j.getLeft();b=b>j.getTop()?b:j.getTop();d=d=0&&Math.min(e,j.getBottom())-Math.max(b,j.getTop())>=0};this.empty=function(){k=!0;e=d=b=c=0;a()};this.isEmpty=function(){return k}}; THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a,c=this.m;a=c[1];c[1]=c[3];c[3]=a;a=c[2];c[2]=c[6];c[6]=a;a=c[5];c[5]=c[7];c[7]=a;return this},transposeIntoArray:function(a){var c=this.m;a[0]=c[0];a[1]=c[3];a[2]=c[6];a[3]=c[1];a[4]=c[4];a[5]=c[7];a[6]=c[2];a[7]=c[5];a[8]=c[8];return this}}; -THREE.Matrix4=function(a,c,b,d,e,h,g,k,j,m,t,x,y,q,A,G){this.set(a||1,c||0,b||0,d||0,e||0,h||1,g||0,k||0,j||0,m||0,t||1,x||0,y||0,q||0,A||0,G||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; -THREE.Matrix4.prototype={set:function(a,c,b,d,e,h,g,k,j,m,t,x,y,q,A,G){this.n11=a;this.n12=c;this.n13=b;this.n14=d;this.n21=e;this.n22=h;this.n23=g;this.n24=k;this.n31=j;this.n32=m;this.n33=t;this.n34=x;this.n41=y;this.n42=q;this.n43=A;this.n44=G;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(a){this.set(a.n11,a.n12,a.n13,a.n14,a.n21,a.n22,a.n23,a.n24,a.n31,a.n32,a.n33,a.n34,a.n41,a.n42,a.n43,a.n44);return this},lookAt:function(a,c,b){var d=THREE.Matrix4.__v1, -e=THREE.Matrix4.__v2,h=THREE.Matrix4.__v3;h.sub(a,c).normalize();if(h.length()===0)h.z=1;d.cross(b,h).normalize();if(d.length()===0){h.x+=1.0E-4;d.cross(b,h).normalize()}e.cross(h,d).normalize();this.n11=d.x;this.n12=e.x;this.n13=h.x;this.n21=d.y;this.n22=e.y;this.n23=h.y;this.n31=d.z;this.n32=e.z;this.n33=h.z;return this},multiplyVector3:function(a){var c=a.x,b=a.y,d=a.z,e=1/(this.n41*c+this.n42*b+this.n43*d+this.n44);a.x=(this.n11*c+this.n12*b+this.n13*d+this.n14)*e;a.y=(this.n21*c+this.n22*b+this.n23* +THREE.Matrix4=function(a,c,b,d,e,g,h,k,j,m,t,x,y,q,A,G){this.set(a||1,c||0,b||0,d||0,e||0,g||1,h||0,k||0,j||0,m||0,t||1,x||0,y||0,q||0,A||0,G||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; +THREE.Matrix4.prototype={set:function(a,c,b,d,e,g,h,k,j,m,t,x,y,q,A,G){this.n11=a;this.n12=c;this.n13=b;this.n14=d;this.n21=e;this.n22=g;this.n23=h;this.n24=k;this.n31=j;this.n32=m;this.n33=t;this.n34=x;this.n41=y;this.n42=q;this.n43=A;this.n44=G;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(a){this.set(a.n11,a.n12,a.n13,a.n14,a.n21,a.n22,a.n23,a.n24,a.n31,a.n32,a.n33,a.n34,a.n41,a.n42,a.n43,a.n44);return this},lookAt:function(a,c,b){var d=THREE.Matrix4.__v1, +e=THREE.Matrix4.__v2,g=THREE.Matrix4.__v3;g.sub(a,c).normalize();if(g.length()===0)g.z=1;d.cross(b,g).normalize();if(d.length()===0){g.x+=1.0E-4;d.cross(b,g).normalize()}e.cross(g,d).normalize();this.n11=d.x;this.n12=e.x;this.n13=g.x;this.n21=d.y;this.n22=e.y;this.n23=g.y;this.n31=d.z;this.n32=e.z;this.n33=g.z;return this},multiplyVector3:function(a){var c=a.x,b=a.y,d=a.z,e=1/(this.n41*c+this.n42*b+this.n43*d+this.n44);a.x=(this.n11*c+this.n12*b+this.n13*d+this.n14)*e;a.y=(this.n21*c+this.n22*b+this.n23* d+this.n24)*e;a.z=(this.n31*c+this.n32*b+this.n33*d+this.n34)*e;return a},multiplyVector4:function(a){var c=a.x,b=a.y,d=a.z,e=a.w;a.x=this.n11*c+this.n12*b+this.n13*d+this.n14*e;a.y=this.n21*c+this.n22*b+this.n23*d+this.n24*e;a.z=this.n31*c+this.n32*b+this.n33*d+this.n34*e;a.w=this.n41*c+this.n42*b+this.n43*d+this.n44*e;return a},rotateAxis:function(a){var c=a.x,b=a.y,d=a.z;a.x=c*this.n11+b*this.n12+d*this.n13;a.y=c*this.n21+b*this.n22+d*this.n23;a.z=c*this.n31+b*this.n32+d*this.n33;a.normalize(); -return a},crossVector:function(a){var c=new THREE.Vector4;c.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;c.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;c.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;c.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return c},multiply:function(a,c){var b=a.n11,d=a.n12,e=a.n13,h=a.n14,g=a.n21,k=a.n22,j=a.n23,m=a.n24,t=a.n31,x=a.n32,y=a.n33,q=a.n34,A=a.n41,G=a.n42,I=a.n43,E=a.n44,H=c.n11,z=c.n12,S=c.n13,Q=c.n14,N=c.n21,da=c.n22, -f=c.n23,ja=c.n24,na=c.n31,aa=c.n32,Y=c.n33,Da=c.n34;this.n11=b*H+d*N+e*na;this.n12=b*z+d*da+e*aa;this.n13=b*S+d*f+e*Y;this.n14=b*Q+d*ja+e*Da+h;this.n21=g*H+k*N+j*na;this.n22=g*z+k*da+j*aa;this.n23=g*S+k*f+j*Y;this.n24=g*Q+k*ja+j*Da+m;this.n31=t*H+x*N+y*na;this.n32=t*z+x*da+y*aa;this.n33=t*S+x*f+y*Y;this.n34=t*Q+x*ja+y*Da+q;this.n41=A*H+G*N+I*na;this.n42=A*z+G*da+I*aa;this.n43=A*S+G*f+I*Y;this.n44=A*Q+G*ja+I*Da+E;return this},multiplyToArray:function(a,c,b){this.multiply(a,c);b[0]=this.n11;b[1]=this.n21; +return a},crossVector:function(a){var c=new THREE.Vector4;c.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;c.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;c.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;c.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return c},multiply:function(a,c){var b=a.n11,d=a.n12,e=a.n13,g=a.n14,h=a.n21,k=a.n22,j=a.n23,m=a.n24,t=a.n31,x=a.n32,y=a.n33,q=a.n34,A=a.n41,G=a.n42,H=a.n43,E=a.n44,I=c.n11,z=c.n12,S=c.n13,P=c.n14,O=c.n21,aa=c.n22, +f=c.n23,ha=c.n24,oa=c.n31,$=c.n32,W=c.n33,Da=c.n34;this.n11=b*I+d*O+e*oa;this.n12=b*z+d*aa+e*$;this.n13=b*S+d*f+e*W;this.n14=b*P+d*ha+e*Da+g;this.n21=h*I+k*O+j*oa;this.n22=h*z+k*aa+j*$;this.n23=h*S+k*f+j*W;this.n24=h*P+k*ha+j*Da+m;this.n31=t*I+x*O+y*oa;this.n32=t*z+x*aa+y*$;this.n33=t*S+x*f+y*W;this.n34=t*P+x*ha+y*Da+q;this.n41=A*I+G*O+H*oa;this.n42=A*z+G*aa+H*$;this.n43=A*S+G*f+H*W;this.n44=A*P+G*ha+H*Da+E;return this},multiplyToArray:function(a,c,b){this.multiply(a,c);b[0]=this.n11;b[1]=this.n21; b[2]=this.n31;b[3]=this.n41;b[4]=this.n12;b[5]=this.n22;b[6]=this.n32;b[7]=this.n42;b[8]=this.n13;b[9]=this.n23;b[10]=this.n33;b[11]=this.n43;b[12]=this.n14;b[13]=this.n24;b[14]=this.n34;b[15]=this.n44;return this},multiplySelf:function(a){this.multiply(this,a);return this},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=a;this.n42*=a;this.n43*=a;this.n44*=a;return this}, -determinant:function(){var a=this.n11,c=this.n12,b=this.n13,d=this.n14,e=this.n21,h=this.n22,g=this.n23,k=this.n24,j=this.n31,m=this.n32,t=this.n33,x=this.n34,y=this.n41,q=this.n42,A=this.n43,G=this.n44;return d*g*m*y-b*k*m*y-d*h*t*y+c*k*t*y+b*h*x*y-c*g*x*y-d*g*j*q+b*k*j*q+d*e*t*q-a*k*t*q-b*e*x*q+a*g*x*q+d*h*j*A-c*k*j*A-d*e*m*A+a*k*m*A+c*e*x*A-a*h*x*A-b*h*j*G+c*g*j*G+b*e*m*G-a*g*m*G-c*e*t*G+a*h*t*G},transpose:function(){var a;a=this.n21;this.n21=this.n12;this.n12=a;a=this.n31;this.n31=this.n13;this.n13= +determinant:function(){var a=this.n11,c=this.n12,b=this.n13,d=this.n14,e=this.n21,g=this.n22,h=this.n23,k=this.n24,j=this.n31,m=this.n32,t=this.n33,x=this.n34,y=this.n41,q=this.n42,A=this.n43,G=this.n44;return d*h*m*y-b*k*m*y-d*g*t*y+c*k*t*y+b*g*x*y-c*h*x*y-d*h*j*q+b*k*j*q+d*e*t*q-a*k*t*q-b*e*x*q+a*h*x*q+d*g*j*A-c*k*j*A-d*e*m*A+a*k*m*A+c*e*x*A-a*g*x*A-b*g*j*G+c*h*j*G+b*e*m*G-a*h*m*G-c*e*t*G+a*g*t*G},transpose:function(){var a;a=this.n21;this.n21=this.n12;this.n12=a;a=this.n31;this.n31=this.n13;this.n13= a;a=this.n32;this.n32=this.n23;this.n23=a;a=this.n41;this.n41=this.n14;this.n14=a;a=this.n42;this.n42=this.n24;this.n24=a;a=this.n43;this.n43=this.n34;this.n43=a;return this},clone:function(){var a=new THREE.Matrix4;a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){this.flat[0]=this.n11; this.flat[1]=this.n21;this.flat[2]=this.n31;this.flat[3]=this.n41;this.flat[4]=this.n12;this.flat[5]=this.n22;this.flat[6]=this.n32;this.flat[7]=this.n42;this.flat[8]=this.n13;this.flat[9]=this.n23;this.flat[10]=this.n33;this.flat[11]=this.n43;this.flat[12]=this.n14;this.flat[13]=this.n24;this.flat[14]=this.n34;this.flat[15]=this.n44;return this.flat},flattenToArray:function(a){a[0]=this.n11;a[1]=this.n21;a[2]=this.n31;a[3]=this.n41;a[4]=this.n12;a[5]=this.n22;a[6]=this.n32;a[7]=this.n42;a[8]=this.n13; a[9]=this.n23;a[10]=this.n33;a[11]=this.n43;a[12]=this.n14;a[13]=this.n24;a[14]=this.n34;a[15]=this.n44;return a},flattenToArrayOffset:function(a,c){a[c]=this.n11;a[c+1]=this.n21;a[c+2]=this.n31;a[c+3]=this.n41;a[c+4]=this.n12;a[c+5]=this.n22;a[c+6]=this.n32;a[c+7]=this.n42;a[c+8]=this.n13;a[c+9]=this.n23;a[c+10]=this.n33;a[c+11]=this.n43;a[c+12]=this.n14;a[c+13]=this.n24;a[c+14]=this.n34;a[c+15]=this.n44;return a},setTranslation:function(a,c,b){this.set(1,0,0,a,0,1,0,c,0,0,1,b,0,0,0,1);return this}, -setScale:function(a,c,b){this.set(a,0,0,0,0,c,0,0,0,0,b,0,0,0,0,1);return this},setRotationX:function(a){var c=Math.cos(a);a=Math.sin(a);this.set(1,0,0,0,0,c,-a,0,0,a,c,0,0,0,0,1);return this},setRotationY:function(a){var c=Math.cos(a);a=Math.sin(a);this.set(c,0,a,0,0,1,0,0,-a,0,c,0,0,0,0,1);return this},setRotationZ:function(a){var c=Math.cos(a);a=Math.sin(a);this.set(c,-a,0,0,a,c,0,0,0,0,1,0,0,0,0,1);return this},setRotationAxis:function(a,c){var b=Math.cos(c),d=Math.sin(c),e=1-b,h=a.x,g=a.y,k= -a.z,j=e*h,m=e*g;this.set(j*h+b,j*g-d*k,j*k+d*g,0,j*g+d*k,m*g+b,m*k-d*h,0,j*k-d*g,m*k+d*h,e*k*k+b,0,0,0,0,1);return this},setPosition:function(a){this.n14=a.x;this.n24=a.y;this.n34=a.z;return this},setRotationFromEuler:function(a){var c=a.x,b=a.y,d=a.z;a=Math.cos(c);c=Math.sin(c);var e=Math.cos(b);b=Math.sin(b);var h=Math.cos(d);d=Math.sin(d);var g=a*b,k=c*b;this.n11=e*h;this.n12=-e*d;this.n13=b;this.n21=k*h+a*d;this.n22=-k*d+a*h;this.n23=-c*e;this.n31=-g*h+c*d;this.n32=g*d+c*h;this.n33=a*e;return this}, -setRotationFromQuaternion:function(a){var c=a.x,b=a.y,d=a.z,e=a.w,h=c+c,g=b+b,k=d+d;a=c*h;var j=c*g;c*=k;var m=b*g;b*=k;d*=k;h*=e;g*=e;e*=k;this.n11=1-(m+d);this.n12=j-e;this.n13=c+g;this.n21=j+e;this.n22=1-(a+d);this.n23=b-h;this.n31=c-g;this.n32=b+h;this.n33=1-(a+m);return this},scale:function(a){var c=a.x,b=a.y;a=a.z;this.n11*=c;this.n12*=b;this.n13*=a;this.n21*=c;this.n22*=b;this.n23*=a;this.n31*=c;this.n32*=b;this.n33*=a;this.n41*=c;this.n42*=b;this.n43*=a;return this},extractPosition:function(a){this.n14= +setScale:function(a,c,b){this.set(a,0,0,0,0,c,0,0,0,0,b,0,0,0,0,1);return this},setRotationX:function(a){var c=Math.cos(a);a=Math.sin(a);this.set(1,0,0,0,0,c,-a,0,0,a,c,0,0,0,0,1);return this},setRotationY:function(a){var c=Math.cos(a);a=Math.sin(a);this.set(c,0,a,0,0,1,0,0,-a,0,c,0,0,0,0,1);return this},setRotationZ:function(a){var c=Math.cos(a);a=Math.sin(a);this.set(c,-a,0,0,a,c,0,0,0,0,1,0,0,0,0,1);return this},setRotationAxis:function(a,c){var b=Math.cos(c),d=Math.sin(c),e=1-b,g=a.x,h=a.y,k= +a.z,j=e*g,m=e*h;this.set(j*g+b,j*h-d*k,j*k+d*h,0,j*h+d*k,m*h+b,m*k-d*g,0,j*k-d*h,m*k+d*g,e*k*k+b,0,0,0,0,1);return this},setPosition:function(a){this.n14=a.x;this.n24=a.y;this.n34=a.z;return this},setRotationFromEuler:function(a){var c=a.x,b=a.y,d=a.z;a=Math.cos(c);c=Math.sin(c);var e=Math.cos(b);b=Math.sin(b);var g=Math.cos(d);d=Math.sin(d);var h=a*b,k=c*b;this.n11=e*g;this.n12=-e*d;this.n13=b;this.n21=k*g+a*d;this.n22=-k*d+a*g;this.n23=-c*e;this.n31=-h*g+c*d;this.n32=h*d+c*g;this.n33=a*e;return this}, +setRotationFromQuaternion:function(a){var c=a.x,b=a.y,d=a.z,e=a.w,g=c+c,h=b+b,k=d+d;a=c*g;var j=c*h;c*=k;var m=b*h;b*=k;d*=k;g*=e;h*=e;e*=k;this.n11=1-(m+d);this.n12=j-e;this.n13=c+h;this.n21=j+e;this.n22=1-(a+d);this.n23=b-g;this.n31=c-h;this.n32=b+g;this.n33=1-(a+m);return this},scale:function(a){var c=a.x,b=a.y;a=a.z;this.n11*=c;this.n12*=b;this.n13*=a;this.n21*=c;this.n22*=b;this.n23*=a;this.n31*=c;this.n32*=b;this.n33*=a;this.n41*=c;this.n42*=b;this.n43*=a;return this},extractPosition:function(a){this.n14= a.n14;this.n24=a.n24;this.n34=a.n34},extractRotation:function(a,c){var b=1/c.x,d=1/c.y,e=1/c.z;this.n11=a.n11*b;this.n21=a.n21*b;this.n31=a.n31*b;this.n12=a.n12*d;this.n22=a.n22*d;this.n32=a.n32*d;this.n13=a.n13*e;this.n23=a.n23*e;this.n33=a.n33*e}}; -THREE.Matrix4.makeInvert=function(a,c){var b=a.n11,d=a.n12,e=a.n13,h=a.n14,g=a.n21,k=a.n22,j=a.n23,m=a.n24,t=a.n31,x=a.n32,y=a.n33,q=a.n34,A=a.n41,G=a.n42,I=a.n43,E=a.n44;c===undefined&&(c=new THREE.Matrix4);c.n11=j*q*G-m*y*G+m*x*I-k*q*I-j*x*E+k*y*E;c.n12=h*y*G-e*q*G-h*x*I+d*q*I+e*x*E-d*y*E;c.n13=e*m*G-h*j*G+h*k*I-d*m*I-e*k*E+d*j*E;c.n14=h*j*x-e*m*x-h*k*y+d*m*y+e*k*q-d*j*q;c.n21=m*y*A-j*q*A-m*t*I+g*q*I+j*t*E-g*y*E;c.n22=e*q*A-h*y*A+h*t*I-b*q*I-e*t*E+b*y*E;c.n23=h*j*A-e*m*A-h*g*I+b*m*I+e*g*E-b*j*E; -c.n24=e*m*t-h*j*t+h*g*y-b*m*y-e*g*q+b*j*q;c.n31=k*q*A-m*x*A+m*t*G-g*q*G-k*t*E+g*x*E;c.n32=h*x*A-d*q*A-h*t*G+b*q*G+d*t*E-b*x*E;c.n33=e*m*A-h*k*A+h*g*G-b*m*G-d*g*E+b*k*E;c.n34=h*k*t-d*m*t-h*g*x+b*m*x+d*g*q-b*k*q;c.n41=j*x*A-k*y*A-j*t*G+g*y*G+k*t*I-g*x*I;c.n42=d*y*A-e*x*A+e*t*G-b*y*G-d*t*I+b*x*I;c.n43=e*k*A-d*j*A-e*g*G+b*j*G+d*g*I-b*k*I;c.n44=d*j*t-e*k*t+e*g*x-b*j*x-d*g*y+b*k*y;c.multiplyScalar(1/a.determinant());return c}; -THREE.Matrix4.makeInvert3x3=function(a){var c=a.m33,b=c.m,d=a.n33*a.n22-a.n32*a.n23,e=-a.n33*a.n21+a.n31*a.n23,h=a.n32*a.n21-a.n31*a.n22,g=-a.n33*a.n12+a.n32*a.n13,k=a.n33*a.n11-a.n31*a.n13,j=-a.n32*a.n11+a.n31*a.n12,m=a.n23*a.n12-a.n22*a.n13,t=-a.n23*a.n11+a.n21*a.n13,x=a.n22*a.n11-a.n21*a.n12;a=a.n11*d+a.n21*g+a.n31*m;if(a==0)throw"matrix not invertible";a=1/a;b[0]=a*d;b[1]=a*e;b[2]=a*h;b[3]=a*g;b[4]=a*k;b[5]=a*j;b[6]=a*m;b[7]=a*t;b[8]=a*x;return c}; -THREE.Matrix4.makeFrustum=function(a,c,b,d,e,h){var g;g=new THREE.Matrix4;g.n11=2*e/(c-a);g.n12=0;g.n13=(c+a)/(c-a);g.n14=0;g.n21=0;g.n22=2*e/(d-b);g.n23=(d+b)/(d-b);g.n24=0;g.n31=0;g.n32=0;g.n33=-(h+e)/(h-e);g.n34=-2*h*e/(h-e);g.n41=0;g.n42=0;g.n43=-1;g.n44=0;return g};THREE.Matrix4.makePerspective=function(a,c,b,d){var e;a=b*Math.tan(a*Math.PI/360);e=-a;return THREE.Matrix4.makeFrustum(e*c,a*c,e,a,b,d)}; -THREE.Matrix4.makeOrtho=function(a,c,b,d,e,h){var g,k,j,m;g=new THREE.Matrix4;k=c-a;j=b-d;m=h-e;g.n11=2/k;g.n12=0;g.n13=0;g.n14=-((c+a)/k);g.n21=0;g.n22=2/j;g.n23=0;g.n24=-((b+d)/j);g.n31=0;g.n32=0;g.n33=-2/m;g.n34=-((h+e)/m);g.n41=0;g.n42=0;g.n43=0;g.n44=1;return g};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3; +THREE.Matrix4.makeInvert=function(a,c){var b=a.n11,d=a.n12,e=a.n13,g=a.n14,h=a.n21,k=a.n22,j=a.n23,m=a.n24,t=a.n31,x=a.n32,y=a.n33,q=a.n34,A=a.n41,G=a.n42,H=a.n43,E=a.n44;c===undefined&&(c=new THREE.Matrix4);c.n11=j*q*G-m*y*G+m*x*H-k*q*H-j*x*E+k*y*E;c.n12=g*y*G-e*q*G-g*x*H+d*q*H+e*x*E-d*y*E;c.n13=e*m*G-g*j*G+g*k*H-d*m*H-e*k*E+d*j*E;c.n14=g*j*x-e*m*x-g*k*y+d*m*y+e*k*q-d*j*q;c.n21=m*y*A-j*q*A-m*t*H+h*q*H+j*t*E-h*y*E;c.n22=e*q*A-g*y*A+g*t*H-b*q*H-e*t*E+b*y*E;c.n23=g*j*A-e*m*A-g*h*H+b*m*H+e*h*E-b*j*E; +c.n24=e*m*t-g*j*t+g*h*y-b*m*y-e*h*q+b*j*q;c.n31=k*q*A-m*x*A+m*t*G-h*q*G-k*t*E+h*x*E;c.n32=g*x*A-d*q*A-g*t*G+b*q*G+d*t*E-b*x*E;c.n33=e*m*A-g*k*A+g*h*G-b*m*G-d*h*E+b*k*E;c.n34=g*k*t-d*m*t-g*h*x+b*m*x+d*h*q-b*k*q;c.n41=j*x*A-k*y*A-j*t*G+h*y*G+k*t*H-h*x*H;c.n42=d*y*A-e*x*A+e*t*G-b*y*G-d*t*H+b*x*H;c.n43=e*k*A-d*j*A-e*h*G+b*j*G+d*h*H-b*k*H;c.n44=d*j*t-e*k*t+e*h*x-b*j*x-d*h*y+b*k*y;c.multiplyScalar(1/a.determinant());return c}; +THREE.Matrix4.makeInvert3x3=function(a){var c=a.m33,b=c.m,d=a.n33*a.n22-a.n32*a.n23,e=-a.n33*a.n21+a.n31*a.n23,g=a.n32*a.n21-a.n31*a.n22,h=-a.n33*a.n12+a.n32*a.n13,k=a.n33*a.n11-a.n31*a.n13,j=-a.n32*a.n11+a.n31*a.n12,m=a.n23*a.n12-a.n22*a.n13,t=-a.n23*a.n11+a.n21*a.n13,x=a.n22*a.n11-a.n21*a.n12;a=a.n11*d+a.n21*h+a.n31*m;if(a==0)throw"matrix not invertible";a=1/a;b[0]=a*d;b[1]=a*e;b[2]=a*g;b[3]=a*h;b[4]=a*k;b[5]=a*j;b[6]=a*m;b[7]=a*t;b[8]=a*x;return c}; +THREE.Matrix4.makeFrustum=function(a,c,b,d,e,g){var h;h=new THREE.Matrix4;h.n11=2*e/(c-a);h.n12=0;h.n13=(c+a)/(c-a);h.n14=0;h.n21=0;h.n22=2*e/(d-b);h.n23=(d+b)/(d-b);h.n24=0;h.n31=0;h.n32=0;h.n33=-(g+e)/(g-e);h.n34=-2*g*e/(g-e);h.n41=0;h.n42=0;h.n43=-1;h.n44=0;return h};THREE.Matrix4.makePerspective=function(a,c,b,d){var e;a=b*Math.tan(a*Math.PI/360);e=-a;return THREE.Matrix4.makeFrustum(e*c,a*c,e,a,b,d)}; +THREE.Matrix4.makeOrtho=function(a,c,b,d,e,g){var h,k,j,m;h=new THREE.Matrix4;k=c-a;j=b-d;m=g-e;h.n11=2/k;h.n12=0;h.n13=0;h.n14=-((c+a)/k);h.n21=0;h.n22=2/j;h.n23=0;h.n24=-((b+d)/j);h.n31=0;h.n32=0;h.n33=-2/m;h.n34=-((g+e)/m);h.n41=0;h.n42=0;h.n43=0;h.n44=1;return h};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3; THREE.Object3D=function(){this.parent=undefined;this.children=[];this.up=new THREE.Vector3(0,1,0);this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.rotationAutoUpdate=!0;this.matrix=new THREE.Matrix4;this.matrixWorld=new THREE.Matrix4;this.matrixRotationWorld=new THREE.Matrix4;this.matrixAutoUpdate=!0;this.matrixWorldNeedsUpdate=!0;this.quaternion=new THREE.Quaternion;this.useQuaternion=!1;this.boundRadius=0;this.boundRadiusScale=1;this.visible= !0;this._vector=new THREE.Vector3}; THREE.Object3D.prototype={translate:function(a,c){this.matrix.rotateAxis(c);this.position.addSelf(c.multiplyScalar(a))},translateX:function(a){this.translate(a,this._vector.set(1,0,0))},translateY:function(a){this.translate(a,this._vector.set(0,1,0))},translateZ:function(a){this.translate(a,this._vector.set(0,0,1))},lookAt:function(a){this.matrix.lookAt(this.position,a,this.up);this.rotationAutoUpdate&&this.rotation.setRotationFromMatrix(this.matrix)},addChild:function(a){if(this.children.indexOf(a)===-1){a.parent!== undefined&&a.parent.removeChild(a);a.parent=this;this.children.push(a);for(var c=this;c instanceof THREE.Scene===!1&&c!==undefined;)c=c.parent;c!==undefined&&c.addChildRecurse(a)}},removeChild:function(a){var c=this.children.indexOf(a);if(c!==-1){a.parent=undefined;this.children.splice(c,1)}},updateMatrix:function(){this.matrix.setPosition(this.position);this.useQuaternion?this.matrix.setRotationFromQuaternion(this.quaternion):this.matrix.setRotationFromEuler(this.rotation);if(this.scale.x!==1||this.scale.y!== 1||this.scale.z!==1){this.matrix.scale(this.scale);this.boundRadiusScale=Math.max(this.scale.x,Math.max(this.scale.y,this.scale.z))}this.matrixWorldNeedsUpdate=!0},update:function(a,c,b){this.matrixAutoUpdate&&this.updateMatrix();if(this.matrixWorldNeedsUpdate||c){a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);this.matrixRotationWorld.extractRotation(this.matrixWorld,this.scale);this.matrixWorldNeedsUpdate=!1;c=!0}a=0;for(var d=this.children.length;a=1){b.w=a.w;b.x=a.x;b.y=a.y;b.z=a.z;return b}var h=Math.acos(e),g=Math.sqrt(1-e*e);if(Math.abs(g)<0.0010){b.w=0.5*(a.w+c.w);b.x=0.5*(a.x+c.x);b.y=0.5*(a.y+c.y);b.z=0.5*(a.z+c.z);return b}e=Math.sin((1-d)*h)/g;d=Math.sin(d*h)/g;b.w=a.w*e+c.w*d;b.x=a.x*e+c.x*d;b.y=a.y*e+c.y*d;b.z=a.z*e+c.z*d;return b};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; -THREE.Face3=function(a,c,b,d,e,h){this.a=a;this.b=c;this.c=b;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.materials=h instanceof Array?h:[h];this.centroid=new THREE.Vector3}; -THREE.Face4=function(a,c,b,d,e,h,g){this.a=a;this.b=c;this.c=b;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.materials=g instanceof Array?g:[g];this.centroid=new THREE.Vector3};THREE.UV=function(a,c){this.set(a||0,c||0)};THREE.UV.prototype={set:function(a,c){this.u=a;this.v=c;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.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; +THREE.Quaternion.prototype={set:function(a,c,b,d){this.x=a;this.y=c;this.z=b;this.w=d;return this},setFromEuler:function(a){var c=0.5*Math.PI/360,b=a.x*c,d=a.y*c,e=a.z*c;a=Math.cos(d);d=Math.sin(d);c=Math.cos(-e);e=Math.sin(-e);var g=Math.cos(b);b=Math.sin(b);var h=a*c,k=d*e;this.w=h*g-k*b;this.x=h*b+k*g;this.y=d*c*g+a*e*b;this.z=a*e*g-d*c*b;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 c=this.x,b=this.y,d=this.z,e=this.w,g=a.x,h=a.y,k=a.z;a=a.w;this.x=c*a+e*g+b*k-d*h;this.y=b*a+e*h+d*g-c*k;this.z=d*a+e*k+c*h-b*g;this.w=e*a-c*g-b*h-d*k;return this}, +multiplyVector3:function(a,c){c||(c=a);var b=a.x,d=a.y,e=a.z,g=this.x,h=this.y,k=this.z,j=this.w,m=j*b+h*e-k*d,t=j*d+k*b-g*e,x=j*e+g*d-h*b;b=-g*b-h*d-k*e;c.x=m*j+b*-g+t*-k-x*-h;c.y=t*j+b*-h+x*-g-m*-k;c.z=x*j+b*-k+m*-h-t*-g;return c}}; +THREE.Quaternion.slerp=function(a,c,b,d){var e=a.w*c.w+a.x*c.x+a.y*c.y+a.z*c.z;if(Math.abs(e)>=1){b.w=a.w;b.x=a.x;b.y=a.y;b.z=a.z;return b}var g=Math.acos(e),h=Math.sqrt(1-e*e);if(Math.abs(h)<0.0010){b.w=0.5*(a.w+c.w);b.x=0.5*(a.x+c.x);b.y=0.5*(a.y+c.y);b.z=0.5*(a.z+c.z);return b}e=Math.sin((1-d)*g)/h;d=Math.sin(d*g)/h;b.w=a.w*e+c.w*d;b.x=a.x*e+c.x*d;b.y=a.y*e+c.y*d;b.z=a.z*e+c.z*d;return b};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; +THREE.Face3=function(a,c,b,d,e,g){this.a=a;this.b=c;this.c=b;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,c,b,d,e,g,h){this.a=a;this.b=c;this.c=b;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=h instanceof Array?h:[h];this.centroid=new THREE.Vector3};THREE.UV=function(a,c){this.set(a||0,c||0)}; +THREE.UV.prototype={set:function(a,c){this.u=a;this.v=c;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.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; THREE.Geometry.prototype={computeCentroids:function(){var a,c,b;a=0;for(c=this.faces.length;a0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z, -this.vertices[0].position.z]};for(var c=1,b=this.vertices.length;cthis.boundingBox.x[1])this.boundingBox.x[1]=a.position.x;if(a.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=a.position.y;if(a.position.zthis.boundingBox.z[1])this.boundingBox.z[1]= -a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,c=0,b=this.vertices.length;cthis.points.length-2?h:h+1;b[3]=h>this.points.length-3?h:h+2;m=this.points[b[0]];t=this.points[b[1]]; -x=this.points[b[2]];y=this.points[b[3]];k=g*g;j=g*k;d.x=c(m.x,t.x,x.x,y.x,g,k,j);d.y=c(m.y,t.y,x.y,y.y,g,k,j);d.z=c(m.z,t.z,x.z,y.z,g,k,j);return d};this.getControlPointsArray=function(){var q,A,G=this.points.length,I=[];for(q=0;q0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var c=1,b=this.vertices.length;cthis.boundingBox.x[1])this.boundingBox.x[1]=a.position.x; +if(a.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=a.position.y;if(a.position.zthis.boundingBox.z[1])this.boundingBox.z[1]=a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,c=0,b=this.vertices.length;cthis.points.length-2?g:g+1;b[3]=g>this.points.length-3?g:g+2;m=this.points[b[0]];t=this.points[b[1]]; +x=this.points[b[2]];y=this.points[b[3]];k=h*h;j=h*k;d.x=c(m.x,t.x,x.x,y.x,h,k,j);d.y=c(m.y,t.y,x.y,y.y,h,k,j);d.z=c(m.z,t.z,x.z,y.z,h,k,j);return d};this.getControlPointsArray=function(){var q,A,G=this.points.length,H=[];for(q=0;q1){console.log("THREE.Animation.update: Warning! Scale out of bounds:"+d+" on bone "+q);d=d<0?0:1}if(b==="pos"){b=a.position;if(this.interpolationType===THREE.AnimationHandler.LINEAR){b.x=e[0]+(h[0]-e[0])*d;b.y=e[1]+(h[1]-e[1])*d;b.z=e[2]+(h[2]-e[2])*d}else if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){this.points[0]= -this.getPrevKeyWith("pos",q,g.index-1).pos;this.points[1]=e;this.points[2]=h;this.points[3]=this.getNextKeyWith("pos",q,k.index+1).pos;d=d*0.33+0.33;e=this.interpolateCatmullRom(this.points,d);b.x=e[0];b.y=e[1];b.z=e[2];if(this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){d=this.interpolateCatmullRom(this.points,d*1.01);this.target.set(d[0],d[1],d[2]);this.target.subSelf(b);this.target.y=0;this.target.normalize();d=Math.atan2(this.target.x,this.target.z);a.rotation.set(0,d,0)}}}else if(b=== -"rot")THREE.Quaternion.slerp(e,h,a.quaternion,d);else if(b==="scl"){b=a.scale;b.x=e[0]+(h[0]-e[0])*d;b.y=e[1]+(h[1]-e[1])*d;b.z=e[2]+(h[2]-e[2])*d}}}}if(this.JITCompile&&t[0][m]===undefined){this.hierarchy[0].update(undefined,!0);for(q=0;qa.length-2?h:h+1;b[3]=h>a.length-3?h:h+2;h=a[b[0]];k=a[b[1]];j=a[b[2]];m=a[b[3]];b=e*e;g=e*b;d[0]=this.interpolate(h[0],k[0],j[0],m[0],e,b,g);d[1]=this.interpolate(h[1],k[1],j[1],m[1],e,b,g);d[2]=this.interpolate(h[2],k[2],j[2],m[2],e,b,g);return d}; -THREE.Animation.prototype.interpolate=function(a,c,b,d,e,h,g){a=(b-a)*0.5;d=(d-c)*0.5;return(2*(c-b)+a+d)*g+(-3*(c-b)-2*a-d)*h+a*e+c};THREE.Animation.prototype.getNextKeyWith=function(a,c,b){var d=this.data.hierarchy[c].keys;if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)b=b1){console.log("THREE.Animation.update: Warning! Scale out of bounds:"+d+" on bone "+q);d=d<0?0:1}if(b==="pos"){b=a.position;if(this.interpolationType===THREE.AnimationHandler.LINEAR){b.x=e[0]+(g[0]-e[0])*d;b.y=e[1]+(g[1]-e[1])*d;b.z=e[2]+(g[2]-e[2])*d}else if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){this.points[0]= +this.getPrevKeyWith("pos",q,h.index-1).pos;this.points[1]=e;this.points[2]=g;this.points[3]=this.getNextKeyWith("pos",q,k.index+1).pos;d=d*0.33+0.33;e=this.interpolateCatmullRom(this.points,d);b.x=e[0];b.y=e[1];b.z=e[2];if(this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){d=this.interpolateCatmullRom(this.points,d*1.01);this.target.set(d[0],d[1],d[2]);this.target.subSelf(b);this.target.y=0;this.target.normalize();d=Math.atan2(this.target.x,this.target.z);a.rotation.set(0,d,0)}}}else if(b=== +"rot")THREE.Quaternion.slerp(e,g,a.quaternion,d);else if(b==="scl"){b=a.scale;b.x=e[0]+(g[0]-e[0])*d;b.y=e[1]+(g[1]-e[1])*d;b.z=e[2]+(g[2]-e[2])*d}}}}if(this.JITCompile&&t[0][m]===undefined){this.hierarchy[0].update(undefined,!0);for(q=0;qa.length-2?g:g+1;b[3]=g>a.length-3?g:g+2;g=a[b[0]];k=a[b[1]];j=a[b[2]];m=a[b[3]];b=e*e;h=e*b;d[0]=this.interpolate(g[0],k[0],j[0],m[0],e,b,h);d[1]=this.interpolate(g[1],k[1],j[1],m[1],e,b,h);d[2]=this.interpolate(g[2],k[2],j[2],m[2],e,b,h);return d}; +THREE.Animation.prototype.interpolate=function(a,c,b,d,e,g,h){a=(b-a)*0.5;d=(d-c)*0.5;return(2*(c-b)+a+d)*h+(-3*(c-b)-2*a-d)*g+a*e+c};THREE.Animation.prototype.getNextKeyWith=function(a,c,b){var d=this.data.hierarchy[c].keys;if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)b=b0?b:0:b>=0?b:b+d.length;b>=0;b--)if(d[b][a]!==undefined)return d[b];return this.data.hierarchy[c].keys[d.length-1]}; THREE.Camera=function(a,c,b,d,e){THREE.Object3D.call(this);this.fov=a||50;this.aspect=c||1;this.near=b||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;THREE.Camera.prototype.supr=THREE.Object3D.prototype; THREE.Camera.prototype.translate=function(a,c){this.matrix.rotateAxis(c);this.position.addSelf(c.multiplyScalar(a));this.target.position.addSelf(c.multiplyScalar(a))};THREE.Camera.prototype.updateProjectionMatrix=function(){this.projectionMatrix=THREE.Matrix4.makePerspective(this.fov,this.aspect,this.near,this.far)};THREE.Camera.prototype.updateMatrix=function(){this.update(undefined,!0)}; @@ -114,7 +114,7 @@ if(a.wireframeLinejoin!==undefined)this.wireframeLinejoin=a.wireframeLinejoin;if THREE.ParticleBasicMaterial=function(a){this.id=THREE.MaterialCounter.value++;this.color=new THREE.Color(16777215);this.opacity=1;this.map=null;this.size=1;this.sizeAttenuation=!0;this.blending=THREE.NormalBlending;this.depthTest=!0;this.offset=new THREE.Vector2;this.vertexColors=!1;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.map!==undefined)this.map=a.map;if(a.size!==undefined)this.size=a.size;if(a.sizeAttenuation!==undefined)this.sizeAttenuation= a.sizeAttenuation;if(a.blending!==undefined)this.blending=a.blending;if(a.depthTest!==undefined)this.depthTest=a.depthTest;if(a.vertexColors!==undefined)this.vertexColors=a.vertexColors}}; THREE.ParticleCanvasMaterial=function(a){this.id=THREE.MaterialCounter.value++;this.color=new THREE.Color(16777215);this.program=function(){};this.opacity=1;this.blending=THREE.NormalBlending;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.program!==undefined)this.program=a.program;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}};THREE.ParticleDOMMaterial=function(a){this.id=THREE.MaterialCounter.value++;this.domElement=a}; -THREE.Texture=function(a,c,b,d,e,h){this.image=a;this.mapping=c!==undefined?c:new THREE.UVMapping;this.wrapS=b!==undefined?b:THREE.ClampToEdgeWrapping;this.wrapT=d!==undefined?d:THREE.ClampToEdgeWrapping;this.magFilter=e!==undefined?e:THREE.LinearFilter;this.minFilter=h!==undefined?h:THREE.LinearMipMapLinearFilter;this.needsUpdate=!1};THREE.Texture.prototype={clone:function(){return new THREE.Texture(this.image,this.mapping,this.wrapS,this.wrapT,this.magFilter,this.minFilter)}}; +THREE.Texture=function(a,c,b,d,e,g){this.image=a;this.mapping=c!==undefined?c:new THREE.UVMapping;this.wrapS=b!==undefined?b:THREE.ClampToEdgeWrapping;this.wrapT=d!==undefined?d:THREE.ClampToEdgeWrapping;this.magFilter=e!==undefined?e:THREE.LinearFilter;this.minFilter=g!==undefined?g:THREE.LinearMipMapLinearFilter;this.needsUpdate=!1};THREE.Texture.prototype={clone:function(){return new THREE.Texture(this.image,this.mapping,this.wrapS,this.wrapT,this.magFilter,this.minFilter)}}; THREE.MultiplyOperation=0;THREE.MixOperation=1;THREE.RepeatWrapping=0;THREE.ClampToEdgeWrapping=1;THREE.MirroredRepeatWrapping=2;THREE.NearestFilter=3;THREE.NearestMipMapNearestFilter=4;THREE.NearestMipMapLinearFilter=5;THREE.LinearFilter=6;THREE.LinearMipMapNearestFilter=7;THREE.LinearMipMapLinearFilter=8;THREE.ByteType=9;THREE.UnsignedByteType=10;THREE.ShortType=11;THREE.UnsignedShortType=12;THREE.IntType=13;THREE.UnsignedIntType=14;THREE.FloatType=15;THREE.AlphaFormat=16;THREE.RGBFormat=17; THREE.RGBAFormat=18;THREE.LuminanceFormat=19;THREE.LuminanceAlphaFormat=20; THREE.RenderTarget=function(a,c,b){this.width=a;this.height=c;b=b||{};this.wrapS=b.wrapS!==undefined?b.wrapS:THREE.ClampToEdgeWrapping;this.wrapT=b.wrapT!==undefined?b.wrapT:THREE.ClampToEdgeWrapping;this.magFilter=b.magFilter!==undefined?b.magFilter:THREE.LinearFilter;this.minFilter=b.minFilter!==undefined?b.minFilter:THREE.LinearMipMapLinearFilter;this.format=b.format!==undefined?b.format:THREE.RGBFormat;this.type=b.type!==undefined?b.type:THREE.UnsignedByteType}; @@ -126,12 +126,12 @@ this.morphTargetDictionary[this.geometry.morphTargets[b].name]=b}}}};THREE.Mesh. THREE.Bone=function(a){THREE.Object3D.call(this);this.skin=a;this.skinMatrix=new THREE.Matrix4;this.hasNoneBoneChildren=!1};THREE.Bone.prototype=new THREE.Object3D;THREE.Bone.prototype.constructor=THREE.Bone;THREE.Bone.prototype.supr=THREE.Object3D.prototype; THREE.Bone.prototype.update=function(a,c,b){this.matrixAutoUpdate&&(c|=this.updateMatrix());if(c||this.matrixWorldNeedsUpdate){a?this.skinMatrix.multiply(a,this.matrix):this.skinMatrix.copy(this.matrix);this.matrixWorldNeedsUpdate=!1;c=!0}var d,e=this.children.length;if(this.hasNoneBoneChildren){this.matrixWorld.multiply(this.skin.matrixWorld,this.skinMatrix);for(d=0;d=0&&ia>=0&&ra>=0&&oa>=0)return!0;else if(Ea<0&&ia<0||ra<0&&oa<0)return!1;else{if(Ea<0)Da=Math.max(Da,Ea/(Ea-ia));else ia<0&&(ea=Math.min(ea,Ea/(Ea-ia)));if(ra<0)Da=Math.max(Da,ra/(ra-oa));else oa<0&&(ea=Math.min(ea,ra/(ra-oa)));if(eaEa&&g.positionScreen.z0&&Q.z<1){Ma=z[H]=z[H]||new THREE.RenderableParticle;H++;E=Ma;E.x=Q.x/Q.w;E.y=Q.y/Q.w;E.z=Q.z;E.rotation=xa.rotation.z;E.scale.x=xa.scale.x*Math.abs(E.x-(Q.x+Y.projectionMatrix.n11)/(Q.w+Y.projectionMatrix.n14));E.scale.y=xa.scale.y*Math.abs(E.y-(Q.y+Y.projectionMatrix.n22)/(Q.w+Y.projectionMatrix.n24));E.materials=xa.materials;ea.push(E)}}}}Da&&ea.sort(c);return ea}}; -THREE.DOMRenderer=function(){THREE.Renderer.call(this);var a=null,c=new THREE.Projector,b,d,e,h;this.domElement=document.createElement("div");this.setSize=function(g,k){b=g;d=k;e=b/2;h=d/2};this.render=function(g,k){var j,m,t,x,y,q,A,G;a=c.projectScene(g,k);j=0;for(m=a.length;j0){T.r+=ma.r*sa;T.g+=ma.g*sa;T.b+=ma.b*sa}}else if(sa instanceof THREE.PointLight){W.sub(sa.position,ca);W.normalize();sa=U.dot(W)*Z;if(sa>0){T.r+=ma.r*sa;T.g+= -ma.g*sa;T.b+=ma.b*sa}}}}function fa(K,ca,U){a(U.opacity);c(U.blending);var T,Fa,sa,ma,Z,ya;if(U instanceof THREE.ParticleBasicMaterial){if(U.map){ma=U.map.image;Z=ma.width>>1;ya=ma.height>>1;U=ca.scale.x*k;sa=ca.scale.y*j;T=U*Z;Fa=sa*ya;F.set(K.x-T,K.y-Fa,K.x+T,K.y+Fa);if(D.instersects(F)){m.save();m.translate(K.x,K.y);m.rotate(-ca.rotation);m.scale(U,-sa);m.translate(-Z,-ya);m.drawImage(ma,0,0);m.restore()}}}else if(U instanceof THREE.ParticleCanvasMaterial){if(V){M.r=J.r+qa.r+Ca.r;M.g=J.g+qa.g+ -Ca.g;M.b=J.b+qa.b+Ca.b;$.r=U.color.r*M.r;$.g=U.color.g*M.g;$.b=U.color.b*M.b;$.updateStyleString()}else $.__styleString=U.color.__styleString;T=ca.scale.x*k;Fa=ca.scale.y*j;F.set(K.x-T,K.y-Fa,K.x+T,K.y+Fa);if(D.instersects(F)){m.save();m.translate(K.x,K.y);m.rotate(-ca.rotation);m.scale(T,Fa);U.program(m,$);m.restore()}}}function ga(K,ca,U,T){a(T.opacity);c(T.blending);m.beginPath();m.moveTo(K.positionScreen.x,K.positionScreen.y);m.lineTo(ca.positionScreen.x,ca.positionScreen.y);m.closePath();if(T instanceof -THREE.LineBasicMaterial){$.__styleString=T.color.__styleString;K=T.linewidth;if(I!=K)m.lineWidth=I=K;K=$.__styleString;if(A!=K)m.strokeStyle=A=K;m.stroke();F.inflate(T.linewidth*2)}}function Ia(K,ca,U,T,Fa,sa,ma,Z,ya){a(Z.opacity);c(Z.blending);da=K.positionScreen.x;f=K.positionScreen.y;ja=ca.positionScreen.x;na=ca.positionScreen.y;aa=U.positionScreen.x;Y=U.positionScreen.y;var Xa=da,Sa=f,Ta=ja,fb=na,$a=aa,bb=Y;m.beginPath();m.moveTo(Xa,Sa);m.lineTo(Ta,fb);m.lineTo($a,bb);m.lineTo(Xa,Sa);m.closePath(); -if(Z instanceof THREE.MeshBasicMaterial)if(Z.map){if(Z.map.mapping instanceof THREE.UVMapping){Ma=ma.uvs[0];Za(da,f,ja,na,aa,Y,Z.map.image,Ma[T].u,Ma[T].v,Ma[Fa].u,Ma[Fa].v,Ma[sa].u,Ma[sa].v)}}else if(Z.envMap){if(Z.envMap.mapping instanceof THREE.SphericalReflectionMapping){K=Aa.matrixWorldInverse;W.copy(ma.vertexNormalsWorld[0]);ab=(W.x*K.n11+W.y*K.n12+W.z*K.n13)*0.5+0.5;n=-(W.x*K.n21+W.y*K.n22+W.z*K.n23)*0.5+0.5;W.copy(ma.vertexNormalsWorld[1]);C=(W.x*K.n11+W.y*K.n12+W.z*K.n13)*0.5+0.5;p=-(W.x* -K.n21+W.y*K.n22+W.z*K.n23)*0.5+0.5;W.copy(ma.vertexNormalsWorld[2]);o=(W.x*K.n11+W.y*K.n12+W.z*K.n13)*0.5+0.5;w=-(W.x*K.n21+W.y*K.n22+W.z*K.n23)*0.5+0.5;Za(da,f,ja,na,aa,Y,Z.envMap.image,ab,n,C,p,o,w)}}else Z.wireframe?cb(Z.color.__styleString,Z.wireframeLinewidth):Oa(Z.color.__styleString);else if(Z instanceof THREE.MeshLambertMaterial){if(Z.map&&!Z.wireframe){if(Z.map.mapping instanceof THREE.UVMapping){Ma=ma.uvs[0];Za(da,f,ja,na,aa,Y,Z.map.image,Ma[T].u,Ma[T].v,Ma[Fa].u,Ma[Fa].v,Ma[sa].u,Ma[sa].v)}c(THREE.SubtractiveBlending)}if(V)if(!Z.wireframe&& -Z.shading==THREE.SmoothShading&&ma.vertexNormalsWorld.length==3){R.r=O.r=ha.r=J.r;R.g=O.g=ha.g=J.g;R.b=O.b=ha.b=J.b;X(ya,ma.v1.positionWorld,ma.vertexNormalsWorld[0],R);X(ya,ma.v2.positionWorld,ma.vertexNormalsWorld[1],O);X(ya,ma.v3.positionWorld,ma.vertexNormalsWorld[2],ha);va.r=(O.r+ha.r)*0.5;va.g=(O.g+ha.g)*0.5;va.b=(O.b+ha.b)*0.5;xa=Ua(R,O,ha,va);Za(da,f,ja,na,aa,Y,xa,0,0,1,0,0,1)}else{M.r=J.r;M.g=J.g;M.b=J.b;X(ya,ma.centroidWorld,ma.normalWorld,M);$.r=Z.color.r*M.r;$.g=Z.color.g*M.g;$.b=Z.color.b* -M.b;$.updateStyleString();Z.wireframe?cb($.__styleString,Z.wireframeLinewidth):Oa($.__styleString)}else Z.wireframe?cb(Z.color.__styleString,Z.wireframeLinewidth):Oa(Z.color.__styleString)}else if(Z instanceof THREE.MeshDepthMaterial){ka=Aa.near;ta=Aa.far;R.r=R.g=R.b=1-Ja(K.positionScreen.z,ka,ta);O.r=O.g=O.b=1-Ja(ca.positionScreen.z,ka,ta);ha.r=ha.g=ha.b=1-Ja(U.positionScreen.z,ka,ta);va.r=(O.r+ha.r)*0.5;va.g=(O.g+ha.g)*0.5;va.b=(O.b+ha.b)*0.5;xa=Ua(R,O,ha,va);Za(da,f,ja,na,aa,Y,xa,0,0,1,0,0,1)}else if(Z instanceof -THREE.MeshNormalMaterial){$.r=Qa(ma.normalWorld.x);$.g=Qa(ma.normalWorld.y);$.b=Qa(ma.normalWorld.z);$.updateStyleString();Z.wireframe?cb($.__styleString,Z.wireframeLinewidth):Oa($.__styleString)}}function Ra(K,ca,U,T,Fa,sa,ma,Z,ya){a(Z.opacity);c(Z.blending);if(Z.map||Z.envMap){Ia(K,ca,T,0,1,3,ma,Z,ya);Ia(Fa,U,sa,1,2,3,ma,Z,ya)}else{da=K.positionScreen.x;f=K.positionScreen.y;ja=ca.positionScreen.x;na=ca.positionScreen.y;aa=U.positionScreen.x;Y=U.positionScreen.y;Da=T.positionScreen.x;ea=T.positionScreen.y; -Ea=Fa.positionScreen.x;ia=Fa.positionScreen.y;ra=sa.positionScreen.x;oa=sa.positionScreen.y;Fa=da;sa=f;var Xa=ja,Sa=na,Ta=aa,fb=Y;m.beginPath();m.moveTo(Fa,sa);m.lineTo(Xa,Sa);m.lineTo(Ta,fb);m.lineTo(Da,ea);m.lineTo(Fa,sa);m.closePath();if(Z instanceof THREE.MeshBasicMaterial)Z.wireframe?cb(Z.color.__styleString,Z.wireframeLinewidth):Oa(Z.color.__styleString);else if(Z instanceof THREE.MeshLambertMaterial)if(V){M.r=J.r;M.g=J.g;M.b=J.b;X(ya,ma.centroidWorld,ma.normalWorld,M);$.r=Z.color.r*M.r;$.g= -Z.color.g*M.g;$.b=Z.color.b*M.b;$.updateStyleString();Z.wireframe?cb($.__styleString,Z.wireframeLinewidth):Oa($.__styleString)}else Z.wireframe?cb(Z.color.__styleString,Z.wireframeLinewidth):Oa(Z.color.__styleString);else if(Z instanceof THREE.MeshDepthMaterial){_2near=Z.__2near;_farPlusNear=Z.__farPlusNear;_farMinusNear=Z.__farMinusNear;R=~~((1-_2near/(_farPlusNear-K.positionScreen.z*_farMinusNear))*255);O=~~((1-_2near/(_farPlusNear-ca.positionScreen.z*_farMinusNear))*255);ha=~~((1-_2near/(_farPlusNear- -U.positionScreen.z*_farMinusNear))*255);va=~~((1-_2near/(_farPlusNear-T.positionScreen.z*_farMinusNear))*255);xa=Ua([R,R,R],[O,O,O],[va,va,va],[ha,ha,ha]);_uv1.u=0;_uv1.v=0;_uv2.u=P;_uv2.v=0;_uv3.u=P;_uv3.v=P;_uv4.u=0;_uv4.v=P;drawTexturedTriangle(xa,da,f,ja,na,Da,ea,_uv1.u,_uv1.v,_uv2.u,_uv2.v,_uv4.u,_uv4.v);drawTexturedTriangle(xa,Ea,ia,aa,Y,ra,oa,_uv2.u,_uv2.v,_uv3.u,_uv3.v,_uv4.u,_uv4.v)}else if(Z instanceof THREE.MeshNormalMaterial){$.r=Qa(ma.normalWorld.x);$.g=Qa(ma.normalWorld.y);$.b=Qa(ma.normalWorld.z); -$.updateStyleString();Z.wireframe?cb($.__styleString,Z.wireframeLinewidth):Oa($.__styleString)}}}function cb(K,ca){if(A!=K)m.strokeStyle=A=K;if(I!=ca)m.lineWidth=I=ca;m.stroke();F.inflate(ca*2)}function Oa(K){if(G!=K)m.fillStyle=G=K;m.fill()}function Za(K,ca,U,T,Fa,sa,ma,Z,ya,Xa,Sa,Ta,fb){var $a,bb;$a=ma.width-1;bb=ma.height-1;Z*=$a;ya*=bb;Xa*=$a;Sa*=bb;Ta*=$a;fb*=bb;U-=K;T-=ca;Fa-=K;sa-=ca;Xa-=Z;Sa-=ya;Ta-=Z;fb-=ya;$a=Xa*fb-Ta*Sa;if($a!=0){bb=1/$a;$a=(fb*U-Sa*Fa)*bb;Sa=(fb*T-Sa*sa)*bb;U=(Xa*Fa-Ta* -U)*bb;T=(Xa*sa-Ta*T)*bb;K=K-$a*Z-U*ya;ca=ca-Sa*Z-T*ya;m.save();m.transform($a,Sa,U,T,K,ca);m.clip();m.drawImage(ma,0,0);m.restore()}}function Ua(K,ca,U,T){var Fa=~~(K.r*255),sa=~~(K.g*255);K=~~(K.b*255);var ma=~~(ca.r*255),Z=~~(ca.g*255);ca=~~(ca.b*255);var ya=~~(U.r*255),Xa=~~(U.g*255);U=~~(U.b*255);var Sa=~~(T.r*255),Ta=~~(T.g*255);T=~~(T.b*255);Na[0]=Fa<0?0:Fa>255?255:Fa;Na[1]=sa<0?0:sa>255?255:sa;Na[2]=K<0?0:K>255?255:K;Na[4]=ma<0?0:ma>255?255:ma;Na[5]=Z<0?0:Z>255?255:Z;Na[6]=ca<0?0:ca>255?255: -ca;Na[8]=ya<0?0:ya>255?255:ya;Na[9]=Xa<0?0:Xa>255?255:Xa;Na[10]=U<0?0:U>255?255:U;Na[12]=Sa<0?0:Sa>255?255:Sa;Na[13]=Ta<0?0:Ta>255?255:Ta;Na[14]=T<0?0:T>255?255:T;la.putImageData(Ga,0,0);Ha.drawImage(wa,0,0);return ua}function Ja(K,ca,U){K=(K-ca)/(U-ca);return K*K*(3-2*K)}function Qa(K){K=(K+1)*0.5;return K<0?0:K>1?1:K}function La(K,ca){var U=ca.x-K.x,T=ca.y-K.y,Fa=1/Math.sqrt(U*U+T*T);U*=Fa;T*=Fa;ca.x+=U;ca.y+=T;K.x-=U;K.y-=T}var L,Pa,pa,Ya,db,Va,Ka,Ba;this.autoClear?this.clear():m.setTransform(1, -0,0,-1,k,j);b=d.projectScene(za,Aa,this.sortElements);(V=za.lights.length>0)&&Wa(za);L=0;for(Pa=b.length;L0){oa.r+=O.color.r*ha;oa.g+=O.color.g*ha;oa.b+=O.color.b*ha}}else if(O instanceof THREE.PointLight){ja.sub(O.position,ra.centroidWorld);ja.normalize();ha=ra.normalWorld.dot(ja)*O.intensity;if(ha>0){oa.r+=O.color.r*ha;oa.g+=O.color.g*ha;oa.b+=O.color.b*ha}}}}function c(ia,ra,oa,$,R,O){Y=d(Da++); -Y.setAttribute("d","M "+ia.positionScreen.x+" "+ia.positionScreen.y+" L "+ra.positionScreen.x+" "+ra.positionScreen.y+" L "+oa.positionScreen.x+","+oa.positionScreen.y+"z");if(R instanceof THREE.MeshBasicMaterial)z.__styleString=R.color.__styleString;else if(R instanceof THREE.MeshLambertMaterial)if(H){S.r=Q.r;S.g=Q.g;S.b=Q.b;a(O,$,S);z.r=R.color.r*S.r;z.g=R.color.g*S.g;z.b=R.color.b*S.b;z.updateStyleString()}else z.__styleString=R.color.__styleString;else if(R instanceof THREE.MeshDepthMaterial){f= -1-R.__2near/(R.__farPlusNear-$.z*R.__farMinusNear);z.setRGB(f,f,f)}else R instanceof THREE.MeshNormalMaterial&&z.setRGB(e($.normalWorld.x),e($.normalWorld.y),e($.normalWorld.z));R.wireframe?Y.setAttribute("style","fill: none; stroke: "+z.__styleString+"; stroke-width: "+R.wireframeLinewidth+"; stroke-opacity: "+R.opacity+"; stroke-linecap: "+R.wireframeLinecap+"; stroke-linejoin: "+R.wireframeLinejoin):Y.setAttribute("style","fill: "+z.__styleString+"; fill-opacity: "+R.opacity);k.appendChild(Y)} -function b(ia,ra,oa,$,R,O,ha){Y=d(Da++);Y.setAttribute("d","M "+ia.positionScreen.x+" "+ia.positionScreen.y+" L "+ra.positionScreen.x+" "+ra.positionScreen.y+" L "+oa.positionScreen.x+","+oa.positionScreen.y+" L "+$.positionScreen.x+","+$.positionScreen.y+"z");if(O instanceof THREE.MeshBasicMaterial)z.__styleString=O.color.__styleString;else if(O instanceof THREE.MeshLambertMaterial)if(H){S.r=Q.r;S.g=Q.g;S.b=Q.b;a(ha,R,S);z.r=O.color.r*S.r;z.g=O.color.g*S.g;z.b=O.color.b*S.b;z.updateStyleString()}else z.__styleString= -O.color.__styleString;else if(O instanceof THREE.MeshDepthMaterial){f=1-O.__2near/(O.__farPlusNear-R.z*O.__farMinusNear);z.setRGB(f,f,f)}else O instanceof THREE.MeshNormalMaterial&&z.setRGB(e(R.normalWorld.x),e(R.normalWorld.y),e(R.normalWorld.z));O.wireframe?Y.setAttribute("style","fill: none; stroke: "+z.__styleString+"; stroke-width: "+O.wireframeLinewidth+"; stroke-opacity: "+O.opacity+"; stroke-linecap: "+O.wireframeLinecap+"; stroke-linejoin: "+O.wireframeLinejoin):Y.setAttribute("style","fill: "+ -z.__styleString+"; fill-opacity: "+O.opacity);k.appendChild(Y)}function d(ia){if(na[ia]==null){na[ia]=document.createElementNS("http://www.w3.org/2000/svg","path");Ea==0&&na[ia].setAttribute("shape-rendering","crispEdges")}return na[ia]}function e(ia){return ia<0?Math.min((1+ia)*0.5,0.5):0.5+Math.min(ia*0.5,0.5)}var h=null,g=new THREE.Projector,k=document.createElementNS("http://www.w3.org/2000/svg","svg"),j,m,t,x,y,q,A,G,I=new THREE.Rectangle,E=new THREE.Rectangle,H=!1,z=new THREE.Color(16777215), -S=new THREE.Color(16777215),Q=new THREE.Color(0),N=new THREE.Color(0),da=new THREE.Color(0),f,ja=new THREE.Vector3,na=[],aa=[],Y,Da,ea,Ea=1;this.domElement=k;this.autoClear=!0;this.sortObjects=!0;this.sortElements=!0;this.setQuality=function(ia){switch(ia){case "high":Ea=1;break;case "low":Ea=0}};this.setSize=function(ia,ra){j=ia;m=ra;t=j/2;x=m/2;k.setAttribute("viewBox",-t+" "+-x+" "+j+" "+m);k.setAttribute("width",j);k.setAttribute("height",m);I.set(-t,-x,t,x)};this.clear=function(){for(;k.childNodes.length> -0;)k.removeChild(k.childNodes[0])};this.render=function(ia,ra){var oa,$,R,O,ha,va,ka,ta;this.autoClear&&this.clear();h=g.projectScene(ia,ra,this.sortElements);ea=Da=0;if(H=ia.lights.length>0){ka=ia.lights;Q.setRGB(0,0,0);N.setRGB(0,0,0);da.setRGB(0,0,0);oa=0;for($=ka.length;oa<$;oa++){R=ka[oa];O=R.color;if(R instanceof THREE.AmbientLight){Q.r+=O.r;Q.g+=O.g;Q.b+=O.b}else if(R instanceof THREE.DirectionalLight){N.r+=O.r;N.g+=O.g;N.b+=O.b}else if(R instanceof THREE.PointLight){da.r+=O.r;da.g+=O.g;da.b+= -O.b}}}oa=0;for($=h.length;oa<$;oa++){ka=h[oa];E.empty();if(ka instanceof THREE.RenderableParticle){y=ka;y.x*=t;y.y*=-x;R=0;for(O=ka.materials.length;R=0&&ja>=0&&qa>=0&&ma>=0)return!0;else if(Fa<0&&ja<0||qa<0&&ma<0)return!1;else{if(Fa<0)Da=Math.max(Da,Fa/(Fa-ja));else ja<0&&(da=Math.min(da,Fa/(Fa-ja)));if(qa<0)Da=Math.max(Da,qa/(qa-ma));else ma<0&&(da=Math.min(da,qa/(qa-ma)));if(daFa&&h.positionScreen.z0&&P.z<1){La=z[I]=z[I]||new THREE.RenderableParticle;I++;E=La;E.x=P.x/P.w;E.y=P.y/P.w;E.z=P.z;E.rotation=za.rotation.z;E.scale.x=za.scale.x*Math.abs(E.x-(P.x+W.projectionMatrix.n11)/(P.w+W.projectionMatrix.n14));E.scale.y=za.scale.y*Math.abs(E.y-(P.y+W.projectionMatrix.n22)/(P.w+W.projectionMatrix.n24));E.materials=za.materials;da.push(E)}}}}Da&&da.sort(c);return da}}; +THREE.DOMRenderer=function(){THREE.Renderer.call(this);var a=null,c=new THREE.Projector,b,d,e,g;this.domElement=document.createElement("div");this.setSize=function(h,k){b=h;d=k;e=b/2;g=d/2};this.render=function(h,k){var j,m,t,x,y,q,A,G;a=c.projectScene(h,k);j=0;for(m=a.length;j0){T.r+=ra.r*Aa;T.g+=ra.g*Aa;T.b+=ra.b*Aa}}else if(Aa instanceof THREE.PointLight){Y.sub(Aa.position,ca);Y.normalize();Aa=V.dot(Y)*R;if(Aa>0){T.r+=ra.r*Aa; +T.g+=ra.g*Aa;T.b+=ra.b*Aa}}}}function fa(K,ca,V){a(V.opacity);c(V.blending);var T,ia,Aa,ra,R,Qa;if(V instanceof THREE.ParticleBasicMaterial){if(V.map){ra=V.map.image;R=ra.width>>1;Qa=ra.height>>1;V=ca.scale.x*k;Aa=ca.scale.y*j;T=V*R;ia=Aa*Qa;F.set(K.x-T,K.y-ia,K.x+T,K.y+ia);if(D.instersects(F)){m.save();m.translate(K.x,K.y);m.rotate(-ca.rotation);m.scale(V,-Aa);m.translate(-R,-Qa);m.drawImage(ra,0,0);m.restore()}}}else if(V instanceof THREE.ParticleCanvasMaterial){if(X){N.r=J.r+sa.r+Ea.r;N.g=J.g+ +sa.g+Ea.g;N.b=J.b+sa.b+Ea.b;Z.r=V.color.r*N.r;Z.g=V.color.g*N.g;Z.b=V.color.b*N.b;Z.updateStyleString()}else Z.__styleString=V.color.__styleString;T=ca.scale.x*k;ia=ca.scale.y*j;F.set(K.x-T,K.y-ia,K.x+T,K.y+ia);if(D.instersects(F)){m.save();m.translate(K.x,K.y);m.rotate(-ca.rotation);m.scale(T,ia);V.program(m,Z);m.restore()}}}function ga(K,ca,V,T){a(T.opacity);c(T.blending);m.beginPath();m.moveTo(K.positionScreen.x,K.positionScreen.y);m.lineTo(ca.positionScreen.x,ca.positionScreen.y);m.closePath(); +if(T instanceof THREE.LineBasicMaterial){Z.__styleString=T.color.__styleString;K=T.linewidth;if(H!=K)m.lineWidth=H=K;K=Z.__styleString;if(A!=K)m.strokeStyle=A=K;m.stroke();F.inflate(T.linewidth*2)}}function na(K,ca,V,T,ia,Aa,ra,R,Qa){a(R.opacity);c(R.blending);aa=K.positionScreen.x;f=K.positionScreen.y;ha=ca.positionScreen.x;oa=ca.positionScreen.y;$=V.positionScreen.x;W=V.positionScreen.y;var Ka=aa,Ta=f,Xa=ha,Ya=oa,Za=$,ab=W;m.beginPath();m.moveTo(Ka,Ta);m.lineTo(Xa,Ya);m.lineTo(Za,ab);m.lineTo(Ka, +Ta);m.closePath();if(R instanceof THREE.MeshBasicMaterial)if(R.map){if(R.map.mapping instanceof THREE.UVMapping){La=ra.uvs[0];Na(aa,f,ha,oa,$,W,R.map.image,La[T].u,La[T].v,La[ia].u,La[ia].v,La[Aa].u,La[Aa].v)}}else if(R.envMap){if(R.envMap.mapping instanceof THREE.SphericalReflectionMapping){K=Ca.matrixWorldInverse;Y.copy(ra.vertexNormalsWorld[0]);$a=(Y.x*K.n11+Y.y*K.n12+Y.z*K.n13)*0.5+0.5;n=-(Y.x*K.n21+Y.y*K.n22+Y.z*K.n23)*0.5+0.5;Y.copy(ra.vertexNormalsWorld[1]);C=(Y.x*K.n11+Y.y*K.n12+Y.z*K.n13)* +0.5+0.5;p=-(Y.x*K.n21+Y.y*K.n22+Y.z*K.n23)*0.5+0.5;Y.copy(ra.vertexNormalsWorld[2]);o=(Y.x*K.n11+Y.y*K.n12+Y.z*K.n13)*0.5+0.5;w=-(Y.x*K.n21+Y.y*K.n22+Y.z*K.n23)*0.5+0.5;Na(aa,f,ha,oa,$,W,R.envMap.image,$a,n,C,p,o,w)}}else R.wireframe?Oa(R.color.__styleString,R.wireframeLinewidth):bb(R.color.__styleString);else if(R instanceof THREE.MeshLambertMaterial){if(R.map&&!R.wireframe){if(R.map.mapping instanceof THREE.UVMapping){La=ra.uvs[0];Na(aa,f,ha,oa,$,W,R.map.image,La[T].u,La[T].v,La[ia].u,La[ia].v, +La[Aa].u,La[Aa].v)}c(THREE.SubtractiveBlending)}if(X)if(!R.wireframe&&R.shading==THREE.SmoothShading&&ra.vertexNormalsWorld.length==3){Q.r=M.r=ea.r=J.r;Q.g=M.g=ea.g=J.g;Q.b=M.b=ea.b=J.b;ta(Qa,ra.v1.positionWorld,ra.vertexNormalsWorld[0],Q);ta(Qa,ra.v2.positionWorld,ra.vertexNormalsWorld[1],M);ta(Qa,ra.v3.positionWorld,ra.vertexNormalsWorld[2],ea);ua.r=(M.r+ea.r)*0.5;ua.g=(M.g+ea.g)*0.5;ua.b=(M.b+ea.b)*0.5;za=cb(Q,M,ea,ua);Na(aa,f,ha,oa,$,W,za,0,0,1,0,0,1)}else{N.r=J.r;N.g=J.g;N.b=J.b;ta(Qa,ra.centroidWorld, +ra.normalWorld,N);Z.r=R.color.r*N.r;Z.g=R.color.g*N.g;Z.b=R.color.b*N.b;Z.updateStyleString();R.wireframe?Oa(Z.__styleString,R.wireframeLinewidth):bb(Z.__styleString)}else R.wireframe?Oa(R.color.__styleString,R.wireframeLinewidth):bb(R.color.__styleString)}else if(R instanceof THREE.MeshDepthMaterial){ka=Ca.near;va=Ca.far;Q.r=Q.g=Q.b=1-Ua(K.positionScreen.z,ka,va);M.r=M.g=M.b=1-Ua(ca.positionScreen.z,ka,va);ea.r=ea.g=ea.b=1-Ua(V.positionScreen.z,ka,va);ua.r=(M.r+ea.r)*0.5;ua.g=(M.g+ea.g)*0.5;ua.b= +(M.b+ea.b)*0.5;za=cb(Q,M,ea,ua);Na(aa,f,ha,oa,$,W,za,0,0,1,0,0,1)}else if(R instanceof THREE.MeshNormalMaterial){Z.r=Ga(ra.normalWorld.x);Z.g=Ga(ra.normalWorld.y);Z.b=Ga(ra.normalWorld.z);Z.updateStyleString();R.wireframe?Oa(Z.__styleString,R.wireframeLinewidth):bb(Z.__styleString)}}function Ra(K,ca,V,T,ia,Aa,ra,R,Qa){a(R.opacity);c(R.blending);if(R.map||R.envMap){na(K,ca,T,0,1,3,ra,R,Qa);na(ia,V,Aa,1,2,3,ra,R,Qa)}else{aa=K.positionScreen.x;f=K.positionScreen.y;ha=ca.positionScreen.x;oa=ca.positionScreen.y; +$=V.positionScreen.x;W=V.positionScreen.y;Da=T.positionScreen.x;da=T.positionScreen.y;Fa=ia.positionScreen.x;ja=ia.positionScreen.y;qa=Aa.positionScreen.x;ma=Aa.positionScreen.y;ia=aa;Aa=f;var Ka=ha,Ta=oa,Xa=$,Ya=W;m.beginPath();m.moveTo(ia,Aa);m.lineTo(Ka,Ta);m.lineTo(Xa,Ya);m.lineTo(Da,da);m.lineTo(ia,Aa);m.closePath();if(R instanceof THREE.MeshBasicMaterial)R.wireframe?Oa(R.color.__styleString,R.wireframeLinewidth):bb(R.color.__styleString);else if(R instanceof THREE.MeshLambertMaterial)if(X){N.r= +J.r;N.g=J.g;N.b=J.b;ta(Qa,ra.centroidWorld,ra.normalWorld,N);Z.r=R.color.r*N.r;Z.g=R.color.g*N.g;Z.b=R.color.b*N.b;Z.updateStyleString();R.wireframe?Oa(Z.__styleString,R.wireframeLinewidth):bb(Z.__styleString)}else R.wireframe?Oa(R.color.__styleString,R.wireframeLinewidth):bb(R.color.__styleString);else if(R instanceof THREE.MeshDepthMaterial){_2near=R.__2near;_farPlusNear=R.__farPlusNear;_farMinusNear=R.__farMinusNear;Q=~~((1-_2near/(_farPlusNear-K.positionScreen.z*_farMinusNear))*255);M=~~((1-_2near/ +(_farPlusNear-ca.positionScreen.z*_farMinusNear))*255);ea=~~((1-_2near/(_farPlusNear-V.positionScreen.z*_farMinusNear))*255);ua=~~((1-_2near/(_farPlusNear-T.positionScreen.z*_farMinusNear))*255);za=cb([Q,Q,Q],[M,M,M],[ua,ua,ua],[ea,ea,ea]);_uv1.u=0;_uv1.v=0;_uv2.u=U;_uv2.v=0;_uv3.u=U;_uv3.v=U;_uv4.u=0;_uv4.v=U;drawTexturedTriangle(za,aa,f,ha,oa,Da,da,_uv1.u,_uv1.v,_uv2.u,_uv2.v,_uv4.u,_uv4.v);drawTexturedTriangle(za,Fa,ja,$,W,qa,ma,_uv2.u,_uv2.v,_uv3.u,_uv3.v,_uv4.u,_uv4.v)}else if(R instanceof THREE.MeshNormalMaterial){Z.r= +Ga(ra.normalWorld.x);Z.g=Ga(ra.normalWorld.y);Z.b=Ga(ra.normalWorld.z);Z.updateStyleString();R.wireframe?Oa(Z.__styleString,R.wireframeLinewidth):bb(Z.__styleString)}}}function Oa(K,ca){if(A!=K)m.strokeStyle=A=K;if(H!=ca)m.lineWidth=H=ca;m.stroke();F.inflate(ca*2)}function bb(K){if(G!=K)m.fillStyle=G=K;m.fill()}function Na(K,ca,V,T,ia,Aa,ra,R,Qa,Ka,Ta,Xa,Ya){var Za,ab;Za=ra.width-1;ab=ra.height-1;R*=Za;Qa*=ab;Ka*=Za;Ta*=ab;Xa*=Za;Ya*=ab;V-=K;T-=ca;ia-=K;Aa-=ca;Ka-=R;Ta-=Qa;Xa-=R;Ya-=Qa;Za=Ka*Ya-Xa* +Ta;if(Za!=0){ab=1/Za;Za=(Ya*V-Ta*ia)*ab;Ta=(Ya*T-Ta*Aa)*ab;V=(Ka*ia-Xa*V)*ab;T=(Ka*Aa-Xa*T)*ab;K=K-Za*R-V*Qa;ca=ca-Ta*R-T*Qa;m.save();m.transform(Za,Ta,V,T,K,ca);m.clip();m.drawImage(ra,0,0);m.restore()}}function cb(K,ca,V,T){var ia=~~(K.r*255),Aa=~~(K.g*255);K=~~(K.b*255);var ra=~~(ca.r*255),R=~~(ca.g*255);ca=~~(ca.b*255);var Qa=~~(V.r*255),Ka=~~(V.g*255);V=~~(V.b*255);var Ta=~~(T.r*255),Xa=~~(T.g*255);T=~~(T.b*255);Ma[0]=ia<0?0:ia>255?255:ia;Ma[1]=Aa<0?0:Aa>255?255:Aa;Ma[2]=K<0?0:K>255?255:K;Ma[4]= +ra<0?0:ra>255?255:ra;Ma[5]=R<0?0:R>255?255:R;Ma[6]=ca<0?0:ca>255?255:ca;Ma[8]=Qa<0?0:Qa>255?255:Qa;Ma[9]=Ka<0?0:Ka>255?255:Ka;Ma[10]=V<0?0:V>255?255:V;Ma[12]=Ta<0?0:Ta>255?255:Ta;Ma[13]=Xa<0?0:Xa>255?255:Xa;Ma[14]=T<0?0:T>255?255:T;la.putImageData(Ha,0,0);Ia.drawImage(ya,0,0);return xa}function Ua(K,ca,V){K=(K-ca)/(V-ca);return K*K*(3-2*K)}function Ga(K){K=(K+1)*0.5;return K<0?0:K>1?1:K}function Sa(K,ca){var V=ca.x-K.x,T=ca.y-K.y,ia=1/Math.sqrt(V*V+T*T);V*=ia;T*=ia;ca.x+=V;ca.y+=T;K.x-=V;K.y-=T}var Pa, +L,pa,Ja,db,eb,Wa,wa;this.autoClear?this.clear():m.setTransform(1,0,0,-1,k,j);b=d.projectScene(Ba,Ca,this.sortElements);(X=Ba.lights.length>0)&&Va(Ba);Pa=0;for(L=b.length;Pa0){ma.r+=M.color.r*ea;ma.g+=M.color.g*ea;ma.b+=M.color.b*ea}}else if(M instanceof THREE.PointLight){ha.sub(M.position,qa.centroidWorld);ha.normalize();ea=qa.normalWorld.dot(ha)*M.intensity;if(ea>0){ma.r+=M.color.r*ea;ma.g+=M.color.g*ea;ma.b+=M.color.b*ea}}}}function c(ja,qa,ma,Z,Q,M){W=d(Da++);W.setAttribute("d", +"M "+ja.positionScreen.x+" "+ja.positionScreen.y+" L "+qa.positionScreen.x+" "+qa.positionScreen.y+" L "+ma.positionScreen.x+","+ma.positionScreen.y+"z");if(Q instanceof THREE.MeshBasicMaterial)z.__styleString=Q.color.__styleString;else if(Q instanceof THREE.MeshLambertMaterial)if(I){S.r=P.r;S.g=P.g;S.b=P.b;a(M,Z,S);z.r=Q.color.r*S.r;z.g=Q.color.g*S.g;z.b=Q.color.b*S.b;z.updateStyleString()}else z.__styleString=Q.color.__styleString;else if(Q instanceof THREE.MeshDepthMaterial){f=1-Q.__2near/(Q.__farPlusNear- +Z.z*Q.__farMinusNear);z.setRGB(f,f,f)}else Q instanceof THREE.MeshNormalMaterial&&z.setRGB(e(Z.normalWorld.x),e(Z.normalWorld.y),e(Z.normalWorld.z));Q.wireframe?W.setAttribute("style","fill: none; stroke: "+z.__styleString+"; stroke-width: "+Q.wireframeLinewidth+"; stroke-opacity: "+Q.opacity+"; stroke-linecap: "+Q.wireframeLinecap+"; stroke-linejoin: "+Q.wireframeLinejoin):W.setAttribute("style","fill: "+z.__styleString+"; fill-opacity: "+Q.opacity);k.appendChild(W)}function b(ja,qa,ma,Z,Q,M,ea){W= +d(Da++);W.setAttribute("d","M "+ja.positionScreen.x+" "+ja.positionScreen.y+" L "+qa.positionScreen.x+" "+qa.positionScreen.y+" L "+ma.positionScreen.x+","+ma.positionScreen.y+" L "+Z.positionScreen.x+","+Z.positionScreen.y+"z");if(M instanceof THREE.MeshBasicMaterial)z.__styleString=M.color.__styleString;else if(M instanceof THREE.MeshLambertMaterial)if(I){S.r=P.r;S.g=P.g;S.b=P.b;a(ea,Q,S);z.r=M.color.r*S.r;z.g=M.color.g*S.g;z.b=M.color.b*S.b;z.updateStyleString()}else z.__styleString=M.color.__styleString; +else if(M instanceof THREE.MeshDepthMaterial){f=1-M.__2near/(M.__farPlusNear-Q.z*M.__farMinusNear);z.setRGB(f,f,f)}else M instanceof THREE.MeshNormalMaterial&&z.setRGB(e(Q.normalWorld.x),e(Q.normalWorld.y),e(Q.normalWorld.z));M.wireframe?W.setAttribute("style","fill: none; stroke: "+z.__styleString+"; stroke-width: "+M.wireframeLinewidth+"; stroke-opacity: "+M.opacity+"; stroke-linecap: "+M.wireframeLinecap+"; stroke-linejoin: "+M.wireframeLinejoin):W.setAttribute("style","fill: "+z.__styleString+ +"; fill-opacity: "+M.opacity);k.appendChild(W)}function d(ja){if(oa[ja]==null){oa[ja]=document.createElementNS("http://www.w3.org/2000/svg","path");Fa==0&&oa[ja].setAttribute("shape-rendering","crispEdges")}return oa[ja]}function e(ja){return ja<0?Math.min((1+ja)*0.5,0.5):0.5+Math.min(ja*0.5,0.5)}var g=null,h=new THREE.Projector,k=document.createElementNS("http://www.w3.org/2000/svg","svg"),j,m,t,x,y,q,A,G,H=new THREE.Rectangle,E=new THREE.Rectangle,I=!1,z=new THREE.Color(16777215),S=new THREE.Color(16777215), +P=new THREE.Color(0),O=new THREE.Color(0),aa=new THREE.Color(0),f,ha=new THREE.Vector3,oa=[],$=[],W,Da,da,Fa=1;this.domElement=k;this.autoClear=!0;this.sortObjects=!0;this.sortElements=!0;this.setQuality=function(ja){switch(ja){case "high":Fa=1;break;case "low":Fa=0}};this.setSize=function(ja,qa){j=ja;m=qa;t=j/2;x=m/2;k.setAttribute("viewBox",-t+" "+-x+" "+j+" "+m);k.setAttribute("width",j);k.setAttribute("height",m);H.set(-t,-x,t,x)};this.clear=function(){for(;k.childNodes.length>0;)k.removeChild(k.childNodes[0])}; +this.render=function(ja,qa){var ma,Z,Q,M,ea,ua,ka,va;this.autoClear&&this.clear();g=h.projectScene(ja,qa,this.sortElements);da=Da=0;if(I=ja.lights.length>0){ka=ja.lights;P.setRGB(0,0,0);O.setRGB(0,0,0);aa.setRGB(0,0,0);ma=0;for(Z=ka.length;maV){M=J;V=F[M]}f.bindBuffer(f.ARRAY_BUFFER,w.__webGLMorphTargetsBuffers[M]);f.vertexAttribPointer(C["morphTarget"+p],3,f.FLOAT,!1,0,0);D.__webGLMorphTargetInfluences[p]=V;B[M]= -1;V=-1;p++}}f.uniform1fv(o.program.uniforms.morphTargetInfluences,D.__webGLMorphTargetInfluences)}else{f.bindBuffer(f.ARRAY_BUFFER,w.__webGLVertexBuffer);f.vertexAttribPointer(n.position,3,f.FLOAT,!1,0,0)}if(n.color>=0){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLColorBuffer);f.vertexAttribPointer(n.color,3,f.FLOAT,!1,0,0)}if(n.normal>=0){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLNormalBuffer);f.vertexAttribPointer(n.normal,3,f.FLOAT,!1,0,0)}if(n.tangent>=0){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLTangentBuffer); +w.__webGLMorphTargetsBuffers[B[p]]);f.vertexAttribPointer(C["morphTarget"+p],3,f.FLOAT,!1,0,0);D.__webGLMorphTargetInfluences[p]=F[B[p]];p++}}else{B=[];var X=-1,N=0;F=D.morphTargetInfluences;var J,sa=F.length;p=0;for(D.morphTargetBase!==-1&&(B[D.morphTargetBase]=!0);pX){N=J;X=F[N]}f.bindBuffer(f.ARRAY_BUFFER,w.__webGLMorphTargetsBuffers[N]);f.vertexAttribPointer(C["morphTarget"+p],3,f.FLOAT,!1,0,0);D.__webGLMorphTargetInfluences[p]=X;B[N]= +1;X=-1;p++}}f.uniform1fv(o.program.uniforms.morphTargetInfluences,D.__webGLMorphTargetInfluences)}else{f.bindBuffer(f.ARRAY_BUFFER,w.__webGLVertexBuffer);f.vertexAttribPointer(n.position,3,f.FLOAT,!1,0,0)}if(n.color>=0){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLColorBuffer);f.vertexAttribPointer(n.color,3,f.FLOAT,!1,0,0)}if(n.normal>=0){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLNormalBuffer);f.vertexAttribPointer(n.normal,3,f.FLOAT,!1,0,0)}if(n.tangent>=0){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLTangentBuffer); f.vertexAttribPointer(n.tangent,4,f.FLOAT,!1,0,0)}if(n.uv>=0)if(w.__webGLUVBuffer){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLUVBuffer);f.vertexAttribPointer(n.uv,2,f.FLOAT,!1,0,0);f.enableVertexAttribArray(n.uv)}else f.disableVertexAttribArray(n.uv);if(n.uv2>=0)if(w.__webGLUV2Buffer){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLUV2Buffer);f.vertexAttribPointer(n.uv2,2,f.FLOAT,!1,0,0);f.enableVertexAttribArray(n.uv2)}else f.disableVertexAttribArray(n.uv2);if(o.skinning&&n.skinVertexA>=0&&n.skinVertexB>=0&&n.skinIndex>= 0&&n.skinWeight>=0){f.bindBuffer(f.ARRAY_BUFFER,w.__webGLSkinVertexABuffer);f.vertexAttribPointer(n.skinVertexA,4,f.FLOAT,!1,0,0);f.bindBuffer(f.ARRAY_BUFFER,w.__webGLSkinVertexBBuffer);f.vertexAttribPointer(n.skinVertexB,4,f.FLOAT,!1,0,0);f.bindBuffer(f.ARRAY_BUFFER,w.__webGLSkinIndicesBuffer);f.vertexAttribPointer(n.skinIndex,4,f.FLOAT,!1,0,0);f.bindBuffer(f.ARRAY_BUFFER,w.__webGLSkinWeightsBuffer);f.vertexAttribPointer(n.skinWeight,4,f.FLOAT,!1,0,0)}if(D instanceof THREE.Mesh)if(o.wireframe){f.lineWidth(o.wireframeLinewidth); f.bindBuffer(f.ELEMENT_ARRAY_BUFFER,w.__webGLLineBuffer);f.drawElements(f.LINES,w.__webGLLineCount,f.UNSIGNED_SHORT,0)}else{f.bindBuffer(f.ELEMENT_ARRAY_BUFFER,w.__webGLFaceBuffer);f.drawElements(f.TRIANGLES,w.__webGLFaceCount,f.UNSIGNED_SHORT,0)}else if(D instanceof THREE.Line){D=D.type==THREE.LineStrip?f.LINE_STRIP:f.LINES;f.lineWidth(o.linewidth);f.drawArrays(D,0,w.__webGLLineCount)}else if(D instanceof THREE.ParticleSystem)f.drawArrays(f.POINTS,0,w.__webGLParticleCount);else D instanceof THREE.Ribbon&& -f.drawArrays(f.TRIANGLE_STRIP,0,w.__webGLVertexCount)}}function h(n,C){if(!n.__webGLVertexBuffer)n.__webGLVertexBuffer=f.createBuffer();if(!n.__webGLNormalBuffer)n.__webGLNormalBuffer=f.createBuffer();if(n.hasPos){f.bindBuffer(f.ARRAY_BUFFER,n.__webGLVertexBuffer);f.bufferData(f.ARRAY_BUFFER,n.positionArray,f.DYNAMIC_DRAW);f.enableVertexAttribArray(C.attributes.position);f.vertexAttribPointer(C.attributes.position,3,f.FLOAT,!1,0,0)}if(n.hasNormal){f.bindBuffer(f.ARRAY_BUFFER,n.__webGLNormalBuffer); -f.bufferData(f.ARRAY_BUFFER,n.normalArray,f.DYNAMIC_DRAW);f.enableVertexAttribArray(C.attributes.normal);f.vertexAttribPointer(C.attributes.normal,3,f.FLOAT,!1,0,0)}f.drawArrays(f.TRIANGLES,0,n.count);n.count=0}function g(n){if(Y!=n.doubleSided){n.doubleSided?f.disable(f.CULL_FACE):f.enable(f.CULL_FACE);Y=n.doubleSided}if(Da!=n.flipSided){n.flipSided?f.frontFace(f.CW):f.frontFace(f.CCW);Da=n.flipSided}}function k(n){if(Ea!=n){n?f.enable(f.DEPTH_TEST):f.disable(f.DEPTH_TEST);Ea=n}}function j(n){R[0].set(n.n41- -n.n11,n.n42-n.n12,n.n43-n.n13,n.n44-n.n14);R[1].set(n.n41+n.n11,n.n42+n.n12,n.n43+n.n13,n.n44+n.n14);R[2].set(n.n41+n.n21,n.n42+n.n22,n.n43+n.n23,n.n44+n.n24);R[3].set(n.n41-n.n21,n.n42-n.n22,n.n43-n.n23,n.n44-n.n24);R[4].set(n.n41-n.n31,n.n42-n.n32,n.n43-n.n33,n.n44-n.n34);R[5].set(n.n41+n.n31,n.n42+n.n32,n.n43+n.n33,n.n44+n.n34);var C;for(n=0;n<6;n++){C=R[n];C.divideScalar(Math.sqrt(C.x*C.x+C.y*C.y+C.z*C.z))}}function m(n){for(var C=n.matrixWorld,p=-n.geometry.boundingSphere.radius*Math.max(n.scale.x, -Math.max(n.scale.y,n.scale.z)),o=0;o<6;o++){n=R[o].x*C.n14+R[o].y*C.n24+R[o].z*C.n34+R[o].w;if(n<=p)return!1}return!0}function t(n,C){n.list[n.count]=C;n.count+=1}function x(n){var C,p,o=n.object,w=n.opaque,D=n.transparent;D.count=0;n=w.count=0;for(C=o.materials.length;n65535){J[V].counter+=1;M=J[V].hash+"_"+J[V].counter;n.geometryGroups[M]==undefined&&(n.geometryGroups[M]={faces:[],materials:F,vertices:0,numMorphTargets:qa})}n.geometryGroups[M].faces.push(w);n.geometryGroups[M].vertices+=B}}function I(n,C,p){n.push({buffer:C,object:p,opaque:{list:[],count:0},transparent:{list:[],count:0}})}function E(n){if(n!=ea){switch(n){case THREE.AdditiveBlending:f.blendEquation(f.FUNC_ADD);f.blendFunc(f.ONE,f.ONE);break;case THREE.SubtractiveBlending:f.blendFunc(f.DST_COLOR, -f.ZERO);break;case THREE.BillboardBlending:f.blendEquation(f.FUNC_ADD);f.blendFunc(f.SRC_ALPHA,f.ONE_MINUS_SRC_ALPHA);break;case THREE.ReverseSubtractiveBlending:f.blendEquation(f.FUNC_REVERSE_SUBTRACT);f.blendFunc(f.ONE,f.ONE);break;default:f.blendEquation(f.FUNC_ADD);f.blendFunc(f.ONE,f.ONE_MINUS_SRC_ALPHA)}ea=n}}function H(n,C,p){if((p.width&p.width-1)==0&&(p.height&p.height-1)==0){f.texParameteri(n,f.TEXTURE_WRAP_S,N(C.wrapS));f.texParameteri(n,f.TEXTURE_WRAP_T,N(C.wrapT));f.texParameteri(n,f.TEXTURE_MAG_FILTER, -N(C.magFilter));f.texParameteri(n,f.TEXTURE_MIN_FILTER,N(C.minFilter));f.generateMipmap(n)}else{f.texParameteri(n,f.TEXTURE_WRAP_S,f.CLAMP_TO_EDGE);f.texParameteri(n,f.TEXTURE_WRAP_T,f.CLAMP_TO_EDGE);f.texParameteri(n,f.TEXTURE_MAG_FILTER,Q(C.magFilter));f.texParameteri(n,f.TEXTURE_MIN_FILTER,Q(C.minFilter))}}function z(n){if(n&&!n.__webGLFramebuffer){n.__webGLFramebuffer=f.createFramebuffer();n.__webGLRenderbuffer=f.createRenderbuffer();n.__webGLTexture=f.createTexture();f.bindRenderbuffer(f.RENDERBUFFER, -n.__webGLRenderbuffer);f.renderbufferStorage(f.RENDERBUFFER,f.DEPTH_COMPONENT16,n.width,n.height);f.bindTexture(f.TEXTURE_2D,n.__webGLTexture);f.texParameteri(f.TEXTURE_2D,f.TEXTURE_WRAP_S,N(n.wrapS));f.texParameteri(f.TEXTURE_2D,f.TEXTURE_WRAP_T,N(n.wrapT));f.texParameteri(f.TEXTURE_2D,f.TEXTURE_MAG_FILTER,N(n.magFilter));f.texParameteri(f.TEXTURE_2D,f.TEXTURE_MIN_FILTER,N(n.minFilter));f.texImage2D(f.TEXTURE_2D,0,N(n.format),n.width,n.height,0,N(n.format),N(n.type),null);f.bindFramebuffer(f.FRAMEBUFFER, -n.__webGLFramebuffer);f.framebufferTexture2D(f.FRAMEBUFFER,f.COLOR_ATTACHMENT0,f.TEXTURE_2D,n.__webGLTexture,0);f.framebufferRenderbuffer(f.FRAMEBUFFER,f.DEPTH_ATTACHMENT,f.RENDERBUFFER,n.__webGLRenderbuffer);f.bindTexture(f.TEXTURE_2D,null);f.bindRenderbuffer(f.RENDERBUFFER,null);f.bindFramebuffer(f.FRAMEBUFFER,null)}var C,p;if(n){C=n.__webGLFramebuffer;p=n.width;n=n.height}else{C=null;p=oa;n=$}if(C!=na){f.bindFramebuffer(f.FRAMEBUFFER,C);f.viewport(ia,ra,p,n);na=C}}function S(n,C){var p;if(n=="fragment")p= -f.createShader(f.FRAGMENT_SHADER);else n=="vertex"&&(p=f.createShader(f.VERTEX_SHADER));f.shaderSource(p,C);f.compileShader(p);if(!f.getShaderParameter(p,f.COMPILE_STATUS)){console.error(f.getShaderInfoLog(p));console.error(C);return null}return p}function Q(n){switch(n){case THREE.NearestFilter:case THREE.NearestMipMapNearestFilter:case THREE.NearestMipMapLinearFilter:return f.NEAREST;case THREE.LinearFilter:case THREE.LinearMipMapNearestFilter:case THREE.LinearMipMapLinearFilter:return f.LINEAR}} -function N(n){switch(n){case THREE.RepeatWrapping:return f.REPEAT;case THREE.ClampToEdgeWrapping:return f.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return f.MIRRORED_REPEAT;case THREE.NearestFilter:return f.NEAREST;case THREE.NearestMipMapNearestFilter:return f.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return f.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return f.LINEAR;case THREE.LinearMipMapNearestFilter:return f.LINEAR_MIPMAP_NEAREST;case THREE.LinearMipMapLinearFilter:return f.LINEAR_MIPMAP_LINEAR; +f.drawArrays(f.TRIANGLE_STRIP,0,w.__webGLVertexCount)}}function g(n,C){if(!n.__webGLVertexBuffer)n.__webGLVertexBuffer=f.createBuffer();if(!n.__webGLNormalBuffer)n.__webGLNormalBuffer=f.createBuffer();if(n.hasPos){f.bindBuffer(f.ARRAY_BUFFER,n.__webGLVertexBuffer);f.bufferData(f.ARRAY_BUFFER,n.positionArray,f.DYNAMIC_DRAW);f.enableVertexAttribArray(C.attributes.position);f.vertexAttribPointer(C.attributes.position,3,f.FLOAT,!1,0,0)}if(n.hasNormal){f.bindBuffer(f.ARRAY_BUFFER,n.__webGLNormalBuffer); +f.bufferData(f.ARRAY_BUFFER,n.normalArray,f.DYNAMIC_DRAW);f.enableVertexAttribArray(C.attributes.normal);f.vertexAttribPointer(C.attributes.normal,3,f.FLOAT,!1,0,0)}f.drawArrays(f.TRIANGLES,0,n.count);n.count=0}function h(n){if(W!=n.doubleSided){n.doubleSided?f.disable(f.CULL_FACE):f.enable(f.CULL_FACE);W=n.doubleSided}if(Da!=n.flipSided){n.flipSided?f.frontFace(f.CW):f.frontFace(f.CCW);Da=n.flipSided}}function k(n){if(Fa!=n){n?f.enable(f.DEPTH_TEST):f.disable(f.DEPTH_TEST);Fa=n}}function j(n){Q[0].set(n.n41- +n.n11,n.n42-n.n12,n.n43-n.n13,n.n44-n.n14);Q[1].set(n.n41+n.n11,n.n42+n.n12,n.n43+n.n13,n.n44+n.n14);Q[2].set(n.n41+n.n21,n.n42+n.n22,n.n43+n.n23,n.n44+n.n24);Q[3].set(n.n41-n.n21,n.n42-n.n22,n.n43-n.n23,n.n44-n.n24);Q[4].set(n.n41-n.n31,n.n42-n.n32,n.n43-n.n33,n.n44-n.n34);Q[5].set(n.n41+n.n31,n.n42+n.n32,n.n43+n.n33,n.n44+n.n34);var C;for(n=0;n<6;n++){C=Q[n];C.divideScalar(Math.sqrt(C.x*C.x+C.y*C.y+C.z*C.z))}}function m(n){for(var C=n.matrixWorld,p=-n.geometry.boundingSphere.radius*Math.max(n.scale.x, +Math.max(n.scale.y,n.scale.z)),o=0;o<6;o++){n=Q[o].x*C.n14+Q[o].y*C.n24+Q[o].z*C.n34+Q[o].w;if(n<=p)return!1}return!0}function t(n,C){n.list[n.count]=C;n.count+=1}function x(n){var C,p,o=n.object,w=n.opaque,D=n.transparent;D.count=0;n=w.count=0;for(C=o.materials.length;n65535){J[X].counter+=1;N=J[X].hash+"_"+J[X].counter;n.geometryGroups[N]==undefined&&(n.geometryGroups[N]={faces:[],materials:F,vertices:0,numMorphTargets:sa})}n.geometryGroups[N].faces.push(w);n.geometryGroups[N].vertices+=B}}function H(n,C,p){n.push({buffer:C,object:p,opaque:{list:[],count:0},transparent:{list:[],count:0}})}function E(n){if(n!=da){switch(n){case THREE.AdditiveBlending:f.blendEquation(f.FUNC_ADD);f.blendFunc(f.ONE,f.ONE);break;case THREE.SubtractiveBlending:f.blendFunc(f.DST_COLOR, +f.ZERO);break;case THREE.BillboardBlending:f.blendEquation(f.FUNC_ADD);f.blendFunc(f.SRC_ALPHA,f.ONE_MINUS_SRC_ALPHA);break;case THREE.ReverseSubtractiveBlending:f.blendEquation(f.FUNC_REVERSE_SUBTRACT);f.blendFunc(f.ONE,f.ONE);break;default:f.blendEquation(f.FUNC_ADD);f.blendFunc(f.ONE,f.ONE_MINUS_SRC_ALPHA)}da=n}}function I(n,C,p){if((p.width&p.width-1)==0&&(p.height&p.height-1)==0){f.texParameteri(n,f.TEXTURE_WRAP_S,O(C.wrapS));f.texParameteri(n,f.TEXTURE_WRAP_T,O(C.wrapT));f.texParameteri(n,f.TEXTURE_MAG_FILTER, +O(C.magFilter));f.texParameteri(n,f.TEXTURE_MIN_FILTER,O(C.minFilter));f.generateMipmap(n)}else{f.texParameteri(n,f.TEXTURE_WRAP_S,f.CLAMP_TO_EDGE);f.texParameteri(n,f.TEXTURE_WRAP_T,f.CLAMP_TO_EDGE);f.texParameteri(n,f.TEXTURE_MAG_FILTER,P(C.magFilter));f.texParameteri(n,f.TEXTURE_MIN_FILTER,P(C.minFilter))}}function z(n){if(n&&!n.__webGLFramebuffer){n.__webGLFramebuffer=f.createFramebuffer();n.__webGLRenderbuffer=f.createRenderbuffer();n.__webGLTexture=f.createTexture();f.bindRenderbuffer(f.RENDERBUFFER, +n.__webGLRenderbuffer);f.renderbufferStorage(f.RENDERBUFFER,f.DEPTH_COMPONENT16,n.width,n.height);f.bindTexture(f.TEXTURE_2D,n.__webGLTexture);f.texParameteri(f.TEXTURE_2D,f.TEXTURE_WRAP_S,O(n.wrapS));f.texParameteri(f.TEXTURE_2D,f.TEXTURE_WRAP_T,O(n.wrapT));f.texParameteri(f.TEXTURE_2D,f.TEXTURE_MAG_FILTER,O(n.magFilter));f.texParameteri(f.TEXTURE_2D,f.TEXTURE_MIN_FILTER,O(n.minFilter));f.texImage2D(f.TEXTURE_2D,0,O(n.format),n.width,n.height,0,O(n.format),O(n.type),null);f.bindFramebuffer(f.FRAMEBUFFER, +n.__webGLFramebuffer);f.framebufferTexture2D(f.FRAMEBUFFER,f.COLOR_ATTACHMENT0,f.TEXTURE_2D,n.__webGLTexture,0);f.framebufferRenderbuffer(f.FRAMEBUFFER,f.DEPTH_ATTACHMENT,f.RENDERBUFFER,n.__webGLRenderbuffer);f.bindTexture(f.TEXTURE_2D,null);f.bindRenderbuffer(f.RENDERBUFFER,null);f.bindFramebuffer(f.FRAMEBUFFER,null)}var C,p;if(n){C=n.__webGLFramebuffer;p=n.width;n=n.height}else{C=null;p=ma;n=Z}if(C!=oa){f.bindFramebuffer(f.FRAMEBUFFER,C);f.viewport(ja,qa,p,n);oa=C}}function S(n,C){var p;if(n=="fragment")p= +f.createShader(f.FRAGMENT_SHADER);else n=="vertex"&&(p=f.createShader(f.VERTEX_SHADER));f.shaderSource(p,C);f.compileShader(p);if(!f.getShaderParameter(p,f.COMPILE_STATUS)){console.error(f.getShaderInfoLog(p));console.error(C);return null}return p}function P(n){switch(n){case THREE.NearestFilter:case THREE.NearestMipMapNearestFilter:case THREE.NearestMipMapLinearFilter:return f.NEAREST;case THREE.LinearFilter:case THREE.LinearMipMapNearestFilter:case THREE.LinearMipMapLinearFilter:return f.LINEAR}} +function O(n){switch(n){case THREE.RepeatWrapping:return f.REPEAT;case THREE.ClampToEdgeWrapping:return f.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return f.MIRRORED_REPEAT;case THREE.NearestFilter:return f.NEAREST;case THREE.NearestMipMapNearestFilter:return f.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return f.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return f.LINEAR;case THREE.LinearMipMapNearestFilter:return f.LINEAR_MIPMAP_NEAREST;case THREE.LinearMipMapLinearFilter:return f.LINEAR_MIPMAP_LINEAR; case THREE.ByteType:return f.BYTE;case THREE.UnsignedByteType:return f.UNSIGNED_BYTE;case THREE.ShortType:return f.SHORT;case THREE.UnsignedShortType:return f.UNSIGNED_SHORT;case THREE.IntType:return f.INT;case THREE.UnsignedShortType:return f.UNSIGNED_INT;case THREE.FloatType:return f.FLOAT;case THREE.AlphaFormat:return f.ALPHA;case THREE.RGBFormat:return f.RGB;case THREE.RGBAFormat:return f.RGBA;case THREE.LuminanceFormat:return f.LUMINANCE;case THREE.LuminanceAlphaFormat:return f.LUMINANCE_ALPHA}return 0} -var da=document.createElement("canvas"),f,ja=null,na=null,aa=this,Y=null,Da=null,ea=null,Ea=null,ia=0,ra=0,oa=0,$=0,R=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],O=new THREE.Matrix4,ha=new Float32Array(16),va=new Float32Array(16),ka=new THREE.Vector4,ta={ambient:[0,0,0],directional:{length:0,colors:[],positions:[]},point:{length:0,colors:[],positions:[]}},xa=!0,Ma=new THREE.Color(0),ab=0;if(a){if(a.antialias!==undefined)xa=a.antialias; -a.clearColor!==undefined&&Ma.setHex(a.clearColor);if(a.clearAlpha!==undefined)ab=a.clearAlpha}this.maxMorphTargets=8;this.domElement=da;this.autoClear=!0;this.sortObjects=!0;(function(n,C,p){try{if(!(f=da.getContext("experimental-webgl",{antialias:n})))throw"Error creating WebGL context.";}catch(o){console.error(o)}f.clearColor(0,0,0,1);f.clearDepth(1);f.enable(f.DEPTH_TEST);f.depthFunc(f.LEQUAL);f.frontFace(f.CCW);f.cullFace(f.BACK);f.enable(f.CULL_FACE);f.enable(f.BLEND);f.blendFunc(f.ONE,f.ONE_MINUS_SRC_ALPHA); -f.clearColor(C.r,C.g,C.b,p);_cullEnabled=!0})(xa,Ma,ab);this.context=f;this.setSize=function(n,C){da.width=n;da.height=C;this.setViewport(0,0,da.width,da.height)};this.setViewport=function(n,C,p,o){ia=n;ra=C;oa=p;$=o;f.viewport(ia,ra,oa,$)};this.setScissor=function(n,C,p,o){f.scissor(n,C,p,o)};this.enableScissorTest=function(n){n?f.enable(f.SCISSOR_TEST):f.disable(f.SCISSOR_TEST)};this.enableDepthBufferWrite=function(n){f.depthMask(n)};this.setClearColorHex=function(n,C){var p=new THREE.Color(n); +var aa=document.createElement("canvas"),f,ha=null,oa=null,$=this,W=null,Da=null,da=null,Fa=null,ja=0,qa=0,ma=0,Z=0,Q=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],M=new THREE.Matrix4,ea=new Float32Array(16),ua=new Float32Array(16),ka=new THREE.Vector4,va={ambient:[0,0,0],directional:{length:0,colors:[],positions:[]},point:{length:0,colors:[],positions:[]}},za=!0,La=new THREE.Color(0),$a=0;if(a){if(a.antialias!==undefined)za=a.antialias; +a.clearColor!==undefined&&La.setHex(a.clearColor);if(a.clearAlpha!==undefined)$a=a.clearAlpha}this.maxMorphTargets=8;this.domElement=aa;this.autoClear=!0;this.sortObjects=!0;(function(n,C,p){try{if(!(f=aa.getContext("experimental-webgl",{antialias:n})))throw"Error creating WebGL context.";}catch(o){console.error(o)}f.clearColor(0,0,0,1);f.clearDepth(1);f.enable(f.DEPTH_TEST);f.depthFunc(f.LEQUAL);f.frontFace(f.CCW);f.cullFace(f.BACK);f.enable(f.CULL_FACE);f.enable(f.BLEND);f.blendFunc(f.ONE,f.ONE_MINUS_SRC_ALPHA); +f.clearColor(C.r,C.g,C.b,p);_cullEnabled=!0})(za,La,$a);this.context=f;this.setSize=function(n,C){aa.width=n;aa.height=C;this.setViewport(0,0,aa.width,aa.height)};this.setViewport=function(n,C,p,o){ja=n;qa=C;ma=p;Z=o;f.viewport(ja,qa,ma,Z)};this.setScissor=function(n,C,p,o){f.scissor(n,C,p,o)};this.enableScissorTest=function(n){n?f.enable(f.SCISSOR_TEST):f.disable(f.SCISSOR_TEST)};this.enableDepthBufferWrite=function(n){f.depthMask(n)};this.setClearColorHex=function(n,C){var p=new THREE.Color(n); f.clearColor(p.r,p.g,p.b,C)};this.setClearColor=function(n,C){f.clearColor(n.r,n.g,n.b,C)};this.clear=function(){f.clear(f.COLOR_BUFFER_BIT|f.DEPTH_BUFFER_BIT)};this.initMaterial=function(n,C,p,o){var w,D,B;if(n instanceof THREE.MeshDepthMaterial)b(n,THREE.ShaderLib.depth);else if(n instanceof THREE.MeshNormalMaterial)b(n,THREE.ShaderLib.normal);else if(n instanceof THREE.MeshBasicMaterial)b(n,THREE.ShaderLib.basic);else if(n instanceof THREE.MeshLambertMaterial)b(n,THREE.ShaderLib.lambert);else if(n instanceof -THREE.MeshPhongMaterial)b(n,THREE.ShaderLib.phong);else if(n instanceof THREE.LineBasicMaterial)b(n,THREE.ShaderLib.basic);else n instanceof THREE.ParticleBasicMaterial&&b(n,THREE.ShaderLib.particle_basic);var F,V,M,J;B=M=J=0;for(F=C.length;B0?"#define VERTEX_TEXTURES":"","#define MAX_DIR_LIGHTS "+F.maxDirLights,"#define MAX_POINT_LIGHTS "+F.maxPointLights,"#define MAX_BONES "+F.maxBones,F.map?"#define USE_MAP":"",F.envMap?"#define USE_ENVMAP":"",F.lightMap?"#define USE_LIGHTMAP":"",F.vertexColors?"#define USE_COLOR":"",F.skinning?"#define USE_SKINNING": "",F.morphTargets?"#define USE_MORPHTARGETS":"",F.sizeAttenuation?"#define USE_SIZEATTENUATION":"","uniform mat4 objectMatrix;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform mat4 viewMatrix;\nuniform mat3 normalMatrix;\nuniform vec3 cameraPosition;\nuniform mat4 cameraInverseMatrix;\nattribute vec3 position;\nattribute vec3 morphTarget0;\nattribute vec3 morphTarget1;\nattribute vec3 morphTarget2;\nattribute vec3 morphTarget3;\nattribute vec3 morphTarget4;\nattribute vec3 morphTarget5;\nattribute vec3 morphTarget6;\nattribute vec3 morphTarget7;\nattribute vec3 normal;\nattribute vec3 color;\nattribute vec2 uv;\nattribute vec2 uv2;\nattribute vec4 skinVertexA;\nattribute vec4 skinVertexB;\nattribute vec4 skinIndex;\nattribute vec4 skinWeight;\n"].join("\n"); @@ -261,58 +262,59 @@ f.attachShader(p,S("fragment",B+J));f.attachShader(p,S("vertex",F+C));f.linkProg w=n.program;J=0;for(C=p.length;J=0&&f.enableVertexAttribArray(D.color);D.normal>=0&&f.enableVertexAttribArray(D.normal); D.tangent>=0&&f.enableVertexAttribArray(D.tangent);if(n.skinning&&D.skinVertexA>=0&&D.skinVertexB>=0&&D.skinIndex>=0&&D.skinWeight>=0){f.enableVertexAttribArray(D.skinVertexA);f.enableVertexAttribArray(D.skinVertexB);f.enableVertexAttribArray(D.skinIndex);f.enableVertexAttribArray(D.skinWeight)}if(n.morphTargets){n.numSupportedMorphTargets=0;if(D.morphTarget0>=0){f.enableVertexAttribArray(D.morphTarget0);n.numSupportedMorphTargets++}if(D.morphTarget1>=0){f.enableVertexAttribArray(D.morphTarget1); n.numSupportedMorphTargets++}if(D.morphTarget2>=0){f.enableVertexAttribArray(D.morphTarget2);n.numSupportedMorphTargets++}if(D.morphTarget3>=0){f.enableVertexAttribArray(D.morphTarget3);n.numSupportedMorphTargets++}if(D.morphTarget4>=0){f.enableVertexAttribArray(D.morphTarget4);n.numSupportedMorphTargets++}if(D.morphTarget5>=0){f.enableVertexAttribArray(D.morphTarget5);n.numSupportedMorphTargets++}if(D.morphTarget6>=0){f.enableVertexAttribArray(D.morphTarget6);n.numSupportedMorphTargets++}if(D.morphTarget7>= -0){f.enableVertexAttribArray(D.morphTarget7);n.numSupportedMorphTargets++}o.__webGLMorphTargetInfluences=new Float32Array(this.maxMorphTargets);for(w=0;w0||wa.faceVertexUvs.length>0)B.__uvArray=new Float32Array(F*2);if(wa.faceUvs.length>1||wa.faceVertexUvs.length>1)B.__uv2Array=new Float32Array(F*2)}if(M.geometry.skinWeights.length&&M.geometry.skinIndices.length){B.__skinVertexAArray=new Float32Array(F*4);B.__skinVertexBArray=new Float32Array(F*4);B.__skinIndexArray=new Float32Array(F*4);B.__skinWeightArray=new Float32Array(F*4)}B.__faceArray=new Uint16Array(V*3);B.__lineArray=new Uint16Array(Ca*2);if(B.numMorphTargets){M= -void 0;wa=void 0;B.__morphTargetsArrays=[];M=0;for(wa=B.numMorphTargets;M0||ya.faceVertexUvs.length>0)B.__uvArray=new Float32Array(F*2);if(ya.faceUvs.length>1||ya.faceVertexUvs.length>1)B.__uv2Array=new Float32Array(F*2)}if(N.geometry.skinWeights.length&&N.geometry.skinIndices.length){B.__skinVertexAArray=new Float32Array(F*4);B.__skinVertexBArray=new Float32Array(F*4);B.__skinIndexArray=new Float32Array(F*4);B.__skinWeightArray=new Float32Array(F*4)}B.__faceArray=new Uint16Array(X*3);B.__lineArray=new Uint16Array(Ea*2);if(B.numMorphTargets){N= +void 0;ya=void 0;B.__morphTargetsArrays=[];N=0;for(ya=B.numMorphTargets;N=0;w--){o=p.__webglObjects[w].object;C==o&&p.__webglObjects.splice(w,1)}n.__objectsRemoved.splice(0,1)}C=0;for(p=n.__webglObjects.length;C0){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLColorBuffer);f.bufferData(f.ARRAY_BUFFER,Ba,F)}if(fb){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLNormalBuffer);f.bufferData(f.ARRAY_BUFFER,Va,F)}if($a&&ya.hasTangents){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLTangentBuffer);f.bufferData(f.ARRAY_BUFFER,Ka,F)}if(Ta&&Ga>0){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLUVBuffer);f.bufferData(f.ARRAY_BUFFER,Ya,F)}if(Ta&&Na>0){f.bindBuffer(f.ARRAY_BUFFER, -B.__webGLUV2Buffer);f.bufferData(f.ARRAY_BUFFER,db,F)}if(Sa){f.bindBuffer(f.ELEMENT_ARRAY_BUFFER,B.__webGLFaceBuffer);f.bufferData(f.ELEMENT_ARRAY_BUFFER,sa,F);f.bindBuffer(f.ELEMENT_ARRAY_BUFFER,B.__webGLLineBuffer);f.bufferData(f.ELEMENT_ARRAY_BUFFER,ma,F)}if(L>0){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLSkinVertexABuffer);f.bufferData(f.ARRAY_BUFFER,K,F);f.bindBuffer(f.ARRAY_BUFFER,B.__webGLSkinVertexBBuffer);f.bufferData(f.ARRAY_BUFFER,ca,F);f.bindBuffer(f.ARRAY_BUFFER,B.__webGLSkinIndicesBuffer); -f.bufferData(f.ARRAY_BUFFER,U,F);f.bindBuffer(f.ARRAY_BUFFER,B.__webGLSkinWeightsBuffer);f.bufferData(f.ARRAY_BUFFER,T,F)}}}w.__dirtyVertices=!1;w.__dirtyMorphTargets=!1;w.__dirtyElements=!1;w.__dirtyUvs=!1;w.__dirtyNormals=!1;w.__dirtyTangents=!1;w.__dirtyColors=!1}else if(o instanceof THREE.Ribbon){w=o.geometry;if(w.__dirtyVertices||w.__dirtyColors){o=w;D=f.DYNAMIC_DRAW;M=void 0;M=void 0;wa=void 0;B=void 0;J=o.vertices;F=o.colors;qa=J.length;V=F.length;W=o.__vertexArray;Ca=o.__colorArray;la=o.__dirtyColors; -if(o.__dirtyVertices){for(M=0;M -0}};THREE.SoundRenderer=function(){this.volume=1;this.domElement=document.createElement("div");this.domElement.id="THREESound";this.cameraPosition=new THREE.Vector3;this.soundPosition=new THREE.Vector3;this.render=function(a,c,b){b&&a.update(undefined,!1,c);b=a.sounds;var d,e=b.length;for(d=0;d0){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLColorBuffer);f.bufferData(f.ARRAY_BUFFER,K,F)}if(Za){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLNormalBuffer);f.bufferData(f.ARRAY_BUFFER,Wa,F)}if(ab&&Ka.hasTangents){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLTangentBuffer);f.bufferData(f.ARRAY_BUFFER,wa,F)}if(Ya&&Ha>0){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLUVBuffer); +f.bufferData(f.ARRAY_BUFFER,db,F)}if(Ya&&Ma>0){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLUV2Buffer);f.bufferData(f.ARRAY_BUFFER,eb,F)}if(Xa){f.bindBuffer(f.ELEMENT_ARRAY_BUFFER,B.__webGLFaceBuffer);f.bufferData(f.ELEMENT_ARRAY_BUFFER,ra,F);f.bindBuffer(f.ELEMENT_ARRAY_BUFFER,B.__webGLLineBuffer);f.bufferData(f.ELEMENT_ARRAY_BUFFER,R,F)}if(L>0){f.bindBuffer(f.ARRAY_BUFFER,B.__webGLSkinVertexABuffer);f.bufferData(f.ARRAY_BUFFER,ca,F);f.bindBuffer(f.ARRAY_BUFFER,B.__webGLSkinVertexBBuffer);f.bufferData(f.ARRAY_BUFFER, +V,F);f.bindBuffer(f.ARRAY_BUFFER,B.__webGLSkinIndicesBuffer);f.bufferData(f.ARRAY_BUFFER,T,F);f.bindBuffer(f.ARRAY_BUFFER,B.__webGLSkinWeightsBuffer);f.bufferData(f.ARRAY_BUFFER,ia,F)}}}w.__dirtyVertices=!1;w.__dirtyMorphTargets=!1;w.__dirtyElements=!1;w.__dirtyUvs=!1;w.__dirtyNormals=!1;w.__dirtyTangents=!1;w.__dirtyColors=!1}else if(o instanceof THREE.Ribbon){w=o.geometry;if(w.__dirtyVertices||w.__dirtyColors){o=w;D=f.DYNAMIC_DRAW;N=void 0;N=void 0;ya=void 0;B=void 0;J=o.vertices;F=o.colors;sa= +J.length;X=F.length;Y=o.__vertexArray;Ea=o.__colorArray;la=o.__dirtyColors;if(o.__dirtyVertices){for(N=0;N0}}; +THREE.SoundRenderer=function(){this.volume=1;this.domElement=document.createElement("div");this.domElement.id="THREESound";this.cameraPosition=new THREE.Vector3;this.soundPosition=new THREE.Vector3;this.render=function(a,c,b){b&&a.update(undefined,!1,c);b=a.sounds;var d,e=b.length;for(d=0;d25&&(h=25);e=(h-1)*0.5;b=Array(h);for(c=d=0;c25&&(g=25);e=(g-1)*0.5;b=Array(g);for(c=d=0;c=0?y:y+e;y=this.verticalAngleMap.srcRange;q=this.verticalAngleMap.dstRange; +this.lat=this.mouseY=this.mouseX=0;this.windowHalfX=window.innerWidth/2;this.windowHalfY=window.innerHeight/2;var e=Math.PI*2,g=Math.PI/180;this.update=function(m,t,x){var y,q;this.lookHorizontal&&(this.lon+=this.mouseX*this.lookSpeed);this.lookVertical&&(this.lat-=this.mouseY*this.lookSpeed);this.lon=Math.max(0,Math.min(360,this.lon));this.lat=Math.max(-85,Math.min(85,this.lat));this.phi=(90-this.lat)*g;this.theta=this.lon*g;y=this.phi%e;this.phi=y>=0?y:y+e;y=this.verticalAngleMap.srcRange;q=this.verticalAngleMap.dstRange; this.phi=(this.phi-y[0])*(q[1]-q[0])/(y[1]-y[0])+q[0];y=this.horizontalAngleMap.srcRange;q=this.horizontalAngleMap.dstRange;this.theta=(this.theta-y[0])*(q[1]-q[0])/(y[1]-y[0])+q[0];y=this.target.position;y.x=100*Math.sin(this.phi)*Math.cos(this.theta);y.y=100*Math.cos(this.phi);y.z=100*Math.sin(this.phi)*Math.sin(this.theta);this.supr.update.call(this,m,t,x)};this.onMouseMove=function(m){this.mouseX=m.clientX-this.windowHalfX;this.mouseY=m.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}),k=new Cube(10,10,20),j=new Cube(2,2,10);this.animationParent=new THREE.Mesh(k,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= +this.useConstantSpeed&&this.spline.reparametrizeByArcLength(this.resamplingCoef);if(this.createDebugDummy){a=new THREE.MeshLambertMaterial({color:30719});var h=new THREE.MeshLambertMaterial({color:65280}),k=new Cube(10,10,20),j=new Cube(2,2,10);this.animationParent=new THREE.Mesh(k,a);a=new THREE.Mesh(j,h);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&&d(this.debugPath,this.spline);this.domElement.addEventListener("mousemove",function(m,t){return function(){t.apply(m,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; -var Cube=function(a,c,b,d,e,h,g,k,j){function m(I,E,H,z,S,Q,N,da){var f,ja,na=d||1,aa=e||1,Y=S/2,Da=Q/2,ea=t.vertices.length;if(I=="x"&&E=="y"||I=="y"&&E=="x")f="z";else if(I=="x"&&E=="z"||I=="z"&&E=="x"){f="y";aa=h||1}else if(I=="z"&&E=="y"||I=="y"&&E=="z"){f="x";na=h||1}var Ea=na+1,ia=aa+1;S/=na;var ra=Q/aa;for(ja=0;ja0){g(0,0,-m-(h||0));for(d=a;d0){g(0,0,m+(e||0)); +var Cube=function(a,c,b,d,e,g,h,k,j){function m(H,E,I,z,S,P,O,aa){var f,ha,oa=d||1,$=e||1,W=S/2,Da=P/2,da=t.vertices.length;if(H=="x"&&E=="y"||H=="y"&&E=="x")f="z";else if(H=="x"&&E=="z"||H=="z"&&E=="x"){f="y";$=g||1}else if(H=="z"&&E=="y"||H=="y"&&E=="z"){f="x";oa=g||1}var Fa=oa+1,ja=$+1;S/=oa;var qa=P/$;for(ha=0;ha0){h(0,0,-m-(g||0));for(d=a;d0){h(0,0,m+(e||0)); for(d=a+a/2;d<2*a;d++)k.faces.push(new THREE.Face4(2*a+1,(2*d-2*a+2)%a+a,(2*d-2*a+1)%a+a,(2*d-2*a)%a+a))}this.computeCentroids();this.computeFaceNormals()};Cylinder.prototype=new THREE.Geometry;Cylinder.prototype.constructor=Cylinder; -var Icosahedron=function(a){function c(x,y,q){var A=Math.sqrt(x*x+y*y+q*q);return e.vertices.push(new THREE.Vertex(new THREE.Vector3(x/A,y/A,q/A)))-1}function b(x,y,q,A){A.faces.push(new THREE.Face3(x,y,q))}function d(x,y){var q=e.vertices[x].position,A=e.vertices[y].position;return c((q.x+A.x)/2,(q.y+A.y)/2,(q.z+A.z)/2)}var e=this,h=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,h);b(0,5,1,h);b(0,1,7,h);b(0,7,10,h);b(0,10,11,h);b(1,5,9,h);b(5,11,4,h);b(11,10,2,h);b(10,7,6,h);b(7,1,8,h);b(3,9,4,h);b(3,4,2,h);b(3,2,6,h);b(3,6,8,h);b(3,8,9,h);b(4,9,5,h);b(2,4,11,h);b(6,2,10,h);b(8,6,7,h);b(9,8,1,h);for(a=0;a0||(t=this.vertices.push(new THREE.Vertex(new THREE.Vector3(x,k,y)))-1);m.push(t)}c.push(m)}var q,A,G;e=c.length;for(b=0;b0)for(d=0;d1){q=this.vertices[g].position.clone(); -A=this.vertices[j].position.clone();G=this.vertices[m].position.clone();q.normalize();A.normalize();G.normalize();this.faces.push(new THREE.Face3(g,j,m,[new THREE.Vector3(q.x,q.y,q.z),new THREE.Vector3(A.x,A.y,A.z),new THREE.Vector3(G.x,G.y,G.z)]));this.faceVertexUvs[0].push([t,x,I])}}}this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals();this.boundingSphere={radius:a}};Sphere.prototype=new THREE.Geometry;Sphere.prototype.constructor=Sphere; +var Sphere=function(a,c,b){THREE.Geometry.call(this);var d,e=Math.PI,g=Math.max(3,c||8),h=Math.max(2,b||6);c=[];for(b=0;b0||(t=this.vertices.push(new THREE.Vertex(new THREE.Vector3(x,k,y)))-1);m.push(t)}c.push(m)}var q,A,G;e=c.length;for(b=0;b0)for(d=0;d1){q=this.vertices[h].position.clone(); +A=this.vertices[j].position.clone();G=this.vertices[m].position.clone();q.normalize();A.normalize();G.normalize();this.faces.push(new THREE.Face3(h,j,m,[new THREE.Vector3(q.x,q.y,q.z),new THREE.Vector3(A.x,A.y,A.z),new THREE.Vector3(G.x,G.y,G.z)]));this.faceVertexUvs[0].push([t,x,H])}}}this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals();this.boundingSphere={radius:a}};Sphere.prototype=new THREE.Geometry;Sphere.prototype.constructor=Sphere; var Torus=function(a,c,b,d){this.radius=a||100;this.tube=c||40;this.segmentsR=b||8;this.segmentsT=d||6;a=[];THREE.Geometry.call(this);for(c=0;c<=this.segmentsR;++c)for(b=0;b<=this.segmentsT;++b){d=b/this.segmentsT*2*Math.PI;var e=c/this.segmentsR*2*Math.PI;this.vertices.push(new THREE.Vertex(new THREE.Vector3((this.radius+this.tube*Math.cos(e))*Math.cos(d),(this.radius+this.tube*Math.cos(e))*Math.sin(d),this.tube*Math.sin(e))));a.push([b/this.segmentsT,1-c/this.segmentsR])}for(c=1;c<=this.segmentsR;++c)for(b= -1;b<=this.segmentsT;++b){d=(this.segmentsT+1)*c+b;e=(this.segmentsT+1)*c+b-1;var h=(this.segmentsT+1)*(c-1)+b-1,g=(this.segmentsT+1)*(c-1)+b;this.faces.push(new THREE.Face4(d,e,h,g));this.faceVertexUvs[0].push([new THREE.UV(a[d][0],a[d][1]),new THREE.UV(a[e][0],a[e][1]),new THREE.UV(a[h][0],a[h][1]),new THREE.UV(a[g][0],a[g][1])])}delete a;this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals()};Torus.prototype=new THREE.Geometry;Torus.prototype.constructor=Torus; -var TorusKnot=function(a,c,b,d,e,h,g){function k(x,y,q,A,G,I){y=q/A*x;q=Math.cos(y);return new THREE.Vector3(G*(2+q)*0.5*Math.cos(x),G*(2+q)*Math.sin(x)*0.5,I*G*Math.sin(y)*0.5)}THREE.Geometry.call(this);this.radius=a||200;this.tube=c||40;this.segmentsR=b||64;this.segmentsT=d||8;this.p=e||2;this.q=h||3;this.heightScale=g||1;this.grid=Array(this.segmentsR);b=new THREE.Vector3;d=new THREE.Vector3;h=new THREE.Vector3;for(a=0;a>7)-127;w|=(B&127)<<16|D<<8;if(w==0&&V==-127)return 0;return(1-2*(F>>7))*(1+w*Math.pow(2,-23))*Math.pow(2,V)}function k(p,o){var w=t(p,o),D=t(p,o+1),B=t(p,o+2);return(t(p,o+3)<<24)+(B<<16)+(D<<8)+w}function j(p,o){var w=t(p,o);return(t(p,o+1)<<8)+w}function m(p,o){var w=t(p,o);return w>127?w-256:w}function t(p, -o){return p.charCodeAt(o)&255}function x(p){var o,w,D;o=k(a,p);w=k(a,p+N);D=k(a,p+da);p=j(a,p+f);THREE.BinaryLoader.prototype.f3(E,o,w,D,p)}function y(p){var o,w,D,B,F,V;o=k(a,p);w=k(a,p+N);D=k(a,p+da);B=j(a,p+f);F=k(a,p+ja);V=k(a,p+na);p=k(a,p+aa);THREE.BinaryLoader.prototype.f3n(E,S,o,w,D,B,F,V,p)}function q(p){var o,w,D,B;o=k(a,p);w=k(a,p+Y);D=k(a,p+Da);B=k(a,p+ea);p=j(a,p+Ea);THREE.BinaryLoader.prototype.f4(E,o,w,D,B,p)}function A(p){var o,w,D,B,F,V,M,J;o=k(a,p);w=k(a,p+Y);D=k(a,p+Da);B=k(a,p+ -ea);F=j(a,p+Ea);V=k(a,p+ia);M=k(a,p+ra);J=k(a,p+oa);p=k(a,p+$);THREE.BinaryLoader.prototype.f4n(E,S,o,w,D,B,F,V,M,J,p)}function G(p){var o,w;o=k(a,p);w=k(a,p+R);p=k(a,p+O);THREE.BinaryLoader.prototype.uv3(E.faceVertexUvs[0],Q[o*2],Q[o*2+1],Q[w*2],Q[w*2+1],Q[p*2],Q[p*2+1])}function I(p){var o,w,D;o=k(a,p);w=k(a,p+ha);D=k(a,p+va);p=k(a,p+ka);THREE.BinaryLoader.prototype.uv4(E.faceVertexUvs[0],Q[o*2],Q[o*2+1],Q[w*2],Q[w*2+1],Q[D*2],Q[D*2+1],Q[p*2],Q[p*2+1])}var E=this,H=0,z,S=[],Q=[],N,da,f,ja,na,aa, -Y,Da,ea,Ea,ia,ra,oa,$,R,O,ha,va,ka,ta,xa,Ma,ab,n,C;THREE.Geometry.call(this);THREE.Loader.prototype.init_materials(E,d,h);z={signature:a.substr(H,8),header_bytes:t(a,H+8),vertex_coordinate_bytes:t(a,H+9),normal_coordinate_bytes:t(a,H+10),uv_coordinate_bytes:t(a,H+11),vertex_index_bytes:t(a,H+12),normal_index_bytes:t(a,H+13),uv_index_bytes:t(a,H+14),material_index_bytes:t(a,H+15),nvertices:k(a,H+16),nnormals:k(a,H+16+4),nuvs:k(a,H+16+8),ntri_flat:k(a,H+16+12),ntri_smooth:k(a,H+16+16),ntri_flat_uv:k(a, -H+16+20),ntri_smooth_uv:k(a,H+16+24),nquad_flat:k(a,H+16+28),nquad_smooth:k(a,H+16+32),nquad_flat_uv:k(a,H+16+36),nquad_smooth_uv:k(a,H+16+40)};H+=z.header_bytes;N=z.vertex_index_bytes;da=z.vertex_index_bytes*2;f=z.vertex_index_bytes*3;ja=z.vertex_index_bytes*3+z.material_index_bytes;na=z.vertex_index_bytes*3+z.material_index_bytes+z.normal_index_bytes;aa=z.vertex_index_bytes*3+z.material_index_bytes+z.normal_index_bytes*2;Y=z.vertex_index_bytes;Da=z.vertex_index_bytes*2;ea=z.vertex_index_bytes*3; -Ea=z.vertex_index_bytes*4;ia=z.vertex_index_bytes*4+z.material_index_bytes;ra=z.vertex_index_bytes*4+z.material_index_bytes+z.normal_index_bytes;oa=z.vertex_index_bytes*4+z.material_index_bytes+z.normal_index_bytes*2;$=z.vertex_index_bytes*4+z.material_index_bytes+z.normal_index_bytes*3;R=z.uv_index_bytes;O=z.uv_index_bytes*2;ha=z.uv_index_bytes;va=z.uv_index_bytes*2;ka=z.uv_index_bytes*3;h=z.vertex_index_bytes*3+z.material_index_bytes;C=z.vertex_index_bytes*4+z.material_index_bytes;ta=z.ntri_flat* -h;xa=z.ntri_smooth*(h+z.normal_index_bytes*3);Ma=z.ntri_flat_uv*(h+z.uv_index_bytes*3);ab=z.ntri_smooth_uv*(h+z.normal_index_bytes*3+z.uv_index_bytes*3);n=z.nquad_flat*C;h=z.nquad_smooth*(C+z.normal_index_bytes*4);C=z.nquad_flat_uv*(C+z.uv_index_bytes*4);H+=function(p){for(var o,w,D,B=z.vertex_coordinate_bytes*3,F=p+z.nvertices*B;p>7)-127;w|=(B&127)<<16|D<<8;if(w==0&&X==-127)return 0;return(1-2*(F>>7))*(1+w*Math.pow(2,-23))*Math.pow(2,X)}function k(p,o){var w=t(p,o),D=t(p,o+1),B=t(p,o+2);return(t(p,o+3)<<24)+(B<<16)+(D<<8)+w}function j(p,o){var w=t(p,o);return(t(p,o+1)<<8)+w}function m(p,o){var w=t(p,o);return w>127?w-256:w}function t(p, +o){return p.charCodeAt(o)&255}function x(p){var o,w,D;o=k(a,p);w=k(a,p+O);D=k(a,p+aa);p=j(a,p+f);THREE.BinaryLoader.prototype.f3(E,o,w,D,p)}function y(p){var o,w,D,B,F,X;o=k(a,p);w=k(a,p+O);D=k(a,p+aa);B=j(a,p+f);F=k(a,p+ha);X=k(a,p+oa);p=k(a,p+$);THREE.BinaryLoader.prototype.f3n(E,S,o,w,D,B,F,X,p)}function q(p){var o,w,D,B;o=k(a,p);w=k(a,p+W);D=k(a,p+Da);B=k(a,p+da);p=j(a,p+Fa);THREE.BinaryLoader.prototype.f4(E,o,w,D,B,p)}function A(p){var o,w,D,B,F,X,N,J;o=k(a,p);w=k(a,p+W);D=k(a,p+Da);B=k(a,p+ +da);F=j(a,p+Fa);X=k(a,p+ja);N=k(a,p+qa);J=k(a,p+ma);p=k(a,p+Z);THREE.BinaryLoader.prototype.f4n(E,S,o,w,D,B,F,X,N,J,p)}function G(p){var o,w;o=k(a,p);w=k(a,p+Q);p=k(a,p+M);THREE.BinaryLoader.prototype.uv3(E.faceVertexUvs[0],P[o*2],P[o*2+1],P[w*2],P[w*2+1],P[p*2],P[p*2+1])}function H(p){var o,w,D;o=k(a,p);w=k(a,p+ea);D=k(a,p+ua);p=k(a,p+ka);THREE.BinaryLoader.prototype.uv4(E.faceVertexUvs[0],P[o*2],P[o*2+1],P[w*2],P[w*2+1],P[D*2],P[D*2+1],P[p*2],P[p*2+1])}var E=this,I=0,z,S=[],P=[],O,aa,f,ha,oa,$, +W,Da,da,Fa,ja,qa,ma,Z,Q,M,ea,ua,ka,va,za,La,$a,n,C;THREE.Geometry.call(this);THREE.Loader.prototype.init_materials(E,d,g);z={signature:a.substr(I,8),header_bytes:t(a,I+8),vertex_coordinate_bytes:t(a,I+9),normal_coordinate_bytes:t(a,I+10),uv_coordinate_bytes:t(a,I+11),vertex_index_bytes:t(a,I+12),normal_index_bytes:t(a,I+13),uv_index_bytes:t(a,I+14),material_index_bytes:t(a,I+15),nvertices:k(a,I+16),nnormals:k(a,I+16+4),nuvs:k(a,I+16+8),ntri_flat:k(a,I+16+12),ntri_smooth:k(a,I+16+16),ntri_flat_uv:k(a, +I+16+20),ntri_smooth_uv:k(a,I+16+24),nquad_flat:k(a,I+16+28),nquad_smooth:k(a,I+16+32),nquad_flat_uv:k(a,I+16+36),nquad_smooth_uv:k(a,I+16+40)};I+=z.header_bytes;O=z.vertex_index_bytes;aa=z.vertex_index_bytes*2;f=z.vertex_index_bytes*3;ha=z.vertex_index_bytes*3+z.material_index_bytes;oa=z.vertex_index_bytes*3+z.material_index_bytes+z.normal_index_bytes;$=z.vertex_index_bytes*3+z.material_index_bytes+z.normal_index_bytes*2;W=z.vertex_index_bytes;Da=z.vertex_index_bytes*2;da=z.vertex_index_bytes*3; +Fa=z.vertex_index_bytes*4;ja=z.vertex_index_bytes*4+z.material_index_bytes;qa=z.vertex_index_bytes*4+z.material_index_bytes+z.normal_index_bytes;ma=z.vertex_index_bytes*4+z.material_index_bytes+z.normal_index_bytes*2;Z=z.vertex_index_bytes*4+z.material_index_bytes+z.normal_index_bytes*3;Q=z.uv_index_bytes;M=z.uv_index_bytes*2;ea=z.uv_index_bytes;ua=z.uv_index_bytes*2;ka=z.uv_index_bytes*3;g=z.vertex_index_bytes*3+z.material_index_bytes;C=z.vertex_index_bytes*4+z.material_index_bytes;va=z.ntri_flat* +g;za=z.ntri_smooth*(g+z.normal_index_bytes*3);La=z.ntri_flat_uv*(g+z.uv_index_bytes*3);$a=z.ntri_smooth_uv*(g+z.normal_index_bytes*3+z.uv_index_bytes*3);n=z.nquad_flat*C;g=z.nquad_smooth*(C+z.normal_index_bytes*4);C=z.nquad_flat_uv*(C+z.uv_index_bytes*4);I+=function(p){for(var o,w,D,B=z.vertex_coordinate_bytes*3,F=p+z.nvertices*B;p= -this.maxCount-3&&k(this)};this.begin=function(){this.count=0;this.hasPos=!1;this.hasNormal=!1};this.end=function(b){if(this.count!=0){for(var d=this.count*3;dthis.size-1&&(j=this.size-1);var y=Math.floor(m-k);y<1&&(y=1);m=Math.floor(m+k);m>this.size-1&&(m=this.size-1);var q=Math.floor(t- -k);q<1&&(q=1);k=Math.floor(t+k);k>this.size-1&&(k=this.size-1);for(var A,G,I,E,H,z;x0&&(this.field[I+A]+=E)}}}};this.addPlaneX=function(b,d){var e,h,g,k,j,m=this.size,t=this.yd,x=this.zd,y=this.field,q=m*Math.sqrt(b/d);q>m&&(q=m);for(e=0;e0)for(h=0;ht&&(A=t);for(h=0;h0){j=h*x;for(e=0;esize&&(dist=size);for(g=0;g0){j=zd*g;for(h=0;h= +this.maxCount-3&&k(this)};this.begin=function(){this.count=0;this.hasPos=!1;this.hasNormal=!1};this.end=function(b){if(this.count!=0){for(var d=this.count*3;dthis.size-1&&(j=this.size-1);var y=Math.floor(m-k);y<1&&(y=1);m=Math.floor(m+k);m>this.size-1&&(m=this.size-1);var q=Math.floor(t- +k);q<1&&(q=1);k=Math.floor(t+k);k>this.size-1&&(k=this.size-1);for(var A,G,H,E,I,z;x0&&(this.field[H+A]+=E)}}}};this.addPlaneX=function(b,d){var e,g,h,k,j,m=this.size,t=this.yd,x=this.zd,y=this.field,q=m*Math.sqrt(b/d);q>m&&(q=m);for(e=0;e0)for(g=0;gt&&(A=t);for(g=0;g0){j=g*x;for(e=0;esize&&(dist=size);for(h=0;h0){j=zd*h;for(g=0;g>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgb("+~~(this.r*255)+","+~~(this.g*255)+","+~~(this.b*255)+")"},clone:function(){return new THREE.Color(this.hex)}}; THREE.Vector2=function(a,b){this.set(a||0,b||0)}; THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.set(a.x,a.y);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y);return this},multiplyScalar:function(a){this.set(this.x*a,this.y*a);return this},negate:function(){this.set(-this.x,-this.y);return this},unit:function(){this.multiplyScalar(1/ this.length());return this},length:function(){return Math.sqrt(this.lengthSq())},lengthSq:function(){return this.x*this.x+this.y*this.y},clone:function(){return new THREE.Vector2(this.x,this.y)}};THREE.Vector3=function(a,b,c){this.set(a||0,b||0,c||0)}; THREE.Vector3.prototype={set:function(a,b,c){this.x=a;this.y=b;this.z=c;return this},copy:function(a){this.set(a.x,a.y,a.z);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y,a.z+b.z);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y,this.z+a.z);return this},addScalar:function(a){this.set(this.x+a,this.y+a,this.z+a);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y,a.z-b.z);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y,this.z-a.z);return this},cross:function(a, -b){this.set(a.y*b.z-a.z*b.y,a.z*b.x-a.x*b.z,a.x*b.y-a.y*b.x);return this},crossSelf:function(a){var b=this.x,c=this.y,d=this.z;this.set(c*a.z-d*a.y,d*a.x-b*a.z,b*a.y-c*a.x);return this},multiply:function(a,b){this.set(a.x*b.x,a.y*b.y,a.z*b.z);return this},multiplySelf:function(a){this.set(this.x*a.x,this.y*a.y,this.z*a.z);return this},multiplyScalar:function(a){this.set(this.x*a,this.y*a,this.z*a);return this},divideSelf:function(a){this.set(this.x/a.x,this.y/a.y,this.z/a.z);return this},divideScalar:function(a){this.set(this.x/ +b){this.set(a.y*b.z-a.z*b.y,a.z*b.x-a.x*b.z,a.x*b.y-a.y*b.x);return this},crossSelf:function(a){var b=this.x,c=this.y,e=this.z;this.set(c*a.z-e*a.y,e*a.x-b*a.z,b*a.y-c*a.x);return this},multiply:function(a,b){this.set(a.x*b.x,a.y*b.y,a.z*b.z);return this},multiplySelf:function(a){this.set(this.x*a.x,this.y*a.y,this.z*a.z);return this},multiplyScalar:function(a){this.set(this.x*a,this.y*a,this.z*a);return this},divideSelf:function(a){this.set(this.x/a.x,this.y/a.y,this.z/a.z);return this},divideScalar:function(a){this.set(this.x/ a,this.y/a,this.z/a);return this},negate:function(){this.set(-this.x,-this.y,-this.z);return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(a){var b=this.x-a.x,c=this.y-a.y;a=this.z-a.z;return b*b+c*c+a*a},length:function(){return Math.sqrt(this.lengthSq())},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},lengthManhattan:function(){return this.x+this.y+this.z},normalize:function(){var a= this.length();a>0?this.multiplyScalar(1/a):this.set(0,0,0);return this},setPositionFromMatrix:function(a){this.x=a.n14;this.y=a.n24;this.z=a.n34},setRotationFromMatrix:function(a){this.y=Math.asin(a.n13);var b=Math.cos(this.y);if(Math.abs(b)>1.0E-5){this.x=Math.atan2(-a.n23/b,a.n33/b);this.z=Math.atan2(-a.n13/b,a.n11/b)}else{this.x=0;this.z=Math.atan2(a.n21,a.n22)}},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){return Math.abs(this.x)<1.0E-4&&Math.abs(this.y)< -1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)}};THREE.Vector4=function(a,b,c,d){this.set(a||0,b||0,c||0,d||1)}; -THREE.Vector4.prototype={set:function(a,b,c,d){this.x=a;this.y=b;this.z=c;this.w=d;return this},copy:function(a){this.set(a.x,a.y,a.z,a.w||1);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y,a.z+b.z,a.w+b.w);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y,this.z+a.z,this.w+a.w);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y,a.z-b.z,a.w-b.w);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y,this.z-a.z,this.w-a.w);return this},multiplyScalar:function(a){this.set(this.x* +1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)}};THREE.Vector4=function(a,b,c,e){this.set(a||0,b||0,c||0,e||1)}; +THREE.Vector4.prototype={set:function(a,b,c,e){this.x=a;this.y=b;this.z=c;this.w=e;return this},copy:function(a){this.set(a.x,a.y,a.z,a.w||1);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y,a.z+b.z,a.w+b.w);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y,this.z+a.z,this.w+a.w);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y,a.z-b.z,a.w-b.w);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y,this.z-a.z,this.w-a.w);return this},multiplyScalar:function(a){this.set(this.x* a,this.y*a,this.z*a,this.w*a);return this},divideScalar:function(a){this.set(this.x/a,this.y/a,this.z/a,this.w/a);return this},lerpSelf:function(a,b){this.set(this.x+(a.x-this.x)*b,this.y+(a.y-this.y)*b,this.z+(a.z-this.z)*b,this.w+(a.w-this.w)*b)},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)}};THREE.Ray=function(a,b){this.origin=a||new THREE.Vector3;this.direction=b||new THREE.Vector3}; -THREE.Ray.prototype={intersectScene:function(a){var b,c,d=a.objects,e=[];a=0;for(b=d.length;a0&&D>0&&G+D<1}var c,d,e,f,g,j,h,i,n,l, -q,m=a.geometry,t=m.vertices,v=[];c=0;for(d=m.faces.length;ch?d:h;e=e>i?e:i}a()}; -this.add3Points=function(h,i,n,l,q,m){if(j){j=!1;b=hn?h>q?h:q:n>q?n:q;e=i>l?i>m?i:m:l>m?l:m}else{b=hn?h>q?h>d?h:d:q>d?q:d:n>q?n>d?n:d:q>d?q:d;e=i>l?i>m?i>e?i:e:m>e?m:e:l>m?l>e?l:e:m>e?m:e}a()};this.addRectangle=function(h){if(j){j=!1;b=h.getLeft();c=h.getTop();d=h.getRight();e=h.getBottom()}else{b=bh.getRight()? -d:h.getRight();e=e>h.getBottom()?e:h.getBottom()}a()};this.inflate=function(h){b-=h;c-=h;d+=h;e+=h;a()};this.minSelf=function(h){b=b>h.getLeft()?b:h.getLeft();c=c>h.getTop()?c:h.getTop();d=d=0&&Math.min(e,h.getBottom())-Math.max(c,h.getTop())>=0};this.empty=function(){j=!0;e=d=c=b=0;a()};this.isEmpty=function(){return j}}; +THREE.Ray.prototype={intersectScene:function(a){var b,c,e=a.objects,d=[];a=0;for(b=e.length;a0&&D>0&&H+D<1}var c,e,d,f,g,j,h,i,l,m, +p,n=a.geometry,t=n.vertices,w=[];c=0;for(e=n.faces.length;ch?e:h;d=d>i?d:i}a()}; +this.add3Points=function(h,i,l,m,p,n){if(j){j=!1;b=hl?h>p?h:p:l>p?l:p;d=i>m?i>n?i:n:m>n?m:n}else{b=hl?h>p?h>e?h:e:p>e?p:e:l>p?l>e?l:e:p>e?p:e;d=i>m?i>n?i>d?i:d:n>d?n:d:m>n?m>d?m:d:n>d?n:d}a()};this.addRectangle=function(h){if(j){j=!1;b=h.getLeft();c=h.getTop();e=h.getRight();d=h.getBottom()}else{b=bh.getRight()? +e:h.getRight();d=d>h.getBottom()?d:h.getBottom()}a()};this.inflate=function(h){b-=h;c-=h;e+=h;d+=h;a()};this.minSelf=function(h){b=b>h.getLeft()?b:h.getLeft();c=c>h.getTop()?c:h.getTop();e=e=0&&Math.min(d,h.getBottom())-Math.max(c,h.getTop())>=0};this.empty=function(){j=!0;d=e=c=b=0;a()};this.isEmpty=function(){return j}}; THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a,b=this.m;a=b[1];b[1]=b[3];b[3]=a;a=b[2];b[2]=b[6];b[6]=a;a=b[5];b[5]=b[7];b[7]=a;return this},transposeIntoArray:function(a){var b=this.m;a[0]=b[0];a[1]=b[3];a[2]=b[6];a[3]=b[1];a[4]=b[4];a[5]=b[7];a[6]=b[2];a[7]=b[5];a[8]=b[8];return this}}; -THREE.Matrix4=function(a,b,c,d,e,f,g,j,h,i,n,l,q,m,t,v){this.set(a||1,b||0,c||0,d||0,e||0,f||1,g||0,j||0,h||0,i||0,n||1,l||0,q||0,m||0,t||0,v||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; -THREE.Matrix4.prototype={set:function(a,b,c,d,e,f,g,j,h,i,n,l,q,m,t,v){this.n11=a;this.n12=b;this.n13=c;this.n14=d;this.n21=e;this.n22=f;this.n23=g;this.n24=j;this.n31=h;this.n32=i;this.n33=n;this.n34=l;this.n41=q;this.n42=m;this.n43=t;this.n44=v;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(a){this.set(a.n11,a.n12,a.n13,a.n14,a.n21,a.n22,a.n23,a.n24,a.n31,a.n32,a.n33,a.n34,a.n41,a.n42,a.n43,a.n44);return this},lookAt:function(a,b,c){var d=THREE.Matrix4.__v1, -e=THREE.Matrix4.__v2,f=THREE.Matrix4.__v3;f.sub(a,b).normalize();if(f.length()===0)f.z=1;d.cross(c,f).normalize();if(d.length()===0){f.x+=1.0E-4;d.cross(c,f).normalize()}e.cross(f,d).normalize();this.n11=d.x;this.n12=e.x;this.n13=f.x;this.n21=d.y;this.n22=e.y;this.n23=f.y;this.n31=d.z;this.n32=e.z;this.n33=f.z;return this},multiplyVector3:function(a){var b=a.x,c=a.y,d=a.z,e=1/(this.n41*b+this.n42*c+this.n43*d+this.n44);a.x=(this.n11*b+this.n12*c+this.n13*d+this.n14)*e;a.y=(this.n21*b+this.n22*c+this.n23* -d+this.n24)*e;a.z=(this.n31*b+this.n32*c+this.n33*d+this.n34)*e;return a},multiplyVector4:function(a){var b=a.x,c=a.y,d=a.z,e=a.w;a.x=this.n11*b+this.n12*c+this.n13*d+this.n14*e;a.y=this.n21*b+this.n22*c+this.n23*d+this.n24*e;a.z=this.n31*b+this.n32*c+this.n33*d+this.n34*e;a.w=this.n41*b+this.n42*c+this.n43*d+this.n44*e;return a},rotateAxis:function(a){var b=a.x,c=a.y,d=a.z;a.x=b*this.n11+c*this.n12+d*this.n13;a.y=b*this.n21+c*this.n22+d*this.n23;a.z=b*this.n31+c*this.n32+d*this.n33;a.normalize(); -return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var c=a.n11,d=a.n12,e=a.n13,f=a.n14,g=a.n21,j=a.n22,h=a.n23,i=a.n24,n=a.n31,l=a.n32,q=a.n33,m=a.n34,t=a.n41,v=a.n42,D=a.n43,p=a.n44,y=b.n11,E=b.n12,O=b.n13,G=b.n14,r=b.n21,S=b.n22, -M=b.n23,R=b.n24,Q=b.n31,B=b.n32,x=b.n33,X=b.n34;this.n11=c*y+d*r+e*Q;this.n12=c*E+d*S+e*B;this.n13=c*O+d*M+e*x;this.n14=c*G+d*R+e*X+f;this.n21=g*y+j*r+h*Q;this.n22=g*E+j*S+h*B;this.n23=g*O+j*M+h*x;this.n24=g*G+j*R+h*X+i;this.n31=n*y+l*r+q*Q;this.n32=n*E+l*S+q*B;this.n33=n*O+l*M+q*x;this.n34=n*G+l*R+q*X+m;this.n41=t*y+v*r+D*Q;this.n42=t*E+v*S+D*B;this.n43=t*O+v*M+D*x;this.n44=t*G+v*R+D*X+p;return this},multiplyToArray:function(a,b,c){this.multiply(a,b);c[0]=this.n11;c[1]=this.n21;c[2]=this.n31;c[3]= +THREE.Matrix4=function(a,b,c,e,d,f,g,j,h,i,l,m,p,n,t,w){this.set(a||1,b||0,c||0,e||0,d||0,f||1,g||0,j||0,h||0,i||0,l||1,m||0,p||0,n||0,t||0,w||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; +THREE.Matrix4.prototype={set:function(a,b,c,e,d,f,g,j,h,i,l,m,p,n,t,w){this.n11=a;this.n12=b;this.n13=c;this.n14=e;this.n21=d;this.n22=f;this.n23=g;this.n24=j;this.n31=h;this.n32=i;this.n33=l;this.n34=m;this.n41=p;this.n42=n;this.n43=t;this.n44=w;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(a){this.set(a.n11,a.n12,a.n13,a.n14,a.n21,a.n22,a.n23,a.n24,a.n31,a.n32,a.n33,a.n34,a.n41,a.n42,a.n43,a.n44);return this},lookAt:function(a,b,c){var e=THREE.Matrix4.__v1, +d=THREE.Matrix4.__v2,f=THREE.Matrix4.__v3;f.sub(a,b).normalize();if(f.length()===0)f.z=1;e.cross(c,f).normalize();if(e.length()===0){f.x+=1.0E-4;e.cross(c,f).normalize()}d.cross(f,e).normalize();this.n11=e.x;this.n12=d.x;this.n13=f.x;this.n21=e.y;this.n22=d.y;this.n23=f.y;this.n31=e.z;this.n32=d.z;this.n33=f.z;return this},multiplyVector3:function(a){var b=a.x,c=a.y,e=a.z,d=1/(this.n41*b+this.n42*c+this.n43*e+this.n44);a.x=(this.n11*b+this.n12*c+this.n13*e+this.n14)*d;a.y=(this.n21*b+this.n22*c+this.n23* +e+this.n24)*d;a.z=(this.n31*b+this.n32*c+this.n33*e+this.n34)*d;return a},multiplyVector4:function(a){var b=a.x,c=a.y,e=a.z,d=a.w;a.x=this.n11*b+this.n12*c+this.n13*e+this.n14*d;a.y=this.n21*b+this.n22*c+this.n23*e+this.n24*d;a.z=this.n31*b+this.n32*c+this.n33*e+this.n34*d;a.w=this.n41*b+this.n42*c+this.n43*e+this.n44*d;return a},rotateAxis:function(a){var b=a.x,c=a.y,e=a.z;a.x=b*this.n11+c*this.n12+e*this.n13;a.y=b*this.n21+c*this.n22+e*this.n23;a.z=b*this.n31+c*this.n32+e*this.n33;a.normalize(); +return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var c=a.n11,e=a.n12,d=a.n13,f=a.n14,g=a.n21,j=a.n22,h=a.n23,i=a.n24,l=a.n31,m=a.n32,p=a.n33,n=a.n34,t=a.n41,w=a.n42,D=a.n43,q=a.n44,A=b.n11,E=b.n12,O=b.n13,H=b.n14,r=b.n21,S=b.n22, +N=b.n23,Q=b.n24,R=b.n31,z=b.n32,x=b.n33,U=b.n34;this.n11=c*A+e*r+d*R;this.n12=c*E+e*S+d*z;this.n13=c*O+e*N+d*x;this.n14=c*H+e*Q+d*U+f;this.n21=g*A+j*r+h*R;this.n22=g*E+j*S+h*z;this.n23=g*O+j*N+h*x;this.n24=g*H+j*Q+h*U+i;this.n31=l*A+m*r+p*R;this.n32=l*E+m*S+p*z;this.n33=l*O+m*N+p*x;this.n34=l*H+m*Q+p*U+n;this.n41=t*A+w*r+D*R;this.n42=t*E+w*S+D*z;this.n43=t*O+w*N+D*x;this.n44=t*H+w*Q+D*U+q;return this},multiplyToArray:function(a,b,c){this.multiply(a,b);c[0]=this.n11;c[1]=this.n21;c[2]=this.n31;c[3]= this.n41;c[4]=this.n12;c[5]=this.n22;c[6]=this.n32;c[7]=this.n42;c[8]=this.n13;c[9]=this.n23;c[10]=this.n33;c[11]=this.n43;c[12]=this.n14;c[13]=this.n24;c[14]=this.n34;c[15]=this.n44;return this},multiplySelf:function(a){this.multiply(this,a);return this},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=a;this.n42*=a;this.n43*=a;this.n44*=a;return this},determinant:function(){var a= -this.n11,b=this.n12,c=this.n13,d=this.n14,e=this.n21,f=this.n22,g=this.n23,j=this.n24,h=this.n31,i=this.n32,n=this.n33,l=this.n34,q=this.n41,m=this.n42,t=this.n43,v=this.n44;return d*g*i*q-c*j*i*q-d*f*n*q+b*j*n*q+c*f*l*q-b*g*l*q-d*g*h*m+c*j*h*m+d*e*n*m-a*j*n*m-c*e*l*m+a*g*l*m+d*f*h*t-b*j*h*t-d*e*i*t+a*j*i*t+b*e*l*t-a*f*l*t-c*f*h*v+b*g*h*v+c*e*i*v-a*g*i*v-b*e*n*v+a*f*n*v},transpose:function(){var a;a=this.n21;this.n21=this.n12;this.n12=a;a=this.n31;this.n31=this.n13;this.n13=a;a=this.n32;this.n32= +this.n11,b=this.n12,c=this.n13,e=this.n14,d=this.n21,f=this.n22,g=this.n23,j=this.n24,h=this.n31,i=this.n32,l=this.n33,m=this.n34,p=this.n41,n=this.n42,t=this.n43,w=this.n44;return e*g*i*p-c*j*i*p-e*f*l*p+b*j*l*p+c*f*m*p-b*g*m*p-e*g*h*n+c*j*h*n+e*d*l*n-a*j*l*n-c*d*m*n+a*g*m*n+e*f*h*t-b*j*h*t-e*d*i*t+a*j*i*t+b*d*m*t-a*f*m*t-c*f*h*w+b*g*h*w+c*d*i*w-a*g*i*w-b*d*l*w+a*f*l*w},transpose:function(){var a;a=this.n21;this.n21=this.n12;this.n12=a;a=this.n31;this.n31=this.n13;this.n13=a;a=this.n32;this.n32= this.n23;this.n23=a;a=this.n41;this.n41=this.n14;this.n14=a;a=this.n42;this.n42=this.n24;this.n24=a;a=this.n43;this.n43=this.n34;this.n43=a;return this},clone:function(){var a=new THREE.Matrix4;a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){this.flat[0]=this.n11;this.flat[1]=this.n21; this.flat[2]=this.n31;this.flat[3]=this.n41;this.flat[4]=this.n12;this.flat[5]=this.n22;this.flat[6]=this.n32;this.flat[7]=this.n42;this.flat[8]=this.n13;this.flat[9]=this.n23;this.flat[10]=this.n33;this.flat[11]=this.n43;this.flat[12]=this.n14;this.flat[13]=this.n24;this.flat[14]=this.n34;this.flat[15]=this.n44;return this.flat},flattenToArray:function(a){a[0]=this.n11;a[1]=this.n21;a[2]=this.n31;a[3]=this.n41;a[4]=this.n12;a[5]=this.n22;a[6]=this.n32;a[7]=this.n42;a[8]=this.n13;a[9]=this.n23;a[10]= this.n33;a[11]=this.n43;a[12]=this.n14;a[13]=this.n24;a[14]=this.n34;a[15]=this.n44;return a},flattenToArrayOffset:function(a,b){a[b]=this.n11;a[b+1]=this.n21;a[b+2]=this.n31;a[b+3]=this.n41;a[b+4]=this.n12;a[b+5]=this.n22;a[b+6]=this.n32;a[b+7]=this.n42;a[b+8]=this.n13;a[b+9]=this.n23;a[b+10]=this.n33;a[b+11]=this.n43;a[b+12]=this.n14;a[b+13]=this.n24;a[b+14]=this.n34;a[b+15]=this.n44;return a},setTranslation:function(a,b,c){this.set(1,0,0,a,0,1,0,b,0,0,1,c,0,0,0,1);return this},setScale:function(a, -b,c){this.set(a,0,0,0,0,b,0,0,0,0,c,0,0,0,0,1);return this},setRotationX:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(1,0,0,0,0,b,-a,0,0,a,b,0,0,0,0,1);return this},setRotationY:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(b,0,a,0,0,1,0,0,-a,0,b,0,0,0,0,1);return this},setRotationZ:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(b,-a,0,0,a,b,0,0,0,0,1,0,0,0,0,1);return this},setRotationAxis:function(a,b){var c=Math.cos(b),d=Math.sin(b),e=1-c,f=a.x,g=a.y,j=a.z,h=e*f,i=e*g;this.set(h* -f+c,h*g-d*j,h*j+d*g,0,h*g+d*j,i*g+c,i*j-d*f,0,h*j-d*g,i*j+d*f,e*j*j+c,0,0,0,0,1);return this},setPosition:function(a){this.n14=a.x;this.n24=a.y;this.n34=a.z;return this},setRotationFromEuler:function(a){var b=a.x,c=a.y,d=a.z;a=Math.cos(b);b=Math.sin(b);var e=Math.cos(c);c=Math.sin(c);var f=Math.cos(d);d=Math.sin(d);var g=a*c,j=b*c;this.n11=e*f;this.n12=-e*d;this.n13=c;this.n21=j*f+a*d;this.n22=-j*d+a*f;this.n23=-b*e;this.n31=-g*f+b*d;this.n32=g*d+b*f;this.n33=a*e;return this},setRotationFromQuaternion:function(a){var b= -a.x,c=a.y,d=a.z,e=a.w,f=b+b,g=c+c,j=d+d;a=b*f;var h=b*g;b*=j;var i=c*g;c*=j;d*=j;f*=e;g*=e;e*=j;this.n11=1-(i+d);this.n12=h-e;this.n13=b+g;this.n21=h+e;this.n22=1-(a+d);this.n23=c-f;this.n31=b-g;this.n32=c+f;this.n33=1-(a+i);return this},scale:function(a){var b=a.x,c=a.y;a=a.z;this.n11*=b;this.n12*=c;this.n13*=a;this.n21*=b;this.n22*=c;this.n23*=a;this.n31*=b;this.n32*=c;this.n33*=a;this.n41*=b;this.n42*=c;this.n43*=a;return this},extractPosition:function(a){this.n14=a.n14;this.n24=a.n24;this.n34= -a.n34},extractRotation:function(a,b){var c=1/b.x,d=1/b.y,e=1/b.z;this.n11=a.n11*c;this.n21=a.n21*c;this.n31=a.n31*c;this.n12=a.n12*d;this.n22=a.n22*d;this.n32=a.n32*d;this.n13=a.n13*e;this.n23=a.n23*e;this.n33=a.n33*e}}; -THREE.Matrix4.makeInvert=function(a,b){var c=a.n11,d=a.n12,e=a.n13,f=a.n14,g=a.n21,j=a.n22,h=a.n23,i=a.n24,n=a.n31,l=a.n32,q=a.n33,m=a.n34,t=a.n41,v=a.n42,D=a.n43,p=a.n44;b===undefined&&(b=new THREE.Matrix4);b.n11=h*m*v-i*q*v+i*l*D-j*m*D-h*l*p+j*q*p;b.n12=f*q*v-e*m*v-f*l*D+d*m*D+e*l*p-d*q*p;b.n13=e*i*v-f*h*v+f*j*D-d*i*D-e*j*p+d*h*p;b.n14=f*h*l-e*i*l-f*j*q+d*i*q+e*j*m-d*h*m;b.n21=i*q*t-h*m*t-i*n*D+g*m*D+h*n*p-g*q*p;b.n22=e*m*t-f*q*t+f*n*D-c*m*D-e*n*p+c*q*p;b.n23=f*h*t-e*i*t-f*g*D+c*i*D+e*g*p-c*h*p; -b.n24=e*i*n-f*h*n+f*g*q-c*i*q-e*g*m+c*h*m;b.n31=j*m*t-i*l*t+i*n*v-g*m*v-j*n*p+g*l*p;b.n32=f*l*t-d*m*t-f*n*v+c*m*v+d*n*p-c*l*p;b.n33=e*i*t-f*j*t+f*g*v-c*i*v-d*g*p+c*j*p;b.n34=f*j*n-d*i*n-f*g*l+c*i*l+d*g*m-c*j*m;b.n41=h*l*t-j*q*t-h*n*v+g*q*v+j*n*D-g*l*D;b.n42=d*q*t-e*l*t+e*n*v-c*q*v-d*n*D+c*l*D;b.n43=e*j*t-d*h*t-e*g*v+c*h*v+d*g*D-c*j*D;b.n44=d*h*n-e*j*n+e*g*l-c*h*l-d*g*q+c*j*q;b.multiplyScalar(1/a.determinant());return b}; -THREE.Matrix4.makeInvert3x3=function(a){var b=a.m33,c=b.m,d=a.n33*a.n22-a.n32*a.n23,e=-a.n33*a.n21+a.n31*a.n23,f=a.n32*a.n21-a.n31*a.n22,g=-a.n33*a.n12+a.n32*a.n13,j=a.n33*a.n11-a.n31*a.n13,h=-a.n32*a.n11+a.n31*a.n12,i=a.n23*a.n12-a.n22*a.n13,n=-a.n23*a.n11+a.n21*a.n13,l=a.n22*a.n11-a.n21*a.n12;a=a.n11*d+a.n21*g+a.n31*i;if(a==0)throw"matrix not invertible";a=1/a;c[0]=a*d;c[1]=a*e;c[2]=a*f;c[3]=a*g;c[4]=a*j;c[5]=a*h;c[6]=a*i;c[7]=a*n;c[8]=a*l;return b}; -THREE.Matrix4.makeFrustum=function(a,b,c,d,e,f){var g;g=new THREE.Matrix4;g.n11=2*e/(b-a);g.n12=0;g.n13=(b+a)/(b-a);g.n14=0;g.n21=0;g.n22=2*e/(d-c);g.n23=(d+c)/(d-c);g.n24=0;g.n31=0;g.n32=0;g.n33=-(f+e)/(f-e);g.n34=-2*f*e/(f-e);g.n41=0;g.n42=0;g.n43=-1;g.n44=0;return g};THREE.Matrix4.makePerspective=function(a,b,c,d){var e;a=c*Math.tan(a*Math.PI/360);e=-a;return THREE.Matrix4.makeFrustum(e*b,a*b,e,a,c,d)}; -THREE.Matrix4.makeOrtho=function(a,b,c,d,e,f){var g,j,h,i;g=new THREE.Matrix4;j=b-a;h=c-d;i=f-e;g.n11=2/j;g.n12=0;g.n13=0;g.n14=-((b+a)/j);g.n21=0;g.n22=2/h;g.n23=0;g.n24=-((c+d)/h);g.n31=0;g.n32=0;g.n33=-2/i;g.n34=-((f+e)/i);g.n41=0;g.n42=0;g.n43=0;g.n44=1;return g};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3; +b,c){this.set(a,0,0,0,0,b,0,0,0,0,c,0,0,0,0,1);return this},setRotationX:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(1,0,0,0,0,b,-a,0,0,a,b,0,0,0,0,1);return this},setRotationY:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(b,0,a,0,0,1,0,0,-a,0,b,0,0,0,0,1);return this},setRotationZ:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(b,-a,0,0,a,b,0,0,0,0,1,0,0,0,0,1);return this},setRotationAxis:function(a,b){var c=Math.cos(b),e=Math.sin(b),d=1-c,f=a.x,g=a.y,j=a.z,h=d*f,i=d*g;this.set(h* +f+c,h*g-e*j,h*j+e*g,0,h*g+e*j,i*g+c,i*j-e*f,0,h*j-e*g,i*j+e*f,d*j*j+c,0,0,0,0,1);return this},setPosition:function(a){this.n14=a.x;this.n24=a.y;this.n34=a.z;return this},setRotationFromEuler:function(a){var b=a.x,c=a.y,e=a.z;a=Math.cos(b);b=Math.sin(b);var d=Math.cos(c);c=Math.sin(c);var f=Math.cos(e);e=Math.sin(e);var g=a*c,j=b*c;this.n11=d*f;this.n12=-d*e;this.n13=c;this.n21=j*f+a*e;this.n22=-j*e+a*f;this.n23=-b*d;this.n31=-g*f+b*e;this.n32=g*e+b*f;this.n33=a*d;return this},setRotationFromQuaternion:function(a){var b= +a.x,c=a.y,e=a.z,d=a.w,f=b+b,g=c+c,j=e+e;a=b*f;var h=b*g;b*=j;var i=c*g;c*=j;e*=j;f*=d;g*=d;d*=j;this.n11=1-(i+e);this.n12=h-d;this.n13=b+g;this.n21=h+d;this.n22=1-(a+e);this.n23=c-f;this.n31=b-g;this.n32=c+f;this.n33=1-(a+i);return this},scale:function(a){var b=a.x,c=a.y;a=a.z;this.n11*=b;this.n12*=c;this.n13*=a;this.n21*=b;this.n22*=c;this.n23*=a;this.n31*=b;this.n32*=c;this.n33*=a;this.n41*=b;this.n42*=c;this.n43*=a;return this},extractPosition:function(a){this.n14=a.n14;this.n24=a.n24;this.n34= +a.n34},extractRotation:function(a,b){var c=1/b.x,e=1/b.y,d=1/b.z;this.n11=a.n11*c;this.n21=a.n21*c;this.n31=a.n31*c;this.n12=a.n12*e;this.n22=a.n22*e;this.n32=a.n32*e;this.n13=a.n13*d;this.n23=a.n23*d;this.n33=a.n33*d}}; +THREE.Matrix4.makeInvert=function(a,b){var c=a.n11,e=a.n12,d=a.n13,f=a.n14,g=a.n21,j=a.n22,h=a.n23,i=a.n24,l=a.n31,m=a.n32,p=a.n33,n=a.n34,t=a.n41,w=a.n42,D=a.n43,q=a.n44;b===undefined&&(b=new THREE.Matrix4);b.n11=h*n*w-i*p*w+i*m*D-j*n*D-h*m*q+j*p*q;b.n12=f*p*w-d*n*w-f*m*D+e*n*D+d*m*q-e*p*q;b.n13=d*i*w-f*h*w+f*j*D-e*i*D-d*j*q+e*h*q;b.n14=f*h*m-d*i*m-f*j*p+e*i*p+d*j*n-e*h*n;b.n21=i*p*t-h*n*t-i*l*D+g*n*D+h*l*q-g*p*q;b.n22=d*n*t-f*p*t+f*l*D-c*n*D-d*l*q+c*p*q;b.n23=f*h*t-d*i*t-f*g*D+c*i*D+d*g*q-c*h*q; +b.n24=d*i*l-f*h*l+f*g*p-c*i*p-d*g*n+c*h*n;b.n31=j*n*t-i*m*t+i*l*w-g*n*w-j*l*q+g*m*q;b.n32=f*m*t-e*n*t-f*l*w+c*n*w+e*l*q-c*m*q;b.n33=d*i*t-f*j*t+f*g*w-c*i*w-e*g*q+c*j*q;b.n34=f*j*l-e*i*l-f*g*m+c*i*m+e*g*n-c*j*n;b.n41=h*m*t-j*p*t-h*l*w+g*p*w+j*l*D-g*m*D;b.n42=e*p*t-d*m*t+d*l*w-c*p*w-e*l*D+c*m*D;b.n43=d*j*t-e*h*t-d*g*w+c*h*w+e*g*D-c*j*D;b.n44=e*h*l-d*j*l+d*g*m-c*h*m-e*g*p+c*j*p;b.multiplyScalar(1/a.determinant());return b}; +THREE.Matrix4.makeInvert3x3=function(a){var b=a.m33,c=b.m,e=a.n33*a.n22-a.n32*a.n23,d=-a.n33*a.n21+a.n31*a.n23,f=a.n32*a.n21-a.n31*a.n22,g=-a.n33*a.n12+a.n32*a.n13,j=a.n33*a.n11-a.n31*a.n13,h=-a.n32*a.n11+a.n31*a.n12,i=a.n23*a.n12-a.n22*a.n13,l=-a.n23*a.n11+a.n21*a.n13,m=a.n22*a.n11-a.n21*a.n12;a=a.n11*e+a.n21*g+a.n31*i;if(a==0)throw"matrix not invertible";a=1/a;c[0]=a*e;c[1]=a*d;c[2]=a*f;c[3]=a*g;c[4]=a*j;c[5]=a*h;c[6]=a*i;c[7]=a*l;c[8]=a*m;return b}; +THREE.Matrix4.makeFrustum=function(a,b,c,e,d,f){var g;g=new THREE.Matrix4;g.n11=2*d/(b-a);g.n12=0;g.n13=(b+a)/(b-a);g.n14=0;g.n21=0;g.n22=2*d/(e-c);g.n23=(e+c)/(e-c);g.n24=0;g.n31=0;g.n32=0;g.n33=-(f+d)/(f-d);g.n34=-2*f*d/(f-d);g.n41=0;g.n42=0;g.n43=-1;g.n44=0;return g};THREE.Matrix4.makePerspective=function(a,b,c,e){var d;a=c*Math.tan(a*Math.PI/360);d=-a;return THREE.Matrix4.makeFrustum(d*b,a*b,d,a,c,e)}; +THREE.Matrix4.makeOrtho=function(a,b,c,e,d,f){var g,j,h,i;g=new THREE.Matrix4;j=b-a;h=c-e;i=f-d;g.n11=2/j;g.n12=0;g.n13=0;g.n14=-((b+a)/j);g.n21=0;g.n22=2/h;g.n23=0;g.n24=-((c+e)/h);g.n31=0;g.n32=0;g.n33=-2/i;g.n34=-((f+d)/i);g.n41=0;g.n42=0;g.n43=0;g.n44=1;return g};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3; THREE.Object3D=function(){this.parent=undefined;this.children=[];this.up=new THREE.Vector3(0,1,0);this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.rotationAutoUpdate=!0;this.matrix=new THREE.Matrix4;this.matrixWorld=new THREE.Matrix4;this.matrixRotationWorld=new THREE.Matrix4;this.matrixAutoUpdate=!0;this.matrixWorldNeedsUpdate=!0;this.quaternion=new THREE.Quaternion;this.useQuaternion=!1;this.boundRadius=0;this.boundRadiusScale=1;this.visible= !0;this._vector=new THREE.Vector3}; THREE.Object3D.prototype={translate:function(a,b){this.matrix.rotateAxis(b);this.position.addSelf(b.multiplyScalar(a))},translateX:function(a){this.translate(a,this._vector.set(1,0,0))},translateY:function(a){this.translate(a,this._vector.set(0,1,0))},translateZ:function(a){this.translate(a,this._vector.set(0,0,1))},lookAt:function(a){this.matrix.lookAt(this.position,a,this.up);this.rotationAutoUpdate&&this.rotation.setRotationFromMatrix(this.matrix)},addChild:function(a){if(this.children.indexOf(a)===-1){a.parent!== undefined&&a.parent.removeChild(a);a.parent=this;this.children.push(a);for(var b=this;b instanceof THREE.Scene===!1&&b!==undefined;)b=b.parent;b!==undefined&&b.addChildRecurse(a)}},removeChild:function(a){var b=this.children.indexOf(a);if(b!==-1){a.parent=undefined;this.children.splice(b,1)}},updateMatrix:function(){this.matrix.setPosition(this.position);this.useQuaternion?this.matrix.setRotationFromQuaternion(this.quaternion):this.matrix.setRotationFromEuler(this.rotation);if(this.scale.x!==1||this.scale.y!== -1||this.scale.z!==1){this.matrix.scale(this.scale);this.boundRadiusScale=Math.max(this.scale.x,Math.max(this.scale.y,this.scale.z))}this.matrixWorldNeedsUpdate=!0},update:function(a,b,c){this.matrixAutoUpdate&&this.updateMatrix();if(this.matrixWorldNeedsUpdate||b){a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);this.matrixRotationWorld.extractRotation(this.matrixWorld,this.scale);this.matrixWorldNeedsUpdate=!1;b=!0}a=0;for(var d=this.children.length;a=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var f=Math.acos(e),g=Math.sqrt(1-e*e);if(Math.abs(g)<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)*f)/g;d=Math.sin(d*f)/g;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,f){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.materials=f instanceof Array?f:[f];this.centroid=new THREE.Vector3}; -THREE.Face4=function(a,b,c,d,e,f,g){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=f instanceof THREE.Color?f:new THREE.Color;this.vertexColors=f instanceof Array?f:[];this.materials=g instanceof Array?g:[g];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.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; +1||this.scale.z!==1){this.matrix.scale(this.scale);this.boundRadiusScale=Math.max(this.scale.x,Math.max(this.scale.y,this.scale.z))}this.matrixWorldNeedsUpdate=!0},update:function(a,b,c){this.matrixAutoUpdate&&this.updateMatrix();if(this.matrixWorldNeedsUpdate||b){a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);this.matrixRotationWorld.extractRotation(this.matrixWorld,this.scale);this.matrixWorldNeedsUpdate=!1;b=!0}a=0;for(var e=this.children.length;a=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var f=Math.acos(d),g=Math.sqrt(1-d*d);if(Math.abs(g)<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}d=Math.sin((1-e)*f)/g;e=Math.sin(e*f)/g;c.w=a.w*d+b.w*e;c.x=a.x*d+b.x*e;c.y=a.y*d+b.y*e;c.z=a.z*d+b.z*e;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; +THREE.Face3=function(a,b,c,e,d,f){this.a=a;this.b=b;this.c=c;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=d instanceof THREE.Color?d:new THREE.Color;this.vertexColors=d instanceof Array?d:[];this.vertexTangents=[];this.materials=f instanceof Array?f:[f];this.centroid=new THREE.Vector3}; +THREE.Face4=function(a,b,c,e,d,f,g){this.a=a;this.b=b;this.c=c;this.d=e;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.color=f instanceof THREE.Color?f:new THREE.Color;this.vertexColors=f instanceof Array?f:[];this.vertexTangents=[];this.materials=g instanceof Array?g:[g];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.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; THREE.Geometry.prototype={computeCentroids:function(){var a,b,c;a=0;for(b=this.faces.length;a0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var b= -1,c=this.vertices.length;bthis.boundingBox.x[1])this.boundingBox.x[1]=a.position.x;if(a.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=a.position.y;if(a.position.zthis.boundingBox.z[1])this.boundingBox.z[1]=a.position.z}}}, -computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,c=this.vertices.length;b0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var b=1,c=this.vertices.length;bthis.boundingBox.x[1])this.boundingBox.x[1]=a.position.x;if(a.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=a.position.y;if(a.position.zthis.boundingBox.z[1])this.boundingBox.z[1]=a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,c=this.vertices.length;b1){console.log("THREE.Animation.update: Warning! Scale out of bounds:"+d+" on bone "+m);d=d<0?0:1}if(c==="pos"){c=a.position;if(this.interpolationType===THREE.AnimationHandler.LINEAR){c.x=e[0]+(f[0]-e[0])*d;c.y=e[1]+(f[1]-e[1])*d;c.z=e[2]+(f[2]-e[2])*d}else if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){this.points[0]= -this.getPrevKeyWith("pos",m,g.index-1).pos;this.points[1]=e;this.points[2]=f;this.points[3]=this.getNextKeyWith("pos",m,j.index+1).pos;d=d*0.33+0.33;e=this.interpolateCatmullRom(this.points,d);c.x=e[0];c.y=e[1];c.z=e[2];if(this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){d=this.interpolateCatmullRom(this.points,d*1.01);this.target.set(d[0],d[1],d[2]);this.target.subSelf(c);this.target.y=0;this.target.normalize();d=Math.atan2(this.target.x,this.target.z);a.rotation.set(0,d,0)}}}else if(c=== -"rot")THREE.Quaternion.slerp(e,f,a.quaternion,d);else if(c==="scl"){c=a.scale;c.x=e[0]+(f[0]-e[0])*d;c.y=e[1]+(f[1]-e[1])*d;c.z=e[2]+(f[2]-e[2])*d}}}}if(this.JITCompile&&n[0][i]===undefined){this.hierarchy[0].update(undefined,!0);for(m=0;ma.length-2?f:f+1;c[3]=f>a.length-3?f:f+2;f=a[c[0]];j=a[c[1]];h=a[c[2]];i=a[c[3]];c=e*e;g=e*c;d[0]=this.interpolate(f[0],j[0],h[0],i[0],e,c,g);d[1]=this.interpolate(f[1],j[1],h[1],i[1],e,c,g);d[2]=this.interpolate(f[2],j[2],h[2],i[2],e,c,g);return d}; -THREE.Animation.prototype.interpolate=function(a,b,c,d,e,f,g){a=(c-a)*0.5;d=(d-b)*0.5;return(2*(b-c)+a+d)*g+(-3*(b-c)-2*a-d)*f+a*e+b};THREE.Animation.prototype.getNextKeyWith=function(a,b,c){var d=this.data.hierarchy[b].keys;if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)c=c0?c:0:c>=0?c:c+d.length;c>=0;c--)if(d[c][a]!==undefined)return d[c];return this.data.hierarchy[b].keys[d.length-1]}; -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;THREE.Camera.prototype.supr=THREE.Object3D.prototype; +THREE.Animation.prototype.update=function(a){if(this.isPlaying){var b=["pos","rot","scl"],c,e,d,f,g,j,h,i,l=this.data.JIT.hierarchy,m,p;this.currentTime+=a*this.timeScale;p=this.currentTime;m=this.currentTime%=this.data.length;i=parseInt(Math.min(m*this.data.fps,this.data.length*this.data.fps),10);for(var n=0,t=this.hierarchy.length;n1){console.log("THREE.Animation.update: Warning! Scale out of bounds:"+e+" on bone "+n);e=e<0?0:1}if(c==="pos"){c=a.position;if(this.interpolationType===THREE.AnimationHandler.LINEAR){c.x=d[0]+(f[0]-d[0])*e;c.y=d[1]+(f[1]-d[1])*e;c.z=d[2]+(f[2]-d[2])*e}else if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){this.points[0]= +this.getPrevKeyWith("pos",n,g.index-1).pos;this.points[1]=d;this.points[2]=f;this.points[3]=this.getNextKeyWith("pos",n,j.index+1).pos;e=e*0.33+0.33;d=this.interpolateCatmullRom(this.points,e);c.x=d[0];c.y=d[1];c.z=d[2];if(this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){e=this.interpolateCatmullRom(this.points,e*1.01);this.target.set(e[0],e[1],e[2]);this.target.subSelf(c);this.target.y=0;this.target.normalize();e=Math.atan2(this.target.x,this.target.z);a.rotation.set(0,e,0)}}}else if(c=== +"rot")THREE.Quaternion.slerp(d,f,a.quaternion,e);else if(c==="scl"){c=a.scale;c.x=d[0]+(f[0]-d[0])*e;c.y=d[1]+(f[1]-d[1])*e;c.z=d[2]+(f[2]-d[2])*e}}}}if(this.JITCompile&&l[0][i]===undefined){this.hierarchy[0].update(undefined,!0);for(n=0;na.length-2?f:f+1;c[3]=f>a.length-3?f:f+2;f=a[c[0]];j=a[c[1]];h=a[c[2]];i=a[c[3]];c=d*d;g=d*c;e[0]=this.interpolate(f[0],j[0],h[0],i[0],d,c,g);e[1]=this.interpolate(f[1],j[1],h[1],i[1],d,c,g);e[2]=this.interpolate(f[2],j[2],h[2],i[2],d,c,g);return e}; +THREE.Animation.prototype.interpolate=function(a,b,c,e,d,f,g){a=(c-a)*0.5;e=(e-b)*0.5;return(2*(b-c)+a+e)*g+(-3*(b-c)-2*a-e)*f+a*d+b};THREE.Animation.prototype.getNextKeyWith=function(a,b,c){var e=this.data.hierarchy[b].keys;if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)c=c0?c:0:c>=0?c:c+e.length;c>=0;c--)if(e[c][a]!==undefined)return e[c];return this.data.hierarchy[b].keys[e.length-1]}; +THREE.Camera=function(a,b,c,e,d){THREE.Object3D.call(this);this.fov=a||50;this.aspect=b||1;this.near=c||0.1;this.far=e||2E3;this.target=d||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;THREE.Camera.prototype.supr=THREE.Object3D.prototype; THREE.Camera.prototype.translate=function(a,b){this.matrix.rotateAxis(b);this.position.addSelf(b.multiplyScalar(a));this.target.position.addSelf(b.multiplyScalar(a))};THREE.Camera.prototype.updateProjectionMatrix=function(){this.projectionMatrix=THREE.Matrix4.makePerspective(this.fov,this.aspect,this.near,this.far)};THREE.Camera.prototype.updateMatrix=function(){this.update(undefined,!0)}; THREE.Camera.prototype.update=function(a,b,c){if(this.useTarget){this.matrix.lookAt(this.position,this.target.position,this.up);this.matrix.setPosition(this.position);a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);THREE.Matrix4.makeInvert(this.matrixWorld,this.matrixWorldInverse);b=!0}else{this.matrixAutoUpdate&&(b|=this.updateMatrix());if(b||this.matrixWorldNeedsUpdate){a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);this.matrixWorldNeedsUpdate= !1;b=!0;THREE.Matrix4.makeInvert(this.matrixWorld,this.matrixWorldInverse)}}for(a=0;a=0&&T>=0&&N>=0&&U>=0)return!0;else if(aa<0&&T<0||N<0&&U<0)return!1;else{if(aa<0)X=Math.max(X,aa/(aa-T));else T<0&&(Y=Math.min(Y,aa/(aa-T)));if(N<0)X=Math.max(X,N/(N-U));else U<0&&(Y=Math.min(Y,N/(N-U)));if(Yaa&&g.positionScreen.z0&&G.z<1){Z=E[y]=E[y]||new THREE.RenderableParticle;y++;p=Z;p.x=G.x/G.w;p.y=G.y/G.w;p.z=G.z;p.rotation=P.rotation.z;p.scale.x=P.scale.x* -Math.abs(p.x-(G.x+x.projectionMatrix.n11)/(G.w+x.projectionMatrix.n14));p.scale.y=P.scale.y*Math.abs(p.y-(G.y+x.projectionMatrix.n22)/(G.w+x.projectionMatrix.n24));p.materials=P.materials;Y.push(p)}}}}X&&Y.sort(b);return Y}}; -THREE.CanvasRenderer=function(){function a($){if(q!=$)i.globalAlpha=q=$}function b($){if(m!=$){switch($){case THREE.NormalBlending:i.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:i.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:i.globalCompositeOperation="darker"}m=$}}var c=null,d=new THREE.Projector,e=document.createElement("canvas"),f,g,j,h,i=e.getContext("2d"),n=new THREE.Color(0),l=0,q=1,m=0,t=null,v=null,D=1,p,y,E,O,G=new THREE.RenderableVertex, -r=new THREE.RenderableVertex,S,M,R,Q,B,x,X,Y,aa,T,N,U,w=new THREE.Color,K=new THREE.Color,z=new THREE.Color,H=new THREE.Color,L=new THREE.Color,da,ga,P,Z,Ba,Fa,Ga,pa,Ca,ta,ya=new THREE.Rectangle,ja=new THREE.Rectangle,ea=new THREE.Rectangle,Ma=!1,ba=new THREE.Color,ha=new THREE.Color,za=new THREE.Color,Aa=new THREE.Color,W=new THREE.Vector3,Ha,Ia,Ra,ka,Ja,Na,qa=16;Ha=document.createElement("canvas");Ha.width=Ha.height=2;Ia=Ha.getContext("2d");Ia.fillStyle="rgba(0,0,0,1)";Ia.fillRect(0,0,2,2);Ra=Ia.getImageData(0, -0,2,2);ka=Ra.data;Ja=document.createElement("canvas");Ja.width=Ja.height=qa;Na=Ja.getContext("2d");Na.translate(-qa/2,-qa/2);Na.scale(qa,qa);qa--;this.domElement=e;this.autoClear=!0;this.sortObjects=!0;this.sortElements=!0;this.setSize=function($,ra){f=$;g=ra;j=f/2;h=g/2;e.width=f;e.height=g;ya.set(-j,-h,j,h);q=1;m=0;v=t=null;D=1};this.setClearColor=function($,ra){n=$;l=ra};this.setClearColorHex=function($,ra){n.setHex($);l=ra};this.clear=function(){i.setTransform(1,0,0,-1,j,h);if(!ja.isEmpty()){ja.inflate(1); -ja.minSelf(ya);if(n.hex==0&&l==0)i.clearRect(ja.getX(),ja.getY(),ja.getWidth(),ja.getHeight());else{b(THREE.NormalBlending);a(1);i.fillStyle="rgba("+Math.floor(n.r*255)+","+Math.floor(n.g*255)+","+Math.floor(n.b*255)+","+l+")";i.fillRect(ja.getX(),ja.getY(),ja.getWidth(),ja.getHeight())}ja.empty()}};this.render=function($,ra){function Wa(k){var A,u,s,I=k.lights;ha.setRGB(0,0,0);za.setRGB(0,0,0);Aa.setRGB(0,0,0);k=0;for(A=I.length;k0){s.r+=C.r*F;s.g+=C.g*F;s.b+=C.b*F}}else if(F instanceof THREE.PointLight){W.sub(F.position,A);W.normalize();F=u.dot(W)*o;if(F>0){s.r+=C.r*F;s.g+=C.g*F;s.b+=C.b* -F}}}}function Xa(k,A,u){a(u.opacity);b(u.blending);var s,I,F,C,o,V;if(u instanceof THREE.ParticleBasicMaterial){if(u.map){C=u.map.image;o=C.width>>1;V=C.height>>1;u=A.scale.x*j;F=A.scale.y*h;s=u*o;I=F*V;ea.set(k.x-s,k.y-I,k.x+s,k.y+I);if(ya.instersects(ea)){i.save();i.translate(k.x,k.y);i.rotate(-A.rotation);i.scale(u,-F);i.translate(-o,-V);i.drawImage(C,0,0);i.restore()}}}else if(u instanceof THREE.ParticleCanvasMaterial){if(Ma){ba.r=ha.r+za.r+Aa.r;ba.g=ha.g+za.g+Aa.g;ba.b=ha.b+za.b+Aa.b;w.r=u.color.r* -ba.r;w.g=u.color.g*ba.g;w.b=u.color.b*ba.b;w.updateStyleString()}else w.__styleString=u.color.__styleString;s=A.scale.x*j;I=A.scale.y*h;ea.set(k.x-s,k.y-I,k.x+s,k.y+I);if(ya.instersects(ea)){i.save();i.translate(k.x,k.y);i.rotate(-A.rotation);i.scale(s,I);u.program(i,w);i.restore()}}}function Ya(k,A,u,s){a(s.opacity);b(s.blending);i.beginPath();i.moveTo(k.positionScreen.x,k.positionScreen.y);i.lineTo(A.positionScreen.x,A.positionScreen.y);i.closePath();if(s instanceof THREE.LineBasicMaterial){w.__styleString= -s.color.__styleString;k=s.linewidth;if(D!=k)i.lineWidth=D=k;k=w.__styleString;if(t!=k)i.strokeStyle=t=k;i.stroke();ea.inflate(s.linewidth*2)}}function Oa(k,A,u,s,I,F,C,o,V){a(o.opacity);b(o.blending);S=k.positionScreen.x;M=k.positionScreen.y;R=A.positionScreen.x;Q=A.positionScreen.y;B=u.positionScreen.x;x=u.positionScreen.y;var ia=S,fa=M,la=R,sa=Q,ma=B,oa=x;i.beginPath();i.moveTo(ia,fa);i.lineTo(la,sa);i.lineTo(ma,oa);i.lineTo(ia,fa);i.closePath();if(o instanceof THREE.MeshBasicMaterial)if(o.map){if(o.map.mapping instanceof -THREE.UVMapping){Z=C.uvs[0];La(S,M,R,Q,B,x,o.map.image,Z[s].u,Z[s].v,Z[I].u,Z[I].v,Z[F].u,Z[F].v)}}else if(o.envMap){if(o.envMap.mapping instanceof THREE.SphericalReflectionMapping){k=ra.matrixWorldInverse;W.copy(C.vertexNormalsWorld[0]);Ba=(W.x*k.n11+W.y*k.n12+W.z*k.n13)*0.5+0.5;Fa=-(W.x*k.n21+W.y*k.n22+W.z*k.n23)*0.5+0.5;W.copy(C.vertexNormalsWorld[1]);Ga=(W.x*k.n11+W.y*k.n12+W.z*k.n13)*0.5+0.5;pa=-(W.x*k.n21+W.y*k.n22+W.z*k.n23)*0.5+0.5;W.copy(C.vertexNormalsWorld[2]);Ca=(W.x*k.n11+W.y*k.n12+W.z* -k.n13)*0.5+0.5;ta=-(W.x*k.n21+W.y*k.n22+W.z*k.n23)*0.5+0.5;La(S,M,R,Q,B,x,o.envMap.image,Ba,Fa,Ga,pa,Ca,ta)}}else o.wireframe?ua(o.color.__styleString,o.wireframeLinewidth):va(o.color.__styleString);else if(o instanceof THREE.MeshLambertMaterial){if(o.map&&!o.wireframe){if(o.map.mapping instanceof THREE.UVMapping){Z=C.uvs[0];La(S,M,R,Q,B,x,o.map.image,Z[s].u,Z[s].v,Z[I].u,Z[I].v,Z[F].u,Z[F].v)}b(THREE.SubtractiveBlending)}if(Ma)if(!o.wireframe&&o.shading==THREE.SmoothShading&&C.vertexNormalsWorld.length== -3){K.r=z.r=H.r=ha.r;K.g=z.g=H.g=ha.g;K.b=z.b=H.b=ha.b;Ka(V,C.v1.positionWorld,C.vertexNormalsWorld[0],K);Ka(V,C.v2.positionWorld,C.vertexNormalsWorld[1],z);Ka(V,C.v3.positionWorld,C.vertexNormalsWorld[2],H);L.r=(z.r+H.r)*0.5;L.g=(z.g+H.g)*0.5;L.b=(z.b+H.b)*0.5;P=Sa(K,z,H,L);La(S,M,R,Q,B,x,P,0,0,1,0,0,1)}else{ba.r=ha.r;ba.g=ha.g;ba.b=ha.b;Ka(V,C.centroidWorld,C.normalWorld,ba);w.r=o.color.r*ba.r;w.g=o.color.g*ba.g;w.b=o.color.b*ba.b;w.updateStyleString();o.wireframe?ua(w.__styleString,o.wireframeLinewidth): -va(w.__styleString)}else o.wireframe?ua(o.color.__styleString,o.wireframeLinewidth):va(o.color.__styleString)}else if(o instanceof THREE.MeshDepthMaterial){da=ra.near;ga=ra.far;K.r=K.g=K.b=1-Ta(k.positionScreen.z,da,ga);z.r=z.g=z.b=1-Ta(A.positionScreen.z,da,ga);H.r=H.g=H.b=1-Ta(u.positionScreen.z,da,ga);L.r=(z.r+H.r)*0.5;L.g=(z.g+H.g)*0.5;L.b=(z.b+H.b)*0.5;P=Sa(K,z,H,L);La(S,M,R,Q,B,x,P,0,0,1,0,0,1)}else if(o instanceof THREE.MeshNormalMaterial){w.r=Da(C.normalWorld.x);w.g=Da(C.normalWorld.y);w.b= -Da(C.normalWorld.z);w.updateStyleString();o.wireframe?ua(w.__styleString,o.wireframeLinewidth):va(w.__styleString)}}function Ua(k,A,u,s,I,F,C,o,V){a(o.opacity);b(o.blending);if(o.map||o.envMap){Oa(k,A,s,0,1,3,C,o,V);Oa(I,u,F,1,2,3,C,o,V)}else{S=k.positionScreen.x;M=k.positionScreen.y;R=A.positionScreen.x;Q=A.positionScreen.y;B=u.positionScreen.x;x=u.positionScreen.y;X=s.positionScreen.x;Y=s.positionScreen.y;aa=I.positionScreen.x;T=I.positionScreen.y;N=F.positionScreen.x;U=F.positionScreen.y;I=S;F= -M;var ia=R,fa=Q,la=B,sa=x;i.beginPath();i.moveTo(I,F);i.lineTo(ia,fa);i.lineTo(la,sa);i.lineTo(X,Y);i.lineTo(I,F);i.closePath();if(o instanceof THREE.MeshBasicMaterial)o.wireframe?ua(o.color.__styleString,o.wireframeLinewidth):va(o.color.__styleString);else if(o instanceof THREE.MeshLambertMaterial)if(Ma){ba.r=ha.r;ba.g=ha.g;ba.b=ha.b;Ka(V,C.centroidWorld,C.normalWorld,ba);w.r=o.color.r*ba.r;w.g=o.color.g*ba.g;w.b=o.color.b*ba.b;w.updateStyleString();o.wireframe?ua(w.__styleString,o.wireframeLinewidth): -va(w.__styleString)}else o.wireframe?ua(o.color.__styleString,o.wireframeLinewidth):va(o.color.__styleString);else if(o instanceof THREE.MeshDepthMaterial){_2near=o.__2near;_farPlusNear=o.__farPlusNear;_farMinusNear=o.__farMinusNear;K=~~((1-_2near/(_farPlusNear-k.positionScreen.z*_farMinusNear))*255);z=~~((1-_2near/(_farPlusNear-A.positionScreen.z*_farMinusNear))*255);H=~~((1-_2near/(_farPlusNear-u.positionScreen.z*_farMinusNear))*255);L=~~((1-_2near/(_farPlusNear-s.positionScreen.z*_farMinusNear))* -255);P=Sa([K,K,K],[z,z,z],[L,L,L],[H,H,H]);_uv1.u=0;_uv1.v=0;_uv2.u=qa;_uv2.v=0;_uv3.u=qa;_uv3.v=qa;_uv4.u=0;_uv4.v=qa;drawTexturedTriangle(P,S,M,R,Q,X,Y,_uv1.u,_uv1.v,_uv2.u,_uv2.v,_uv4.u,_uv4.v);drawTexturedTriangle(P,aa,T,B,x,N,U,_uv2.u,_uv2.v,_uv3.u,_uv3.v,_uv4.u,_uv4.v)}else if(o instanceof THREE.MeshNormalMaterial){w.r=Da(C.normalWorld.x);w.g=Da(C.normalWorld.y);w.b=Da(C.normalWorld.z);w.updateStyleString();o.wireframe?ua(w.__styleString,o.wireframeLinewidth):va(w.__styleString)}}}function ua(k, -A){if(t!=k)i.strokeStyle=t=k;if(D!=A)i.lineWidth=D=A;i.stroke();ea.inflate(A*2)}function va(k){if(v!=k)i.fillStyle=v=k;i.fill()}function La(k,A,u,s,I,F,C,o,V,ia,fa,la,sa){var ma,oa;ma=C.width-1;oa=C.height-1;o*=ma;V*=oa;ia*=ma;fa*=oa;la*=ma;sa*=oa;u-=k;s-=A;I-=k;F-=A;ia-=o;fa-=V;la-=o;sa-=V;ma=ia*sa-la*fa;if(ma!=0){oa=1/ma;ma=(sa*u-fa*I)*oa;fa=(sa*s-fa*F)*oa;u=(ia*I-la*u)*oa;s=(ia*F-la*s)*oa;k=k-ma*o-u*V;A=A-fa*o-s*V;i.save();i.transform(ma,fa,u,s,k,A);i.clip();i.drawImage(C,0,0);i.restore()}}function Sa(k, -A,u,s){var I=~~(k.r*255),F=~~(k.g*255);k=~~(k.b*255);var C=~~(A.r*255),o=~~(A.g*255);A=~~(A.b*255);var V=~~(u.r*255),ia=~~(u.g*255);u=~~(u.b*255);var fa=~~(s.r*255),la=~~(s.g*255);s=~~(s.b*255);ka[0]=I<0?0:I>255?255:I;ka[1]=F<0?0:F>255?255:F;ka[2]=k<0?0:k>255?255:k;ka[4]=C<0?0:C>255?255:C;ka[5]=o<0?0:o>255?255:o;ka[6]=A<0?0:A>255?255:A;ka[8]=V<0?0:V>255?255:V;ka[9]=ia<0?0:ia>255?255:ia;ka[10]=u<0?0:u>255?255:u;ka[12]=fa<0?0:fa>255?255:fa;ka[13]=la<0?0:la>255?255:la;ka[14]=s<0?0:s>255?255:s;Ia.putImageData(Ra, -0,0);Na.drawImage(Ha,0,0);return Ja}function Ta(k,A,u){k=(k-A)/(u-A);return k*k*(3-2*k)}function Da(k){k=(k+1)*0.5;return k<0?0:k>1?1:k}function wa(k,A){var u=A.x-k.x,s=A.y-k.y,I=1/Math.sqrt(u*u+s*s);u*=I;s*=I;A.x+=u;A.y+=s;k.x-=u;k.y-=s}var Pa,Va,J,na,xa,Ea,Qa,ca;this.autoClear?this.clear():i.setTransform(1,0,0,-1,j,h);c=d.projectScene($,ra,this.sortElements);(Ma=$.lights.length>0)&&Wa($);Pa=0;for(Va=c.length;Pa=0&&X>=0&&M>=0&&T>=0)return!0;else if(aa<0&&X<0||M<0&&T<0)return!1;else{if(aa<0)U=Math.max(U,aa/(aa-X));else X<0&&(Z=Math.min(Z,aa/(aa-X)));if(M<0)U=Math.max(U,M/(M-T));else T<0&&(Z=Math.min(Z,M/(M-T)));if(Zaa&&g.positionScreen.z0&&H.z<1){Y=E[A]=E[A]||new THREE.RenderableParticle;A++;q=Y;q.x=H.x/H.w;q.y=H.y/H.w;q.z=H.z;q.rotation=P.rotation.z;q.scale.x=P.scale.x* +Math.abs(q.x-(H.x+x.projectionMatrix.n11)/(H.w+x.projectionMatrix.n14));q.scale.y=P.scale.y*Math.abs(q.y-(H.y+x.projectionMatrix.n22)/(H.w+x.projectionMatrix.n24));q.materials=P.materials;Z.push(q)}}}}U&&Z.sort(b);return Z}}; +THREE.CanvasRenderer=function(){function a($){if(p!=$)i.globalAlpha=p=$}function b($){if(n!=$){switch($){case THREE.NormalBlending:i.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:i.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:i.globalCompositeOperation="darker"}n=$}}var c=null,e=new THREE.Projector,d=document.createElement("canvas"),f,g,j,h,i=d.getContext("2d"),l=new THREE.Color(0),m=0,p=1,n=0,t=null,w=null,D=1,q,A,E,O,H=new THREE.RenderableVertex, +r=new THREE.RenderableVertex,S,N,Q,R,z,x,U,Z,aa,X,M,T,u=new THREE.Color,I=new THREE.Color,y=new THREE.Color,G=new THREE.Color,K=new THREE.Color,da,ga,P,Y,Ba,Fa,Ga,pa,Ca,ta,ya=new THREE.Rectangle,ja=new THREE.Rectangle,ea=new THREE.Rectangle,Ma=!1,ba=new THREE.Color,ha=new THREE.Color,za=new THREE.Color,Aa=new THREE.Color,W=new THREE.Vector3,Ha,Ia,Ra,ka,Ja,Na,qa=16;Ha=document.createElement("canvas");Ha.width=Ha.height=2;Ia=Ha.getContext("2d");Ia.fillStyle="rgba(0,0,0,1)";Ia.fillRect(0,0,2,2);Ra=Ia.getImageData(0, +0,2,2);ka=Ra.data;Ja=document.createElement("canvas");Ja.width=Ja.height=qa;Na=Ja.getContext("2d");Na.translate(-qa/2,-qa/2);Na.scale(qa,qa);qa--;this.domElement=d;this.autoClear=!0;this.sortObjects=!0;this.sortElements=!0;this.setSize=function($,ra){f=$;g=ra;j=f/2;h=g/2;d.width=f;d.height=g;ya.set(-j,-h,j,h);p=1;n=0;w=t=null;D=1};this.setClearColor=function($,ra){l=$;m=ra};this.setClearColorHex=function($,ra){l.setHex($);m=ra};this.clear=function(){i.setTransform(1,0,0,-1,j,h);if(!ja.isEmpty()){ja.inflate(1); +ja.minSelf(ya);if(l.hex==0&&m==0)i.clearRect(ja.getX(),ja.getY(),ja.getWidth(),ja.getHeight());else{b(THREE.NormalBlending);a(1);i.fillStyle="rgba("+Math.floor(l.r*255)+","+Math.floor(l.g*255)+","+Math.floor(l.b*255)+","+m+")";i.fillRect(ja.getX(),ja.getY(),ja.getWidth(),ja.getHeight())}ja.empty()}};this.render=function($,ra){function Wa(k){var B,v,s,J=k.lights;ha.setRGB(0,0,0);za.setRGB(0,0,0);Aa.setRGB(0,0,0);k=0;for(B=J.length;k0){s.r+=C.r*F;s.g+=C.g*F;s.b+=C.b*F}}else if(F instanceof THREE.PointLight){W.sub(F.position,B);W.normalize();F=v.dot(W)*o;if(F>0){s.r+=C.r*F;s.g+=C.g*F;s.b+=C.b* +F}}}}function Xa(k,B,v){a(v.opacity);b(v.blending);var s,J,F,C,o,V;if(v instanceof THREE.ParticleBasicMaterial){if(v.map){C=v.map.image;o=C.width>>1;V=C.height>>1;v=B.scale.x*j;F=B.scale.y*h;s=v*o;J=F*V;ea.set(k.x-s,k.y-J,k.x+s,k.y+J);if(ya.instersects(ea)){i.save();i.translate(k.x,k.y);i.rotate(-B.rotation);i.scale(v,-F);i.translate(-o,-V);i.drawImage(C,0,0);i.restore()}}}else if(v instanceof THREE.ParticleCanvasMaterial){if(Ma){ba.r=ha.r+za.r+Aa.r;ba.g=ha.g+za.g+Aa.g;ba.b=ha.b+za.b+Aa.b;u.r=v.color.r* +ba.r;u.g=v.color.g*ba.g;u.b=v.color.b*ba.b;u.updateStyleString()}else u.__styleString=v.color.__styleString;s=B.scale.x*j;J=B.scale.y*h;ea.set(k.x-s,k.y-J,k.x+s,k.y+J);if(ya.instersects(ea)){i.save();i.translate(k.x,k.y);i.rotate(-B.rotation);i.scale(s,J);v.program(i,u);i.restore()}}}function Ya(k,B,v,s){a(s.opacity);b(s.blending);i.beginPath();i.moveTo(k.positionScreen.x,k.positionScreen.y);i.lineTo(B.positionScreen.x,B.positionScreen.y);i.closePath();if(s instanceof THREE.LineBasicMaterial){u.__styleString= +s.color.__styleString;k=s.linewidth;if(D!=k)i.lineWidth=D=k;k=u.__styleString;if(t!=k)i.strokeStyle=t=k;i.stroke();ea.inflate(s.linewidth*2)}}function Oa(k,B,v,s,J,F,C,o,V){a(o.opacity);b(o.blending);S=k.positionScreen.x;N=k.positionScreen.y;Q=B.positionScreen.x;R=B.positionScreen.y;z=v.positionScreen.x;x=v.positionScreen.y;var ia=S,fa=N,la=Q,sa=R,ma=z,oa=x;i.beginPath();i.moveTo(ia,fa);i.lineTo(la,sa);i.lineTo(ma,oa);i.lineTo(ia,fa);i.closePath();if(o instanceof THREE.MeshBasicMaterial)if(o.map){if(o.map.mapping instanceof +THREE.UVMapping){Y=C.uvs[0];La(S,N,Q,R,z,x,o.map.image,Y[s].u,Y[s].v,Y[J].u,Y[J].v,Y[F].u,Y[F].v)}}else if(o.envMap){if(o.envMap.mapping instanceof THREE.SphericalReflectionMapping){k=ra.matrixWorldInverse;W.copy(C.vertexNormalsWorld[0]);Ba=(W.x*k.n11+W.y*k.n12+W.z*k.n13)*0.5+0.5;Fa=-(W.x*k.n21+W.y*k.n22+W.z*k.n23)*0.5+0.5;W.copy(C.vertexNormalsWorld[1]);Ga=(W.x*k.n11+W.y*k.n12+W.z*k.n13)*0.5+0.5;pa=-(W.x*k.n21+W.y*k.n22+W.z*k.n23)*0.5+0.5;W.copy(C.vertexNormalsWorld[2]);Ca=(W.x*k.n11+W.y*k.n12+W.z* +k.n13)*0.5+0.5;ta=-(W.x*k.n21+W.y*k.n22+W.z*k.n23)*0.5+0.5;La(S,N,Q,R,z,x,o.envMap.image,Ba,Fa,Ga,pa,Ca,ta)}}else o.wireframe?ua(o.color.__styleString,o.wireframeLinewidth):va(o.color.__styleString);else if(o instanceof THREE.MeshLambertMaterial){if(o.map&&!o.wireframe){if(o.map.mapping instanceof THREE.UVMapping){Y=C.uvs[0];La(S,N,Q,R,z,x,o.map.image,Y[s].u,Y[s].v,Y[J].u,Y[J].v,Y[F].u,Y[F].v)}b(THREE.SubtractiveBlending)}if(Ma)if(!o.wireframe&&o.shading==THREE.SmoothShading&&C.vertexNormalsWorld.length== +3){I.r=y.r=G.r=ha.r;I.g=y.g=G.g=ha.g;I.b=y.b=G.b=ha.b;Ka(V,C.v1.positionWorld,C.vertexNormalsWorld[0],I);Ka(V,C.v2.positionWorld,C.vertexNormalsWorld[1],y);Ka(V,C.v3.positionWorld,C.vertexNormalsWorld[2],G);K.r=(y.r+G.r)*0.5;K.g=(y.g+G.g)*0.5;K.b=(y.b+G.b)*0.5;P=Sa(I,y,G,K);La(S,N,Q,R,z,x,P,0,0,1,0,0,1)}else{ba.r=ha.r;ba.g=ha.g;ba.b=ha.b;Ka(V,C.centroidWorld,C.normalWorld,ba);u.r=o.color.r*ba.r;u.g=o.color.g*ba.g;u.b=o.color.b*ba.b;u.updateStyleString();o.wireframe?ua(u.__styleString,o.wireframeLinewidth): +va(u.__styleString)}else o.wireframe?ua(o.color.__styleString,o.wireframeLinewidth):va(o.color.__styleString)}else if(o instanceof THREE.MeshDepthMaterial){da=ra.near;ga=ra.far;I.r=I.g=I.b=1-Ta(k.positionScreen.z,da,ga);y.r=y.g=y.b=1-Ta(B.positionScreen.z,da,ga);G.r=G.g=G.b=1-Ta(v.positionScreen.z,da,ga);K.r=(y.r+G.r)*0.5;K.g=(y.g+G.g)*0.5;K.b=(y.b+G.b)*0.5;P=Sa(I,y,G,K);La(S,N,Q,R,z,x,P,0,0,1,0,0,1)}else if(o instanceof THREE.MeshNormalMaterial){u.r=Da(C.normalWorld.x);u.g=Da(C.normalWorld.y);u.b= +Da(C.normalWorld.z);u.updateStyleString();o.wireframe?ua(u.__styleString,o.wireframeLinewidth):va(u.__styleString)}}function Ua(k,B,v,s,J,F,C,o,V){a(o.opacity);b(o.blending);if(o.map||o.envMap){Oa(k,B,s,0,1,3,C,o,V);Oa(J,v,F,1,2,3,C,o,V)}else{S=k.positionScreen.x;N=k.positionScreen.y;Q=B.positionScreen.x;R=B.positionScreen.y;z=v.positionScreen.x;x=v.positionScreen.y;U=s.positionScreen.x;Z=s.positionScreen.y;aa=J.positionScreen.x;X=J.positionScreen.y;M=F.positionScreen.x;T=F.positionScreen.y;J=S;F= +N;var ia=Q,fa=R,la=z,sa=x;i.beginPath();i.moveTo(J,F);i.lineTo(ia,fa);i.lineTo(la,sa);i.lineTo(U,Z);i.lineTo(J,F);i.closePath();if(o instanceof THREE.MeshBasicMaterial)o.wireframe?ua(o.color.__styleString,o.wireframeLinewidth):va(o.color.__styleString);else if(o instanceof THREE.MeshLambertMaterial)if(Ma){ba.r=ha.r;ba.g=ha.g;ba.b=ha.b;Ka(V,C.centroidWorld,C.normalWorld,ba);u.r=o.color.r*ba.r;u.g=o.color.g*ba.g;u.b=o.color.b*ba.b;u.updateStyleString();o.wireframe?ua(u.__styleString,o.wireframeLinewidth): +va(u.__styleString)}else o.wireframe?ua(o.color.__styleString,o.wireframeLinewidth):va(o.color.__styleString);else if(o instanceof THREE.MeshDepthMaterial){_2near=o.__2near;_farPlusNear=o.__farPlusNear;_farMinusNear=o.__farMinusNear;I=~~((1-_2near/(_farPlusNear-k.positionScreen.z*_farMinusNear))*255);y=~~((1-_2near/(_farPlusNear-B.positionScreen.z*_farMinusNear))*255);G=~~((1-_2near/(_farPlusNear-v.positionScreen.z*_farMinusNear))*255);K=~~((1-_2near/(_farPlusNear-s.positionScreen.z*_farMinusNear))* +255);P=Sa([I,I,I],[y,y,y],[K,K,K],[G,G,G]);_uv1.u=0;_uv1.v=0;_uv2.u=qa;_uv2.v=0;_uv3.u=qa;_uv3.v=qa;_uv4.u=0;_uv4.v=qa;drawTexturedTriangle(P,S,N,Q,R,U,Z,_uv1.u,_uv1.v,_uv2.u,_uv2.v,_uv4.u,_uv4.v);drawTexturedTriangle(P,aa,X,z,x,M,T,_uv2.u,_uv2.v,_uv3.u,_uv3.v,_uv4.u,_uv4.v)}else if(o instanceof THREE.MeshNormalMaterial){u.r=Da(C.normalWorld.x);u.g=Da(C.normalWorld.y);u.b=Da(C.normalWorld.z);u.updateStyleString();o.wireframe?ua(u.__styleString,o.wireframeLinewidth):va(u.__styleString)}}}function ua(k, +B){if(t!=k)i.strokeStyle=t=k;if(D!=B)i.lineWidth=D=B;i.stroke();ea.inflate(B*2)}function va(k){if(w!=k)i.fillStyle=w=k;i.fill()}function La(k,B,v,s,J,F,C,o,V,ia,fa,la,sa){var ma,oa;ma=C.width-1;oa=C.height-1;o*=ma;V*=oa;ia*=ma;fa*=oa;la*=ma;sa*=oa;v-=k;s-=B;J-=k;F-=B;ia-=o;fa-=V;la-=o;sa-=V;ma=ia*sa-la*fa;if(ma!=0){oa=1/ma;ma=(sa*v-fa*J)*oa;fa=(sa*s-fa*F)*oa;v=(ia*J-la*v)*oa;s=(ia*F-la*s)*oa;k=k-ma*o-v*V;B=B-fa*o-s*V;i.save();i.transform(ma,fa,v,s,k,B);i.clip();i.drawImage(C,0,0);i.restore()}}function Sa(k, +B,v,s){var J=~~(k.r*255),F=~~(k.g*255);k=~~(k.b*255);var C=~~(B.r*255),o=~~(B.g*255);B=~~(B.b*255);var V=~~(v.r*255),ia=~~(v.g*255);v=~~(v.b*255);var fa=~~(s.r*255),la=~~(s.g*255);s=~~(s.b*255);ka[0]=J<0?0:J>255?255:J;ka[1]=F<0?0:F>255?255:F;ka[2]=k<0?0:k>255?255:k;ka[4]=C<0?0:C>255?255:C;ka[5]=o<0?0:o>255?255:o;ka[6]=B<0?0:B>255?255:B;ka[8]=V<0?0:V>255?255:V;ka[9]=ia<0?0:ia>255?255:ia;ka[10]=v<0?0:v>255?255:v;ka[12]=fa<0?0:fa>255?255:fa;ka[13]=la<0?0:la>255?255:la;ka[14]=s<0?0:s>255?255:s;Ia.putImageData(Ra, +0,0);Na.drawImage(Ha,0,0);return Ja}function Ta(k,B,v){k=(k-B)/(v-B);return k*k*(3-2*k)}function Da(k){k=(k+1)*0.5;return k<0?0:k>1?1:k}function wa(k,B){var v=B.x-k.x,s=B.y-k.y,J=1/Math.sqrt(v*v+s*s);v*=J;s*=J;B.x+=v;B.y+=s;k.x-=v;k.y-=s}var Pa,Va,L,na,xa,Ea,Qa,ca;this.autoClear?this.clear():i.setTransform(1,0,0,-1,j,h);c=e.projectScene($,ra,this.sortElements);(Ma=$.lights.length>0)&&Wa($);Pa=0;for(Va=c.length;Pa=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var g=Math.acos(d),f=Math.sqrt(1-d*d);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}d=Math.sin((1-e)*g)/f;e=Math.sin(e*g)/f;c.w=a.w*d+b.w*e;c.x=a.x*d+b.x*e;c.y=a.y*d+b.y*e;c.z=a.z*d+b.z*e;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; -THREE.Face3=function(a,b,c,e,d,g){this.a=a;this.b=b;this.c=c;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=d instanceof THREE.Color?d:new THREE.Color;this.vertexColors=d instanceof Array?d:[];this.materials=g instanceof Array?g:[g];this.centroid=new THREE.Vector3}; -THREE.Face4=function(a,b,c,e,d,g,f){this.a=a;this.b=b;this.c=c;this.d=e;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.color=g instanceof THREE.Color?g:new THREE.Color;this.vertexColors=g instanceof Array?g:[];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.Face3=function(a,b,c,e,d,g){this.a=a;this.b=b;this.c=c;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=d instanceof THREE.Color?d:new THREE.Color;this.vertexColors=d instanceof Array?d:[];this.vertexTangents=[];this.materials=g instanceof Array?g:[g];this.centroid=new THREE.Vector3}; +THREE.Face4=function(a,b,c,e,d,g,f){this.a=a;this.b=b;this.c=c;this.d=e;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];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.AnimationHandler=function(){var a=[],b={},c={};c.update=function(d){for(var g=0;g0?this.multiplyScalar(1/a):this.set(0,0,0);return this},setPosit 1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)}};THREE.Vector4=function(a,b,c,e){this.set(a||0,b||0,c||0,e||1)}; THREE.Vector4.prototype={set:function(a,b,c,e){this.x=a;this.y=b;this.z=c;this.w=e;return this},copy:function(a){this.set(a.x,a.y,a.z,a.w||1);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y,a.z+b.z,a.w+b.w);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y,this.z+a.z,this.w+a.w);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y,a.z-b.z,a.w-b.w);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y,this.z-a.z,this.w-a.w);return this},multiplyScalar:function(a){this.set(this.x* a,this.y*a,this.z*a,this.w*a);return this},divideScalar:function(a){this.set(this.x/a,this.y/a,this.z/a,this.w/a);return this},lerpSelf:function(a,b){this.set(this.x+(a.x-this.x)*b,this.y+(a.y-this.y)*b,this.z+(a.z-this.z)*b,this.w+(a.w-this.w)*b)},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)}};THREE.Ray=function(a,b){this.origin=a||new THREE.Vector3;this.direction=b||new THREE.Vector3}; -THREE.Ray.prototype={intersectScene:function(a){var b,c,e=a.objects,d=[];a=0;for(b=e.length;a0&&A>0&&y+A<1}var c,e,d,f,g,i,h,j,n,l, -m,k=a.geometry,q=k.vertices,t=[];c=0;for(e=k.faces.length;ch?e:h;d=d>j?d:j}a()}; -this.add3Points=function(h,j,n,l,m,k){if(i){i=!1;b=hn?h>m?h:m:n>m?n:m;d=j>l?j>k?j:k:l>k?l:k}else{b=hn?h>m?h>e?h:e:m>e?m:e:n>m?n>e?n:e:m>e?m:e;d=j>l?j>k?j>d?j:d:k>d?k:d:l>k?l>d?l:d:k>d?k:d}a()};this.addRectangle=function(h){if(i){i=!1;b=h.getLeft();c=h.getTop();e=h.getRight();d=h.getBottom()}else{b=bh.getRight()? +THREE.Ray.prototype={intersectScene:function(a){var b,c,e=a.objects,d=[];a=0;for(b=e.length;a0&&B>0&&C+B<1}var c,e,d,f,g,i,h,j,m,l, +n,k=a.geometry,r=k.vertices,u=[];c=0;for(e=k.faces.length;ch?e:h;d=d>j?d:j}a()}; +this.add3Points=function(h,j,m,l,n,k){if(i){i=!1;b=hm?h>n?h:n:m>n?m:n;d=j>l?j>k?j:k:l>k?l:k}else{b=hm?h>n?h>e?h:e:n>e?n:e:m>n?m>e?m:e:n>e?n:e;d=j>l?j>k?j>d?j:d:k>d?k:d:l>k?l>d?l:d:k>d?k:d}a()};this.addRectangle=function(h){if(i){i=!1;b=h.getLeft();c=h.getTop();e=h.getRight();d=h.getBottom()}else{b=bh.getRight()? e:h.getRight();d=d>h.getBottom()?d:h.getBottom()}a()};this.inflate=function(h){b-=h;c-=h;e+=h;d+=h;a()};this.minSelf=function(h){b=b>h.getLeft()?b:h.getLeft();c=c>h.getTop()?c:h.getTop();e=e=0&&Math.min(d,h.getBottom())-Math.max(c,h.getTop())>=0};this.empty=function(){i=!0;d=e=c=b=0;a()};this.isEmpty=function(){return i}}; THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a,b=this.m;a=b[1];b[1]=b[3];b[3]=a;a=b[2];b[2]=b[6];b[6]=a;a=b[5];b[5]=b[7];b[7]=a;return this},transposeIntoArray:function(a){var b=this.m;a[0]=b[0];a[1]=b[3];a[2]=b[6];a[3]=b[1];a[4]=b[4];a[5]=b[7];a[6]=b[2];a[7]=b[5];a[8]=b[8];return this}}; -THREE.Matrix4=function(a,b,c,e,d,f,g,i,h,j,n,l,m,k,q,t){this.set(a||1,b||0,c||0,e||0,d||0,f||1,g||0,i||0,h||0,j||0,n||1,l||0,m||0,k||0,q||0,t||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; -THREE.Matrix4.prototype={set:function(a,b,c,e,d,f,g,i,h,j,n,l,m,k,q,t){this.n11=a;this.n12=b;this.n13=c;this.n14=e;this.n21=d;this.n22=f;this.n23=g;this.n24=i;this.n31=h;this.n32=j;this.n33=n;this.n34=l;this.n41=m;this.n42=k;this.n43=q;this.n44=t;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(a){this.set(a.n11,a.n12,a.n13,a.n14,a.n21,a.n22,a.n23,a.n24,a.n31,a.n32,a.n33,a.n34,a.n41,a.n42,a.n43,a.n44);return this},lookAt:function(a,b,c){var e=THREE.Matrix4.__v1, +THREE.Matrix4=function(a,b,c,e,d,f,g,i,h,j,m,l,n,k,r,u){this.set(a||1,b||0,c||0,e||0,d||0,f||1,g||0,i||0,h||0,j||0,m||1,l||0,n||0,k||0,r||0,u||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; +THREE.Matrix4.prototype={set:function(a,b,c,e,d,f,g,i,h,j,m,l,n,k,r,u){this.n11=a;this.n12=b;this.n13=c;this.n14=e;this.n21=d;this.n22=f;this.n23=g;this.n24=i;this.n31=h;this.n32=j;this.n33=m;this.n34=l;this.n41=n;this.n42=k;this.n43=r;this.n44=u;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(a){this.set(a.n11,a.n12,a.n13,a.n14,a.n21,a.n22,a.n23,a.n24,a.n31,a.n32,a.n33,a.n34,a.n41,a.n42,a.n43,a.n44);return this},lookAt:function(a,b,c){var e=THREE.Matrix4.__v1, d=THREE.Matrix4.__v2,f=THREE.Matrix4.__v3;f.sub(a,b).normalize();if(f.length()===0)f.z=1;e.cross(c,f).normalize();if(e.length()===0){f.x+=1.0E-4;e.cross(c,f).normalize()}d.cross(f,e).normalize();this.n11=e.x;this.n12=d.x;this.n13=f.x;this.n21=e.y;this.n22=d.y;this.n23=f.y;this.n31=e.z;this.n32=d.z;this.n33=f.z;return this},multiplyVector3:function(a){var b=a.x,c=a.y,e=a.z,d=1/(this.n41*b+this.n42*c+this.n43*e+this.n44);a.x=(this.n11*b+this.n12*c+this.n13*e+this.n14)*d;a.y=(this.n21*b+this.n22*c+this.n23* e+this.n24)*d;a.z=(this.n31*b+this.n32*c+this.n33*e+this.n34)*d;return a},multiplyVector4:function(a){var b=a.x,c=a.y,e=a.z,d=a.w;a.x=this.n11*b+this.n12*c+this.n13*e+this.n14*d;a.y=this.n21*b+this.n22*c+this.n23*e+this.n24*d;a.z=this.n31*b+this.n32*c+this.n33*e+this.n34*d;a.w=this.n41*b+this.n42*c+this.n43*e+this.n44*d;return a},rotateAxis:function(a){var b=a.x,c=a.y,e=a.z;a.x=b*this.n11+c*this.n12+e*this.n13;a.y=b*this.n21+c*this.n22+e*this.n23;a.z=b*this.n31+c*this.n32+e*this.n33;a.normalize(); -return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var c=a.n11,e=a.n12,d=a.n13,f=a.n14,g=a.n21,i=a.n22,h=a.n23,j=a.n24,n=a.n31,l=a.n32,m=a.n33,k=a.n34,q=a.n41,t=a.n42,A=a.n43,s=a.n44,I=b.n11,x=b.n12,G=b.n13,y=b.n14,p=b.n21,Q=b.n22, -H=b.n23,P=b.n24,M=b.n31,C=b.n32,u=b.n33,L=b.n34;this.n11=c*I+e*p+d*M;this.n12=c*x+e*Q+d*C;this.n13=c*G+e*H+d*u;this.n14=c*y+e*P+d*L+f;this.n21=g*I+i*p+h*M;this.n22=g*x+i*Q+h*C;this.n23=g*G+i*H+h*u;this.n24=g*y+i*P+h*L+j;this.n31=n*I+l*p+m*M;this.n32=n*x+l*Q+m*C;this.n33=n*G+l*H+m*u;this.n34=n*y+l*P+m*L+k;this.n41=q*I+t*p+A*M;this.n42=q*x+t*Q+A*C;this.n43=q*G+t*H+A*u;this.n44=q*y+t*P+A*L+s;return this},multiplyToArray:function(a,b,c){this.multiply(a,b);c[0]=this.n11;c[1]=this.n21;c[2]=this.n31;c[3]= +return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var c=a.n11,e=a.n12,d=a.n13,f=a.n14,g=a.n21,i=a.n22,h=a.n23,j=a.n24,m=a.n31,l=a.n32,n=a.n33,k=a.n34,r=a.n41,u=a.n42,B=a.n43,t=a.n44,K=b.n11,x=b.n12,G=b.n13,C=b.n14,p=b.n21,O=b.n22, +H=b.n23,P=b.n24,M=b.n31,A=b.n32,s=b.n33,L=b.n34;this.n11=c*K+e*p+d*M;this.n12=c*x+e*O+d*A;this.n13=c*G+e*H+d*s;this.n14=c*C+e*P+d*L+f;this.n21=g*K+i*p+h*M;this.n22=g*x+i*O+h*A;this.n23=g*G+i*H+h*s;this.n24=g*C+i*P+h*L+j;this.n31=m*K+l*p+n*M;this.n32=m*x+l*O+n*A;this.n33=m*G+l*H+n*s;this.n34=m*C+l*P+n*L+k;this.n41=r*K+u*p+B*M;this.n42=r*x+u*O+B*A;this.n43=r*G+u*H+B*s;this.n44=r*C+u*P+B*L+t;return this},multiplyToArray:function(a,b,c){this.multiply(a,b);c[0]=this.n11;c[1]=this.n21;c[2]=this.n31;c[3]= this.n41;c[4]=this.n12;c[5]=this.n22;c[6]=this.n32;c[7]=this.n42;c[8]=this.n13;c[9]=this.n23;c[10]=this.n33;c[11]=this.n43;c[12]=this.n14;c[13]=this.n24;c[14]=this.n34;c[15]=this.n44;return this},multiplySelf:function(a){this.multiply(this,a);return this},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=a;this.n42*=a;this.n43*=a;this.n44*=a;return this},determinant:function(){var a= -this.n11,b=this.n12,c=this.n13,e=this.n14,d=this.n21,f=this.n22,g=this.n23,i=this.n24,h=this.n31,j=this.n32,n=this.n33,l=this.n34,m=this.n41,k=this.n42,q=this.n43,t=this.n44;return e*g*j*m-c*i*j*m-e*f*n*m+b*i*n*m+c*f*l*m-b*g*l*m-e*g*h*k+c*i*h*k+e*d*n*k-a*i*n*k-c*d*l*k+a*g*l*k+e*f*h*q-b*i*h*q-e*d*j*q+a*i*j*q+b*d*l*q-a*f*l*q-c*f*h*t+b*g*h*t+c*d*j*t-a*g*j*t-b*d*n*t+a*f*n*t},transpose:function(){var a;a=this.n21;this.n21=this.n12;this.n12=a;a=this.n31;this.n31=this.n13;this.n13=a;a=this.n32;this.n32= +this.n11,b=this.n12,c=this.n13,e=this.n14,d=this.n21,f=this.n22,g=this.n23,i=this.n24,h=this.n31,j=this.n32,m=this.n33,l=this.n34,n=this.n41,k=this.n42,r=this.n43,u=this.n44;return e*g*j*n-c*i*j*n-e*f*m*n+b*i*m*n+c*f*l*n-b*g*l*n-e*g*h*k+c*i*h*k+e*d*m*k-a*i*m*k-c*d*l*k+a*g*l*k+e*f*h*r-b*i*h*r-e*d*j*r+a*i*j*r+b*d*l*r-a*f*l*r-c*f*h*u+b*g*h*u+c*d*j*u-a*g*j*u-b*d*m*u+a*f*m*u},transpose:function(){var a;a=this.n21;this.n21=this.n12;this.n12=a;a=this.n31;this.n31=this.n13;this.n13=a;a=this.n32;this.n32= this.n23;this.n23=a;a=this.n41;this.n41=this.n14;this.n14=a;a=this.n42;this.n42=this.n24;this.n24=a;a=this.n43;this.n43=this.n34;this.n43=a;return this},clone:function(){var a=new THREE.Matrix4;a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){this.flat[0]=this.n11;this.flat[1]=this.n21; this.flat[2]=this.n31;this.flat[3]=this.n41;this.flat[4]=this.n12;this.flat[5]=this.n22;this.flat[6]=this.n32;this.flat[7]=this.n42;this.flat[8]=this.n13;this.flat[9]=this.n23;this.flat[10]=this.n33;this.flat[11]=this.n43;this.flat[12]=this.n14;this.flat[13]=this.n24;this.flat[14]=this.n34;this.flat[15]=this.n44;return this.flat},flattenToArray:function(a){a[0]=this.n11;a[1]=this.n21;a[2]=this.n31;a[3]=this.n41;a[4]=this.n12;a[5]=this.n22;a[6]=this.n32;a[7]=this.n42;a[8]=this.n13;a[9]=this.n23;a[10]= this.n33;a[11]=this.n43;a[12]=this.n14;a[13]=this.n24;a[14]=this.n34;a[15]=this.n44;return a},flattenToArrayOffset:function(a,b){a[b]=this.n11;a[b+1]=this.n21;a[b+2]=this.n31;a[b+3]=this.n41;a[b+4]=this.n12;a[b+5]=this.n22;a[b+6]=this.n32;a[b+7]=this.n42;a[b+8]=this.n13;a[b+9]=this.n23;a[b+10]=this.n33;a[b+11]=this.n43;a[b+12]=this.n14;a[b+13]=this.n24;a[b+14]=this.n34;a[b+15]=this.n44;return a},setTranslation:function(a,b,c){this.set(1,0,0,a,0,1,0,b,0,0,1,c,0,0,0,1);return this},setScale:function(a, @@ -34,9 +34,9 @@ b,c){this.set(a,0,0,0,0,b,0,0,0,0,c,0,0,0,0,1);return this},setRotationX:functio f+c,h*g-e*i,h*i+e*g,0,h*g+e*i,j*g+c,j*i-e*f,0,h*i-e*g,j*i+e*f,d*i*i+c,0,0,0,0,1);return this},setPosition:function(a){this.n14=a.x;this.n24=a.y;this.n34=a.z;return this},setRotationFromEuler:function(a){var b=a.x,c=a.y,e=a.z;a=Math.cos(b);b=Math.sin(b);var d=Math.cos(c);c=Math.sin(c);var f=Math.cos(e);e=Math.sin(e);var g=a*c,i=b*c;this.n11=d*f;this.n12=-d*e;this.n13=c;this.n21=i*f+a*e;this.n22=-i*e+a*f;this.n23=-b*d;this.n31=-g*f+b*e;this.n32=g*e+b*f;this.n33=a*d;return this},setRotationFromQuaternion:function(a){var b= a.x,c=a.y,e=a.z,d=a.w,f=b+b,g=c+c,i=e+e;a=b*f;var h=b*g;b*=i;var j=c*g;c*=i;e*=i;f*=d;g*=d;d*=i;this.n11=1-(j+e);this.n12=h-d;this.n13=b+g;this.n21=h+d;this.n22=1-(a+e);this.n23=c-f;this.n31=b-g;this.n32=c+f;this.n33=1-(a+j);return this},scale:function(a){var b=a.x,c=a.y;a=a.z;this.n11*=b;this.n12*=c;this.n13*=a;this.n21*=b;this.n22*=c;this.n23*=a;this.n31*=b;this.n32*=c;this.n33*=a;this.n41*=b;this.n42*=c;this.n43*=a;return this},extractPosition:function(a){this.n14=a.n14;this.n24=a.n24;this.n34= a.n34},extractRotation:function(a,b){var c=1/b.x,e=1/b.y,d=1/b.z;this.n11=a.n11*c;this.n21=a.n21*c;this.n31=a.n31*c;this.n12=a.n12*e;this.n22=a.n22*e;this.n32=a.n32*e;this.n13=a.n13*d;this.n23=a.n23*d;this.n33=a.n33*d}}; -THREE.Matrix4.makeInvert=function(a,b){var c=a.n11,e=a.n12,d=a.n13,f=a.n14,g=a.n21,i=a.n22,h=a.n23,j=a.n24,n=a.n31,l=a.n32,m=a.n33,k=a.n34,q=a.n41,t=a.n42,A=a.n43,s=a.n44;b===undefined&&(b=new THREE.Matrix4);b.n11=h*k*t-j*m*t+j*l*A-i*k*A-h*l*s+i*m*s;b.n12=f*m*t-d*k*t-f*l*A+e*k*A+d*l*s-e*m*s;b.n13=d*j*t-f*h*t+f*i*A-e*j*A-d*i*s+e*h*s;b.n14=f*h*l-d*j*l-f*i*m+e*j*m+d*i*k-e*h*k;b.n21=j*m*q-h*k*q-j*n*A+g*k*A+h*n*s-g*m*s;b.n22=d*k*q-f*m*q+f*n*A-c*k*A-d*n*s+c*m*s;b.n23=f*h*q-d*j*q-f*g*A+c*j*A+d*g*s-c*h*s; -b.n24=d*j*n-f*h*n+f*g*m-c*j*m-d*g*k+c*h*k;b.n31=i*k*q-j*l*q+j*n*t-g*k*t-i*n*s+g*l*s;b.n32=f*l*q-e*k*q-f*n*t+c*k*t+e*n*s-c*l*s;b.n33=d*j*q-f*i*q+f*g*t-c*j*t-e*g*s+c*i*s;b.n34=f*i*n-e*j*n-f*g*l+c*j*l+e*g*k-c*i*k;b.n41=h*l*q-i*m*q-h*n*t+g*m*t+i*n*A-g*l*A;b.n42=e*m*q-d*l*q+d*n*t-c*m*t-e*n*A+c*l*A;b.n43=d*i*q-e*h*q-d*g*t+c*h*t+e*g*A-c*i*A;b.n44=e*h*n-d*i*n+d*g*l-c*h*l-e*g*m+c*i*m;b.multiplyScalar(1/a.determinant());return b}; -THREE.Matrix4.makeInvert3x3=function(a){var b=a.m33,c=b.m,e=a.n33*a.n22-a.n32*a.n23,d=-a.n33*a.n21+a.n31*a.n23,f=a.n32*a.n21-a.n31*a.n22,g=-a.n33*a.n12+a.n32*a.n13,i=a.n33*a.n11-a.n31*a.n13,h=-a.n32*a.n11+a.n31*a.n12,j=a.n23*a.n12-a.n22*a.n13,n=-a.n23*a.n11+a.n21*a.n13,l=a.n22*a.n11-a.n21*a.n12;a=a.n11*e+a.n21*g+a.n31*j;if(a==0)throw"matrix not invertible";a=1/a;c[0]=a*e;c[1]=a*d;c[2]=a*f;c[3]=a*g;c[4]=a*i;c[5]=a*h;c[6]=a*j;c[7]=a*n;c[8]=a*l;return b}; +THREE.Matrix4.makeInvert=function(a,b){var c=a.n11,e=a.n12,d=a.n13,f=a.n14,g=a.n21,i=a.n22,h=a.n23,j=a.n24,m=a.n31,l=a.n32,n=a.n33,k=a.n34,r=a.n41,u=a.n42,B=a.n43,t=a.n44;b===undefined&&(b=new THREE.Matrix4);b.n11=h*k*u-j*n*u+j*l*B-i*k*B-h*l*t+i*n*t;b.n12=f*n*u-d*k*u-f*l*B+e*k*B+d*l*t-e*n*t;b.n13=d*j*u-f*h*u+f*i*B-e*j*B-d*i*t+e*h*t;b.n14=f*h*l-d*j*l-f*i*n+e*j*n+d*i*k-e*h*k;b.n21=j*n*r-h*k*r-j*m*B+g*k*B+h*m*t-g*n*t;b.n22=d*k*r-f*n*r+f*m*B-c*k*B-d*m*t+c*n*t;b.n23=f*h*r-d*j*r-f*g*B+c*j*B+d*g*t-c*h*t; +b.n24=d*j*m-f*h*m+f*g*n-c*j*n-d*g*k+c*h*k;b.n31=i*k*r-j*l*r+j*m*u-g*k*u-i*m*t+g*l*t;b.n32=f*l*r-e*k*r-f*m*u+c*k*u+e*m*t-c*l*t;b.n33=d*j*r-f*i*r+f*g*u-c*j*u-e*g*t+c*i*t;b.n34=f*i*m-e*j*m-f*g*l+c*j*l+e*g*k-c*i*k;b.n41=h*l*r-i*n*r-h*m*u+g*n*u+i*m*B-g*l*B;b.n42=e*n*r-d*l*r+d*m*u-c*n*u-e*m*B+c*l*B;b.n43=d*i*r-e*h*r-d*g*u+c*h*u+e*g*B-c*i*B;b.n44=e*h*m-d*i*m+d*g*l-c*h*l-e*g*n+c*i*n;b.multiplyScalar(1/a.determinant());return b}; +THREE.Matrix4.makeInvert3x3=function(a){var b=a.m33,c=b.m,e=a.n33*a.n22-a.n32*a.n23,d=-a.n33*a.n21+a.n31*a.n23,f=a.n32*a.n21-a.n31*a.n22,g=-a.n33*a.n12+a.n32*a.n13,i=a.n33*a.n11-a.n31*a.n13,h=-a.n32*a.n11+a.n31*a.n12,j=a.n23*a.n12-a.n22*a.n13,m=-a.n23*a.n11+a.n21*a.n13,l=a.n22*a.n11-a.n21*a.n12;a=a.n11*e+a.n21*g+a.n31*j;if(a==0)throw"matrix not invertible";a=1/a;c[0]=a*e;c[1]=a*d;c[2]=a*f;c[3]=a*g;c[4]=a*i;c[5]=a*h;c[6]=a*j;c[7]=a*m;c[8]=a*l;return b}; THREE.Matrix4.makeFrustum=function(a,b,c,e,d,f){var g;g=new THREE.Matrix4;g.n11=2*d/(b-a);g.n12=0;g.n13=(b+a)/(b-a);g.n14=0;g.n21=0;g.n22=2*d/(e-c);g.n23=(e+c)/(e-c);g.n24=0;g.n31=0;g.n32=0;g.n33=-(f+d)/(f-d);g.n34=-2*f*d/(f-d);g.n41=0;g.n42=0;g.n43=-1;g.n44=0;return g};THREE.Matrix4.makePerspective=function(a,b,c,e){var d;a=c*Math.tan(a*Math.PI/360);d=-a;return THREE.Matrix4.makeFrustum(d*b,a*b,d,a,c,e)}; THREE.Matrix4.makeOrtho=function(a,b,c,e,d,f){var g,i,h,j;g=new THREE.Matrix4;i=b-a;h=c-e;j=f-d;g.n11=2/i;g.n12=0;g.n13=0;g.n14=-((b+a)/i);g.n21=0;g.n22=2/h;g.n23=0;g.n24=-((c+e)/h);g.n31=0;g.n32=0;g.n33=-2/j;g.n34=-((f+d)/j);g.n41=0;g.n42=0;g.n43=0;g.n44=1;return g};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3; THREE.Object3D=function(){this.parent=undefined;this.children=[];this.up=new THREE.Vector3(0,1,0);this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.rotationAutoUpdate=!0;this.matrix=new THREE.Matrix4;this.matrixWorld=new THREE.Matrix4;this.matrixRotationWorld=new THREE.Matrix4;this.matrixAutoUpdate=!0;this.matrixWorldNeedsUpdate=!0;this.quaternion=new THREE.Quaternion;this.useQuaternion=!1;this.boundRadius=0;this.boundRadiusScale=1;this.visible= @@ -47,35 +47,34 @@ undefined&&a.parent.removeChild(a);a.parent=this;this.children.push(a);for(var b b,c)}};THREE.Quaternion=function(a,b,c,e){this.set(a||0,b||0,c||0,e!==undefined?e:1)}; THREE.Quaternion.prototype={set:function(a,b,c,e){this.x=a;this.y=b;this.z=c;this.w=e;return this},setFromEuler:function(a){var b=0.5*Math.PI/360,c=a.x*b,e=a.y*b,d=a.z*b;a=Math.cos(e);e=Math.sin(e);b=Math.cos(-d);d=Math.sin(-d);var f=Math.cos(c);c=Math.sin(c);var g=a*b,i=e*d;this.w=g*f-i*c;this.x=g*c+i*f;this.y=e*b*f+a*d*c;this.z=a*d*f-e*b*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,e=this.z,d=this.w,f=a.x,g=a.y,i=a.z;a=a.w;this.x=b*a+d*f+c*i-e*g;this.y=c*a+d*g+e*f-b*i;this.z=e*a+d*i+b*g-c*f;this.w=d*a-b*f-c*g-e*i;return this}, -multiplyVector3:function(a,b){b||(b=a);var c=a.x,e=a.y,d=a.z,f=this.x,g=this.y,i=this.z,h=this.w,j=h*c+g*d-i*e,n=h*e+i*c-f*d,l=h*d+f*e-g*c;c=-f*c-g*e-i*d;b.x=j*h+c*-f+n*-i-l*-g;b.y=n*h+c*-g+l*-f-j*-i;b.z=l*h+c*-i+j*-g-n*-f;return b}}; +multiplyVector3:function(a,b){b||(b=a);var c=a.x,e=a.y,d=a.z,f=this.x,g=this.y,i=this.z,h=this.w,j=h*c+g*d-i*e,m=h*e+i*c-f*d,l=h*d+f*e-g*c;c=-f*c-g*e-i*d;b.x=j*h+c*-f+m*-i-l*-g;b.y=m*h+c*-g+l*-f-j*-i;b.z=l*h+c*-i+j*-g-m*-f;return b}}; THREE.Quaternion.slerp=function(a,b,c,e){var d=a.w*b.w+a.x*b.x+a.y*b.y+a.z*b.z;if(Math.abs(d)>=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var f=Math.acos(d),g=Math.sqrt(1-d*d);if(Math.abs(g)<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}d=Math.sin((1-e)*f)/g;e=Math.sin(e*f)/g;c.w=a.w*d+b.w*e;c.x=a.x*d+b.x*e;c.y=a.y*d+b.y*e;c.z=a.z*d+b.z*e;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; -THREE.Face3=function(a,b,c,e,d,f){this.a=a;this.b=b;this.c=c;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=d instanceof THREE.Color?d:new THREE.Color;this.vertexColors=d instanceof Array?d:[];this.materials=f instanceof Array?f:[f];this.centroid=new THREE.Vector3}; -THREE.Face4=function(a,b,c,e,d,f,g){this.a=a;this.b=b;this.c=c;this.d=e;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.color=f instanceof THREE.Color?f:new THREE.Color;this.vertexColors=f instanceof Array?f:[];this.materials=g instanceof Array?g:[g];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.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; +THREE.Face3=function(a,b,c,e,d,f){this.a=a;this.b=b;this.c=c;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=d instanceof THREE.Color?d:new THREE.Color;this.vertexColors=d instanceof Array?d:[];this.vertexTangents=[];this.materials=f instanceof Array?f:[f];this.centroid=new THREE.Vector3}; +THREE.Face4=function(a,b,c,e,d,f,g){this.a=a;this.b=b;this.c=c;this.d=e;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.color=f instanceof THREE.Color?f:new THREE.Color;this.vertexColors=f instanceof Array?f:[];this.vertexTangents=[];this.materials=g instanceof Array?g:[g];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.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; THREE.Geometry.prototype={computeCentroids:function(){var a,b,c;a=0;for(b=this.faces.length;a0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var b= -1,c=this.vertices.length;bthis.boundingBox.x[1])this.boundingBox.x[1]=a.position.x;if(a.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=a.position.y;if(a.position.zthis.boundingBox.z[1])this.boundingBox.z[1]=a.position.z}}}, -computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,c=this.vertices.length;b0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var b=1,c=this.vertices.length;bthis.boundingBox.x[1])this.boundingBox.x[1]=a.position.x;if(a.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=a.position.y;if(a.position.zthis.boundingBox.z[1])this.boundingBox.z[1]=a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,c=this.vertices.length;b1){console.log("THREE.Animation.update: Warning! Scale out of bounds:"+e+" on bone "+k);e=e<0?0:1}if(c==="pos"){c=a.position;if(this.interpolationType===THREE.AnimationHandler.LINEAR){c.x=d[0]+(f[0]-d[0])*e;c.y=d[1]+(f[1]-d[1])*e;c.z=d[2]+(f[2]-d[2])*e}else if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){this.points[0]= this.getPrevKeyWith("pos",k,g.index-1).pos;this.points[1]=d;this.points[2]=f;this.points[3]=this.getNextKeyWith("pos",k,i.index+1).pos;e=e*0.33+0.33;d=this.interpolateCatmullRom(this.points,e);c.x=d[0];c.y=d[1];c.z=d[2];if(this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){e=this.interpolateCatmullRom(this.points,e*1.01);this.target.set(e[0],e[1],e[2]);this.target.subSelf(c);this.target.y=0;this.target.normalize();e=Math.atan2(this.target.x,this.target.z);a.rotation.set(0,e,0)}}}else if(c=== -"rot")THREE.Quaternion.slerp(d,f,a.quaternion,e);else if(c==="scl"){c=a.scale;c.x=d[0]+(f[0]-d[0])*e;c.y=d[1]+(f[1]-d[1])*e;c.z=d[2]+(f[2]-d[2])*e}}}}if(this.JITCompile&&n[0][j]===undefined){this.hierarchy[0].update(undefined,!0);for(k=0;ka.length-2?f:f+1;c[3]=f>a.length-3?f:f+2;f=a[c[0]];i=a[c[1]];h=a[c[2]];j=a[c[3]];c=d*d;g=d*c;e[0]=this.interpolate(f[0],i[0],h[0],j[0],d,c,g);e[1]=this.interpolate(f[1],i[1],h[1],j[1],d,c,g);e[2]=this.interpolate(f[2],i[2],h[2],j[2],d,c,g);return e}; THREE.Animation.prototype.interpolate=function(a,b,c,e,d,f,g){a=(c-a)*0.5;e=(e-b)*0.5;return(2*(b-c)+a+e)*g+(-3*(b-c)-2*a-e)*f+a*d+b};THREE.Animation.prototype.getNextKeyWith=function(a,b,c){var e=this.data.hierarchy[b].keys;if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)c=c0?c:0:c>=0?c:c+e.length;c>=0;c--)if(e[c][a]!==undefined)return e[c];return this.data.hierarchy[b].keys[e.length-1]}; @@ -121,30 +120,30 @@ THREE.Scene=function(){THREE.Object3D.call(this);this.matrixAutoUpdate=!1;this.f THREE.Scene.prototype.addChildRecurse=function(a){if(a instanceof THREE.Light)this.lights.indexOf(a)===-1&&this.lights.push(a);else if(a instanceof THREE.Sound)this.sounds.indexOf(a)===-1&&this.sounds.push(a);else if(!(a instanceof THREE.Camera||a instanceof THREE.Bone)&&this.objects.indexOf(a)===-1){this.objects.push(a);this.__objectsAdded.push(a)}for(var b=0;b=0&&v>=0&&B>=0&&z>=0)return!0;else if(O<0&&v<0||B<0&&z<0)return!1;else{if(O<0)L=Math.max(L,O/(O-v));else v<0&&(N=Math.min(N,O/(O-v)));if(B<0)L=Math.max(L,B/(B-z));else z<0&&(N=Math.min(N,B/(B-z)));if(NO&&g.positionScreen.z0&&y.z<1){R=x[I]=x[I]||new THREE.RenderableParticle;I++;s=R;s.x=y.x/y.w;s.y=y.y/y.w;s.z=y.z;s.rotation=K.rotation.z;s.scale.x=K.scale.x*Math.abs(s.x-(y.x+u.projectionMatrix.n11)/(y.w+u.projectionMatrix.n14)); -s.scale.y=K.scale.y*Math.abs(s.y-(y.y+u.projectionMatrix.n22)/(y.w+u.projectionMatrix.n24));s.materials=K.materials;N.push(s)}}}}L&&N.sort(b);return N}}; -THREE.SVGRenderer=function(){function a(v,B,z){var D,r,o,E;D=0;for(r=v.lights.length;D0){z.r+=o.color.r*E;z.g+=o.color.g*E;z.b+=o.color.b*E}}else if(o instanceof THREE.PointLight){P.sub(o.position,B.centroidWorld);P.normalize();E=B.normalWorld.dot(P)*o.intensity;if(E>0){z.r+=o.color.r*E;z.g+=o.color.g*E;z.b+=o.color.b*E}}}}function b(v,B,z,D,r,o){u=e(L++);u.setAttribute("d","M "+v.positionScreen.x+ -" "+v.positionScreen.y+" L "+B.positionScreen.x+" "+B.positionScreen.y+" L "+z.positionScreen.x+","+z.positionScreen.y+"z");if(r instanceof THREE.MeshBasicMaterial)x.__styleString=r.color.__styleString;else if(r instanceof THREE.MeshLambertMaterial)if(I){G.r=y.r;G.g=y.g;G.b=y.b;a(o,D,G);x.r=r.color.r*G.r;x.g=r.color.g*G.g;x.b=r.color.b*G.b;x.updateStyleString()}else x.__styleString=r.color.__styleString;else if(r instanceof THREE.MeshDepthMaterial){H=1-r.__2near/(r.__farPlusNear-D.z*r.__farMinusNear); -x.setRGB(H,H,H)}else r instanceof THREE.MeshNormalMaterial&&x.setRGB(d(D.normalWorld.x),d(D.normalWorld.y),d(D.normalWorld.z));r.wireframe?u.setAttribute("style","fill: none; stroke: "+x.__styleString+"; stroke-width: "+r.wireframeLinewidth+"; stroke-opacity: "+r.opacity+"; stroke-linecap: "+r.wireframeLinecap+"; stroke-linejoin: "+r.wireframeLinejoin):u.setAttribute("style","fill: "+x.__styleString+"; fill-opacity: "+r.opacity);i.appendChild(u)}function c(v,B,z,D,r,o,E){u=e(L++);u.setAttribute("d", -"M "+v.positionScreen.x+" "+v.positionScreen.y+" L "+B.positionScreen.x+" "+B.positionScreen.y+" L "+z.positionScreen.x+","+z.positionScreen.y+" L "+D.positionScreen.x+","+D.positionScreen.y+"z");if(o instanceof THREE.MeshBasicMaterial)x.__styleString=o.color.__styleString;else if(o instanceof THREE.MeshLambertMaterial)if(I){G.r=y.r;G.g=y.g;G.b=y.b;a(E,r,G);x.r=o.color.r*G.r;x.g=o.color.g*G.g;x.b=o.color.b*G.b;x.updateStyleString()}else x.__styleString=o.color.__styleString;else if(o instanceof THREE.MeshDepthMaterial){H= -1-o.__2near/(o.__farPlusNear-r.z*o.__farMinusNear);x.setRGB(H,H,H)}else o instanceof THREE.MeshNormalMaterial&&x.setRGB(d(r.normalWorld.x),d(r.normalWorld.y),d(r.normalWorld.z));o.wireframe?u.setAttribute("style","fill: none; stroke: "+x.__styleString+"; stroke-width: "+o.wireframeLinewidth+"; stroke-opacity: "+o.opacity+"; stroke-linecap: "+o.wireframeLinecap+"; stroke-linejoin: "+o.wireframeLinejoin):u.setAttribute("style","fill: "+x.__styleString+"; fill-opacity: "+o.opacity);i.appendChild(u)} -function e(v){if(M[v]==null){M[v]=document.createElementNS("http://www.w3.org/2000/svg","path");O==0&&M[v].setAttribute("shape-rendering","crispEdges")}return M[v]}function d(v){return v<0?Math.min((1+v)*0.5,0.5):0.5+Math.min(v*0.5,0.5)}var f=null,g=new THREE.Projector,i=document.createElementNS("http://www.w3.org/2000/svg","svg"),h,j,n,l,m,k,q,t,A=new THREE.Rectangle,s=new THREE.Rectangle,I=!1,x=new THREE.Color(16777215),G=new THREE.Color(16777215),y=new THREE.Color(0),p=new THREE.Color(0),Q=new THREE.Color(0), -H,P=new THREE.Vector3,M=[],C=[],u,L,N,O=1;this.domElement=i;this.autoClear=!0;this.sortObjects=!0;this.sortElements=!0;this.setQuality=function(v){switch(v){case "high":O=1;break;case "low":O=0}};this.setSize=function(v,B){h=v;j=B;n=h/2;l=j/2;i.setAttribute("viewBox",-n+" "+-l+" "+h+" "+j);i.setAttribute("width",h);i.setAttribute("height",j);A.set(-n,-l,n,l)};this.clear=function(){for(;i.childNodes.length>0;)i.removeChild(i.childNodes[0])};this.render=function(v,B){var z,D,r,o,E,J,w,F;this.autoClear&& -this.clear();f=g.projectScene(v,B,this.sortElements);N=L=0;if(I=v.lights.length>0){w=v.lights;y.setRGB(0,0,0);p.setRGB(0,0,0);Q.setRGB(0,0,0);z=0;for(D=w.length;z=0&&v>=0&&z>=0&&y>=0)return!0;else if(N<0&&v<0||z<0&&y<0)return!1;else{if(N<0)L=Math.max(L,N/(N-v));else v<0&&(Q=Math.min(Q,N/(N-v)));if(z<0)L=Math.max(L,z/(z-y));else y<0&&(Q=Math.min(Q,z/(z-y)));if(QN&&g.positionScreen.z0&&C.z<1){R=x[K]=x[K]||new THREE.RenderableParticle;K++;t=R;t.x=C.x/C.w;t.y=C.y/C.w;t.z=C.z;t.rotation=J.rotation.z;t.scale.x=J.scale.x*Math.abs(t.x-(C.x+s.projectionMatrix.n11)/(C.w+s.projectionMatrix.n14)); +t.scale.y=J.scale.y*Math.abs(t.y-(C.y+s.projectionMatrix.n22)/(C.w+s.projectionMatrix.n24));t.materials=J.materials;Q.push(t)}}}}L&&Q.sort(b);return Q}}; +THREE.SVGRenderer=function(){function a(v,z,y){var D,q,o,E;D=0;for(q=v.lights.length;D0){y.r+=o.color.r*E;y.g+=o.color.g*E;y.b+=o.color.b*E}}else if(o instanceof THREE.PointLight){P.sub(o.position,z.centroidWorld);P.normalize();E=z.normalWorld.dot(P)*o.intensity;if(E>0){y.r+=o.color.r*E;y.g+=o.color.g*E;y.b+=o.color.b*E}}}}function b(v,z,y,D,q,o){s=e(L++);s.setAttribute("d","M "+v.positionScreen.x+ +" "+v.positionScreen.y+" L "+z.positionScreen.x+" "+z.positionScreen.y+" L "+y.positionScreen.x+","+y.positionScreen.y+"z");if(q instanceof THREE.MeshBasicMaterial)x.__styleString=q.color.__styleString;else if(q instanceof THREE.MeshLambertMaterial)if(K){G.r=C.r;G.g=C.g;G.b=C.b;a(o,D,G);x.r=q.color.r*G.r;x.g=q.color.g*G.g;x.b=q.color.b*G.b;x.updateStyleString()}else x.__styleString=q.color.__styleString;else if(q instanceof THREE.MeshDepthMaterial){H=1-q.__2near/(q.__farPlusNear-D.z*q.__farMinusNear); +x.setRGB(H,H,H)}else q instanceof THREE.MeshNormalMaterial&&x.setRGB(d(D.normalWorld.x),d(D.normalWorld.y),d(D.normalWorld.z));q.wireframe?s.setAttribute("style","fill: none; stroke: "+x.__styleString+"; stroke-width: "+q.wireframeLinewidth+"; stroke-opacity: "+q.opacity+"; stroke-linecap: "+q.wireframeLinecap+"; stroke-linejoin: "+q.wireframeLinejoin):s.setAttribute("style","fill: "+x.__styleString+"; fill-opacity: "+q.opacity);i.appendChild(s)}function c(v,z,y,D,q,o,E){s=e(L++);s.setAttribute("d", +"M "+v.positionScreen.x+" "+v.positionScreen.y+" L "+z.positionScreen.x+" "+z.positionScreen.y+" L "+y.positionScreen.x+","+y.positionScreen.y+" L "+D.positionScreen.x+","+D.positionScreen.y+"z");if(o instanceof THREE.MeshBasicMaterial)x.__styleString=o.color.__styleString;else if(o instanceof THREE.MeshLambertMaterial)if(K){G.r=C.r;G.g=C.g;G.b=C.b;a(E,q,G);x.r=o.color.r*G.r;x.g=o.color.g*G.g;x.b=o.color.b*G.b;x.updateStyleString()}else x.__styleString=o.color.__styleString;else if(o instanceof THREE.MeshDepthMaterial){H= +1-o.__2near/(o.__farPlusNear-q.z*o.__farMinusNear);x.setRGB(H,H,H)}else o instanceof THREE.MeshNormalMaterial&&x.setRGB(d(q.normalWorld.x),d(q.normalWorld.y),d(q.normalWorld.z));o.wireframe?s.setAttribute("style","fill: none; stroke: "+x.__styleString+"; stroke-width: "+o.wireframeLinewidth+"; stroke-opacity: "+o.opacity+"; stroke-linecap: "+o.wireframeLinecap+"; stroke-linejoin: "+o.wireframeLinejoin):s.setAttribute("style","fill: "+x.__styleString+"; fill-opacity: "+o.opacity);i.appendChild(s)} +function e(v){if(M[v]==null){M[v]=document.createElementNS("http://www.w3.org/2000/svg","path");N==0&&M[v].setAttribute("shape-rendering","crispEdges")}return M[v]}function d(v){return v<0?Math.min((1+v)*0.5,0.5):0.5+Math.min(v*0.5,0.5)}var f=null,g=new THREE.Projector,i=document.createElementNS("http://www.w3.org/2000/svg","svg"),h,j,m,l,n,k,r,u,B=new THREE.Rectangle,t=new THREE.Rectangle,K=!1,x=new THREE.Color(16777215),G=new THREE.Color(16777215),C=new THREE.Color(0),p=new THREE.Color(0),O=new THREE.Color(0), +H,P=new THREE.Vector3,M=[],A=[],s,L,Q,N=1;this.domElement=i;this.autoClear=!0;this.sortObjects=!0;this.sortElements=!0;this.setQuality=function(v){switch(v){case "high":N=1;break;case "low":N=0}};this.setSize=function(v,z){h=v;j=z;m=h/2;l=j/2;i.setAttribute("viewBox",-m+" "+-l+" "+h+" "+j);i.setAttribute("width",h);i.setAttribute("height",j);B.set(-m,-l,m,l)};this.clear=function(){for(;i.childNodes.length>0;)i.removeChild(i.childNodes[0])};this.render=function(v,z){var y,D,q,o,E,I,w,F;this.autoClear&& +this.clear();f=g.projectScene(v,z,this.sortElements);Q=L=0;if(K=v.lights.length>0){w=v.lights;C.setRGB(0,0,0);p.setRGB(0,0,0);O.setRGB(0,0,0);y=0;for(D=w.length;y>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgb("+~~(this.r*255)+","+~~(this.g*255)+","+~~(this.b*255)+")"},clone:function(){return new THREE.Color(this.hex)}}; THREE.Vector2=function(a,b){this.set(a||0,b||0)}; THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.set(a.x,a.y);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y);return this},multiplyScalar:function(a){this.set(this.x*a,this.y*a);return this},negate:function(){this.set(-this.x,-this.y);return this},unit:function(){this.multiplyScalar(1/ this.length());return this},length:function(){return Math.sqrt(this.lengthSq())},lengthSq:function(){return this.x*this.x+this.y*this.y},clone:function(){return new THREE.Vector2(this.x,this.y)}};THREE.Vector3=function(a,b,c){this.set(a||0,b||0,c||0)}; THREE.Vector3.prototype={set:function(a,b,c){this.x=a;this.y=b;this.z=c;return this},copy:function(a){this.set(a.x,a.y,a.z);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y,a.z+b.z);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y,this.z+a.z);return this},addScalar:function(a){this.set(this.x+a,this.y+a,this.z+a);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y,a.z-b.z);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y,this.z-a.z);return this},cross:function(a, -b){this.set(a.y*b.z-a.z*b.y,a.z*b.x-a.x*b.z,a.x*b.y-a.y*b.x);return this},crossSelf:function(a){var b=this.x,c=this.y,e=this.z;this.set(c*a.z-e*a.y,e*a.x-b*a.z,b*a.y-c*a.x);return this},multiply:function(a,b){this.set(a.x*b.x,a.y*b.y,a.z*b.z);return this},multiplySelf:function(a){this.set(this.x*a.x,this.y*a.y,this.z*a.z);return this},multiplyScalar:function(a){this.set(this.x*a,this.y*a,this.z*a);return this},divideSelf:function(a){this.set(this.x/a.x,this.y/a.y,this.z/a.z);return this},divideScalar:function(a){this.set(this.x/ +b){this.set(a.y*b.z-a.z*b.y,a.z*b.x-a.x*b.z,a.x*b.y-a.y*b.x);return this},crossSelf:function(a){var b=this.x,c=this.y,f=this.z;this.set(c*a.z-f*a.y,f*a.x-b*a.z,b*a.y-c*a.x);return this},multiply:function(a,b){this.set(a.x*b.x,a.y*b.y,a.z*b.z);return this},multiplySelf:function(a){this.set(this.x*a.x,this.y*a.y,this.z*a.z);return this},multiplyScalar:function(a){this.set(this.x*a,this.y*a,this.z*a);return this},divideSelf:function(a){this.set(this.x/a.x,this.y/a.y,this.z/a.z);return this},divideScalar:function(a){this.set(this.x/ a,this.y/a,this.z/a);return this},negate:function(){this.set(-this.x,-this.y,-this.z);return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){return Math.sqrt(this.distanceToSquared(a))},distanceToSquared:function(a){var b=this.x-a.x,c=this.y-a.y;a=this.z-a.z;return b*b+c*c+a*a},length:function(){return Math.sqrt(this.lengthSq())},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},lengthManhattan:function(){return this.x+this.y+this.z},normalize:function(){var a= this.length();a>0?this.multiplyScalar(1/a):this.set(0,0,0);return this},setPositionFromMatrix:function(a){this.x=a.n14;this.y=a.n24;this.z=a.n34},setRotationFromMatrix:function(a){this.y=Math.asin(a.n13);var b=Math.cos(this.y);if(Math.abs(b)>1.0E-5){this.x=Math.atan2(-a.n23/b,a.n33/b);this.z=Math.atan2(-a.n13/b,a.n11/b)}else{this.x=0;this.z=Math.atan2(a.n21,a.n22)}},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){return Math.abs(this.x)<1.0E-4&&Math.abs(this.y)< -1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)}};THREE.Vector4=function(a,b,c,e){this.set(a||0,b||0,c||0,e||1)}; -THREE.Vector4.prototype={set:function(a,b,c,e){this.x=a;this.y=b;this.z=c;this.w=e;return this},copy:function(a){this.set(a.x,a.y,a.z,a.w||1);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y,a.z+b.z,a.w+b.w);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y,this.z+a.z,this.w+a.w);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y,a.z-b.z,a.w-b.w);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y,this.z-a.z,this.w-a.w);return this},multiplyScalar:function(a){this.set(this.x* +1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)}};THREE.Vector4=function(a,b,c,f){this.set(a||0,b||0,c||0,f||1)}; +THREE.Vector4.prototype={set:function(a,b,c,f){this.x=a;this.y=b;this.z=c;this.w=f;return this},copy:function(a){this.set(a.x,a.y,a.z,a.w||1);return this},add:function(a,b){this.set(a.x+b.x,a.y+b.y,a.z+b.z,a.w+b.w);return this},addSelf:function(a){this.set(this.x+a.x,this.y+a.y,this.z+a.z,this.w+a.w);return this},sub:function(a,b){this.set(a.x-b.x,a.y-b.y,a.z-b.z,a.w-b.w);return this},subSelf:function(a){this.set(this.x-a.x,this.y-a.y,this.z-a.z,this.w-a.w);return this},multiplyScalar:function(a){this.set(this.x* a,this.y*a,this.z*a,this.w*a);return this},divideScalar:function(a){this.set(this.x/a,this.y/a,this.z/a,this.w/a);return this},lerpSelf:function(a,b){this.set(this.x+(a.x-this.x)*b,this.y+(a.y-this.y)*b,this.z+(a.z-this.z)*b,this.w+(a.w-this.w)*b)},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)}};THREE.Ray=function(a,b){this.origin=a||new THREE.Vector3;this.direction=b||new THREE.Vector3}; -THREE.Ray.prototype={intersectScene:function(a){var b,c,e=a.objects,f=[];a=0;for(b=e.length;a0&&O>0&&R+O< -1}var c,e,f,i,j,p,n,s,y,A,D,z=a.geometry,J=z.vertices,K=[];c=0;for(e=z.faces.length;cn?e:n;f=f>s?f:s}a()}; -this.add3Points=function(n,s,y,A,D,z){if(p){p=!1;b=ny?n>D?n:D:y>D?y:D;f=s>A?s>z?s:z:A>z?A:z}else{b=ny?n>D?n>e?n:e:D>e?D:e:y>D?y>e?y:e:D>e?D:e;f=s>A?s>z?s>f?s:f:z>f?z:f:A>z?A>f?A:f:z>f?z:f}a()};this.addRectangle=function(n){if(p){p=!1;b=n.getLeft();c=n.getTop();e=n.getRight();f=n.getBottom()}else{b=bn.getRight()? -e:n.getRight();f=f>n.getBottom()?f:n.getBottom()}a()};this.inflate=function(n){b-=n;c-=n;e+=n;f+=n;a()};this.minSelf=function(n){b=b>n.getLeft()?b:n.getLeft();c=c>n.getTop()?c:n.getTop();e=e=0&&Math.min(f,n.getBottom())-Math.max(c,n.getTop())>=0};this.empty=function(){p=!0;f=e=c=b=0;a()};this.isEmpty=function(){return p}}; +THREE.Ray.prototype={intersectScene:function(a){var b,c,f=a.objects,e=[];a=0;for(b=f.length;a0&&P>0&&U+P< +1}var c,f,e,h,j,p,n,s,x,z,C,y=a.geometry,J=y.vertices,K=[];c=0;for(f=y.faces.length;cn?f:n;e=e>s?e:s}a()}; +this.add3Points=function(n,s,x,z,C,y){if(p){p=!1;b=nx?n>C?n:C:x>C?x:C;e=s>z?s>y?s:y:z>y?z:y}else{b=nx?n>C?n>f?n:f:C>f?C:f:x>C?x>f?x:f:C>f?C:f;e=s>z?s>y?s>e?s:e:y>e?y:e:z>y?z>e?z:e:y>e?y:e}a()};this.addRectangle=function(n){if(p){p=!1;b=n.getLeft();c=n.getTop();f=n.getRight();e=n.getBottom()}else{b=bn.getRight()? +f:n.getRight();e=e>n.getBottom()?e:n.getBottom()}a()};this.inflate=function(n){b-=n;c-=n;f+=n;e+=n;a()};this.minSelf=function(n){b=b>n.getLeft()?b:n.getLeft();c=c>n.getTop()?c:n.getTop();f=f=0&&Math.min(e,n.getBottom())-Math.max(c,n.getTop())>=0};this.empty=function(){p=!0;e=f=c=b=0;a()};this.isEmpty=function(){return p}}; THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a,b=this.m;a=b[1];b[1]=b[3];b[3]=a;a=b[2];b[2]=b[6];b[6]=a;a=b[5];b[5]=b[7];b[7]=a;return this},transposeIntoArray:function(a){var b=this.m;a[0]=b[0];a[1]=b[3];a[2]=b[6];a[3]=b[1];a[4]=b[4];a[5]=b[7];a[6]=b[2];a[7]=b[5];a[8]=b[8];return this}}; -THREE.Matrix4=function(a,b,c,e,f,i,j,p,n,s,y,A,D,z,J,K){this.set(a||1,b||0,c||0,e||0,f||0,i||1,j||0,p||0,n||0,s||0,y||1,A||0,D||0,z||0,J||0,K||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; -THREE.Matrix4.prototype={set:function(a,b,c,e,f,i,j,p,n,s,y,A,D,z,J,K){this.n11=a;this.n12=b;this.n13=c;this.n14=e;this.n21=f;this.n22=i;this.n23=j;this.n24=p;this.n31=n;this.n32=s;this.n33=y;this.n34=A;this.n41=D;this.n42=z;this.n43=J;this.n44=K;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(a){this.set(a.n11,a.n12,a.n13,a.n14,a.n21,a.n22,a.n23,a.n24,a.n31,a.n32,a.n33,a.n34,a.n41,a.n42,a.n43,a.n44);return this},lookAt:function(a,b,c){var e=THREE.Matrix4.__v1, -f=THREE.Matrix4.__v2,i=THREE.Matrix4.__v3;i.sub(a,b).normalize();if(i.length()===0)i.z=1;e.cross(c,i).normalize();if(e.length()===0){i.x+=1.0E-4;e.cross(c,i).normalize()}f.cross(i,e).normalize();this.n11=e.x;this.n12=f.x;this.n13=i.x;this.n21=e.y;this.n22=f.y;this.n23=i.y;this.n31=e.z;this.n32=f.z;this.n33=i.z;return this},multiplyVector3:function(a){var b=a.x,c=a.y,e=a.z,f=1/(this.n41*b+this.n42*c+this.n43*e+this.n44);a.x=(this.n11*b+this.n12*c+this.n13*e+this.n14)*f;a.y=(this.n21*b+this.n22*c+this.n23* -e+this.n24)*f;a.z=(this.n31*b+this.n32*c+this.n33*e+this.n34)*f;return a},multiplyVector4:function(a){var b=a.x,c=a.y,e=a.z,f=a.w;a.x=this.n11*b+this.n12*c+this.n13*e+this.n14*f;a.y=this.n21*b+this.n22*c+this.n23*e+this.n24*f;a.z=this.n31*b+this.n32*c+this.n33*e+this.n34*f;a.w=this.n41*b+this.n42*c+this.n43*e+this.n44*f;return a},rotateAxis:function(a){var b=a.x,c=a.y,e=a.z;a.x=b*this.n11+c*this.n12+e*this.n13;a.y=b*this.n21+c*this.n22+e*this.n23;a.z=b*this.n31+c*this.n32+e*this.n33;a.normalize(); -return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var c=a.n11,e=a.n12,f=a.n13,i=a.n14,j=a.n21,p=a.n22,n=a.n23,s=a.n24,y=a.n31,A=a.n32,D=a.n33,z=a.n34,J=a.n41,K=a.n42,O=a.n43,L=a.n44,ha=b.n11,ma=b.n12,pa=b.n13,R=b.n14,B=b.n21,sa=b.n22, -d=b.n23,Da=b.n24,Aa=b.n31,Q=b.n32,N=b.n33,ta=b.n34;this.n11=c*ha+e*B+f*Aa;this.n12=c*ma+e*sa+f*Q;this.n13=c*pa+e*d+f*N;this.n14=c*R+e*Da+f*ta+i;this.n21=j*ha+p*B+n*Aa;this.n22=j*ma+p*sa+n*Q;this.n23=j*pa+p*d+n*N;this.n24=j*R+p*Da+n*ta+s;this.n31=y*ha+A*B+D*Aa;this.n32=y*ma+A*sa+D*Q;this.n33=y*pa+A*d+D*N;this.n34=y*R+A*Da+D*ta+z;this.n41=J*ha+K*B+O*Aa;this.n42=J*ma+K*sa+O*Q;this.n43=J*pa+K*d+O*N;this.n44=J*R+K*Da+O*ta+L;return this},multiplyToArray:function(a,b,c){this.multiply(a,b);c[0]=this.n11; +THREE.Matrix4=function(a,b,c,f,e,h,j,p,n,s,x,z,C,y,J,K){this.set(a||1,b||0,c||0,f||0,e||0,h||1,j||0,p||0,n||0,s||0,x||1,z||0,C||0,y||0,J||0,K||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; +THREE.Matrix4.prototype={set:function(a,b,c,f,e,h,j,p,n,s,x,z,C,y,J,K){this.n11=a;this.n12=b;this.n13=c;this.n14=f;this.n21=e;this.n22=h;this.n23=j;this.n24=p;this.n31=n;this.n32=s;this.n33=x;this.n34=z;this.n41=C;this.n42=y;this.n43=J;this.n44=K;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(a){this.set(a.n11,a.n12,a.n13,a.n14,a.n21,a.n22,a.n23,a.n24,a.n31,a.n32,a.n33,a.n34,a.n41,a.n42,a.n43,a.n44);return this},lookAt:function(a,b,c){var f=THREE.Matrix4.__v1, +e=THREE.Matrix4.__v2,h=THREE.Matrix4.__v3;h.sub(a,b).normalize();if(h.length()===0)h.z=1;f.cross(c,h).normalize();if(f.length()===0){h.x+=1.0E-4;f.cross(c,h).normalize()}e.cross(h,f).normalize();this.n11=f.x;this.n12=e.x;this.n13=h.x;this.n21=f.y;this.n22=e.y;this.n23=h.y;this.n31=f.z;this.n32=e.z;this.n33=h.z;return this},multiplyVector3:function(a){var b=a.x,c=a.y,f=a.z,e=1/(this.n41*b+this.n42*c+this.n43*f+this.n44);a.x=(this.n11*b+this.n12*c+this.n13*f+this.n14)*e;a.y=(this.n21*b+this.n22*c+this.n23* +f+this.n24)*e;a.z=(this.n31*b+this.n32*c+this.n33*f+this.n34)*e;return a},multiplyVector4:function(a){var b=a.x,c=a.y,f=a.z,e=a.w;a.x=this.n11*b+this.n12*c+this.n13*f+this.n14*e;a.y=this.n21*b+this.n22*c+this.n23*f+this.n24*e;a.z=this.n31*b+this.n32*c+this.n33*f+this.n34*e;a.w=this.n41*b+this.n42*c+this.n43*f+this.n44*e;return a},rotateAxis:function(a){var b=a.x,c=a.y,f=a.z;a.x=b*this.n11+c*this.n12+f*this.n13;a.y=b*this.n21+c*this.n22+f*this.n23;a.z=b*this.n31+c*this.n32+f*this.n33;a.normalize(); +return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var c=a.n11,f=a.n12,e=a.n13,h=a.n14,j=a.n21,p=a.n22,n=a.n23,s=a.n24,x=a.n31,z=a.n32,C=a.n33,y=a.n34,J=a.n41,K=a.n42,P=a.n43,L=a.n44,ja=b.n11,ma=b.n12,sa=b.n13,U=b.n14,A=b.n21,oa=b.n22, +d=b.n23,Ba=b.n24,Ca=b.n31,Q=b.n32,N=b.n33,pa=b.n34;this.n11=c*ja+f*A+e*Ca;this.n12=c*ma+f*oa+e*Q;this.n13=c*sa+f*d+e*N;this.n14=c*U+f*Ba+e*pa+h;this.n21=j*ja+p*A+n*Ca;this.n22=j*ma+p*oa+n*Q;this.n23=j*sa+p*d+n*N;this.n24=j*U+p*Ba+n*pa+s;this.n31=x*ja+z*A+C*Ca;this.n32=x*ma+z*oa+C*Q;this.n33=x*sa+z*d+C*N;this.n34=x*U+z*Ba+C*pa+y;this.n41=J*ja+K*A+P*Ca;this.n42=J*ma+K*oa+P*Q;this.n43=J*sa+K*d+P*N;this.n44=J*U+K*Ba+P*pa+L;return this},multiplyToArray:function(a,b,c){this.multiply(a,b);c[0]=this.n11; c[1]=this.n21;c[2]=this.n31;c[3]=this.n41;c[4]=this.n12;c[5]=this.n22;c[6]=this.n32;c[7]=this.n42;c[8]=this.n13;c[9]=this.n23;c[10]=this.n33;c[11]=this.n43;c[12]=this.n14;c[13]=this.n24;c[14]=this.n34;c[15]=this.n44;return this},multiplySelf:function(a){this.multiply(this,a);return this},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=a;this.n42*=a;this.n43*=a;this.n44*= -a;return this},determinant:function(){var a=this.n11,b=this.n12,c=this.n13,e=this.n14,f=this.n21,i=this.n22,j=this.n23,p=this.n24,n=this.n31,s=this.n32,y=this.n33,A=this.n34,D=this.n41,z=this.n42,J=this.n43,K=this.n44;return e*j*s*D-c*p*s*D-e*i*y*D+b*p*y*D+c*i*A*D-b*j*A*D-e*j*n*z+c*p*n*z+e*f*y*z-a*p*y*z-c*f*A*z+a*j*A*z+e*i*n*J-b*p*n*J-e*f*s*J+a*p*s*J+b*f*A*J-a*i*A*J-c*i*n*K+b*j*n*K+c*f*s*K-a*j*s*K-b*f*y*K+a*i*y*K},transpose:function(){var a;a=this.n21;this.n21=this.n12;this.n12=a;a=this.n31;this.n31= +a;return this},determinant:function(){var a=this.n11,b=this.n12,c=this.n13,f=this.n14,e=this.n21,h=this.n22,j=this.n23,p=this.n24,n=this.n31,s=this.n32,x=this.n33,z=this.n34,C=this.n41,y=this.n42,J=this.n43,K=this.n44;return f*j*s*C-c*p*s*C-f*h*x*C+b*p*x*C+c*h*z*C-b*j*z*C-f*j*n*y+c*p*n*y+f*e*x*y-a*p*x*y-c*e*z*y+a*j*z*y+f*h*n*J-b*p*n*J-f*e*s*J+a*p*s*J+b*e*z*J-a*h*z*J-c*h*n*K+b*j*n*K+c*e*s*K-a*j*s*K-b*e*x*K+a*h*x*K},transpose:function(){var a;a=this.n21;this.n21=this.n12;this.n12=a;a=this.n31;this.n31= this.n13;this.n13=a;a=this.n32;this.n32=this.n23;this.n23=a;a=this.n41;this.n41=this.n14;this.n14=a;a=this.n42;this.n42=this.n24;this.n24=a;a=this.n43;this.n43=this.n34;this.n43=a;return this},clone:function(){var a=new THREE.Matrix4;a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){this.flat[0]= this.n11;this.flat[1]=this.n21;this.flat[2]=this.n31;this.flat[3]=this.n41;this.flat[4]=this.n12;this.flat[5]=this.n22;this.flat[6]=this.n32;this.flat[7]=this.n42;this.flat[8]=this.n13;this.flat[9]=this.n23;this.flat[10]=this.n33;this.flat[11]=this.n43;this.flat[12]=this.n14;this.flat[13]=this.n24;this.flat[14]=this.n34;this.flat[15]=this.n44;return this.flat},flattenToArray:function(a){a[0]=this.n11;a[1]=this.n21;a[2]=this.n31;a[3]=this.n41;a[4]=this.n12;a[5]=this.n22;a[6]=this.n32;a[7]=this.n42; a[8]=this.n13;a[9]=this.n23;a[10]=this.n33;a[11]=this.n43;a[12]=this.n14;a[13]=this.n24;a[14]=this.n34;a[15]=this.n44;return a},flattenToArrayOffset:function(a,b){a[b]=this.n11;a[b+1]=this.n21;a[b+2]=this.n31;a[b+3]=this.n41;a[b+4]=this.n12;a[b+5]=this.n22;a[b+6]=this.n32;a[b+7]=this.n42;a[b+8]=this.n13;a[b+9]=this.n23;a[b+10]=this.n33;a[b+11]=this.n43;a[b+12]=this.n14;a[b+13]=this.n24;a[b+14]=this.n34;a[b+15]=this.n44;return a},setTranslation:function(a,b,c){this.set(1,0,0,a,0,1,0,b,0,0,1,c,0,0, -0,1);return this},setScale:function(a,b,c){this.set(a,0,0,0,0,b,0,0,0,0,c,0,0,0,0,1);return this},setRotationX:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(1,0,0,0,0,b,-a,0,0,a,b,0,0,0,0,1);return this},setRotationY:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(b,0,a,0,0,1,0,0,-a,0,b,0,0,0,0,1);return this},setRotationZ:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(b,-a,0,0,a,b,0,0,0,0,1,0,0,0,0,1);return this},setRotationAxis:function(a,b){var c=Math.cos(b),e=Math.sin(b),f= -1-c,i=a.x,j=a.y,p=a.z,n=f*i,s=f*j;this.set(n*i+c,n*j-e*p,n*p+e*j,0,n*j+e*p,s*j+c,s*p-e*i,0,n*p-e*j,s*p+e*i,f*p*p+c,0,0,0,0,1);return this},setPosition:function(a){this.n14=a.x;this.n24=a.y;this.n34=a.z;return this},setRotationFromEuler:function(a){var b=a.x,c=a.y,e=a.z;a=Math.cos(b);b=Math.sin(b);var f=Math.cos(c);c=Math.sin(c);var i=Math.cos(e);e=Math.sin(e);var j=a*c,p=b*c;this.n11=f*i;this.n12=-f*e;this.n13=c;this.n21=p*i+a*e;this.n22=-p*e+a*i;this.n23=-b*f;this.n31=-j*i+b*e;this.n32=j*e+b*i;this.n33= -a*f;return this},setRotationFromQuaternion:function(a){var b=a.x,c=a.y,e=a.z,f=a.w,i=b+b,j=c+c,p=e+e;a=b*i;var n=b*j;b*=p;var s=c*j;c*=p;e*=p;i*=f;j*=f;f*=p;this.n11=1-(s+e);this.n12=n-f;this.n13=b+j;this.n21=n+f;this.n22=1-(a+e);this.n23=c-i;this.n31=b-j;this.n32=c+i;this.n33=1-(a+s);return this},scale:function(a){var b=a.x,c=a.y;a=a.z;this.n11*=b;this.n12*=c;this.n13*=a;this.n21*=b;this.n22*=c;this.n23*=a;this.n31*=b;this.n32*=c;this.n33*=a;this.n41*=b;this.n42*=c;this.n43*=a;return this},extractPosition:function(a){this.n14= -a.n14;this.n24=a.n24;this.n34=a.n34},extractRotation:function(a,b){var c=1/b.x,e=1/b.y,f=1/b.z;this.n11=a.n11*c;this.n21=a.n21*c;this.n31=a.n31*c;this.n12=a.n12*e;this.n22=a.n22*e;this.n32=a.n32*e;this.n13=a.n13*f;this.n23=a.n23*f;this.n33=a.n33*f}}; -THREE.Matrix4.makeInvert=function(a,b){var c=a.n11,e=a.n12,f=a.n13,i=a.n14,j=a.n21,p=a.n22,n=a.n23,s=a.n24,y=a.n31,A=a.n32,D=a.n33,z=a.n34,J=a.n41,K=a.n42,O=a.n43,L=a.n44;b===undefined&&(b=new THREE.Matrix4);b.n11=n*z*K-s*D*K+s*A*O-p*z*O-n*A*L+p*D*L;b.n12=i*D*K-f*z*K-i*A*O+e*z*O+f*A*L-e*D*L;b.n13=f*s*K-i*n*K+i*p*O-e*s*O-f*p*L+e*n*L;b.n14=i*n*A-f*s*A-i*p*D+e*s*D+f*p*z-e*n*z;b.n21=s*D*J-n*z*J-s*y*O+j*z*O+n*y*L-j*D*L;b.n22=f*z*J-i*D*J+i*y*O-c*z*O-f*y*L+c*D*L;b.n23=i*n*J-f*s*J-i*j*O+c*s*O+f*j*L-c*n*L; -b.n24=f*s*y-i*n*y+i*j*D-c*s*D-f*j*z+c*n*z;b.n31=p*z*J-s*A*J+s*y*K-j*z*K-p*y*L+j*A*L;b.n32=i*A*J-e*z*J-i*y*K+c*z*K+e*y*L-c*A*L;b.n33=f*s*J-i*p*J+i*j*K-c*s*K-e*j*L+c*p*L;b.n34=i*p*y-e*s*y-i*j*A+c*s*A+e*j*z-c*p*z;b.n41=n*A*J-p*D*J-n*y*K+j*D*K+p*y*O-j*A*O;b.n42=e*D*J-f*A*J+f*y*K-c*D*K-e*y*O+c*A*O;b.n43=f*p*J-e*n*J-f*j*K+c*n*K+e*j*O-c*p*O;b.n44=e*n*y-f*p*y+f*j*A-c*n*A-e*j*D+c*p*D;b.multiplyScalar(1/a.determinant());return b}; -THREE.Matrix4.makeInvert3x3=function(a){var b=a.m33,c=b.m,e=a.n33*a.n22-a.n32*a.n23,f=-a.n33*a.n21+a.n31*a.n23,i=a.n32*a.n21-a.n31*a.n22,j=-a.n33*a.n12+a.n32*a.n13,p=a.n33*a.n11-a.n31*a.n13,n=-a.n32*a.n11+a.n31*a.n12,s=a.n23*a.n12-a.n22*a.n13,y=-a.n23*a.n11+a.n21*a.n13,A=a.n22*a.n11-a.n21*a.n12;a=a.n11*e+a.n21*j+a.n31*s;if(a==0)throw"matrix not invertible";a=1/a;c[0]=a*e;c[1]=a*f;c[2]=a*i;c[3]=a*j;c[4]=a*p;c[5]=a*n;c[6]=a*s;c[7]=a*y;c[8]=a*A;return b}; -THREE.Matrix4.makeFrustum=function(a,b,c,e,f,i){var j;j=new THREE.Matrix4;j.n11=2*f/(b-a);j.n12=0;j.n13=(b+a)/(b-a);j.n14=0;j.n21=0;j.n22=2*f/(e-c);j.n23=(e+c)/(e-c);j.n24=0;j.n31=0;j.n32=0;j.n33=-(i+f)/(i-f);j.n34=-2*i*f/(i-f);j.n41=0;j.n42=0;j.n43=-1;j.n44=0;return j};THREE.Matrix4.makePerspective=function(a,b,c,e){var f;a=c*Math.tan(a*Math.PI/360);f=-a;return THREE.Matrix4.makeFrustum(f*b,a*b,f,a,c,e)}; -THREE.Matrix4.makeOrtho=function(a,b,c,e,f,i){var j,p,n,s;j=new THREE.Matrix4;p=b-a;n=c-e;s=i-f;j.n11=2/p;j.n12=0;j.n13=0;j.n14=-((b+a)/p);j.n21=0;j.n22=2/n;j.n23=0;j.n24=-((c+e)/n);j.n31=0;j.n32=0;j.n33=-2/s;j.n34=-((i+f)/s);j.n41=0;j.n42=0;j.n43=0;j.n44=1;return j};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3; +0,1);return this},setScale:function(a,b,c){this.set(a,0,0,0,0,b,0,0,0,0,c,0,0,0,0,1);return this},setRotationX:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(1,0,0,0,0,b,-a,0,0,a,b,0,0,0,0,1);return this},setRotationY:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(b,0,a,0,0,1,0,0,-a,0,b,0,0,0,0,1);return this},setRotationZ:function(a){var b=Math.cos(a);a=Math.sin(a);this.set(b,-a,0,0,a,b,0,0,0,0,1,0,0,0,0,1);return this},setRotationAxis:function(a,b){var c=Math.cos(b),f=Math.sin(b),e= +1-c,h=a.x,j=a.y,p=a.z,n=e*h,s=e*j;this.set(n*h+c,n*j-f*p,n*p+f*j,0,n*j+f*p,s*j+c,s*p-f*h,0,n*p-f*j,s*p+f*h,e*p*p+c,0,0,0,0,1);return this},setPosition:function(a){this.n14=a.x;this.n24=a.y;this.n34=a.z;return this},setRotationFromEuler:function(a){var b=a.x,c=a.y,f=a.z;a=Math.cos(b);b=Math.sin(b);var e=Math.cos(c);c=Math.sin(c);var h=Math.cos(f);f=Math.sin(f);var j=a*c,p=b*c;this.n11=e*h;this.n12=-e*f;this.n13=c;this.n21=p*h+a*f;this.n22=-p*f+a*h;this.n23=-b*e;this.n31=-j*h+b*f;this.n32=j*f+b*h;this.n33= +a*e;return this},setRotationFromQuaternion:function(a){var b=a.x,c=a.y,f=a.z,e=a.w,h=b+b,j=c+c,p=f+f;a=b*h;var n=b*j;b*=p;var s=c*j;c*=p;f*=p;h*=e;j*=e;e*=p;this.n11=1-(s+f);this.n12=n-e;this.n13=b+j;this.n21=n+e;this.n22=1-(a+f);this.n23=c-h;this.n31=b-j;this.n32=c+h;this.n33=1-(a+s);return this},scale:function(a){var b=a.x,c=a.y;a=a.z;this.n11*=b;this.n12*=c;this.n13*=a;this.n21*=b;this.n22*=c;this.n23*=a;this.n31*=b;this.n32*=c;this.n33*=a;this.n41*=b;this.n42*=c;this.n43*=a;return this},extractPosition:function(a){this.n14= +a.n14;this.n24=a.n24;this.n34=a.n34},extractRotation:function(a,b){var c=1/b.x,f=1/b.y,e=1/b.z;this.n11=a.n11*c;this.n21=a.n21*c;this.n31=a.n31*c;this.n12=a.n12*f;this.n22=a.n22*f;this.n32=a.n32*f;this.n13=a.n13*e;this.n23=a.n23*e;this.n33=a.n33*e}}; +THREE.Matrix4.makeInvert=function(a,b){var c=a.n11,f=a.n12,e=a.n13,h=a.n14,j=a.n21,p=a.n22,n=a.n23,s=a.n24,x=a.n31,z=a.n32,C=a.n33,y=a.n34,J=a.n41,K=a.n42,P=a.n43,L=a.n44;b===undefined&&(b=new THREE.Matrix4);b.n11=n*y*K-s*C*K+s*z*P-p*y*P-n*z*L+p*C*L;b.n12=h*C*K-e*y*K-h*z*P+f*y*P+e*z*L-f*C*L;b.n13=e*s*K-h*n*K+h*p*P-f*s*P-e*p*L+f*n*L;b.n14=h*n*z-e*s*z-h*p*C+f*s*C+e*p*y-f*n*y;b.n21=s*C*J-n*y*J-s*x*P+j*y*P+n*x*L-j*C*L;b.n22=e*y*J-h*C*J+h*x*P-c*y*P-e*x*L+c*C*L;b.n23=h*n*J-e*s*J-h*j*P+c*s*P+e*j*L-c*n*L; +b.n24=e*s*x-h*n*x+h*j*C-c*s*C-e*j*y+c*n*y;b.n31=p*y*J-s*z*J+s*x*K-j*y*K-p*x*L+j*z*L;b.n32=h*z*J-f*y*J-h*x*K+c*y*K+f*x*L-c*z*L;b.n33=e*s*J-h*p*J+h*j*K-c*s*K-f*j*L+c*p*L;b.n34=h*p*x-f*s*x-h*j*z+c*s*z+f*j*y-c*p*y;b.n41=n*z*J-p*C*J-n*x*K+j*C*K+p*x*P-j*z*P;b.n42=f*C*J-e*z*J+e*x*K-c*C*K-f*x*P+c*z*P;b.n43=e*p*J-f*n*J-e*j*K+c*n*K+f*j*P-c*p*P;b.n44=f*n*x-e*p*x+e*j*z-c*n*z-f*j*C+c*p*C;b.multiplyScalar(1/a.determinant());return b}; +THREE.Matrix4.makeInvert3x3=function(a){var b=a.m33,c=b.m,f=a.n33*a.n22-a.n32*a.n23,e=-a.n33*a.n21+a.n31*a.n23,h=a.n32*a.n21-a.n31*a.n22,j=-a.n33*a.n12+a.n32*a.n13,p=a.n33*a.n11-a.n31*a.n13,n=-a.n32*a.n11+a.n31*a.n12,s=a.n23*a.n12-a.n22*a.n13,x=-a.n23*a.n11+a.n21*a.n13,z=a.n22*a.n11-a.n21*a.n12;a=a.n11*f+a.n21*j+a.n31*s;if(a==0)throw"matrix not invertible";a=1/a;c[0]=a*f;c[1]=a*e;c[2]=a*h;c[3]=a*j;c[4]=a*p;c[5]=a*n;c[6]=a*s;c[7]=a*x;c[8]=a*z;return b}; +THREE.Matrix4.makeFrustum=function(a,b,c,f,e,h){var j;j=new THREE.Matrix4;j.n11=2*e/(b-a);j.n12=0;j.n13=(b+a)/(b-a);j.n14=0;j.n21=0;j.n22=2*e/(f-c);j.n23=(f+c)/(f-c);j.n24=0;j.n31=0;j.n32=0;j.n33=-(h+e)/(h-e);j.n34=-2*h*e/(h-e);j.n41=0;j.n42=0;j.n43=-1;j.n44=0;return j};THREE.Matrix4.makePerspective=function(a,b,c,f){var e;a=c*Math.tan(a*Math.PI/360);e=-a;return THREE.Matrix4.makeFrustum(e*b,a*b,e,a,c,f)}; +THREE.Matrix4.makeOrtho=function(a,b,c,f,e,h){var j,p,n,s;j=new THREE.Matrix4;p=b-a;n=c-f;s=h-e;j.n11=2/p;j.n12=0;j.n13=0;j.n14=-((b+a)/p);j.n21=0;j.n22=2/n;j.n23=0;j.n24=-((c+f)/n);j.n31=0;j.n32=0;j.n33=-2/s;j.n34=-((h+e)/s);j.n41=0;j.n42=0;j.n43=0;j.n44=1;return j};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3; THREE.Object3D=function(){this.parent=undefined;this.children=[];this.up=new THREE.Vector3(0,1,0);this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.rotationAutoUpdate=!0;this.matrix=new THREE.Matrix4;this.matrixWorld=new THREE.Matrix4;this.matrixRotationWorld=new THREE.Matrix4;this.matrixAutoUpdate=!0;this.matrixWorldNeedsUpdate=!0;this.quaternion=new THREE.Quaternion;this.useQuaternion=!1;this.boundRadius=0;this.boundRadiusScale=1;this.visible= !0;this._vector=new THREE.Vector3}; THREE.Object3D.prototype={translate:function(a,b){this.matrix.rotateAxis(b);this.position.addSelf(b.multiplyScalar(a))},translateX:function(a){this.translate(a,this._vector.set(1,0,0))},translateY:function(a){this.translate(a,this._vector.set(0,1,0))},translateZ:function(a){this.translate(a,this._vector.set(0,0,1))},lookAt:function(a){this.matrix.lookAt(this.position,a,this.up);this.rotationAutoUpdate&&this.rotation.setRotationFromMatrix(this.matrix)},addChild:function(a){if(this.children.indexOf(a)===-1){a.parent!== undefined&&a.parent.removeChild(a);a.parent=this;this.children.push(a);for(var b=this;b instanceof THREE.Scene===!1&&b!==undefined;)b=b.parent;b!==undefined&&b.addChildRecurse(a)}},removeChild:function(a){var b=this.children.indexOf(a);if(b!==-1){a.parent=undefined;this.children.splice(b,1)}},updateMatrix:function(){this.matrix.setPosition(this.position);this.useQuaternion?this.matrix.setRotationFromQuaternion(this.quaternion):this.matrix.setRotationFromEuler(this.rotation);if(this.scale.x!==1||this.scale.y!== -1||this.scale.z!==1){this.matrix.scale(this.scale);this.boundRadiusScale=Math.max(this.scale.x,Math.max(this.scale.y,this.scale.z))}this.matrixWorldNeedsUpdate=!0},update:function(a,b,c){this.matrixAutoUpdate&&this.updateMatrix();if(this.matrixWorldNeedsUpdate||b){a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);this.matrixRotationWorld.extractRotation(this.matrixWorld,this.scale);this.matrixWorldNeedsUpdate=!1;b=!0}a=0;for(var e=this.children.length;a=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var i=Math.acos(f),j=Math.sqrt(1-f*f);if(Math.abs(j)<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}f=Math.sin((1-e)*i)/j;e=Math.sin(e*i)/j;c.w=a.w*f+b.w*e;c.x=a.x*f+b.x*e;c.y=a.y*f+b.y*e;c.z=a.z*f+b.z*e;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; -THREE.Face3=function(a,b,c,e,f,i){this.a=a;this.b=b;this.c=c;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=f instanceof THREE.Color?f:new THREE.Color;this.vertexColors=f instanceof Array?f:[];this.materials=i instanceof Array?i:[i];this.centroid=new THREE.Vector3}; -THREE.Face4=function(a,b,c,e,f,i,j){this.a=a;this.b=b;this.c=c;this.d=e;this.normal=f instanceof THREE.Vector3?f:new THREE.Vector3;this.vertexNormals=f instanceof Array?f:[];this.color=i instanceof THREE.Color?i:new THREE.Color;this.vertexColors=i instanceof Array?i:[];this.materials=j instanceof Array?j:[j];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.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; +1||this.scale.z!==1){this.matrix.scale(this.scale);this.boundRadiusScale=Math.max(this.scale.x,Math.max(this.scale.y,this.scale.z))}this.matrixWorldNeedsUpdate=!0},update:function(a,b,c){this.matrixAutoUpdate&&this.updateMatrix();if(this.matrixWorldNeedsUpdate||b){a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);this.matrixRotationWorld.extractRotation(this.matrixWorld,this.scale);this.matrixWorldNeedsUpdate=!1;b=!0}a=0;for(var f=this.children.length;a=1){c.w=a.w;c.x=a.x;c.y=a.y;c.z=a.z;return c}var h=Math.acos(e),j=Math.sqrt(1-e*e);if(Math.abs(j)<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-f)*h)/j;f=Math.sin(f*h)/j;c.w=a.w*e+b.w*f;c.x=a.x*e+b.x*f;c.y=a.y*e+b.y*f;c.z=a.z*e+b.z*f;return c};THREE.Vertex=function(a){this.position=a||new THREE.Vector3}; +THREE.Face3=function(a,b,c,f,e,h){this.a=a;this.b=b;this.c=c;this.normal=f instanceof THREE.Vector3?f:new THREE.Vector3;this.vertexNormals=f instanceof Array?f:[];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,f,e,h,j){this.a=a;this.b=b;this.c=c;this.d=f;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=j instanceof Array?j:[j];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.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; THREE.Geometry.prototype={computeCentroids:function(){var a,b,c;a=0;for(b=this.faces.length;a0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]}; -for(var b=1,c=this.vertices.length;bthis.boundingBox.x[1])this.boundingBox.x[1]=a.position.x;if(a.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=a.position.y;if(a.position.zthis.boundingBox.z[1])this.boundingBox.z[1]= -a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,c=this.vertices.length;b0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var b=1,c=this.vertices.length;bthis.boundingBox.x[1])this.boundingBox.x[1]=a.position.x; +if(a.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=a.position.y;if(a.position.zthis.boundingBox.z[1])this.boundingBox.z[1]=a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,c=this.vertices.length;b1){console.log("THREE.Animation.update: Warning! Scale out of bounds:"+e+" on bone "+z);e=e<0?0:1}if(c==="pos"){c=a.position;if(this.interpolationType===THREE.AnimationHandler.LINEAR){c.x=f[0]+(i[0]-f[0])*e;c.y=f[1]+(i[1]-f[1])*e;c.z=f[2]+(i[2]-f[2])*e}else if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){this.points[0]= -this.getPrevKeyWith("pos",z,j.index-1).pos;this.points[1]=f;this.points[2]=i;this.points[3]=this.getNextKeyWith("pos",z,p.index+1).pos;e=e*0.33+0.33;f=this.interpolateCatmullRom(this.points,e);c.x=f[0];c.y=f[1];c.z=f[2];if(this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){e=this.interpolateCatmullRom(this.points,e*1.01);this.target.set(e[0],e[1],e[2]);this.target.subSelf(c);this.target.y=0;this.target.normalize();e=Math.atan2(this.target.x,this.target.z);a.rotation.set(0,e,0)}}}else if(c=== -"rot")THREE.Quaternion.slerp(f,i,a.quaternion,e);else if(c==="scl"){c=a.scale;c.x=f[0]+(i[0]-f[0])*e;c.y=f[1]+(i[1]-f[1])*e;c.z=f[2]+(i[2]-f[2])*e}}}}if(this.JITCompile&&y[0][s]===undefined){this.hierarchy[0].update(undefined,!0);for(z=0;za.length-2?i:i+1;c[3]=i>a.length-3?i:i+2;i=a[c[0]];p=a[c[1]];n=a[c[2]];s=a[c[3]];c=f*f;j=f*c;e[0]=this.interpolate(i[0],p[0],n[0],s[0],f,c,j);e[1]=this.interpolate(i[1],p[1],n[1],s[1],f,c,j);e[2]=this.interpolate(i[2],p[2],n[2],s[2],f,c,j);return e}; -THREE.Animation.prototype.interpolate=function(a,b,c,e,f,i,j){a=(c-a)*0.5;e=(e-b)*0.5;return(2*(b-c)+a+e)*j+(-3*(b-c)-2*a-e)*i+a*f+b};THREE.Animation.prototype.getNextKeyWith=function(a,b,c){var e=this.data.hierarchy[b].keys;if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)c=c0?c:0:c>=0?c:c+e.length;c>=0;c--)if(e[c][a]!==undefined)return e[c];return this.data.hierarchy[b].keys[e.length-1]}; -THREE.Camera=function(a,b,c,e,f){THREE.Object3D.call(this);this.fov=a||50;this.aspect=b||1;this.near=c||0.1;this.far=e||2E3;this.target=f||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;THREE.Camera.prototype.supr=THREE.Object3D.prototype; +THREE.Animation.prototype.update=function(a){if(this.isPlaying){var b=["pos","rot","scl"],c,f,e,h,j,p,n,s,x=this.data.JIT.hierarchy,z,C;this.currentTime+=a*this.timeScale;C=this.currentTime;z=this.currentTime%=this.data.length;s=parseInt(Math.min(z*this.data.fps,this.data.length*this.data.fps),10);for(var y=0,J=this.hierarchy.length;y1){console.log("THREE.Animation.update: Warning! Scale out of bounds:"+f+" on bone "+y);f=f<0?0:1}if(c==="pos"){c=a.position;if(this.interpolationType===THREE.AnimationHandler.LINEAR){c.x=e[0]+(h[0]-e[0])*f;c.y=e[1]+(h[1]-e[1])*f;c.z=e[2]+(h[2]-e[2])*f}else if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){this.points[0]= +this.getPrevKeyWith("pos",y,j.index-1).pos;this.points[1]=e;this.points[2]=h;this.points[3]=this.getNextKeyWith("pos",y,p.index+1).pos;f=f*0.33+0.33;e=this.interpolateCatmullRom(this.points,f);c.x=e[0];c.y=e[1];c.z=e[2];if(this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD){f=this.interpolateCatmullRom(this.points,f*1.01);this.target.set(f[0],f[1],f[2]);this.target.subSelf(c);this.target.y=0;this.target.normalize();f=Math.atan2(this.target.x,this.target.z);a.rotation.set(0,f,0)}}}else if(c=== +"rot")THREE.Quaternion.slerp(e,h,a.quaternion,f);else if(c==="scl"){c=a.scale;c.x=e[0]+(h[0]-e[0])*f;c.y=e[1]+(h[1]-e[1])*f;c.z=e[2]+(h[2]-e[2])*f}}}}if(this.JITCompile&&x[0][s]===undefined){this.hierarchy[0].update(undefined,!0);for(y=0;ya.length-2?h:h+1;c[3]=h>a.length-3?h:h+2;h=a[c[0]];p=a[c[1]];n=a[c[2]];s=a[c[3]];c=e*e;j=e*c;f[0]=this.interpolate(h[0],p[0],n[0],s[0],e,c,j);f[1]=this.interpolate(h[1],p[1],n[1],s[1],e,c,j);f[2]=this.interpolate(h[2],p[2],n[2],s[2],e,c,j);return f}; +THREE.Animation.prototype.interpolate=function(a,b,c,f,e,h,j){a=(c-a)*0.5;f=(f-b)*0.5;return(2*(b-c)+a+f)*j+(-3*(b-c)-2*a-f)*h+a*e+b};THREE.Animation.prototype.getNextKeyWith=function(a,b,c){var f=this.data.hierarchy[b].keys;if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)c=c0?c:0:c>=0?c:c+f.length;c>=0;c--)if(f[c][a]!==undefined)return f[c];return this.data.hierarchy[b].keys[f.length-1]}; +THREE.Camera=function(a,b,c,f,e){THREE.Object3D.call(this);this.fov=a||50;this.aspect=b||1;this.near=c||0.1;this.far=f||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;THREE.Camera.prototype.supr=THREE.Object3D.prototype; THREE.Camera.prototype.translate=function(a,b){this.matrix.rotateAxis(b);this.position.addSelf(b.multiplyScalar(a));this.target.position.addSelf(b.multiplyScalar(a))};THREE.Camera.prototype.updateProjectionMatrix=function(){this.projectionMatrix=THREE.Matrix4.makePerspective(this.fov,this.aspect,this.near,this.far)};THREE.Camera.prototype.updateMatrix=function(){this.update(undefined,!0)}; THREE.Camera.prototype.update=function(a,b,c){if(this.useTarget){this.matrix.lookAt(this.position,this.target.position,this.up);this.matrix.setPosition(this.position);a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);THREE.Matrix4.makeInvert(this.matrixWorld,this.matrixWorldInverse);b=!0}else{this.matrixAutoUpdate&&(b|=this.updateMatrix());if(b||this.matrixWorldNeedsUpdate){a?this.matrixWorld.multiply(a,this.matrix):this.matrixWorld.copy(this.matrix);this.matrixWorldNeedsUpdate= !1;b=!0;THREE.Matrix4.makeInvert(this.matrixWorld,this.matrixWorldInverse)}}for(a=0;a1){a=c.matrixWorldInverse;a=-(a.n31*this.position.x+a.n32*this.position.y+a.n33*this.position.z+a.n34);this.LODs[0].object3D.visible=!0;for(var e=1;e=this.LODs[e].visibleAtDistance){this.LODs[e-1].object3D.visible= -!1;this.LODs[e].object3D.visible=!0}else break;for(;e1){a=c.matrixWorldInverse;a=-(a.n31*this.position.x+a.n32*this.position.y+a.n33*this.position.z+a.n34);this.LODs[0].object3D.visible=!0;for(var f=1;f=this.LODs[f].visibleAtDistance){this.LODs[f-1].object3D.visible= +!1;this.LODs[f].object3D.visible=!0}else break;for(;f=0&&ia>=0&&V>=0&&ja>=0)return!0;else if(Ba<0&&ia<0||V<0&&ja<0)return!1;else{if(Ba<0)ta=Math.max(ta,Ba/(Ba-ia));else ia<0&&(ua=Math.min(ua,Ba/(Ba-ia)));if(V<0)ta=Math.max(ta,V/(V-ja));else ja<0&&(ua=Math.min(ua,V/(V-ja)));if(uaBa&&j.positionScreen.z0&&R.z<1){Na=ma[ha]=ma[ha]||new THREE.RenderableParticle;ha++;L=Na;L.x=R.x/R.w;L.y=R.y/R.w;L.z=R.z;L.rotation=la.rotation.z;L.scale.x=la.scale.x*Math.abs(L.x-(R.x+N.projectionMatrix.n11)/(R.w+N.projectionMatrix.n14));L.scale.y=la.scale.y*Math.abs(L.y-(R.y+N.projectionMatrix.n22)/(R.w+N.projectionMatrix.n24));L.materials=la.materials;ua.push(L)}}}}ta&&ua.sort(b);return ua}}; -THREE.SoundRenderer=function(){this.volume=1;this.domElement=document.createElement("div");this.domElement.id="THREESound";this.cameraPosition=new THREE.Vector3;this.soundPosition=new THREE.Vector3;this.render=function(a,b,c){c&&a.update(undefined,!1,b);c=a.sounds;var e,f=c.length;for(e=0;e=0&&qa>=0&&V>=0&&ha>=0)return!0;else if(Da<0&&qa<0||V<0&&ha<0)return!1;else{if(Da<0)pa=Math.max(pa,Da/(Da-qa));else qa<0&&(ya=Math.min(ya,Da/(Da-qa)));if(V<0)pa=Math.max(pa,V/(V-ha));else ha<0&&(ya=Math.min(ya,V/(V-ha)));if(yaDa&&j.positionScreen.z0&&U.z<1){Na=ma[ja]=ma[ja]||new THREE.RenderableParticle;ja++;L=Na;L.x=U.x/U.w;L.y=U.y/U.w;L.z=U.z;L.rotation=la.rotation.z;L.scale.x=la.scale.x*Math.abs(L.x-(U.x+N.projectionMatrix.n11)/(U.w+N.projectionMatrix.n14));L.scale.y=la.scale.y*Math.abs(L.y-(U.y+N.projectionMatrix.n22)/(U.w+N.projectionMatrix.n24));L.materials=la.materials;ya.push(L)}}}}pa&&ya.sort(b);return ya}}; +THREE.SoundRenderer=function(){this.volume=1;this.domElement=document.createElement("div");this.domElement.id="THREESound";this.cameraPosition=new THREE.Vector3;this.soundPosition=new THREE.Vector3;this.render=function(a,b,c){c&&a.update(undefined,!1,b);c=a.sounds;var f,e=c.length;for(f=0;fE){x=v;E=r[x]}d.bindBuffer(d.ARRAY_BUFFER,k.__webGLMorphTargetsBuffers[x]);d.vertexAttribPointer(m["morphTarget"+o],3,d.FLOAT,!1,0,0);t.__webGLMorphTargetInfluences[o]=E;q[x]=1;E=-1;o++}}d.uniform1fv(h.program.uniforms.morphTargetInfluences, +THREE.WebGLRenderer=function(a){function b(g,m,o){var i,k,t,q=g.vertices,r=q.length,D=g.colors,w=D.length,v=g.__vertexArray,M=g.__colorArray,X=g.__sortArray,G=g.__dirtyVertices,R=g.__dirtyColors;if(o.sortParticles){S.multiplySelf(o.matrixWorld);for(i=0;iD){w=v;D=r[w]}d.bindBuffer(d.ARRAY_BUFFER,k.__webGLMorphTargetsBuffers[w]);d.vertexAttribPointer(m["morphTarget"+o],3,d.FLOAT,!1,0,0);t.__webGLMorphTargetInfluences[o]=D;q[w]=1;D=-1;o++}}d.uniform1fv(i.program.uniforms.morphTargetInfluences, t.__webGLMorphTargetInfluences)}else{d.bindBuffer(d.ARRAY_BUFFER,k.__webGLVertexBuffer);d.vertexAttribPointer(g.position,3,d.FLOAT,!1,0,0)}if(g.color>=0){d.bindBuffer(d.ARRAY_BUFFER,k.__webGLColorBuffer);d.vertexAttribPointer(g.color,3,d.FLOAT,!1,0,0)}if(g.normal>=0){d.bindBuffer(d.ARRAY_BUFFER,k.__webGLNormalBuffer);d.vertexAttribPointer(g.normal,3,d.FLOAT,!1,0,0)}if(g.tangent>=0){d.bindBuffer(d.ARRAY_BUFFER,k.__webGLTangentBuffer);d.vertexAttribPointer(g.tangent,4,d.FLOAT,!1,0,0)}if(g.uv>=0)if(k.__webGLUVBuffer){d.bindBuffer(d.ARRAY_BUFFER, -k.__webGLUVBuffer);d.vertexAttribPointer(g.uv,2,d.FLOAT,!1,0,0);d.enableVertexAttribArray(g.uv)}else d.disableVertexAttribArray(g.uv);if(g.uv2>=0)if(k.__webGLUV2Buffer){d.bindBuffer(d.ARRAY_BUFFER,k.__webGLUV2Buffer);d.vertexAttribPointer(g.uv2,2,d.FLOAT,!1,0,0);d.enableVertexAttribArray(g.uv2)}else d.disableVertexAttribArray(g.uv2);if(h.skinning&&g.skinVertexA>=0&&g.skinVertexB>=0&&g.skinIndex>=0&&g.skinWeight>=0){d.bindBuffer(d.ARRAY_BUFFER,k.__webGLSkinVertexABuffer);d.vertexAttribPointer(g.skinVertexA, -4,d.FLOAT,!1,0,0);d.bindBuffer(d.ARRAY_BUFFER,k.__webGLSkinVertexBBuffer);d.vertexAttribPointer(g.skinVertexB,4,d.FLOAT,!1,0,0);d.bindBuffer(d.ARRAY_BUFFER,k.__webGLSkinIndicesBuffer);d.vertexAttribPointer(g.skinIndex,4,d.FLOAT,!1,0,0);d.bindBuffer(d.ARRAY_BUFFER,k.__webGLSkinWeightsBuffer);d.vertexAttribPointer(g.skinWeight,4,d.FLOAT,!1,0,0)}if(t instanceof THREE.Mesh)if(h.wireframe){d.lineWidth(h.wireframeLinewidth);d.bindBuffer(d.ELEMENT_ARRAY_BUFFER,k.__webGLLineBuffer);d.drawElements(d.LINES, -k.__webGLLineCount,d.UNSIGNED_SHORT,0)}else{d.bindBuffer(d.ELEMENT_ARRAY_BUFFER,k.__webGLFaceBuffer);d.drawElements(d.TRIANGLES,k.__webGLFaceCount,d.UNSIGNED_SHORT,0)}else if(t instanceof THREE.Line){t=t.type==THREE.LineStrip?d.LINE_STRIP:d.LINES;d.lineWidth(h.linewidth);d.drawArrays(t,0,k.__webGLLineCount)}else if(t instanceof THREE.ParticleSystem)d.drawArrays(d.POINTS,0,k.__webGLParticleCount);else t instanceof THREE.Ribbon&&d.drawArrays(d.TRIANGLE_STRIP,0,k.__webGLVertexCount)}}function i(g,m){if(!g.__webGLVertexBuffer)g.__webGLVertexBuffer= +k.__webGLUVBuffer);d.vertexAttribPointer(g.uv,2,d.FLOAT,!1,0,0);d.enableVertexAttribArray(g.uv)}else d.disableVertexAttribArray(g.uv);if(g.uv2>=0)if(k.__webGLUV2Buffer){d.bindBuffer(d.ARRAY_BUFFER,k.__webGLUV2Buffer);d.vertexAttribPointer(g.uv2,2,d.FLOAT,!1,0,0);d.enableVertexAttribArray(g.uv2)}else d.disableVertexAttribArray(g.uv2);if(i.skinning&&g.skinVertexA>=0&&g.skinVertexB>=0&&g.skinIndex>=0&&g.skinWeight>=0){d.bindBuffer(d.ARRAY_BUFFER,k.__webGLSkinVertexABuffer);d.vertexAttribPointer(g.skinVertexA, +4,d.FLOAT,!1,0,0);d.bindBuffer(d.ARRAY_BUFFER,k.__webGLSkinVertexBBuffer);d.vertexAttribPointer(g.skinVertexB,4,d.FLOAT,!1,0,0);d.bindBuffer(d.ARRAY_BUFFER,k.__webGLSkinIndicesBuffer);d.vertexAttribPointer(g.skinIndex,4,d.FLOAT,!1,0,0);d.bindBuffer(d.ARRAY_BUFFER,k.__webGLSkinWeightsBuffer);d.vertexAttribPointer(g.skinWeight,4,d.FLOAT,!1,0,0)}if(t instanceof THREE.Mesh)if(i.wireframe){d.lineWidth(i.wireframeLinewidth);d.bindBuffer(d.ELEMENT_ARRAY_BUFFER,k.__webGLLineBuffer);d.drawElements(d.LINES, +k.__webGLLineCount,d.UNSIGNED_SHORT,0)}else{d.bindBuffer(d.ELEMENT_ARRAY_BUFFER,k.__webGLFaceBuffer);d.drawElements(d.TRIANGLES,k.__webGLFaceCount,d.UNSIGNED_SHORT,0)}else if(t instanceof THREE.Line){t=t.type==THREE.LineStrip?d.LINE_STRIP:d.LINES;d.lineWidth(i.linewidth);d.drawArrays(t,0,k.__webGLLineCount)}else if(t instanceof THREE.ParticleSystem)d.drawArrays(d.POINTS,0,k.__webGLParticleCount);else t instanceof THREE.Ribbon&&d.drawArrays(d.TRIANGLE_STRIP,0,k.__webGLVertexCount)}}function h(g,m){if(!g.__webGLVertexBuffer)g.__webGLVertexBuffer= d.createBuffer();if(!g.__webGLNormalBuffer)g.__webGLNormalBuffer=d.createBuffer();if(g.hasPos){d.bindBuffer(d.ARRAY_BUFFER,g.__webGLVertexBuffer);d.bufferData(d.ARRAY_BUFFER,g.positionArray,d.DYNAMIC_DRAW);d.enableVertexAttribArray(m.attributes.position);d.vertexAttribPointer(m.attributes.position,3,d.FLOAT,!1,0,0)}if(g.hasNormal){d.bindBuffer(d.ARRAY_BUFFER,g.__webGLNormalBuffer);d.bufferData(d.ARRAY_BUFFER,g.normalArray,d.DYNAMIC_DRAW);d.enableVertexAttribArray(m.attributes.normal);d.vertexAttribPointer(m.attributes.normal, -3,d.FLOAT,!1,0,0)}d.drawArrays(d.TRIANGLES,0,g.count);g.count=0}function j(g){if(N!=g.doubleSided){g.doubleSided?d.disable(d.CULL_FACE):d.enable(d.CULL_FACE);N=g.doubleSided}if(ta!=g.flipSided){g.flipSided?d.frontFace(d.CW):d.frontFace(d.CCW);ta=g.flipSided}}function p(g){if(Ba!=g){g?d.enable(d.DEPTH_TEST):d.disable(d.DEPTH_TEST);Ba=g}}function n(g){X[0].set(g.n41-g.n11,g.n42-g.n12,g.n43-g.n13,g.n44-g.n14);X[1].set(g.n41+g.n11,g.n42+g.n12,g.n43+g.n13,g.n44+g.n14);X[2].set(g.n41+g.n21,g.n42+g.n22, -g.n43+g.n23,g.n44+g.n24);X[3].set(g.n41-g.n21,g.n42-g.n22,g.n43-g.n23,g.n44-g.n24);X[4].set(g.n41-g.n31,g.n42-g.n32,g.n43-g.n33,g.n44-g.n34);X[5].set(g.n41+g.n31,g.n42+g.n32,g.n43+g.n33,g.n44+g.n34);var m;for(g=0;g<6;g++){m=X[g];m.divideScalar(Math.sqrt(m.x*m.x+m.y*m.y+m.z*m.z))}}function s(g){for(var m=g.matrixWorld,o=-g.geometry.boundingSphere.radius*Math.max(g.scale.x,Math.max(g.scale.y,g.scale.z)),h=0;h<6;h++){g=X[h].x*m.n14+X[h].y*m.n24+X[h].z*m.n34+X[h].w;if(g<=o)return!1}return!0}function y(g, -m){g.list[g.count]=m;g.count+=1}function A(g){var m,o,h=g.object,k=g.opaque,t=g.transparent;t.count=0;g=k.count=0;for(m=h.materials.length;g65535){v[E].counter+=1;x=v[E].hash+"_"+v[E].counter;g.geometryGroups[x]==undefined&&(g.geometryGroups[x]= -{faces:[],materials:r,vertices:0,numMorphTargets:M})}g.geometryGroups[x].faces.push(k);g.geometryGroups[x].vertices+=q}}function O(g,m,o){g.push({buffer:m,object:o,opaque:{list:[],count:0},transparent:{list:[],count:0}})}function L(g){if(g!=ua){switch(g){case THREE.AdditiveBlending:d.blendEquation(d.FUNC_ADD);d.blendFunc(d.ONE,d.ONE);break;case THREE.SubtractiveBlending:d.blendFunc(d.DST_COLOR,d.ZERO);break;case THREE.BillboardBlending:d.blendEquation(d.FUNC_ADD);d.blendFunc(d.SRC_ALPHA,d.ONE_MINUS_SRC_ALPHA); -break;case THREE.ReverseSubtractiveBlending:d.blendEquation(d.FUNC_REVERSE_SUBTRACT);d.blendFunc(d.ONE,d.ONE);break;default:d.blendEquation(d.FUNC_ADD);d.blendFunc(d.ONE,d.ONE_MINUS_SRC_ALPHA)}ua=g}}function ha(g,m,o){if((o.width&o.width-1)==0&&(o.height&o.height-1)==0){d.texParameteri(g,d.TEXTURE_WRAP_S,B(m.wrapS));d.texParameteri(g,d.TEXTURE_WRAP_T,B(m.wrapT));d.texParameteri(g,d.TEXTURE_MAG_FILTER,B(m.magFilter));d.texParameteri(g,d.TEXTURE_MIN_FILTER,B(m.minFilter));d.generateMipmap(g)}else{d.texParameteri(g, -d.TEXTURE_WRAP_S,d.CLAMP_TO_EDGE);d.texParameteri(g,d.TEXTURE_WRAP_T,d.CLAMP_TO_EDGE);d.texParameteri(g,d.TEXTURE_MAG_FILTER,R(m.magFilter));d.texParameteri(g,d.TEXTURE_MIN_FILTER,R(m.minFilter))}}function ma(g){if(g&&!g.__webGLFramebuffer){g.__webGLFramebuffer=d.createFramebuffer();g.__webGLRenderbuffer=d.createRenderbuffer();g.__webGLTexture=d.createTexture();d.bindRenderbuffer(d.RENDERBUFFER,g.__webGLRenderbuffer);d.renderbufferStorage(d.RENDERBUFFER,d.DEPTH_COMPONENT16,g.width,g.height);d.bindTexture(d.TEXTURE_2D, -g.__webGLTexture);d.texParameteri(d.TEXTURE_2D,d.TEXTURE_WRAP_S,B(g.wrapS));d.texParameteri(d.TEXTURE_2D,d.TEXTURE_WRAP_T,B(g.wrapT));d.texParameteri(d.TEXTURE_2D,d.TEXTURE_MAG_FILTER,B(g.magFilter));d.texParameteri(d.TEXTURE_2D,d.TEXTURE_MIN_FILTER,B(g.minFilter));d.texImage2D(d.TEXTURE_2D,0,B(g.format),g.width,g.height,0,B(g.format),B(g.type),null);d.bindFramebuffer(d.FRAMEBUFFER,g.__webGLFramebuffer);d.framebufferTexture2D(d.FRAMEBUFFER,d.COLOR_ATTACHMENT0,d.TEXTURE_2D,g.__webGLTexture,0);d.framebufferRenderbuffer(d.FRAMEBUFFER, -d.DEPTH_ATTACHMENT,d.RENDERBUFFER,g.__webGLRenderbuffer);d.bindTexture(d.TEXTURE_2D,null);d.bindRenderbuffer(d.RENDERBUFFER,null);d.bindFramebuffer(d.FRAMEBUFFER,null)}var m,o;if(g){m=g.__webGLFramebuffer;o=g.width;g=g.height}else{m=null;o=ja;g=ka}if(m!=Aa){d.bindFramebuffer(d.FRAMEBUFFER,m);d.viewport(ia,V,o,g);Aa=m}}function pa(g,m){var o;if(g=="fragment")o=d.createShader(d.FRAGMENT_SHADER);else g=="vertex"&&(o=d.createShader(d.VERTEX_SHADER));d.shaderSource(o,m);d.compileShader(o);if(!d.getShaderParameter(o, -d.COMPILE_STATUS)){console.error(d.getShaderInfoLog(o));console.error(m);return null}return o}function R(g){switch(g){case THREE.NearestFilter:case THREE.NearestMipMapNearestFilter:case THREE.NearestMipMapLinearFilter:return d.NEAREST;case THREE.LinearFilter:case THREE.LinearMipMapNearestFilter:case THREE.LinearMipMapLinearFilter:return d.LINEAR}}function B(g){switch(g){case THREE.RepeatWrapping:return d.REPEAT;case THREE.ClampToEdgeWrapping:return d.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return d.MIRRORED_REPEAT; +3,d.FLOAT,!1,0,0)}d.drawArrays(d.TRIANGLES,0,g.count);g.count=0}function j(g){if(N!=g.doubleSided){g.doubleSided?d.disable(d.CULL_FACE):d.enable(d.CULL_FACE);N=g.doubleSided}if(pa!=g.flipSided){g.flipSided?d.frontFace(d.CW):d.frontFace(d.CCW);pa=g.flipSided}}function p(g){if(Da!=g){g?d.enable(d.DEPTH_TEST):d.disable(d.DEPTH_TEST);Da=g}}function n(g){W[0].set(g.n41-g.n11,g.n42-g.n12,g.n43-g.n13,g.n44-g.n14);W[1].set(g.n41+g.n11,g.n42+g.n12,g.n43+g.n13,g.n44+g.n14);W[2].set(g.n41+g.n21,g.n42+g.n22, +g.n43+g.n23,g.n44+g.n24);W[3].set(g.n41-g.n21,g.n42-g.n22,g.n43-g.n23,g.n44-g.n24);W[4].set(g.n41-g.n31,g.n42-g.n32,g.n43-g.n33,g.n44-g.n34);W[5].set(g.n41+g.n31,g.n42+g.n32,g.n43+g.n33,g.n44+g.n34);var m;for(g=0;g<6;g++){m=W[g];m.divideScalar(Math.sqrt(m.x*m.x+m.y*m.y+m.z*m.z))}}function s(g){for(var m=g.matrixWorld,o=-g.geometry.boundingSphere.radius*Math.max(g.scale.x,Math.max(g.scale.y,g.scale.z)),i=0;i<6;i++){g=W[i].x*m.n14+W[i].y*m.n24+W[i].z*m.n34+W[i].w;if(g<=o)return!1}return!0}function x(g, +m){g.list[g.count]=m;g.count+=1}function z(g){var m,o,i=g.object,k=g.opaque,t=g.transparent;t.count=0;g=k.count=0;for(m=i.materials.length;g65535){v[D].counter+=1;w=v[D].hash+"_"+v[D].counter;g.geometryGroups[w]==undefined&&(g.geometryGroups[w]= +{faces:[],materials:r,vertices:0,numMorphTargets:M})}g.geometryGroups[w].faces.push(k);g.geometryGroups[w].vertices+=q}}function P(g,m,o){g.push({buffer:m,object:o,opaque:{list:[],count:0},transparent:{list:[],count:0}})}function L(g){if(g!=ya){switch(g){case THREE.AdditiveBlending:d.blendEquation(d.FUNC_ADD);d.blendFunc(d.ONE,d.ONE);break;case THREE.SubtractiveBlending:d.blendFunc(d.DST_COLOR,d.ZERO);break;case THREE.BillboardBlending:d.blendEquation(d.FUNC_ADD);d.blendFunc(d.SRC_ALPHA,d.ONE_MINUS_SRC_ALPHA); +break;case THREE.ReverseSubtractiveBlending:d.blendEquation(d.FUNC_REVERSE_SUBTRACT);d.blendFunc(d.ONE,d.ONE);break;default:d.blendEquation(d.FUNC_ADD);d.blendFunc(d.ONE,d.ONE_MINUS_SRC_ALPHA)}ya=g}}function ja(g,m,o){if((o.width&o.width-1)==0&&(o.height&o.height-1)==0){d.texParameteri(g,d.TEXTURE_WRAP_S,A(m.wrapS));d.texParameteri(g,d.TEXTURE_WRAP_T,A(m.wrapT));d.texParameteri(g,d.TEXTURE_MAG_FILTER,A(m.magFilter));d.texParameteri(g,d.TEXTURE_MIN_FILTER,A(m.minFilter));d.generateMipmap(g)}else{d.texParameteri(g, +d.TEXTURE_WRAP_S,d.CLAMP_TO_EDGE);d.texParameteri(g,d.TEXTURE_WRAP_T,d.CLAMP_TO_EDGE);d.texParameteri(g,d.TEXTURE_MAG_FILTER,U(m.magFilter));d.texParameteri(g,d.TEXTURE_MIN_FILTER,U(m.minFilter))}}function ma(g){if(g&&!g.__webGLFramebuffer){g.__webGLFramebuffer=d.createFramebuffer();g.__webGLRenderbuffer=d.createRenderbuffer();g.__webGLTexture=d.createTexture();d.bindRenderbuffer(d.RENDERBUFFER,g.__webGLRenderbuffer);d.renderbufferStorage(d.RENDERBUFFER,d.DEPTH_COMPONENT16,g.width,g.height);d.bindTexture(d.TEXTURE_2D, +g.__webGLTexture);d.texParameteri(d.TEXTURE_2D,d.TEXTURE_WRAP_S,A(g.wrapS));d.texParameteri(d.TEXTURE_2D,d.TEXTURE_WRAP_T,A(g.wrapT));d.texParameteri(d.TEXTURE_2D,d.TEXTURE_MAG_FILTER,A(g.magFilter));d.texParameteri(d.TEXTURE_2D,d.TEXTURE_MIN_FILTER,A(g.minFilter));d.texImage2D(d.TEXTURE_2D,0,A(g.format),g.width,g.height,0,A(g.format),A(g.type),null);d.bindFramebuffer(d.FRAMEBUFFER,g.__webGLFramebuffer);d.framebufferTexture2D(d.FRAMEBUFFER,d.COLOR_ATTACHMENT0,d.TEXTURE_2D,g.__webGLTexture,0);d.framebufferRenderbuffer(d.FRAMEBUFFER, +d.DEPTH_ATTACHMENT,d.RENDERBUFFER,g.__webGLRenderbuffer);d.bindTexture(d.TEXTURE_2D,null);d.bindRenderbuffer(d.RENDERBUFFER,null);d.bindFramebuffer(d.FRAMEBUFFER,null)}var m,o;if(g){m=g.__webGLFramebuffer;o=g.width;g=g.height}else{m=null;o=ha;g=ia}if(m!=Ca){d.bindFramebuffer(d.FRAMEBUFFER,m);d.viewport(qa,V,o,g);Ca=m}}function sa(g,m){var o;if(g=="fragment")o=d.createShader(d.FRAGMENT_SHADER);else g=="vertex"&&(o=d.createShader(d.VERTEX_SHADER));d.shaderSource(o,m);d.compileShader(o);if(!d.getShaderParameter(o, +d.COMPILE_STATUS)){console.error(d.getShaderInfoLog(o));console.error(m);return null}return o}function U(g){switch(g){case THREE.NearestFilter:case THREE.NearestMipMapNearestFilter:case THREE.NearestMipMapLinearFilter:return d.NEAREST;case THREE.LinearFilter:case THREE.LinearMipMapNearestFilter:case THREE.LinearMipMapLinearFilter:return d.LINEAR}}function A(g){switch(g){case THREE.RepeatWrapping:return d.REPEAT;case THREE.ClampToEdgeWrapping:return d.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return d.MIRRORED_REPEAT; case THREE.NearestFilter:return d.NEAREST;case THREE.NearestMipMapNearestFilter:return d.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return d.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return d.LINEAR;case THREE.LinearMipMapNearestFilter:return d.LINEAR_MIPMAP_NEAREST;case THREE.LinearMipMapLinearFilter:return d.LINEAR_MIPMAP_LINEAR;case THREE.ByteType:return d.BYTE;case THREE.UnsignedByteType:return d.UNSIGNED_BYTE;case THREE.ShortType:return d.SHORT;case THREE.UnsignedShortType:return d.UNSIGNED_SHORT; -case THREE.IntType:return d.INT;case THREE.UnsignedShortType:return d.UNSIGNED_INT;case THREE.FloatType:return d.FLOAT;case THREE.AlphaFormat:return d.ALPHA;case THREE.RGBFormat:return d.RGB;case THREE.RGBAFormat:return d.RGBA;case THREE.LuminanceFormat:return d.LUMINANCE;case THREE.LuminanceAlphaFormat:return d.LUMINANCE_ALPHA}return 0}var sa=document.createElement("canvas"),d,Da=null,Aa=null,Q=this,N=null,ta=null,ua=null,Ba=null,ia=0,V=0,ja=0,ka=0,X=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4, -new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],S=new THREE.Matrix4,xa=new Float32Array(16),na=new Float32Array(16),ya=new THREE.Vector4,Ka={ambient:[0,0,0],directional:{length:0,colors:[],positions:[]},point:{length:0,colors:[],positions:[]}},la=!0,Na=new THREE.Color(0),Va=0;if(a){if(a.antialias!==undefined)la=a.antialias;a.clearColor!==undefined&&Na.setHex(a.clearColor);if(a.clearAlpha!==undefined)Va=a.clearAlpha}this.maxMorphTargets=8;this.domElement=sa;this.autoClear=!0;this.sortObjects= -!0;(function(g,m,o){try{if(!(d=sa.getContext("experimental-webgl",{antialias:g})))throw"Error creating WebGL context.";}catch(h){console.error(h)}d.clearColor(0,0,0,1);d.clearDepth(1);d.enable(d.DEPTH_TEST);d.depthFunc(d.LEQUAL);d.frontFace(d.CCW);d.cullFace(d.BACK);d.enable(d.CULL_FACE);d.enable(d.BLEND);d.blendFunc(d.ONE,d.ONE_MINUS_SRC_ALPHA);d.clearColor(m.r,m.g,m.b,o);_cullEnabled=!0})(la,Na,Va);this.context=d;this.setSize=function(g,m){sa.width=g;sa.height=m;this.setViewport(0,0,sa.width,sa.height)}; -this.setViewport=function(g,m,o,h){ia=g;V=m;ja=o;ka=h;d.viewport(ia,V,ja,ka)};this.setScissor=function(g,m,o,h){d.scissor(g,m,o,h)};this.enableScissorTest=function(g){g?d.enable(d.SCISSOR_TEST):d.disable(d.SCISSOR_TEST)};this.enableDepthBufferWrite=function(g){d.depthMask(g)};this.setClearColorHex=function(g,m){var o=new THREE.Color(g);d.clearColor(o.r,o.g,o.b,m)};this.setClearColor=function(g,m){d.clearColor(g.r,g.g,g.b,m)};this.clear=function(){d.clear(d.COLOR_BUFFER_BIT|d.DEPTH_BUFFER_BIT)};this.initMaterial= -function(g,m,o,h){var k,t,q;if(g instanceof THREE.MeshDepthMaterial)c(g,THREE.ShaderLib.depth);else if(g instanceof THREE.MeshNormalMaterial)c(g,THREE.ShaderLib.normal);else if(g instanceof THREE.MeshBasicMaterial)c(g,THREE.ShaderLib.basic);else if(g instanceof THREE.MeshLambertMaterial)c(g,THREE.ShaderLib.lambert);else if(g instanceof THREE.MeshPhongMaterial)c(g,THREE.ShaderLib.phong);else if(g instanceof THREE.LineBasicMaterial)c(g,THREE.ShaderLib.basic);else g instanceof THREE.ParticleBasicMaterial&& -c(g,THREE.ShaderLib.particle_basic);var r,E,x,v;q=x=v=0;for(r=m.length;q0?"#define VERTEX_TEXTURES":"","#define MAX_DIR_LIGHTS "+r.maxDirLights,"#define MAX_POINT_LIGHTS "+r.maxPointLights,"#define MAX_BONES "+r.maxBones,r.map?"#define USE_MAP":"",r.envMap?"#define USE_ENVMAP":"",r.lightMap?"#define USE_LIGHTMAP":"",r.vertexColors?"#define USE_COLOR":"",r.skinning?"#define USE_SKINNING":"",r.morphTargets?"#define USE_MORPHTARGETS":"",r.sizeAttenuation?"#define USE_SIZEATTENUATION":"","uniform mat4 objectMatrix;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform mat4 viewMatrix;\nuniform mat3 normalMatrix;\nuniform vec3 cameraPosition;\nuniform mat4 cameraInverseMatrix;\nattribute vec3 position;\nattribute vec3 morphTarget0;\nattribute vec3 morphTarget1;\nattribute vec3 morphTarget2;\nattribute vec3 morphTarget3;\nattribute vec3 morphTarget4;\nattribute vec3 morphTarget5;\nattribute vec3 morphTarget6;\nattribute vec3 morphTarget7;\nattribute vec3 normal;\nattribute vec3 color;\nattribute vec2 uv;\nattribute vec2 uv2;\nattribute vec4 skinVertexA;\nattribute vec4 skinVertexB;\nattribute vec4 skinIndex;\nattribute vec4 skinWeight;\n"].join("\n"); -d.attachShader(o,pa("fragment",q+v));d.attachShader(o,pa("vertex",r+m));d.linkProgram(o);d.getProgramParameter(o,d.LINK_STATUS)||console.error("Could not initialise shader\nVALIDATE_STATUS: "+d.getProgramParameter(o,d.VALIDATE_STATUS)+", gl error ["+d.getError()+"]");o.uniforms={};o.attributes={};g.program=o;o=["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition","cameraInverseMatrix","boneGlobalMatrices","morphTargetInfluences"];for(k in g.uniforms)o.push(k); +d.attachShader(o,sa("fragment",q+v));d.attachShader(o,sa("vertex",r+m));d.linkProgram(o);d.getProgramParameter(o,d.LINK_STATUS)||console.error("Could not initialise shader\nVALIDATE_STATUS: "+d.getProgramParameter(o,d.VALIDATE_STATUS)+", gl error ["+d.getError()+"]");o.uniforms={};o.attributes={};g.program=o;o=["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition","cameraInverseMatrix","boneGlobalMatrices","morphTargetInfluences"];for(k in g.uniforms)o.push(k); k=g.program;v=0;for(m=o.length;v=0&&d.enableVertexAttribArray(t.color);t.normal>=0&&d.enableVertexAttribArray(t.normal); t.tangent>=0&&d.enableVertexAttribArray(t.tangent);if(g.skinning&&t.skinVertexA>=0&&t.skinVertexB>=0&&t.skinIndex>=0&&t.skinWeight>=0){d.enableVertexAttribArray(t.skinVertexA);d.enableVertexAttribArray(t.skinVertexB);d.enableVertexAttribArray(t.skinIndex);d.enableVertexAttribArray(t.skinWeight)}if(g.morphTargets){g.numSupportedMorphTargets=0;if(t.morphTarget0>=0){d.enableVertexAttribArray(t.morphTarget0);g.numSupportedMorphTargets++}if(t.morphTarget1>=0){d.enableVertexAttribArray(t.morphTarget1); g.numSupportedMorphTargets++}if(t.morphTarget2>=0){d.enableVertexAttribArray(t.morphTarget2);g.numSupportedMorphTargets++}if(t.morphTarget3>=0){d.enableVertexAttribArray(t.morphTarget3);g.numSupportedMorphTargets++}if(t.morphTarget4>=0){d.enableVertexAttribArray(t.morphTarget4);g.numSupportedMorphTargets++}if(t.morphTarget5>=0){d.enableVertexAttribArray(t.morphTarget5);g.numSupportedMorphTargets++}if(t.morphTarget6>=0){d.enableVertexAttribArray(t.morphTarget6);g.numSupportedMorphTargets++}if(t.morphTarget7>= -0){d.enableVertexAttribArray(t.morphTarget7);g.numSupportedMorphTargets++}h.__webGLMorphTargetInfluences=new Float32Array(this.maxMorphTargets);for(k=0;k0||P.faceVertexUvs.length>0)q.__uvArray=new Float32Array(r*2);if(P.faceUvs.length>1||P.faceVertexUvs.length> -1)q.__uv2Array=new Float32Array(r*2)}if(x.geometry.skinWeights.length&&x.geometry.skinIndices.length){q.__skinVertexAArray=new Float32Array(r*4);q.__skinVertexBArray=new Float32Array(r*4);q.__skinIndexArray=new Float32Array(r*4);q.__skinWeightArray=new Float32Array(r*4)}q.__faceArray=new Uint16Array(E*3);q.__lineArray=new Uint16Array(U*2);if(q.numMorphTargets){x=void 0;P=void 0;q.__morphTargetsArrays=[];x=0;for(P=q.numMorphTargets;x=0;k--){h=o.__webglObjects[k].object;m==h&&o.__webglObjects.splice(k,1)}g.__objectsRemoved.splice(0,1)}m=0;for(o=g.__webglObjects.length;m0){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLColorBuffer);d.bufferData(d.ARRAY_BUFFER,wa,r)}if(cb){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLNormalBuffer);d.bufferData(d.ARRAY_BUFFER,Ma,r)}if(db&&Ea.hasTangents){d.bindBuffer(d.ARRAY_BUFFER, -q.__webGLTangentBuffer);d.bufferData(d.ARRAY_BUFFER,ca,r)}if(Xa&&Y>0){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLUVBuffer);d.bufferData(d.ARRAY_BUFFER,Ya,r)}if(Xa&&Fa>0){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLUV2Buffer);d.bufferData(d.ARRAY_BUFFER,Za,r)}if(bb){d.bindBuffer(d.ELEMENT_ARRAY_BUFFER,q.__webGLFaceBuffer);d.bufferData(d.ELEMENT_ARRAY_BUFFER,Pa,r);d.bindBuffer(d.ELEMENT_ARRAY_BUFFER,q.__webGLLineBuffer);d.bufferData(d.ELEMENT_ARRAY_BUFFER,Ja,r)}if(u>0){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLSkinVertexABuffer); -d.bufferData(d.ARRAY_BUFFER,da,r);d.bindBuffer(d.ARRAY_BUFFER,q.__webGLSkinVertexBBuffer);d.bufferData(d.ARRAY_BUFFER,ea,r);d.bindBuffer(d.ARRAY_BUFFER,q.__webGLSkinIndicesBuffer);d.bufferData(d.ARRAY_BUFFER,fa,r);d.bindBuffer(d.ARRAY_BUFFER,q.__webGLSkinWeightsBuffer);d.bufferData(d.ARRAY_BUFFER,ga,r)}}}k.__dirtyVertices=!1;k.__dirtyMorphTargets=!1;k.__dirtyElements=!1;k.__dirtyUvs=!1;k.__dirtyNormals=!1;k.__dirtyTangents=!1;k.__dirtyColors=!1}else if(h instanceof THREE.Ribbon){k=h.geometry;if(k.__dirtyVertices|| -k.__dirtyColors){h=k;t=d.DYNAMIC_DRAW;x=void 0;x=void 0;P=void 0;q=void 0;v=h.vertices;r=h.colors;M=v.length;E=r.length;H=h.__vertexArray;U=h.__colorArray;I=h.__dirtyColors;if(h.__dirtyVertices){for(x=0;x0||R.faceVertexUvs.length>0)q.__uvArray=new Float32Array(r*2);if(R.faceUvs.length>1||R.faceVertexUvs.length> +1)q.__uv2Array=new Float32Array(r*2)}if(w.geometry.skinWeights.length&&w.geometry.skinIndices.length){q.__skinVertexAArray=new Float32Array(r*4);q.__skinVertexBArray=new Float32Array(r*4);q.__skinIndexArray=new Float32Array(r*4);q.__skinWeightArray=new Float32Array(r*4)}q.__faceArray=new Uint16Array(D*3);q.__lineArray=new Uint16Array(X*2);if(q.numMorphTargets){w=void 0;R=void 0;q.__morphTargetsArrays=[];w=0;for(R=q.numMorphTargets;w=0;k--){i=o.__webglObjects[k].object;m==i&&o.__webglObjects.splice(k,1)}g.__objectsRemoved.splice(0,1)}m=0;for(o=g.__webglObjects.length;m0){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLColorBuffer);d.bufferData(d.ARRAY_BUFFER,xa,r)}if(db){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLNormalBuffer);d.bufferData(d.ARRAY_BUFFER,Ma,r)}if(eb&&Fa.hasTangents){d.bindBuffer(d.ARRAY_BUFFER, +q.__webGLTangentBuffer);d.bufferData(d.ARRAY_BUFFER,ca,r)}if(Ya&&Z>0){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLUVBuffer);d.bufferData(d.ARRAY_BUFFER,Za,r)}if(Ya&&Ga>0){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLUV2Buffer);d.bufferData(d.ARRAY_BUFFER,$a,r)}if(cb){d.bindBuffer(d.ELEMENT_ARRAY_BUFFER,q.__webGLFaceBuffer);d.bufferData(d.ELEMENT_ARRAY_BUFFER,Pa,r);d.bindBuffer(d.ELEMENT_ARRAY_BUFFER,q.__webGLLineBuffer);d.bufferData(d.ELEMENT_ARRAY_BUFFER,Ka,r)}if(u>0){d.bindBuffer(d.ARRAY_BUFFER,q.__webGLSkinVertexABuffer); +d.bufferData(d.ARRAY_BUFFER,da,r);d.bindBuffer(d.ARRAY_BUFFER,q.__webGLSkinVertexBBuffer);d.bufferData(d.ARRAY_BUFFER,ea,r);d.bindBuffer(d.ARRAY_BUFFER,q.__webGLSkinIndicesBuffer);d.bufferData(d.ARRAY_BUFFER,fa,r);d.bindBuffer(d.ARRAY_BUFFER,q.__webGLSkinWeightsBuffer);d.bufferData(d.ARRAY_BUFFER,ga,r)}}}k.__dirtyVertices=!1;k.__dirtyMorphTargets=!1;k.__dirtyElements=!1;k.__dirtyUvs=!1;k.__dirtyNormals=!1;k.__dirtyTangents=!1;k.__dirtyColors=!1}else if(i instanceof THREE.Ribbon){k=i.geometry;if(k.__dirtyVertices|| +k.__dirtyColors){i=k;t=d.DYNAMIC_DRAW;w=void 0;w=void 0;R=void 0;q=void 0;v=i.vertices;r=i.colors;M=v.length;D=r.length;G=i.__vertexArray;X=i.__colorArray;H=i.__dirtyColors;if(i.__dirtyVertices){for(w=0;w0}}; diff --git a/examples/obj/leeperrysmith/LeePerrySmith.js b/examples/obj/leeperrysmith/LeePerrySmith.js index f2eb0c133f..39fc1bfd1e 100644 --- a/examples/obj/leeperrysmith/LeePerrySmith.js +++ b/examples/obj/leeperrysmith/LeePerrySmith.js @@ -29,15 +29,17 @@ var model = { "vertexColors" : false }], - 'normals': [0.920499,0.200568,-0.335246,0.907987,0.128605,-0.398694,0.931089,0.100497,-0.350597,0.953032,0.173833,-0.247902,0.897702,0.097293,-0.429701,0.903653,0.065096,-0.423231,0.910977,0.020478,-0.411878,0.944548,0.057863,-0.323222,0.975433,0.125736,-0.180700,0.747948,0.575701,0.330271,0.717154,0.643086,0.268471,0.645955,0.699545,0.305490,0.677541,0.633229,0.374004,0.685507,0.692648,0.224128,0.628376,0.744163,0.226600,0.569811,0.787072,0.236274,0.579455,0.747551,0.324595,0.607959,0.689413,0.393750,0.544572,0.810144,-0.216956,0.489273,0.857814,-0.157140,0.552355,0.832606,-0.040468,0.598193,0.799463,-0.054659,0.451003,0.883602,-0.125614,0.474380,0.879940,-0.024964,0.481948,0.870602,0.098636,0.557634,0.826807,0.073397,0.602374,0.796625,0.049867,0.633900,0.762932,0.126743,0.580859,0.802149,0.138249,0.710776,0.687582,0.148289,0.741722,0.668844,0.049409,0.659536,0.750755,0.036500,0.672506,0.738060,-0.054262,0.764763,0.642872,-0.042390,0.776299,0.607624,-0.167638,0.670339,0.716758,-0.191931,0.450667,0.854335,0.258766,0.519456,0.817835,0.247536,0.532945,0.830805,0.160222,0.464370,0.865902,0.185797,0.268807,0.922056,0.278390,0.364269,0.891293,0.269906,0.368603,0.906980,0.203681,0.262001,0.942045,0.209479,0.366375,0.923887,0.110202,0.245521,0.963775,0.103916,-0.001282,0.958464,0.285134,0.141087,0.948515,0.283517,0.133610,0.968780,0.208716,-0.006287,0.978881,0.204199,0.120548,0.988495,0.091098,-0.009400,0.996582,0.082003,-0.007904,0.877926,0.478683,-0.011658,0.823084,0.567736,0.144444,0.816248,0.559313,0.146397,0.867977,0.474471,-0.010743,0.765618,0.643178,0.144658,0.754540,0.640095,0.281259,0.733329,0.618946,0.278207,0.794244,0.540117,0.276223,0.844691,0.458449,0.144780,0.918149,0.368786,-0.003876,0.928556,0.371105,0.273324,0.891537,0.361156,0.982818,-0.105136,0.151646,0.968902,-0.194830,0.152409,0.983459,-0.175665,0.044038,0.992004,-0.117466,0.045534,0.891720,-0.439528,0.107791,0.919980,-0.386822,0.062807,0.955321,-0.290994,-0.051210,0.983764,-0.161992,-0.077090,0.988128,-0.146733,-0.045198,0.981933,-0.054781,0.181066,0.998383,-0.043672,-0.036225,0.997986,-0.054048,-0.033143,0.981201,-0.059084,0.183569,0.975188,-0.030702,-0.219092,0.970824,-0.054506,-0.233406,0.970031,-0.091739,-0.224952,0.996765,-0.079928,-0.004303,0.981475,-0.083438,0.172430,0.937712,-0.012909,-0.347118,0.921354,-0.046205,-0.385937,0.878903,-0.015290,-0.476730,0.850368,-0.080935,-0.519913,0.908811,-0.095706,-0.406018,0.904080,-0.153294,-0.398846,0.971343,-0.125370,-0.201788,0.832087,-0.182043,-0.523881,0.829402,-0.279550,-0.483657,0.911649,-0.201209,-0.358257,0.975249,-0.144047,-0.167577,0.994018,-0.104923,0.029267,0.982543,-0.099063,0.157262,0.991424,-0.115848,0.060274,0.844997,-0.095950,0.526078,0.921903,-0.069948,0.380963,0.939665,-0.089541,0.330149,0.887387,-0.140873,0.438917,0.963469,-0.138310,0.229286,0.930265,-0.254219,0.264473,0.983032,-0.140660,0.117557,0.973571,-0.217719,0.068545,0.979308,-0.188757,0.072634,0.939116,-0.340007,0.048921,0.971679,-0.194555,-0.133915,0.946104,-0.298715,-0.125034,0.919492,-0.256447,-0.297891,0.836512,-0.351909,-0.419935,0.843379,-0.401959,-0.356487,0.917936,-0.315348,-0.240638,0.861446,-0.406537,-0.304331,0.920042,-0.336253,-0.201086,0.886868,-0.377392,-0.266396,0.929136,-0.324442,-0.177252,0.933775,-0.309122,-0.180273,0.931547,-0.316263,-0.179388,0.935087,-0.267464,-0.232429,0.910916,-0.331767,-0.245155,0.845332,-0.377667,-0.377789,0.875881,-0.286996,-0.387799,0.805444,-0.447554,-0.388470,0.720115,-0.512528,-0.467635,0.766106,-0.415662,-0.490158,0.793420,-0.309153,-0.524277,0.973510,-0.192022,-0.123875,0.948454,-0.268960,-0.167455,0.942961,-0.294259,-0.155614,0.963561,-0.238838,-0.120334,0.989624,-0.143284,0.009857,0.988952,-0.138432,-0.052583,0.980346,-0.182867,-0.073946,0.986847,-0.158177,-0.033143,0.958464,-0.178167,-0.222571,0.974609,-0.069185,-0.212806,0.910367,0.222938,-0.348521,0.941710,0.259346,-0.214179,0.983673,0.097171,-0.151311,0.951720,0.070864,-0.298593,0.951476,0.294229,-0.089908,0.993347,0.112613,-0.023011,0.998138,-0.021332,0.056917,0.997375,-0.032075,-0.064455,0.778130,0.481948,0.402692,0.842586,0.410199,0.348888,0.819330,0.511460,0.259011,0.803308,0.406995,0.434736,0.857997,0.311075,0.408704,0.905271,0.202918,0.373180,0.901944,0.315744,0.294595,0.900052,0.403272,0.165075,0.968932,0.168859,0.180670,0.986236,0.136692,0.092715,0.939085,0.341868,0.034669,0.975463,-0.026063,0.218574,0.988372,-0.025727,0.149693,0.858455,0.512711,-0.011231,0.870418,0.473006,-0.136357,0.829341,0.550066,0.097751,0.781762,0.591632,0.196875,0.946959,0.188421,0.260170,0.950194,0.077883,0.301675,0.811335,-0.065737,-0.580828,0.802942,0.015839,-0.595813,0.886898,0.039613,-0.460219,0.897549,-0.054689,-0.437452,0.778191,0.144810,-0.611072,0.853206,0.180059,-0.489486,0.566149,-0.101901,-0.817957,0.567797,-0.027802,-0.822687,0.697806,-0.007477,-0.716208,0.706137,-0.080355,-0.703452,0.551500,0.106906,-0.827265,0.678030,0.121464,-0.724906,0.277993,0.104434,-0.954863,0.417920,0.100894,-0.902829,0.429701,-0.040468,-0.902036,0.287698,-0.043641,-0.956694,0.419294,-0.130711,-0.898373,0.281991,-0.152532,-0.947203,0.283334,0.890194,-0.356700,0.310068,0.824976,-0.472488,0.145238,0.852107,-0.502762,0.143620,0.909940,-0.389050,0.324992,0.722770,-0.609882,0.145054,0.745048,-0.651021,-0.030427,0.742576,-0.669057,-0.011414,0.850246,-0.526200,0.004700,0.912839,-0.408216,-0.000458,0.978545,-0.205878,0.126347,0.971770,-0.199133,0.140324,0.942564,-0.303018,0.005982,0.950468,-0.310709,0.251045,0.950530,-0.182775,0.268685,0.922880,-0.275826,0.115360,0.991424,-0.060915,-0.005463,0.997345,-0.072481,0.236518,0.970611,-0.043855,0.358592,0.933073,-0.027070,0.368450,0.916440,-0.156011,0.389813,0.891110,-0.232215,0.416669,0.855342,-0.307749,0.283059,0.455519,-0.843989,0.408002,0.454085,-0.792016,0.402966,0.284463,-0.869839,0.271615,0.285440,-0.919065,0.516098,0.450056,-0.728721,0.525498,0.285470,-0.801447,0.544603,0.663961,-0.512345,0.528642,0.579394,-0.620319,0.430403,0.594958,-0.678762,0.449995,0.696188,-0.559252,0.308298,0.601245,-0.737175,0.616779,0.434217,-0.656514,0.640492,0.284341,-0.713340,0.685690,0.414197,-0.598529,0.730766,0.299966,-0.613147,0.764367,0.563616,-0.313150,0.662435,0.662008,-0.350536,0.737693,0.521989,-0.428144,0.648183,0.601856,-0.466475,0.549944,0.739341,-0.388409,0.827876,0.399792,-0.393353,0.858486,0.436720,-0.268777,0.788171,0.347667,-0.507828,0.709769,0.471908,-0.522965,0.627522,0.539048,-0.561754,0.445753,0.784326,-0.431410,0.137486,0.613239,-0.777795,0.135624,0.468276,-0.873104,-0.021790,0.490097,-0.871364,-0.035035,0.622150,-0.782098,0.137608,0.291574,-0.946593,0.139805,0.112461,-0.983764,0.000885,0.118656,-0.992920,-0.006012,0.304300,-0.952544,0.238929,-0.428449,-0.871364,0.108188,-0.447249,-0.887814,0.133122,-0.310007,-0.941343,0.264779,-0.299173,-0.916684,-0.037782,-0.461409,-0.886349,-0.019593,-0.321299,-0.946745,-0.005005,-0.161992,-0.986755,0.145329,-0.160436,-0.976257,0.145756,-0.038331,-0.988556,0.001373,-0.032258,-0.999451,0.536302,-0.376049,-0.755577,0.372875,-0.406934,-0.833857,0.400708,-0.285806,-0.870449,0.561632,-0.258217,-0.786004,0.681875,-0.340281,-0.647481,0.706870,-0.212012,-0.674795,0.811060,-0.173406,-0.558641,0.894894,-0.164617,-0.414716,0.630055,-0.556688,-0.541398,0.663686,-0.428449,-0.613117,0.479263,-0.560320,-0.675527,0.507035,-0.429609,-0.747215,0.465285,0.883755,-0.049348,0.392468,0.913450,0.107303,0.392163,0.863247,0.317728,0.459792,0.841517,0.283578,0.312540,0.922025,0.228370,0.283670,0.882809,0.374371,0.235145,0.812769,0.532975,0.282266,0.774071,0.566668,0.300943,0.711081,0.635426,0.163976,0.800836,0.575945,0.176702,0.734672,0.654958,0.095676,0.794458,0.599689,0.121494,0.747948,0.652516,0.164861,0.654164,0.738121,0.182562,0.644215,0.742698,0.289407,0.589373,0.754234,0.315134,0.581591,0.749931,0.253548,0.712516,0.654195,0.248726,0.719779,0.648091,0.296701,0.561968,0.772088,0.232124,0.664937,0.709861,0.126408,0.797449,0.589953,0.166021,0.846370,0.506027,0.174474,0.865200,0.470046,0.221137,0.598407,0.770043,0.141850,0.719016,0.680349,0.257851,0.548814,0.795160,0.200995,0.553117,0.808466,0.191076,0.562334,0.804498,0.237648,0.413251,0.879025,0.413831,0.132511,0.900632,0.362896,0.321360,0.874630,0.186163,0.510392,0.839534,0.633839,-0.369152,0.679647,0.664510,-0.137730,0.734428,0.673940,0.087039,0.733604,0.340983,0.433058,0.834346,0.163457,0.540544,0.825251,0.257698,0.548814,0.795190,0.276254,0.575335,0.769829,0.302744,0.476638,0.825282,0.297250,0.310556,0.902860,0.298349,0.578692,0.758965,0.310160,0.562304,0.766533,0.300638,0.531114,0.792138,0.310221,0.286081,0.906583,0.247383,-0.382733,0.890103,0.188482,-0.673971,0.714255,0.266335,-0.014771,0.963744,0.272927,0.156041,0.949278,0.188757,-0.561998,0.805292,0.234809,0.501785,0.832484,0.220435,0.574084,0.788537,0.181494,0.557054,0.810358,0.149785,0.557573,0.816462,0.263527,-0.769097,0.582232,0.392590,-0.292459,0.871944,0.370373,-0.819971,0.436354,0.524705,-0.631245,0.571123,0.375408,0.535905,0.756188,0.193732,0.587786,0.785455,0.675436,0.302499,0.672475,0.688986,0.511582,0.513382,0.464217,0.673544,0.575121,0.158818,0.571032,0.805383,0.306833,0.558519,0.770592,0.264504,0.570757,0.777337,0.328501,0.551256,0.766900,0.304666,0.549058,0.778252,0.261208,0.120060,0.957762,0.185492,-0.615162,0.766259,0.236335,0.498947,0.833735,0.143864,0.479385,0.865719,0.169195,0.059542,0.983764,0.113071,-0.672994,0.730918,0.222114,0.545366,0.808191,0.209021,0.583209,0.784936,0.150273,0.566912,0.809931,0.140355,0.533647,0.833949,0.114811,0.877957,0.464736,0.185492,0.707572,0.681814,0.131230,0.880367,0.455702,0.155156,0.695547,0.701498,0.887417,0.369793,0.275155,0.884732,0.297250,0.358959,0.767113,0.340831,0.543413,0.768487,0.436903,0.467452,0.914060,0.211158,0.346202,0.807459,0.248848,0.534806,0.714652,0.233131,0.659444,0.657552,0.336070,0.674245,0.557848,0.487289,0.671773,0.206061,0.696066,0.687765,0.190130,0.561235,0.805475,0.270730,0.825068,0.495895,0.410321,0.619526,0.669149,0.241127,0.665853,0.706015,0.182348,0.601703,0.777581,0.113926,0.448927,-0.886258,0.204932,0.534989,-0.819575,0.252297,0.611682,-0.749748,0.136418,0.501389,-0.854366,0.273812,0.604785,-0.747826,0.340587,0.674795,-0.654683,0.419172,0.800745,-0.427839,0.268227,0.680349,-0.681997,0.161870,0.551012,-0.818628,0.226356,0.524430,-0.820765,0.313578,0.508286,-0.802026,0.468978,0.487869,-0.736198,0.423597,0.601672,-0.677145,0.308695,0.460158,-0.832423,0.400708,0.399915,-0.824274,0.552202,0.286447,-0.782922,0.615131,0.445936,-0.650136,0.566027,0.608844,-0.555742,0.823756,0.229957,-0.518174,0.811518,0.372478,-0.450179,0.733848,0.406781,-0.543992,0.756249,0.244942,-0.606677,0.771355,0.535997,-0.343059,0.681692,0.578204,-0.448256,0.879116,0.470748,-0.074313,0.918973,0.321451,-0.228309,0.951567,0.293588,-0.091067,0.897031,0.429029,0.105960,0.969176,0.243049,0.039949,0.655019,0.742943,-0.137577,0.674123,0.738517,-0.010559,0.540422,0.841365,0.003510,0.567766,0.800439,-0.191992,0.670339,0.714347,0.200751,0.498611,0.826930,0.259865,0.370067,0.901639,0.223792,0.426862,0.901608,-0.069643,0.541002,0.797479,0.267037,0.552080,0.832118,-0.052461,0.696890,0.673177,0.247200,0.685995,0.724754,-0.063936,0.460372,0.773217,-0.436079,0.463179,0.844447,-0.268960,0.546953,0.783532,-0.294687,0.554704,0.696219,-0.455550,0.674734,0.662801,-0.324656,0.685598,0.552232,-0.474258,0.358104,0.827967,-0.431471,0.311502,0.728996,-0.609485,0.277017,0.716636,-0.640034,0.347209,0.834040,-0.428663,0.251228,0.599811,-0.759636,0.200568,0.584582,-0.786126,0.718101,0.422803,-0.552751,0.562914,0.600208,-0.568163,0.757653,0.276437,-0.591144,0.567217,0.484451,-0.665975,0.415021,0.571062,-0.708243,0.444807,0.685324,-0.576556,0.785699,0.077181,-0.613758,0.561510,0.267373,-0.783044,0.747612,-0.232521,-0.622059,0.546159,-0.264565,-0.794794,0.320902,-0.254463,-0.912259,0.370647,0.326365,-0.869503,0.257241,0.345408,-0.902493,0.317606,0.597736,-0.736045,0.190405,-0.224036,-0.955779,0.120518,-0.195196,-0.973327,0.187506,0.350627,-0.917539,0.365551,0.720389,-0.589343,0.399030,0.809717,-0.430219,0.368114,0.903012,-0.221442,0.409894,0.875851,-0.254646,0.327280,0.944884,-0.006775,0.385540,0.918241,-0.090243,0.181524,0.827052,0.531938,0.095187,0.827448,0.553362,0.180914,0.649739,0.738304,0.362804,0.570788,0.736564,0.025513,0.799860,0.599597,0.073214,0.718192,0.691946,0.169622,0.733360,0.658315,0.300119,0.616474,0.727897,0.043458,0.847896,0.528336,0.094394,0.897702,0.430342,0.107486,0.924497,0.365673,0.032228,0.790490,0.611591,0.061983,0.791742,0.607685,0.189734,0.872707,0.449782,0.106418,0.841273,0.529984,0.244362,0.926817,0.285012,0.159825,0.903928,0.396649,0.319559,0.942351,0.099094,0.246406,0.946959,0.206153,0.060671,0.788934,0.611438,0.132817,0.835963,0.532395,0.226936,0.905545,0.358379,0.279733,0.833949,0.475631,0.315775,0.941374,0.118595,0.366192,0.917966,-0.152348,0.416669,0.745750,0.519822,0.624866,0.637867,0.450148,0.799432,0.595416,0.079653,0.795251,0.531236,0.292093,0.872768,0.217780,-0.436842,0.870266,0.343303,-0.353191,0.835597,0.500870,-0.225501,0.771722,0.627400,-0.103732,0.710227,0.666036,-0.227882,0.616230,0.718406,-0.322642,0.502396,0.723136,-0.473952,0.377026,0.667928,-0.641621,0.257424,0.584918,-0.769127,0.163182,0.485427,-0.858882,0.123417,0.451369,-0.883724,0.092257,0.408521,-0.908048,0.075198,0.381787,-0.921171,-0.075869,-0.193793,-0.978088,0.014435,0.232124,-0.972564,0.026612,0.261574,-0.964812,-0.039308,-0.152501,-0.987487,0.040162,0.290170,-0.956114,-0.006836,-0.135624,-0.990722,0.047395,0.356273,-0.933164,0.094913,0.424299,-0.900510,0.082217,0.417646,-0.904843,0.051820,0.364727,-0.929655,0.004547,-0.324961,-0.945708,0.016816,0.168279,-0.985565,0.025819,0.174413,-0.984313,-0.018036,-0.311624,-0.950011,0.019318,0.351695,-0.935881,0.046144,0.353008,-0.934446,0.012299,0.186712,-0.982330,-0.060396,-0.284860,-0.956633,0.002991,0.205817,-0.978576,-0.088229,-0.243538,-0.965850,0.134251,0.347148,-0.928129,0.077212,-0.172674,-0.981933,0.041261,-0.155034,-0.987030,0.087893,0.334971,-0.938108,0.056948,0.315348,-0.947233,0.014283,-0.140751,-0.989929,0.001526,0.167852,-0.985778,-0.007874,0.352580,-0.935728,0.006378,-0.328684,-0.944395,0.001404,-0.327006,-0.945006,-0.003876,0.171422,-0.985168,-0.013672,0.355266,-0.934629,0.057649,0.455794,-0.888180,0.028382,0.405866,-0.913480,-0.010895,0.401532,-0.915769,0.005768,0.441328,-0.897305,-0.023621,0.402081,-0.915281,-0.036500,0.436933,-0.898740,0.080233,0.415052,-0.906217,0.135258,0.476730,-0.868557,0.080569,0.457778,-0.885372,0.181555,0.457808,-0.870296,0.172185,0.501968,-0.847530,0.084414,0.493515,-0.865596,-0.122623,0.112613,0.986023,0.005890,-0.160344,0.987030,-0.064211,-0.245827,0.967162,-0.218787,0.080538,0.972411,0.186377,-0.297006,0.936491,0.062319,-0.392132,0.917783,-0.054933,-0.412397,0.909330,-0.041169,-0.275002,0.960540,-0.057497,0.083041,0.994873,0.350414,0.169347,0.921140,0.365581,-0.072542,0.927915,0.182653,-0.087832,0.979217,0.138646,0.164129,0.976623,0.348308,-0.132664,0.927915,0.259774,-0.185827,0.947600,0.041627,0.502731,0.863399,0.213324,0.530473,0.820399,-0.202307,0.418378,0.885433,-0.243477,0.533097,0.810236,0.013276,0.589740,0.807459,0.457839,-0.084323,0.885006,0.464766,-0.118198,0.877499,0.442579,0.075472,0.893521,0.515061,-0.036012,0.856380,0.324686,0.439344,0.837550,0.462325,0.256233,0.848842,0.798669,-0.106632,0.592212,0.879086,-0.072787,0.471053,0.910581,-0.091311,0.403058,0.826197,-0.116428,0.551195,0.960143,-0.043428,0.276070,0.977142,-0.062929,0.202918,0.980468,0.168798,0.100772,0.988403,0.058931,-0.139836,0.996460,0.002960,-0.083804,0.990417,0.092349,0.102390,0.960509,0.013733,-0.277840,0.984313,-0.018555,-0.175359,0.997925,-0.024812,0.059084,0.999176,-0.039979,-0.005036,0.870663,0.064638,0.487564,0.918882,0.124760,0.374248,0.981323,0.038423,0.188421,0.925748,0.006867,0.378063,0.699149,0.019013,0.714682,0.790033,0.034944,0.612049,0.830439,-0.014954,0.556871,0.744194,-0.038881,0.666799,0.680746,-0.074465,0.728690,0.608020,-0.007141,0.793847,0.722037,-0.123356,0.680746,0.604663,-0.115757,0.787988,0.595416,-0.106021,0.796350,0.811914,0.102298,0.574725,0.831935,0.164342,0.529923,0.779077,0.104465,0.618152,0.761773,0.149846,0.630238,0.506027,0.454176,0.733207,0.594775,0.315195,0.739494,0.409650,0.614673,0.674032,0.273110,0.759697,0.590136,0.192969,0.887661,0.418073,0.434462,0.721763,0.538713,0.593036,0.385601,0.706778,0.698111,0.154729,0.699057,0.608539,0.384991,0.693838,0.091189,0.926420,0.365246,0.689016,0.176550,0.702872,0.745354,0.086947,0.660939,0.762383,0.062838,0.644032,0.696738,0.053652,0.715262,0.601886,0.109745,0.790979,0.511948,-0.155675,0.844752,0.408856,-0.156804,0.899014,0.482528,-0.120945,0.867458,0.504501,-0.113041,0.855953,0.478591,-0.839595,0.256813,0.439863,-0.833827,0.333445,0.579333,-0.748802,0.321848,0.634724,-0.745048,0.204871,0.402966,-0.820887,0.404584,0.469588,-0.752678,0.461440,0.539079,-0.626759,0.562609,0.663259,-0.622669,0.415082,0.761101,-0.597125,0.253182,0.026643,-0.884152,0.466384,0.252541,-0.856288,0.450453,0.254891,-0.892605,0.371838,0.027070,-0.925932,0.376629,0.275491,-0.913572,0.299081,0.027345,-0.951231,0.307230,0.281167,-0.769524,0.573351,0.327433,-0.640858,0.694296,0.026978,-0.793847,0.607501,0.021149,-0.668081,0.743767,0.580432,-0.319803,0.748833,0.538011,-0.322245,0.778863,0.639851,-0.234474,0.731803,0.680227,-0.292520,0.672079,0.454054,-0.341594,0.822871,0.549944,-0.237342,0.800745,0.606464,-0.179815,0.774468,0.689718,-0.272561,0.670797,0.645680,-0.177557,0.742637,0.588061,-0.121403,0.799615,0.716575,-0.125767,0.686056,0.740440,-0.132389,0.658895,0.875393,-0.365764,0.315989,0.779382,-0.281686,0.559618,0.822840,-0.200781,0.531571,0.887356,-0.305673,0.345134,0.548051,-0.135777,0.825343,0.649525,-0.229682,0.724784,0.751396,-0.426435,0.503494,0.773583,-0.364971,0.517960,0.847102,-0.463515,0.259774,0.581347,-0.449599,0.678121,0.688955,-0.449202,0.568773,0.365429,-0.470107,0.803369,0.008118,-0.511124,0.859432,-0.012085,-0.444288,0.895779,0.361431,-0.383801,0.849696,-0.037049,-0.521867,0.852199,0.303385,-0.443434,0.843379,-0.065615,-0.512192,0.856349,0.210211,-0.449751,0.868038,0.410291,-0.238655,0.880154,0.344951,-0.341868,0.874111,-0.075198,-0.444685,0.892483,0.135044,-0.422071,0.896420,-0.301675,0.373028,0.877377,-0.071963,0.397137,0.914914,-0.062288,0.501175,0.863063,-0.338969,0.478256,0.810114,-0.337291,0.484237,0.807276,-0.225562,0.458541,0.859554,-0.033052,0.539781,0.841121,-0.018555,0.485549,0.873989,-0.262215,0.438185,0.859767,-0.161596,0.367473,0.915860,0.051912,0.451064,0.890957,0.185278,0.469710,0.863124,0.048616,0.358776,0.932127,0.123966,0.408551,0.904263,0.101596,0.093448,0.990417,0.061586,-0.639882,0.765984,0.115665,0.458083,0.881344,0.066439,0.129460,0.989349,0.007660,-0.583392,0.812128,0.160039,0.509293,0.845546,-0.009095,0.119541,0.992767,-0.079440,-0.557176,0.826563,-0.145787,0.112217,0.982910,-0.160283,-0.548082,0.820887,-0.202124,0.149266,0.967895,-0.161351,-0.533677,0.830103,-0.042055,0.160222,0.986175,-0.053652,-0.526872,0.848231,0.681997,0.553880,0.477554,0.744224,0.488449,0.455519,0.715506,0.548021,0.433241,0.649678,0.614917,0.446883,0.386761,0.810724,0.439436,0.371532,0.858852,0.352519,0.479568,0.769738,0.421247,0.462020,0.816919,0.345164,0.397748,0.705771,0.586200,0.395550,0.761742,0.513077,0.501450,0.669424,0.548051,0.491195,0.724906,0.482894,0.545610,0.733177,0.405835,0.528123,0.779687,0.336344,0.599963,0.616535,0.509751,0.573138,0.677938,0.460250,0.542405,-0.012177,-0.840022,0.203162,0.001984,-0.979125,0.166601,-0.166356,-0.971862,0.506607,-0.188513,-0.841273,0.003327,0.016755,-0.999847,-0.041139,-0.149113,-0.987945,-0.049715,-0.380444,-0.923460,0.165746,-0.311869,-0.935545,0.487411,-0.294778,-0.821894,0.693442,-0.498123,-0.520524,0.624775,-0.508560,-0.592425,0.602985,-0.593127,-0.533464,0.682638,-0.547838,-0.483566,0.470199,-0.537522,-0.699973,0.460799,-0.621418,-0.633625,0.754540,-0.471297,-0.456618,0.767541,-0.486984,-0.416730,0.786157,-0.327708,-0.523972,0.764428,-0.414380,-0.493851,0.775262,-0.323954,-0.542222,0.729911,-0.419843,-0.539354,0.703146,-0.304971,-0.642262,0.665242,-0.396161,-0.632801,0.483993,-0.390057,-0.783288,0.872738,0.039766,-0.486557,0.872646,0.092654,-0.479415,0.844478,0.020539,-0.535173,0.847316,-0.036592,-0.529771,0.869350,0.138890,-0.474227,0.831568,0.133610,-0.539079,0.762932,0.126896,-0.633839,0.760094,-0.007599,-0.649739,0.557909,0.132969,-0.819147,0.820551,-0.185766,-0.540483,0.820795,-0.175237,-0.543626,0.736167,-0.184667,-0.651112,0.311472,-0.533738,-0.786157,0.338328,-0.440962,-0.831294,0.182928,-0.525773,-0.830683,0.210913,-0.458998,-0.863002,0.261788,-0.598010,-0.757500,0.289590,-0.626057,-0.723991,0.086581,-0.688772,-0.719748,0.145146,-0.642720,-0.752190,0.046632,-0.539018,-0.840999,0.077212,-0.478347,-0.874752,-0.073153,-0.548021,-0.833216,-0.058473,-0.493881,-0.867519,-0.016907,-0.440046,-0.897794,-0.019257,-0.690970,-0.722617,0.008271,-0.598743,-0.800867,0.089908,-0.390790,-0.916044,0.029664,-0.653310,-0.756493,-0.028748,-0.727989,-0.684957,-0.001892,-0.745750,-0.666189,0.020325,-0.662862,-0.748436,-0.065310,-0.655599,-0.752251,0.215491,-0.458480,-0.862148,0.202582,0.370281,-0.906522,0.225867,0.262368,-0.938139,0.066042,0.356456,-0.931944,0.054476,0.252052,-0.966155,0.082797,0.241890,-0.966735,0.085299,0.131077,-0.987671,0.035371,0.136998,-0.989929,0.097934,0.223853,-0.969665,0.136448,0.125980,-0.982574,0.139317,0.039949,-0.989410,0.059175,0.027100,-0.997864,0.223090,0.139775,-0.964690,-0.010712,0.444502,-0.895688,0.045717,0.456496,-0.888516,0.031770,0.486160,-0.873257,-0.037294,0.477096,-0.878048,0.061129,0.346721,-0.935942,0.039521,0.327647,-0.943937,0.016022,-0.142827,-0.989593,0.124485,-0.110630,-0.986023,0.979034,-0.105075,0.174444,0.974090,-0.123630,0.189276,0.977508,-0.106357,0.182012,0.973693,-0.100070,0.204657,0.979766,-0.115329,0.163427,0.985656,-0.108066,0.129398,0.990509,-0.132115,0.037812,0.987640,-0.134983,0.079501,-0.903500,-0.011628,-0.428388,-0.887722,0.033692,-0.459120,-0.916440,0.037873,-0.398328,-0.935392,-0.000092,-0.353526,-0.892239,0.066866,-0.446516,-0.912778,0.079653,-0.400555,-0.939177,0.134587,-0.315928,-0.950224,0.083956,-0.299936,-0.968169,0.027039,-0.248756,-0.598834,0.770104,0.219794,-0.633015,0.747032,0.202948,-0.648152,0.706900,0.283059,-0.604694,0.737388,0.300912,-0.672018,0.716178,0.188299,-0.708670,0.662435,0.242805,-0.747703,0.595141,0.294443,-0.677450,0.656484,0.331736,-0.621113,0.700583,0.351207,-0.470992,0.880764,0.048677,-0.454939,0.887539,-0.072420,-0.529221,0.845149,-0.074770,-0.550401,0.833827,0.041932,-0.430921,0.890316,-0.146947,-0.476699,0.862392,-0.170293,-0.566057,0.791986,-0.228614,-0.605365,0.792108,-0.077700,-0.617298,0.785760,0.038301,-0.729484,0.682730,0.041475,-0.699332,0.705710,0.113559,-0.650288,0.751396,0.111637,-0.676656,0.735343,0.036958,-0.608173,0.783349,0.128239,-0.779321,0.603992,-0.166692,-0.756554,0.652852,-0.037324,-0.683370,0.727409,-0.062227,-0.683767,0.701193,-0.201849,-0.552171,0.821436,0.142399,-0.552934,0.798700,0.237251,-0.478378,0.840114,0.255531,-0.474105,0.866543,0.155797,-0.376965,0.910825,0.168096,-0.369488,0.927641,0.054262,-0.383557,0.882534,0.271920,-0.267739,0.921415,0.281533,-0.262307,0.947935,0.180486,-0.263741,0.962615,0.061251,-0.137791,0.971252,0.194037,-0.144505,0.986816,0.072787,-0.135807,0.949004,0.284463,-0.284646,0.757042,0.588061,-0.157781,0.766167,0.622913,-0.168706,0.814508,0.555040,-0.296304,0.798822,0.523484,-0.166448,0.866359,0.470840,-0.300088,0.839351,0.453200,-0.285470,0.882870,0.372784,-0.150029,0.915738,0.372631,-0.941862,-0.306406,-0.137791,-0.915830,-0.401471,-0.005005,-0.964629,-0.263405,-0.007782,-0.951903,-0.261696,-0.159185,-0.898190,-0.437483,0.042665,-0.955565,-0.270211,0.117649,-0.980285,-0.142308,0.136937,-0.981567,-0.186560,0.041078,-0.960723,-0.263131,-0.088046,-0.989807,-0.071108,-0.123173,-0.990356,-0.065127,-0.122074,-0.994140,-0.068514,0.083438,-0.994476,-0.066927,0.080844,-0.992798,-0.052583,-0.107395,-0.992920,-0.059297,0.102878,-0.964599,-0.072817,0.253334,-0.971587,-0.082827,0.221656,-0.978515,-0.079745,0.190039,-0.836451,-0.071444,-0.543352,-0.867031,-0.024537,-0.497574,-0.935392,-0.055910,-0.349101,-0.924467,-0.078433,-0.373058,-0.951353,-0.042756,-0.305032,-0.819727,-0.218421,-0.529405,-0.818323,-0.156285,-0.553087,-0.923185,-0.124790,-0.363475,-0.928953,-0.168035,-0.329844,-0.990020,-0.086856,-0.110843,-0.985473,-0.138066,-0.098636,-0.993927,-0.069887,0.084719,-0.987548,-0.133763,0.082614,-0.983734,-0.077975,0.161687,-0.929655,-0.117038,0.349254,-0.954619,-0.138462,0.263588,-0.918363,-0.085604,0.386334,-0.834986,-0.098178,0.541398,-0.869594,-0.167272,0.464522,-0.924894,-0.270272,0.267403,-0.978881,-0.141270,0.147588,-0.962767,-0.262703,0.063234,-0.965300,-0.254158,0.059542,-0.969604,-0.218055,-0.110874,-0.943480,-0.330821,0.018372,-0.951384,-0.279366,-0.129643,-0.849208,-0.292123,-0.439833,-0.836055,-0.252266,-0.487167,-0.929472,-0.207923,-0.304605,-0.921873,-0.251991,-0.294259,-0.933348,-0.281930,-0.222053,-0.912625,-0.310373,-0.265999,-0.912442,-0.294992,-0.283517,-0.934843,-0.290719,-0.203772,-0.862545,-0.352428,-0.362957,-0.853664,-0.340648,-0.393902,-0.758446,-0.419965,-0.498337,-0.817194,-0.387463,-0.426649,-0.838008,-0.348827,-0.419538,-0.778314,-0.379345,-0.500290,-0.882412,-0.320719,-0.344127,-0.915799,-0.258461,-0.307413,-0.860103,-0.291879,-0.418317,-0.797662,-0.311777,-0.516221,-0.926908,-0.284768,-0.244331,-0.949736,-0.241707,-0.198798,-0.974303,-0.162999,-0.155278,-0.956633,-0.207160,-0.204657,-0.979247,-0.135105,-0.151006,-0.952513,-0.161077,-0.258278,-0.989227,-0.101444,-0.105441,-0.994934,-0.095309,-0.031068,-0.988311,-0.115238,-0.099551,-0.969329,-0.072970,-0.234596,-0.999451,-0.005890,0.032197,-0.991272,0.129643,-0.023103,-0.981872,0.080050,-0.171758,-0.994201,-0.041536,-0.099033,-0.955199,0.286813,-0.072665,-0.952849,0.211371,-0.217566,-0.923185,0.138981,-0.358287,-0.947630,0.033082,-0.317576,-0.934080,0.242775,0.261757,-0.876492,0.357067,0.322855,-0.855281,0.434095,0.282876,-0.918271,0.326243,0.224281,-0.808618,0.453139,0.375195,-0.781152,0.523331,0.340434,-0.825953,0.515519,0.228065,-0.904782,0.399853,0.146489,-0.990692,0.011628,0.135533,-0.981628,0.166845,0.092349,-0.985717,0.022889,0.166753,-0.968657,0.194220,0.154790,-0.935759,0.349498,0.046266,-0.815546,0.573016,0.080691,-0.850581,0.525803,-0.000031,-0.881558,0.456557,-0.119755,-0.771020,0.615314,0.163823,-0.957610,0.215644,0.190863,-0.971618,0.122593,0.202216,-0.874050,0.093783,-0.476669,-0.894406,-0.000092,-0.447249,-0.792169,0.078738,-0.605152,-0.815760,-0.025178,-0.577837,-0.818934,-0.096805,-0.565630,-0.898556,-0.070376,-0.433088,-0.684835,0.082430,-0.723991,-0.712516,-0.032105,-0.700888,-0.596026,0.096438,-0.797113,-0.614826,-0.025666,-0.788232,-0.630451,-0.118931,-0.767022,-0.728538,-0.114841,-0.675253,-0.519333,-0.024567,-0.854183,-0.515213,-0.129978,-0.847133,-0.510758,0.112033,-0.852351,-0.367870,0.125309,-0.921384,-0.358318,-0.027802,-0.933164,-0.346294,-0.151952,-0.925718,-0.178594,0.721458,-0.668996,-0.163732,0.830866,-0.531785,-0.324870,0.690634,-0.646077,-0.318400,0.801355,-0.506363,-0.302408,0.879360,-0.367718,-0.154698,0.902554,-0.401746,-0.290628,0.917844,-0.270241,-0.152959,0.941740,-0.299509,-0.281655,0.940031,-0.192206,-0.148961,0.967437,-0.204627,-0.270486,0.959410,-0.079592,-0.145878,0.986175,-0.078524,-0.373516,0.911679,-0.171026,-0.367779,0.926664,-0.077242,-0.394238,0.890011,-0.228950,-0.432936,0.844813,-0.314341,-0.567186,0.230750,-0.790582,-0.483779,0.269692,-0.832575,-0.540208,0.367748,-0.756890,-0.450056,0.419050,-0.788537,-0.348857,0.464614,-0.813868,-0.367748,0.301218,-0.879757,-0.434492,0.549120,-0.713889,-0.329478,0.583483,-0.742241,-0.538255,0.506821,-0.673330,-0.564714,0.619892,-0.544755,-0.446547,0.661061,-0.602954,-0.753716,0.187933,-0.629719,-0.654805,0.196936,-0.729667,-0.722098,0.272347,-0.635884,-0.643178,0.312998,-0.698813,-0.683920,0.546678,-0.483077,-0.690298,0.637898,-0.341319,-0.583544,0.712485,-0.389599,-0.786981,0.433119,-0.439375,-0.790887,0.529527,-0.306681,-0.892331,0.367901,-0.261422,-0.874477,0.278024,-0.397412,-0.758446,0.336894,-0.557878,-0.830683,0.212867,-0.514359,-0.658040,0.437239,-0.612995,-0.456069,0.765465,-0.453871,-0.194617,0.494705,-0.846950,-0.189184,0.614154,-0.766167,-0.170934,0.125340,-0.977264,-0.189184,0.313395,-0.930570,-0.173070,-0.324076,-0.930052,-0.166997,-0.162511,-0.972442,-0.164586,-0.459975,-0.872524,-0.307047,-0.437727,-0.845027,-0.331004,-0.306925,-0.892300,-0.160680,-0.029756,-0.986541,-0.501297,-0.269204,-0.822291,-0.475845,-0.402448,-0.782006,-0.626545,-0.363689,-0.689291,-0.637684,-0.232673,-0.734275,-0.733726,-0.211493,-0.645650,-0.724174,-0.333506,-0.603565,-0.813166,-0.194739,-0.548448,-0.887082,-0.177465,-0.426099,-0.602191,-0.466201,-0.648030,-0.700003,-0.419477,-0.577929,-0.563707,-0.532701,-0.631184,-0.667623,-0.466842,-0.579913,-0.198523,0.792901,0.576067,-0.248878,0.873379,0.418592,-0.341594,0.862545,0.373211,-0.235237,0.775323,0.586077,-0.281014,0.910550,0.303140,-0.361461,0.911191,0.197546,-0.476516,0.879147,-0.000641,-0.448103,0.833430,0.323374,-0.277749,0.713126,0.643635,-0.144871,0.670095,0.727958,-0.120884,0.741844,0.659566,-0.140751,0.741844,0.655599,-0.139103,0.664998,0.733726,-0.112491,0.774377,0.622608,-0.139561,0.781091,0.608570,-0.165685,0.779260,0.604358,-0.258034,0.660970,0.704611,-0.255470,0.719840,0.645375,-0.174505,0.822291,0.541612,-0.328959,0.523759,0.785760,-0.341929,0.552232,0.760308,-0.300363,0.576678,0.759728,-0.229194,0.743889,0.627735,-0.201605,0.824458,0.528733,-0.190100,0.503800,0.842616,-0.281198,0.503342,0.817011,-0.239479,0.595965,0.766442,-0.170660,0.555925,0.813501,-0.172155,0.717338,0.675069,-0.656575,0.092746,0.748497,-0.643574,-0.111881,0.757134,-0.323801,0.324381,0.888760,-0.317637,0.410230,0.854854,-0.618213,-0.347850,0.704825,-0.372326,0.159368,0.914274,-0.195471,0.433515,0.879665,-0.137577,0.497574,0.856410,-0.124851,0.501724,0.855953,-0.322520,0.515946,0.793542,-0.345256,0.542039,0.766106,-0.333232,0.483840,0.809198,-0.332316,0.305979,0.892117,-0.337687,0.546678,0.766198,-0.307993,0.557848,0.770623,-0.265633,0.549974,0.791772,-0.313822,0.340983,0.886105,-0.274789,-0.337962,0.900113,-0.212012,0.516770,0.829432,-0.266274,0.197089,0.943510,-0.237617,0.021180,0.971099,-0.178564,-0.648305,0.740104,-0.196905,-0.522385,0.829615,-0.143773,0.535325,0.832301,-0.219642,0.537828,0.813898,-0.104068,0.510727,0.853389,-0.518174,-0.616382,0.592883,-0.361827,-0.266305,0.893368,-0.370556,-0.808710,0.456771,-0.251686,-0.754418,0.606189,-0.702048,0.486526,0.519974,-0.675802,0.285592,0.679464,-0.372539,0.512497,0.773644,-0.473495,0.653493,0.590503,-0.176489,0.563768,0.806818,-0.114841,0.554064,0.824488,-0.294565,0.520096,0.801691,-0.346049,0.504410,0.791040,-0.365795,0.502152,0.783563,-0.333293,0.503006,0.797388,-0.164342,0.462996,0.870968,-0.259072,0.482833,0.836482,-0.281137,0.144169,0.948759,-0.189032,0.068056,0.979583,-0.214850,-0.580157,0.785638,-0.134465,-0.654317,0.744133,-0.117344,0.601611,0.790094,-0.201727,0.597461,0.776086,-0.245796,0.505753,0.826899,-0.138951,0.517655,0.844203,-0.145940,0.662618,0.734581,-0.171117,0.722678,0.669637,-0.200415,0.737388,0.645009,-0.195135,0.787957,0.583941,-0.721946,0.252052,0.644368,-0.825068,0.207587,0.525468,-0.782495,0.300760,0.545152,-0.647450,0.357707,0.672903,-0.926328,0.127293,0.354534,-0.917295,0.219489,0.332163,-0.909665,0.318155,0.266884,-0.767571,0.405011,0.496719,-0.566759,0.496536,0.657399,-0.203070,0.557573,0.804865,-0.203284,0.690359,0.694266,-0.134404,0.608600,0.781976,-0.087191,0.581469,0.808863,-0.092898,0.577990,0.810724,-0.069369,0.572436,0.816980,-0.447188,0.801263,-0.397473,-0.355541,0.683187,-0.637806,-0.260445,0.649129,-0.714652,-0.286325,0.706076,-0.647633,-0.289285,0.625843,-0.724265,-0.213233,0.582904,-0.784051,-0.119541,0.504288,-0.855190,-0.159398,0.548082,-0.821070,-0.197974,0.584674,-0.786706,-0.658498,0.259713,-0.706320,-0.548082,0.391583,-0.739067,-0.500687,0.527360,-0.686392,-0.635456,0.478072,-0.606281,-0.468368,0.474380,-0.745323,-0.393475,0.538835,-0.744835,-0.251564,0.548387,-0.797449,-0.424543,0.627949,-0.652211,-0.568926,0.647023,-0.507553,-0.711753,0.615467,-0.338481,-0.781518,0.413434,-0.467208,-0.805811,0.553819,-0.209510,-0.874325,0.351695,-0.334391,-0.886654,0.197241,-0.418226,-0.801965,0.225471,-0.553148,-0.968719,0.224250,-0.105960,-0.987701,0.153752,-0.027314,-0.945341,0.275948,-0.173559,-0.886380,0.462661,0.015381,-0.902432,0.403790,0.150029,-0.386456,0.887020,0.252571,-0.515854,0.799615,0.307321,-0.566668,0.821955,0.056917,-0.451125,0.891659,-0.037202,-0.674764,0.687155,0.269143,-0.681692,0.726859,0.083163,-0.672597,0.739616,-0.022767,-0.603046,0.789026,-0.117222,-0.563250,0.773614,0.290262,-0.715476,0.647114,0.263222,-0.588946,0.807947,-0.017914,-0.706626,0.707175,-0.023164,-0.589007,0.772668,-0.236702,-0.704825,0.663350,-0.251259,-0.488205,0.842586,-0.227271,-0.481918,0.776574,-0.405713,-0.592578,0.695578,-0.406171,-0.727897,0.550310,-0.408948,-0.239174,0.604877,-0.759514,-0.296243,0.735527,-0.609241,-0.285989,0.607471,-0.741020,-0.324778,0.740776,-0.587970,-0.357830,0.839808,-0.408185,-0.355937,0.845088,-0.398846,-0.440016,0.562059,-0.700308,-0.597095,0.470016,-0.650014,-0.593951,0.593066,-0.543535,-0.463363,0.684225,-0.563097,-0.795923,0.256874,-0.548143,-0.761467,0.404584,-0.506363,-0.366161,-0.263985,-0.892300,-0.588946,-0.264901,-0.763482,-0.593616,0.260720,-0.761315,-0.408460,0.320048,-0.854793,-0.785974,-0.225196,-0.575762,-0.818659,0.072207,-0.569689,-0.195227,-0.204382,-0.959197,-0.251259,-0.233619,-0.939268,-0.308054,0.342936,-0.887387,-0.247536,0.355815,-0.901151,-0.348399,0.594775,-0.724448,-0.379589,0.724204,-0.575671,-0.404035,0.818445,-0.408460,-0.378887,0.924406,-0.043245,-0.410688,0.884335,-0.221961,-0.315653,0.948241,0.034028,-0.361339,0.912412,-0.192053,-0.182562,0.762932,0.620136,-0.115482,0.764244,0.634449,-0.223548,0.716727,0.660512,-0.328440,0.650349,0.684896,-0.101199,0.780969,0.616291,-0.162145,0.795740,0.583483,-0.246773,0.786493,0.566118,-0.383953,0.624989,0.679647,-0.153508,0.825648,0.542863,-0.205847,0.835261,0.509812,-0.115635,0.799707,0.589129,-0.121281,0.765923,0.631336,-0.104923,0.772973,0.625660,-0.178594,0.855983,0.485122,-0.230506,0.908200,0.349284,-0.120640,0.825739,0.550951,-0.159368,0.892697,0.421491,-0.301279,0.935881,0.182470,-0.234748,0.940489,0.245674,-0.115452,0.798639,0.590625,-0.158422,0.842891,0.514206,-0.232948,0.898770,0.371380,-0.314829,0.937407,0.148747,-0.287973,0.822230,0.490890,-0.368084,0.921842,-0.121189,-0.433241,0.716117,0.547197,-0.636708,0.600299,0.483932,-0.788415,0.507767,0.347209,-0.795434,0.583178,0.164769,-0.917570,0.311045,-0.247566,-0.856868,0.504074,-0.107822,-0.922941,0.170141,-0.345256,-0.725486,0.681631,-0.094852,-0.775628,0.631062,0.010224,-0.645009,0.731620,-0.220649,-0.529466,0.726157,-0.438551,-0.275338,0.602496,-0.749107,-0.394360,0.667928,-0.631123,-0.170354,0.533372,-0.828516,-0.083560,0.465377,-0.881130,-0.118290,0.495834,-0.860286,-0.050722,0.435865,-0.898556,-0.018128,0.300424,-0.953612,-0.055147,0.323832,-0.944487,0.016236,0.273385,-0.961730,0.099185,-0.181951,-0.978271,0.034333,-0.147130,-0.988495,-0.024506,-0.137089,-0.990234,-0.107486,0.460250,-0.881222,-0.075106,0.465133,-0.882015,-0.031434,0.398114,-0.916776,-0.028474,0.414136,-0.909757,-0.044282,0.382824,-0.922727,0.014405,0.201178,-0.979430,0.036866,0.220771,-0.974609,-0.031404,0.368480,-0.929075,0.004730,0.186682,-0.982391,0.025452,-0.313761,-0.949126,0.063387,-0.296793,-0.952818,0.112674,-0.268044,-0.956755,0.041169,0.245247,-0.968566,0.133091,-0.227577,-0.964599,-0.111606,-0.162358,-0.980377,-0.155797,-0.181036,-0.971038,-0.197851,0.362011,-0.910916,-0.145940,0.358135,-0.922178,-0.097873,0.343883,-0.933866,-0.067080,-0.146519,-0.986908,0.006195,-0.322489,-0.946532,0.002777,0.177404,-0.984100,-0.010376,0.359508,-0.933073,-0.034089,0.408918,-0.911924,-0.080233,0.421613,-0.903195,-0.140355,0.469008,-0.871944,-0.080142,0.448561,-0.890133,-0.122166,0.439985,-0.889615,-0.206336,0.494461,-0.844325,-0.296945,0.514817,-0.804193,-0.397046,0.446211,-0.801996,-0.262123,0.425733,-0.866024,-0.206854,0.487045,-0.848506,-0.110904,-0.368877,0.922819,0.007752,-0.242042,0.970214,-0.130650,-0.292550,0.947264,-0.013062,-0.187933,0.982086,0.107150,0.113804,0.987701,0.134068,0.091281,0.986755,-0.185614,-0.230293,0.955229,-0.150639,-0.161779,0.975249,-0.285134,-0.205908,0.936094,-0.304361,-0.173437,0.936613,-0.278512,0.110843,0.953978,-0.090976,0.139775,0.985961,0.201239,0.537919,0.818598,0.188696,0.415998,0.889553,0.000000,0.464095,0.885769,0.011841,0.568407,0.822626,-0.121403,0.471419,0.873501,-0.402783,-0.198523,0.893490,-0.391003,-0.015503,0.920225,-0.420270,-0.205267,0.883847,-0.491165,-0.130924,0.861141,-0.333476,0.208899,0.919309,-0.198096,0.378552,0.904111,-0.954802,-0.086062,0.284433,-0.914060,-0.106784,0.391217,-0.936613,-0.088656,0.338939,-0.892056,-0.116947,0.436445,-0.822840,-0.146641,0.548967,-0.835047,-0.119114,0.537095,-0.998169,-0.059175,-0.010437,-0.987304,-0.024567,-0.156804,-0.995636,0.076449,0.053072,-0.989898,0.011231,0.141270,-0.968108,-0.031739,-0.248390,-0.995880,-0.052156,-0.074129,-0.988311,-0.067080,0.136814,-0.979949,-0.073855,0.185003,-0.960387,-0.025361,0.277383,-0.908048,0.061525,0.414258,-0.851375,0.021821,0.524064,-0.904782,-0.045900,0.423353,-0.842219,-0.075716,0.533769,-0.768670,-0.012574,0.639515,-0.674123,-0.057161,0.736351,-0.767907,-0.117496,0.629658,-0.595264,-0.169469,0.785424,-0.718589,-0.164892,0.675558,-0.674612,-0.158666,0.720878,-0.574084,-0.183447,0.797937,-0.584338,-0.104740,0.804682,-0.751274,0.165868,0.638783,-0.830073,0.136723,0.540574,-0.738792,0.121982,0.662770,-0.782556,0.091372,0.615802,-0.412610,0.612201,0.674459,-0.591815,0.335826,0.732749,-0.491501,0.494827,0.716575,-0.305063,0.736351,0.603870,-0.544939,0.172674,0.820460,-0.521928,0.391766,0.757653,-0.338450,0.664113,0.666585,-0.390179,0.385113,0.836299,-0.256264,0.796136,0.548143,-0.213019,0.832118,0.512040,-0.664541,0.106906,0.739525,-0.654927,0.188604,0.731773,-0.691641,0.056764,0.719962,-0.575884,0.033357,0.816828,-0.467879,0.074099,0.880673,-0.457228,-0.192389,0.868252,-0.335154,-0.212226,0.917936,-0.417249,-0.211219,0.883877,-0.487930,-0.175939,0.854946,-0.476211,-0.726310,0.495621,-0.401379,-0.815912,0.416089,-0.531846,-0.783105,0.322245,-0.610065,-0.710929,0.349834,-0.339427,-0.853664,0.395001,-0.396100,-0.847896,0.352306,-0.446486,-0.843410,0.298776,-0.612507,-0.747307,0.257454,-0.735893,-0.637226,0.228797,-0.202002,-0.907254,0.368847,-0.227027,-0.924070,0.307443,-0.190497,-0.878994,0.437056,-0.218360,-0.816248,0.534806,-0.279550,-0.701621,0.655385,-0.408551,-0.285684,0.866848,-0.539506,-0.304636,0.784906,-0.523759,-0.226417,0.821192,-0.403790,-0.385784,0.829493,-0.518509,-0.390332,0.760735,-0.565874,-0.431318,0.702628,-0.633473,-0.414289,0.653493,-0.658193,-0.366832,0.657399,-0.721397,-0.125584,0.680990,-0.604419,-0.137547,0.784692,-0.686636,-0.193396,0.700766,-0.748497,-0.128666,0.650502,-0.832942,-0.236274,0.500320,-0.815119,-0.332255,0.474441,-0.878536,-0.409345,0.246101,-0.888852,-0.345897,0.300424,-0.534989,-0.167669,0.828028,-0.663533,-0.284494,0.691916,-0.790918,-0.444563,0.420454,-0.735557,-0.542894,0.405164,-0.840236,-0.505203,0.196844,-0.651631,-0.591906,0.474288,-0.542955,-0.581256,0.606037,-0.343455,-0.547136,0.763298,-0.381268,-0.445662,0.809931,-0.293100,-0.480758,0.826380,-0.364299,-0.482498,0.796503,-0.278695,-0.263100,0.923612,-0.264473,-0.339335,0.902707,-0.208167,-0.411573,0.887265,0.211554,0.396222,0.893429,0.249763,0.508469,0.824030,0.262490,0.518998,0.813440,0.209784,0.413190,0.886135,0.180792,0.513230,0.838954,0.140233,0.348766,0.926633,-0.007874,0.516984,0.855922,0.009705,0.356151,0.934355,-0.073519,0.522721,0.849300,-0.031068,0.407788,0.912534,-0.071200,0.446913,0.891720,-0.072542,0.073824,0.994598,0.020569,0.093142,0.995422,-0.055086,-0.636860,0.768975,0.043519,-0.576525,0.815882,-0.077578,0.526475,0.846614,0.071047,0.073794,0.994720,0.122898,0.054689,0.990905,0.113895,-0.535447,0.836818,0.122135,-0.532182,0.837733,0.126560,0.098178,0.987060,0.071535,-0.531419,0.844050,-0.714316,0.592212,0.372814,-0.748344,0.525437,0.404767,-0.675863,0.594562,0.435469,-0.648488,0.650227,0.395734,-0.480758,0.805689,0.345958,-0.391369,0.844539,0.365459,-0.480270,0.778466,0.404065,-0.397473,0.810419,0.430342,-0.488296,0.744896,0.454573,-0.396435,0.778100,0.487197,-0.500931,0.698843,0.510514,-0.394910,0.735740,0.550157,-0.556688,0.766350,0.320566,-0.561266,0.738517,0.373547,-0.575762,0.699484,0.423322,-0.592364,0.652882,0.472030,-0.247688,-0.177557,-0.952422,-0.244911,-0.019868,-0.969329,-0.485519,-0.009613,-0.874172,-0.470351,-0.131169,-0.872646,-0.251045,0.061464,-0.966002,-0.502914,0.050905,-0.862819,-0.676260,0.034516,-0.735832,-0.648762,-0.032533,-0.760247,-0.612018,-0.128086,-0.780358,-0.532060,-0.529862,-0.660390,-0.644826,-0.477554,-0.596728,-0.545549,-0.413739,-0.728813,-0.662679,-0.408307,-0.627766,-0.752586,-0.402783,-0.520890,-0.743645,-0.442824,-0.500839,-0.797845,-0.399396,-0.451491,-0.786340,-0.361278,-0.501114,-0.786798,-0.303995,-0.537095,-0.783654,-0.300821,-0.543443,-0.828425,-0.202673,-0.522080,-0.796045,-0.236579,-0.557054,-0.578173,-0.258980,-0.773705,-0.709403,-0.278115,-0.647572,-0.756371,-0.157781,-0.634785,-0.883572,0.031892,-0.467147,-0.890316,0.077548,-0.448653,-0.863033,0.029450,-0.504227,-0.846980,-0.030427,-0.530717,-0.908780,0.112980,-0.401654,-0.885342,0.124516,-0.447920,-0.808863,0.120945,-0.575396,-0.682424,0.114658,-0.721885,-0.814142,0.027741,-0.579943,-0.824396,-0.141423,-0.548021,-0.864467,-0.100742,-0.492477,-0.794794,-0.068514,-0.602954,-0.294107,-0.507035,-0.810175,-0.459517,-0.498550,-0.735038,-0.302255,-0.579058,-0.757164,-0.446242,-0.578845,-0.682455,-0.315806,-0.602069,-0.733299,-0.441389,-0.577197,-0.687002,-0.306986,-0.530595,-0.790033,-0.458022,-0.448469,-0.767479,-0.160161,-0.504013,-0.848689,-0.169317,-0.558245,-0.812189,-0.048830,-0.515580,-0.855434,-0.120304,-0.640706,-0.758263,0.008148,-0.272378,-0.962127,-0.273049,-0.371197,-0.887478,-0.165777,-0.625416,-0.762444,-0.464888,-0.281472,-0.839412,-0.468154,0.315897,-0.825220,-0.283731,0.300272,-0.910672,-0.504166,0.203192,-0.839351,-0.279458,0.198798,-0.939329,0.001312,0.126041,-0.992004,0.021363,0.055544,-0.998199,-0.040590,0.208167,-0.977233,-0.265450,0.124454,-0.956053,-0.514359,0.117985,-0.849391,-0.123783,0.474410,-0.871517,-0.123600,0.427290,-0.895596,-0.086947,0.308054,-0.947356,0.025697,-0.059603,-0.997864,-0.993469,-0.086703,0.073763,-0.986450,-0.064302,0.150853,-0.990570,-0.104556,0.088412,-0.986328,-0.086917,0.139775,-0.987365,-0.070437,0.141789,-0.985839,-0.048036,0.160466,-0.993805,-0.104923,0.035920,-0.994201,-0.105075,-0.022095,0.990600,-0.088382,-0.104160,0.998657,-0.031251,0.040712,0.997467,0.068941,-0.016297,0.991363,0.047761,-0.121982,0.964873,0.049532,0.257912,0.981536,0.101413,0.162053,0.977416,0.153386,0.145268,0.984863,0.168798,-0.038759,0.979278,0.168065,-0.112888,-0.294870,0.049379,0.954253,-0.256996,-0.029817,0.965941,0.623035,0.060335,0.779839,0.464339,0.104770,0.879421,-0.191137,-0.143529,0.970977,0.679586,0.021363,0.733268,0.890805,0.107639,0.441389,0.885739,0.098117,0.453658,0.881100,0.106906,0.460646,0.955657,0.130741,0.263741,0.944060,0.124210,0.305399,0.974761,0.165502,0.149632,0.944060,0.141118,0.297983,0.976104,0.185583,0.112888,0.733299,-0.156682,0.661550,0.914487,0.014893,0.404279,-0.114811,-0.389447,0.913846,-0.059084,-0.551195,0.832240,0.725700,-0.243995,0.643239,0.909238,-0.025819,0.415418,0.572008,-0.787194,0.230476,0.915586,-0.214087,0.340342,0.850490,-0.420087,0.316446,0.172185,-0.944762,0.278787,0.950377,-0.159490,0.267006,0.953917,-0.192450,0.230140,0.947630,-0.176458,0.266091,0.783807,-0.460707,0.416333,0.016083,-0.897244,0.441176,0.925382,-0.084902,0.369366,0.740257,-0.334666,0.583056,-0.028871,-0.721976,0.691275,0.976684,0.074374,0.201300,0.971923,0.093753,0.215674,0.985321,0.039033,0.166112,0.980407,0.139103,0.139409,0.965392,0.098239,0.241462,0.980529,0.176061,0.086825,0.975585,0.215888,-0.040132,0.970550,0.238502,-0.033174,0.974944,0.222175,-0.007508,0.969695,0.211554,0.122044,0.945433,0.123203,0.301584,0.957610,0.144292,0.249306,0.974944,0.211890,0.067385,0.966186,0.174200,0.190039,0.849544,-0.526902,0.024354,0.856349,-0.298166,0.421583,0.839290,-0.510422,0.187139,0.746971,-0.610248,-0.263771,0.746574,-0.033418,0.664418,0.794275,-0.213416,0.568773,0.554003,-0.832484,-0.006165,0.432600,-0.814264,-0.387005,0.439955,-0.639637,-0.630299,0.924497,-0.355602,0.137059,0.883999,-0.461531,0.074190,0.836177,-0.498764,-0.228004,0.934874,-0.354656,0.014527,0.705344,-0.523789,-0.477584,0.911008,-0.412275,-0.005890,0.922666,-0.373699,0.094790,0.919980,-0.332621,0.207312,0.861690,-0.288552,0.417341,0.859859,-0.441267,0.256722,0.864254,-0.069063,0.498215,0.757866,0.128086,0.639668,0.615436,0.273629,0.739158,0.793695,-0.187109,0.578814,0.818171,-0.407758,0.405347,0.940611,-0.163732,0.297372,0.944487,-0.256447,0.205298,0.883236,-0.389538,0.260994,0.909177,-0.224067,0.350871,0.842952,-0.407392,0.351329,0.874294,-0.174871,0.452773,0.682150,0.170751,0.710959,0.886746,-0.039613,0.460524,0.866756,0.031190,0.497726,0.765923,0.194037,0.612903,0.817713,0.111759,0.564653,0.803980,0.175573,0.568102,-0.785485,0.089236,0.612384,-0.700369,0.089114,0.708152,-0.152776,0.235115,0.959868,-0.579363,0.183538,0.794092,0.612232,0.234443,0.755089,0.048585,0.238655,0.969878,0.787835,0.166143,0.593005,0.915586,0.160894,0.368450,0.799066,0.089816,0.594440,0.421491,0.204169,0.883541,0.947325,-0.021790,0.319437,0.969329,-0.243446,-0.032899,0.982299,-0.126560,0.137913,0.965026,-0.033662,0.259865,0.926237,-0.132572,0.352794,0.967437,-0.246834,0.055574,0.996734,-0.080538,0.002045,0.529038,0.410779,0.742515,0.371227,0.660909,0.652181,-0.046815,0.751061,0.658528,-0.163030,0.904691,0.393567,-0.280770,0.914670,0.290719,0.184057,0.746178,0.639760,-0.073885,0.148045,0.986206,-0.047365,0.437757,0.897824,0.585467,0.175359,0.791467,0.605335,0.085055,0.791406,0.610675,-0.381878,0.693686,0.802210,-0.149236,0.578051,0.920042,-0.239204,0.310221,0.785638,-0.331767,0.522172,0.916623,-0.025575,0.398877,0.944426,-0.227058,0.237648,0.775933,0.144200,0.614063,0.816370,0.368297,0.444777,0.904477,0.203070,0.374981,0.856288,0.100345,0.506607,0.835383,0.404492,0.372143,0.926328,0.157628,0.342051,0.935972,-0.181921,0.301401,0.951872,-0.063326,0.299814,0.722526,0.355296,0.593005,0.719596,0.563402,0.405835,0.747185,0.479049,0.460646,0.713095,0.211859,0.668264,0.726890,0.588244,0.354350,0.758873,0.532365,0.375011,0.313150,-0.663137,0.679800,0.592700,-0.296945,0.748650,0.704520,-0.210974,0.677572,0.476608,-0.536119,0.696707,0.498367,-0.303385,0.812128,0.553178,-0.204901,0.807428,0.153996,-0.734581,0.660787,0.088870,-0.750542,0.654805,0.920835,0.120792,0.370739,0.937101,0.209906,0.278848,0.914151,0.081820,0.396985,0.816675,-0.016175,0.576830,0.834101,0.085452,0.544939,0.878964,0.201025,0.432356,0.915647,0.221473,0.335398,0.958770,0.234413,0.160527,0.945555,0.149205,0.289193,0.984924,0.162786,0.058046,0.613636,-0.009156,0.789514,-0.044343,-0.175573,0.983459,0.963713,0.070345,0.257393,0.669973,-0.080905,0.737938,0.146855,-0.465865,0.872555,0.998474,0.053682,0.010468,0.711173,0.131230,0.690603,0.740471,0.039644,0.670888,0.600971,0.250862,0.758843,0.577899,-0.118290,0.807459,0.547502,-0.196814,0.813288,0.606372,-0.007019,0.795129,0.411145,-0.264138,0.872433,0.462752,0.023774,0.886135,0.769616,0.431288,0.470748,0.844905,0.282266,0.454329,0.731346,0.482437,0.482040,0.715262,0.443159,0.540330,0.744621,0.346385,0.570544,0.775964,0.040407,0.629444,0.778649,-0.234352,0.582018,0.900143,-0.010163,0.435469,0.767571,-0.380169,0.515976,0.861202,-0.308390,0.403974,0.630848,-0.381512,0.675588,0.683432,-0.477584,0.552049,0.595111,-0.164220,0.786645,0.481094,-0.419294,0.769860,0.602741,-0.444624,0.662557,0.830653,-0.354015,0.429731,0.847285,-0.374126,0.376904,0.782434,-0.411054,0.467727,0.764641,-0.231819,0.601276,0.908017,-0.304941,0.287179,0.846095,-0.418561,0.329936,0.761956,-0.484176,0.430067,0.703543,-0.431959,0.564226,0.972289,-0.024445,0.232459,0.952971,0.100253,0.285897,0.936949,-0.065523,0.343242,0.858791,0.053011,0.509537,0.914731,-0.080172,0.395978,0.862056,-0.406079,0.303110,0.876186,-0.201636,0.437696,0.863491,-0.081942,0.497604,0.827021,-0.370312,0.422926,0.801141,-0.092288,0.591266,0.763482,0.033662,0.644917,0.930204,0.119327,0.347056,0.842311,0.028230,0.538224,0.728019,-0.144932,0.670003,0.698843,-0.136448,0.702109,0.612293,-0.224525,0.758049,0.609973,0.201758,0.766289,0.631153,0.439619,0.639027,0.686422,0.535051,0.492447,0.701254,0.417646,0.577715,0.636250,-0.112461,0.763207,0.132542,-0.692770,0.708853,-0.916379,0.142216,0.374157,-0.944212,0.102390,0.312937,-0.971313,0.096927,0.217048,-0.953154,0.149052,0.263131,-0.986206,-0.016175,0.164586,-0.993835,-0.025758,0.107639,-0.998444,-0.032258,0.045320,-0.989319,0.089999,0.114383,-0.983306,0.159154,0.087832,-0.703879,-0.124577,0.699271,-0.578326,-0.181036,0.795434,-0.599384,-0.077181,0.796716,-0.660909,-0.028474,0.749901,0.228736,-0.355937,0.906064,0.310678,-0.181677,0.932981,0.466048,-0.050264,0.883297,0.242653,0.079714,0.966796,-0.713157,0.051363,0.699088,-0.822993,0.044221,0.566271,-0.867244,-0.015687,0.497604,-0.808008,0.117100,0.577380,-0.926756,0.101657,0.361583,-0.942656,0.062838,0.327738,-0.134800,-0.643727,0.753258,0.119449,-0.552293,0.825007,-0.623157,-0.289285,0.726585,-0.694082,-0.349071,0.629566,-0.771325,-0.208380,0.601337,-0.828272,-0.246651,0.503067,-0.903775,-0.228675,0.361766,-0.921384,-0.163823,0.352428,-0.893643,-0.225715,0.387799,-0.866115,-0.273446,0.418378,-0.926359,-0.120243,0.356822,-0.906674,-0.155705,0.391949,-0.522172,-0.797174,0.302988,-0.311136,-0.906644,0.284860,-0.340709,-0.812342,0.473251,-0.791528,-0.332621,0.512650,-0.313608,-0.690085,0.652211,-0.873653,-0.257851,0.412549,-0.927763,-0.166356,0.333995,-0.945921,-0.133702,0.295450,-0.926298,-0.131077,0.353191,-0.970641,-0.025819,0.239021,-0.907651,-0.078738,0.412244,-0.961913,0.021729,0.272439,-0.957701,0.132847,0.255135,-0.969298,0.109531,0.220099,-0.979705,0.197241,0.035585,-0.972655,0.227973,0.044038,-0.978698,0.097781,0.180364,-0.969390,0.208716,0.129185,-0.971038,0.129734,0.200537,-0.979705,0.070406,0.187536,-0.494766,-0.866268,0.068697,-0.727561,-0.252419,0.637898,-0.774834,-0.235939,0.586444,-0.770440,-0.637349,-0.013306,-0.707694,-0.206885,0.675527,-0.771508,-0.248115,0.585833,-0.748375,-0.262093,0.609241,-0.807733,-0.286874,0.515000,-0.857295,-0.505631,-0.096713,-0.862209,-0.386059,0.327891,-0.881222,-0.450789,-0.142125,-0.793970,-0.378674,0.475570,-0.870937,-0.414106,0.264412,-0.927122,-0.368053,0.070437,-0.909116,-0.366192,-0.198340,-0.582507,0.295083,0.757347,-0.680715,0.100101,0.725669,-0.839442,-0.322275,0.437513,-0.741905,-0.154942,0.652333,-0.871944,-0.061678,0.485641,-0.933653,-0.342448,0.104862,-0.921201,-0.387768,-0.031587,-0.863369,-0.461867,0.203040,-0.802972,-0.374828,0.463332,-0.884030,-0.456130,0.102023,-0.847438,-0.401929,0.346812,-0.931333,-0.362255,-0.036531,-0.942808,-0.331980,-0.029237,-0.922941,-0.361522,0.131962,-0.904477,-0.203711,0.374706,-0.919431,-0.054720,0.389355,-0.847346,0.041566,0.529374,-0.955779,-0.081606,0.282479,-0.524644,0.365795,0.768670,-0.687948,0.292245,0.664296,-0.699911,0.259743,0.665304,0.145756,0.299509,0.942869,-0.583453,0.200507,0.786981,0.890866,0.138524,0.432569,0.703787,0.301614,0.643178,0.078280,0.370525,0.925504,-0.841945,0.132206,0.523087,-0.857265,0.115207,0.501785,-0.982543,-0.185827,0.004639,-0.915189,0.021851,0.402387,-0.153020,0.395795,0.905484,-0.982269,-0.187384,-0.002960,-0.975005,-0.214484,-0.057772,-0.972167,-0.222816,-0.071963,-0.973052,-0.091494,0.211615,-0.998291,-0.037660,0.044374,-0.993774,-0.061739,-0.092441,0.016083,0.951872,0.306009,0.120548,0.822016,0.556536,-0.300272,0.567583,0.766594,-0.296274,0.737144,0.607288,0.080935,0.583850,0.807794,-0.482162,0.339579,0.807550,-0.686300,0.167760,0.707663,-0.037111,0.376720,0.925565,-0.091556,0.199133,0.975677,-0.780755,0.089633,0.618336,-0.938841,-0.289529,0.186346,-0.967071,-0.222785,0.122837,-0.942015,0.000153,0.335551,-0.894803,-0.002289,0.446394,-0.779595,-0.124607,0.613727,-0.948698,-0.244606,0.200232,-0.854427,-0.176977,0.488449,-0.785852,0.202490,0.584307,-0.818262,0.274026,0.505295,-0.925993,-0.093570,0.365703,-0.640767,0.458571,0.615711,-0.669515,0.423750,0.610034,-0.674245,0.241462,0.697897,-0.788568,0.240028,0.566149,-0.627522,0.474013,0.617634,-0.660909,0.380810,0.646626,-0.661458,0.421033,0.620624,-0.677358,0.349895,0.647084,-0.688375,0.174474,0.704001,-0.675253,0.167455,0.718284,-0.693045,0.075808,0.716849,-0.601306,-0.052431,0.797266,-0.308786,-0.543199,0.780755,-0.520676,-0.211768,0.827021,-0.614795,-0.169042,0.770318,-0.205573,-0.768334,0.606098,-0.636219,-0.156560,0.755425,-0.238502,-0.741935,0.626576,-0.798944,-0.004303,0.601367,-0.936918,0.087771,0.338267,-0.931303,0.226997,0.284738,-0.809381,0.090426,0.580248,-0.948607,0.290231,0.125950,-0.843287,0.180975,0.505997,-0.978515,0.171697,-0.114109,-0.965941,0.254433,-0.046632,-0.976104,0.158666,0.148442,-0.915250,0.194983,0.352519,-0.997223,0.072909,0.012970,-0.765984,0.067721,0.639241,-0.703330,0.000793,0.710807,-0.118015,-0.066408,0.990783,-0.307596,-0.354320,0.883053,-0.993011,0.064547,-0.098514,-0.612018,-0.102176,0.784173,-0.678579,0.004089,0.734489,-0.645314,0.126896,0.753288,-0.674795,0.053377,0.736045,-0.547624,0.019044,0.836482,-0.642232,-0.014863,0.766350,-0.472457,-0.067446,0.878750,-0.594836,-0.075411,0.800256,-0.632130,0.396374,0.665761,-0.641072,0.392315,0.659597,-0.606616,0.441816,0.660878,-0.606311,0.354595,0.711753,-0.619190,0.353832,0.700980,-0.575915,0.179205,0.797601,-0.709708,-0.162786,0.685415,-0.681753,0.081912,0.726951,-0.609607,-0.117374,0.783929,-0.588275,-0.012055,0.808557,-0.485305,0.016511,0.874172,-0.494339,-0.075320,0.865963,-0.441755,-0.117801,0.889340,-0.557878,-0.192480,0.807245,-0.488571,-0.271187,0.829279,-0.728996,-0.484664,0.483322,-0.806330,-0.466933,0.362987,-0.790094,-0.405591,0.459548,-0.710746,-0.371593,0.597247,-0.873409,-0.381634,0.302469,-0.794916,-0.427290,0.430677,-0.677511,-0.344188,0.649983,-0.607654,-0.428327,0.668752,-0.939543,-0.096988,0.328318,-0.909177,-0.083804,0.407819,-0.946867,0.004486,0.321512,-0.807245,-0.057741,0.587359,-0.780786,-0.310739,0.542009,-0.740562,-0.520005,0.425550,-0.882870,-0.115757,0.455092,-0.803583,-0.133000,0.580096,-0.740898,-0.191046,0.643849,-0.698172,-0.157811,0.698294,-0.691366,-0.570910,0.442732,-0.944060,0.041963,0.327036,-0.793786,-0.003143,0.608173,-0.633717,-0.306894,0.710044,-0.588214,-0.180914,0.788171,-0.568834,-0.083895,0.818140,-0.637898,0.310282,0.704825,-0.567980,0.178716,0.803369,-0.663228,0.336680,0.668386,-0.694052,0.209052,0.688864,-0.656758,-0.120273,0.744407,-0.318278,-0.628498,0.709677,0.974975,-0.213324,0.062044,0.954558,-0.267739,-0.130711,0.973998,-0.180609,-0.136631,0.999023,-0.037599,-0.022370,0.950774,-0.133641,-0.279550,0.973693,-0.013367,-0.227363,0.986633,0.100314,-0.128208,0.900510,-0.352855,-0.253975,0.865078,-0.491714,-0.098972,0.756005,-0.652242,-0.054781,0.839991,-0.505020,-0.198340,0.846431,-0.517533,0.125095,0.720786,-0.681112,0.128513,0.577654,-0.807306,0.120609,0.605121,-0.796075,-0.005829,0.687613,-0.711295,-0.145543,0.900021,-0.069735,-0.430189,0.890530,-0.242103,-0.385083,0.757195,-0.526994,-0.385815,0.877194,0.224158,-0.424543,0.889248,0.071780,-0.451704,0.928465,-0.240669,-0.282846,0.924253,-0.362011,-0.121067,0.924467,-0.366832,0.103732,0.628742,-0.705344,0.327280,0.494797,-0.828181,0.263131,0.444075,-0.888730,0.113529,0.331736,-0.913938,0.233650,0.303171,-0.946165,0.113193,0.746971,-0.540880,0.386578,0.842341,-0.335673,0.421583,0.901059,-0.110904,0.419202,0.930784,0.137852,0.338481,0.921537,0.356365,0.154057,0.893094,0.438795,-0.099094,0.874691,0.366771,-0.316782,-0.007935,-0.990509,-0.137181,-0.007599,-0.990356,-0.138310,-0.019013,-0.999512,0.023865,-0.007721,-0.999664,0.024140,-0.028504,-0.989715,-0.140141,-0.040468,-0.998901,0.023041,-0.061037,-0.991424,0.115513,-0.036164,-0.992126,0.119755,-0.010620,-0.992431,0.122105,-0.160283,-0.781304,-0.603168,-0.117313,-0.809351,-0.575427,-0.155339,-0.744957,-0.648732,-0.151250,-0.970855,-0.185858,-0.136753,-0.977935,-0.157903,-0.103916,-0.983673,-0.146764,-0.060060,-0.826472,-0.559740,-0.015107,-0.834712,-0.550462,-0.066591,-0.987548,-0.142308,-0.022370,-0.719810,-0.693808,-0.083773,-0.717917,-0.691061,-0.017640,-0.974883,-0.221961,-0.080508,-0.971496,-0.222938,-0.017548,-0.992889,0.117649,0.048158,-0.935484,0.350017,0.027558,-0.953764,0.299234,-0.040620,-0.993774,0.103610,0.001648,-0.965575,0.260018,-0.050386,-0.995117,0.084719,-0.009522,-0.962279,0.271859,-0.040834,-0.950926,0.306650,-0.060732,-0.993103,0.100009,-0.048555,-0.994537,0.092288,-0.029572,-0.982971,-0.181219,-0.028932,-0.980316,-0.195227,-0.011872,-0.741081,-0.671255,-0.001862,-0.759148,-0.650868,0.018525,-0.773339,-0.633686,0.055940,-0.788324,-0.612659,0.032441,-0.985382,-0.167058,-0.012146,-0.984588,-0.174291,0.187109,-0.947874,0.257790,0.169195,-0.978423,0.118320,0.106113,-0.946562,0.304514,0.075472,-0.989471,0.123447,0.018830,-0.992035,0.124363,0.062075,-0.935545,0.347636,0.131870,-0.803980,-0.579821,0.269692,-0.805872,-0.527085,0.265419,-0.954314,-0.137181,0.121830,-0.980377,-0.154912,0.489334,-0.747673,-0.448866,0.462539,-0.877621,-0.125828,0.441176,-0.897122,0.022065,0.283395,-0.958525,0.029450,0.144017,-0.989135,0.029420,0.047823,-0.998474,0.027131,-0.006470,-0.999664,0.023835,-0.034028,-0.999207,0.020386,-0.036592,-0.999298,0.006409,-0.042299,-0.998962,0.015870,-0.067782,-0.997650,-0.008728,-0.097293,-0.995056,0.018708,-0.086215,-0.996002,0.022462,-0.076205,-0.996826,0.022309,-0.063601,-0.997711,0.022675,-0.071169,-0.991516,0.108615,-0.080935,-0.929502,0.359783,-0.026551,-0.928068,0.371410,-0.106693,-0.932524,0.344920,-0.086184,-0.939787,0.330607,-0.003265,-0.838740,-0.544450,0.001984,-0.837855,-0.545824,-0.972777,-0.101566,-0.208197,-0.974364,-0.210273,-0.079623,-0.986633,-0.140355,-0.082430,-0.987487,-0.002411,-0.157628,-0.981231,-0.170507,0.089969,-0.999512,-0.025208,0.016694,-0.993225,0.091617,-0.071169,-0.591968,-0.792627,0.145848,-0.739128,-0.654286,0.159917,-0.779077,-0.626637,-0.017884,-0.619312,-0.784814,0.022492,-0.876003,-0.455763,0.157659,-0.904202,-0.423322,-0.056551,-0.930784,-0.297739,-0.211982,-0.862758,-0.477462,-0.166204,-0.704276,-0.700339,-0.116062,-0.913236,-0.227638,-0.337809,-0.784845,-0.516068,-0.343028,-0.924619,-0.057711,-0.376476,-0.954985,-0.194311,-0.224067,-0.918485,0.074282,-0.388379,-0.909818,0.227149,-0.347270,-0.943846,-0.302194,0.133335,-0.953185,-0.293069,-0.074068,-0.509507,-0.812708,0.282571,-0.345775,-0.903195,0.254189,-0.633686,-0.690298,0.349101,-0.472243,-0.870998,0.135380,-0.324900,-0.936460,0.131962,-0.847987,-0.296335,0.439344,-0.752922,-0.512314,0.413007,-0.930296,0.132481,0.341990,-0.901517,-0.090884,0.423048,-0.902799,0.427656,-0.044954,-0.924436,0.338511,0.175451,-0.898984,0.368297,-0.236946,0.047182,-0.991638,0.119877,0.027619,-0.999390,0.020081,0.003906,-0.999725,0.022645,0.017182,-0.992279,0.122623,0.019105,-0.990020,-0.139500,-0.005707,-0.990448,-0.137700,0.138585,-0.973571,-0.181494,0.161718,-0.752129,-0.638844,0.176672,-0.784265,-0.594684,0.132969,-0.978637,-0.156743,0.136448,-0.810480,-0.569597,0.098483,-0.984283,-0.146397,0.075869,-0.827265,-0.556658,0.058809,-0.988098,-0.142094,0.024567,-0.835414,-0.549028,0.073550,-0.975097,-0.209082,0.070498,-0.729911,-0.679891,0.008911,-0.978210,-0.207312,-0.011567,-0.733329,-0.679739,-0.055025,-0.941313,0.332926,-0.025727,-0.957152,0.288430,-0.073031,-0.919675,0.385784,-0.001740,-0.990814,0.135166,0.020936,-0.992798,0.117893,0.036256,-0.995331,0.089328,0.049654,-0.993103,0.105991,0.043184,-0.943358,0.328867,-0.007447,-0.955687,0.294259,0.034303,-0.994476,0.099155,-0.033387,-0.755181,-0.654653,0.003327,-0.982391,-0.186743,0.001007,-0.984588,-0.174718,-0.052828,-0.772637,-0.632618,-0.062807,-0.984375,-0.164312,-0.111393,-0.795434,-0.595660,-0.077670,-0.784173,-0.615619,-0.018250,-0.985260,-0.170080,-0.192602,-0.940336,0.280374,-0.110080,-0.936857,0.331919,-0.183752,-0.973785,0.134068,-0.086917,-0.986389,0.139348,-0.074465,-0.921720,0.380566,-0.032991,-0.989319,0.141911,-0.294412,-0.947081,-0.127842,-0.302133,-0.808252,-0.505387,-0.176397,-0.807794,-0.562395,-0.150945,-0.976959,-0.150853,-0.522080,-0.743706,-0.417432,-0.493667,-0.863124,-0.106113,-0.474349,-0.879360,0.041139,-0.308725,-0.950224,0.041688,-0.164403,-0.985687,0.036561,-0.065767,-0.997314,0.031892,-0.011139,-0.999512,0.028138,0.015717,-0.999573,0.024201,0.024720,-0.999512,0.018799,0.036744,-0.999268,0.009522,0.065767,-0.997803,-0.005860,0.082522,-0.996490,0.012818,0.078188,-0.996765,0.017884,0.066683,-0.997620,0.017457,0.052431,-0.998444,0.018097,0.060610,-0.991638,0.113742,0.080966,-0.924131,0.373363,0.035310,-0.926023,0.375774,0.087039,-0.929044,0.359508,-0.002472,-0.838221,-0.545274,0.988495,-0.017670,0.150090,0.985961,-0.025788,0.164861,0.987213,-0.000183,0.159246,0.984466,-0.049043,0.168493,0.945311,0.012574,0.325846,0.922849,0.168584,0.346263,0.857723,0.409009,0.311380,0.984863,-0.015717,0.172430,0.679067,-0.076998,0.730003,0.589465,0.029145,0.807245,0.414380,0.183843,0.891324,0.652242,-0.009644,0.757897,0.534867,0.181097,0.825282,0.258278,0.413800,0.872951,0.024506,0.655110,0.755120,0.337992,0.336283,0.878994,0.665670,0.058626,0.743919,0.622181,0.355693,0.697348,0.794153,0.073031,0.603290,0.396039,0.659841,0.638508,-0.866390,-0.167547,0.470382,-0.872951,-0.258644,0.413526,-0.902829,-0.164922,0.397046,-0.941282,-0.210242,0.264107,-0.962462,-0.257027,0.087069,-0.870968,-0.374126,0.318461,-0.849330,-0.070070,0.523148,-0.866604,-0.062288,0.495071,-0.503189,-0.033326,0.863521,-0.574175,-0.198126,0.794366,-0.416333,0.065218,0.906857,0.443220,0.022645,0.896115,0.316294,0.018830,0.948454,0.231513,-0.149419,0.961272,0.896390,0.167486,-0.410352,0.900418,0.064455,-0.430158,0.572924,0.131321,-0.808985,0.546190,0.270272,-0.792840,0.892392,-0.019501,-0.450789,0.610950,0.017762,-0.791436,0.239753,0.048891,-0.969573,0.173376,0.159825,-0.971770,0.101444,0.307077,-0.946226,0.895047,-0.072359,0.439985,0.925413,-0.058473,0.374340,0.993713,0.064974,0.090976,0.981201,0.065340,0.181433,0.943937,-0.018555,0.329569,0.998291,0.044130,0.037660,0.905606,0.247383,-0.344432,0.925047,0.289895,-0.245369,0.989441,-0.017701,0.143712,0.896146,-0.006897,0.443678,0.915128,-0.060945,0.398480,0.992706,-0.069582,0.098300,0.567583,-0.018769,0.823084,0.616749,-0.008820,0.787103,0.886532,-0.074496,0.456587,0.980529,-0.124424,0.151738,0.994110,-0.028565,-0.104404,0.980255,-0.081668,-0.179937,0.876034,-0.087497,-0.474197,0.969756,-0.177190,-0.167730,0.875851,-0.211585,-0.433699,0.836238,0.031892,0.547410,0.779168,-0.061769,0.623737,0.968505,0.016602,0.248390,0.999817,0.013977,-0.011780,0.549577,0.409497,-0.728172,0.556017,0.510269,-0.656056,0.056673,0.485275,-0.872494,0.027467,0.596515,-0.802087,0.938047,0.333842,0.092654,0.940336,0.327372,-0.092349,0.579028,0.622272,-0.526749,0.634480,0.713981,-0.295969,0.013398,0.709250,-0.704794,0.024873,0.849239,-0.527360,0.906613,-0.149297,0.394635,0.878933,-0.136387,0.456984,0.962828,0.051210,0.265114,0.949919,0.069826,0.304575,-0.774621,-0.621021,-0.119358,-0.381481,-0.890530,-0.247719,-0.839961,-0.542619,-0.002319,-0.938719,-0.288095,-0.189123,-0.913297,-0.333476,-0.233741,-0.645436,-0.649953,-0.401166,-0.090121,-0.916044,0.390790,-0.137211,-0.936918,0.321390,-0.794183,-0.603870,-0.067568,-0.806879,-0.590655,-0.005127,-0.102664,-0.977355,0.185003,-0.660360,-0.719718,-0.214209,-0.759911,-0.479446,0.438887,-0.796167,-0.568529,0.207007,-0.952483,-0.293161,-0.082492,0.037049,-0.533860,0.844722,-0.030702,-0.742119,0.669546,0.676015,-0.561632,0.476974,0.620838,-0.629353,0.467391,0.676015,-0.554949,0.484725,0.916379,-0.132939,0.377514,0.870540,-0.210059,0.444960,0.665059,-0.397687,0.632069,0.688955,-0.245674,0.681845,0.735069,-0.197058,0.648701,0.131474,-0.391003,0.910916,-0.679250,-0.365947,0.636128,-0.860408,-0.485092,0.156072,-0.321757,0.142674,-0.935972,-0.452528,0.247841,-0.856594,-0.203284,0.051943,-0.977722,-0.656484,0.021607,-0.753990,-0.730949,0.077792,-0.677938,-0.782403,0.125492,-0.609943,-0.537736,-0.205451,-0.817682,-0.755913,-0.155919,-0.635792,-0.824061,-0.071474,-0.561968,-0.596118,-0.078951,-0.798975,-0.855617,-0.111118,-0.505478,-0.879116,-0.070345,-0.471328,-0.874477,-0.034455,-0.483810,-0.846492,-0.009461,-0.532273,-0.421552,-0.369427,-0.828120,-0.656911,-0.237892,-0.715415,-0.673940,-0.228706,-0.702445,-0.460860,-0.316233,-0.829188,-0.771020,-0.155583,-0.617481,-0.801294,-0.159062,-0.576708,0.675161,0.271096,0.685995,0.518082,0.273202,0.810511,0.794397,0.164861,0.584552,0.748100,0.217017,0.627033,0.628742,0.307260,0.714286,0.551469,0.255226,0.794153,-0.459334,0.735740,-0.497604,-0.484756,0.775414,-0.404553,0.017762,0.937864,-0.346507,-0.741020,0.544939,-0.392254,-0.740165,0.550920,-0.385479,-0.731254,0.570971,-0.373119,-0.494461,0.812525,-0.308664,-0.008545,0.989563,-0.143773,0.492813,-0.870083,0.004608,-0.019196,-0.926420,-0.375927,-0.388409,-0.722190,-0.572283,-0.206915,-0.813685,-0.543199,-0.353038,-0.618946,-0.701590,-0.172796,-0.779107,-0.602557,0.845973,0.005646,0.533158,0.772759,0.157201,0.614887,0.796686,0.112766,0.593738,0.860164,-0.032624,0.508927,0.781121,0.144688,0.607349,0.809412,0.143010,0.569506,0.838252,0.114658,0.533067,0.905972,-0.071474,0.417188,0.871944,-0.233894,0.430067,0.843593,-0.303507,0.442946,0.803858,-0.086795,0.588397,0.848476,-0.091617,0.521195,0.615284,0.335154,0.713462,0.729484,0.255318,0.634541,-0.853389,0.344981,-0.390728,-0.817499,0.368114,-0.442885,-0.827113,0.402600,-0.392071,-0.855342,0.386639,-0.344737,-0.779382,0.418287,-0.466414,-0.794824,0.444716,-0.412824,0.842738,-0.145360,0.518296,0.866359,-0.104190,0.488357,0.775567,0.045259,0.629627,0.727744,-0.161260,0.666585,0.776299,-0.109500,0.620746,0.841792,0.175237,0.510483,0.637196,0.037202,0.769799,0.534989,0.154881,0.830500,0.399396,0.327799,0.856136,0.754936,-0.108371,0.646748,0.684255,-0.016480,0.729026,0.650746,0.084964,0.754479,0.451796,0.297617,0.840999,0.228553,0.497330,0.836879,0.410871,-0.302835,-0.859920,0.768975,-0.385144,-0.510178,0.812677,-0.388989,-0.433790,0.709037,-0.407788,-0.575274,0.869839,-0.493271,0.006012,0.891537,-0.446181,0.077609,0.727500,-0.159429,-0.667287,0.836787,-0.291665,-0.463301,0.763451,-0.352550,-0.541124,0.613849,-0.231483,-0.754692,0.062471,0.935453,0.347819,-0.385968,0.922056,-0.028748,-0.082095,0.971404,0.222633,0.436201,0.730522,0.525376,-0.464339,0.864223,-0.193548,-0.352519,0.933714,-0.062258,-0.381024,0.902188,0.202094,0.077792,0.873165,0.481094,0.664815,0.437056,0.605762,-0.062288,0.666524,0.742851,0.110508,0.551988,0.826472,-0.306406,0.739311,0.599567,-0.243080,0.721122,0.648701,-0.294626,0.919614,0.259774,-0.608509,0.791253,-0.059725,-0.475845,0.846614,0.238227,-0.677938,0.734428,0.031495,-0.740928,0.670766,-0.032655,-0.651051,0.747917,-0.129154,0.903195,0.425459,-0.056429,0.909452,0.411817,0.056948,0.734703,0.549089,-0.398328,0.732536,0.481796,-0.480850,0.932707,0.301798,0.197333,0.924711,0.372417,-0.078555,0.758415,0.414197,-0.503189,0.391400,0.539720,-0.745293,0.491134,0.420087,-0.763085,0.325999,-0.810541,0.486526,0.452101,-0.712790,0.536180,0.617145,-0.635884,0.463424,0.572802,-0.695334,0.434034,0.563341,-0.625111,0.540208,0.669027,-0.597919,0.441420,0.849940,-0.488083,0.198218,0.774773,-0.513535,0.368725,0.766808,-0.517472,0.379711,0.677908,-0.551347,0.486221,0.684500,-0.573779,0.449660,0.854549,-0.487686,0.178533,0.916837,-0.245369,-0.314890,0.907285,-0.283364,-0.310678,0.915525,-0.401288,0.027223,0.888333,-0.391919,0.239174,0.934721,-0.232276,-0.268929,0.974303,-0.225196,-0.000916,0.960295,-0.197028,0.197333,0.869930,-0.372814,0.322794,0.756951,-0.214545,-0.617206,0.883541,-0.365001,-0.293374,0.710990,-0.207312,-0.671926,0.811762,-0.243568,-0.530717,0.771783,0.011841,-0.635731,0.921140,0.064882,-0.383770,0.293954,0.316507,-0.901883,0.515549,0.393963,-0.760888,0.992706,0.081729,-0.088290,0.601703,-0.059053,-0.796503,0.516190,-0.071078,-0.853481,0.079318,0.163091,-0.983398,0.156987,0.220466,-0.962645,0.414411,0.200629,-0.887692,0.512375,0.078280,-0.855159,0.959014,-0.106815,-0.262337,0.924009,-0.016694,-0.381970,0.611469,-0.091067,-0.785974,0.964843,-0.229469,-0.128117,0.899991,-0.206702,0.383709,0.954314,-0.174932,0.242195,0.977325,-0.172033,0.123356,0.726249,-0.215644,-0.652699,0.961333,-0.270211,0.052797,0.815363,-0.313150,-0.486892,0.937040,-0.273446,0.217109,0.826868,-0.182104,0.532060,-0.627186,0.778344,0.028047,-0.469802,0.798791,0.375744,-0.202368,0.815149,0.542711,-0.352092,0.909513,0.220801,0.140080,0.708640,0.691488,0.074160,0.895444,0.438917,0.438337,0.494278,0.750664,0.442457,0.687490,0.575793,0.666341,0.213507,0.714408,0.694113,0.359661,0.623524,-0.703909,0.662526,-0.255989,-0.455977,0.883023,-0.110965,0.012665,0.991882,0.126286,0.814600,0.001831,0.579974,0.852077,0.063967,0.519425,0.746757,0.460982,0.479354,0.827052,-0.350169,0.439711,0.826228,-0.299173,0.477279,0.924680,0.072268,0.373730,0.860042,0.423200,0.284951,0.954039,0.072634,0.290719,0.927244,0.331706,0.173681,0.544359,0.832911,0.099551,0.641682,0.761223,-0.093478,0.458113,0.820826,0.341105,0.882717,-0.460067,0.095492,0.853969,-0.405286,0.326273,0.813715,-0.094974,0.573412,0.845973,-0.189001,0.498581,0.470992,-0.024384,-0.881771,0.002197,0.166326,-0.986053,0.404492,-0.018586,-0.914335,-0.098941,0.123356,-0.987396,0.379009,-0.087436,-0.921232,0.092990,-0.074892,-0.992828,0.290170,-0.150365,-0.945067,0.450392,-0.390576,-0.802850,0.874294,-0.430036,-0.224982,-0.119541,0.006684,-0.992798,-0.098209,-0.153722,-0.983215,-0.039247,-0.439985,-0.897122,0.605701,-0.633473,-0.481429,-0.243599,0.087771,-0.965880,-0.197302,-0.053896,-0.978851,-0.090762,-0.227363,-0.969543,0.091678,-0.987335,-0.129276,-0.372997,-0.790429,-0.485824,0.260781,-0.892972,-0.366802,-0.185858,-0.729698,-0.657979,0.617725,-0.729881,0.292642,0.675527,-0.730125,0.102725,-0.351573,-0.484268,-0.801141,-0.144566,-0.646901,-0.748711,-0.163396,-0.440016,-0.882962,0.064119,-0.537461,-0.840815,-0.231513,-0.397687,-0.887814,-0.099277,-0.317331,-0.943083,0.127049,-0.394147,-0.910215,0.427015,-0.483261,-0.764244,-0.221717,-0.571337,-0.790155,0.205512,-0.754875,-0.622791,0.692801,-0.709616,-0.128239,0.895596,-0.253182,0.365764,0.116276,-0.013611,-0.993103,-0.025880,0.119816,-0.992431,-0.090243,0.223579,-0.970489,-0.117527,0.291940,-0.949156,0.945250,-0.309885,-0.102206,0.804498,0.015076,-0.593738,0.855190,-0.005585,-0.518235,0.969695,-0.243141,-0.022919,0.310160,0.302133,-0.901364,0.339976,0.259560,-0.903897,0.936827,-0.334269,0.102817,0.862148,0.134770,-0.488357,0.800775,0.061190,-0.595782,0.940092,-0.339091,-0.035035,0.336528,0.348247,-0.874874,-0.102664,0.367931,-0.924131,-0.046510,0.427229,-0.902921,0.106571,0.481674,-0.869808,0.962645,-0.172704,0.208472,0.982574,0.185034,0.015931,0.945921,0.203192,-0.252815,0.938475,-0.280831,0.200842,0.601611,0.447249,0.661824,0.769677,0.057802,0.635792,0.831751,0.054598,0.552416,0.398785,0.459090,0.793817,0.475051,0.162877,0.864711,0.512253,-0.053865,0.857112,0.775567,-0.067904,0.627583,0.875698,-0.145787,0.460280,-0.452284,0.732841,0.508286,-0.090823,0.691763,0.716361,0.037965,0.818476,0.573229,-0.403302,0.844356,0.352641,0.802576,0.104099,0.587359,0.834346,0.042909,0.549516,0.849422,-0.336833,0.406171,0.874264,-0.250343,0.415876,0.845912,0.142674,0.513871,0.879269,-0.050569,0.473586,-0.247719,0.086001,0.964995,0.036958,0.110324,0.993194,0.341105,0.185186,0.921567,0.591662,0.096286,0.800378,-0.445692,0.859157,0.251289,-0.411969,0.769127,0.488510,-0.452284,0.884457,0.114536,-0.450209,0.029908,0.892392,-0.515885,0.410016,0.752129,-0.435926,0.460341,0.773309,-0.416059,0.096896,0.904141,0.514237,-0.761711,0.394116,0.155278,-0.906064,0.393536,0.783441,-0.504135,0.363323,0.787652,-0.436323,0.434950,0.399030,-0.805902,0.437330,-0.057802,-0.940184,0.335704,-0.324351,-0.595691,0.734764,0.130650,-0.451247,0.882748,0.082919,-0.253700,0.963683,-0.346202,-0.325846,0.879727,0.638661,-0.137059,0.757164,0.562975,-0.101016,0.820246,-0.021485,-0.022980,0.999481,0.896878,-0.270638,0.349773,0.936155,-0.093844,0.338786,0.913816,0.037507,0.404370,0.917936,-0.092898,0.385662,0.971374,0.100681,0.215003,0.924711,0.148656,0.350414,0.914579,0.229865,0.332682,0.902158,0.133427,0.410169,0.928587,0.266884,0.257851,0.911740,0.156407,0.379742,0.893399,0.045259,0.446944,0.735496,-0.282174,0.615925,0.852809,0.072207,0.517167,0.237739,-0.699820,0.673574,-0.266518,-0.824152,0.499649,0.490005,-0.565661,0.663259,0.676321,-0.468062,0.568712,0.201880,-0.803827,0.559496,0.371532,-0.698386,0.611682,0.007843,-0.883511,0.468276,-0.192053,-0.901944,0.386761,-0.314341,-0.818659,0.480544,-0.324503,-0.620136,0.714194,-0.353221,-0.290597,0.889248,-0.130528,0.342296,0.930448,0.809412,-0.011353,0.587085,0.927946,0.030183,0.371471,0.972869,0.095126,0.210852,0.907956,-0.264260,0.325144,0.714347,-0.513047,0.475845,0.768181,-0.327555,0.550066,0.611957,-0.593371,0.522843,0.518021,-0.534165,0.668020,-0.116794,-0.190924,0.974609,0.041047,-0.246956,0.968139,0.329325,0.027467,0.943785,0.298868,0.067904,0.951842,0.219245,-0.284188,0.933348,0.422926,-0.102756,0.900296,0.537797,0.035768,0.842280,0.560717,0.195074,0.804682,0.683645,0.287942,0.670583,0.687674,0.276711,0.671194,0.748955,0.414075,0.517258,0.599780,0.009735,0.800073,0.680013,-0.049257,0.731498,0.774255,0.298654,0.557939,0.779260,0.428510,0.457228,0.476699,-0.210700,0.853420,0.195502,-0.401074,0.894925,0.199896,-0.512162,0.835292,0.508560,-0.301248,0.806574,0.559496,-0.432325,0.707114,0.745415,-0.163060,0.646290,0.239570,-0.663076,0.709128,0.303903,-0.774224,0.555162,0.546739,-0.635914,0.544633,0.762169,-0.368877,0.531938,0.823359,0.250252,0.509323,0.783135,0.366985,0.501999,0.885769,0.056856,0.460585,0.614368,-0.010132,0.788934,0.719718,0.017396,0.694021,0.534837,0.215125,0.817072,0.740684,0.183111,0.646382,0.920011,0.230354,0.316935,0.857387,0.298135,0.419477,0.785821,0.305521,0.537675,0.716971,0.268899,0.643086,0.979644,0.088778,0.179998,0.893063,0.188818,0.408307,0.937346,0.051210,0.344523,0.848964,0.109134,0.517014,0.731864,0.134953,0.667898,0.715232,0.192511,0.671834,0.448866,0.047823,0.892300,0.297983,0.068392,0.952086,0.233192,-0.273751,0.933073,-0.257698,-0.134831,0.956755,0.260720,0.851497,0.454909,-0.187231,0.891201,0.413099,0.183813,0.804254,0.565111,0.518357,0.596545,0.612690,0.485641,0.653462,0.580615,0.640278,0.420423,0.642842,0.678976,0.421339,0.601184,0.715140,0.255409,0.650624,0.764672,0.190161,0.615680,0.739586,0.020386,0.672719,0.809595,-0.030122,0.586169,0.715934,-0.213233,0.664785,0.771569,-0.067080,0.632557,0.815088,-0.204993,0.541826,0.814417,0.007111,0.580218,0.864254,-0.147649,0.480850,0.911496,-0.158605,0.379437,0.946806,-0.172094,0.271859,0.968108,0.149113,0.201209,0.902799,0.174169,0.393109,0.910642,0.042604,0.410932,0.978759,-0.014191,0.204413,0.876125,0.178655,0.447707,0.868984,0.097507,0.485092,0.830927,-0.043733,0.554613,0.872158,-0.087741,0.481246,0.960814,-0.101535,0.257912,0.951933,0.085910,0.293954,0.903348,0.086642,0.420057,0.887570,0.139622,0.438978,0.899258,0.177129,0.399915,0.957915,0.020783,0.286203,0.950224,-0.139042,0.278726,0.970000,-0.021851,0.242073,0.988708,0.001099,0.149754,0.950896,-0.219550,0.218024,0.859767,-0.274667,0.430464,0.902493,-0.145024,0.405499,0.934629,-0.046358,0.352489,0.796960,-0.601520,-0.054598,0.434950,-0.754601,-0.491256,0.293466,-0.885250,0.360759,0.457808,-0.763573,0.455306,0.217170,-0.722526,-0.656301,0.103336,-0.977386,0.184332,0.121372,-0.817072,0.563585,0.238960,-0.710715,0.661611,0.670156,-0.631886,0.389294,0.782464,-0.572588,0.244606,0.854762,-0.423872,0.299417,0.859798,-0.443617,0.252815,0.864223,-0.274575,0.421522,0.645192,0.023957,-0.763634,0.386608,-0.054079,-0.920652,0.406690,-0.188757,-0.893826,0.727439,-0.109012,-0.677419,0.151738,-0.186316,-0.970672,0.279641,-0.200171,-0.938994,0.969115,0.036866,-0.243751,0.944395,0.170751,-0.280953,0.915220,0.053316,-0.399365,0.968657,-0.169591,-0.181371,0.948210,0.097293,-0.302255,0.836695,0.073519,-0.542680,0.991668,0.118320,-0.050691,0.977081,0.197638,-0.079012,0.963317,0.190588,0.188757,0.994537,0.013184,-0.103458,0.964507,-0.263344,0.018983,0.911374,0.183447,0.368358,0.995972,-0.060854,-0.065462,0.939390,-0.093936,-0.329661,0.994201,-0.091678,-0.055818,0.928098,-0.085635,-0.362285,0.655995,-0.137730,-0.742058,0.699210,-0.329661,-0.634358,0.932676,0.058962,-0.355815,0.884884,0.154363,-0.439436,0.603504,-0.479476,-0.637043,0.930174,-0.002594,-0.367016,0.751976,0.646535,-0.128361,0.825007,0.556719,-0.096927,0.872372,0.488418,-0.019288,0.539567,-0.112980,-0.834284,0.319803,-0.115360,-0.940397,0.304727,-0.113742,-0.945616,0.567156,-0.111484,-0.816004,0.187994,-0.098788,-0.977172,0.109806,-0.117222,-0.986999,0.794733,-0.111881,-0.596515,0.762444,-0.097446,-0.639637,0.710532,-0.162114,-0.684713,0.506058,-0.110324,-0.855373,0.899106,-0.188757,-0.394879,0.774987,-0.463820,-0.429182,0.529099,-0.474654,-0.703330,0.312052,-0.394848,-0.864101,0.155766,-0.274545,-0.948851,0.325907,-0.074740,-0.942412,0.103610,-0.187475,-0.976775,0.205634,-0.073366,-0.975860,0.232063,-0.471877,-0.850551,0.256844,-0.298563,-0.919156,0.239753,-0.587390,-0.772942,-0.529801,0.838893,0.124516,-0.668355,0.743522,0.020295,-0.134709,0.971374,0.195563,-0.435652,0.894986,0.095798,0.080813,0.993286,0.082583,0.363170,0.917386,0.162694,0.609272,0.722739,0.326212,-0.159703,0.842250,0.514817,-0.232215,0.832240,0.503372,-0.591296,0.787225,0.174841,-0.488235,0.852626,0.186041,-0.334666,0.829859,0.446425,-0.615650,0.771233,0.161596,0.285562,0.565844,0.773431,0.604419,0.478988,0.636555,0.255623,0.889584,0.378491,0.876431,0.304422,-0.373028,0.971129,0.197638,0.133549,-0.460280,0.883541,0.086306,-0.081759,0.867306,0.490982,0.168401,0.891354,0.420789,-0.240333,0.970183,-0.031190,0.568407,0.357128,0.741172,0.390881,0.522507,0.757714,0.493271,0.623371,0.606677,0.275033,0.760521,0.588122,-0.090060,0.968932,0.230201,-0.283273,0.958342,-0.036256,0.182165,0.677602,0.712485,-0.064333,0.993927,0.089145,0.660726,0.684439,-0.308115,0.825617,0.014740,0.564013,0.917325,-0.022980,0.397443,0.890835,-0.111393,0.440382,0.856990,-0.119144,0.501328,0.998383,-0.050325,0.025758,0.980804,-0.180242,-0.074007,0.860134,-0.153600,0.486373,0.844966,-0.162236,0.509598,0.897244,-0.164983,0.409528,0.827754,-0.191717,0.527268,0.801813,-0.165532,0.574175,0.877926,-0.111484,0.465590,0.913785,-0.150884,0.377087,0.940580,-0.336344,0.046205,0.901181,-0.417676,0.115574,0.633259,-0.623066,-0.459059,0.906034,-0.226875,0.357189,0.860408,-0.211097,0.463759,0.876858,-0.462447,0.131108,0.568834,-0.633045,-0.524979,0.677053,-0.330088,-0.657735,0.935606,-0.352214,-0.023377,0.758965,-0.120670,-0.639790,0.425062,-0.555803,-0.714377,0.338267,-0.626911,-0.701804,0.926878,-0.181890,0.328227,0.982910,-0.184027,0.001404,0.842921,-0.181036,0.506638,0.940092,0.005768,0.340831,0.932096,-0.048433,0.358898,0.857540,-0.141758,0.494461,0.896725,-0.148778,0.416761,0.896512,-0.075686,0.436445,0.883145,-0.112522,0.455336,0.924741,-0.041322,0.378307,0.948729,-0.083651,0.304727,0.892483,-0.186254,0.410779,0.861049,-0.186712,0.472945,0.903409,-0.153142,0.400433,0.955901,-0.131932,0.262276,0.970702,-0.226753,-0.079318,0.859767,-0.388348,0.331584,0.942686,-0.253914,0.216346,0.976928,-0.213355,-0.005676,0.973388,-0.173254,0.149785,0.984588,-0.159673,0.071322,0.171026,-0.230537,-0.957884,0.142491,-0.475509,-0.868068,0.042146,-0.507370,-0.860683,0.052065,-0.281167,-0.958220,0.102573,-0.582385,-0.806391,0.052400,-0.627949,-0.776482,-0.004547,-0.676260,-0.736595,0.151463,-0.579211,-0.800958,0.457595,-0.406995,-0.790521,0.192419,-0.832881,-0.518876,0.152348,-0.869564,-0.469710,0.070284,-0.787561,-0.612171,0.062410,-0.756005,-0.651570,0.153478,-0.889004,-0.431349,0.126041,-0.843959,-0.521378,0.372692,-0.788415,-0.489334,0.179540,-0.729270,-0.660237,0.110385,-0.704947,-0.700583,0.186041,-0.627369,-0.756157,0.464797,-0.698416,-0.544176,0.333995,-0.786279,-0.519761,0.280709,-0.489914,-0.825312,0.279183,-0.548845,-0.787896,0.288522,-0.257088,-0.922300,-0.195868,-0.292215,-0.936064,-0.536668,-0.403027,-0.741295,0.151311,-0.715384,-0.682119,-0.324534,-0.461257,-0.825770,-0.701529,-0.225684,-0.675924,-0.736290,-0.177740,-0.652852,-0.353984,-0.694510,-0.626331,0.142155,-0.879452,-0.454237,0.218513,-0.805383,-0.550951,-0.397290,-0.572619,-0.717093,-0.266121,-0.733116,-0.625843,0.130711,-0.866634,-0.481491,0.207526,-0.960418,-0.185736,-0.040223,-0.941923,-0.333323,0.506607,-0.837001,-0.206671,0.524949,-0.851039,-0.009735,0.553758,-0.829646,0.070650,0.405652,-0.913999,0.006714,0.230659,-0.963378,-0.136540,-0.569842,-0.521622,-0.634907,-0.285714,-0.819086,-0.497391,-0.020142,-0.931181,-0.363903,-0.633045,-0.421918,-0.649007,-0.496994,-0.570360,-0.653920,0.446455,-0.849635,-0.280587,0.627308,-0.754112,-0.194281,0.580340,-0.696921,-0.421277,0.500870,-0.855525,-0.130955,0.624134,-0.781243,-0.006928,0.611347,-0.791223,-0.013703,0.604511,-0.760582,-0.236641,0.653951,-0.643971,-0.397015,0.800928,-0.592883,-0.083316,0.842738,-0.487381,-0.228492,0.732871,-0.680319,-0.006287,0.350780,-0.926145,-0.138401,0.535264,-0.843349,0.046999,0.631672,-0.767510,0.108951,0.702017,-0.707022,0.085147,0.671529,-0.725791,-0.149144,0.641438,-0.759026,-0.111484,0.680013,-0.732292,0.035859,0.250313,-0.730949,-0.634846,0.184332,-0.736259,-0.651082,-0.317881,-0.491379,-0.810846,-0.366131,-0.383526,-0.847804,-0.573321,-0.313089,-0.757134,-0.689291,-0.252449,-0.679067,-0.682607,-0.184790,-0.706992,-0.582385,-0.206397,-0.786248,-0.566118,-0.399701,-0.720908,-0.686911,-0.274148,-0.672994,-0.682791,-0.240791,-0.689749,-0.480270,-0.392193,-0.784539,-0.217505,-0.640706,-0.736290,-0.564043,-0.382611,-0.731742,-0.390545,-0.543718,-0.742821,0.079470,-0.759148,-0.646016,-0.675283,-0.266243,-0.687796,-0.624195,-0.348766,-0.699057,-0.226783,-0.628254,-0.744194,0.296731,-0.771783,-0.562365,-0.678487,-0.299753,-0.670644,-0.677938,-0.289407,-0.675710,-0.070376,-0.578112,-0.812891,0.442488,-0.651204,-0.616535,-0.029237,-0.506363,-0.861812,0.445631,-0.559893,-0.698477,-0.103702,-0.407849,-0.907102,0.361492,-0.448500,-0.817408,-0.169866,-0.240699,-0.955596,0.287332,-0.250801,-0.924406,-0.173803,-0.073611,-0.982025,0.265267,-0.067995,-0.961760,0.632954,-0.077700,-0.770257,0.667714,-0.236579,-0.705771,0.717429,-0.408856,-0.563982,0.886074,-0.342723,-0.312021,0.908139,-0.396344,-0.134770,0.769463,-0.495895,-0.402417,0.880734,-0.463088,0.099063,0.909085,-0.222480,0.352153,0.908109,-0.282998,0.308573,0.832484,-0.553972,0.007599,0.910703,-0.369945,0.183660,0.728751,-0.665426,-0.161473,0.967193,-0.252113,-0.030457,0.944456,-0.128300,0.302469,0.888272,-0.055879,0.455824,0.955107,-0.245399,0.165929,0.815943,-0.012329,0.577960,0.733757,0.121952,0.668325,0.728202,0.195105,0.656972,0.853267,0.012452,0.521287,0.932829,-0.201178,0.298837,0.917417,-0.397168,0.024049,0.785821,-0.553178,-0.276406,0.706351,-0.674978,-0.213111,0.561174,-0.753441,-0.342540,0.314982,-0.792840,-0.521683,0.072726,-0.918882,0.387707,0.406049,-0.827326,0.388073,-0.136052,-0.974456,0.178472,0.310648,-0.919828,0.239570,0.611194,-0.727317,0.312113,0.701834,-0.568804,0.428755,-0.600787,-0.206519,-0.772240,-0.512803,-0.374859,-0.772301,-0.645894,-0.195593,-0.737907,-0.532884,-0.460494,-0.709891,-0.598468,-0.445051,-0.666097,-0.639393,-0.546373,-0.540941,-0.441145,-0.646870,0.622028,-0.358104,-0.427473,0.830042,-0.587329,-0.368786,0.720420,-0.684225,-0.595019,0.421613,-0.222510,-0.649373,0.727165,-0.378185,-0.907926,0.180609,-0.136143,-0.816218,0.561449,-0.386151,-0.841670,0.377422,-0.160680,-0.635823,0.754875,-0.121189,-0.466048,0.876400,0.865291,-0.395703,0.307627,0.918729,-0.187353,0.347575,0.874081,0.102542,0.474807,0.914304,0.003388,0.404950,0.894436,-0.249794,0.370891,0.748680,-0.609638,0.260292,0.819239,-0.557543,0.134007,0.629048,-0.765496,0.135105,0.240028,-0.961516,-0.133518,0.497757,-0.846614,-0.188238,0.417554,-0.899564,0.127903,0.026673,-0.999420,-0.019837,-0.379345,-0.854976,-0.353618,-0.514969,-0.845515,-0.140934,-0.201605,-0.858516,-0.471450,0.012146,-0.850612,-0.525620,-0.445998,-0.540086,-0.713675,-0.658071,-0.271035,-0.702475,-0.708823,-0.217322,-0.671041,-0.704031,-0.261940,-0.660085,0.226905,-0.936155,-0.268441,0.160680,-0.930692,-0.328501,0.192236,-0.914274,-0.356487,0.467727,-0.636494,-0.613239,0.660939,-0.527940,-0.533280,0.839534,-0.347880,-0.417249,0.837092,-0.411389,-0.360546,0.706687,0.581042,-0.403638,0.360851,0.680319,-0.637898,0.887143,0.378002,-0.264595,0.982910,0.176183,0.052828,0.010590,0.594409,-0.804071,0.504440,0.456191,-0.733055,0.792199,0.126652,-0.596942,0.988250,0.105380,-0.110630,0.995422,-0.023682,0.092257,0.143559,0.143071,-0.979217,0.176244,-0.004517,-0.984313,0.177892,-0.026948,-0.983673,0.262673,0.184088,-0.947142,0.560503,-0.140782,-0.816065,0.896359,-0.237129,-0.374554,0.962981,-0.098453,-0.250893,0.994385,-0.032716,-0.100528,0.997620,-0.068392,0.007630,-0.572161,0.113346,-0.812250,0.044954,0.323405,-0.945189,-0.137181,0.458083,-0.878231,-0.537614,0.259529,-0.802240,0.125462,0.349681,-0.928404,-0.034211,0.453902,-0.890378,-0.345988,0.521256,-0.780084,-0.596606,0.342479,-0.725761,-0.892453,-0.090915,-0.441816,-0.893979,-0.082522,-0.440382,-0.550920,-0.004303,-0.834529,-0.591357,0.039918,-0.805383,-0.875668,-0.054140,-0.479812,-0.868648,-0.111148,-0.482772,-0.473891,-0.095859,-0.875332,0.072359,0.106571,-0.991638,0.163976,-0.036042,-0.985778,0.111209,0.230262,-0.966735,0.066195,0.194464,-0.978668,0.095187,0.322672,-0.941679,0.838099,0.435652,-0.328257,-0.043611,0.686514,-0.725791,-0.182928,0.649251,-0.738212,0.895962,0.342204,-0.283059,0.245827,0.669454,-0.700949,-0.615467,0.483718,-0.622211,-0.699362,0.420454,-0.577990,-0.714957,0.367107,-0.594989,-0.847133,0.037965,-0.529984,-0.874203,0.008362,-0.485458,-0.876492,0.029695,-0.480422,-0.849330,0.072115,-0.522904,-0.833735,0.049318,-0.549913,-0.805506,0.126713,-0.578845,-0.772088,0.305673,-0.557115,-0.869045,0.205817,-0.449843,-0.873806,0.310800,-0.373882,-0.758019,0.443342,-0.478347,-0.880398,0.195196,-0.432142,-0.876675,0.285501,-0.387158,-0.477981,0.496048,-0.724876,-0.458724,0.618366,-0.638050,-0.497116,0.393811,-0.773125,-0.787713,0.212683,-0.578112,-0.856960,0.130039,-0.498672,-0.876797,0.098239,-0.470717,-0.844661,0.233741,-0.481552,-0.836024,0.307993,-0.454054,-0.810755,0.361034,-0.460707,-0.826502,0.168523,-0.537095,-0.686911,0.343730,-0.640278,-0.336802,0.584399,-0.738243,0.979125,-0.139653,0.147649,0.998657,0.048494,-0.016907,0.997192,0.026185,0.069918,0.977386,-0.127628,0.168554,0.989074,-0.090091,0.116581,0.975036,-0.142399,0.170232,0.991302,-0.017273,0.130284,0.976409,-0.137852,0.166082,0.865688,-0.041169,0.498856,0.908383,-0.030213,0.417005,0.956420,-0.052644,0.287118,0.776177,-0.150365,0.612293,0.820368,-0.086917,0.565172,0.832820,-0.184454,0.521897,0.774407,-0.139439,0.617084,0.704245,-0.076113,0.705832,0.968871,0.219214,-0.114963,0.611560,0.553117,-0.565691,0.998810,-0.048280,-0.000214,0.987945,-0.112705,0.105960,0.011353,0.631703,-0.775109,0.946257,0.214698,-0.241829,0.970977,-0.194250,0.139317,0.982665,-0.152409,0.105319,-0.385052,0.563005,-0.731254,-0.774529,0.383404,-0.503037,-0.699545,0.446913,-0.557543,0.706076,0.473861,-0.526170,-0.720634,0.562120,-0.405774,-0.760643,0.560167,-0.327982,-0.348704,0.932737,-0.091403,-0.688833,0.722648,-0.056948,-0.436781,0.670797,-0.599322,0.282601,0.870815,-0.402173,0.950652,0.283944,0.124943,0.988708,0.069552,0.132664,0.978881,0.108219,0.173345,0.993713,-0.047639,0.101077,0.980651,-0.119785,0.154729,0.989196,-0.108615,0.098239,0.980590,-0.091769,0.173223,0.988891,-0.089053,0.118961,0.981658,-0.070406,0.177038,0.989471,-0.052248,0.134922,-0.332011,-0.725944,-0.602283,0.265725,-0.946654,-0.182257,-0.701102,-0.662648,-0.263283,-0.626789,-0.768181,0.130222,0.706381,-0.700034,0.104587,0.751061,-0.593493,0.289163,0.966887,-0.233070,-0.103854,0.729606,-0.682699,0.039552,0.746391,-0.664663,0.033143,0.693136,-0.720756,0.001404,0.982086,-0.026185,0.186529,0.986785,-0.043245,0.156102,0.993011,-0.086581,0.080020,0.978301,-0.152074,0.140690,-0.511338,0.791375,0.334971,-0.147649,0.879116,0.453108,0.408887,0.886258,0.217536,0.253914,0.820460,0.512192,0.706992,0.706931,-0.019898,-0.971252,0.181066,0.154363,-0.979186,0.035554,0.199774,-0.989746,-0.038972,0.137272,-0.990234,-0.057802,0.126621,-0.980468,-0.016053,0.195990,-0.988464,-0.033967,0.147496,-0.992920,-0.051729,0.106693,-0.990783,-0.059023,0.121799,-0.438887,0.557024,0.705008,-0.435743,0.421003,0.795495,-0.790613,0.123386,0.599719,-0.893460,0.125919,0.431043,-0.530015,0.255287,0.808618,-0.712760,0.050752,0.699515,-0.839869,-0.088687,0.535447,-0.915738,-0.054170,0.398022,-0.952696,-0.031922,0.302133,-0.868099,0.305094,0.391491,-0.950896,0.092624,0.295206,-0.969604,-0.017640,0.243934,0.961211,-0.273324,-0.036134,0.956145,-0.286843,0.059145,0.884884,-0.392163,0.251320,0.795160,-0.526994,0.299936,0.957183,-0.221137,0.186773,0.922056,-0.251411,0.294259,0.967467,-0.076632,0.241035,0.944487,-0.056948,0.323496,-0.132664,0.070833,0.988617,0.627430,0.138615,0.766198,0.682821,-0.096438,0.724143,-0.103030,-0.110416,0.988525,0.707846,-0.346446,0.615528,-0.096286,-0.337046,0.936521,-0.006714,-0.053743,-0.998505,-0.592975,-0.085025,-0.800684,-0.580584,0.112583,-0.806330,0.049348,0.142644,-0.988525,-0.876522,-0.099826,-0.470870,-0.883877,0.057619,-0.464095,-0.901608,0.177160,-0.394543,-0.572466,0.285897,-0.768426,0.094089,0.308634,-0.946501,-0.994964,0.086703,-0.049715,-0.989074,0.124516,0.078829,-0.923643,0.277627,-0.264077,-0.952635,-0.006928,0.304025,-0.929044,-0.028230,0.368816,-0.901608,-0.050539,0.429548,-0.972381,0.132817,0.191809,-0.936430,0.329356,-0.120701,-0.232185,0.235450,0.943724,-0.181310,0.186560,0.965545,-0.715201,0.029908,0.698233,-0.693381,0.082034,0.715873,-0.718345,-0.013276,0.695517,-0.964202,-0.073946,0.254555,-0.949095,-0.096866,0.299631,-0.934690,-0.063814,0.349590,-0.977355,-0.186743,-0.099399,-0.979919,-0.190832,-0.057649,-0.984375,-0.099216,-0.145299,-0.866695,-0.237434,-0.438643,-0.874783,-0.276559,-0.397778,-0.708792,-0.068667,0.702017,-0.966460,-0.022187,0.255806,-0.707389,-0.156346,0.689291,-0.989715,0.018159,-0.141789,-0.585192,0.453658,-0.672079,0.099429,0.472945,-0.875423,-0.582995,0.594562,-0.553667,0.092502,0.626850,-0.773583,-0.552385,0.728111,-0.405774,0.087405,0.775842,-0.624805,-0.929380,0.368938,0.009430,-0.910154,0.391217,0.136113,-0.542955,0.808130,-0.228126,0.077181,0.880581,-0.467513,-0.956359,0.108921,0.271035,-0.882870,-0.097690,0.459304,-0.866421,-0.169225,0.469710,-0.939238,0.083590,0.332896,0.915616,-0.310160,-0.255684,0.750359,-0.660115,-0.034120,0.685537,-0.706809,-0.174413,0.838679,-0.473617,-0.268868,0.484207,-0.855800,-0.181982,0.690268,-0.619678,-0.373486,0.541704,-0.817835,-0.194067,0.681265,-0.730827,-0.041597,-0.199744,-0.948180,0.247017,-0.058748,-0.916776,0.395032,0.013733,-0.867000,0.498062,0.757347,-0.652638,0.021332,0.003204,-0.770318,0.637623,0.778771,-0.609058,0.150151,-0.037507,-0.665883,0.745079,0.764244,-0.567858,0.305673,0.949370,-0.268532,-0.162877,-0.623035,-0.517563,0.586413,-0.640461,-0.568682,0.516098,-0.856624,-0.230110,0.461745,-0.680105,-0.584277,0.442732,-0.851161,-0.257881,0.457137,-0.668233,-0.329691,0.666860,-0.642170,-0.412580,0.646016,-0.696005,-0.257729,0.670125,-0.076479,-0.544237,0.835414,0.731284,-0.513260,0.449141,0.739494,-0.637043,0.217475,0.812494,-0.010102,-0.582812,0.538957,-0.018494,-0.842097,0.589160,0.100894,-0.801660,0.819025,0.029359,-0.572985,0.610187,0.195288,-0.767785,0.806146,0.059694,-0.588672,0.566088,0.112400,-0.816614,0.485855,-0.039308,-0.873135,0.744560,-0.056795,-0.665090,0.784204,0.030427,-0.619739,0.434523,-0.129368,-0.891293,0.723289,-0.109622,-0.681753,0.759697,-0.133122,-0.636494,0.788873,-0.084262,-0.608722,0.350017,-0.211921,-0.912442,0.693686,-0.152562,-0.703879,0.243171,-0.332316,-0.911252,0.689383,-0.178991,-0.701926,0.728050,-0.162603,-0.665914,0.736869,-0.153752,-0.658254,-0.643544,0.310221,0.699667,-0.639851,0.313944,0.701407,-0.529710,0.393872,0.751152,-0.587573,0.333811,0.737083,-0.225135,0.457411,0.860256,-0.440992,0.344493,0.828730,0.775262,0.537278,-0.332072,0.799829,0.474013,-0.368175,0.544023,0.749321,-0.377514,0.542619,0.799921,-0.256233,0.806848,0.410565,-0.424696,0.541124,0.681631,-0.492447,0.060366,0.953581,-0.294961,0.042634,0.995941,-0.079012,-0.148228,-0.988006,0.043092,0.281991,-0.893674,-0.348949,0.480850,-0.462844,-0.744652,0.590503,-0.589709,-0.550890,0.372967,-0.791314,-0.484451,0.162023,-0.768181,-0.619373,-0.795282,0.353557,0.492416,-0.706961,0.338603,0.620869,-0.750664,0.316752,0.579760,-0.807001,0.321116,0.495590,-0.725425,0.235908,0.646565,-0.857082,0.075900,0.509537,-0.890866,0.128971,0.435499,-0.925657,0.035188,0.376690,-0.817774,0.060701,0.572314,-0.668477,0.451003,0.591327,-0.852504,-0.203406,0.481460,-0.933500,-0.051210,0.354869,-0.889920,0.171361,0.422651,-0.708945,0.490493,0.506699,0.835444,0.380200,-0.396741,0.885769,0.261788,-0.383221,0.802698,0.343760,-0.487259,0.847407,0.224403,-0.481124,0.885128,0.166417,-0.434553,0.915311,0.171728,-0.364208,-0.561357,0.256752,0.786706,-0.646199,0.400769,0.649434,-0.865871,0.120518,0.485488,-0.708274,0.028352,0.705344,-0.921598,0.023530,0.387402,-0.770898,0.113407,0.626759,-0.608081,0.147404,0.780023,-0.654317,0.073397,0.752617,-0.532731,0.217231,0.817896,-0.469069,0.306192,0.828364,-0.705313,-0.019776,0.708609,-0.628925,0.095798,0.771508,-0.332896,0.397229,0.855190,-0.252235,0.477645,0.841548,-0.787927,-0.420454,-0.449812,-0.719108,-0.381176,-0.580981,-0.774102,-0.386608,-0.501236,-0.863979,-0.406873,-0.296548,-0.412427,-0.317209,-0.853938,-0.742759,-0.385876,-0.547105,-0.686666,-0.351085,-0.636555,-0.641377,-0.346446,-0.684500,-0.496261,-0.249275,-0.831599,-0.433760,-0.248939,-0.865932,0.271554,0.950255,0.152501,0.348766,0.920927,-0.173833,0.026154,0.972503,0.231361,-0.250954,0.813379,0.524796,0.455336,0.832362,-0.315897,0.411298,0.899319,-0.148289,-0.181982,0.887020,0.424299,-0.567797,0.524400,0.634480,-0.747703,0.298441,0.593127,0.346568,0.690420,0.634968,-0.053591,0.563555,0.824305,0.401837,0.710624,0.577471,0.060793,0.638264,0.767388,0.703085,0.708792,-0.056887,0.752373,0.640187,-0.155095,0.631764,0.733421,-0.250862,0.570879,0.786798,-0.234504,0.650410,0.759545,-0.002197,0.360973,0.923307,0.130955,-0.875576,0.274209,-0.397656,-0.953581,0.275979,-0.120273,-0.827998,0.447310,-0.338054,-0.638539,0.457472,-0.618824,-0.956145,0.290658,-0.035310,-0.917692,0.369549,-0.145695,-0.867458,0.422834,-0.262062,-0.742515,0.473128,-0.474105,-0.569048,0.454878,-0.685018,-0.902493,-0.421552,-0.088015,-0.851985,-0.511032,0.113590,-0.719871,-0.614612,0.322489,-0.928922,-0.363628,0.069521,-0.671712,-0.494247,0.551775,-0.415509,-0.711997,0.566027,-0.205908,-0.954985,0.213416,-0.741905,-0.647847,0.172613,-0.956603,-0.255440,0.140141,-0.883847,-0.466628,-0.031983,-0.850368,-0.469039,-0.238411,-0.809107,-0.461409,-0.363872,-0.805811,-0.417219,-0.420148,-0.999817,0.004578,-0.017670,-0.932249,0.076144,-0.353679,-0.983581,-0.100436,-0.149815,-0.993652,-0.073550,0.084902,-0.752586,0.111515,-0.648946,-0.901517,-0.122257,-0.415052,-0.563494,0.070925,-0.823054,-0.689718,-0.117374,-0.714469,-0.464492,0.012360,-0.885464,-0.472030,-0.100681,-0.875790,-0.640370,0.288308,-0.711875,-0.830866,0.172094,-0.529130,-0.971709,0.125065,-0.200232,-0.386395,0.277902,-0.879452,-0.646229,0.170568,-0.743797,-0.090487,0.137150,-0.986389,-0.351421,0.025300,-0.935850,-0.492386,0.091311,-0.865566,-0.191992,0.217566,-0.956969,-0.761589,-0.163579,0.627033,-0.896237,-0.229072,0.379803,-0.941710,-0.266945,0.204627,-0.801843,-0.222633,0.554460,-0.927427,-0.265786,-0.263039,-0.841243,-0.204199,-0.500565,-0.751396,-0.093600,-0.653127,-0.966033,-0.258370,0.003967,-0.853084,-0.304514,0.423627,-0.822687,-0.136998,0.551714,-0.850215,-0.194372,0.489212,-0.732963,-0.114353,0.670553,-0.933103,-0.273171,0.233772,-0.954711,-0.296609,0.021882,0.189154,0.813685,0.549638,-0.205634,0.649037,0.732414,0.590167,0.761650,0.267434,0.686666,0.722709,-0.078433,0.377148,0.907743,0.183691,-0.091525,0.867641,0.488662,-0.464675,0.417676,0.780755,-0.608173,0.223609,0.761620,-0.467391,0.591906,0.656636,-0.650868,0.312143,0.692007,0.499039,0.860286,-0.104099,0.004212,0.983276,0.182043,0.736137,0.618641,-0.274422,-0.832148,-0.245766,0.497055,-0.829157,0.089572,0.551775,-0.905667,0.072970,0.417615,-0.798883,-0.240425,0.551317,-0.745689,0.071078,0.662465,-0.747063,0.385937,0.541215,-0.848689,0.392285,0.354686,-0.929319,0.066042,0.363262,-0.893887,0.381298,0.235572,-0.556902,0.829585,-0.040071,-0.536851,0.825037,0.176275,-0.489822,0.757225,0.432020,-0.714866,0.015748,0.699026,-0.800378,-0.259682,0.540269,-0.859157,-0.250313,0.446272,-0.741539,-0.040590,0.669637,-0.269845,-0.029756,-0.962432,-0.250740,-0.131779,-0.959014,-0.081301,0.070070,-0.994201,-0.141850,-0.081576,-0.986511,-0.238227,-0.168340,-0.956481,-0.160283,-0.185369,-0.969481,-0.276406,-0.545793,-0.790979,-0.370312,-0.424116,-0.826411,-0.880184,-0.425275,-0.210700,-0.866085,-0.497482,-0.048616,-0.437544,-0.374004,-0.817713,-0.842097,-0.403546,-0.357738,-0.906552,-0.241340,0.346202,-0.053499,-0.261879,-0.963591,-0.026704,-0.339061,-0.940367,-0.220130,-0.246193,-0.943876,0.286813,-0.672994,-0.681753,0.408887,-0.798456,-0.441816,-0.343577,-0.905393,-0.249306,-0.295755,-0.955260,0.002503,-0.708365,-0.617512,0.341807,-0.727165,-0.634022,0.263039,-0.423597,-0.543443,-0.724693,-0.135716,-0.622791,-0.770501,0.054292,-0.402509,-0.913785,0.287332,-0.383557,-0.877651,0.148259,-0.389843,-0.908841,0.038148,-0.358806,-0.932615,-0.211829,-0.398724,-0.892239,-0.638356,-0.471389,-0.608509,0.193548,-0.499008,-0.844661,-0.390240,-0.766869,-0.509507,-0.791742,-0.590228,0.157201,-0.790674,-0.080233,0.606922,-0.696493,-0.330607,-0.636830,-0.484146,-0.146916,-0.862545,-0.333506,-0.002441,-0.942717,-0.234352,0.107822,-0.966124,-0.649251,0.077761,-0.756554,-0.963408,-0.189856,-0.189123,-0.514450,0.243385,-0.822230,-0.929411,-0.091433,-0.357494,-0.875423,-0.438765,0.202704,-0.883267,-0.386395,0.265511,-0.453993,0.366832,-0.811945,-0.901212,0.046327,-0.430830,-0.903775,0.174200,-0.390942,-0.896481,-0.344005,0.279122,-0.869472,-0.411389,0.273415,-0.184301,0.236274,-0.954009,-0.213599,0.344493,-0.914151,-0.370037,0.411756,-0.832759,-0.915128,0.260903,-0.307260,-0.924497,0.317972,-0.210211,-0.999939,0.008881,0.001434,-0.966796,-0.209967,0.145604,-0.340800,0.107242,0.933988,-0.332835,0.336131,0.881008,-0.694784,0.264077,0.668966,-0.708853,0.142155,0.690848,-0.310831,0.465499,0.828639,-0.577960,0.414594,0.702872,-0.874172,0.176580,0.452345,-0.926420,0.100223,0.362835,-0.153203,0.705832,0.691580,0.075686,0.599445,0.796808,0.444472,0.634449,0.632374,0.316874,0.828028,0.462508,-0.766228,0.212531,0.606372,-0.866604,0.158635,0.473037,-0.849055,-0.286233,0.444014,-0.904843,-0.106845,0.412061,-0.894192,0.135716,0.426557,-0.820643,0.286508,0.494400,0.407453,0.329234,0.851772,0.531785,0.281716,0.798608,-0.308939,0.287423,0.906583,0.163549,0.405133,0.899503,0.283547,0.956786,0.064089,0.386731,0.848231,0.361827,0.460524,0.630146,0.625141,0.491012,0.432020,0.756432,0.531175,0.431989,0.728843,0.487075,0.132084,0.863277,0.467605,0.184606,0.864437,-0.918485,-0.093600,0.384136,-0.978484,-0.121006,0.166936,-0.749077,-0.629353,0.206732,-0.506668,-0.678487,0.531877,0.051576,-0.996246,0.069430,0.301035,-0.934507,0.189734,-0.376965,-0.148808,0.914182,0.015381,-0.231483,0.972686,0.079134,0.102481,0.991577,-0.474349,-0.198950,0.857540,0.013916,-0.483627,0.875149,0.358837,-0.658132,0.661824,0.360790,-0.273019,0.891751,-0.980255,0.053316,0.190374,-0.988952,-0.017975,0.146947,-0.985351,-0.046205,0.164129,-0.968474,-0.005860,0.249001,-0.992767,0.116306,0.029359,-0.979034,0.187872,0.078402,-0.967406,0.248756,0.047151,-0.943388,0.331645,0.003418,-0.958525,0.120670,0.258095,-0.925626,0.172735,0.336619,-0.881222,0.020264,0.472243,-0.765740,-0.018586,0.642872,-0.696371,-0.122135,0.707205,-0.125828,-0.632801,0.764000,0.402448,-0.848994,0.342296,-0.896512,-0.362865,0.254036,-0.649983,-0.311624,0.693075,-0.343089,-0.549821,0.761528,0.069399,-0.897977,0.434523,0.322520,-0.938658,0.121952,0.350963,-0.919156,0.178625,0.238563,-0.883450,0.403211,0.206854,-0.649800,0.731376,0.345866,-0.221259,0.911802,0.146489,0.410993,0.899777,-0.923124,0.177007,0.341227,-0.720359,-0.009522,0.693533,-0.985961,-0.035493,0.162999,-0.952483,0.304514,-0.002441,-0.823359,-0.375744,0.425275,-0.647328,-0.488266,0.585223,-0.889828,-0.083163,0.448622,-0.728660,-0.308359,0.611469,-0.655873,0.092807,0.749107,-0.583911,-0.007202,0.811762,-0.534684,0.028901,0.844539,-0.679800,0.170385,0.713309,-0.490158,-0.117008,0.863704,-0.351024,-0.157079,0.923063,-0.193945,-0.199927,0.960387,-0.554613,-0.011353,0.831996,-0.790429,0.158757,0.591571,-0.722587,0.155187,0.673605,-0.702841,0.116062,0.701773,-0.742729,0.267251,0.613910,-0.726554,0.288400,0.623615,-0.774285,0.269326,0.572619,-0.680502,0.223365,0.697836,-0.476791,-0.236366,0.846614,-0.481033,-0.179662,0.858089,-0.630268,-0.022950,0.776025,-0.651601,-0.003571,0.758538,-0.487350,-0.368694,0.791498,-0.463210,-0.297037,0.834956,-0.655873,0.005615,0.754845,-0.649525,-0.120121,0.750755,-0.720756,0.171819,0.671529,-0.701956,0.123844,0.701315,-0.703726,0.241981,0.667959,-0.689779,0.208167,0.693411,-0.644734,0.098697,0.757988,-0.608295,0.115818,0.785180,-0.533677,0.037721,0.844813,-0.459090,0.337016,0.821955,-0.441877,0.276711,0.853298,-0.811640,0.123142,0.571001,-0.879727,0.085147,0.467727,-0.908658,0.071413,0.411328,-0.798944,0.237739,0.552355,-0.878506,0.024293,0.477065,-0.906003,0.054750,0.419660,-0.873592,0.077670,0.480392,-0.839442,0.057314,0.540361,-0.848811,0.010529,0.528581,-0.843806,0.016358,0.536363,-0.009095,-0.225257,0.974242,-0.577074,-0.080111,0.812738,-0.521775,-0.342235,0.781396,-0.675222,-0.111759,0.729057,-0.246529,0.754875,0.607746,-0.646321,0.376568,0.663625,0.420179,0.869533,0.259468,-0.037355,0.841731,0.538560,-0.577349,0.387158,0.718833,-0.680715,0.190191,0.707389,-0.738578,0.111759,0.664815,-0.791955,0.025086,0.610034,-0.684713,0.067537,0.725639,-0.671957,-0.029817,0.739952,-0.865749,0.064608,0.496231,-0.704031,-0.092898,0.704031,-0.960143,-0.059816,0.273019,-0.931211,-0.014222,0.364147,-0.872677,-0.103275,0.477187,-0.969573,-0.088961,0.228034,-0.890957,-0.196326,0.409436,-0.980926,-0.125401,0.148381,-0.667837,-0.071413,0.740837,-0.722770,-0.021668,0.690695,-0.865902,-0.079470,0.493820,-0.826716,-0.138615,0.545244,-0.784783,0.130680,0.605823,-0.889340,0.176641,0.421735,-0.966643,0.210822,0.145299,-0.975402,-0.129093,0.178594,-0.952696,-0.225623,0.203528,-0.652120,0.038850,0.757073,-0.646229,0.064028,0.760430,-0.747734,0.199683,0.633229,-0.725608,0.216224,0.653218,-0.965972,-0.146062,0.213355,-0.983428,0.181066,0.004639,-0.944823,0.136235,0.297800,-0.979308,-0.051180,0.195685,-0.916654,0.385693,0.104648,-0.863887,0.312296,0.395123,-0.859706,0.089633,0.502792,-0.954375,-0.048677,0.294534,-0.601398,-0.733848,0.315775,-0.651814,-0.758354,0.001190,-0.806055,-0.576464,0.133885,-0.695975,-0.534196,0.479781,-0.521989,-0.663717,-0.535691,-0.647938,-0.482589,-0.589251,-0.883541,-0.255165,-0.392682,-0.805506,-0.512040,0.298196,-0.655385,-0.580920,0.482620,-0.744133,-0.581591,0.328593,-0.786462,-0.465163,0.406262,-0.787591,-0.326762,0.522385,-0.981842,-0.189184,-0.011841,-0.253822,-0.290475,-0.922575,-0.237770,-0.030488,-0.970824,-0.021210,-0.099704,-0.994781,-0.034516,0.051973,-0.998047,-0.216285,0.104160,-0.970733,-0.384472,0.193640,-0.902585,-0.469192,0.142094,-0.871578,-0.563585,0.339671,-0.752953,-0.738945,0.178930,-0.649525,-0.727103,0.436689,-0.529679,-0.774407,0.454909,-0.439680,-0.743278,0.326304,-0.583972,-0.857814,0.476791,-0.191809,-0.873470,0.438612,-0.211280,-0.942747,0.211219,-0.257973,-0.885098,0.441939,0.145665,-0.909238,0.245918,-0.335856,-0.833277,0.362651,0.417219,-0.951994,-0.187414,-0.241981,-0.946532,-0.288125,-0.145054,-0.747063,-0.211798,-0.630085,-0.809076,-0.298593,-0.506119,-0.696097,0.664418,-0.271920,-0.750786,0.021363,-0.660176,-0.720817,0.118839,-0.682821,-0.735557,0.617450,-0.278664,-0.478286,-0.288705,-0.829371,-0.368206,-0.155339,-0.916654,-0.273385,-0.014252,-0.961760,-0.705283,0.218421,-0.674398,-0.886685,0.446883,-0.118442,0.189215,-0.172796,-0.966582,0.042146,-0.166784,-0.985076,0.231330,-0.235084,-0.944029,0.072359,-0.219123,-0.972991,-0.227668,-0.233009,-0.945433,-0.177007,-0.181585,-0.967284,-0.541887,-0.269539,-0.796045,-0.450209,-0.202826,-0.869564,-0.805628,-0.416120,-0.421644,-0.863765,-0.245369,-0.440077,-0.616382,-0.190619,-0.764000,-0.537858,-0.378979,-0.753014,-0.293466,-0.097995,-0.950926,-0.222053,-0.247047,-0.943205,0.179540,-0.014283,-0.983642,0.027161,-0.018494,-0.999451,0.173437,0.032991,-0.984283,0.058107,-0.075808,-0.995422,-0.234046,-0.399213,-0.886471,-0.013520,-0.248207,-0.968596,0.082553,-0.098025,-0.991729,0.727500,0.686087,0.004517,0.486526,0.846309,0.216773,0.745354,0.651540,0.141057,0.598682,0.737053,0.313456,-0.126133,0.977569,0.168584,-0.586016,0.684042,0.434278,0.041017,0.971679,0.232643,0.456923,0.851802,0.256111,0.564135,0.693747,0.447676,0.105075,0.818354,0.565020,0.164373,0.664724,0.728751,0.167364,0.701987,0.692221,0.469955,0.709891,0.524552,-0.868587,0.392804,-0.302042,-0.244392,0.922880,0.297555,-0.638325,0.624165,0.450453,-0.952330,0.257057,0.164159,-0.189245,0.599322,0.777795,-0.275094,0.877407,0.392987,-0.169286,0.834925,0.523637,0.219886,0.971038,0.093387,0.104434,0.993744,-0.039460,-0.440626,0.539933,0.717124,-0.479446,0.728477,0.489303,-0.338969,0.572924,0.746208,-0.419477,0.794763,0.438551,-0.156621,0.968291,0.194586,0.156987,0.983703,-0.087527,-0.198187,0.589282,0.783227,0.045198,0.964476,0.260170,-0.639485,0.664602,-0.386425,-0.823817,-0.063784,0.563219,-0.836604,-0.035005,0.546648,-0.914701,-0.011750,0.403943,-0.905698,-0.055605,0.420209,-0.908322,0.009705,0.418073,-0.985412,-0.055055,0.160863,-0.688772,-0.024201,0.724540,-0.686972,-0.020081,0.726402,-0.718497,-0.060091,0.692892,-0.858638,-0.206977,0.468856,-0.812250,-0.121952,0.570391,-0.813044,-0.042879,0.580584,-0.853908,-0.074099,0.515061,-0.925657,-0.276986,0.257668,-0.873989,-0.480972,-0.068789,-0.900723,-0.429334,-0.065737,-0.962004,-0.271371,0.029633,-0.921598,-0.362346,-0.139073,-0.746940,-0.535722,-0.393719,-0.772698,-0.445235,-0.452406,-0.967132,-0.252510,-0.028901,-0.827998,-0.165716,-0.535661,-0.597217,-0.391583,-0.699942,-0.737724,-0.062471,-0.672170,-0.493057,-0.502792,-0.709952,-0.961516,-0.237037,-0.138829,-0.975372,-0.182653,0.123508,-0.861843,-0.091647,0.498795,-0.761803,-0.001068,0.647755,-0.896786,-0.052889,0.439253,-0.972015,-0.081271,0.220283,-0.981628,-0.090884,0.167638,-0.960509,-0.089206,0.263497,-0.975372,-0.097690,0.197729,-0.981964,-0.096103,0.162633,-0.992157,-0.096164,0.079775,-0.965697,-0.094546,0.241798,-0.934019,-0.074526,0.349254,-0.979308,-0.102847,0.174261,-0.992798,-0.110508,0.046052,-0.977599,-0.189367,0.091830,-0.991333,-0.130985,0.008393,-0.944884,-0.303446,0.122684,-0.971862,-0.203955,-0.117679,-0.984832,-0.162084,-0.061373,-0.992157,-0.120273,-0.033753,-0.134739,-0.599597,-0.788842,0.249702,-0.568621,-0.783746,0.177831,-0.477493,-0.860408,-0.221900,-0.507889,-0.832331,0.220130,-0.529160,-0.819453,0.210089,-0.421400,-0.882168,0.199866,-0.218696,-0.955077,0.175237,-0.251930,-0.951720,-0.359630,-0.347606,-0.865902,0.066775,-0.723228,-0.687338,-0.150761,-0.745323,-0.649373,-0.410596,-0.586963,-0.697714,-0.404889,-0.570482,-0.714530,-0.315683,-0.748894,-0.582629,-0.373791,-0.660146,-0.651509,-0.097110,-0.677694,-0.728874,-0.080691,-0.649739,-0.755821,-0.161290,-0.665548,-0.728690,0.069887,-0.598743,-0.797845,0.155187,-0.653249,-0.741050,-0.005219,-0.707633,-0.706534,-0.009064,-0.449904,-0.893002,-0.030457,-0.234291,-0.971679,-0.272469,-0.499466,-0.822352,-0.229225,-0.279641,-0.932310,-0.174230,-0.523179,-0.834193,-0.143162,-0.340587,-0.929228,-0.021302,-0.641255,-0.767022,0.479141,-0.422529,-0.769341,0.335765,-0.397595,-0.853908,0.067232,-0.661916,-0.746513,-0.037935,-0.695273,-0.717734,0.262978,-0.637471,-0.724174,0.411115,-0.476638,-0.777001,-0.005127,-0.889370,-0.457106,0.014374,-0.853328,-0.521134,0.318705,-0.800867,-0.506974,0.215583,-0.870083,-0.443220,0.097720,-0.765618,-0.635792,0.373302,-0.653157,-0.658773,0.524918,-0.556322,-0.644154,0.350078,-0.779565,-0.519333,0.186377,-0.891079,-0.413770,0.537431,-0.531541,-0.654653,0.295267,-0.751915,-0.589404,0.549791,-0.500351,-0.668844,0.433271,-0.603687,-0.669149,0.020264,-0.851833,-0.523362,-0.506546,-0.775506,-0.376782,0.084445,-0.874569,-0.477462,0.258858,-0.789422,-0.556566,-0.398968,-0.799158,-0.449599,0.406781,-0.794885,-0.450148,0.437239,-0.745811,-0.502518,0.184057,-0.696249,-0.693777,-0.298624,-0.740226,-0.602344,-0.836207,-0.528550,-0.146214,-0.867214,-0.482589,-0.122532,-0.851375,-0.468917,-0.235054,0.082980,-0.897610,-0.432844,-0.255440,-0.868984,-0.423780,0.349864,-0.844997,-0.404370,-0.094974,-0.939848,-0.328013,0.008118,-0.796533,-0.604480,-0.316599,-0.836634,-0.446944,-0.579058,-0.753929,-0.310221,0.425611,-0.575671,-0.698141,0.601337,-0.416791,-0.681631,0.580889,-0.629475,-0.516007,0.640522,-0.486221,-0.594378,0.679800,-0.344676,-0.647298,0.649342,-0.370830,-0.663930,0.640217,-0.375683,-0.670034,0.648061,-0.413312,-0.639668,0.740410,-0.168950,-0.650533,0.752251,-0.204901,-0.626179,0.663991,-0.310312,-0.680288,0.706198,-0.219733,-0.673025,0.607624,-0.335002,-0.720084,0.285806,-0.566240,-0.773095,0.304880,-0.559496,-0.770684,0.626637,-0.320505,-0.710318,0.368267,-0.535417,-0.760033,-0.047761,-0.726310,-0.685690,-0.164190,-0.719291,-0.675008,-0.196204,-0.714103,-0.671957,0.669240,-0.264443,-0.694357,0.621845,-0.330943,-0.709769,0.290139,-0.458144,-0.840175,0.285470,-0.356487,-0.889584,-0.239174,-0.586108,-0.774102,-0.276711,-0.451827,-0.848079,0.313608,-0.297220,-0.901822,0.372387,-0.245338,-0.895047,-0.245918,-0.378460,-0.892331,-0.143773,-0.329081,-0.933256,0.458235,-0.159001,-0.874477,-0.056581,-0.245277,-0.967772,-0.606403,-0.334056,-0.721549,-0.581713,-0.266945,-0.768303,-0.925474,-0.298715,-0.232856,-0.901303,-0.289468,-0.322245,-0.678487,-0.361064,-0.639729,-0.711997,-0.409131,-0.570666,-0.968139,-0.194586,0.157445,-0.919889,-0.387280,0.061464,-0.944365,-0.152226,0.291513,-0.902676,-0.430067,-0.013215,-0.851680,-0.500198,-0.156224,-0.708121,-0.658376,-0.255043,-0.874813,0.034455,0.483200,-0.907010,-0.016266,0.420728,-0.982940,-0.183294,0.014588,-0.980377,-0.159307,0.115909,-0.660421,0.148503,0.736045,-0.661245,0.211585,0.719687,-0.709922,0.217383,0.669851,-0.858028,0.041841,0.511887,-0.955046,-0.158635,0.250313,-0.925901,-0.366070,-0.092990,-0.690756,-0.541734,-0.478896,-0.651906,-0.659688,-0.373852,-0.430280,-0.760399,-0.486404,-0.578570,-0.689261,-0.436048,-0.689322,-0.391186,0.609729,-0.493332,-0.720725,0.486953,-0.581347,-0.441267,0.683554,-0.695639,-0.075747,0.714377,-0.163915,-0.869594,0.465712,-0.314035,-0.665883,0.676717,0.335307,-0.783502,-0.523087,0.610157,-0.480270,-0.630085,0.632130,-0.522111,-0.572527,0.458266,-0.802911,-0.381176,0.677419,-0.569079,-0.466048,0.571429,-0.804804,-0.160405,0.451613,-0.380718,0.806879,-0.020844,-0.668630,0.743278,0.054018,-0.414197,0.908567,0.089419,-0.605823,0.790521,0.521928,-0.598895,0.607349,0.343394,-0.868252,0.358013,-0.168310,-0.624165,0.762902,-0.180822,-0.494400,0.850185,0.027558,-0.749687,0.661184,-0.220679,-0.346049,0.911863,-0.811304,0.249428,0.528703,-0.910154,-0.107578,0.400006,-0.854183,-0.210059,0.475631,-0.756737,0.185034,0.626942,-0.768395,-0.319437,0.554491,-0.711112,0.118656,0.692953,-0.403607,-0.911100,-0.083651,-0.690146,-0.710471,0.137394,-0.813593,-0.576800,0.072970,-0.550432,-0.812159,-0.193365,-0.549272,-0.788507,0.276650,-0.275124,-0.951079,0.140416,-0.101596,-0.957610,-0.269448,0.044496,-0.997894,-0.046510,0.174902,-0.944426,0.278268,-0.265633,-0.878231,-0.397626,0.152379,-0.774224,-0.614246,0.684866,-0.319407,-0.654897,0.529130,-0.503739,-0.682791,0.639973,-0.374920,-0.670705,-0.234962,-0.799219,-0.553148,-0.064394,-0.892727,-0.445936,0.311563,-0.826411,-0.468947,-0.266366,-0.563494,-0.781976,-0.374828,-0.561327,-0.737815,-0.795648,-0.440962,-0.415265,-0.836604,-0.305673,-0.454512,-0.739158,0.052767,-0.671407,-0.401349,0.305734,-0.863369,-0.815516,0.334208,-0.472427,-0.985198,0.060915,-0.160161,0.134953,0.414472,-0.899991,-0.187719,0.615345,-0.765557,-0.512772,0.668233,-0.538987,-0.947081,0.277322,-0.161596,-0.999359,0.028535,0.020966,0.188513,-0.009583,-0.981994,-0.473037,-0.102420,-0.875027,0.176733,0.005951,-0.984222,0.185827,0.145695,-0.971709,0.050813,0.147618,-0.987732,-0.928800,-0.182287,-0.322520,-0.976989,-0.115329,-0.179296,-0.996612,-0.049471,-0.065432,-0.998505,-0.047426,0.026246,0.338298,0.257027,-0.905240,0.508347,0.257363,-0.821772,0.470260,0.393139,-0.790094,0.431837,0.183752,-0.883023,0.528886,0.158544,-0.833735,0.529069,0.159246,-0.833461,0.537828,0.270821,-0.798364,0.558245,0.377483,-0.738792,0.453017,0.019868,-0.891263,0.444441,-0.011994,-0.895718,0.494858,0.160009,-0.854091,0.244057,-0.017762,-0.969573,0.335154,-0.098788,-0.936949,-0.040925,-0.078463,-0.996063,0.105289,-0.170385,-0.979705,0.009857,-0.011658,-0.999878,0.160100,0.085452,-0.983367,0.396100,0.091861,-0.913572,0.299600,0.175726,-0.937712,0.081332,0.237587,-0.967925,0.526566,0.502853,-0.685446,-0.238136,0.705802,-0.667165,0.078372,0.750847,-0.655782,0.636097,0.523606,-0.566698,-0.756859,0.537553,-0.371654,-0.676748,0.593402,-0.435682,0.279977,0.705924,-0.650563,0.640065,0.534684,-0.551714,0.724601,0.187353,-0.663167,0.653981,0.189459,-0.732383,0.830805,0.041353,-0.554979,0.850490,0.002777,-0.525925,0.527604,0.280526,-0.801813,0.569781,0.361064,-0.738212,0.902646,0.169713,-0.395489,0.918912,0.123173,-0.374676,0.874905,0.181005,-0.449110,0.896084,0.075686,-0.437361,0.791650,0.213385,-0.572466,0.803980,0.319468,-0.501511,0.559526,0.563829,-0.607410,0.586657,0.408795,-0.699057,0.606128,0.295389,-0.738426,0.791650,0.130375,-0.596881,0.803552,0.183569,-0.566210,0.867000,0.020569,-0.497818,0.778588,0.374645,-0.503372,0.762871,0.326060,-0.558245,0.739982,0.416761,-0.527879,0.607135,0.491134,-0.624622,0.656178,0.418836,-0.627674,0.414502,0.574236,-0.705954,-0.958037,0.252693,-0.135075,-0.929929,0.316630,-0.186956,-0.999084,0.038942,0.016022,-0.998138,0.022248,0.056642,-0.992950,-0.070620,0.094974,-0.996246,-0.057680,0.064486,-0.994629,-0.044588,0.093173,-0.993164,-0.067995,0.094760,-0.978912,-0.081515,0.187292,-0.987091,-0.061373,0.147740,-0.968627,-0.098209,0.228278,-0.965484,-0.124760,0.228492,-0.904843,-0.174200,0.388440,-0.766198,-0.126591,0.629963,-0.786309,-0.201849,0.583880,-0.706290,-0.039979,0.706748,-0.872127,0.352306,-0.339457,-0.988464,0.112918,-0.100833,-0.996429,-0.068178,0.049532,-0.087466,0.632344,-0.769707,-0.528703,0.637013,-0.560900,-0.858730,0.449934,-0.245155,-0.998810,0.039918,0.027680,-0.996734,-0.035676,0.072268,0.626392,0.449232,-0.637013,0.713401,0.334025,-0.615986,0.270577,0.537217,-0.798822,-0.614032,0.549883,-0.566179,0.776025,0.609149,-0.163305,0.793237,0.498398,-0.349742,0.390332,0.906217,-0.162328,0.759941,0.498825,-0.416639,-0.178503,0.890591,-0.418256,0.439741,0.675008,-0.592395,-0.995819,0.056459,0.071718,-0.997040,-0.013886,0.075259,-0.943022,0.330882,-0.034181,-0.992431,-0.036317,0.117252,-0.994690,-0.101840,0.013733,-0.995209,-0.073946,0.063753,-0.996490,-0.082308,0.013062,-0.997467,-0.054750,0.045320,-0.992004,-0.045137,0.117618,-0.996429,-0.041169,0.073336,0.739586,-0.614948,-0.273507,0.718009,-0.693869,0.054537,0.174657,-0.984313,-0.024049,0.361400,-0.797296,0.483383,-0.882595,-0.456313,0.112980,-0.798700,-0.594531,0.092593,-0.951872,-0.253792,-0.171697,-0.697958,-0.713492,0.061037,-0.696036,-0.717307,-0.031129,-0.758843,-0.625477,-0.181371,-0.991058,-0.095218,0.093204,-0.988220,-0.079012,0.130863,-0.994720,-0.083651,0.059297,-0.994720,-0.078738,0.065615,0.694357,0.691458,0.199316,0.073794,0.898953,0.431715,-0.645436,0.758354,0.090976,-0.670949,0.628407,0.393506,-0.677145,0.719596,-0.153752,-0.222816,0.955412,0.193701,-0.375134,0.926817,0.016419,0.097842,0.924924,0.367321,0.311441,0.849269,0.426221,-0.401349,0.882382,-0.245491,-0.031983,0.978729,0.202521,0.339305,0.713279,0.613239,0.475143,0.661641,0.580004,0.615802,0.600360,0.510208,-0.095859,0.783624,0.613758,-0.015290,0.820795,0.571001,0.136998,0.956572,0.257179,0.032777,0.900540,0.433454,0.128056,0.801599,0.583972,0.247963,0.967956,0.039369,0.333720,0.824000,-0.457839,0.329875,0.930448,-0.159307,0.183294,0.957152,0.224097,0.248177,0.753533,0.608722,0.213935,0.771691,0.598895,0.202307,0.298196,0.932798,0.311472,0.284829,0.906522,0.026063,0.406507,0.913266,-0.000183,0.161718,0.986816,0.188696,0.096347,0.977264,0.307871,0.100040,0.946135,-0.228767,0.518540,0.823847,-0.132939,0.519120,0.844264,-0.280740,0.268807,0.921354,-0.169530,0.252022,0.952727,-0.008698,-0.022980,0.999695,0.177648,-0.055269,0.982513,-0.039064,-0.270974,0.961791,0.146764,-0.305918,0.940642,0.291330,-0.328990,0.898251,0.304666,-0.073092,0.949614,-0.295785,0.061953,0.953215,-0.188696,0.030915,0.981536,-0.306650,-0.110813,0.945341,-0.213111,-0.194525,0.957457,-0.278878,0.202857,0.938627,-0.337016,0.022889,0.941191,-0.341258,0.095523,0.935087,-0.321451,0.231971,0.918058,0.116642,-0.510849,0.851680,0.267739,-0.528367,0.805658,-0.057863,-0.458876,0.886593,-0.047029,-0.507492,0.860347,0.121830,-0.552080,0.824793,0.268227,-0.581164,0.768273,0.780602,0.256142,0.570116,0.747307,0.239265,0.619861,0.686880,0.362468,0.629871,0.734581,0.387402,0.557024,0.737419,0.238716,0.631794,0.680471,0.310312,0.663808,0.566240,0.398938,0.721213,0.618061,0.462325,0.635762,0.667470,0.499252,0.552446,0.762047,-0.061190,0.644612,0.764855,0.116703,0.633503,0.804498,0.029786,0.593188,0.804559,-0.137089,0.577807,0.829432,0.004456,0.558519,0.826533,-0.177313,0.534196,0.771050,0.391980,0.501785,0.812220,0.246376,0.528733,0.679647,0.543931,0.492080,0.751854,0.382458,0.537004,0.804712,0.212958,0.554094,0.653584,0.378948,0.655110,0.511399,0.368236,0.776421,0.561785,0.152654,0.813044,0.718253,0.180914,0.671834,0.396924,0.332804,0.855373,0.416242,0.130345,0.899838,0.277230,0.741203,0.611316,0.583514,-0.409589,0.701224,0.593158,-0.163244,0.788324,0.431104,-0.121403,0.894070,0.428602,-0.375896,0.821558,0.750328,-0.136326,0.646840,0.833369,-0.066530,0.548662,0.722312,-0.378521,0.578722,0.803858,-0.299692,0.513749,0.845088,-0.017975,0.534288,0.830042,-0.225929,0.509842,0.773156,-0.226234,0.592456,0.740226,-0.215613,0.636799,0.792108,-0.272835,0.546007,0.729911,-0.168065,0.662526,0.716727,-0.138981,0.683340,0.716453,-0.188177,0.671743,0.791986,-0.345927,0.503037,0.763756,-0.425092,0.485702,0.747765,-0.368999,0.551958,0.750298,-0.254006,0.610309,0.695975,-0.488907,0.525864,0.569872,-0.530686,0.627338,0.562395,-0.566057,0.602680,0.689993,-0.478195,0.543290,0.411756,-0.539598,0.734306,0.406476,-0.597278,0.691366,0.021607,0.992309,-0.121708,0.146336,0.982849,-0.112186,-0.165319,0.745323,-0.645833,0.073336,0.772423,-0.630818,-0.034364,0.999390,-0.000763,-0.310495,0.800104,-0.513199,0.445509,0.773400,0.450911,0.013337,0.939451,0.342387,0.440352,0.726127,0.527970,0.090030,0.877346,0.471297,0.375134,0.683645,0.625996,0.005280,0.838771,0.544420,0.232154,0.626789,0.743767,-0.256935,0.793481,0.551653,0.376476,-0.440443,0.814997,0.559221,0.294565,0.774895,0.687460,0.200354,0.698019,0.686636,0.023835,0.726554,0.753624,-0.261849,0.602863,0.581042,-0.532609,0.615375,0.695334,-0.173681,0.697348,0.726127,-0.224403,0.649861,-0.910062,0.391003,0.137303,-0.201178,0.814173,0.544603,0.307291,0.558702,0.770318,-0.583117,-0.230934,0.778832,-0.212165,0.439467,0.872799,-0.103336,0.375469,0.921018,-0.012879,0.696860,0.717063,0.162145,0.535783,0.828608,0.172033,0.882290,0.438063,0.129093,0.837245,0.531327,0.304300,0.847468,0.434919,0.312204,0.765893,0.562059,0.894162,0.304605,0.328104,0.755486,-0.049074,0.653310,0.571978,-0.766350,-0.292428,0.214637,-0.975372,-0.050356,-0.150853,-0.945402,0.288858,0.277871,-0.302744,0.911649,-0.432936,-0.225135,0.872829,-0.265328,-0.265908,0.926756,-0.164892,-0.365032,0.916257,-0.411237,-0.625935,0.662587,-0.114200,0.103366,0.988037,-0.000153,0.234626,0.972076,-0.313547,-0.318857,0.894406,-0.208380,-0.425367,0.880673,-0.219306,-0.351512,0.910123,-0.315592,-0.235939,0.919065,-0.263222,-0.000214,0.964721,-0.330149,-0.195044,0.923521,-0.337626,-0.092441,0.936705,-0.268715,0.107364,0.957213,-0.164861,0.152562,0.974425,-0.122501,0.251045,0.960173,-0.455123,0.544115,0.704794,-0.247505,0.932829,0.261788,-0.388073,0.808100,0.443129,-0.583667,0.434065,0.686209,0.138585,0.892697,-0.428755,0.146336,0.962615,-0.227882,0.186834,0.982147,-0.021149,-0.505936,0.681814,0.528275,-0.649892,0.411573,0.638936,-0.349834,0.730979,-0.585894,-0.241279,0.963591,0.115024,-0.187964,0.954985,0.229347,-0.396283,0.825007,-0.402844,-0.061953,0.745933,0.663106,-0.007599,0.769677,0.638356,-0.002960,0.799219,0.600971,-0.114231,0.929044,0.351817,-0.295297,0.951567,-0.085238,0.067965,0.183111,0.980712,0.013642,0.499252,0.866329,-0.080874,0.423444,0.902280,-0.056063,0.059175,0.996643,-0.118564,0.754753,0.645161,-0.171148,0.742393,0.647725,-0.220466,0.333842,0.916471,-0.243019,-0.024293,0.969695,0.137577,0.310221,0.940642,0.063814,0.584185,0.809076,0.168065,0.379467,0.909787,0.073183,0.632008,0.771447,-0.224647,-0.365612,0.903226,-0.039552,-0.374004,0.926572,-0.046754,-0.216010,0.975249,-0.240486,-0.242531,0.939848,0.118473,-0.325327,0.938139,0.099429,-0.113834,0.988495,0.261605,-0.256539,0.930418,0.216254,-0.020844,0.976104,0.326273,-0.165532,0.930662,0.279885,0.046785,0.958861,0.261879,0.008515,0.965056,0.259804,0.104343,0.959990,0.136601,0.300882,0.943785,0.169042,0.355968,0.919065,0.109043,-0.431410,0.895535,0.105106,-0.365825,0.924711,-0.041688,-0.428602,0.902493,-0.026551,-0.498489,0.866451,-0.208960,-0.451277,0.867550,-0.189642,-0.499222,0.845454,-0.722129,0.556627,0.410627,-0.725547,0.512131,0.459609,-0.824732,0.439558,0.355785,-0.798547,0.520981,0.301431,-0.713187,0.484817,0.506241,-0.797754,0.398297,0.452681,-0.856044,0.245674,0.454726,-0.837123,0.364391,0.407910,-0.775872,0.503555,0.380047,-0.815577,0.247719,0.522874,-0.865871,0.073305,0.494797,-0.722465,0.376934,0.579608,-0.718680,0.206336,0.663961,-0.798059,0.109897,0.592456,-0.846522,-0.057405,0.529191,-0.721824,0.457717,0.519059,-0.781030,0.287484,0.554338,-0.701437,0.203375,0.683065,-0.825343,0.070894,0.560137,-0.727165,-0.057924,0.683981,-0.475936,-0.166478,0.863552,-0.497848,0.107822,0.860500,-0.621693,0.129215,0.772485,-0.606647,-0.138951,0.782708,-0.282876,0.668691,0.687582,-0.356212,0.196112,0.913572,-0.372997,-0.111148,0.921140,-0.379284,-0.229957,0.896237,-0.479873,-0.256386,0.839015,-0.483230,-0.372600,0.792199,-0.369884,-0.347911,0.861446,-0.603961,-0.289254,0.742668,-0.611316,-0.391003,0.688009,-0.728385,-0.264748,0.631947,-0.731620,-0.346171,0.587237,-0.833613,-0.134098,0.535752,-0.823328,-0.217750,0.524125,-0.732841,-0.134861,0.666860,-0.802515,-0.134648,0.581195,-0.754051,-0.036775,0.655751,-0.690878,-0.113742,0.713950,-0.692953,-0.025330,0.720511,-0.653066,-0.210944,0.727287,-0.724693,-0.362651,0.585894,-0.740837,-0.334391,0.582476,-0.808161,-0.227424,0.543229,-0.764611,-0.209082,0.609607,-0.475478,-0.533799,0.699210,-0.479019,-0.459609,0.747826,-0.616352,-0.421613,0.665059,-0.600116,-0.503098,0.621876,-0.356578,-0.456160,0.815302,-0.357433,-0.502976,0.786889,-0.145268,0.727378,-0.670644,-0.169317,0.985107,0.029664,0.080935,0.733818,-0.674459,-0.064119,0.997864,0.010926,0.177374,0.786370,-0.591723,-0.086581,0.992187,0.089755,-0.661184,0.587786,0.466140,-0.781457,0.523606,0.339274,0.174657,0.971099,0.162542,0.193457,0.956420,0.218665,-0.814692,0.508805,0.278146,-0.689627,0.581835,0.431104,-0.833277,-0.327158,-0.445631,0.157445,0.646474,0.746483,-0.623218,0.468337,0.626270,-0.529283,0.529496,0.662923,-0.277200,-0.392895,0.876766,-0.627064,0.181707,0.757469,-0.633381,-0.221259,0.741508,-0.489944,-0.788263,0.372204,-0.692312,-0.564318,0.449660,-0.629048,-0.406018,0.662862,-0.426221,0.607349,0.670370,0.146245,0.713187,0.685507,0.772942,0.371746,0.514115,0.638264,0.021302,0.769494,0.059877,0.600024,0.797723,-0.041871,0.765374,0.642170,-0.020936,0.533860,0.845302,-0.304758,0.478317,0.823573,-0.424268,0.683828,0.593554,-0.125980,0.867672,0.480850,-0.463363,0.697745,0.546251,-0.234870,0.924161,0.301187,-0.032716,-0.966765,0.253517,-0.064058,-0.955077,-0.289346,-0.834468,-0.415571,0.361827,-0.458205,-0.543046,0.703635,-0.127567,-0.841365,-0.525163,-0.932188,-0.321757,0.165716,-0.172582,0.013367,0.984893,-0.074953,-0.501877,0.861660,0.022004,-0.136723,0.990356,0.137944,-0.284524,0.948668,0.251106,-0.110477,0.961608,0.101932,-0.599994,0.793451,0.241310,-0.272469,0.931394,0.224982,-0.300821,0.926725,0.232246,-0.147221,0.961425,0.287484,-0.159154,0.944456,0.212928,-0.001648,0.977050,0.149785,0.010620,0.988647,0.115848,0.167852,0.978973,0.104343,0.237342,0.965789,-0.035646,0.368999,0.928739,0.065889,0.157933,0.985229,-0.760186,-0.015717,-0.649495,-0.822108,0.172613,-0.542497,-0.896359,-0.196936,-0.397107,-0.798914,-0.089206,-0.594775,-0.827448,0.230445,-0.512040,-0.092410,-0.994354,0.051546,-0.743584,-0.611682,-0.269997,-0.804468,-0.288675,-0.519059,-0.356426,0.790551,-0.497909,-0.435499,0.768487,-0.468734,-0.689261,0.325877,-0.647023,-0.583026,0.396252,-0.709250,-0.713248,0.036409,-0.699942,-0.606494,0.162145,-0.778375,0.874020,0.485275,-0.023682,0.249947,-0.607227,0.754173,0.195959,-0.980255,-0.026063,0.457350,-0.884030,0.096316,-0.016785,-0.909391,0.415540,-0.024018,-0.993744,0.109012,-0.360668,-0.912137,0.194647,-0.228492,-0.870785,0.435286,-0.544877,-0.129276,0.828455,-0.320902,-0.479019,0.817011,0.371166,0.799188,0.472732,0.148839,0.986175,0.072390,0.181677,0.966704,0.180151,0.369701,0.749962,0.548509,-0.092807,0.926786,-0.363903,-0.080660,0.952879,-0.292306,-0.048463,0.950530,-0.306772,0.203803,0.962127,0.180944,0.381085,0.753746,0.535356,0.309244,0.292306,0.904904,0.001068,0.130497,0.991424,0.128117,0.631367,0.764794,0.395825,0.623341,0.674306,0.162633,0.945219,0.282907,0.266701,0.916990,0.296579,-0.074801,0.986541,-0.145177,-0.025666,0.991577,-0.126743,0.552843,0.272805,0.787347,0.454054,0.236335,0.859035,0.499222,0.524979,0.689291,0.524003,0.436903,0.731071,0.346202,0.870235,0.350383,0.080782,0.995178,-0.055483,-0.196905,0.863643,-0.463973,0.515580,0.464888,0.719718,0.588275,0.371105,0.718467,0.489792,0.540239,0.684255,0.554857,0.431623,0.711203,-0.079012,0.928587,-0.362590,-0.042390,0.936888,-0.346965,-0.181829,0.635182,-0.750633,-0.144810,0.656850,-0.739952,-0.272378,0.615741,-0.739341,-0.329112,0.408063,-0.851558,-0.235115,0.435072,-0.869137,-0.151738,0.450545,-0.879727,0.241401,0.815363,0.526170,0.055208,0.995911,0.071169,-0.008698,0.997986,0.062807,0.082095,0.841639,0.533708,-0.077822,0.926695,-0.367595,-0.004089,0.929868,-0.367809,0.002503,0.996887,0.078707,-0.002045,0.844386,0.535661,0.422681,0.453383,0.784692,0.364238,0.588244,0.721976,0.158818,0.614856,0.772454,0.212287,0.395734,0.893460,-0.003418,0.609333,0.792871,0.011048,0.345927,0.938169,0.453078,0.564440,0.689993,0.499557,0.459120,0.734581,0.357280,0.775719,0.520157,0.161229,0.980102,0.115635,-0.114017,0.683157,-0.721305,-0.030213,0.690512,-0.722678,-0.100833,0.475906,-0.873653,-0.041658,0.497421,-0.866482,-0.413617,0.515671,-0.750328,-0.331980,0.576525,-0.746544,-0.464064,0.288217,-0.837581,-0.401379,0.331584,-0.853755,-0.347118,0.587603,-0.730857,-0.389477,0.359081,-0.848140,0.971740,-0.037660,-0.233009,0.686270,0.692373,-0.222694,0.823695,0.408795,-0.392926,0.941374,0.080721,-0.327555,0.458693,0.829310,-0.319071,0.748131,0.444197,-0.492874,0.777825,0.214087,-0.590869,0.801294,0.213843,-0.558672,0.855800,0.085971,-0.510086,0.699271,0.407422,-0.587329,0.757866,0.218268,-0.614765,0.387127,0.805597,-0.448439,0.374248,0.753655,-0.540269,0.646748,0.380505,-0.660970,0.687033,0.296487,-0.663350,0.680715,-0.730064,-0.059877,0.807855,0.514206,0.287942,0.604236,0.796533,-0.020203,0.905423,-0.398907,-0.144993,-0.139927,0.944731,0.296426,0.013581,0.999756,-0.016511,0.702292,-0.329142,0.631184,0.179449,0.755547,0.629994,0.401044,-0.892361,0.206854,0.220588,-0.832575,0.508042,0.431471,-0.668813,0.605365,0.446486,0.101901,0.888943,0.070376,0.816858,-0.572466,0.130070,0.792810,-0.595386,-0.295267,0.954192,0.047761,-0.271889,0.960448,0.059908,0.219306,0.763726,-0.607074,-0.233528,0.972167,-0.017182,-0.438612,0.790185,0.427992,-0.496597,0.744224,0.446638,-0.470717,0.747307,0.468947,-0.285958,0.861568,0.419385,-0.332621,0.913816,0.232856,-0.067293,0.686697,0.723777,-0.363964,0.665456,0.651662,-0.440443,0.793298,0.420270,-0.367473,0.905057,0.213965,-0.051698,0.994354,-0.092563,-0.061708,0.987945,-0.141820,-0.432813,0.692526,0.577074,-0.381817,0.870083,0.311624,-0.425367,0.540666,0.725730,-0.490249,0.507462,0.708579,-0.475631,0.613147,0.630696,-0.137944,0.983276,-0.118717,0.315836,0.740074,-0.593707,-0.549760,0.601367,0.579730,-0.524186,0.591327,0.612781,-0.566515,0.506119,0.650288,-0.541551,0.478042,0.691488,0.199683,0.541704,-0.816492,0.195318,0.548784,-0.812799,0.117283,0.585284,-0.802271,0.121250,0.533036,-0.837336,0.058443,0.851863,-0.520432,0.052797,0.894131,-0.444655,0.061098,0.627552,-0.776147,0.066134,0.518540,-0.852473,0.040315,0.921995,-0.385052,0.008972,0.995483,0.094333,-0.043153,0.994324,0.097049,-0.176977,0.834284,0.522111,-0.048128,0.845851,0.531175,-0.093509,0.606494,0.789544,-0.271981,0.598956,0.753166,-0.293405,0.418744,0.859371,-0.099826,0.370434,0.923460,-0.343669,0.788171,0.510483,-0.435102,0.584979,0.684408,-0.459517,0.455763,0.762291,-0.152989,0.984375,0.086917,0.029542,0.667104,-0.744346,0.022217,0.506180,-0.862117,0.559893,0.409223,-0.720420,0.559069,0.415601,-0.717399,0.440901,0.462996,-0.768883,0.432081,0.498062,-0.751793,0.313120,0.509171,-0.801660,0.311838,0.535691,-0.784692,-0.111545,-0.951811,-0.285623,-0.083560,-0.993957,-0.071108,-0.037751,-0.998627,-0.036134,-0.051973,-0.968993,-0.241462,-0.021577,-0.987274,0.157384,0.022553,-0.981964,0.187658,0.070132,-0.977996,0.196448,0.012665,-0.999725,-0.018616,-0.010559,-0.977722,-0.209632,0.008271,-0.999634,-0.024537,-0.010590,-0.980041,-0.198462,0.034913,-0.981170,0.189825,-0.006989,-0.983337,0.181555,-0.005066,-0.999634,-0.026276,-0.007385,-0.979644,-0.200568,0.148961,-0.856258,0.494552,0.064425,-0.875240,0.479354,0.199805,-0.682424,0.703085,0.105502,-0.733482,0.671438,0.014618,-0.770074,0.637745,0.001465,-0.884945,0.465621,0.099033,-0.869716,0.483444,0.139348,-0.853511,0.502029,0.213630,-0.678304,0.702994,0.231391,-0.667531,0.707663,-0.080508,-0.996521,0.020631,-0.252174,-0.967101,-0.032868,-0.035096,-0.996857,0.070742,-0.065340,-0.985565,0.156133,-0.202124,-0.979278,-0.011200,-0.317728,-0.943693,-0.092013,0.263588,-0.685720,0.678426,0.102115,-0.894009,0.436232,0.024934,-0.961119,0.274911,0.129002,-0.818049,0.560442,0.087771,-0.802576,0.590014,0.110508,-0.869411,0.481552,0.275491,-0.629688,0.726310,0.241066,-0.549516,0.799921,0.052278,-0.924497,0.377575,0.258675,-0.719962,0.643971,0.443068,-0.426344,0.788598,0.415143,-0.320200,0.851527,0.388440,-0.240608,0.889462,-0.249855,-0.895596,-0.368053,-0.131962,-0.983093,-0.126835,-0.097781,-0.989776,-0.103793,-0.167180,-0.930204,-0.326701,-0.102542,-0.994720,0.000153,-0.060793,-0.994110,0.089602,0.012207,-0.917051,0.398541,-0.051454,-0.965300,0.255928,0.141942,-0.727012,0.671773,-0.217048,-0.963408,-0.157140,-0.175726,-0.982757,-0.057253,-0.349742,-0.842708,-0.409223,-0.450026,-0.774499,-0.444502,-0.310434,-0.928800,-0.202216,-0.251045,-0.964110,-0.086123,-0.557207,-0.796045,-0.236183,-0.721732,-0.502762,-0.475692,-0.485763,-0.836787,-0.252480,-0.621601,-0.622150,-0.475906,-0.296976,-0.949217,-0.103671,-0.405133,-0.881954,-0.240791,-0.541398,-0.698050,-0.468551,-0.090213,-0.987030,0.132664,-0.169866,-0.983947,0.054201,-0.034272,-0.962249,0.269906,-0.210944,-0.977477,0.005615,0.170049,-0.808313,0.563616,0.368175,-0.553697,0.746879,0.286050,-0.489456,0.823756,0.314310,-0.473067,0.823023,0.421430,-0.197699,0.885006,0.412519,-0.192755,0.890286,0.308237,-0.203833,0.929197,0.288034,-0.491897,0.821589,0.168706,-0.191198,0.966918,0.229987,-0.524033,0.820032,0.100528,-0.149358,0.983642,0.152867,-0.564959,0.810816,-0.004059,-0.120243,0.992706,0.015595,-0.591296,0.806299,-0.031526,-0.979095,0.200812,0.007996,-0.979766,0.199896,0.073916,-0.993316,-0.088443,0.023591,-0.998962,-0.038484,0.043794,-0.984893,0.167425,0.136387,-0.979705,-0.146702,0.163762,-0.929197,-0.331278,0.085757,-0.948851,-0.303781,0.027680,-0.963256,-0.267098,-0.028169,-0.982421,0.184423,0.006592,-0.999756,-0.020325,0.007416,-0.974273,-0.225135,-0.133091,-0.753014,0.644368,-0.080233,-0.880215,0.467727,-0.199103,-0.722312,0.662252,-0.129887,-0.868709,0.477950,-0.160283,-0.737693,0.655782,-0.099490,-0.871792,0.479659,-0.119114,-0.775506,0.619983,-0.065645,-0.885586,0.459792,0.247719,-0.966308,0.069521,0.347026,-0.936766,-0.044923,0.388012,-0.907346,-0.161534,0.323038,-0.936094,-0.139103,0.590228,-0.785150,-0.187414,0.393536,-0.897336,-0.199652,0.256020,-0.924406,0.282632,0.101260,-0.908322,0.405774,-0.020173,-0.741966,0.670125,0.119480,-0.800165,0.587725,-0.297159,-0.605640,0.738151,-0.134678,-0.780511,0.610431,-0.191046,-0.716819,0.670553,-0.342570,-0.520188,0.782311,0.054170,-0.925260,0.375408,-0.044099,-0.871364,0.488571,-0.074709,-0.826746,0.557573,-0.223640,-0.659169,0.717948,-0.371166,-0.409680,0.833277,0.123356,-0.988769,0.083987,0.190771,-0.962035,-0.195105,0.205176,-0.978240,-0.030183,0.270302,-0.933195,-0.236702,0.327555,-0.869106,-0.370556,0.239082,-0.905271,-0.351146,0.086245,-0.951262,0.295969,0.032777,-0.915525,0.400861,-0.072237,-0.804895,0.588977,0.475906,-0.770440,-0.424116,0.412030,-0.820338,-0.396527,0.353282,-0.895505,-0.270608,0.407361,-0.864742,-0.293680,0.287942,-0.950011,-0.120609,0.365551,-0.911313,-0.189276,0.823267,-0.486831,-0.291787,0.560350,-0.776971,-0.286843,0.843226,-0.246498,-0.477676,0.691946,-0.557848,-0.458235,0.455885,-0.837764,-0.300455,0.556078,-0.701621,-0.445509,0.376141,-0.900327,-0.218787,0.262795,-0.963897,0.042451,0.155553,-0.973083,0.169988,0.292978,-0.953764,-0.066805,0.149266,-0.962981,0.224342,-0.031465,-0.851070,0.524064,-0.182928,-0.675680,0.714103,-0.230171,-0.601062,0.765313,-0.371075,-0.299722,0.878872,-0.229347,-0.550707,0.802545,-0.357524,-0.232276,0.904538,-0.262917,-0.534745,0.803034,-0.234382,-0.528031,0.816218,-0.264473,-0.169103,0.949431,-0.318247,-0.206397,0.925230,-0.190497,-0.570818,0.798639,-0.167791,-0.124393,0.977935,0.951415,0.012848,0.307596,0.968871,-0.064394,0.238929,0.918363,0.124271,0.375652,0.924497,0.045015,0.378491,0.952757,-0.017609,0.303171,0.973357,-0.036805,0.226264,0.984252,-0.021363,0.175390,0.975341,-0.073885,0.207862,-0.007630,-0.382519,0.923887,0.170629,-0.356548,0.918546,0.140660,-0.531449,0.835322,-0.035768,-0.495804,0.867672,0.308176,-0.293497,0.904904,0.282571,-0.546831,0.788079,0.564165,0.298593,0.769738,0.593036,0.236854,0.769524,0.641377,0.064211,0.764519,0.632832,0.097598,0.768090,0.635548,0.167028,0.753746,0.678365,-0.002808,0.734703,0.558611,0.267403,0.785119,0.554857,0.333720,0.762047,0.658986,0.089602,0.746788,0.695914,-0.024415,0.717673,0.535997,-0.048402,0.842799,0.571001,0.117679,0.812433,0.678762,-0.227485,0.698202,0.574236,-0.409406,0.708914,0.424970,-0.191168,0.884762,0.421918,-0.511948,0.748222,0.668874,0.051454,0.741569,0.722861,-0.094729,0.684439,0.694021,-0.104099,0.712363,0.750511,-0.172979,0.637776,-0.104251,-0.508103,0.854946,-0.090823,-0.231513,0.968566,-0.392895,-0.013672,0.919462,-0.401563,-0.226997,0.887234,-0.016327,0.083102,0.996399,-0.317209,0.001343,0.948332,-0.474166,0.047365,0.879147,-0.495773,-0.035218,0.867702,0.064028,0.183966,0.980834,-0.184362,-0.033570,0.982269,0.063295,0.168554,0.983642,-0.080447,0.127293,0.988586,-0.197790,-0.276437,0.940428,-0.142644,-0.359142,0.922300,-0.193182,-0.443709,0.875088,-0.285958,-0.348552,0.892575,-0.089724,-0.037690,0.995239,-0.161351,-0.159337,0.973937,-0.283120,-0.227210,0.931761,-0.206641,-0.058779,0.976623,-0.023682,0.098575,0.994842,-0.128544,0.121158,0.984252,0.673086,-0.072878,0.735923,0.500839,-0.088961,0.860927,0.333659,-0.457625,0.824152,0.508286,-0.430555,0.745781,0.336894,-0.300119,0.892392,0.131932,-0.585650,0.799738,0.020600,-0.454299,0.890591,0.271615,-0.420698,0.865566,0.472976,-0.409680,0.779992,0.823084,-0.244484,0.512558,0.805078,-0.149113,0.574084,0.636952,-0.454482,0.622639,0.695547,-0.459883,0.551988,0.612903,-0.427137,0.664724,0.700217,-0.417432,0.579119,0.700705,-0.276925,0.657460,0.741356,-0.260933,0.618244,0.712516,-0.361827,0.601123,0.711051,-0.354717,0.607074,0.775964,-0.254250,0.577227,0.783410,-0.222633,0.580248,0.763176,-0.322947,0.559648,0.697745,-0.422651,0.578326,0.747581,-0.337321,0.572069,0.112125,-0.775567,0.621204,-0.026429,-0.735221,0.677267,0.024323,-0.865993,0.499405,-0.132450,-0.686941,0.714499,-0.278573,-0.399579,0.873318,-0.173040,-0.470199,0.865413,-0.019837,-0.702658,0.711234,-0.262642,-0.437819,0.859828,-0.389752,-0.207465,0.897214,-0.432630,0.032563,0.900967,-0.389355,-0.111606,0.914274,-0.435804,-0.078188,0.896634,-0.482437,0.001923,0.875912,-0.285379,0.045869,0.957305,-0.261483,-0.086367,0.961303,0.020600,0.046693,0.998688,0.013215,-0.048067,0.998749,0.348277,-0.003815,0.937346,0.322977,-0.071200,0.943693,0.570513,-0.071200,0.818171,0.545000,-0.140446,0.826563,0.719108,-0.128697,0.682821,0.687124,-0.223975,0.691122,0.789453,-0.149907,0.595203,0.756493,-0.264473,0.598071,0.810358,-0.219367,0.543260,0.787042,-0.226875,0.573595,0.781610,-0.236549,0.577105,0.812677,-0.153417,0.562120,0.783258,-0.235054,0.575488,0.779900,-0.236396,0.579485,0.961608,-0.054720,0.268807,0.935575,-0.015564,0.352763,0.936064,-0.025575,0.350810,0.961852,-0.045930,0.269662,0.858974,0.055177,0.508957,0.867855,0.054323,0.493759,0.859645,0.042634,0.509049,0.916349,-0.031281,0.399091,0.946440,-0.053499,0.318369,0.875423,-0.039918,0.481674,0.914640,-0.063448,0.399213,0.826197,0.024354,0.562822,0.766289,0.027711,0.641865,0.820002,-0.031281,0.571459,0.870724,-0.047639,0.489425,0.686361,0.058962,0.724815,0.755852,0.003143,0.654714,0.613422,0.118137,0.780847,0.680410,0.063845,0.730033,0.732994,0.052248,0.678182,0.816736,-0.006256,0.576952,0.453841,0.327464,0.828700,0.514603,0.183111,0.837642,0.454848,0.170415,0.874081,0.360576,0.256661,0.896695,0.522080,0.049409,0.851436,0.502060,0.072970,0.861721,0.491379,0.065889,0.868435,0.409619,0.128208,0.903165,0.292184,0.169317,0.941221,0.117313,0.183142,0.976043,0.218787,0.270211,0.937590,0.263802,0.283334,0.921995,0.178289,0.187201,0.965972,0.352000,0.356029,0.865596,0.375927,0.387066,0.841914,0.991302,0.093020,-0.092837,0.990905,0.107486,-0.080569,0.990936,-0.120518,-0.059114,0.983917,-0.125095,-0.127293,0.995788,0.089053,-0.021424,0.993866,-0.104678,0.035615,0.911313,-0.380169,0.157903,0.950591,-0.310404,0.004517,0.961882,-0.262215,-0.077273,0.898953,-0.425977,-0.101810,0.939695,-0.331126,-0.085513,0.891110,-0.452559,0.032929,0.832148,-0.554186,0.018281,0.789087,-0.586138,0.183691,0.641652,-0.732322,0.227943,0.725150,-0.619556,0.300455,0.660604,-0.735496,0.150365,0.362774,-0.880459,0.305155,0.392346,-0.875179,0.282937,0.289926,-0.838099,0.462050,0.075930,-0.687918,0.721763,0.103366,-0.853328,0.511002,0.213141,-0.865902,0.452467,0.352519,-0.706839,0.613239,0.132389,-0.536973,0.833125,-0.212165,-0.277200,0.937071,-0.119053,0.138432,0.983184,0.149632,0.456465,0.877041,0.114017,-0.176580,0.977630,0.062075,-0.717521,0.693716,-0.094180,-0.565905,0.819025,0.544145,-0.685781,0.483291,0.671834,-0.615741,0.411664,0.825770,0.293191,0.481735,0.904263,0.238136,0.354350,0.922422,0.254830,0.290078,0.850063,0.315470,0.421674,0.869778,0.287362,0.401074,0.862514,0.343028,0.371929,0.839381,0.406232,0.361064,0.930479,0.264595,0.253273,0.892026,0.240547,0.382611,0.559740,0.245918,0.791314,0.393811,0.152776,0.906369,0.293069,0.170537,0.940733,0.499344,0.248146,0.830073,0.052522,0.048250,0.997436,-0.055666,0.095004,0.993896,-0.140904,0.097995,0.985137,0.187719,0.156804,0.969604,0.429151,0.220985,0.875759,0.921445,-0.005768,0.388440,0.790429,-0.339335,0.509934,0.750084,-0.512497,0.417920,0.938719,-0.219001,0.266091,0.329051,-0.745415,0.579699,0.200934,-0.777825,0.595447,0.410901,-0.725974,0.551439,0.412580,-0.688559,0.596332,0.776696,-0.252541,0.576983,0.739982,-0.333354,0.584155,0.885525,0.087466,0.456252,0.873623,0.009613,0.486465,-0.248787,0.042360,0.967620,-0.271126,0.067873,0.960143,-0.198462,-0.032746,0.979553,-0.073000,-0.066225,0.995117,-0.055330,0.010193,0.998413,-0.030915,0.071688,0.996918,0.020631,-0.738731,0.673666,-0.025391,-0.626789,0.778741,0.232551,-0.441664,0.866482,0.318522,-0.569933,0.757408,-0.068606,-0.510758,0.856960,0.145299,-0.353191,0.924192,0.440992,-0.181860,0.878872,0.495163,-0.252449,0.831294,0.566424,-0.366894,0.737907,0.594745,-0.514847,0.617359,0.388165,-0.681783,0.620045,0.641652,-0.594806,0.484207,0.456069,-0.747551,0.482803,0.136601,-0.888089,0.438856,0.072848,-0.825587,0.559526,0.476211,0.442061,0.760094,0.492843,0.379528,0.782952,0.477279,0.305979,0.823725,0.443800,0.408734,0.797449,0.509781,0.252907,0.822260,0.499832,0.163488,0.850520,0.457198,0.072726,0.886349,0.485000,0.219581,0.846461,0.467238,0.375988,0.800165,0.428449,0.437422,0.790613,0.577013,0.305612,0.757378,0.494278,0.435224,0.752464,0.579852,0.397290,0.711264,0.553056,0.359722,0.751457,0.529160,0.392285,0.752373,0.548509,0.439314,0.711417,0.525864,0.288797,0.800012,0.505844,0.299020,0.809107,0.641713,0.202338,0.739738,0.579730,0.397565,0.711203,0.658040,0.149144,0.738029,0.616962,0.348949,0.705374,0.633808,-0.461715,0.620533,0.739036,-0.120640,0.662740,0.557909,-0.460433,0.690420,0.614612,0.209937,0.760338,0.478988,0.109165,0.870998,0.655660,0.118809,0.745628,0.545335,0.054231,0.836451,0.288919,-0.079897,0.954009,0.176244,-0.024934,0.984008,0.595569,-0.267464,0.757439,0.607990,-0.132023,0.782861,0.591906,-0.036683,0.805139,0.659200,-0.049928,0.750267,0.376965,-0.141270,0.915372,0.211921,-0.656941,0.723502,0.386090,-0.597064,0.703116,0.219153,-0.423536,0.878964,0.456984,-0.279092,0.844539,0.488601,-0.392804,0.779046,0.335368,0.064394,0.939848,0.432447,0.506851,0.745689,0.680563,0.333415,0.652394,0.549181,0.012391,0.835566,0.659658,-0.168737,0.732353,0.587451,-0.260445,0.766167,0.810755,0.066347,0.581591,0.837519,-0.179266,0.516098,0.683737,-0.339091,0.646138,0.593738,-0.235481,0.769402,0.616901,-0.221595,0.755181,0.666616,0.140049,0.732109,0.631367,0.292001,0.718375,0.590625,0.328196,0.737144,0.553270,0.313028,0.771905,0.519700,0.263527,0.812647,-0.259133,0.184515,0.948027,-0.198370,0.165563,0.966033,-0.005219,0.214881,0.976623,0.000519,0.435713,0.900052,-0.184027,0.386700,0.903653,-0.176733,0.300058,0.937376,0.103610,0.186651,0.976928,0.378399,0.190130,0.905881,0.106235,0.248421,0.962798,0.395184,0.181616,0.900449,-0.054903,0.361064,0.930906,-0.029786,0.258797,0.965453,-0.009003,0.405072,0.914212,0.217627,0.168706,0.961333,0.442122,0.105838,0.890652,0.451186,-0.013489,0.892300,0.490951,0.060549,0.869076,0.457259,0.095096,0.884213,0.489517,0.130711,0.862117,0.495010,0.181616,0.849666,0.488144,0.195502,0.850551,0.492325,0.177709,0.852046,0.479843,0.026368,0.876949,0.521287,-0.071108,0.850398,0.518265,0.085147,0.850948,0.467574,-0.177923,0.865841,0.481338,-0.022736,0.876217,0.362621,-0.294504,0.884152,0.402600,-0.115116,0.908078,0.451064,-0.049532,0.891079,0.511338,0.104221,0.853023,0.428602,-0.185705,0.884182,0.496780,-0.042817,0.866787,0.268197,-0.416395,0.868709,0.357952,-0.235298,0.903592,0.197821,-0.523637,0.828639,0.324595,-0.351726,0.877987,0.216681,-0.597613,0.771905,0.361370,-0.451979,0.815516,0.072573,-0.728019,0.681692,0.478164,-0.302622,0.824458,0.527909,-0.179296,0.830134,0.473220,-0.098178,0.875423,0.255806,-0.942869,0.213324,0.271371,-0.935514,0.226112,0.554979,-0.813929,0.171728,0.526017,-0.838069,0.144658,0.258583,-0.930204,0.260414,0.554399,-0.799371,0.231544,0.749168,-0.638173,0.177343,0.734642,-0.675802,0.059755,0.654805,-0.755730,0.008515,0.703726,-0.632008,0.324503,0.518662,-0.785363,0.337809,0.207984,-0.921567,0.327708,0.811609,-0.364788,0.456282,0.678823,-0.474837,0.560076,0.765831,-0.499100,0.405408,0.681356,-0.564287,0.466140,0.729911,-0.609729,0.308878,0.732994,-0.590136,0.338206,0.707358,-0.702963,0.073977,0.799158,-0.585406,0.136479,0.623737,-0.750938,-0.216712,0.768883,-0.633168,-0.088809,0.529710,-0.805139,-0.266610,0.631764,-0.761315,-0.145695,0.621784,-0.527299,0.579058,0.524003,-0.693075,0.494980,0.630726,-0.539201,0.558000,0.752647,-0.324625,0.572771,0.341319,-0.917020,0.206183,0.328776,-0.843776,0.424177,0.562059,-0.779900,0.275307,0.500778,-0.830622,0.243355,0.538194,-0.715232,0.445814,0.558885,-0.677877,0.477584,0.617542,-0.527146,0.583728,0.584552,-0.510056,0.630909,0.523392,-0.851802,0.021088,0.587085,-0.803949,0.094577,0.404523,-0.904904,-0.132237,0.489731,-0.845668,0.212073,0.216407,-0.926695,0.307169,0.466414,-0.796014,0.385723,0.166814,-0.852870,0.494705,0.459212,-0.661184,0.593249,0.136082,-0.688406,0.712424,0.454665,-0.461928,0.761467,0.104892,-0.428205,0.897549,0.485702,-0.126347,0.864925,0.072726,-0.059664,0.995544,0.686178,-0.197668,0.700003,0.756584,0.195288,0.624043,0.514542,0.284310,0.808924,0.062166,0.345042,0.936521,0.760796,-0.243690,0.601489,0.859249,0.101749,0.501297,0.777276,0.495041,0.388256,0.767296,0.420576,0.484085,0.860439,0.366710,0.353740,0.838557,0.487899,0.242317,0.880856,0.344890,0.324198,0.832667,0.506851,0.222968,0.783746,0.496628,0.372906,0.772240,0.498428,0.393933,0.533067,0.581866,0.614185,0.516587,0.609394,0.601428,0.776086,0.470260,0.420087,0.557634,0.528001,0.640492,0.114750,0.567919,0.815027,0.122837,0.612812,0.780602,0.117588,0.636250,0.762444,0.514634,0.606250,0.606281,0.789819,0.494827,0.362285,0.104282,0.638478,0.762505,0.088900,0.624165,0.776208,0.516526,0.580981,0.628986,0.516709,0.509598,0.687918,0.072024,0.563524,0.822932,-0.121372,-0.149968,0.981201,-0.029817,-0.240669,0.970122,-0.136662,-0.327830,0.934782,-0.109561,-0.181036,0.977325,0.062349,-0.302591,0.951048,-0.114261,-0.434706,0.893277,0.878445,0.242866,0.411451,0.826930,0.352977,0.437635,0.837672,0.281289,0.468123,0.887722,0.175512,0.425581,0.988403,-0.015717,0.150914,0.986847,-0.068361,0.146428,0.976806,0.006409,0.213874,0.976287,-0.032777,0.213904,0.960051,0.006012,0.279672,0.962889,-0.057375,0.263710,0.976440,-0.085482,0.198065,0.948698,0.039338,0.313669,0.957823,-0.015259,0.286843,0.969787,-0.067537,0.234382,0.984527,-0.113163,0.133732,0.986724,-0.098880,0.128697,0.987091,-0.138981,0.079196,0.936338,0.009583,0.350871,0.956084,0.009400,0.292856,0.685324,0.060427,0.725700,0.664022,0.194830,0.721854,0.760552,0.153264,0.630909,0.758843,0.093081,0.644551,0.665120,0.265603,0.697867,0.764336,0.174718,0.620655,0.725272,-0.210120,0.655599,0.808374,-0.231239,0.541307,0.666341,-0.020386,0.745354,0.767968,-0.098086,0.632923,0.859127,-0.096957,0.502457,0.637196,0.151097,0.755730,0.620991,0.261574,0.738853,0.460341,0.472915,0.751244,0.348613,0.387127,0.853572,0.505234,0.455092,0.733177,0.591540,0.461867,0.660848,0.155034,0.179601,0.971435,0.308847,0.293252,0.904752,0.461104,0.407544,0.788171,0.634877,0.499985,0.588977,0.693167,0.453230,0.560381,0.799402,0.321879,0.507248,0.776116,0.380291,0.502976,0.723136,0.332743,0.605243,0.707938,0.378124,0.596515,0.746910,0.463363,0.476821,0.876217,0.316721,0.363201,0.852596,0.284799,0.438093,0.823267,0.309183,0.475997,0.872402,0.294320,0.390149,0.795068,0.233436,0.559771,0.752770,0.285348,0.593158,0.858486,0.379406,0.344951,0.841304,0.263405,0.471999,0.877102,0.279000,0.390912,0.879971,0.343760,0.327769,0.891629,0.320933,0.319315,0.906461,0.330210,0.263100,0.973113,-0.196600,-0.119907,0.994842,-0.017121,0.099765,0.927396,-0.368053,-0.066561,0.858547,-0.008179,0.512650,0.820582,-0.571276,0.016541,0.879391,-0.283303,0.382550,0.642445,0.193854,0.741386,0.456954,0.281930,0.843593,0.196173,0.131687,0.971679,0.459090,0.173162,0.871334,0.265419,0.236518,0.934660,0.117557,0.154424,0.980956,0.808100,0.188482,0.558031,0.970855,0.187628,0.149052,0.828974,0.110446,0.548235,0.486251,0.120701,0.865413,0.498459,0.397778,0.770226,0.482620,0.308359,0.819727,0.365642,0.334910,0.868374,0.380718,0.428083,0.819605,0.465651,0.188360,0.864650,0.303079,0.205359,0.930540,0.213172,0.234291,0.948485,0.290384,0.346263,0.892026,0.312479,0.428480,0.847774,0.558916,0.135350,0.818079,0.289132,0.120182,0.949705,0.134831,0.138157,0.981170,0.886349,0.411359,0.212439,0.966308,0.242012,0.087497,0.943663,0.329295,0.031617,0.848354,0.500168,0.173437,0.930235,0.365398,0.033479,0.829005,0.532731,0.169988,0.926481,0.239357,0.290323,0.878658,0.337321,0.337809,0.830470,0.497299,0.250954,0.984497,0.043886,0.169774,0.839900,0.492141,0.228706,0.850520,0.459670,0.255501,0.810114,0.546464,0.212226,0.899991,0.378582,0.215918,0.868679,0.453658,0.198889,0.882900,0.396405,0.251564,0.882321,0.408643,0.233406,0.874538,0.394879,0.281442,0.830897,0.520249,0.197211,0.859645,0.461562,0.218909,0.800226,0.559862,0.214820,0.883755,0.318125,0.343089,0.917600,0.380200,0.115940,0.765893,0.209174,0.607959,0.661061,0.198523,0.723563,0.632649,0.279336,0.722282,0.625385,0.355052,0.694815,0.616016,0.407697,0.673971,0.492904,0.452437,0.743156,0.235145,0.446089,0.863521,0.143895,0.277078,0.949980,0.209449,0.317454,0.924833,0.323862,0.475173,0.818110,0.088565,0.089755,0.992004,0.075381,0.104953,0.991607,0.368603,0.486648,0.792016,0.298898,0.482437,0.823328,0.103122,0.143071,0.984313,0.189947,0.235054,0.953215,0.114841,0.154851,0.981231,0.202338,0.216773,0.955016,0.262703,0.339152,0.903287,0.287332,0.413129,0.864132,0.283975,0.309183,0.907590,0.311289,0.376446,0.872555,0.179998,0.149449,0.972228,0.261757,0.184759,0.947264,0.293527,0.119449,0.948454,0.372265,0.133732,0.918424,0.413160,0.087252,0.906430,0.485916,0.085299,0.869808,0.512406,0.051180,0.857204,0.573321,0.047151,0.817957,0.484878,0.227180,0.844539,0.465255,0.185247,0.865535,0.583758,0.115574,0.803644,0.607990,0.129124,0.783319,0.667379,0.064333,0.741905,0.382641,0.315348,0.868374,0.352123,0.258095,0.899655,0.403180,0.249977,0.880276,0.292245,0.307657,0.905484,0.345836,0.319041,0.882351,0.443159,0.239631,0.863796,0.210456,0.364910,0.906919,0.276162,0.394696,0.876278,0.520920,0.187109,0.832820,0.570544,0.146916,0.808008,0.508042,0.298654,0.807855,0.461074,0.303781,0.833705,0.479324,0.257851,0.838893,0.547105,0.221076,0.807306,0.399335,0.290384,0.869564,0.389141,0.291543,0.873806,0.318217,0.253029,0.913602,0.283670,0.306040,0.908750,0.229743,0.188452,0.954802,0.191443,0.291940,0.937071,0.200354,0.405133,0.891995,0.264321,0.451247,0.852321,0.151280,0.122593,0.980834,0.151616,0.271126,0.950499,0.177343,-0.050111,0.982849,0.286081,0.045686,0.957091,0.050569,-0.117435,0.991760,0.615009,0.301370,0.728629,0.559496,0.299020,0.773003,0.610462,0.193030,0.768120,0.688620,0.178899,0.702658,0.742119,0.174413,0.647145,0.650655,0.292093,0.700919,0.593799,0.319407,0.738487,0.565905,0.352977,0.745079,0.538713,0.353648,0.764641,0.502640,0.318217,0.803766,0.371685,0.130680,0.919095,0.447584,0.211219,0.868923,0.481155,0.277291,0.831599,-0.037873,-0.124943,0.991424,-0.039399,-0.068026,0.996887,0.051668,0.039430,0.997864,0.159276,0.158025,0.974487,0.796686,0.408521,0.445326,0.569323,0.467818,0.675985,0.815912,0.336039,0.470412,0.550768,0.437788,0.710593,0.042695,0.520005,0.853084,0.086184,0.535264,0.840266,0.870296,0.375347,0.318796,0.876858,0.319102,0.359539,0.889096,0.258614,0.377606,0.819849,0.293252,0.491714,0.513138,0.440474,0.736625,0.495315,0.468520,0.731498,-0.010468,0.557176,0.830317,0.008728,0.519211,0.854579,0.005585,0.545824,0.837855,-0.011719,0.590686,0.806787,0.514908,0.507096,0.691153,0.539689,0.467055,0.700400,0.030793,0.032228,0.998993,0.452589,-0.065035,0.889309,0.282998,-0.378002,0.881466,-0.005799,-0.229865,0.973174,0.700064,-0.242958,0.671438,0.483718,-0.556658,0.675344,0.273812,-0.646321,0.712210,0.107059,-0.438734,0.892209,-0.042634,-0.313242,0.948698,0.530595,0.282022,0.799310,0.828211,0.077822,0.554949,0.028474,0.353587,0.934935,0.177648,-0.881527,0.437391,0.392621,-0.802698,0.448866,0.215339,-0.825190,0.522141,0.116764,-0.911740,0.393780,0.646321,-0.605853,0.463851,0.325083,-0.675375,0.661946,0.804498,0.432356,0.407208,0.910550,0.263314,0.318644,0.710715,0.399243,0.579180,0.815882,0.291543,0.499313,0.901120,0.019440,0.433088,0.953764,0.058748,0.294687,0.715201,0.503769,0.484390,0.601428,0.441267,0.665975,0.283914,0.237983,0.928831,0.414716,0.278878,0.866146,0.506577,0.300699,0.808039,0.570574,0.065859,0.818567,0.484115,-0.398053,0.779199,0.840052,-0.329417,0.430952,0.910764,-0.150456,0.384472,0.759697,-0.430219,0.487594,0.511429,-0.694388,0.506180,0.289407,-0.794214,0.534227,0.093326,-0.264657,0.959807,0.145848,-0.492904,0.857753,0.205542,-0.631855,0.747307,0.203864,-0.326487,0.922941,0.162297,-0.710654,0.684530,0.263009,-0.335978,0.904386,0.020020,0.192846,0.981017,0.007782,0.214545,0.976653,0.007904,0.253700,0.967223,0.082583,0.210334,0.974120,-0.000214,0.298257,0.954466,-0.044801,0.300790,0.952605,0.053316,0.290963,0.955229,0.094699,0.304239,0.947844,0.165807,0.236427,0.957366,-0.006592,0.068972,0.997589,-0.038942,0.052278,0.997864,-0.023164,-0.215247,0.976257,-0.021302,-0.206671,0.978149,0.066408,-0.002747,0.997772,0.233955,0.311777,0.920865,0.276040,0.243202,0.929838,0.224891,0.252235,0.941160,0.385113,0.211982,0.898160,0.395154,0.275369,0.876339,0.419630,0.216437,0.881497,0.579974,0.208838,0.787378,0.502396,0.199377,0.841304,0.441084,-0.021363,0.897183,0.507645,0.057039,0.859645,0.347240,-0.059786,0.935850,0.331034,-0.316202,0.889035,0.174261,-0.758476,0.627918,0.743645,0.171422,0.646199,0.605304,0.139714,0.783593,0.766442,0.180151,0.616474,0.661306,0.209357,0.720267,0.677084,0.174200,0.714957,0.606342,0.198248,0.770074,0.767815,0.128056,0.627705,0.783441,0.104587,0.612568,0.709342,0.143406,0.690115,0.641102,0.151189,0.752373,0.821375,0.184912,0.539567,0.868313,0.095431,0.486709,0.843013,0.041200,0.536241,0.870846,0.018433,0.491165,0.892941,0.016694,0.449843,0.856807,0.119510,0.501541,0.892850,0.019166,0.449904,0.891507,0.090945,0.443739,0.853908,0.134495,0.502731,0.871120,-0.099521,0.480850,0.896634,0.022919,0.442122,0.892972,0.040345,0.448256,0.914029,0.018281,0.405164,0.889065,0.046876,0.455336,0.926328,0.059694,0.371929,0.809046,0.001312,0.587725,0.870357,-0.006623,0.492355,0.866970,0.043947,0.496384,0.932035,0.027650,0.361278,0.891751,0.054262,0.449232,0.881405,0.069643,0.467147,0.848140,0.080447,0.523576,0.121403,0.385418,0.914701,0.022034,0.395306,0.918271,0.217200,0.378552,0.899716,0.251228,0.557024,0.791559,0.135533,0.560350,0.817042,0.014069,0.568957,0.822230,0.327860,0.374279,0.867397,0.456862,0.358562,0.814051,0.486312,0.533464,0.692007,0.370190,0.551134,0.747765,0.000946,0.688437,0.725272,0.143834,0.675863,0.722831,0.274087,0.664266,0.695395,0.392193,0.645589,0.655232,0.501877,0.614093,0.609058,0.703299,0.432112,0.564440,0.774041,0.367748,0.515336,0.764092,0.442183,0.469710,0.696585,0.507614,0.506974,0.604846,0.491592,0.626453,0.608936,0.565477,0.556230,0.758232,0.250252,0.601978,0.689047,0.285348,0.666128,0.545457,0.178625,0.818842,0.584704,0.325694,0.742943,0.522263,0.230201,0.821100,0.223304,-0.053285,0.973266,-0.043458,-0.309000,0.950041,0.005280,-0.343455,0.939146,-0.946837,0.051393,0.317545,-0.948393,0.146794,0.280984,-0.976745,0.046907,0.209082,-0.972442,0.002228,0.233039,-0.988220,-0.016114,0.152043,-0.987671,-0.024323,0.154515,-0.990539,-0.043916,0.129826,-0.993164,-0.044740,0.107639,-0.189825,-0.473952,0.859828,-0.043123,-0.443953,0.894986,-0.229469,-0.221931,0.947661,-0.090701,-0.233467,0.968108,0.019898,-0.223334,0.974517,0.079775,-0.392987,0.916044,-0.621143,-0.224677,0.750755,-0.618793,-0.076754,0.781762,-0.613300,-0.139348,0.777429,-0.587359,0.006623,0.809259,-0.572436,0.082522,0.815760,-0.645131,-0.046510,0.762627,-0.679586,-0.100070,0.726707,-0.574786,0.103549,0.811701,-0.574786,0.060915,0.816004,-0.672109,-0.265633,0.691153,-0.586932,-0.431379,0.685080,-0.547258,-0.013581,0.836818,-0.493057,-0.101382,0.864040,-0.482833,-0.505539,0.715018,-0.365154,-0.506241,0.781243,-0.393963,-0.182318,0.900845,-0.651234,-0.405133,0.641652,-0.636494,-0.376629,0.673025,-0.650960,-0.382153,0.655873,-0.633656,-0.291360,0.716636,0.207251,0.083346,0.974700,0.288369,-0.028809,0.957060,0.313303,-0.033082,0.949065,-0.196173,-0.019654,0.980346,-0.100894,-0.304239,0.947203,0.001251,-0.501694,0.865017,0.299692,-0.246895,0.921506,0.419660,-0.096896,0.902463,0.024720,-0.055544,0.998138,0.116337,-0.043367,0.992248,-0.179022,0.128117,0.975433,-0.192572,0.093448,0.976806,0.192114,-0.293008,0.936583,0.119785,-0.175451,0.977142,0.132694,-0.138005,0.981475,0.201666,-0.187567,0.961303,0.144719,-0.072909,0.986755,0.076540,-0.083987,0.993500,-0.002655,0.066164,0.997803,0.122288,0.091983,0.988189,0.064547,0.113926,0.991363,-0.110141,0.175451,0.978301,-0.012757,-0.322062,0.946623,-0.104007,-0.567431,0.816797,-0.260872,-0.448042,0.855068,-0.190313,-0.385418,0.902890,-0.305704,-0.374432,0.875393,-0.458724,-0.096377,0.883297,-0.608600,-0.015625,0.793298,-0.428144,-0.395337,0.812616,-0.373547,-0.423414,0.825312,-0.549120,-0.421003,0.721946,-0.509507,-0.449812,0.733512,-0.747948,-0.067690,0.660237,-0.817530,-0.171972,0.549577,-0.624989,-0.466842,0.625629,-0.596820,-0.461898,0.656056,-0.719871,-0.372082,0.585894,-0.644948,-0.454787,0.614124,-0.645955,-0.421766,0.636250,-0.742454,-0.374462,0.555437,-0.739860,-0.361858,0.567095,-0.678274,-0.408856,0.610523,-0.650685,-0.481491,0.587146,-0.672201,-0.430708,0.602130,-0.802881,-0.279824,0.526353,0.250893,-0.258522,0.932829,0.082461,-0.545671,0.833918,-0.005646,-0.623981,0.781365,0.135166,-0.268899,0.953612,-0.068331,-0.767907,0.636860,-0.123508,-0.764214,0.632984,0.198309,-0.399396,0.895047,0.348399,-0.208350,0.913877,-0.021455,-0.616749,0.786828,0.367412,-0.064547,0.927793,0.421888,-0.101352,0.900937,0.416272,-0.017609,0.909055,0.460158,-0.044923,0.886685,-0.007782,0.047792,0.998810,0.232673,0.023164,0.972259,0.005402,0.068941,0.997589,0.291238,0.034730,0.955992,-0.478591,-0.196905,0.855647,-0.271676,-0.051210,0.960997,-0.574816,-0.063967,0.815729,-0.343089,0.025758,0.938932,-0.691305,-0.299753,0.657399,-0.614887,-0.287515,0.734306,-0.779321,-0.147588,0.608966,-0.705161,-0.118442,0.699057,-0.761254,-0.274758,0.587329,-0.804651,-0.270577,0.528459,-0.824183,-0.316904,0.469314,-0.810999,-0.205237,0.547807,-0.802881,-0.443281,0.398541,-0.816675,-0.328471,0.474441,-0.827174,0.108341,0.551378,-0.829218,0.094485,0.550829,-0.915464,0.020936,0.401837,-0.909726,-0.003845,0.415143,-0.837245,0.039796,0.545335,-0.906796,0.029633,0.420454,-0.953673,-0.028443,0.299448,-0.959441,-0.047121,0.277902,-0.949889,-0.063173,0.306070,-0.759941,0.112491,0.640126,-0.805109,0.109165,0.582965,-0.882748,-0.023804,0.469192,-0.828272,-0.035432,0.559160,-0.919950,-0.076388,0.384503,-0.869076,-0.081088,0.487960,-0.758202,-0.002441,0.651997,-0.687674,0.039949,0.724876,-0.762932,-0.018769,0.646199,-0.815485,-0.057711,0.575854,-0.597491,0.186468,0.779870,-0.686941,0.131596,0.714652,-0.472488,0.016358,0.881161,-0.439741,0.018555,0.897916,-0.388714,0.133732,0.911588,-0.355968,0.091372,0.929991,-0.449812,-0.012299,0.893033,-0.445082,0.131108,0.885830,-0.393292,0.284219,0.874355,-0.297525,0.229438,0.926725,-0.213263,0.136418,0.967406,-0.364849,0.347331,0.863826,-0.230659,0.265938,0.935972,-0.645863,0.112003,0.755150,-0.409986,0.204199,0.888913,-0.145817,0.132786,0.980346,-0.106174,0.153264,0.982452,-0.818232,-0.270913,0.507004,-0.919156,0.121769,0.374554,-0.931120,0.155797,0.329691,-0.907956,-0.078219,0.411634,-0.893857,0.326243,0.307474,-0.887478,0.378857,0.262246,-0.894253,0.390362,0.218848,-0.948210,0.166662,0.270363,-0.940245,-0.000763,0.340465,-0.837764,-0.324137,0.439375,-0.565325,-0.568865,0.597278,-0.939940,-0.131993,0.314676,-0.919736,-0.285348,0.269448,-0.767144,-0.491592,0.412061,-0.177313,-0.731254,0.658620,0.021607,-0.461318,0.886959,0.303385,-0.597980,0.741844,0.212165,-0.784295,0.582934,0.003357,-0.675680,0.737175,-0.258858,-0.823695,0.504471,-0.303140,-0.896817,0.322092,0.079623,-0.858669,0.506302,-0.142430,-0.634114,0.759972,-0.123142,0.472884,0.872433,0.422163,0.209204,0.882015,0.405957,-0.242653,0.881069,-0.049318,0.013489,0.998688,0.716208,-0.168676,0.677145,0.399243,-0.550645,0.733024,0.032746,-0.727500,0.685293,0.663198,-0.547960,0.509751,0.370006,-0.833796,0.409650,-0.344890,-0.722373,0.599292,-0.891537,0.364971,0.268136,-0.902158,0.329814,0.277993,-0.927854,0.270974,0.256172,-0.947050,0.233833,0.219916,-0.899564,0.295755,0.321360,-0.907193,0.262215,0.328898,-0.816034,0.337352,0.469283,-0.847468,0.340037,0.407605,-0.904263,0.195257,0.379620,0.002899,0.123539,0.992309,-0.037965,0.096591,0.994598,-0.339885,0.193213,0.920377,-0.289193,0.180242,0.940123,-0.080386,0.057405,0.995086,-0.387066,0.176885,0.904904,-0.546800,0.285775,0.786950,-0.491317,0.282113,0.824000,-0.445235,0.234962,0.864009,0.054750,-0.915189,0.399243,-0.534471,-0.624592,0.569353,-0.159581,-0.890042,0.426984,-0.611835,-0.518784,0.597034,-0.830714,-0.092746,0.548875,-0.842250,-0.187139,0.505509,-0.627003,-0.474410,0.617847,-0.810327,-0.072604,0.581439,-0.240638,-0.863460,0.443251,-0.242866,-0.910215,0.335398,-0.611225,-0.521561,0.595264,-0.773705,-0.110630,0.623798,0.083895,-0.032380,0.995941,0.142949,0.023194,0.989441,0.183660,0.086764,0.979125,-0.357585,-0.391675,0.847743,-0.168310,-0.521653,0.836360,-0.215278,-0.617084,0.756828,-0.421674,-0.456038,0.783685,-0.254250,-0.729148,0.635334,-0.520280,-0.535905,0.664876,-0.221107,-0.900540,0.374279,-0.256569,-0.826899,0.500351,-0.543413,-0.777276,0.317026,-0.539476,-0.689352,0.483413,-0.425214,0.043062,0.904050,-0.467422,0.133702,0.873836,-0.468337,0.270882,0.840968,-0.447645,0.190924,0.873562,-0.523606,0.212775,0.824946,-0.507431,0.323008,0.798822,-0.511856,0.402997,0.758660,-0.447279,0.369793,0.814356,-0.566637,0.298410,0.767998,-0.484146,0.356120,0.799219,-0.595965,-0.377453,0.708731,-0.703238,-0.160466,0.692587,-0.552232,0.274392,0.787194,-0.549547,0.354656,0.756401,-0.538621,0.289163,0.791345,-0.557146,0.361156,0.747734,-0.563219,0.378491,0.734489,-0.554949,0.396008,0.731559,-0.570116,0.282266,0.771538,-0.582293,0.255348,0.771783,-0.527787,-0.022126,0.849055,-0.495865,-0.301981,0.814173,-0.362041,-0.380840,0.850765,-0.167974,-0.769616,0.615986,-0.373821,-0.858791,0.350230,-0.191992,-0.132908,0.972320,-0.487594,0.088137,0.868587,-0.433271,0.124302,0.892636,-0.121952,-0.031190,0.992035,-0.634175,0.179144,0.752129,-0.598346,0.255379,0.759423,-0.287881,-0.271645,0.918302,-0.544572,-0.080691,0.834803,-0.566851,-0.271828,0.777642,-0.652516,-0.245399,0.716910,-0.656728,-0.021668,0.753777,-0.611225,-0.314707,0.726157,-0.457869,-0.358562,0.813471,-0.471145,-0.493789,0.730857,-0.623066,-0.360149,0.694296,-0.556139,-0.349956,0.753777,-0.697684,0.318705,0.641560,-0.507462,0.473464,0.719901,-0.499100,0.053285,0.864895,-0.656545,-0.042421,0.753075,-0.801508,-0.050935,0.595752,-0.771996,0.120029,0.624165,-0.683828,-0.184027,0.706015,-0.694784,-0.331523,0.638203,-0.602924,-0.354472,0.714682,-0.577746,-0.339854,0.742058,-0.615436,-0.079073,0.784173,-0.619892,0.155614,0.769066,-0.589618,0.304605,0.748009,-0.556719,0.350444,0.753136,-0.528489,0.337779,0.778832,-0.497971,0.271310,0.823634,0.186865,0.192145,0.963378,0.129154,0.378521,0.916532,0.033998,0.185400,0.982055,0.007080,0.298441,0.954375,-0.257912,0.196112,0.946013,-0.278085,0.232154,0.932066,-0.420057,0.196326,0.885983,-0.427808,0.185278,0.884640,-0.011658,0.350627,0.936430,-0.126499,0.231422,0.964568,-0.326884,0.131840,0.935789,-0.428938,0.072756,0.900388,-0.476150,0.142949,0.867641,-0.464064,0.003296,0.885769,-0.514573,0.065279,0.854946,-0.499680,-0.098849,0.860530,-0.471358,0.191534,0.860866,-0.510056,0.167699,0.843623,-0.491287,-0.169256,0.854366,-0.526353,-0.047456,0.848903,-0.531968,0.110721,0.839473,-0.511948,0.020173,0.858760,-0.337107,-0.159795,0.927793,-0.417219,-0.067660,0.906247,-0.242378,-0.349925,0.904843,-0.362926,-0.268288,0.892331,-0.442701,-0.089022,0.892209,-0.467025,0.059816,0.882199,-0.374035,-0.208838,0.903562,-0.421827,-0.086337,0.902524,-0.263771,-0.330363,0.906217,-0.308359,-0.258980,0.915311,-0.096622,-0.456404,0.884487,-0.180975,-0.413770,0.892178,0.102115,-0.659993,0.744285,-0.039033,-0.599994,0.799005,-0.144871,-0.531632,0.834468,-0.306681,-0.463240,0.831446,-0.454787,-0.356670,0.816034,-0.505417,-0.223792,0.833308,-0.443800,-0.884823,0.141728,-0.103763,-0.965758,0.237678,-0.081240,-0.971526,0.222510,-0.380596,-0.912381,0.150517,-0.101444,-0.969115,0.224616,-0.361553,-0.912412,0.191626,-0.160710,-0.948790,0.271859,-0.511063,-0.839900,0.182653,-0.786737,-0.542131,0.295144,-0.733329,-0.461409,0.499283,-0.936369,-0.200903,0.287759,-0.849940,-0.163732,0.500748,-0.744530,-0.666341,-0.040468,-0.804102,-0.589679,0.075076,-0.898862,-0.329234,-0.289193,-0.974090,-0.217750,-0.060671,-0.538347,-0.839839,0.069247,-0.639943,-0.768059,-0.022553,-0.672689,-0.721702,-0.163030,-0.788568,-0.537065,-0.299448,-0.304575,-0.946654,0.104953,-0.558824,-0.629261,0.540117,-0.517441,-0.855647,0.008881,-0.519608,-0.684744,0.510971,-0.559252,-0.504349,0.657888,-0.649281,-0.361980,0.668844,-0.510483,-0.673360,0.534745,-0.553941,-0.468123,0.688437,-0.484787,-0.801263,0.350597,-0.403272,-0.804224,0.436476,-0.444105,-0.663442,0.602100,-0.492965,-0.427808,0.757561,-0.645741,-0.741234,-0.183081,-0.483566,-0.852260,0.199469,-0.375805,-0.877346,0.298288,-0.152196,-0.931913,0.329142,-0.204810,-0.844539,0.494736,-0.247536,-0.679250,0.690878,-0.292550,-0.405011,0.866207,-0.588275,0.198279,0.783959,-0.549303,-0.107852,0.828608,-0.343181,-0.043886,0.938231,-0.358043,0.300974,0.883847,-0.637989,-0.209754,0.740898,-0.723655,0.069552,0.686636,-0.771905,0.308725,0.555712,-0.850490,0.265877,0.453810,-0.607562,0.390515,0.691580,-0.625202,0.475570,0.618793,-0.799158,0.419935,0.430036,-0.860653,0.412275,0.298776,-0.406140,0.538408,0.738304,-0.350230,0.600085,0.719169,-0.710013,0.479751,0.515427,-0.674306,0.538591,0.505142,-0.655171,0.549883,0.517991,-0.310343,0.614643,0.725150,-0.299814,0.593890,0.746574,-0.311655,0.566485,0.762841,-0.642689,0.513779,0.568285,-0.336344,0.493118,0.802271,-0.053682,-0.302591,0.951598,0.017609,-0.129032,0.991455,-0.119083,-0.442061,0.889004,-0.852077,0.310617,0.421277,-0.831080,0.399335,0.387005,-0.897916,0.276284,0.342570,-0.909177,0.180303,0.375286,-0.996918,-0.032258,0.071444,-0.988739,-0.008362,0.149297,-0.997986,-0.038850,0.049745,-0.990997,-0.009369,0.133457,-0.948759,0.005463,0.315928,-0.974670,-0.031373,0.221290,-0.974273,-0.079226,0.210944,-0.954161,0.047395,0.295480,-0.974151,0.026795,0.224250,-0.989471,-0.059664,0.131779,-0.985961,-0.121555,0.114383,-0.996490,-0.070315,0.045259,-0.992248,-0.121311,0.025880,-0.970092,0.013733,0.242286,-0.953551,0.027619,0.299936,-0.704306,0.187262,0.684713,-0.722251,0.095157,0.685018,-0.639515,0.129673,0.757714,-0.669362,-0.019837,0.742637,-0.724723,-0.189215,0.662526,-0.768975,-0.041353,0.637898,-0.682333,-0.318339,0.658040,-0.769036,-0.317789,0.554552,-0.838435,-0.195166,0.508835,-0.869472,-0.169652,0.463851,-0.916135,-0.053774,0.397198,-0.651662,-0.174322,0.738182,-0.625874,-0.010315,0.779809,-0.591906,0.462935,0.659780,-0.452681,0.468154,0.758873,-0.591388,0.569475,0.570879,-0.695029,0.546831,0.466720,-0.317972,0.412549,0.853633,-0.480087,0.547288,0.685507,-0.557756,0.544939,0.625996,-0.647481,0.536790,0.540910,-0.732078,0.507248,0.454634,-0.752739,0.450484,0.479965,-0.829676,0.405072,0.384075,-0.805780,0.463881,0.368084,-0.766961,0.411023,0.492752,-0.842860,0.362987,0.397229,-0.783990,0.379711,0.491043,-0.844142,0.347148,0.408490,-0.813562,0.344127,0.468673,-0.848872,0.355174,0.391430,-0.871883,0.335582,0.356609,-0.885464,0.294778,0.359142,-0.868465,0.340831,0.359935,-0.867000,0.372936,0.330454,-0.851588,0.295236,0.433088,-0.876858,0.299875,0.375683,-0.895413,0.313700,0.315836,-0.877041,0.377483,0.297067,-0.983886,0.005768,0.178594,-0.950896,-0.276193,0.139653,-0.986480,0.141270,0.082858,-0.971923,-0.235206,-0.003204,-0.760033,-0.575823,0.301187,-0.759850,-0.628864,0.164708,-0.734764,-0.625629,0.262032,-0.934324,-0.258705,0.245033,-0.866207,-0.017823,0.499313,-0.998688,-0.012513,0.049043,-0.870266,0.095798,0.483108,-0.495621,0.063448,0.866207,-0.963988,0.259285,0.058779,-0.865139,0.448683,0.223945,-0.849727,0.382183,0.363079,-0.919187,0.271310,0.285379,-0.355144,0.164953,0.920103,-0.576708,0.205847,0.790551,-0.541307,0.342265,0.767968,-0.381481,0.339366,0.859798,-0.712607,0.258492,0.652150,-0.668752,0.349071,0.656423,-0.632771,0.416456,0.652760,-0.524979,0.429060,0.735008,-0.397839,0.452132,0.798303,-0.737541,0.177892,0.651387,-0.509354,0.088198,0.856014,-0.785455,0.259957,0.561632,-0.797693,0.536515,0.275277,-0.798059,0.533799,0.279458,-0.840846,0.440168,0.314951,-0.830592,0.484512,0.274392,-0.816157,0.523820,0.243843,-0.838557,0.479202,0.259133,-0.861110,0.443403,0.248634,-0.868587,0.279031,0.409406,-0.874264,0.271096,0.402661,-0.897427,0.185766,0.400067,-0.909299,0.329539,0.254036,-0.890835,0.369701,0.263924,-0.869747,0.391278,0.300638,-0.899808,0.384777,0.205573,-0.891964,0.384228,0.238197,-0.825770,0.434706,0.359264,-0.821009,0.453261,0.346995,-0.825434,0.453719,0.335734,-0.823237,0.436995,0.362316,-0.878506,0.411603,0.242409,-0.876370,0.440352,0.194983,-0.817499,0.479659,0.318705,-0.835932,0.357555,0.416333,-0.818445,0.270363,0.506943,-0.782891,0.299600,0.545244,-0.743095,0.365795,0.560320,-0.705496,0.419599,0.571093,-0.599170,0.483291,0.638234,-0.676046,0.478591,0.560228,-0.217780,0.316019,0.923399,-0.379498,0.492294,0.783319,-0.158849,0.245491,0.956267,-0.278817,0.434614,0.856349,-0.368450,0.519913,0.770623,-0.469436,0.531907,0.704733,-0.506516,0.487350,0.711264,-0.398602,0.507187,0.764092,-0.180181,0.077822,0.980529,-0.046144,0.092929,0.994598,-0.162175,0.164006,0.973022,-0.129246,0.168432,0.977172,-0.261666,0.330973,0.906613,-0.255531,0.308512,0.916227,-0.320048,0.459609,0.828425,-0.323283,0.433729,0.841029,-0.091617,0.099185,0.990814,-0.229377,0.080752,0.969970,-0.204871,0.153111,0.966704,-0.349467,0.106357,0.930876,-0.395001,0.043550,0.917631,-0.518815,-0.006836,0.854823,-0.502182,0.041169,0.863765,-0.596759,-0.016633,0.802210,-0.621357,0.083163,0.779077,-0.710044,0.002991,0.704123,-0.469100,0.180883,0.864376,-0.497360,0.249184,0.830958,-0.646901,0.109714,0.754601,-0.326914,0.265023,0.907102,-0.372204,0.368419,0.851863,-0.316874,0.486770,0.814020,-0.339640,0.423353,0.839869,-0.271493,0.464278,0.843043,-0.286233,0.420667,0.860836,-0.377728,0.354717,0.855251,-0.445021,0.304209,0.842219,-0.583209,0.154149,0.797540,-0.499435,0.269295,0.823389,-0.356029,0.376415,0.855281,-0.444136,0.367595,0.817072,-0.382550,0.332804,0.861873,-0.441816,0.361095,0.821192,-0.474349,0.362957,0.801996,-0.503891,0.342326,0.793023,-0.226478,0.365581,0.902768,-0.267373,0.369762,0.889798,-0.212073,0.239631,0.947386,-0.296335,0.283883,0.911893,-0.332163,0.512772,0.791620,-0.296396,0.499130,0.814203,-0.225379,0.388195,0.893582,-0.162603,0.224921,0.960692,-0.046327,-0.024842,0.998596,-0.122959,-0.003601,0.992401,-0.231727,0.082553,0.969268,-0.576281,0.313517,0.754692,-0.512650,0.338237,0.789148,-0.570635,0.287606,0.769158,-0.645466,0.278085,0.711325,-0.610157,0.220679,0.760888,-0.679067,0.236488,0.694906,-0.590503,0.119541,0.798120,-0.544877,0.205145,0.813013,-0.497787,0.279122,0.821131,-0.512742,0.255715,0.819544,-0.348277,0.184332,0.919065,-0.422895,0.254952,0.869533,-0.469192,0.280404,0.837367,-0.015717,0.035188,0.999237,-0.067812,0.115421,0.990966,-0.181829,0.172216,0.968108,-0.316111,0.232582,0.919736,-0.476852,0.461318,0.748161,-0.453780,0.496658,0.739860,-0.782983,0.345195,0.517441,-0.751457,0.417341,0.510971,-0.865291,0.316660,0.388531,-0.842647,0.389355,0.371868,-0.886654,0.261879,0.381054,-0.800623,0.307443,0.514206,-0.503830,0.492538,0.709586,-0.483993,0.448714,0.751244,-0.534867,0.510392,0.673330,-0.549760,0.433363,0.714072,-0.314219,-0.585101,0.747581,-0.527177,-0.476150,0.703787,-0.316996,-0.276284,0.907254,-0.204535,-0.381390,0.901486,-0.721641,-0.242531,0.648335,-0.432234,-0.043092,0.900723,-0.517777,0.231330,0.823603,-0.845912,-0.001099,0.533250,-0.374187,-0.625263,0.684805,-0.262185,-0.749382,0.607990,-0.622181,-0.587298,0.517624,-0.429304,-0.757408,0.491928,-0.258705,-0.854427,0.450545,-0.177801,-0.855739,0.485855,-0.878109,-0.143712,0.456343,-0.876614,0.121036,0.465712,-0.946196,0.172491,0.273751,-0.956755,-0.025269,0.289773,-0.790979,0.331523,0.514237,-0.870327,0.368999,0.326090,-0.693838,0.428297,0.578875,-0.777764,0.490707,0.392743,-0.433637,0.293039,0.852077,-0.539048,0.269326,0.798029,-0.639760,0.113895,0.760063,-0.662496,-0.162542,0.731193,-0.543779,-0.444014,0.712119,-0.784051,-0.382855,0.488510,-0.756645,-0.445936,0.478103,-0.898709,-0.220344,0.379131,-0.535264,-0.662923,0.523423,-0.310007,-0.769677,0.558061,-0.216010,-0.635060,0.741600,-0.227210,-0.710410,0.666066,-0.181738,-0.517747,0.835963,-0.143101,-0.347392,0.926725,-0.229225,-0.377850,0.897031,-0.284494,-0.380596,0.879849,-0.054567,0.257729,0.964660,0.044008,0.294961,0.954466,0.026978,0.225471,0.973846,-0.047304,0.242286,0.969024,-0.024476,0.208136,0.977783,-0.107273,0.244148,0.963775,-0.049837,-0.274545,0.960265,0.010498,0.034211,0.999359,-0.110782,-0.047365,0.992706,-0.378948,0.128056,0.916501,-0.223792,0.187139,0.956481,-0.213752,0.221747,0.951353,-0.396130,0.179510,0.900449,-0.255470,0.261971,0.930631,-0.434034,0.244545,0.867061,-0.349559,-0.125187,0.928495,-0.428114,-0.074679,0.900601,-0.307962,-0.370769,0.876156,-0.504318,0.099796,0.857692,-0.586108,0.108188,0.802942,-0.491287,0.018067,0.870785,-0.189703,-0.753807,0.629078,-0.665944,0.126560,0.735160,-0.585955,0.104099,0.803613,-0.757530,0.130650,0.639546,-0.702933,0.162450,0.692434,-0.829524,0.134495,0.541978,-0.796503,0.124393,0.591662,-0.717307,0.143590,0.681783,-0.762444,0.176214,0.622578,-0.641896,0.140538,0.753777,-0.694510,0.190588,0.693747,-0.906186,0.047731,0.420148,-0.880215,0.081668,0.467483,-0.898923,0.109592,0.424146,-0.922544,0.037599,0.384014,-0.853175,0.203040,0.480422,-0.889035,0.091586,0.448561,-0.884365,0.084140,0.459120,-0.814417,0.154515,0.559282,-0.833857,0.122379,0.538194,-0.903989,-0.020386,0.427045,-0.919340,0.042817,0.391095,-0.926359,0.041444,0.374279,-0.933775,0.037873,0.355815,-0.905454,0.016755,0.424085,-0.916044,0.044801,0.398541,-0.857479,-0.086276,0.507187,-0.870754,-0.011994,0.491531,-0.914304,-0.008484,0.404859,-0.907010,0.018708,0.420637,-0.920896,0.051057,0.386425,-0.902097,0.077486,0.424451,-0.860988,0.099612,0.498703,-0.245735,0.590289,0.768853,-0.187170,0.443434,0.876522,-0.079958,0.413678,0.906888,-0.118107,0.580004,0.805963,-0.469283,0.592029,0.655141,-0.453841,0.451430,0.768242,-0.309976,0.464339,0.829615,-0.357433,0.598346,0.717032,-0.140568,0.697104,0.703024,-0.272927,0.693258,0.666982,-0.493393,0.657949,0.568865,-0.387097,0.679647,0.623066,-0.768853,0.482894,0.419050,-0.786218,0.409040,0.463118,-0.711112,0.480148,0.513535,-0.693625,0.554979,0.459151,-0.595965,0.619282,0.511155,-0.599536,0.549028,0.582293,-0.789911,0.284555,0.543168,-0.720237,0.338786,0.605335,-0.608600,0.398785,0.685965,-0.591449,0.211798,0.778008,-0.543992,0.147252,0.826044,-0.248634,-0.112003,0.962096,-0.116794,-0.385937,0.915067,0.700613,-0.090274,0.707755,0.725059,-0.214942,0.654225,0.789575,-0.245491,0.562365,0.778100,-0.117283,0.617084,0.716178,-0.315256,0.622608,0.773370,-0.358379,0.522874,0.800592,-0.420484,0.426893,0.835658,-0.288156,0.467544,0.841365,-0.151158,0.518876,0.495987,-0.008820,0.868252,0.528123,0.011170,0.849055,0.473830,-0.059755,0.878567,0.397351,-0.147343,0.905728,0.458510,-0.094638,0.883602,0.544847,-0.066256,0.835871,0.917447,-0.396802,0.028657,0.882351,-0.470534,0.005799,0.894192,-0.424146,0.143101,0.913511,-0.383648,0.135228,0.872860,-0.486740,-0.033967,0.890622,-0.445326,0.091800,0.882138,-0.339183,0.326670,0.903592,-0.196875,0.380383,0.816126,-0.482315,0.318155,0.821375,-0.537492,0.190832,0.902707,-0.400159,0.157994,0.936827,-0.277566,0.212836,0.916135,-0.399396,0.033631,0.900815,-0.433760,0.018708,0.950285,-0.309915,0.029328,0.972442,-0.183325,0.143864,0.951048,-0.249153,0.182745,0.963164,-0.089541,0.253456,0.942686,-0.120945,0.310953,0.919401,-0.113895,0.376415,0.876003,-0.069094,0.477279,0.809809,-0.026734,0.586047,0.807092,-0.585284,0.077456,0.879360,-0.475936,0.011780,0.797754,-0.601520,0.041292,0.856105,-0.515213,-0.039766,0.859615,-0.508408,0.050081,0.786645,-0.612171,0.079928,0.093356,-0.605213,0.790551,0.238136,-0.432447,0.869625,0.014100,-0.539079,0.842097,0.153294,-0.438185,0.885708,0.229865,-0.336253,0.913266,0.332957,-0.285409,0.898679,0.420454,-0.153417,0.894223,0.322611,-0.231300,0.917814,-0.085574,-0.775964,0.624897,-0.153111,-0.588885,0.793542,0.534806,-0.177923,0.825983,0.646046,-0.189825,0.739280,0.628163,-0.067751,0.775109,0.509873,-0.268410,0.817286,0.629383,-0.290017,0.720908,0.323038,-0.212500,0.922208,0.410810,-0.184515,0.892819,0.307901,-0.217963,0.926084,0.388043,-0.241432,0.889431,0.058107,-0.942717,0.328471,0.227058,-0.921537,0.314890,0.304971,-0.827143,0.471999,0.083041,-0.877987,0.471389,0.424085,-0.854946,0.298593,0.529618,-0.721702,0.445631,0.613147,-0.450026,0.649190,0.394452,-0.546678,0.738578,0.129612,-0.616108,0.776910,0.057314,-0.908811,0.413190,0.217627,-0.898251,0.381787,0.054506,-0.853633,0.517991,0.209937,-0.844295,0.492996,0.355876,-0.820917,0.446547,0.380291,-0.860164,0.339763,0.582751,-0.758202,0.292367,0.678274,-0.612476,0.405927,0.663045,-0.675039,0.323496,0.733879,-0.546220,0.403760,0.758873,-0.355144,0.545854,0.731162,-0.371319,0.572283,0.516923,-0.792810,0.322794,0.472427,-0.783624,0.403363,0.559984,-0.736229,0.379894,0.601550,-0.723197,0.339244,0.754875,-0.520371,0.399182,0.739067,-0.584735,0.334330,0.707968,-0.587664,0.391675,0.685934,-0.638295,0.349315,0.672414,-0.670858,0.312662,0.730888,-0.632618,0.256020,0.705161,-0.367656,0.606250,0.750145,-0.438581,0.494858,0.703665,-0.390149,0.593768,0.721000,-0.498947,0.480789,0.646565,-0.675161,0.355083,0.680990,-0.629017,0.374859,0.623585,-0.697531,0.352886,0.726737,-0.383160,0.570055,0.718223,-0.530259,0.450484,0.526933,-0.274697,0.804254,0.623554,-0.317911,0.714194,0.589465,-0.221473,0.776788,0.648946,-0.293405,0.701956,0.397076,-0.155309,0.904538,0.447859,-0.220191,0.866543,0.513291,-0.086245,0.853847,0.546770,-0.159398,0.821955,0.557054,-0.075625,0.826991,0.587970,-0.122990,0.799432,0.532975,-0.072085,0.843013,0.587298,-0.064821,0.806757,0.653279,-0.080569,0.752800,0.633595,-0.160527,0.756798,0.015320,-0.208411,0.977905,0.076540,-0.345805,0.935148,0.227454,-0.024293,0.973479,0.217902,-0.187506,0.957762,0.166509,-0.323557,0.931425,0.242805,-0.264138,0.933409,0.205573,-0.204810,0.956938,0.252235,-0.206946,0.945250,0.125645,-0.368816,0.920957,0.202795,-0.215033,0.955290,0.374157,-0.092318,0.922727,0.365001,-0.010254,0.930937,0.504318,0.077334,0.860012,0.500107,-0.014863,0.865810,0.389508,0.045351,0.919889,0.410474,0.029389,0.911374,0.586077,0.220344,0.779687,0.541581,0.177068,0.821741,0.405042,0.068270,0.911740,0.576769,0.249763,0.777734,0.632862,0.338420,0.696341,0.655507,0.222877,0.721519,0.610157,0.316782,0.726157,0.638569,0.112278,0.761284,0.613697,0.125828,0.779443,0.562914,0.044527,0.825282,0.599231,-0.003998,0.800531,0.540056,-0.045900,0.840358,0.545671,-0.016846,0.837794,0.511917,-0.065127,0.856533,0.445509,-0.158910,0.881039,0.428602,-0.102878,0.897580,0.326853,-0.224860,0.917905,0.351787,-0.051668,0.934629,0.418500,0.133824,0.898282,0.467269,-0.011994,0.883999,0.548967,0.051729,0.834223,0.639119,0.018250,0.768853,0.501114,0.196722,0.842677,0.578509,0.090121,0.810633,0.689352,-0.242622,0.682546,0.720389,-0.176946,0.670583,0.709128,-0.132023,0.692587,0.624195,-0.146489,0.767388,0.419294,-0.199194,0.885708,0.408338,0.087558,0.908597,0.154485,0.042695,0.987060,0.155675,-0.250038,0.955626,0.381237,0.275094,0.882565,0.330790,0.301584,0.894192,0.119724,0.385968,0.914701,0.141820,0.263558,0.954131,0.178625,-0.189093,0.965545,0.257515,0.111301,0.959807,0.043672,-0.098849,0.994140,0.085604,0.264199,0.960631,0.409925,-0.233467,0.881710,0.351787,-0.304117,0.885281,0.503464,-0.165197,0.848048,0.563555,-0.048860,0.824610,0.559679,0.250313,0.789972,0.457045,0.116550,0.881741,0.215583,-0.097903,0.971557,0.031159,-0.215766,0.975921,0.026399,-0.480758,0.876431,0.145848,-0.407208,0.901578,0.127445,-0.369823,0.920286,0.020478,-0.362316,0.931822,0.975555,-0.181188,-0.124149,0.974303,-0.197577,-0.107974,0.975127,-0.209662,-0.071474,0.979583,-0.185858,-0.076205,0.959655,-0.278970,0.034700,0.958495,-0.285012,-0.002503,0.972625,-0.061647,0.223975,0.983306,-0.131687,0.125492,0.973846,-0.226142,0.021271,0.982360,-0.186834,0.003113,0.982055,-0.187078,-0.022889,0.577197,0.010865,0.816523,0.641591,0.000916,0.767022,0.730979,-0.007416,0.682333,0.453200,-0.832667,0.318155,0.510147,-0.777551,0.367534,0.390271,-0.832179,0.393841,0.306894,-0.893307,0.328288,0.255501,-0.859340,0.442946,0.022065,-0.920591,0.389843,0.168554,-0.848537,0.501541,0.034730,-0.866115,0.498581,0.016480,-0.971648,0.235755,0.022248,-0.968596,0.247505,0.295877,-0.924070,0.241951,0.306009,-0.923551,0.231025,0.523820,-0.822535,0.221351,0.564562,-0.793268,0.227973,0.677053,-0.717948,0.161504,0.706320,-0.691336,0.152043,0.720267,-0.670705,0.177007,0.652821,-0.708975,0.266732,0.589465,-0.737358,0.329875,0.494949,-0.824244,0.274972,0.295602,-0.917844,0.264809,0.016175,-0.957732,0.287088,-0.708457,-0.544694,0.448683,-0.697623,-0.457839,0.551073,-0.716819,-0.356609,0.599109,-0.763421,-0.412152,0.497269,-0.633717,-0.353984,0.687765,-0.633869,-0.304849,0.710807,-0.657399,-0.185583,0.730308,-0.745628,-0.217383,0.629841,-0.804376,-0.249641,0.539079,-0.250313,-0.249123,0.935545,-0.383435,-0.139256,0.912992,-0.440016,-0.092349,0.893216,-0.353923,-0.189825,0.915769,-0.520493,-0.070132,0.850948,-0.478530,-0.158269,0.863674,-0.881466,-0.466628,0.072481,-0.888668,-0.447829,0.098392,-0.855770,-0.515000,-0.048891,-0.873074,-0.486160,-0.036866,-0.901914,-0.431104,-0.026215,-0.908872,-0.413495,0.054292,-0.741539,-0.630329,0.229743,-0.718558,-0.596271,0.357891,-0.802972,-0.467757,0.369304,-0.830500,-0.521592,0.195379,-0.862117,-0.290353,0.415235,-0.911313,-0.345897,0.223273,-0.974151,-0.194037,0.115635,-0.944426,-0.327891,0.022706,-0.912748,-0.408460,-0.004059,-0.953887,-0.263741,0.143101,-0.876217,-0.481857,-0.004425,-0.948088,-0.137608,0.286660,-0.907041,-0.156041,0.391003,-0.971618,-0.105808,0.211432,-0.808557,-0.098972,0.580004,-0.859615,-0.130222,0.494003,-0.831538,-0.555437,-0.001160,-0.826624,-0.561388,0.038209,-0.769860,-0.629719,0.103519,-0.757317,-0.640584,0.126774,-0.768975,-0.625416,0.132237,-0.848323,-0.524888,0.069216,-0.164373,-0.404492,0.899625,-0.083346,-0.484542,0.870754,-0.180334,-0.453200,0.872951,-0.274606,-0.332133,0.902341,0.105350,-0.528916,0.842097,0.026276,-0.606037,0.794977,-0.199194,-0.324015,0.924833,-0.342296,-0.223853,0.912503,0.247230,-0.728813,0.638478,0.281930,-0.434584,0.855342,-0.540025,-0.276559,0.794885,-0.527818,-0.260781,0.808313,-0.452589,-0.218909,0.864406,-0.418043,-0.226142,0.879788,-0.564653,-0.159124,0.809809,-0.368023,-0.143559,0.918638,-0.289315,-0.198920,0.936308,-0.347179,-0.073824,0.934874,-0.215094,-0.199377,0.955992,-0.349864,-0.637226,0.686666,-0.275765,-0.852321,0.444349,-0.107761,-0.880367,0.461806,-0.126225,-0.648915,0.750298,-0.226569,-0.919156,0.322092,-0.093356,-0.939695,0.328929,-0.244118,-0.827845,0.505020,-0.109684,-0.845485,0.522568,-0.102145,-0.904050,0.415021,-0.234901,-0.884548,0.402936,-0.592578,-0.555559,0.583239,-0.498245,-0.772210,0.394208,-0.388867,-0.818384,0.423078,-0.491226,-0.602649,0.628864,-0.422590,-0.853053,0.306070,-0.322153,-0.893521,0.312754,-0.431532,-0.769951,0.470016,-0.342601,-0.802515,0.488388,-0.338145,-0.852718,0.398114,-0.428022,-0.808100,0.404645,-0.590503,-0.716849,0.370617,-0.581103,-0.709067,0.399396,-0.641591,-0.667898,0.377117,-0.661672,-0.687033,0.300150,-0.601245,-0.716575,0.353496,-0.653401,-0.642994,0.399426,-0.666890,-0.623920,0.407331,-0.686911,-0.545396,0.480270,-0.708487,-0.431318,0.558550,-0.676473,-0.384075,0.628346,-0.517014,-0.740226,0.429762,-0.511490,-0.755272,0.409742,-0.526078,-0.788171,0.319315,-0.606800,-0.700980,0.374645,-0.678487,-0.492141,0.545335,-0.683126,-0.237770,0.690481,-0.624043,-0.244392,0.742149,-0.601611,-0.094729,0.793115,-0.547838,-0.157659,0.821558,-0.522233,-0.049898,0.851314,-0.474868,-0.105350,0.873714,-0.479110,-0.059969,0.875668,-0.458022,-0.061708,0.886776,-0.577807,-0.032899,0.815485,-0.484878,0.106937,0.867977,-0.522477,0.026582,0.852229,-0.606800,-0.057161,0.792779,-0.383984,0.098849,0.917997,-0.448500,-0.002106,0.893765,0.007965,0.163823,0.986450,-0.316538,0.325816,0.890835,-0.043977,-0.162511,0.985717,-0.326762,0.093051,0.940489,-0.363506,-0.030213,0.931089,-0.195471,-0.225990,0.954283,-0.384686,-0.029756,0.922544,-0.185827,-0.273446,0.943754,-0.144475,-0.289712,0.946135,-0.380230,-0.015259,0.924741,-0.537950,-0.025269,0.842586,-0.521165,0.053682,0.851741,-0.475906,0.002411,0.879452,-0.482803,-0.058779,0.873714,-0.589129,0.211493,0.779839,-0.500595,0.212165,0.839259,-0.538743,0.116550,0.834346,-0.584094,0.069918,0.808649,-0.460921,0.338725,0.820215,-0.548662,0.371044,0.749138,-0.600208,0.352519,0.717948,-0.580096,0.278207,0.765526,-0.619312,0.119022,0.776025,-0.579516,-0.029908,0.814386,-0.571947,-0.066622,0.817560,-0.498215,-0.244087,0.831965,-0.486038,-0.143834,0.861995,-0.394269,-0.256844,0.882351,-0.428846,-0.091464,0.898709,-0.342143,-0.075076,0.936613,-0.294107,0.337565,0.894162,-0.208930,0.127110,0.969604,-0.275063,-0.008240,0.961364,-0.339885,0.224342,0.913297,-0.110172,-0.257637,0.959929,-0.270486,-0.313974,0.910062,-0.445509,0.191351,0.874569,-0.358104,0.252449,0.898892,-0.523331,-0.009491,0.852046,-0.391797,0.005188,0.920011,-0.623615,-0.280038,0.729820,-0.674215,-0.256752,0.692434,-0.542314,-0.301248,0.784265,-0.391095,-0.316111,0.864345,-0.123417,0.017243,0.992187,-0.125645,-0.299387,0.945799,-0.131138,0.393353,0.909970,-0.133213,0.260811,0.956145,-0.092593,0.263070,0.960295,-0.020997,-0.126957,0.991668,-0.316691,-0.385632,0.866573,-0.062563,-0.430616,0.900327,-0.121494,-0.370922,0.920652,-0.406995,-0.208808,0.889218,-0.472365,0.182775,0.862209,-0.244575,0.021424,0.969359,-0.043703,-0.146428,0.988250,0.037568,-0.458968,0.887631,0.044588,-0.389111,0.920103,-0.958556,-0.269021,-0.093570,-0.967650,-0.222785,-0.118259,-0.945616,-0.261635,-0.193121,-0.939177,-0.307230,-0.153325,-0.935667,-0.349071,-0.051149,-0.930296,-0.362407,-0.056490,-0.976287,-0.090640,0.196509,-0.980956,-0.149998,0.123173,-0.980773,-0.194006,0.020356,-0.968078,-0.247810,0.036958,-0.984436,-0.174566,-0.018891,-0.571581,-0.066164,0.817835,-0.644948,-0.075564,0.760460,-0.745384,-0.085269,0.661122,-0.290536,-0.839869,0.458419,-0.182714,-0.858272,0.479537,-0.405438,-0.808374,0.426740,-0.367840,-0.856594,0.361797,-0.239387,-0.898068,0.368969,-0.097751,-0.849178,0.518937,-0.249306,-0.930815,0.267159,-0.480880,-0.836543,0.262490,-0.258248,-0.934263,0.245766,-0.501633,-0.826533,0.255287,-0.649922,-0.729423,0.213324,-0.666646,-0.718863,0.196875,-0.581072,-0.757042,0.298624,-0.671865,-0.707358,0.219459,-0.418683,-0.856624,0.301401,-0.499832,-0.784082,0.367901,-0.243171,-0.929319,0.277840,-0.436628,-0.818262,0.373821,-0.455336,-0.854701,0.249184,-0.161931,-0.965209,0.205267,-0.155187,-0.913724,0.375469,-0.413007,-0.876522,0.247169,-0.135960,-0.983215,0.121464,0.216376,-0.975799,0.031159,0.191687,-0.964690,0.180517,0.162114,-0.910154,0.381207,0.558367,-0.829554,-0.000824,0.535051,-0.828761,0.163762,0.816706,-0.576922,0.009674,0.806635,-0.574755,0.137547,0.738701,-0.574999,0.351604,0.472060,-0.796594,0.377606,0.957152,-0.287637,0.032655,0.957366,-0.271859,0.097598,0.999664,0.003937,0.025361,0.998505,0.009491,0.053407,0.968688,-0.002716,0.248177,0.909726,-0.287484,0.299509,0.963591,0.262642,-0.049593,0.964660,0.263405,0.000855,0.819422,0.510758,-0.260048,0.864345,0.494980,-0.088839,0.854823,0.493759,0.159520,0.942351,0.261849,0.208228,0.701651,0.677023,-0.221931,0.724021,0.684255,0.086825,0.603748,0.652791,-0.457533,0.416456,0.692587,-0.588916,0.503983,0.787500,-0.354656,0.550188,0.835017,0.000977,0.278451,0.847530,-0.451796,0.336436,0.938871,-0.072909,0.219916,0.710105,-0.668844,-0.029206,0.699393,-0.714133,0.010956,0.863186,-0.504715,0.077761,0.990509,-0.113041,-0.549547,0.534074,-0.642415,-0.529984,0.720328,-0.447401,-0.281442,0.818171,-0.501328,-0.309763,0.636952,-0.705893,-0.463851,0.884365,-0.052034,-0.210211,0.972106,-0.103763,-0.814508,0.328043,-0.478469,-0.836207,0.470840,-0.281137,-0.711539,0.598163,-0.368572,-0.713858,0.423658,-0.557543,-0.813166,0.574328,0.094180,-0.665334,0.746239,0.020508,-0.874203,0.254280,-0.413587,-0.912931,0.356517,-0.198553,-0.910977,0.200262,-0.360485,-0.957915,0.258705,-0.124119,-0.942381,0.265389,0.203528,-0.900327,0.406903,0.154302,-0.914304,-0.194830,0.355022,-0.960692,-0.179174,0.211982,-0.899045,-0.334391,0.282571,-0.860469,-0.338420,0.380810,-0.966613,-0.178961,0.183355,-0.887814,-0.346294,0.302988,-0.754692,-0.538102,0.375286,-0.796442,-0.514573,0.317545,-0.771813,-0.500961,0.391552,-0.955382,0.028871,0.293893,-0.997406,0.054476,0.046724,-0.988861,-0.060488,0.135868,-0.941465,-0.079287,0.327616,-0.966735,0.076022,-0.244118,-0.996857,-0.055696,0.055940,-0.941130,0.153905,-0.300851,-0.985321,0.164220,-0.046388,-0.957549,0.142674,0.250435,-0.641560,-0.664663,0.382794,-0.659108,-0.690420,0.298105,-0.604450,-0.715567,0.350108,0.852016,-0.025910,0.522843,0.770959,-0.299722,0.561907,0.649709,-0.048555,0.758599,0.561998,-0.292184,0.773797,0.424146,-0.477157,0.769646,0.598743,-0.542039,0.589618,0.433821,-0.066195,0.898556,0.343730,-0.275307,0.897763,0.240913,-0.083926,0.966887,0.159246,-0.239814,0.957640,0.032441,-0.324412,0.945341,0.246590,-0.401959,0.881802,0.184576,0.147526,0.971648,0.247688,0.068056,0.966430,0.445967,0.144261,0.883328,0.434919,0.275338,0.857326,0.649068,0.194067,0.735527,0.604907,0.377087,0.701315,0.764428,0.457503,0.454176,0.837794,0.238838,0.490921,0.516312,0.779015,0.355632,0.659566,0.634175,0.403424,0.442824,0.665426,0.600909,0.546037,0.530747,0.648152,0.382153,0.555773,0.738273,0.438704,0.404920,0.802179,0.326243,0.473769,0.817957,0.316904,0.330668,0.888913,0.232429,0.522935,0.820032,0.172308,0.384808,0.906735,0.145085,0.564318,0.812677,0.066286,0.503891,0.861202,0.003693,0.452162,0.891903,0.108402,0.300027,0.947722,0.152379,0.780602,0.606128,0.150548,0.655812,0.739738,0.273324,0.640553,0.717612,0.305673,0.749657,0.586963,0.340587,0.881100,0.328043,0.132969,0.935270,0.327982,-0.316263,0.854915,0.411115,-0.100742,0.927732,0.359325,-0.166662,0.699484,0.694906,-0.014374,0.761345,0.648152,0.024201,0.621509,0.783013,-0.071963,0.564623,0.822169,-0.463179,0.459273,0.757958,-0.293497,0.365825,0.883175,-0.173345,0.486038,0.856563,-0.313334,0.601337,0.734947,-0.159612,0.280526,0.946471,-0.070223,0.383526,0.920835,-0.665273,0.553819,0.500626,-0.505020,0.727348,0.464583,0.372753,-0.718894,0.586688,0.270882,-0.617450,0.738456,0.084597,-0.712363,0.696646,0.121464,-0.814112,0.567827,-0.140172,-0.825251,0.547075,-0.127659,-0.737297,0.663350,-0.339915,-0.685080,0.644276,-0.387799,-0.753746,0.530534,-0.580004,-0.624897,0.522568,-0.508042,-0.577349,0.639149,-0.608722,-0.457869,0.647908,-0.701834,-0.483627,0.522965,-0.661000,-0.064272,0.747612,-0.661733,0.000855,0.749718,-0.843593,0.083010,0.530473,-0.842341,-0.014466,0.538682,-0.646962,0.126225,0.751976,-0.827479,0.211798,0.519974,-0.196814,-0.114414,0.973724,-0.267800,-0.086428,0.959563,-0.462813,-0.075289,0.883236,-0.453322,-0.102054,0.885464,-0.277413,0.007324,0.960692,-0.457411,0.046724,0.887997,-0.064516,0.026826,0.997528,-0.093142,-0.027589,0.995239,-0.010651,-0.022645,0.999664,-0.233345,0.143468,0.961730,-0.398389,0.209998,0.892819,-0.582232,0.291238,0.759026,-0.773003,0.371929,0.513932,-0.080050,0.095096,0.992218,-0.003479,0.176336,0.984313,0.070833,-0.023164,0.997192,0.035310,-0.101260,0.994201,-0.072115,-0.199408,0.977233,0.025605,-0.180548,0.983215,-0.299234,-0.138798,0.943999,-0.162145,-0.202582,0.965728,-0.349071,-0.206091,0.914121,-0.161168,-0.251167,0.954405,-0.686758,-0.210303,0.695761,-0.519639,-0.201605,0.830256,-0.479537,-0.116611,0.869716,-0.674276,-0.117771,0.728996,-0.838679,-0.102206,0.534928,-0.824519,-0.208319,0.526048,-0.325144,-0.397534,0.858028,-0.354137,-0.303415,0.884579,-0.522080,-0.316080,0.792138,-0.484909,-0.424574,0.764550,-0.666799,-0.333628,0.666372,-0.780755,-0.341350,0.523331,-0.285257,-0.608539,0.740471,-0.416425,-0.519242,0.746300,-0.228431,-0.533769,0.814173,-0.280038,-0.461654,0.841670,-0.195349,-0.299020,0.934019,-0.139500,-0.359325,0.922697,0.047395,-0.609210,0.791559,-0.116123,-0.647359,0.753258,0.002991,-0.524094,0.851650,-0.110599,-0.533036,0.838801,-0.115177,-0.423475,0.898526,0.043641,-0.430464,0.901517,0.172491,-0.506149,0.844997,0.025300,0.277108,0.960479,0.746422,0.070681,0.661672,0.255562,0.010071,0.966735,0.433607,0.854213,0.286782,0.500748,0.861446,0.084231,0.021729,-0.069277,0.997345,0.409803,0.627338,0.662191,0.447096,0.880245,0.158879,0.353526,0.921506,-0.160619,0.436811,0.864681,-0.247932,0.325571,0.895779,0.302530,0.890103,0.363231,0.275185,0.888089,0.223914,0.401379,0.793756,-0.558641,-0.240425,0.721061,-0.632038,-0.283822,-0.410718,0.686636,-0.599811,-0.191260,0.675069,-0.712485,-0.573168,0.720420,-0.390423,-0.560930,0.799982,-0.212989,-0.367809,0.874935,-0.314859,-0.102542,0.903256,-0.416578,0.210059,0.860897,-0.463363,0.096713,0.688253,-0.718955,0.461989,0.767510,-0.444349,0.381451,0.679647,-0.626514,0.519761,0.766350,-0.377483,0.453475,0.764519,-0.458083,0.362590,0.917173,-0.165227,0.448866,0.815394,-0.365490,0.488083,0.822260,-0.292642,0.266732,0.931242,-0.248146,0.239296,0.910337,-0.337657,-0.037446,0.979736,-0.196631,-0.060030,0.928251,-0.366985,-0.309153,0.934538,-0.176183,-0.521134,0.829676,-0.200018,-0.549455,0.695853,-0.462416,-0.343547,0.832850,-0.433912,-0.877529,-0.148686,-0.455824,-0.756615,-0.366375,-0.541520,-0.723319,-0.360363,-0.588977,-0.835963,-0.178899,-0.518754,-0.472091,-0.657430,-0.587268,-0.391522,-0.715201,-0.578936,-0.371685,-0.754051,-0.541490,-0.683554,-0.358623,-0.635701,-0.764489,-0.219428,-0.606098,-0.971587,0.148167,-0.184423,-0.968108,0.167089,-0.186590,-0.960723,-0.032380,-0.275521,-0.977752,-0.020203,-0.208686,-0.951994,0.221107,-0.211615,-0.935911,-0.027772,-0.351085,-0.910337,-0.136052,-0.390851,-0.946501,-0.136296,-0.292428,-0.886532,0.436506,-0.153233,-0.907743,0.391552,-0.150426,-0.932401,0.313486,-0.179693,-0.905942,0.371990,-0.202094,-0.936430,0.275765,-0.216834,-0.910245,0.323130,-0.258889,-0.849330,0.515061,-0.115207,-0.881649,0.450392,-0.140721,-0.889401,0.408856,-0.204321,-0.860195,0.469527,-0.198950,-0.894528,0.338969,-0.291299,-0.873775,0.367748,-0.318155,-0.628895,0.750603,-0.202551,-0.626881,0.776086,-0.068117,-0.708914,0.690481,-0.143620,-0.644154,0.745506,-0.171026,-0.781640,0.613056,-0.114719,-0.809534,0.551530,-0.201025,-0.738609,0.636525,-0.221961,-0.843043,0.410565,-0.347362,-0.785028,0.482620,-0.388256,-0.645436,0.727958,-0.231178,-0.686819,0.580767,-0.436964,-0.558061,0.825739,0.081851,-0.528977,0.821711,0.211982,-0.587634,0.774163,0.235176,-0.703085,0.691458,0.165868,-0.726249,0.673025,0.139836,-0.942991,0.321268,-0.086764,-0.876186,-0.255959,-0.408338,-0.660298,-0.570452,-0.488418,0.185766,-0.709708,-0.679495,-0.032991,-0.793664,-0.607410,0.355266,-0.480544,-0.801752,0.208289,-0.312174,-0.926878,0.104984,-0.514847,-0.850795,-0.075381,-0.736656,-0.672018,0.587054,-0.013398,0.809412,0.875790,-0.480575,0.044679,0.056490,-0.187994,0.980529,0.609272,-0.394971,0.687551,-0.178655,-0.333384,0.925687,-0.131748,-0.168401,0.976867,-0.178259,-0.216865,0.959777,-0.107761,-0.045717,0.993103,0.009186,0.017426,0.999786,0.162145,-0.149419,0.975372,0.522019,-0.330241,-0.786370,0.879330,-0.404401,-0.251350,0.623432,-0.329844,-0.708853,0.234443,-0.247139,-0.940153,0.144871,0.034303,0.988830,0.588855,-0.231727,0.774285,0.334635,0.126774,0.933775,0.869106,-0.104617,0.483413,0.720573,-0.205451,0.662191,0.195288,-0.241615,0.950499,0.059603,-0.527146,0.847652,0.574084,-0.527848,0.625874,0.920927,0.161016,-0.354900,0.992615,-0.021577,0.119114,0.955504,-0.271615,0.114780,0.913633,0.105472,-0.392590,0.973479,0.224128,0.045686,0.873653,0.357677,-0.329753,0.185919,0.052339,0.981140,0.158879,0.137028,0.977722,0.687368,0.121799,0.715995,0.566057,0.377514,0.732841,0.660695,0.456099,0.596149,0.479598,0.298746,0.825037,0.286325,0.199408,0.937132,0.567583,0.468642,0.676901,0.046876,-0.768639,-0.637959,0.192694,-0.441420,-0.876339,0.011048,-0.488571,-0.872433,-0.079501,-0.782037,-0.618091,0.181097,-0.304239,-0.935179,0.016053,-0.343791,-0.938871,-0.112735,-0.340129,-0.933592,-0.149602,-0.489486,-0.859066,-0.183599,-0.788049,-0.587573,-0.289010,-0.449171,-0.845363,-0.238166,-0.786737,-0.569445,-0.274117,-0.323527,-0.905637,-0.482192,-0.300119,-0.823023,-0.452498,-0.401929,-0.796014,-0.293527,-0.776177,-0.557970,-0.591571,-0.372326,-0.715079,-0.648762,-0.264687,-0.713431,-0.346019,-0.766259,-0.541368,-0.855434,-0.181799,-0.484909,-0.889615,-0.212714,-0.404065,-0.777673,-0.240394,-0.580859,-0.803278,-0.285806,-0.522507,-0.661336,-0.299234,-0.687796,-0.682241,-0.349437,-0.642170,-0.489212,-0.342082,-0.802271,-0.502548,-0.408032,-0.762169,-0.265908,-0.357524,-0.895230,-0.069460,-0.365795,-0.928068,0.032380,-0.502091,-0.864193,-0.251228,-0.452956,-0.855373,0.087405,-0.396893,-0.913663,0.229194,-0.388531,-0.892453,0.491836,-0.634144,-0.596576,0.275277,-0.573168,-0.771783,0.251350,-0.323771,-0.912107,0.237770,-0.269021,-0.933287,0.331034,-0.456496,-0.825831,0.040651,-0.752342,-0.657491,0.216224,-0.428053,-0.877468,-0.982482,-0.012909,-0.185736,-0.945463,0.131535,-0.297952,-0.976104,-0.161870,-0.144902,-0.982543,-0.185919,0.002869,-0.988128,-0.036988,-0.149022,-0.894986,0.137211,-0.424390,-0.838649,0.202582,-0.505539,-0.792596,0.248848,-0.556627,-0.858821,0.187170,-0.476821,-0.832148,0.093265,-0.546617,-0.819697,0.097476,-0.564409,-0.780236,0.132023,-0.611347,-0.702536,0.329173,-0.630909,-0.562090,0.445448,-0.696829,-0.694815,0.203375,-0.689779,-0.550035,0.309519,-0.775628,-0.364574,0.603900,-0.708762,-0.091037,0.762047,-0.641041,-0.346507,0.453505,-0.821100,-0.083590,0.605518,-0.791406,0.348247,0.690329,-0.634144,0.390698,0.770501,-0.503616,0.190649,0.816126,-0.545488,0.169225,0.687460,-0.706198,-0.897824,0.202765,-0.390881,-0.878811,0.200415,-0.432997,-0.871670,0.159520,-0.463363,-0.885556,0.098117,-0.454024,-0.870205,0.187078,-0.455702,-0.830439,0.102664,-0.547533,0.961943,0.222907,-0.157842,0.936521,0.241493,-0.254097,0.912809,0.299173,-0.277932,0.939116,0.282266,-0.195746,0.907071,0.248268,-0.339885,0.880520,0.296579,-0.369701,0.831233,0.431379,-0.350566,0.859584,0.407025,-0.308847,0.238807,-0.853175,-0.463668,0.164312,-0.690054,-0.704825,0.440107,-0.673666,-0.593646,0.515427,-0.723045,-0.459914,0.627491,-0.649342,-0.429609,0.700003,-0.615528,-0.362041,-0.482742,-0.836818,-0.258126,-0.516923,-0.597980,-0.612476,-0.205359,-0.676595,-0.707114,-0.140507,-0.914182,-0.380108,-0.724174,-0.496933,-0.478103,-0.853206,-0.399670,-0.335063,-0.718497,-0.683187,-0.130314,-0.857112,-0.514359,-0.027223,-0.933805,-0.289193,-0.210608,-0.939695,-0.341288,0.021943,-0.997772,-0.053591,-0.039064,-0.899747,0.107944,-0.422803,-0.973907,-0.184790,0.131596,-0.840205,0.146764,-0.521989,-0.797143,0.198614,-0.570147,-0.857418,0.123692,-0.499496,-0.709403,0.279336,-0.647053,-0.552873,0.383923,-0.739525,-0.324625,0.499100,-0.803400,-0.054994,0.594501,-0.802179,0.353496,0.646382,-0.676138,0.183447,0.639332,-0.746696,-0.846919,0.138615,-0.513321,-0.888028,0.088107,-0.451247,-0.864376,0.116520,-0.489120,0.981079,0.187017,-0.049806,0.959349,0.267373,-0.089999,0.870144,0.426954,-0.246040,0.243782,-0.952116,-0.184423,0.556108,-0.795709,-0.239875,0.783471,-0.595508,-0.177526,-0.406690,-0.904935,0.125034,-0.110446,-0.993103,-0.038789,-0.621570,-0.743339,0.247078,-0.779199,-0.555986,0.289315,-0.904294,-0.355083,0.236915,0.994995,-0.005402,-0.099490,0.976623,0.044343,-0.210181,0.956603,0.170660,-0.236061,0.977355,0.158422,-0.140110,0.951872,0.123325,-0.280496,0.926023,0.206885,-0.315653,0.985748,0.158574,-0.055605,0.999756,-0.018097,0.012452,0.858089,0.239265,0.454329,0.888699,0.127781,0.440291,0.974914,-0.184240,0.124821,0.907346,-0.308664,-0.285257,0.587359,-0.519333,-0.620685,0.774438,-0.564684,-0.285134,0.981933,-0.132481,0.135014,0.873745,-0.485549,-0.027955,0.964843,-0.239296,-0.108646,0.814692,-0.557512,-0.159429,0.969085,-0.162267,-0.185675,0.966033,-0.081332,-0.245155,0.979522,-0.191290,-0.062563,0.945463,-0.308481,-0.104556,0.913450,-0.362011,-0.185797,0.801996,-0.533891,-0.267739,0.855159,-0.472274,-0.213599,0.977386,-0.210181,0.022980,0.980407,-0.190558,0.049501,0.927824,-0.368328,-0.058473,0.952574,0.290506,0.090304,0.865017,0.491836,0.098972,0.852321,0.336863,-0.400037,0.862697,0.371776,-0.342784,0.913572,0.389172,-0.117893,0.849849,0.475356,0.227454,0.804956,0.563646,0.185186,0.879330,0.431928,-0.200446,0.951231,0.220008,0.216163,0.986450,0.109195,-0.122227,0.887570,0.267769,-0.374828,0.917417,0.252022,-0.307871,0.860958,0.267037,-0.432905,0.819178,0.297494,-0.490280,0.959380,0.078372,-0.270943,0.271157,0.954924,0.120518,0.527726,0.748985,-0.400616,0.545518,0.780206,-0.306070,0.539689,0.735618,-0.409314,0.518326,0.806330,-0.284829,0.651173,0.671773,-0.353038,0.611347,0.776330,-0.153294,0.658284,0.605274,-0.447462,0.535569,0.681906,-0.498123,0.548936,0.627216,-0.552446,0.688772,0.560472,-0.459792,0.489547,0.711203,-0.504471,0.456893,0.660085,-0.596210,0.727073,0.546190,-0.415937,0.632038,0.599628,-0.490860,0.492111,0.637928,-0.592303,-0.057741,0.995697,-0.072359,-0.013611,0.996124,-0.086795,0.005768,0.994476,0.104709,-0.027497,0.992645,0.117740,-0.018555,0.994659,-0.101444,0.007233,0.995483,0.094638,0.010498,0.973510,0.228248,0.004303,0.974059,0.226142,-0.008271,0.973846,0.226936,-0.046846,0.992096,-0.116245,0.001892,0.996765,0.080172,-0.088107,0.986999,-0.134312,-0.001221,0.998260,0.058718,0.072848,0.971587,0.225105,0.033448,0.972991,0.228278,-0.208075,0.964843,-0.160436,-0.103122,0.994263,0.027345,-0.457656,0.869137,-0.187353,-0.375072,0.926878,-0.011994,-0.266274,0.944823,0.190680,-0.000397,0.976043,0.217475,-0.738914,0.643330,-0.200293,-0.691885,0.719840,-0.055452,-0.897610,0.390057,-0.205237,-0.879055,0.466597,-0.097415,-0.830409,0.556902,0.015595,-0.596698,0.793939,0.116489,-0.967223,0.098392,-0.234016,-0.979919,0.129276,-0.151646,-0.950438,0.281320,-0.132176,-0.950377,0.220740,-0.219092,-0.984558,0.153508,-0.083987,-0.940001,0.336741,-0.054292,-0.970367,0.003143,-0.241585,-0.987915,0.006409,-0.154790,-0.966735,-0.067690,-0.246620,-0.984680,-0.087374,-0.150700,-0.989624,-0.095035,-0.107639,-0.995025,0.012818,-0.098544,-0.610462,0.034425,0.791284,-0.631733,0.236518,0.738182,-0.921903,0.315165,0.225166,-0.959410,0.123722,0.253304,-0.558824,0.535203,0.633412,-0.740196,0.612720,0.276833,-0.966216,-0.104129,0.235603,-0.964965,0.002594,0.262337,-0.616810,-0.102939,0.780328,-0.592059,-0.028993,0.805353,-0.779290,0.237892,-0.579699,-0.847194,0.090274,-0.523484,-0.927488,0.153905,-0.340678,-0.882687,0.315592,-0.348155,-0.856288,-0.007752,-0.516404,-0.931516,0.049287,-0.360332,-0.401746,0.574694,-0.712943,-0.619373,0.422895,-0.661428,-0.736351,0.555498,-0.386212,-0.480178,0.775079,-0.410657,-0.428083,0.819697,0.380535,-0.180792,0.888089,0.422590,-0.273965,0.632374,0.724570,-0.129521,0.707755,0.694449,-0.026460,0.806482,0.590625,0.007202,0.920499,0.390667,0.047792,0.879238,0.473922,0.075320,0.932676,0.352702,-0.027955,0.822321,0.568316,0.026887,0.851161,0.524155,-0.025788,0.649953,0.759514,-0.054018,0.536119,0.842402,-0.083468,0.417829,0.904660,-0.009461,0.194494,0.980834,-0.208991,0.263436,0.941740,-0.179785,0.032441,0.983154,-0.170782,0.673269,-0.719352,-0.234870,0.649586,-0.723075,-0.251808,0.880123,-0.402417,-0.137425,0.911344,-0.387951,-0.239998,0.367016,-0.898709,-0.232887,0.336283,-0.912473,-0.204077,0.397259,-0.894711,-0.197455,0.410230,-0.890316,-0.276498,0.292703,-0.915311,-0.290323,0.360424,-0.886441,-0.385327,0.225135,-0.894864,-0.445570,0.283029,-0.849300,-0.526231,0.122074,-0.841517,-0.606342,0.167180,-0.777398,-0.214057,0.399823,-0.891232,-0.246376,0.388745,-0.887783,-0.208899,0.422803,-0.881771,-0.189337,0.446089,-0.874722,-0.150029,0.686728,-0.711203,-0.123783,0.705100,-0.698172,-0.062319,0.727653,-0.683065,-0.050874,0.485336,-0.872829,-0.133549,0.472335,-0.871212,-0.090793,0.722648,-0.685202,-0.042543,0.396680,-0.916959,-0.144414,0.399731,-0.905148,-0.046480,0.933500,-0.355480,-0.071047,0.933744,-0.350780,-0.058016,0.928312,-0.367199,-0.089267,0.921537,-0.377880,0.037904,0.936583,0.348369,-0.003235,0.934568,0.355693,-0.014924,0.934568,0.355419,-0.044282,0.810816,0.583575,-0.037172,0.817499,0.574694,-0.016572,0.937864,0.346507,-0.069063,0.568804,0.819544,-0.037294,0.497543,0.866604,-0.000763,-0.922666,0.385510,-0.052736,-0.920835,0.386334,-0.054994,-0.994751,0.086154,-0.005127,-0.995270,0.096896,-0.066927,-0.924833,0.374401,-0.079073,-0.993957,0.076022,-0.098270,-0.991058,-0.090213,-0.065493,-0.994293,-0.083895,-0.016846,-0.996979,-0.075777,-0.019318,-0.273507,0.961669,-0.063356,-0.638508,0.766991,-0.055300,-0.705130,0.706900,-0.008301,-0.639607,0.768639,-0.055727,-0.703269,-0.708701,-0.033967,-0.703330,-0.710044,-0.041047,-0.707114,-0.705863,-0.066713,-0.710868,-0.700125,-0.015961,-0.707877,-0.706137,-0.011383,-0.705069,-0.709006,-0.016175,-0.761528,-0.647908,-0.057161,-0.766656,-0.639485,-0.077975,-0.772881,-0.629688,-0.109134,-0.912046,-0.395215,-0.096316,-0.831416,-0.547197,-0.071200,-0.827509,-0.556871,-0.074892,-0.915555,-0.395062,-0.025422,-0.825983,-0.563066,-0.030702,-0.918790,-0.393475,-0.108585,-0.970824,-0.213660,-0.071963,-0.974761,-0.211249,-0.027711,-0.977966,-0.206885,-0.815912,-0.075259,-0.573199,-0.711875,-0.098209,-0.695395,-0.681570,-0.094852,-0.725547,-0.787011,-0.088382,-0.610523,-0.672170,-0.128758,-0.729087,-0.648640,-0.145878,-0.746940,-0.611103,-0.169958,-0.773034,-0.636189,-0.119572,-0.762169,-0.733665,-0.155461,-0.661458,-0.566515,-0.193152,-0.801080,-0.620228,-0.305368,-0.722526,-0.569445,-0.216224,-0.793054,-0.516953,-0.301553,-0.801111,-0.471541,-0.311319,-0.825037,-0.439863,-0.493454,-0.750298,-0.172796,-0.032380,0.984405,-0.208350,-0.102573,0.972625,-0.023408,-0.009735,0.999664,-0.109104,-0.607318,0.786920,-0.087252,-0.694571,0.714072,-0.147160,-0.907956,0.392315,-0.104038,-0.915616,0.388287,-0.116031,-0.990448,0.074129,-0.164403,-0.983245,0.078555,-0.151891,-0.984222,-0.090396,-0.126469,-0.987487,-0.093936,-0.127628,-0.969085,-0.211005,-0.131809,-0.967834,-0.214240,-0.111515,-0.917295,-0.382214,-0.126225,-0.911527,-0.391308,-0.119358,-0.762780,-0.635487,-0.100772,-0.771508,-0.628132,-0.108371,-0.836665,-0.536821,-0.100497,-0.842891,-0.528581,-0.185125,-0.672506,-0.716514,-0.104373,-0.699301,-0.707114,-0.108158,-0.701407,-0.704459,-0.161229,-0.672506,-0.722282,-0.355541,-0.530198,-0.769677,-0.271065,-0.615864,-0.739738,-0.214972,-0.622669,-0.752342,-0.281899,-0.546373,-0.788629,-0.132176,-0.746208,-0.652394,-0.170934,-0.709983,-0.683126,-0.369060,-0.440016,-0.818598,-0.442274,-0.418104,-0.793420,-0.267373,-0.635182,-0.724570,-0.422498,-0.838527,-0.343944,-0.423048,-0.700369,-0.574877,-0.196081,-0.808557,-0.554765,-0.185705,-0.917142,-0.352611,-0.095279,-0.841487,-0.531754,-0.082553,-0.929807,-0.358592,-0.083468,-0.847072,-0.524827,-0.082430,-0.925321,-0.370037,-0.434431,-0.899106,-0.053255,-0.432020,-0.886868,-0.163671,-0.217444,-0.959868,-0.176946,-0.255959,-0.964904,-0.058535,-0.115909,-0.974914,-0.189917,-0.166417,-0.983673,-0.068422,-0.108921,-0.973205,-0.202429,-0.156835,-0.984375,-0.079928,-0.196509,-0.977386,0.077883,-0.302072,-0.946410,0.114139,-0.195013,-0.942656,0.270821,-0.305124,-0.840815,0.447066,-0.390759,-0.721183,0.571978,-0.430219,-0.889920,0.151433,-0.166112,-0.983306,0.073977,-0.134434,-0.929838,0.342479,-0.174871,-0.673391,0.718253,-0.222541,-0.394177,0.891659,-0.682089,-0.528459,0.505417,-0.816004,-0.561846,0.135777,-0.591968,-0.792505,0.146519,-0.482620,-0.654256,0.582202,-0.855068,-0.510941,-0.088046,-0.654347,-0.753533,-0.063143,-0.945280,-0.274697,0.176000,-0.960112,-0.258522,-0.106388,-0.674337,-0.279733,0.683340,-0.317118,-0.312998,0.895230,-0.878994,-0.455000,-0.142430,-0.685446,-0.712424,-0.150334,-0.883694,-0.374493,-0.280709,-0.698447,-0.641377,-0.317423,-0.833705,-0.252754,-0.490921,-0.679708,-0.485427,-0.549821,-0.907956,-0.058718,-0.414869,-0.888455,-0.113102,-0.444777,-0.951323,-0.171331,-0.256111,-0.625874,0.011048,-0.779839,-0.709189,0.046113,-0.703482,-0.664907,-0.066195,-0.743950,-0.742546,-0.047456,-0.668081,-0.734581,-0.094913,-0.671834,-0.839686,-0.062685,-0.539415,-0.676351,-0.106357,-0.728843,-0.921659,-0.020600,-0.387402,-0.963561,-0.225196,-0.144230,-0.110477,0.426740,-0.897580,-0.036622,0.418409,-0.907498,-0.177587,0.453444,-0.873379,-0.245613,0.465712,-0.850154,-0.285775,0.443800,-0.849300,-0.307413,0.390179,-0.867885,-0.345988,0.314920,-0.883785,-0.425794,0.223731,-0.876705,-0.553575,0.100284,-0.826716,-0.649922,-0.016358,-0.759819,-0.681234,-0.065340,-0.729118,-0.705954,-0.097201,-0.701529,-0.724601,-0.177709,-0.665822,-0.700705,-0.274941,-0.658315,-0.647633,-0.351695,-0.675893,-0.598651,-0.416791,-0.683981,-0.537492,-0.502548,-0.677114,-0.449232,-0.604389,-0.657918,-0.352184,-0.691977,-0.630146,-0.258827,-0.752922,-0.605029,-0.169500,-0.792474,-0.585864,-0.084628,-0.821345,-0.564104,-0.039552,-0.837489,-0.544969,-0.029633,-0.846217,-0.531999,-0.017182,-0.849208,-0.527757,-0.249001,-0.964324,-0.089785,0.076144,-0.997070,-0.003906,0.074740,-0.983612,0.163884,-0.237403,-0.964660,0.114048,0.347789,-0.931761,0.104068,0.351146,-0.910672,0.217475,0.327799,-0.870968,0.365917,0.059755,-0.937620,0.342387,-0.218390,-0.920347,0.324351,-0.710471,-0.653523,0.260964,-0.756462,-0.653859,0.014466,-0.526170,-0.848048,0.062471,-0.480972,-0.825098,0.296335,-0.753105,-0.633503,-0.177374,-0.538835,-0.829920,-0.144322,-0.972839,-0.124149,0.195318,-0.989990,-0.128666,-0.057436,-0.915098,-0.402203,-0.028077,-0.884823,-0.409711,0.221717,-0.949858,-0.142796,-0.278085,-0.891201,-0.407605,-0.198889,-0.863979,0.481735,0.146367,-0.867824,0.472579,-0.153264,-0.981170,0.171300,-0.089053,-0.966308,0.183935,0.179998,-0.796136,0.450270,-0.404218,-0.953795,0.148991,-0.260781,-0.359569,0.744224,-0.562822,-0.572771,0.646687,-0.503647,-0.666982,0.705649,-0.239113,-0.419080,0.851711,-0.314493,-0.685049,0.723289,0.086520,-0.456282,0.889553,0.020966,0.117496,0.830531,-0.544389,-0.124241,0.812464,-0.569567,-0.153569,0.919736,-0.361187,0.098300,0.922269,-0.373760,-0.207404,0.977722,-0.031343,0.043214,0.997559,-0.054598,0.284249,0.958068,-0.035615,0.327403,0.877743,-0.349773,0.488357,0.872463,0.017060,0.523362,0.799829,-0.293832,0.522324,0.727409,-0.444960,0.335582,0.796381,-0.503128,0.653890,0.752068,0.082583,0.683676,0.696432,-0.218055,0.780267,0.608386,0.144810,0.804346,0.578478,-0.135411,0.796197,0.529435,-0.292795,0.677450,0.634693,-0.371746,0.910459,0.336619,0.240242,0.931150,0.364391,0.010407,0.882748,0.465987,-0.059450,0.862667,0.466262,0.195868,0.918851,0.359935,-0.161565,0.873592,0.432813,-0.222449,0.736381,-0.591693,0.327982,0.862575,-0.361858,0.353526,0.878689,-0.332163,0.342784,0.762047,-0.553117,0.336589,0.938231,-0.148564,0.312479,0.939512,-0.138157,0.313364,0.921537,-0.137394,0.363079,0.860530,-0.322825,0.394024,0.740715,-0.530625,0.411969,0.979308,0.037049,0.198828,0.966613,0.012543,0.255837,0.978637,0.201880,-0.038148,0.974273,0.143956,0.173254,0.941954,0.104770,0.318918,0.939879,-0.004028,0.341441,0.961303,0.261483,0.086489,0.934324,0.216224,0.283303,0.951964,0.292611,-0.090152,0.584948,-0.759270,0.285104,0.559862,-0.796228,0.229194,0.564562,-0.723045,0.398053,-0.453413,-0.526292,0.719291,-0.575243,-0.358745,0.735099,-0.764336,-0.397412,0.507736,-0.600360,-0.608448,0.518937,-0.658132,-0.115268,0.744011,-0.857875,-0.122074,0.499130,-0.086673,-0.334758,0.938292,-0.201880,-0.260872,0.943999,-0.375652,-0.315622,0.871334,-0.293527,-0.431928,0.852779,-0.266243,-0.108066,0.957823,-0.451094,-0.109104,0.885739,-0.448836,0.107578,0.887082,-0.654042,0.142460,0.742882,-0.256111,0.046602,0.965514,-0.180639,0.126713,0.975341,-0.424635,0.245369,0.871456,-0.598651,0.350841,0.720054,-0.851131,0.173406,0.495437,-0.764153,0.439131,0.472427,-0.516587,0.534867,0.668599,-0.623157,0.658864,0.421339,-0.382336,0.688864,0.615802,-0.437635,0.819422,0.370067,-0.285836,0.309580,0.906857,-0.412152,0.390820,0.823023,-0.278481,0.471297,0.836818,-0.330729,0.564501,0.756249,0.041475,0.444411,0.894833,-0.016663,0.503281,0.863918,-0.133885,0.373852,0.917753,-0.079409,0.283029,0.955779,-0.086032,0.570421,0.816797,-0.176794,0.526353,0.831660,-0.203772,0.656178,0.726554,-0.079134,0.666402,0.741356,-0.064760,0.790765,0.608661,-0.222022,0.772637,0.594714,-0.233406,0.909940,0.342784,-0.024537,0.938322,0.344798,0.089206,0.757897,0.646229,0.184088,0.908597,0.374828,0.219367,0.689016,0.690725,0.363994,0.830195,0.422163,0.038484,0.623829,0.780572,0.122776,0.557817,0.820795,0.099704,0.374432,0.921873,0.199622,0.478072,0.855312,0.158788,0.284219,0.945494,0.284494,0.370586,0.884121,0.451735,0.469955,0.758324,0.335521,0.595141,0.730186,0.516556,0.715598,0.470138,0.647572,0.569872,0.505814,-0.158452,-0.732231,0.662313,-0.322947,-0.647908,0.689810,-0.406079,-0.751610,0.519730,-0.190130,-0.832850,0.519791,0.234626,-0.705405,0.668813,0.033296,-0.754204,0.655751,0.042238,-0.849147,0.526414,0.280709,-0.791711,0.542528,0.531754,-0.469039,0.705130,0.410779,-0.598865,0.687429,0.493728,-0.665426,0.559801,0.650044,-0.506516,0.566424,0.796594,0.261971,0.544755,0.814936,0.134434,0.563707,0.603198,0.153661,0.782617,0.612384,0.027253,0.790063,0.611225,-0.027985,0.790948,0.818506,0.045259,0.572680,0.404950,0.059694,0.912381,0.401349,-0.066927,0.913450,0.233467,0.013123,0.972259,0.216590,-0.087924,0.972289,0.151128,-0.107791,0.982604,0.392041,-0.085391,0.915952,0.040193,0.023927,0.998901,0.061617,-0.033174,0.997528,-0.016053,-0.031343,0.999359,0.362407,0.224921,0.904447,0.548997,0.317148,0.773278,0.206030,0.154607,0.966247,0.742821,0.413007,0.526872,0.062502,0.098636,0.993133,0.005524,0.169225,0.985534,-0.093692,-0.035096,0.994964,-0.068484,-0.106845,0.991882,0.025452,-0.195502,0.980346,-0.068880,-0.183355,0.980621,0.286508,-0.173681,0.942167,0.248726,-0.110416,0.962249,0.114353,-0.190405,0.975005,0.106906,-0.242042,0.964324,0.416883,-0.078402,0.905545,0.449324,-0.157353,0.879360,0.642323,-0.161657,0.749168,0.627644,-0.065401,0.775719,0.823908,-0.034822,0.565600,0.815546,-0.155614,0.557329,0.440779,-0.293191,0.848354,0.612140,-0.316568,0.724570,0.277261,-0.282907,0.918180,0.239875,-0.388379,0.889706,0.392468,-0.421613,0.817408,0.759819,-0.327677,0.561480,0.194098,-0.457503,0.867733,0.318003,-0.524461,0.789788,0.140965,-0.536363,0.832118,0.187536,-0.618122,0.763359,0.132420,-0.289132,0.948057,0.073519,-0.355327,0.931822,0.033143,-0.538255,0.842097,0.029237,-0.659505,0.751122,-0.072542,-0.534379,0.842097,-0.120304,-0.625843,0.770562,0.046327,-0.421155,0.905789,-0.105106,-0.438429,0.892575,-0.232734,-0.527696,0.816889,-0.001404,0.262886,0.964812,-0.602741,0.618793,0.503708,-0.856685,0.288369,0.427625,-0.393841,0.719077,-0.572527,-0.393658,0.859920,-0.324778,-0.803003,0.542436,0.246803,-0.775048,0.332774,0.537126,-0.475661,0.875332,-0.086612,-0.456130,0.848964,-0.266762,-0.333598,-0.776513,-0.534501,-0.664144,-0.471206,0.580340,-0.940825,-0.241157,0.237983,-0.245491,-0.759636,-0.602191,-0.512925,0.666128,0.541429,0.280679,0.912046,-0.298898,0.313303,0.743309,-0.590991,0.284738,0.660115,-0.695059,0.237281,0.898953,-0.368145,0.122105,0.613453,-0.780206,0.049562,0.889492,-0.454207,-0.378796,0.595233,-0.708640,-0.142674,0.600482,-0.786767,-0.450270,0.724082,-0.522416,-0.223579,0.820734,-0.525681,-0.407636,0.856136,-0.317484,-0.477706,0.671712,-0.566179,-0.543535,0.720054,-0.431349,-0.268166,0.905972,-0.327525,-0.005097,0.964385,-0.264382,-0.488968,0.790765,-0.368175,-0.476241,0.797021,-0.371349,-0.271096,0.893948,-0.356822,0.001770,0.936399,-0.350871,0.369762,0.901883,-0.223273,0.290292,0.945677,-0.146153,0.196814,0.957976,-0.208655,0.228126,0.923185,-0.309244,0.539262,-0.476974,-0.693991,0.679861,-0.432783,-0.591968,0.825831,-0.197302,-0.528245,0.592029,-0.297006,-0.749168,0.800745,-0.402326,-0.443709,0.948454,-0.123814,-0.291665,0.974212,-0.030519,-0.223457,0.867031,-0.161077,-0.471480,0.586566,-0.312357,-0.747215,0.991485,0.027833,-0.127110,0.991089,0.033815,-0.128788,0.976684,-0.030549,-0.212409,0.994415,0.069216,-0.079440,0.993866,0.089785,-0.064211,0.977660,0.147069,-0.149937,0.969970,0.087832,-0.226722,0.951811,0.003937,-0.306558,0.991058,0.133213,0.002930,0.975799,0.210822,-0.057894,0.996765,0.038575,-0.070345,0.995849,0.090732,-0.002930,0.967620,0.232276,0.098636,0.958281,0.284280,0.029115,0.904813,0.383221,0.185461,0.925962,0.365368,0.095065,0.940458,0.320627,0.112735,0.860622,0.490860,0.135441,0.839442,0.506729,0.196265,0.868679,0.476730,0.134587,0.526322,0.847682,-0.066103,0.611011,0.722343,-0.323771,0.409497,0.778466,-0.475661,0.348521,0.915799,-0.199469,0.709006,0.685232,0.166570,0.757164,0.640187,0.129734,0.743004,0.665944,0.066408,0.507981,0.857997,0.075808,0.607257,0.793298,0.043275,0.361248,0.931394,-0.044282,0.478408,0.872982,-0.094943,0.952269,0.301401,-0.047792,0.815302,0.562883,-0.135563,0.964873,-0.193365,-0.177679,0.976897,-0.117435,-0.178381,0.962279,0.223609,0.154912,0.963866,0.225898,0.141026,0.918027,-0.325632,-0.226173,0.990020,-0.059053,-0.127903,0.155705,-0.400098,-0.903134,0.087619,-0.458510,-0.884335,0.110294,-0.602252,-0.790613,0.129124,-0.563585,-0.815882,0.134953,-0.768548,-0.625385,0.171697,-0.764794,-0.620960,-0.132633,-0.710074,0.691488,-0.673391,-0.405499,0.618091,-0.522599,-0.759239,-0.387799,-0.867824,-0.490432,-0.079409,-0.336772,-0.018433,0.941374,-0.308817,0.018189,0.950926,-0.743156,-0.029664,0.668447,-0.829157,-0.261483,0.494034,-0.313059,-0.133213,0.940306,-0.637074,-0.036042,0.769921,-0.465377,-0.534928,-0.705130,-0.464003,-0.505997,-0.727042,0.104068,-0.347392,-0.931913,0.280740,-0.318186,-0.905484,-0.895047,-0.183813,0.406293,-0.859371,-0.384686,0.336802,-0.474868,0.101657,0.874142,-0.397870,-0.008545,0.917386,-0.508988,-0.281838,0.813288,-0.241462,-0.339152,0.909177,-0.291849,-0.477523,0.828700,-0.414136,-0.531114,0.739158,-0.614917,-0.690298,0.381207,-0.967437,0.000977,0.253059,-0.685446,-0.535905,0.492904,-0.924833,-0.380200,-0.010102,-0.895108,-0.419599,-0.150578,-0.943968,0.049532,-0.326212,-0.146031,-0.046846,0.988159,-0.344249,-0.153417,0.926237,-0.091922,0.082186,0.992340,-0.340159,0.130589,0.931242,-0.158116,0.192480,0.968444,-0.332987,0.356456,0.872921,-0.359081,0.559618,0.746879,-0.352245,0.359233,0.864193,0.125309,-0.449782,-0.884274,-0.017792,-0.428449,-0.903378,-0.018250,-0.478133,-0.878079,0.134312,-0.477279,-0.868404,-0.144414,-0.379925,-0.913663,-0.118015,-0.497787,-0.859188,0.070345,-0.773339,-0.630055,0.114933,-0.678396,-0.725608,0.151891,-0.619404,-0.770196,0.252022,-0.415296,-0.874050,0.197638,-0.438429,-0.876736,0.231605,-0.460311,-0.856990,0.298898,-0.418226,-0.857723,0.244545,-0.608631,-0.754784,0.317759,-0.581164,-0.749168,0.405499,-0.531877,-0.743400,0.397382,-0.367077,-0.840999,0.346446,-0.384503,-0.855617,0.876644,-0.195441,-0.439619,0.593005,-0.367504,-0.716392,0.858852,-0.161382,-0.486068,0.618549,-0.308451,-0.722648,0.335063,-0.412152,-0.847255,0.242286,-0.398572,-0.884548,0.392590,-0.310221,-0.865780,0.280343,-0.265481,-0.922422,0.061037,-0.357921,-0.931730,0.101901,-0.432752,-0.895718,0.185400,-0.399915,-0.897580,0.190222,-0.275521,-0.942259,-0.509873,-0.590625,-0.625416,-0.167852,-0.473373,-0.864711,-0.046693,-0.479202,-0.876431,-0.139317,-0.490951,-0.859951,-0.348277,-0.580218,-0.736229,-0.010468,-0.417249,-0.908719,-0.036195,-0.382672,-0.923154,-0.001648,-0.539567,-0.841914,0.101535,-0.792444,-0.601398,0.930631,0.023530,-0.365123,0.917875,0.042665,-0.394513,0.919401,0.151189,-0.363048,0.897427,0.167486,-0.408063,0.917142,0.219062,-0.332926,0.865535,0.254646,-0.431196,0.866359,0.278573,-0.414441,0.910947,0.389508,-0.135655,0.850551,0.506912,-0.139836,0.842738,0.332316,-0.423444,0.748833,0.624928,-0.220618,0.774499,0.417127,-0.475509,0.619068,0.703848,-0.348308,0.661031,0.510147,-0.550218,0.470931,0.751152,-0.462508,0.512467,0.591937,-0.622028,0.298837,0.795465,-0.527146,0.337657,0.663930,-0.667196,0.051210,0.839076,-0.541581,0.102664,0.720176,-0.686148,-0.227424,0.821802,-0.522355,-0.415265,0.751457,-0.512650,-0.337474,0.656087,-0.674978,-0.156896,0.711539,-0.684896,0.918729,0.264199,-0.293405,0.860897,0.269295,-0.431593,0.928251,0.283242,-0.240974,0.861507,0.246223,-0.444014,0.932707,0.310709,-0.182928,0.859554,0.252571,-0.444227,-0.874630,-0.060183,-0.481033,-0.871151,0.027985,-0.490188,-0.822016,0.249855,-0.511673,-0.855464,-0.070894,-0.512925,-0.863155,-0.050081,-0.502396,-0.856319,-0.019684,-0.516007,-0.855007,0.067324,-0.514206,-0.783319,0.241585,-0.572680,-0.263039,-0.499374,-0.825465,-0.558794,-0.546922,-0.623371,-0.006745,-0.384320,-0.923154,-0.125736,-0.648823,-0.750450,-0.416089,-0.633869,-0.651936,-0.640522,-0.557512,-0.528062,0.182318,-0.310343,-0.932951,0.329875,-0.304666,-0.893490,0.380505,-0.631214,-0.675802,0.150578,-0.632618,-0.759636,0.489151,-0.339183,-0.803491,0.591266,-0.608936,-0.528703,0.696677,-0.306009,-0.648823,0.800409,-0.462081,-0.381817,0.865200,-0.134739,-0.482955,0.921506,-0.204718,-0.329936,0.996551,-0.072390,-0.039766,0.979186,0.120579,-0.163060,0.920286,0.236579,-0.311533,0.874111,0.293649,-0.386853,0.848262,0.342326,-0.404004,0.782373,0.435408,-0.445265,0.671163,0.545335,-0.502060,0.520524,0.641957,-0.562914,0.338816,0.710379,-0.616871,0.117038,0.740349,-0.661916,-0.124790,0.710105,-0.692923,-0.316324,0.642323,-0.698080,0.878536,0.254830,-0.403943,0.893796,0.241279,-0.377972,0.884243,0.269692,-0.381268,-0.899167,0.109043,-0.423719,-0.806513,0.297891,-0.510666,-0.898618,-0.009247,-0.438581,-0.513443,-0.768883,-0.380993,-0.713584,-0.599200,-0.362926,-0.226295,-0.891140,-0.393231,0.099246,-0.932401,-0.347453,0.374096,-0.900449,-0.221839,0.592822,-0.803247,-0.057375,0.799341,-0.597980,0.058687,0.943480,-0.327006,0.053468,-0.863186,-0.053621,-0.501999,-0.856105,-0.069765,-0.512040,-0.875546,-0.057009,-0.479720,-0.855403,-0.081942,-0.511399,-0.850765,-0.114353,-0.512925,-0.847499,-0.045167,-0.528825,-0.872402,-0.034242,-0.487564,-0.886685,-0.145848,-0.438704,-0.967467,-0.197821,0.157628,-0.742973,0.260811,0.616352,-0.893307,0.073611,0.443312,-0.601550,0.477309,0.640522,-0.848537,-0.489273,-0.201361,-0.927641,-0.373363,-0.004059,-0.941954,-0.164464,-0.292642,-0.990295,-0.016816,0.137883,-0.940062,-0.333964,-0.068606,-0.833461,-0.440138,-0.334056,-0.833491,-0.298776,-0.464736,-0.850826,-0.217780,-0.478133,-0.855647,-0.161718,-0.491592,-0.837703,-0.292917,-0.460891,-0.891507,-0.097964,-0.442213,-0.769066,-0.438795,-0.464705,-0.760613,-0.445601,-0.472060,-0.879299,-0.283151,-0.382916,-0.873653,-0.250618,-0.416974,-0.830988,-0.426618,-0.356975,-0.820826,-0.191961,0.537889,-0.978179,-0.182104,-0.099796,-0.830744,0.156774,0.534043,-0.990112,0.044099,-0.133091,-0.761467,0.430311,0.484695,-0.708213,0.561174,0.428358,-0.951811,0.299478,-0.065676,-0.962584,0.252174,-0.099033,-0.838710,0.423383,0.342418,-0.978210,0.169530,-0.119663,-0.890194,-0.048433,-0.452925,-0.899899,0.035157,-0.434614,-0.922239,0.045381,-0.383892,-0.905545,-0.150121,-0.396741,-0.931181,0.009247,-0.364391,-0.370525,0.917325,0.145512,-0.543840,0.774499,-0.322977,-0.575945,0.729881,-0.368145,-0.576891,0.697775,-0.424574,-0.559862,0.717948,-0.413587,-0.658467,0.740837,-0.132359,-0.720847,0.590991,-0.362041,-0.507645,0.545915,-0.666494,-0.557817,0.634327,-0.535173,-0.669210,0.518357,-0.532395,-0.622395,0.447829,-0.641896,-0.505112,0.683309,-0.527177,-0.434309,0.600604,-0.671285,-0.646840,0.434614,-0.626606,-0.572100,0.518326,-0.635578,-0.453017,0.583850,-0.673696,0.068239,0.965026,0.252998,0.019837,0.986663,0.161443,-0.035096,0.989502,0.140019,0.009033,0.971435,0.237037,-0.022675,0.998260,-0.054140,-0.081027,0.994964,-0.058931,-0.040895,0.959349,0.279153,-0.003876,0.984863,0.173223,0.051820,0.983459,0.173498,0.073763,0.960326,0.268868,0.083590,0.993988,-0.070589,0.052736,0.996918,-0.057772,-0.046541,0.962157,0.268380,0.103824,0.991150,0.082553,-0.034150,0.988922,0.144230,-0.134556,0.951903,0.275246,0.302561,0.936857,-0.175237,0.136540,0.984588,-0.109012,0.721732,0.663411,0.197272,0.821223,0.566790,-0.065584,0.457991,0.888943,0.001068,0.282418,0.925535,0.252205,0.846461,0.468032,-0.253761,0.590808,0.770592,-0.238960,0.938994,0.316935,0.133457,0.964263,0.249580,-0.088626,0.983917,0.147282,0.100925,0.990387,0.102908,-0.092288,0.973144,0.083926,-0.214209,0.949614,0.212165,-0.230659,0.998138,0.037599,0.047456,0.991974,0.013337,-0.125614,0.993194,0.053102,-0.103488,0.992828,0.092380,0.075686,0.971343,-0.011902,-0.237312,0.975524,0.025697,-0.218299,0.555773,0.675497,0.484512,0.811365,0.343608,0.472854,0.389233,0.597003,0.701468,0.488968,0.329875,0.807489,0.470992,0.158055,0.867824,0.850337,0.189093,0.491043,0.431623,0.121128,0.893857,0.855007,0.142521,0.498611,0.442305,0.041047,0.895901,0.878506,0.067568,0.472884,0.933958,0.059999,-0.352245,0.911466,0.174749,-0.372326,0.829798,0.030793,-0.557207,0.801324,0.112857,-0.587451,0.713309,0.255165,-0.652730,0.821741,0.378246,-0.426191,0.632618,0.613056,-0.473190,0.567492,0.403119,-0.717917,0.428419,0.502487,-0.750938,0.421491,0.773217,-0.473739,0.164068,0.874538,0.456343,0.158208,0.706992,0.689291,-0.039277,0.915708,0.399853,0.067843,0.779870,0.622242,-0.013184,0.950621,0.310007,-0.095157,0.936705,0.336863,0.031343,0.919126,0.392682,0.032319,0.861171,0.507279,0.077944,0.663717,0.743858,0.096103,0.451430,0.887082,0.072634,0.877834,0.473373,0.067965,0.834986,0.546007,0.050447,0.512101,0.857418,0.179388,0.368389,0.912168,0.145482,0.116306,0.982482,0.267312,0.853206,-0.447829,0.320688,0.565447,-0.759850,0.224281,0.613727,-0.756951,0.164678,0.891537,-0.421857,0.398236,0.302866,-0.865810,0.335917,0.342509,-0.877377,0.410169,0.300241,-0.861141,0.356273,0.340281,-0.870174,0.285226,0.371166,-0.883633,0.265847,0.381024,-0.885495,0.580706,0.155217,-0.799158,0.479934,0.245308,-0.842280,0.561296,0.150609,-0.813776,0.477798,0.239937,-0.845058,0.186438,0.417371,-0.889370,0.127415,0.654622,-0.745109,0.208045,0.386486,-0.898495,0.141575,0.390576,-0.909604,0.111942,0.449324,-0.886319,0.037935,0.689169,-0.723563,0.062990,0.393414,-0.917173,0.036195,0.475265,-0.879086,-0.026917,0.715232,-0.698355,-0.022065,0.924772,-0.379803,-0.081606,0.929655,-0.359203,0.074648,0.912717,-0.401685,0.088809,0.945067,0.314493,0.082522,0.941374,0.327097,0.006256,0.821558,0.570055,0.016602,0.941557,0.336406,0.012146,0.565996,0.824305,0.052400,-0.996887,-0.058473,0.063967,-0.990936,0.118076,0.042970,-0.993072,0.109165,0.029176,-0.997375,-0.066103,0.073153,-0.907926,0.412641,0.050020,-0.912320,0.406384,0.063021,-0.614673,0.786248,0.042207,-0.695059,0.717673,0.030885,-0.709098,-0.704398,0.037538,-0.757530,-0.651692,0.015809,-0.715262,-0.698660,0.074801,-0.719748,-0.690146,0.089236,-0.708090,-0.700430,0.091617,-0.751122,-0.653768,0.032014,-0.822565,-0.567705,0.082736,-0.816950,-0.570696,0.060884,-0.916623,-0.395001,0.019227,-0.919279,-0.393078,0.016327,-0.979369,-0.201331,0.046571,-0.979125,-0.197729,0.621876,-0.125095,-0.773034,0.661763,-0.026887,-0.749199,0.693777,0.004395,-0.720145,0.637501,-0.064638,-0.767693,0.671468,0.039735,-0.739952,0.711478,0.023072,-0.702292,0.832575,-0.006836,-0.553819,0.816004,-0.030244,-0.577227,0.751915,-0.137272,-0.644765,0.522019,-0.340465,-0.782006,0.567431,-0.235664,-0.788934,0.551958,-0.172887,-0.815729,0.470656,-0.289224,-0.833552,0.615528,-0.301431,-0.728141,0.451827,-0.445143,-0.773064,0.104373,-0.061220,0.992645,0.105106,0.042299,0.993530,0.129521,-0.886105,0.444990,0.100558,-0.592181,0.799463,0.095279,-0.662435,0.743004,0.103153,-0.893979,0.436018,0.071383,-0.996582,-0.041322,0.112247,-0.982788,0.146519,0.086856,-0.987579,0.130802,0.063417,-0.996612,-0.052187,0.081210,-0.913572,-0.398389,0.056429,-0.978851,-0.196570,0.077944,-0.912320,-0.401929,0.048189,-0.979675,-0.194617,0.117618,-0.810480,-0.573809,0.144078,-0.736686,-0.660665,0.195624,-0.709189,-0.677297,0.135136,-0.802087,-0.581683,0.160314,-0.689444,-0.706351,0.156621,-0.710929,-0.685568,0.255898,-0.677236,-0.689779,0.243843,-0.645772,-0.723533,0.320048,-0.579730,-0.749290,0.237770,-0.668355,-0.704794,0.353618,-0.617756,-0.702353,0.429395,-0.537858,-0.725455,0.370281,-0.499619,-0.783074,0.267220,-0.618427,-0.739006,0.325938,-0.549333,-0.769372,0.412305,-0.401807,-0.817621,0.483322,-0.440901,-0.756279,0.257912,-0.735679,-0.626270,0.171117,-0.768883,-0.616016,0.446486,-0.655904,-0.608631,0.418683,-0.824641,-0.380291,0.197699,-0.895810,-0.397992,0.095340,-0.909665,-0.404218,0.147252,-0.788110,-0.597613,0.073031,-0.911466,-0.404767,0.164464,-0.971435,-0.170934,0.062166,-0.981567,-0.180639,0.379254,-0.910764,-0.163182,0.348918,-0.936735,0.026551,0.172216,-0.984985,0.009583,0.085940,-0.996246,-0.008454,0.040803,-0.981048,-0.189306,0.071291,-0.997101,-0.025422,0.251808,-0.735496,0.628956,0.204596,-0.838984,0.504166,0.205817,-0.954405,0.216071,0.317331,-0.907834,0.274026,0.131870,-0.929838,0.343486,0.121281,-0.978668,0.165685,0.102664,-0.983123,0.151280,0.101932,-0.910947,0.399670,0.122929,-0.679556,0.723228,0.129582,-0.437117,0.889981,0.607410,-0.793725,0.031922,0.490249,-0.815760,0.306833,0.876431,-0.480880,0.024812,0.770287,-0.534379,0.347880,0.535173,-0.501663,0.679617,0.317972,-0.659169,0.681417,0.511124,-0.192572,0.837642,0.901028,-0.145238,0.408704,0.990234,-0.136814,0.026276,0.169439,-0.313944,0.934172,0.695639,-0.630696,-0.343883,0.665578,-0.728782,-0.160649,0.893368,-0.336863,-0.297250,0.898953,-0.408307,-0.158452,0.680960,-0.487777,-0.546190,0.852229,-0.253059,-0.457839,0.914823,-0.082644,-0.395245,0.928709,-0.023957,-0.370006,0.959441,-0.106143,-0.261116,0.687307,0.028321,-0.725791,0.653890,0.068941,-0.753410,0.637898,0.062166,-0.767571,0.615925,0.078097,-0.783898,0.656514,0.065554,-0.751427,0.704764,0.021760,-0.709067,0.834895,-0.001587,-0.550371,0.934324,0.003693,-0.356334,0.982147,-0.117985,-0.146489,0.112308,0.452437,-0.884671,0.047334,0.431684,-0.900754,0.168920,0.471938,-0.865261,0.251076,0.477340,-0.842067,0.347209,0.456893,-0.818934,0.430006,0.411603,-0.803522,0.629383,0.210700,-0.747978,0.523942,0.331614,-0.784509,0.688498,0.115604,-0.715934,0.682882,0.122745,-0.720115,0.727439,0.060518,-0.683462,0.699149,0.120334,-0.704764,0.687948,-0.293497,-0.663717,0.736656,-0.095645,-0.669424,0.542161,-0.557726,-0.628468,0.608173,-0.451552,-0.652821,0.484939,-0.640370,-0.595569,0.410016,-0.714438,-0.566973,0.222724,-0.804682,-0.550310,0.319529,-0.768975,-0.553636,0.048738,-0.838313,-0.542985,0.126530,-0.827479,-0.547014,0.004975,-0.844844,-0.534959,0.139714,-0.165044,-0.976318,0.173925,-0.205786,-0.963012,0.131443,-0.279946,-0.950957,0.269570,-0.120487,-0.955382,0.284829,-0.264748,-0.921262,0.354106,-0.675008,-0.647237,0.295480,-0.807978,0.509720,0.345805,-0.938169,0.015625,0.390423,-0.902921,0.179571,0.219855,-0.723655,0.654164,0.291726,-0.484848,-0.824488,0.421918,-0.529710,-0.735771,0.224036,-0.895505,0.384503,0.008026,-0.561205,0.827631,0.156133,-0.180486,-0.971099,0.187231,-0.194983,-0.962767,0.123051,-0.621815,-0.773400,0.163884,-0.228065,-0.959746,0.159276,-0.986999,0.021149,0.242897,-0.826411,0.507920,0.266427,-0.691549,0.671377,0.307962,-0.508011,0.804376,-0.266915,-0.008057,0.963652,-0.145024,-0.136021,0.980010,0.120151,-0.216285,0.968902,0.062014,-0.184790,0.980804,-0.100192,-0.170049,0.980316,0.123569,-0.179998,0.975860,0.557298,-0.206854,0.804102,0.588672,-0.206153,0.781610,0.580004,-0.217994,0.784875,0.604175,0.025056,-0.796411,0.666036,0.151006,-0.730461,0.988372,0.058382,-0.140263,0.982818,-0.094211,-0.158544,0.646626,0.324412,-0.690329,0.864528,0.383129,-0.325205,0.919462,0.391766,-0.032411,0.977020,0.024110,0.211768,0.952361,-0.138615,0.271615,-0.200385,-0.569292,0.797327,0.020539,-0.608142,0.793542,0.065676,-0.294320,0.953429,-0.155034,-0.291940,0.943785,0.331675,-0.591388,0.734977,0.466231,-0.357891,0.809015,-0.244179,-0.533341,0.809870,-0.266305,-0.303568,0.914823,-0.122105,-0.345073,0.930570,-0.220557,-0.159520,0.962218,-0.069124,-0.164495,0.983917,0.032136,-0.971892,-0.233131,-0.138462,-0.872982,0.467635,-0.069399,-0.865902,0.495315,0.230659,-0.919370,-0.318583,0.605579,-0.790704,-0.089480,0.528062,-0.763543,0.371654,0.075625,-0.911374,0.404523,0.159185,-0.972015,-0.172643,0.838893,-0.421796,0.343944,0.898251,-0.439344,0.007508,0.955504,-0.272378,0.112980,0.904630,-0.232673,0.356975,0.513382,-0.630207,-0.582446,0.826228,-0.402509,-0.394055,0.283547,-0.319712,-0.904050,0.396069,-0.201819,-0.895749,0.468703,-0.159642,-0.868770,0.910459,-0.289254,-0.295511,0.951964,-0.194067,-0.236702,0.959807,-0.184912,0.211066,0.525529,-0.085788,-0.846431,0.899655,-0.168432,0.402722,0.879269,-0.158910,0.448988,0.472030,0.864772,-0.171209,0.338267,0.929106,0.149236,0.234352,0.963836,0.126804,0.455702,0.844874,-0.280099,0.119755,0.824458,0.553056,-0.096072,0.808161,0.581042,-0.038484,0.786004,0.616993,0.316111,0.944639,0.087588,0.495285,0.801111,-0.335917,0.580859,0.300668,-0.756401,0.581225,0.716758,-0.385205,0.534776,0.598804,-0.596149,0.472335,0.246284,-0.846278,0.509140,0.573534,-0.641682,0.409650,0.298685,-0.861934,0.567095,0.823267,0.024842,0.471145,0.751640,0.461531,0.750725,0.610248,-0.252937,0.743980,0.592853,0.308115,0.860683,0.493149,0.126499,0.831141,0.348155,-0.433515,0.591144,0.060793,-0.804254,0.354839,-0.353099,0.865658,0.436781,-0.124210,0.890927,0.004425,0.384136,0.923246,0.010010,0.119144,0.992798,-0.218146,-0.000092,0.975890,-0.274331,0.212287,0.937895,0.489242,0.187811,0.851650,0.448195,0.409986,0.794336,0.706717,0.516587,0.483383,0.662740,0.465438,0.586596,0.010529,0.611225,0.791345,0.414716,0.580126,0.701010,-0.278878,0.488510,0.826746,-0.287240,0.331278,0.898709,0.092013,0.159612,0.982849,0.323710,0.632984,0.703207,0.619953,0.018067,0.784417,0.647908,0.364177,0.668996,0.871487,0.397565,0.287057,0.906674,-0.001129,0.421796,0.598682,0.790155,0.131077,0.675680,0.685812,-0.270272,0.439375,0.359050,-0.823389,0.610034,0.569964,-0.550401,0.304086,0.176458,-0.936125,0.279733,0.098300,-0.955016,0.216803,0.061617,-0.974242,0.168371,-0.009705,-0.985656,0.106296,-0.072115,-0.991699,0.153081,-0.012970,-0.988098,0.109043,-0.059450,-0.992248,0.112033,-0.036592,-0.993011,0.308695,-0.040071,-0.950285,0.288186,-0.026765,-0.957183,0.156163,-0.079257,-0.984527,0.240181,-0.068178,-0.968322,0.321116,-0.201056,-0.925443,0.227424,-0.192938,-0.954466,0.337901,-0.183172,-0.923154,0.388348,-0.117954,-0.913907,0.335459,-0.018159,-0.941862,0.241279,-0.123234,-0.962584,0.223426,-0.091372,-0.970397,0.241523,-0.039338,-0.969573,0.320505,-0.128147,-0.938505,0.073336,-0.094638,-0.992798,0.078677,-0.249611,-0.965117,0.143681,-0.188086,-0.971557,0.129002,-0.080538,-0.988342,0.137730,-0.666189,-0.732933,0.140263,-0.546068,-0.825892,0.299539,-0.120853,-0.946379,0.323985,-0.393353,-0.860378,0.269967,-0.036470,-0.962157,0.260018,-0.110782,-0.959197,-0.025727,-0.300455,-0.953429,0.093417,-0.192938,-0.976745,-0.041261,-0.308512,-0.950285,-0.129795,-0.447768,-0.884671,-0.104404,-0.402173,-0.909574,-0.178808,-0.857631,-0.482131,-0.281075,-0.860958,-0.423902,-0.234901,-0.955931,0.175970,-0.070101,-0.899167,0.431928,-0.410016,-0.797143,-0.443159,-0.414136,-0.905423,-0.093173,-0.417554,-0.866939,0.272103,-0.249794,-0.785913,0.565600,-0.068026,-0.582629,0.809870,-0.310648,-0.502518,-0.806787,-0.383496,-0.533677,-0.753716,-0.485977,-0.737632,-0.468703,-0.211768,-0.596301,-0.774285,-0.539689,-0.831355,-0.132389,-0.511521,-0.815760,0.269906,-0.467940,-0.666311,0.580523,-0.433088,-0.454207,0.778527,-0.506851,-0.344615,0.790124,0.032228,-0.361614,0.931761,0.037507,-0.338176,0.940306,-0.562487,-0.324717,0.760338,0.180334,-0.301218,0.936338,0.288369,-0.214362,0.933195,0.380535,0.001190,0.924741,0.032044,-0.158116,0.986877,-0.585559,-0.243965,0.773003,-0.927519,0.368053,0.064760,-0.869228,0.425367,-0.251869,-0.999939,-0.001343,-0.007813,-0.943602,-0.095737,0.316904,-0.668813,0.483810,-0.564409,-0.761406,0.283517,-0.582965,-0.756951,0.106143,-0.644765,-0.990875,-0.133641,-0.016633,-0.917051,-0.214881,0.335856,-0.391675,-0.458419,0.797754,-0.001190,-0.418836,0.908048,-0.299020,-0.555742,0.775689,-0.059877,-0.559160,0.826868,0.122837,-0.529649,0.839259,0.142247,-0.373699,0.916562,0.138646,-0.363720,0.921110,0.189032,-0.200659,0.961211,0.110843,-0.521683,0.845882,-0.039308,-0.329081,0.943449,0.018067,-0.088473,0.995911,0.016877,-0.829951,0.557543,0.034211,-0.814325,0.579333,-0.133000,-0.985473,-0.105350,-0.171575,-0.962523,-0.209967,-0.131443,-0.805750,0.577471,-0.447249,-0.674703,0.587115,-0.579821,-0.811975,0.066836,-0.223334,-0.973907,-0.039521,-0.949339,-0.206702,0.236610,-0.884243,-0.431776,0.177923,-0.719596,-0.416730,0.555406,-0.845088,-0.234809,0.480239,-0.583514,-0.171941,-0.793664,-0.451125,-0.363445,-0.815088,-0.799738,-0.428327,-0.420606,-0.940245,-0.203589,-0.272866,-0.340312,-0.495499,-0.799127,-0.491928,-0.676962,-0.547410,-0.688925,-0.032105,-0.724082,-0.980041,-0.148412,-0.132206,-0.938871,-0.194403,0.284066,-0.862117,-0.223243,0.454848,-0.857509,-0.229560,0.460372,0.162450,0.807917,0.566424,0.216956,0.824671,0.522294,-0.161687,0.983367,0.082553,-0.188147,0.980255,0.060518,-0.019257,0.851314,0.524277,-0.400830,0.910184,0.104190,-0.558489,0.812037,-0.169225,-0.424604,0.866085,-0.263741,-0.412854,0.845790,-0.337840,-0.563707,0.630177,-0.533921,-0.472274,0.660512,-0.583636,-0.692404,0.603717,-0.395032,-0.604633,0.179693,-0.775964,-0.555803,0.277810,-0.783471,-0.428571,0.501511,-0.751518,-0.677175,0.735282,-0.027039,-0.816462,0.497482,-0.292978,-0.465773,0.734703,0.493210,-0.800134,0.475356,0.365764,-0.793481,0.319559,-0.517899,-0.379040,0.067660,-0.922880,-0.932157,0.319224,0.170721,-0.407361,-0.242378,0.880490,-0.399945,-0.037111,0.915769,0.300058,-0.019623,0.953703,0.101810,0.157292,0.982269,0.176580,0.385235,0.905728,0.409925,0.204443,0.888882,-0.359783,0.336863,0.870083,-0.390912,0.154515,0.907346,-0.761986,0.241798,0.600726,-0.692770,0.286630,0.661702,-0.352000,0.532762,0.769555,0.152837,0.633106,0.758782,0.397137,0.523759,0.753594,0.364422,0.378643,0.850734,0.001770,0.202521,0.979247,-0.604968,0.002167,0.796228,-0.232948,0.689291,0.685965,-0.655873,0.371532,0.657063,-0.891476,-0.086093,0.444777,-0.872433,0.384930,0.301096,-0.525193,0.845302,0.097934,-0.610187,0.749229,-0.257454,-0.540361,0.677084,-0.499496,-0.435163,0.585406,-0.684042,-0.380810,0.448164,-0.808771,-0.356090,0.273598,-0.893490,-0.346263,0.397595,-0.849696,-0.288217,0.280251,-0.915616,-0.253883,0.085910,-0.963378,-0.324961,0.059877,-0.943815,-0.217841,-0.163640,-0.962157,-0.269509,-0.148534,-0.951445,0.230598,-0.208838,-0.950346,0.060091,-0.269753,-0.961028,0.037873,-0.190771,-0.980895,0.215064,-0.230079,-0.949095,-0.088931,-0.055086,-0.994507,0.013703,0.019501,-0.999695,-0.235939,0.023469,-0.971465,-0.366192,-0.025178,-0.930174,-0.427107,0.181921,-0.885708,-0.303629,0.164953,-0.938383,-0.146611,-0.166509,-0.975066,-0.208045,0.058138,-0.976379,-0.099918,-0.021882,-0.994751,-0.169958,-0.476424,-0.862606,-0.203253,-0.510666,-0.835383,-0.222510,-0.333415,-0.916135,-0.177648,-0.341014,-0.923093,-0.225990,-0.750786,-0.620655,-0.194433,-0.697012,-0.690146,-0.232704,-0.580798,-0.780053,-0.188330,-0.383435,-0.904141,-0.144597,-0.326518,-0.934049,0.092502,-0.050417,-0.994415,0.072420,-0.105014,0.991821,0.070956,-0.133091,0.988556,0.356426,-0.101505,0.928770,0.371136,-0.116153,0.921262,-0.046541,-0.730613,0.681173,0.222938,-0.687857,0.690725,0.432112,-0.654653,0.620197,0.559435,-0.075747,0.825373,0.570879,-0.124393,0.811518,0.539781,-0.664479,0.516800,0.658406,-0.081973,0.748161,0.568773,-0.762078,0.309366,0.758690,-0.185369,0.624470,0.761223,-0.078280,0.643696,0.671834,-0.104984,0.733177,-0.022584,-0.970519,-0.239937,-0.354259,-0.906339,-0.230232,0.393445,-0.889340,0.232887,0.609851,-0.759758,0.225410,0.790490,-0.371349,0.486984,0.849086,-0.291025,0.440809,0.392376,-0.919736,0.008301,0.794855,-0.437696,0.420209,0.837672,-0.139622,0.528001,-0.326884,-0.796319,-0.508927,-0.582293,-0.663656,-0.469497,0.056978,-0.972045,-0.227668,-0.075381,-0.917112,-0.391400,0.000488,-0.996704,-0.080874,0.050722,-0.991333,-0.120945,-0.161748,-0.977996,-0.131626,-0.080508,-0.993286,-0.082766,-0.240974,-0.906003,-0.347942,-0.425581,-0.868618,0.253609,-0.276742,-0.913511,-0.298135,-0.493149,-0.776452,0.392254,-0.423231,-0.790277,0.443007,-0.483688,-0.767113,0.421339,-0.201453,-0.950896,-0.234870,-0.171911,-0.959990,-0.220893,-0.192999,-0.960784,-0.199011,-0.290689,-0.775994,0.559709,-0.231697,-0.063906,0.970672,-0.229957,-0.165075,0.959075,-0.425092,-0.027863,0.904691,-0.454299,-0.183325,0.871761,-0.502365,-0.337992,0.795831,-0.515824,-0.224921,0.826594,-0.495804,-0.023316,0.868099,-0.529008,-0.191870,0.826624,-0.267281,-0.014466,0.963500,0.046144,-0.049806,0.997681,-0.430616,-0.006836,0.902493,-0.490310,-0.019745,0.871303,0.364269,-0.095401,0.926389,0.569140,-0.138890,0.810389,0.699423,-0.145848,0.699637,0.780938,-0.109012,0.614978,0.832148,-0.103580,0.544755,0.854610,-0.172521,0.489731,0.828455,-0.203101,0.521867,-0.169744,-0.975646,0.138707,-0.029237,-0.983825,0.176672,-0.260445,-0.555986,0.789300,-0.484848,-0.548357,0.681295,0.148808,-0.961974,0.228950,0.034516,-0.520432,0.853175,0.006165,-0.253090,0.967406,-0.334819,-0.268868,0.903073,-0.556047,-0.243507,0.794641,-0.777459,-0.349925,0.522568,-0.645314,-0.663656,0.378246,-0.611072,-0.574175,0.544877,-0.692923,-0.269845,0.668569,-0.242927,-0.969359,-0.035768,-0.263710,-0.960326,0.090548,-0.189123,-0.971801,-0.140751,-0.634144,-0.761223,0.135411,0.361400,-0.890744,-0.275491,0.192358,-0.917631,-0.347728,-0.277810,-0.958678,-0.060854,-0.678610,-0.697195,0.230995,-0.525040,-0.832545,0.176458,-0.757866,-0.504379,0.413739,-0.064516,-0.972930,-0.221809,0.716666,-0.628620,-0.301950,0.517808,-0.700705,-0.490738,0.371166,-0.767754,-0.522263,0.270821,-0.825190,-0.495651,0.224403,-0.849025,-0.478256,0.215949,-0.843471,-0.491806,0.193884,-0.831751,-0.520157,0.175512,-0.836085,-0.519730,0.166204,-0.913358,-0.371654,0.231788,-0.890378,-0.391705,0.202582,-0.966887,0.155126,0.359050,-0.931516,0.057649,0.178228,-0.890408,-0.418775,0.391644,-0.920103,0.000000,0.416364,-0.907651,0.052950,0.211707,-0.874294,-0.436720,0.254433,-0.845912,-0.468673,0.369182,-0.909726,0.189917,0.487411,-0.458327,0.743187,0.319285,-0.456282,0.830561,0.423933,-0.116794,0.898099,0.288339,-0.171209,0.942076,0.252724,-0.546464,0.798425,0.456679,-0.521561,0.720664,0.538652,-0.491501,0.684286,0.479171,-0.083346,0.873745,0.418958,-0.041261,0.907041,0.299661,-0.066530,0.951689,0.011994,-0.091006,0.995758,0.463118,-0.023530,0.885952,-0.360973,-0.099155,0.927274,-0.591144,-0.093326,0.801111,-0.721641,-0.105960,0.684072,-0.804346,-0.177526,0.566973,-0.808466,-0.299264,0.506729,-0.805536,-0.447615,0.388165,-0.781030,-0.540544,0.312632,-0.974639,0.182134,0.129795,-0.799005,0.502701,0.329905,-0.732047,0.038118,0.680135,-0.752953,-0.314646,0.577929,-0.506790,0.704031,0.497452,-0.559801,0.381664,0.735466,-0.243446,0.631001,0.736564,-0.192633,0.786584,0.586596,0.157964,0.795465,0.585009,0.145573,0.736229,0.660848,0.389172,-0.872311,-0.295938,0.100620,-0.971313,-0.215430,0.597247,-0.769707,-0.225349,0.231697,-0.746574,-0.623615,0.868099,0.368297,0.332804,0.933287,0.162908,0.319956,0.715232,0.560076,0.418012,0.676321,0.669668,0.306742,0.792718,0.586963,0.164373,0.864162,0.484939,0.134190,0.464217,0.698325,0.544786,0.463393,0.749474,0.472762,-0.923795,-0.355083,-0.143071,-0.994171,-0.107761,0.001648,-0.664541,-0.593524,0.453963,-0.512375,-0.801752,0.307657,-0.674215,-0.668569,-0.313669,-0.797296,-0.541551,-0.266396,-0.332102,-0.910886,0.244819,-0.219733,-0.957213,0.188208,0.982238,0.154424,0.106418,0.939940,-0.195715,0.279580,0.939390,-0.021271,0.342143,0.913846,0.348766,0.207831,0.874355,-0.482833,0.048036,0.912015,-0.219794,-0.346202,-0.466994,-0.767235,-0.439558,-0.137669,-0.990204,0.022370,0.620716,-0.033967,0.783258,0.436537,0.012085,0.899594,0.427442,-0.061251,0.901944,0.588366,-0.069552,0.805567,0.260781,0.043916,0.964385,0.307688,-0.046419,0.950346,0.364910,-0.036287,0.930326,0.431806,-0.059908,0.899960,0.554552,-0.171880,0.814173,-0.451247,-0.768456,-0.453658,-0.539415,-0.615253,-0.574816,-0.249214,-0.780450,-0.573351,-0.191626,-0.930235,-0.312876,-0.587817,-0.540880,-0.601550,-0.320109,-0.699484,-0.638905,0.154424,-0.810877,-0.564440,0.172857,-0.875973,-0.450270,0.117862,-0.979247,-0.164678,-0.810602,-0.419874,0.408155,-0.866054,-0.486435,-0.115268,-0.795831,-0.600604,0.076571,-0.617084,-0.554918,0.557878,-0.789148,-0.468764,-0.396802,-0.791467,-0.550127,-0.266213,-0.698386,-0.708396,-0.101779,-0.550157,-0.814081,0.185949,-0.330332,-0.799921,0.500931,-0.691488,-0.550981,-0.467147,-0.567858,-0.778558,-0.267098,-0.701834,-0.477767,-0.528306,0.152501,-0.098148,0.983398,0.134526,-0.302286,0.943663,0.132328,0.046754,0.990081,-0.066103,-0.019135,0.997620,-0.072451,-0.244057,0.967040,-0.053804,-0.664296,0.745506,-0.452071,-0.209937,0.866909,-0.312540,-0.402966,0.860164,-0.147160,-0.702994,0.695761,0.892544,-0.173162,0.416333,0.777520,-0.087405,0.622700,0.751518,-0.160558,0.639851,0.849666,-0.278481,0.447768,0.720145,-0.302377,0.624439,0.814661,-0.347179,0.464522,0.857875,-0.508682,-0.072298,0.931272,-0.315073,0.182897,0.860256,-0.459639,0.220618,0.733848,-0.677541,-0.048341,0.757561,-0.569384,0.319193,0.556597,-0.828150,0.065676,0.499344,-0.826930,-0.258370,0.327128,-0.941343,-0.082766,0.601489,-0.719993,-0.346110,-0.260292,-0.964476,0.044984,-0.047090,-0.975982,0.212592,0.258492,-0.878964,0.400678,0.071139,-0.953246,0.293649,0.535539,-0.646321,0.543504,0.268777,-0.604968,0.749474,0.263741,-0.323954,0.908536,0.223640,0.143223,0.964080,0.062410,0.178289,0.981994,0.200598,0.374828,0.905118,-0.035920,0.425367,0.904294,-0.284555,0.505722,0.814386,-0.142857,0.199805,0.969359,0.180395,0.668966,0.721030,-0.122227,0.696829,0.706717,-0.416761,0.709647,0.568041,0.661031,0.114841,0.741478,0.443129,0.129368,0.887051,0.698141,0.369518,0.613178,0.481338,0.363933,0.797388,0.681021,0.610889,0.403699,0.483413,0.637135,0.600269,0.942412,0.044923,0.331339,0.829249,0.084964,0.552355,0.907773,0.379254,0.179113,0.835719,0.379925,0.396496,0.811853,0.579455,0.071169,0.769616,0.605762,0.201758,0.960295,-0.242653,-0.137516,0.993103,-0.039155,0.110385,0.985626,0.085665,-0.145573,0.943846,0.327403,0.044130,0.962523,0.266549,-0.049501,0.860836,0.502640,0.079012,0.160710,-0.751762,-0.639515,0.708121,-0.555650,-0.435652,0.160741,-0.673696,-0.721274,0.786859,-0.359996,-0.501236,0.132908,-0.582659,-0.801752,0.835749,-0.190405,-0.515000,-0.607105,-0.554216,-0.569414,-0.359691,-0.684988,-0.633534,-0.655965,-0.519456,-0.547563,-0.419507,-0.642354,-0.641346,-0.717277,-0.466750,-0.517319,-0.499100,-0.586901,-0.637471,-0.784356,-0.420942,-0.455580,-0.706870,-0.475692,-0.523423,-0.836909,-0.283822,-0.467940,-0.753105,-0.417707,-0.508255,-0.910245,-0.173803,-0.375744,-0.814600,-0.347850,-0.464064,-0.967254,-0.163884,0.193732,-0.902310,-0.339702,-0.265328,-0.983032,0.181951,-0.022706,-0.930570,-0.093295,-0.354015,-0.942747,0.324839,-0.075137,-0.958007,0.046175,-0.282937,-0.623981,0.086856,0.776574,-0.728690,0.465407,0.502335,-0.742576,0.605792,0.285531,0.751762,0.132084,0.646046,0.929441,-0.150304,0.336894,0.679678,0.244667,0.691488,0.935575,0.060427,0.347819,0.989105,-0.142705,-0.035432,0.872433,-0.481246,0.084994,-0.103030,0.727226,0.678579,0.362743,0.440016,0.821436,0.374432,0.408643,0.832331,-0.143590,0.670522,0.727836,-0.720939,-0.423566,-0.548448,-0.797235,-0.105472,-0.594348,-0.427107,-0.630299,-0.648274,-0.421583,-0.235206,-0.875729,-0.692099,0.693899,0.198706,-0.712973,0.558977,0.423261,-0.833155,0.352000,0.426466,-0.816218,0.551866,0.170934,-0.845363,0.193457,0.497879,-0.810907,0.468978,0.349864,-0.498428,0.696158,0.516587,-0.474807,0.794336,0.378887,0.674764,-0.737968,-0.005615,0.913388,-0.306742,-0.267556,0.789392,-0.467727,-0.397534,0.470840,-0.882077,-0.014740,0.347789,-0.937193,-0.025788,0.662587,-0.594775,-0.455123,0.504624,-0.681112,-0.530442,0.263588,-0.950438,-0.164769,-0.861995,0.127171,0.490646,-0.947020,0.164434,0.275826,-0.843532,0.462508,0.272896,-0.774285,0.424879,0.468947,-0.957366,0.141514,-0.251808,-0.834681,0.352824,-0.422803,0.013031,-0.889187,-0.457320,0.173650,-0.654042,-0.736229,-0.147435,0.034089,0.988464,-0.148534,0.029176,0.988464,-0.320505,0.071078,0.944548,-0.295083,-0.016572,0.955321,-0.130863,0.104068,0.985900,-0.376019,0.149998,0.914365,-0.590472,0.174078,0.788049,-0.540757,0.097171,0.835536,-0.515366,-0.132725,0.846614,-0.264260,-0.722892,-0.638417,0.150395,-0.730522,-0.666097,0.050478,-0.772820,-0.632557,-0.323283,-0.778436,-0.538011,0.409192,-0.686117,-0.601459,0.326334,-0.727958,-0.602924,0.240577,-0.812159,-0.531480,-0.030549,-0.897946,-0.439009,-0.349132,-0.900235,-0.260079,0.541673,-0.840144,-0.026704,0.659841,-0.734581,-0.157964,0.681600,-0.680868,0.267891,0.452193,-0.848598,0.274483,0.718070,-0.646352,-0.257973,0.807123,-0.551286,0.211219,0.708304,-0.365246,0.604022,0.579485,-0.555132,0.596637,0.313334,-0.788812,0.528733,0.563646,-0.653645,-0.504990,0.508744,-0.716056,-0.477859,0.383862,-0.866268,-0.319651,0.345470,-0.081515,0.934843,0.131840,0.022553,0.990997,0.126408,-0.126041,0.983917,0.338176,-0.297403,0.892819,0.062868,-0.312174,0.947935,0.140568,-0.685598,0.714225,0.422834,-0.403790,0.811243,0.194983,-0.701865,0.685049,0.532975,-0.204566,0.821009,-0.758415,0.044801,0.650197,-0.738731,-0.184759,0.648122,-0.774834,0.169317,0.609027,-0.916257,0.107669,0.385815,-0.904172,-0.057222,0.423292,-0.876278,-0.188299,0.443434,-0.959075,-0.242347,0.146275,-0.859493,-0.454695,0.233406,-0.988433,-0.038942,0.146489,-0.956420,-0.270058,-0.110752,-0.871944,-0.472701,-0.127293,-0.687674,-0.725181,-0.034150,-0.722526,-0.549089,-0.419965,-0.663076,-0.667409,-0.338908,-0.529405,-0.836848,-0.139164,0.130772,-0.991241,-0.016602,-0.101413,-0.971618,0.213599,-0.203528,-0.934080,0.293313,-0.318064,-0.878079,0.357433,-0.269814,-0.596759,0.755669,-0.579638,-0.606006,0.544725,-0.185522,-0.350597,0.917936,0.525163,0.136357,0.839991,0.291543,0.200079,0.935362,0.189032,0.104190,0.976409,0.419721,0.052217,0.906125,-0.071474,0.320536,0.944517,-0.100620,0.163854,0.981323,0.356609,0.353618,0.864711,0.607562,0.206153,0.767022,-0.066652,0.590594,0.804193,-0.482620,0.463637,0.743034,-0.423719,0.245674,0.871822,-0.728141,0.552324,0.405835,-0.670370,0.323954,0.667562,-0.488907,0.720023,0.492416,-0.696860,0.697470,0.166845,-0.774987,0.608234,0.171422,-0.810114,0.379742,0.446608,-0.741783,0.651387,0.159398,-0.875484,0.392041,0.282510,-0.749229,0.661336,0.034822,-0.717521,0.670522,0.188421,-0.760247,0.596515,0.257179,-0.936125,0.303262,0.177984,-0.937681,0.323618,0.126377,-0.999084,0.007752,-0.041566,-0.684042,0.620838,0.382885,-0.819971,0.514603,0.250526,-0.882687,-0.199622,-0.425398,-0.795526,-0.421339,-0.435377,-0.264229,-0.537645,-0.800653,-0.257546,-0.660482,-0.705252,-0.865566,0.184881,-0.465346,-0.266823,-0.323191,-0.907926,0.261818,-0.557451,-0.787835,0.220527,-0.661336,-0.716910,0.533830,-0.498672,-0.682852,0.488998,-0.607715,-0.625721,0.243263,-0.533738,-0.809870,0.534715,-0.510636,-0.673269,0.668233,-0.448195,-0.593738,0.623524,-0.566088,-0.539171,0.824244,-0.366222,-0.431776,0.789117,-0.510422,-0.341624,0.684378,-0.414167,-0.600055,0.819697,-0.301279,-0.487106,0.977599,-0.198431,-0.069857,0.929777,-0.353465,0.102664,0.946287,-0.065401,0.316538,0.840632,-0.162297,0.516709,0.958586,-0.165349,-0.231788,0.991821,-0.082797,0.096957,0.767602,0.037385,0.639790,0.645558,-0.035401,0.762871,0.870174,0.043794,0.490738], - 'vertices': [0.929911,-0.521877,-0.700192,0.905874,-0.340688,-0.685784,0.955725,-0.400725,-0.576833,0.984035,-0.597614,-0.576169,0.897329,-0.220768,-0.669045,0.936195,-0.226556,-0.586357,0.991372,-0.255260,-0.473713,1.001418,-0.458143,-0.463701,1.025350,-0.679255,-0.453199,1.062455,3.333254,0.794922,1.045747,3.413290,0.661261,0.939354,3.470322,0.781788,0.938398,3.394768,0.931933,1.030630,3.467042,0.561288,0.957330,3.521033,0.605395,0.853362,3.585342,0.656569,0.829292,3.526427,0.862395,0.821471,3.449776,1.030306,0.857992,3.619625,-0.563292,0.722068,3.740676,-0.365586,0.774185,3.738714,-0.121121,0.910532,3.637963,-0.196320,0.644091,3.804618,-0.241562,0.649302,3.819699,-0.051362,0.649015,3.806458,0.205148,0.783326,3.724008,0.153784,0.914485,3.632887,0.108314,0.999808,3.538116,0.375691,0.888897,3.619488,0.399658,1.093445,3.454180,0.390028,1.159914,3.416228,0.121424,1.041630,3.530142,0.093221,1.059689,3.513968,-0.214398,1.201142,3.367999,-0.184820,1.208617,3.315554,-0.493346,1.056340,3.473639,-0.537152,0.613545,3.706542,0.749881,0.738240,3.648026,0.705454,0.765965,3.693763,0.438109,0.635143,3.763350,0.479205,0.314147,3.804827,0.819049,0.474859,3.757606,0.787343,0.490849,3.823714,0.514747,0.323015,3.876166,0.545518,0.501017,3.872415,0.240368,0.330666,3.925063,0.259892,-0.089538,3.854537,0.851404,0.122710,3.841277,0.842439,0.124819,3.913468,0.570729,-0.091766,3.924576,0.584071,0.132346,3.962107,0.268686,-0.084230,3.974838,0.267780,-0.096697,3.672509,1.313937,-0.100772,3.562639,1.488614,0.104709,3.552033,1.475829,0.109876,3.659535,1.303974,-0.104092,3.445489,1.642247,0.102029,3.438702,1.629895,0.287379,3.414542,1.592247,0.289714,3.528224,1.441811,0.294370,3.629399,1.271792,0.116938,3.759321,1.093775,-0.092123,3.771225,1.099821,0.303576,3.724140,1.066867,1.134194,0.383799,0.093986,1.147742,0.536418,0.102872,1.136055,0.543416,0.239980,1.117591,0.397804,0.236001,1.192617,0.685546,0.134425,1.160958,0.660946,0.258623,1.162091,0.659252,0.361096,1.142500,0.559303,0.356418,1.128607,0.423855,0.362673,1.089202,-0.475423,0.038566,1.098924,-0.416761,-0.096491,1.113086,-0.176370,-0.084351,1.098583,-0.210094,0.057264,1.081805,-0.357813,-0.225433,1.091809,-0.136994,-0.221055,1.108853,0.062959,-0.215307,1.125780,0.038923,-0.069979,1.107298,0.028207,0.075831,1.043323,-0.301625,-0.351279,1.049413,-0.096734,-0.357565,0.979329,-0.066242,-0.491796,0.977119,0.113312,-0.515867,1.060743,0.091739,-0.365142,1.081010,0.264051,-0.375088,1.131426,0.239999,-0.213295,0.987181,0.286345,-0.540133,1.019433,0.445906,-0.566315,1.106888,0.421097,-0.385610,1.152817,0.396922,-0.211718,1.144267,0.222856,-0.059888,1.120432,0.221253,0.087074,1.161008,0.382730,-0.052330,0.968061,-0.600430,0.304325,1.044866,-0.535189,0.177854,1.051245,-0.236509,0.200079,0.987182,-0.277938,0.334679,1.073873,0.034418,0.226057,1.032186,0.050618,0.398102,1.099887,0.236684,0.234909,1.100579,0.269280,0.376071,1.177953,0.529363,-0.044558,1.210347,0.670387,-0.026545,1.175326,0.541525,-0.209092,1.215519,0.709998,-0.197739,1.135288,0.567621,-0.395316,1.063588,0.592234,-0.591549,1.115419,0.731164,-0.624186,1.173150,0.712480,-0.416605,1.166877,0.872846,-0.668077,1.220155,0.874284,-0.463865,1.219040,1.026687,-0.717527,1.267424,1.039159,-0.517184,1.302824,1.052435,-0.328157,1.258162,0.891030,-0.275053,1.339785,1.429902,-0.810035,1.276177,1.205708,-0.766124,1.193464,1.185602,-0.984116,1.256596,1.431804,-1.055394,1.131800,1.005030,-0.920023,1.001299,0.978804,-1.115254,1.063017,1.153181,-1.189937,1.127193,1.393243,-1.276315,1.378364,1.361953,-0.389886,1.342737,1.204309,-0.368755,1.316028,1.207895,-0.559012,1.367613,1.395201,-0.580903,1.429829,1.700395,-0.309667,1.405853,1.530330,-0.376796,1.413749,1.610849,-0.572558,1.456938,1.826222,-0.501302,1.405247,1.708748,-0.830754,1.462037,2.060486,-0.788733,1.360895,2.721356,-0.968595,1.420075,2.817122,-0.676722,1.483986,2.532171,-0.596180,1.424490,2.430672,-0.897627,1.446849,2.901642,-0.366866,1.504529,2.633883,-0.291281,1.507839,2.366241,-0.207260,1.507233,2.238567,-0.485766,1.061969,3.229715,0.936702,1.191984,3.143219,0.771286,1.190944,3.250009,0.601740,1.048892,3.110015,1.080829,1.165831,3.013339,0.935234,1.275601,2.891610,0.780249,1.304316,3.022407,0.608121,1.338255,3.103417,0.339887,1.426857,2.844143,0.322380,1.479528,2.747925,0.025911,1.423177,2.999085,-0.037288,1.421250,2.550049,0.388202,1.477405,2.479140,0.079422,1.325974,3.202997,-0.118344,1.341387,3.131860,-0.434588,1.257959,3.283281,0.200333,1.155148,3.356771,0.468742,1.373839,2.889350,0.516431,1.361257,2.743548,0.614353,1.182341,1.992611,-1.368196,1.172327,2.294890,-1.401405,1.314258,2.355935,-1.172735,1.333881,2.043696,-1.126896,1.134004,2.566062,-1.418469,1.260463,2.634541,-1.215722,0.841659,1.831824,-1.693479,0.841571,2.149192,-1.721284,1.014652,2.223825,-1.583777,1.019789,1.915995,-1.553524,0.836763,2.451159,-1.719510,0.994090,2.506433,-1.585613,0.437771,2.387622,-1.908961,0.653638,2.408999,-1.826058,0.649709,2.090609,-1.829102,0.428496,2.059203,-1.913845,0.641877,1.767759,-1.802402,0.412684,1.734934,-1.884596,0.447224,3.713311,-0.870108,0.463204,3.590925,-1.122810,0.219025,3.620936,-1.184782,0.208967,3.737576,-0.939244,0.468758,3.425515,-1.354724,0.224820,3.461447,-1.409796,-0.047809,3.468900,-1.420568,-0.049745,3.627616,-1.203146,-0.050759,3.750271,-0.966778,-0.054642,3.926111,-0.427569,0.177707,3.915188,-0.401398,0.195857,3.836075,-0.685121,-0.050489,3.848647,-0.715296,0.383419,3.886042,-0.354685,0.417933,3.808250,-0.619936,0.153819,3.964978,-0.072880,-0.067007,3.976967,-0.089462,0.353155,3.933112,-0.051316,0.515601,3.882334,-0.036162,0.543371,3.842047,-0.296627,0.596225,3.767193,-0.522769,0.654088,3.674315,-0.755735,0.451681,2.975401,-1.724063,0.654162,2.959107,-1.648448,0.651637,2.698567,-1.764069,0.442323,2.695683,-1.843434,0.816608,2.946197,-1.556909,0.822527,2.715640,-1.665507,0.845702,3.320189,-1.177555,0.829295,3.148351,-1.392527,0.663289,3.186088,-1.476365,0.672045,3.379728,-1.264992,0.463383,3.220894,-1.558183,0.947469,2.929909,-1.461808,0.963888,2.739665,-1.548416,1.033472,2.906482,-1.386018,1.081102,2.777223,-1.410007,1.181696,3.223172,-0.794699,1.034222,3.369568,-0.848954,1.133122,3.107875,-1.053051,0.999010,3.232493,-1.106975,0.864215,3.479091,-0.917379,1.258336,2.943844,-1.015010,1.315575,3.045822,-0.739947,1.178135,2.849376,-1.236622,1.078711,2.996465,-1.257630,0.964201,3.087933,-1.312708,0.674881,3.544796,-1.020402,0.220897,3.251236,-1.605279,0.209167,2.997814,-1.770221,-0.060643,3.014016,-1.780493,-0.050849,3.261137,-1.609747,0.197377,2.705612,-1.894220,0.189039,2.384039,-1.957724,-0.068302,2.389686,-1.976942,-0.068371,2.718322,-1.912047,0.349673,1.213884,-1.734848,0.125708,1.203180,-1.778249,0.151307,1.434085,-1.875800,0.388889,1.443717,-1.825430,-0.101655,1.195922,-1.780897,-0.092078,1.425735,-1.889873,-0.076894,1.723428,-1.956386,0.166887,1.724543,-1.936198,0.182089,2.049505,-1.971834,-0.065706,2.053260,-1.989631,0.768658,1.263313,-1.561049,0.565434,1.227035,-1.666644,0.617458,1.465417,-1.752429,0.832242,1.518653,-1.654546,0.958173,1.327246,-1.437386,1.013039,1.605208,-1.516571,1.169144,1.687656,-1.334702,1.315064,1.728870,-1.104441,0.848230,0.944299,-1.296417,0.909720,1.102203,-1.366754,0.673660,0.914039,-1.437802,0.723380,1.061990,-1.502035,3.511830,-2.222493,-0.770800,3.340122,-2.131999,-0.623402,3.435232,-2.206520,-0.471371,3.635322,-2.313225,-0.462228,3.236425,-2.108603,-0.583582,3.266406,-2.138219,-0.474846,3.266320,-2.189510,-0.389022,3.377720,-2.264926,-0.328997,3.566180,-2.442284,-0.202334,3.108297,-2.169475,-0.364960,3.185867,-2.271684,-0.257266,2.861225,-2.153262,-0.333408,2.918663,-2.256816,-0.215506,2.970502,-2.390204,-0.091968,3.262215,-2.421930,-0.133071,1.959578,-2.673965,0.485664,2.211127,-2.666502,0.373308,2.155323,-2.503962,0.250558,1.898703,-2.506077,0.361768,2.459206,-2.673258,0.271877,2.423703,-2.502388,0.153414,2.373347,-2.373443,0.017183,2.094795,-2.390130,0.106911,1.836560,-2.386293,0.215796,2.704808,-2.523541,0.080379,2.671062,-2.369595,-0.043441,2.714699,-2.708176,0.199199,2.978549,-2.766129,0.159516,2.991624,-2.566699,0.029241,3.292417,-3.305439,0.457245,3.499558,-3.384244,0.433836,3.625213,-3.214036,0.324778,3.408290,-3.122210,0.322772,3.668189,-3.491685,0.312678,3.814497,-3.336353,0.238413,3.941984,-3.157301,0.128703,3.735162,-3.023484,0.189028,3.501462,-2.919474,0.175018,2.843923,-3.151942,0.485604,2.642483,-3.064071,0.487561,2.505069,-3.202376,0.641912,2.703566,-3.333639,0.653270,2.497892,-2.991354,0.484146,2.359086,-3.045461,0.582692,2.140908,-3.098215,0.710348,2.285685,-3.308004,0.791178,2.473046,-3.575334,0.739821,3.066163,-3.683341,0.509752,3.173412,-3.487229,0.561822,2.942427,-3.423812,0.613769,2.815279,-3.648842,0.604915,3.068374,-3.233485,0.471198,2.932642,-2.962985,0.316302,3.173751,-3.039877,0.313830,3.245839,-2.835383,0.156365,3.268340,-3.702805,0.421950,3.374978,-3.550906,0.498530,3.402922,-3.703830,0.330591,3.521016,-3.622613,0.349404,3.816942,-2.810474,0.026519,3.558321,-2.693480,0.013809,4.031289,-2.960954,-0.023711,4.089724,-2.778207,-0.219033,3.870675,-2.605566,-0.182467,3.278699,-2.622201,0.006562,2.483175,-2.856202,0.386523,2.701109,-2.896149,0.335969,2.269209,-2.861218,0.482714,2.034811,-2.881139,0.600234,1.980260,-3.362363,0.916717,2.053981,-3.630395,0.817684,1.866486,-3.120476,0.829762,1.549355,-3.120145,0.900091,1.630867,-3.370865,0.999292,1.676775,-3.633105,0.894189,1.766533,-2.892008,0.702422,1.692970,-2.679985,0.579439,1.409703,-2.677320,0.633537,1.469176,-2.890077,0.756635,1.585903,-2.385133,0.306689,1.638296,-2.508821,0.452376,1.343737,-2.389429,0.366712,1.374279,-2.509655,0.506281,1.155335,-1.177167,-0.412318,1.139018,-1.282226,-0.276827,1.236272,-1.540148,-0.249679,1.283529,-1.445595,-0.397804,1.112990,-1.365318,-0.151751,1.169758,-1.598904,-0.125981,1.213998,-1.819689,-0.097111,1.323632,-1.799989,-0.219043,1.485094,-1.756859,-0.391400,1.114428,-2.472890,0.537578,1.123395,-2.645402,0.660080,1.115322,-2.368506,0.399880,0.910244,-2.288037,0.376827,0.882413,-2.384518,0.524727,0.817467,-2.534857,0.678471,1.275483,-2.305861,-2.255798,1.173384,-1.886269,-2.040440,1.446917,-1.900664,-1.968611,1.588707,-2.332972,-2.229717,1.091801,-1.629307,-1.881380,1.247798,-1.567883,-1.749728,1.550047,-1.530941,-1.485638,1.780429,-1.945436,-1.888649,1.934042,-2.380549,-2.206771,0.587559,-1.394021,-1.868990,0.420892,-0.983856,-1.651619,0.518003,-0.859608,-1.510590,0.708967,-1.106017,-1.594918,0.339636,-0.785869,-1.559252,0.382572,-0.644886,-1.471944,0.464629,-0.414110,-1.326854,0.614822,-0.717774,-1.339772,0.799169,-0.973314,-1.374889,0.761216,-0.408177,-0.971545,0.825801,-0.631995,-0.996602,0.724431,-0.643830,-1.163620,0.638741,-0.392042,-1.139885,0.938225,-0.848947,-1.016373,0.871331,-0.885823,-1.184297,1.079522,-0.948894,-0.713428,0.984483,-0.729412,-0.707465,1.038667,-0.819206,-0.568382,1.132927,-1.058699,-0.560806,1.070258,-0.920682,-0.432780,1.227574,-1.194049,-1.053638,1.308515,-1.257096,-0.932780,1.515841,-1.408413,-1.037078,1.321326,-1.286944,-1.188696,1.401090,-1.368367,-0.766082,1.647346,-1.529262,-0.839430,1.963780,-1.655267,-0.909673,1.815530,-1.565519,-1.159104,3.890249,-2.466920,-0.452596,3.854373,-2.410478,-0.764853,4.113443,-2.646967,-0.466793,4.095987,-2.590662,-0.755204,3.385074,-2.371303,-1.475194,3.461291,-2.265813,-1.129560,3.785815,-2.442188,-1.100686,3.692653,-2.555120,-1.436834,4.030181,-2.624597,-1.061468,3.935178,-2.734396,-1.365130,2.610853,-2.014644,-1.523835,2.605264,-2.238761,-1.859780,2.191702,-2.078823,-1.866291,2.143684,-1.815338,-1.523243,2.642454,-2.573308,-2.175425,2.292795,-2.463923,-2.191088,3.837814,-2.897225,-1.655854,3.600190,-2.729108,-1.761918,3.746427,-3.104812,-1.904809,3.521091,-2.961864,-2.042638,3.257496,-2.822488,-2.113761,3.311284,-2.558747,-1.814135,3.676483,-3.330111,-2.080056,3.478449,-3.229110,-2.241851,3.629098,-3.517292,-2.141592,3.476618,-3.519832,-2.278972,3.254030,-3.500182,-2.379500,3.239601,-3.141455,-2.332644,2.979963,-3.058698,-2.384238,2.964954,-2.693294,-2.153377,3.012242,-3.463127,-2.443222,2.749677,-3.420089,-2.486485,2.696182,-2.980676,-2.419140,2.979625,-2.397067,-1.843978,3.023887,-2.193793,-1.505297,2.670946,-1.919508,-1.209177,3.086944,-2.090465,-1.176890,2.741241,-1.910189,-0.942081,3.125838,-2.052326,-0.896891,1.685435,-2.238624,-0.130323,1.956663,-2.223980,-0.209042,1.878803,-2.078972,-0.362463,1.590938,-2.063221,-0.282635,2.256070,-2.194423,-0.265663,2.196611,-2.072699,-0.395442,2.135862,-1.927292,-0.528613,1.806854,-1.874157,-0.483633,2.316044,-2.284927,-0.126103,2.028783,-2.308131,-0.046906,1.767892,-2.308139,0.054327,2.566923,-2.161331,-0.300666,2.620149,-2.257556,-0.174927,3.071453,-2.094302,-0.468970,2.820717,-2.065894,-0.449645,3.067309,-2.046174,-0.578562,2.796049,-1.995207,-0.579279,3.100522,-2.034886,-0.708144,2.777994,-1.940635,-0.736691,2.520495,-2.062721,-0.424282,2.475539,-1.959266,-0.560493,2.421504,-1.858753,-0.729533,2.064797,-1.780778,-0.697358,2.340019,-1.778903,-0.944582,2.225807,-1.741061,-1.210197,1.742222,-1.678270,-0.642397,1.470953,-1.524921,-0.587288,1.219910,-1.165278,-0.725833,1.275160,-1.300951,-0.561143,0.858414,-0.454479,-0.829863,0.913772,-0.663320,-0.848688,1.006896,-0.874838,-0.863056,1.147695,-1.072579,-0.883925,1.091549,-1.049369,-1.040700,1.080849,-1.111690,-1.213920,1.075800,-1.212805,-1.425313,0.972537,-1.327014,-1.649052,0.883846,-1.513688,-1.866761,0.926955,-1.845964,-2.071623,0.727889,-1.849672,-2.106032,1.008431,-2.287725,-2.275657,0.798327,-2.291183,-2.295872,0.873998,-3.270117,-2.532501,0.837008,-2.782784,-2.478992,1.065250,-2.784052,-2.473289,1.115888,-3.273593,-2.545068,1.350658,-2.796122,-2.467979,1.413209,-3.285822,-2.552778,0.508287,-2.294240,-2.313888,0.514577,-1.832632,-2.123139,0.624625,-1.961331,-2.169436,0.644358,-2.312711,-2.315770,0.200734,-3.279602,-2.501672,0.193243,-2.788795,-2.498214,0.356235,-2.787790,-2.493386,0.362721,-3.278413,-2.500993,0.191865,-2.277301,-2.324107,0.358612,-2.278606,-2.318192,0.508320,-2.788571,-2.487554,0.518216,-3.276174,-2.505386,0.659634,-2.787997,-2.484654,0.680209,-3.272565,-2.517330,2.384821,-2.912633,-2.442965,2.456958,-3.378348,-2.520319,2.126669,-3.341710,-2.543122,2.045583,-2.858756,-2.457998,1.688532,-2.820817,-2.463837,1.764256,-3.309959,-2.553161,0.019476,-2.791329,-2.500040,0.015582,-2.280560,-2.326775,0.029045,-3.281784,-2.503918,-0.147413,-3.280769,-2.505537,-0.157493,-2.791862,-2.498599,-0.162683,-2.282710,-2.324254,0.163113,-1.339754,-1.911622,0.183365,-1.774299,-2.117823,0.008783,-1.775206,-2.117932,-0.004621,-1.335049,-1.914582,-0.164198,-1.778174,-2.111867,-0.168434,-1.334588,-1.910292,0.356874,-1.781473,-2.113747,0.339641,-1.349292,-1.899951,0.094982,-0.737127,-1.575844,0.235927,-0.757327,-1.571301,0.281036,-1.012071,-1.711556,0.126353,-1.001434,-1.729442,0.306190,-2.201700,0.508983,0.266977,-2.007672,0.513558,0.130106,-2.041597,0.495350,0.168490,-2.257407,0.468403,0.248855,-1.817008,0.562154,0.112257,-1.833896,0.579340,-0.035659,-1.839905,0.576392,-0.019399,-2.063104,0.479732,0.001001,-2.292704,0.437947,0.525497,-2.135356,0.463852,0.480907,-1.961404,0.489834,0.384761,-1.984805,0.516934,0.425724,-2.170306,0.501839,0.474677,-1.785680,0.513989,0.367493,-1.800145,0.537395,0.510367,-2.364617,0.567761,0.629355,-2.327351,0.524236,0.364615,-2.391618,0.575786,0.412940,-2.572313,0.704390,0.597812,-2.545740,0.726565,0.551709,-1.929468,0.461536,0.573371,-1.783114,0.468492,0.604391,-2.044678,0.421189,0.688213,-1.842528,0.392653,0.702236,-2.240007,0.428475,0.773428,-2.102789,0.351487,0.926527,-1.153148,0.249228,1.003603,-1.083139,0.143159,1.028576,-0.817943,0.157270,0.954375,-0.889423,0.277471,1.057007,-1.010003,0.031082,1.074252,-0.744867,0.028623,1.077894,-1.021154,-0.303443,1.055024,-0.765347,-0.328535,1.074004,-0.851146,-0.205224,1.078242,-1.112103,-0.179611,1.044637,-0.524764,-0.343990,1.078424,-0.597499,-0.221344,1.078350,-0.932701,-0.085743,1.088764,-0.671351,-0.097494,1.046267,-1.497030,0.059116,1.086707,-1.432825,-0.039518,1.073286,-1.192173,-0.063141,1.046525,-1.265317,0.045794,0.916098,-1.647305,0.234407,0.989662,-1.567385,0.148874,0.990692,-1.335945,0.146013,0.910186,-1.407165,0.238216,0.814868,-1.480763,0.329071,0.819117,-1.737944,0.314348,0.834222,-1.220327,0.349344,0.731355,-1.279738,0.442597,0.708987,-1.541357,0.418352,1.063279,-1.688067,0.061773,1.113644,-1.641119,-0.023171,1.083278,-1.812198,0.057328,1.132800,-1.822378,-0.002597,1.385834,-2.045494,-0.160299,1.234338,-2.030929,-0.051241,1.251795,-2.218394,0.033481,1.449123,-2.241823,-0.047667,1.298383,-2.343656,0.194091,1.091701,-2.299889,0.225869,1.096868,-2.155293,0.102571,0.999716,-2.034920,0.170913,0.944220,-2.166704,0.253115,1.527457,-2.328188,0.137744,1.122258,-1.991911,0.037185,1.052495,-1.909362,0.105552,1.011179,-1.764350,0.139738,0.945884,-1.862539,0.216477,0.865153,-1.973990,0.291608,0.490057,-1.364677,0.571648,0.481220,-1.583991,0.541303,0.597808,-1.566588,0.492472,0.610004,-1.324589,0.508965,0.321877,-0.711526,1.223491,0.259545,-0.761995,1.169782,0.356376,-0.734022,1.080828,0.454111,-0.642854,1.134171,0.205465,-0.800866,1.140260,0.240783,-0.811445,1.086374,0.265268,-0.863106,0.995478,0.401155,-0.760366,0.948591,0.561879,-0.580105,0.933460,-0.076966,-0.842246,1.201022,0.086362,-0.830436,1.173982,0.104625,-0.805338,1.221923,-0.076899,-0.821678,1.250491,0.131885,-0.781177,1.263655,-0.076364,-0.807513,1.292702,0.092537,-0.863238,1.120904,0.103387,-0.916551,1.060171,-0.075910,-0.878307,1.145887,-0.073582,-0.931055,1.092369,0.265154,-1.112688,0.835567,0.264374,-1.279763,0.778922,0.387325,-1.214146,0.688176,0.403128,-1.029582,0.738292,0.255930,-1.454507,0.706512,0.376362,-1.409778,0.637877,0.503293,-1.144280,0.602385,0.527236,-0.931816,0.642051,0.762940,-0.754223,0.491232,0.745483,-1.020404,0.465908,0.860086,-0.957674,0.383864,0.876771,-0.675781,0.412409,0.846696,-0.229344,0.645905,0.802872,-0.479249,0.545099,0.905698,-0.368562,0.448448,0.938615,-0.095078,0.522580,0.623639,-1.080395,0.532664,0.644607,-0.837632,0.561441,0.549965,-0.738347,0.731982,0.683110,-0.600778,0.635180,0.727195,-0.394025,0.773675,0.267788,-0.965455,0.902329,0.411953,-0.868706,0.817527,0.104527,-1.022849,0.980684,-0.070438,-1.036792,1.020394,-0.065528,-1.185343,0.952864,0.108042,-1.170213,0.918392,-0.060466,-1.340380,0.870341,0.108767,-1.323243,0.840629,-0.053296,-1.485027,0.757773,0.107422,-1.481753,0.750764,0.367178,-1.607298,0.583572,0.250188,-1.635432,0.636701,-0.045886,-1.652259,0.671399,0.108547,-1.652489,0.671917,0.203423,-2.444041,0.545980,0.014326,-2.487769,0.505595,0.018589,-2.656992,0.589337,0.227287,-2.620698,0.649075,0.230029,-2.803788,0.764925,0.429022,-2.773112,0.856310,0.012898,-2.832401,0.695171,-0.001756,-3.018389,0.826325,0.214653,-3.013104,0.877915,0.430736,-3.011991,0.949279,0.649150,-2.778641,0.870759,0.890032,-2.810588,0.831792,0.667097,-3.036450,0.957777,0.928945,-3.068920,0.938714,1.279994,-3.348582,1.033473,1.312477,-3.605462,0.968588,1.225601,-3.100417,0.922257,0.958688,-3.315723,1.047887,0.975276,-3.563542,1.015214,1.166237,-2.863707,0.783943,0.676965,-3.283246,1.053337,0.678385,-3.539407,1.021844,0.418777,-3.259354,1.033026,0.412830,-3.511778,0.991082,0.189683,-3.244640,0.983949,0.180046,-3.494953,0.949678,-0.021799,-3.239528,0.945339,-0.034247,-3.487325,0.919480,0.819281,3.246752,1.311334,0.932009,3.184541,1.205193,0.938273,3.297386,1.070085,0.821262,3.355239,1.175137,0.450221,3.591665,1.226436,0.460108,3.681057,1.028590,0.582890,3.546815,1.170908,0.594632,3.634275,0.982545,0.444810,3.383107,1.539718,0.446110,3.493267,1.391388,0.581445,3.346327,1.476422,0.580620,3.452365,1.330312,0.703814,3.498935,1.106574,0.714493,3.580324,0.926629,0.704981,3.301381,1.401420,0.703810,3.406685,1.259813,0.447132,0.184180,-1.231487,0.280520,0.252054,-1.301605,0.305906,0.426748,-1.310975,0.471491,0.369548,-1.240085,0.116551,0.315336,-1.306218,0.141709,0.483649,-1.315472,0.166398,0.591859,-1.348039,0.336197,0.545621,-1.336928,0.503423,0.508793,-1.265553,0.877786,0.737702,-1.016583,0.728719,0.732098,-1.189463,0.780791,0.835020,-1.233974,0.936149,0.851428,-1.060380,0.570813,0.720754,-1.321138,0.618859,0.810269,-1.373918,1.011301,0.737570,-0.822594,1.071404,0.863585,-0.867927,0.905168,0.462931,-0.746254,0.955804,0.606638,-0.784046,0.783516,0.475505,-0.934451,0.827010,0.616449,-0.976922,0.654042,0.490804,-1.123896,0.687603,0.620997,-1.154699,0.534523,0.623014,-1.288443,0.906218,-0.062295,-0.623829,0.851274,-0.114806,-0.735019,0.760818,0.062228,-0.855441,0.872291,0.112784,-0.669785,0.837477,-0.259922,-0.797501,0.740177,-0.177729,-0.932826,0.608650,-0.123940,-1.107642,0.607556,0.126205,-1.076945,0.446367,-0.070530,-1.259274,0.870531,0.297643,-0.707816,0.755330,0.302384,-0.892327,0.625980,0.329688,-1.090503,0.476666,0.904104,-1.529643,0.517973,1.045099,-1.592500,0.273663,0.899751,-1.587293,0.307865,1.039715,-1.649506,0.397066,0.721287,-1.405025,0.435102,0.802433,-1.464091,0.214374,0.725850,-1.456354,0.242021,0.798869,-1.520928,0.072559,0.893246,-1.612625,0.097416,1.029705,-1.684214,-0.121566,0.894332,-1.605176,-0.111849,1.026804,-1.679719,0.007122,0.612904,-1.337394,0.021471,0.679949,-1.394420,0.189576,0.665410,-1.395694,-0.143013,0.604589,-1.344805,-0.137965,0.675789,-1.393727,-0.134748,0.730907,-1.461766,0.035209,0.732202,-1.465823,0.051833,0.798459,-1.538288,-0.128991,0.799540,-1.531057,0.365194,0.639595,-1.364118,0.237138,-0.531502,-1.469347,0.259315,-0.281858,-1.384588,0.083967,-0.489384,-1.465664,0.085726,-0.227028,-1.382034,-0.061382,-0.203925,-1.383090,-0.049686,0.089221,-1.323704,0.094912,0.060633,-1.323920,-0.189359,-0.199150,-1.400305,-0.178419,0.088577,-1.344139,-0.163834,0.335509,-1.324460,-0.029480,0.342511,-1.304578,0.266607,0.000732,-1.324873,-0.186842,-0.721118,-1.581196,-0.048317,-0.726297,-1.578350,-0.028312,-0.991164,-1.736526,-0.180702,-0.987239,-1.735744,-0.058865,-0.474083,-1.467636,-0.190300,-0.471139,-1.474653,-0.010247,0.508476,-1.306302,-0.152307,0.499396,-1.319824,1.385076,2.017153,0.304918,1.415658,2.027236,0.137073,1.451226,2.222447,0.113003,1.406756,2.233515,0.326182,1.443458,1.967701,-0.036800,1.481870,2.134299,-0.118775,1.488516,1.999226,-0.334410,1.448521,1.852931,-0.190656,-1.192452,-0.268157,-0.427201,-1.137311,-0.237425,-0.537538,-1.149734,-0.407897,-0.522486,-1.198562,-0.464417,-0.411393,-1.094533,-0.229442,-0.617958,-1.096311,-0.347786,-0.630640,-1.112608,-0.527794,-0.637397,-1.164089,-0.600497,-0.513376,-1.206165,-0.675256,-0.393089,-1.020059,3.575854,0.660248,-1.116192,3.512025,0.612021,-1.113215,3.460855,0.771665,-1.011912,3.516138,0.848816,-1.186931,3.461690,0.573605,-1.210280,3.409133,0.662791,-1.234968,3.327023,0.782595,-1.124628,3.386228,0.911326,-1.015174,3.438856,1.006946,-0.803574,3.798415,0.195986,-0.800336,3.795192,-0.084626,-0.927668,3.717920,-0.133667,-0.933749,3.719856,0.166560,-0.791639,3.770977,-0.280899,-0.875725,3.710619,-0.394103,-1.019727,3.577696,-0.579486,-1.065769,3.621074,-0.186815,-1.058416,3.630269,0.141153,-1.285138,3.415146,0.177253,-1.231813,3.448816,0.420790,-1.141861,3.532727,0.405943,-1.175465,3.526537,0.141143,-1.038396,3.614252,0.423861,-1.369157,3.285038,-0.450032,-1.338292,3.365625,-0.122084,-1.207662,3.499605,-0.178383,-1.217952,3.428339,-0.526162,-0.925204,3.691698,0.455891,-0.914032,3.640389,0.710599,-0.797139,3.701279,0.758895,-0.801106,3.760742,0.491982,-0.662174,3.821868,0.525991,-0.661062,3.863898,0.214382,-0.661520,3.757389,0.797835,-0.497328,3.807574,0.826479,-0.498932,3.874422,0.557381,-0.494954,3.916887,0.231480,-0.305774,3.908198,0.579265,-0.299553,3.958987,0.253195,-0.302675,3.842288,0.845156,-0.502887,3.407177,1.587796,-0.312030,3.432645,1.625880,-0.309177,3.549471,1.470895,-0.499061,3.520193,1.430317,-0.306645,3.660576,1.296039,-0.496240,3.626060,1.256076,-0.495199,3.724236,1.054944,-0.303257,3.759197,1.085176,-1.362735,0.648282,0.358639,-1.347987,0.640970,0.270678,-1.310869,0.519413,0.246743,-1.332348,0.539358,0.358324,-1.377018,0.675529,0.157421,-1.322140,0.518398,0.114164,-1.290450,0.351769,0.101643,-1.276025,0.361253,0.245667,-1.291894,0.392163,0.371821,-1.293568,0.044407,-0.190431,-1.280554,-0.148572,-0.187994,-1.278441,-0.186284,-0.051129,-1.292637,0.015795,-0.047306,-1.266155,-0.360705,-0.183202,-1.265707,-0.411293,-0.052966,-1.234617,-0.462103,0.078902,-1.252152,-0.220286,0.089698,-1.267256,-0.004486,0.097758,-1.176434,0.096179,-0.476075,-1.185040,-0.081993,-0.451364,-1.250385,-0.110703,-0.323062,-1.258086,0.074521,-0.335529,-1.241292,-0.311773,-0.309117,-1.211907,0.431166,-0.526561,-1.184942,0.267394,-0.501352,-1.271866,0.244040,-0.349543,-1.292165,0.407621,-0.362084,-1.305540,0.217418,-0.195411,-1.320387,0.385188,-0.199569,-1.303546,0.192985,-0.047238,-1.315893,0.362118,-0.045870,-1.277707,0.180142,0.100139,-1.205439,-0.250819,0.236292,-1.232536,-0.011928,0.254381,-1.188038,-0.513930,0.213895,-1.115123,-0.571930,0.339322,-1.125376,-0.293140,0.374858,-1.171301,-0.006922,0.433744,-1.254467,0.188856,0.252159,-1.242984,0.224607,0.394853,-1.348372,0.537327,-0.030668,-1.353906,0.562373,-0.193042,-1.406177,0.714497,0.018354,-1.418909,0.784196,-0.151324,-1.276211,0.740367,-0.575201,-1.243885,0.587941,-0.549491,-1.318974,0.574851,-0.371202,-1.353483,0.746620,-0.384318,-1.483973,1.092051,-0.258904,-1.426163,1.055863,-0.469217,-1.386151,0.903714,-0.424783,-1.453342,0.950198,-0.218969,-1.353496,1.043672,-0.656884,-1.309450,0.889933,-0.611260,-1.141013,1.004395,-1.028436,-1.260959,1.029729,-0.839720,-1.312893,1.204044,-0.888591,-1.187273,1.168836,-1.087084,-1.404835,1.218099,-0.697297,-1.467038,1.425330,-0.724387,-1.372687,1.417192,-0.936560,-1.240482,1.379292,-1.156373,-1.471839,1.219617,-0.503829,-1.517246,1.234006,-0.293508,-1.549521,1.391963,-0.323527,-1.518081,1.407131,-0.520584,-1.547279,1.621149,-0.513699,-1.528272,1.684088,-0.727971,-1.566120,1.558460,-0.332051,-1.590542,1.724989,-0.265134,-1.586033,1.840933,-0.436498,-1.576965,2.032593,-0.681097,-1.648726,2.398248,-0.146139,-1.636455,2.668810,-0.197076,-1.622956,2.530594,-0.496234,-1.638541,2.248059,-0.406309,-1.580526,2.920612,-0.260617,-1.565432,2.793122,-0.578701,-1.498069,2.664722,-0.878319,-1.550415,2.393060,-0.790537,-1.459391,2.895044,0.756226,-1.366856,3.016035,0.911890,-1.365173,3.144668,0.758533,-1.457281,3.027858,0.602851,-1.257303,3.111484,1.059892,-1.252348,3.228033,0.916826,-1.348114,3.252917,0.608793,-1.472219,3.116976,0.373851,-1.624951,2.507015,0.114813,-1.606395,2.783115,0.088605,-1.573490,2.563941,0.390822,-1.559191,2.863216,0.342966,-1.545067,3.027383,0.046305,-1.388517,3.293468,0.254061,-1.454020,3.216805,-0.036479,-1.492424,3.123452,-0.353022,-1.304415,3.359021,0.492261,-1.517964,2.900508,0.510912,-1.527548,2.750799,0.597493,-1.389584,2.563591,-1.130141,-1.434970,2.300528,-1.067100,-1.263328,2.494979,-1.349229,-1.288926,2.234389,-1.315493,-1.294455,1.941470,-1.267431,-1.456192,1.994475,-1.008955,-1.102824,2.449649,-1.523782,-1.114849,2.179759,-1.522641,-0.934349,2.423172,-1.668075,-0.925861,2.134804,-1.682497,-0.920042,1.823858,-1.658613,-1.114818,1.880719,-1.486922,-0.739785,2.101983,-1.810874,-0.730614,1.778789,-1.790958,-0.760571,2.409100,-1.787754,-0.566856,2.403041,-1.890970,-0.542986,2.079099,-1.917286,-0.530643,1.746153,-1.883013,-0.332399,3.445273,-1.396948,-0.330468,3.611214,-1.188090,-0.603642,3.399558,-1.345392,-0.602968,3.566981,-1.133429,-0.583048,3.692100,-0.895230,-0.322224,3.736317,-0.954054,-0.544980,3.786823,-0.653926,-0.306430,3.832809,-0.705487,-0.511617,3.862958,-0.396917,-0.293827,3.907113,-0.426539,-0.496330,3.913959,-0.099104,-0.291856,3.961405,-0.100343,-0.682947,3.809697,-0.340933,-0.664003,3.858450,-0.084490,-0.740756,3.737906,-0.558891,-0.810509,3.640975,-0.786976,-0.939343,2.676758,-1.610214,-0.775635,2.687707,-1.714239,-0.956321,2.897286,-1.517885,-0.790840,2.934512,-1.601397,-0.590185,2.973863,-1.681491,-0.584400,2.704541,-1.810772,-0.810242,3.146482,-1.452293,-0.596162,3.201440,-1.523943,-0.987935,3.090672,-1.379768,-1.021979,3.262352,-1.190606,-0.830775,3.335317,-1.269748,-1.219880,2.699698,-1.353003,-1.088237,2.675740,-1.492028,-1.187699,2.829731,-1.342772,-1.094250,2.860916,-1.425579,-1.181293,3.163360,-1.108626,-1.208903,3.303298,-0.846877,-1.042279,3.424361,-0.935485,-1.314388,3.037983,-1.033099,-1.358783,3.165944,-0.767279,-1.480323,3.002078,-0.674349,-1.419600,2.875202,-0.957923,-1.245284,2.918404,-1.227523,-1.328738,2.769132,-1.179432,-1.133314,3.017934,-1.299262,-0.836805,3.504178,-1.042217,-0.339367,3.007196,-1.749932,-0.333518,3.243760,-1.579406,-0.328056,2.397149,-1.956713,-0.341045,2.719343,-1.888759,-0.321341,1.424958,-1.864840,-0.311410,1.728039,-1.937427,-0.316150,1.195524,-1.754777,-0.516273,1.204118,-1.705610,-0.531793,1.438016,-1.812193,-0.310744,2.063145,-1.973937,-0.726523,1.470253,-1.729021,-0.706785,1.225373,-1.629800,-0.892799,1.265403,-1.515466,-0.912538,1.524263,-1.600413,-1.103490,1.586072,-1.431213,-1.070911,1.323546,-1.351207,-1.281554,1.644327,-1.219116,-1.435448,1.684197,-0.977959,-0.860285,1.077956,-1.421679,-1.029414,1.124435,-1.268477,-0.826291,0.938606,-1.338190,-0.989469,0.968803,-1.198431,-3.318647,-2.166654,-0.350279,-3.323025,-2.111437,-0.431444,-3.485746,-2.176284,-0.420512,-3.423085,-2.241625,-0.285266,-3.303831,-2.091205,-0.541032,-3.403685,-2.093417,-0.571984,-3.577170,-2.175231,-0.713090,-3.683631,-2.276402,-0.403343,-3.605470,-2.407556,-0.146099,-3.020903,-2.372840,-0.062370,-2.976302,-2.243805,-0.186734,-3.235605,-2.253578,-0.221522,-3.305946,-2.394454,-0.088267,-2.927585,-2.138232,-0.302018,-3.166008,-2.151181,-0.330537,-2.442499,-2.345521,0.054414,-2.489110,-2.472243,0.186455,-2.223467,-2.468407,0.286735,-2.161931,-2.358810,0.145174,-2.520862,-2.639331,0.299113,-2.278090,-2.629176,0.404844,-2.027504,-2.631353,0.523134,-1.959866,-2.471530,0.397568,-1.892416,-2.366139,0.251112,-3.017998,-2.737467,0.179757,-2.766101,-2.677315,0.222068,-2.760757,-2.497276,0.110521,-3.036774,-2.540113,0.062016,-2.731178,-2.352016,-0.015276,-3.949053,-3.110688,0.169212,-3.826122,-3.286349,0.275545,-3.638918,-3.175154,0.351074,-3.749429,-2.987836,0.226457,-3.687781,-3.440736,0.346112,-3.518518,-3.340004,0.452522,-3.316627,-3.267663,0.462936,-3.427429,-3.088978,0.339569,-3.522246,-2.884997,0.210903,-2.202845,-3.059013,0.716884,-2.415654,-3.008779,0.585162,-2.560274,-3.162319,0.635812,-2.350039,-3.260936,0.788479,-2.549675,-2.957775,0.484149,-2.689631,-3.030875,0.481766,-2.883327,-3.119604,0.475728,-2.754938,-3.289367,0.640473,-2.541782,-3.512512,0.739665,-3.099703,-3.199161,0.466394,-2.985916,-3.376335,0.605173,-3.208014,-3.439130,0.562709,-3.111636,-3.627870,0.516232,-2.872587,-3.589220,0.606598,-3.200398,-3.011313,0.318747,-2.968198,-2.936009,0.315386,-3.274969,-2.805825,0.181102,-3.547179,-3.570162,0.376622,-3.402753,-3.500541,0.512908,-3.434701,-3.651844,0.353378,-3.304939,-3.649872,0.436833,-4.107598,-2.744161,-0.164378,-4.047064,-2.921658,0.026443,-3.835971,-2.776704,0.074597,-3.897336,-2.572586,-0.126587,-3.587250,-2.656094,0.067536,-3.315568,-2.588117,0.053077,-2.747005,-2.865976,0.339693,-2.538712,-2.821727,0.398713,-2.329695,-2.825685,0.497905,-2.098047,-2.844078,0.618651,-1.618424,-3.082079,0.916647,-1.930794,-3.084444,0.835790,-2.051981,-3.310925,0.918476,-1.709803,-3.323396,1.010774,-2.135550,-3.572604,0.829921,-1.760361,-3.584523,0.906921,-1.467672,-2.632471,0.665892,-1.755154,-2.635509,0.617821,-1.830847,-2.851311,0.726203,-1.534560,-2.843386,0.790019,-1.415400,-2.482762,0.524999,-1.688396,-2.479826,0.483072,-1.382123,-2.343801,0.413947,-1.631731,-2.360244,0.348242,-1.296824,-1.757343,-0.019475,-1.265625,-1.541762,-0.063554,-1.333957,-1.498544,-0.185564,-1.409213,-1.750956,-0.143390,-1.237166,-1.311000,-0.094092,-1.269454,-1.243238,-0.210529,-1.286703,-1.155032,-0.342043,-1.397860,-1.415393,-0.326897,-1.587925,-1.723096,-0.316443,-0.961058,-2.231157,0.404797,-1.155953,-2.300291,0.449406,-1.153512,-2.440392,0.548025,-0.921369,-2.350815,0.528922,-1.174733,-2.611477,0.669031,-0.851403,-2.528321,0.645222,-1.764486,-1.518016,-1.434181,-1.501921,-1.561427,-1.695377,-1.689387,-1.891413,-1.936296,-1.995627,-1.929543,-1.856387,-1.363711,-1.630172,-1.832444,-1.440343,-1.881694,-2.008038,-1.537013,-2.287262,-2.259598,-1.829393,-2.307898,-2.229151,-2.152357,-2.350618,-2.193306,-0.746944,-0.434661,-1.244848,-0.691685,-0.663724,-1.386910,-0.824293,-0.872674,-1.427781,-0.891738,-0.731765,-1.251241,-0.665069,-0.800167,-1.484365,-0.744333,-0.993447,-1.583887,-0.893633,-1.396213,-1.819976,-1.009556,-1.108118,-1.530533,-1.079491,-0.969322,-1.312858,-1.113122,-0.885917,-1.121166,-0.969938,-0.649196,-1.092165,-1.145188,-0.851258,-0.947917,-1.037946,-0.635916,-0.931012,-0.985721,-0.411370,-0.916959,-0.891712,-0.396304,-1.076154,-1.195137,-0.816390,-0.497625,-1.222890,-0.906285,-0.366017,-1.152711,-0.733448,-0.635618,-1.240214,-0.946675,-0.637332,-1.276966,-1.048359,-0.486866,-2.109769,-1.642463,-0.852271,-1.801134,-1.508882,-0.773844,-1.696402,-1.389201,-0.977926,-1.986540,-1.552080,-1.100532,-1.554970,-1.350786,-0.697322,-1.488440,-1.240025,-0.868048,-1.432400,-1.178217,-0.990434,-1.538142,-1.271713,-1.133649,-3.925964,-2.430105,-0.390146,-4.132985,-2.611888,-0.403906,-3.900563,-2.369564,-0.698054,-4.117878,-2.553258,-0.682612,-3.848909,-2.395226,-1.030535,-4.072372,-2.575366,-0.984324,-3.551123,-2.213058,-1.070602,-3.497056,-2.314423,-1.416713,-3.785184,-2.492320,-1.371612,-4.008318,-2.670775,-1.293190,-2.489271,-2.429379,-2.163406,-2.381978,-2.053751,-1.827411,-2.818365,-2.533622,-2.135019,-2.772474,-2.203259,-1.814297,-2.763791,-1.982876,-1.473691,-2.321726,-1.798210,-1.472293,-3.398967,-2.771029,-2.051190,-3.649202,-2.902414,-1.975741,-3.712892,-2.666957,-1.696391,-3.440781,-2.503547,-1.755015,-3.856582,-3.042888,-1.829489,-3.932693,-2.832832,-1.583613,-3.398319,-3.450558,-2.315695,-3.612221,-3.469109,-2.207784,-3.610774,-3.175469,-2.168583,-3.386216,-3.093036,-2.266099,-3.755013,-3.450047,-2.065840,-3.796338,-3.270812,-2.001515,-2.929440,-3.379074,-2.447352,-3.174748,-3.416831,-2.386379,-3.142770,-3.013426,-2.329657,-2.876351,-2.938965,-2.379247,-3.122855,-2.647746,-2.100567,-3.126949,-2.350933,-1.792008,-3.155375,-2.147779,-1.452471,-3.218621,-2.011445,-0.846650,-3.198818,-2.046278,-1.124189,-2.855592,-1.881956,-0.894883,-2.805141,-1.888700,-1.159194,-2.240834,-1.902861,-0.474343,-2.289075,-2.030237,-0.330839,-1.964607,-2.035611,-0.283127,-1.904675,-1.861172,-0.426550,-2.339253,-2.143808,-0.202164,-2.038172,-2.158849,-0.130749,-1.763060,-2.157962,-0.035117,-1.680194,-2.003467,-0.186873,-2.101372,-2.266427,0.005488,-1.829722,-2.264882,0.111100,-2.390661,-2.247144,-0.077741,-2.687457,-2.238755,-0.141237,-2.643247,-2.134919,-0.259023,-3.136492,-2.071897,-0.430977,-3.139412,-2.020133,-0.537098,-2.896517,-2.048370,-0.414430,-2.882256,-1.975030,-0.539852,-3.180444,-2.001528,-0.661811,-2.875949,-1.917414,-0.693251,-2.607476,-2.034807,-0.378700,-2.574819,-1.937764,-0.516157,-2.535615,-1.841138,-0.684045,-2.473321,-1.761551,-0.895786,-2.188619,-1.763945,-0.643303,-2.382282,-1.723707,-1.157696,-1.865345,-1.665787,-0.582795,-1.599705,-1.505510,-0.516844,-1.412384,-1.282146,-0.485905,-1.378373,-1.152303,-0.651426,-1.100356,-0.668126,-0.779102,-1.191377,-0.874275,-0.788881,-1.056498,-0.460243,-0.770702,-1.298642,-1.041455,-0.972434,-1.327787,-1.064247,-0.811686,-1.320813,-1.096187,-1.155017,-1.336743,-1.199409,-1.369376,-1.173610,-1.515769,-1.816221,-1.252053,-1.323221,-1.593774,-1.212938,-1.843496,-2.038528,-1.286831,-2.274101,-2.277723,-1.025388,-1.849070,-2.071929,-1.087649,-2.279989,-2.296091,-1.335331,-2.761399,-2.504838,-1.606865,-2.768872,-2.500215,-1.116961,-2.763765,-2.505455,-1.137919,-3.253219,-2.578139,-1.373104,-3.254249,-2.591564,-1.659706,-3.263241,-2.593258,-0.822364,-1.836478,-2.090414,-0.925307,-1.960992,-2.143648,-0.812063,-2.286747,-2.309493,-0.940910,-2.304103,-2.312291,-0.669609,-2.274034,-2.309124,-0.655689,-2.776832,-2.497024,-0.800601,-2.774673,-2.499314,-0.510116,-2.273692,-2.316788,-0.499875,-2.780739,-2.497247,-0.486983,-3.271934,-2.511761,-0.642340,-3.267918,-2.519285,-0.791481,-3.263324,-2.533302,-0.946242,-2.771711,-2.503828,-0.948757,-3.257468,-2.554968,-2.340018,-3.311615,-2.549985,-2.653062,-3.343452,-2.501618,-2.583603,-2.873364,-2.423472,-2.263555,-2.822371,-2.459062,-1.926785,-2.788196,-2.485088,-1.993664,-3.283755,-2.579274,-0.321536,-3.277321,-2.507508,-0.332405,-2.787246,-2.497365,-0.338879,-2.279387,-2.320748,-0.335510,-1.775534,-2.109768,-0.505525,-1.774800,-2.100415,-0.491943,-1.340728,-1.886335,-0.329924,-1.335687,-1.901726,-0.672107,-1.784832,-2.084747,-0.660636,-1.354142,-1.860136,-0.617030,-1.018220,-1.660609,-0.575483,-0.763583,-1.516688,-0.451867,-0.735673,-1.551689,-0.473395,-1.004407,-1.694630,-0.186144,-1.832840,0.563376,-0.174718,-2.047372,0.482771,-0.327331,-1.818204,0.547879,-0.321994,-2.016020,0.498023,-0.335885,-2.214683,0.480271,-0.176683,-2.266549,0.451510,-0.451967,-1.801886,0.536362,-0.446529,-1.991048,0.499688,-0.561399,-1.783099,0.515750,-0.549713,-1.962204,0.480805,-0.580441,-2.130677,0.444517,-0.469000,-2.177948,0.475461,-0.416746,-2.581261,0.671207,-0.374256,-2.400711,0.553990,-0.536517,-2.362778,0.554030,-0.618665,-2.558231,0.678626,-0.672897,-2.315103,0.509082,-0.624511,-1.923748,0.461091,-0.670665,-2.029722,0.414550,-0.665322,-1.774284,0.484112,-0.771503,-1.817489,0.406032,-0.833854,-2.065546,0.351415,-0.759650,-2.213534,0.417166,-1.216624,-0.714361,0.076525,-1.169677,-0.778704,0.199240,-1.188980,-0.965669,0.081155,-1.134896,-1.034295,0.188767,-1.068593,-1.106467,0.292626,-1.102810,-0.845475,0.315027,-1.244171,-0.825752,-0.150205,-1.234425,-0.751110,-0.271792,-1.232706,-0.992150,-0.240677,-1.227566,-1.070521,-0.122379,-1.237538,-0.524610,-0.294290,-1.258816,-0.587297,-0.171154,-1.251989,-0.650825,-0.045871,-1.228988,-0.897077,-0.031024,-1.207634,-1.140004,-0.010932,-1.201441,-1.366581,0.011245,-1.154075,-1.427659,0.106128,-1.166277,-1.207175,0.091956,-1.108485,-1.278614,0.188264,-1.092942,-1.502656,0.192490,-1.011551,-1.591677,0.270016,-1.033234,-1.356896,0.279329,-0.873559,-1.248147,0.469976,-0.980842,-1.180207,0.386674,-0.938711,-1.441686,0.365640,-0.826429,-1.514809,0.442873,-0.909024,-1.695177,0.341444,-1.217351,-1.751220,0.073608,-1.210144,-1.572371,0.037540,-1.168744,-1.738182,0.128468,-1.157418,-1.615400,0.120101,-1.314011,-2.136802,0.128255,-1.308261,-1.957306,0.042526,-1.462723,-1.979503,-0.067499,-1.519445,-2.158495,0.054429,-1.071671,-1.964671,0.238287,-1.164436,-2.072978,0.191810,-1.152419,-2.203939,0.306928,-1.005525,-2.102053,0.300716,-1.352497,-2.247195,0.283670,-1.581718,-2.255599,0.215326,-1.132333,-1.834862,0.178523,-1.200512,-1.915653,0.127139,-1.097976,-1.694287,0.194127,-1.021535,-1.800979,0.258920,-0.927517,-1.925312,0.309644,-0.708723,-1.550973,0.507302,-0.590235,-1.576299,0.553763,-0.620405,-1.349006,0.594330,-0.750534,-1.303058,0.539200,-0.412032,-0.851276,1.034910,-0.391453,-0.818659,1.115691,-0.519781,-0.749327,1.103472,-0.566775,-0.759935,0.996328,-0.358393,-0.806082,1.172851,-0.415187,-0.774763,1.188243,-0.468734,-0.736146,1.222062,-0.615383,-0.671592,1.119998,-0.731354,-0.605999,0.966319,-0.258280,-0.806275,1.243970,-0.280947,-0.787647,1.286530,-0.240150,-0.828797,1.196806,-0.241289,-0.861540,1.139145,-0.247517,-0.909745,1.078530,-0.491533,-1.390687,0.636366,-0.511158,-1.180253,0.699244,-0.639723,-1.111765,0.636381,-0.360118,-1.433143,0.683904,-0.379529,-1.250444,0.770281,-0.389584,-1.073365,0.848842,-0.526525,-0.981569,0.775026,-0.652978,-0.886106,0.698334,-1.015173,-0.915031,0.415617,-0.904427,-0.982648,0.499264,-0.910329,-0.718529,0.531374,-1.020707,-0.642001,0.441258,-1.033537,-0.376124,0.494324,-0.933759,-0.479352,0.601546,-0.981629,-0.295200,0.691839,-1.073120,-0.159870,0.570742,-0.773560,-1.046786,0.569595,-0.782074,-0.797672,0.617356,-0.820771,-0.593470,0.711813,-0.692595,-0.715202,0.812748,-0.877657,-0.441265,0.822271,-0.554306,-0.833027,0.883101,-0.406512,-0.931730,0.944457,-0.243387,-1.003860,0.997728,-0.236538,-1.149855,0.921405,-0.211708,-1.467852,0.732285,-0.228038,-1.310099,0.837471,-0.469627,-1.600249,0.582690,-0.341889,-1.623855,0.612911,-0.198103,-1.641795,0.646085,-0.191211,-2.457207,0.518984,-0.206668,-2.627669,0.621609,-0.218570,-2.800621,0.748061,-0.228497,-3.001601,0.875386,-0.443978,-2.769947,0.820026,-0.465141,-2.996300,0.933676,-0.679709,-2.769600,0.839335,-0.716626,-3.011741,0.946917,-0.933361,-2.791169,0.818228,-0.989552,-3.037199,0.944490,-1.295308,-3.060678,0.946471,-1.357115,-3.306225,1.052948,-1.031685,-3.283251,1.042063,-1.394974,-3.569477,0.975105,-1.053545,-3.537964,1.006580,-1.227862,-2.821269,0.810722,-0.743450,-3.263833,1.015120,-0.482832,-3.246859,0.991696,-0.754190,-3.504761,0.989564,-0.493525,-3.489131,0.952902,-0.240702,-3.240153,0.958932,-0.253247,-3.485954,0.925300,-1.139112,3.293871,1.048510,-1.144379,3.184971,1.188506,-1.034662,3.245835,1.299426,-1.027982,3.349581,1.154426,-0.789757,3.625842,0.968973,-0.655903,3.675725,1.015252,-0.788855,3.538664,1.149536,-0.654819,3.582867,1.205704,-0.794383,3.443509,1.313931,-0.658687,3.483372,1.376658,-0.801120,3.338545,1.468518,-0.664166,3.374269,1.533562,-0.904965,3.571847,0.913146,-0.906462,3.491554,1.084949,-0.915308,3.399797,1.241554,-0.920108,3.293587,1.389800,-0.443793,0.547834,-1.335565,-0.440107,0.426112,-1.326349,-0.587180,0.387498,-1.265840,-0.590194,0.527570,-1.269026,-0.438585,0.258042,-1.334907,-0.585508,0.201919,-1.274649,-0.726488,0.148855,-1.167780,-0.729220,0.349153,-1.166466,-0.731400,0.505263,-1.174349,-0.792266,0.832134,-1.271828,-0.950410,0.844643,-1.141957,-0.763394,0.734648,-1.223640,-0.914950,0.734659,-1.098192,-1.048947,0.745451,-0.931186,-1.095216,0.868015,-0.976968,-1.209951,0.884864,-0.792149,-1.165316,0.749145,-0.751335,-1.009769,0.616812,-0.895500,-1.125511,0.609020,-0.717412,-0.982470,0.468704,-0.866786,-1.090828,0.455212,-0.686127,-0.743995,0.628541,-1.194457,-0.886567,0.619034,-1.066350,-0.870329,0.482120,-1.044468,-0.974201,0.051855,-0.804703,-1.049921,-0.123990,-0.682989,-1.105168,-0.075610,-0.574310,-1.071664,0.098527,-0.619634,-1.038023,-0.267128,-0.745353,-0.961710,-0.183325,-0.884366,-0.860838,-0.137116,-1.048172,-0.726959,-0.104520,-1.190965,-0.856894,0.105124,-1.019694,-1.067187,0.283349,-0.652838,-0.967527,0.292310,-0.835183,-0.862242,0.313306,-1.025259,-0.504251,1.030395,-1.613934,-0.689218,1.045244,-1.536397,-0.489314,0.903792,-1.531901,-0.663481,0.916777,-1.449198,-0.474845,0.809922,-1.458672,-0.635622,0.821922,-1.374586,-0.462501,0.727879,-1.401118,-0.612550,0.734940,-1.320287,-0.311043,1.027632,-1.656793,-0.307242,0.898000,-1.579030,-0.295656,0.660747,-1.388603,-0.300797,0.727855,-1.443679,-0.292613,0.577727,-1.356375,-0.451968,0.644565,-1.360088,-0.304233,0.802551,-1.508551,-0.600047,0.638254,-1.290176,-0.567531,-0.548306,-1.418817,-0.440298,-0.498683,-1.459734,-0.581119,-0.310533,-1.350601,-0.439349,-0.244672,-1.399267,-0.304887,0.067208,-1.364668,-0.297891,0.305220,-1.345658,-0.311780,-0.210379,-1.412730,-0.437803,0.023463,-1.354104,-0.581984,-0.041078,-1.297545,-0.328751,-0.992080,-1.719487,-0.320967,-0.722585,-1.573987,-0.315039,-0.476926,-1.477262,-0.293776,0.467798,-1.340196,-1.630628,2.155912,-0.086397,-1.609052,2.240807,0.129651,-1.600889,1.976902,-0.018705,-1.589124,2.032839,0.147886,-1.561501,2.023875,0.322786,-1.569214,2.247430,0.335333,-1.599363,1.873590,-0.151431,-1.620868,2.022315,-0.280413,1.639275,1.213156,-0.041444,1.636248,1.220502,-0.065869,1.635123,1.299686,-0.074225,1.639218,1.292742,-0.051995,1.639046,1.231477,-0.083752,1.637203,1.310624,-0.092838,1.625313,1.385283,-0.094703,1.626370,1.374777,-0.073241,1.631403,1.369183,-0.048782,1.650358,1.475378,-0.156507,1.646676,1.520017,-0.154887,1.635727,1.509840,-0.151416,1.640921,1.451869,-0.153598,1.636809,1.582777,-0.156616,1.622935,1.574588,-0.148968,1.610129,1.554657,-0.122554,1.625295,1.489334,-0.132289,1.631099,1.423047,-0.136390,1.626155,1.400639,-0.115085,1.617475,1.470156,-0.109592,1.612065,1.455874,-0.084746,1.601394,1.536224,-0.092912,1.595877,1.522629,-0.063426,1.611566,1.633442,-0.131829,1.595304,1.615134,-0.103929,1.628914,1.640270,-0.140970,1.622368,1.689727,-0.111996,1.602662,1.682089,-0.099179,1.585067,1.669428,-0.075635,1.554710,1.796339,0.080823,1.554980,1.784911,0.074828,1.566021,1.778013,0.031306,1.575991,1.789886,0.032837,1.554535,1.772749,0.072208,1.557711,1.761796,0.039949,1.564439,1.739516,-0.007365,1.575394,1.756843,-0.022305,1.591717,1.770261,-0.028661,1.571700,1.710864,-0.048776,1.587259,1.724574,-0.067515,1.608035,1.734521,-0.078983,1.567024,1.697767,-0.029486,1.575678,1.659768,-0.041486,1.561743,1.713129,0.008334,1.566815,1.659548,0.012478,1.584775,1.599429,-0.067900,1.581071,1.587658,-0.031713,1.611002,1.445029,-0.058049,1.618081,1.440508,-0.029026,1.599663,1.511731,-0.032102,1.601355,1.505524,-0.000406,1.571354,1.595415,0.060540,1.583850,1.558994,0.033866,1.587035,1.570665,0.002575,1.570327,1.620324,0.045022,1.399827,1.670228,0.290927,1.412335,1.688221,0.276394,1.422059,1.705378,0.265373,1.403155,1.674349,0.293456,1.437879,1.708075,0.248920,1.457511,1.726370,0.227035,1.480157,1.748963,0.209402,1.436668,1.718447,0.267197,1.407859,1.677078,0.296017,1.376479,1.627005,0.297837,1.387335,1.652111,0.297020,1.384176,1.644186,0.304809,1.373405,1.614381,0.305562,1.384259,1.639342,0.310645,1.365521,1.599718,0.314345,1.603683,1.066808,0.025821,1.603685,1.072668,0.060362,1.568782,1.041057,0.130219,1.571010,1.022422,0.097977,1.594740,1.088573,0.100550,1.555286,1.065833,0.159247,1.507564,1.055175,0.207047,1.528497,1.025715,0.189583,1.532477,1.001401,0.162592,1.614046,1.071821,-0.015866,1.607087,1.067231,0.001811,1.570321,1.011161,0.073212,1.575005,1.005715,0.052631,1.531139,0.981889,0.143173,1.522788,0.958458,0.136262,1.626693,1.086008,-0.041601,1.618941,1.079919,-0.030775,1.585743,1.010592,0.027217,1.596572,1.017161,0.008933,1.553146,0.963059,0.090240,1.573765,0.976147,0.059451,1.662813,1.432674,-0.131866,1.654053,1.455089,-0.149955,1.642255,1.402984,-0.145228,1.654169,1.364595,-0.125472,1.637540,1.356762,-0.127760,1.652260,1.278911,-0.106329,1.642497,1.247587,-0.096694,1.637765,1.327708,-0.109040,1.639575,1.160629,-0.069413,1.647642,1.170607,-0.079050,1.634117,1.149210,-0.056781,1.627254,1.134478,-0.018841,1.628276,1.140387,-0.040575,1.638697,1.210281,0.028860,1.625445,1.138114,0.054611,1.629385,1.132438,0.012369,1.641895,1.209059,-0.009758,1.568357,1.107387,0.126986,1.528744,1.090715,0.169237,1.533056,1.117162,0.130067,1.495778,1.099175,0.164286,1.455995,1.073884,0.194943,1.478892,1.075568,0.207865,1.569025,1.226335,0.078357,1.561823,1.162199,0.100865,1.603765,1.151824,0.093368,1.620690,1.218744,0.071898,1.356923,1.559549,0.306251,1.364084,1.573586,0.304213,1.364602,1.591861,0.306463,1.358081,1.575877,0.312897,1.368749,1.586605,0.295929,1.370092,1.604913,0.297499,1.388240,1.555997,0.272995,1.387107,1.569779,0.264309,1.376548,1.582659,0.277442,1.374302,1.571186,0.288829,1.388094,1.580238,0.253145,1.379309,1.591385,0.265161,1.376707,1.605960,0.271389,1.372621,1.597340,0.283778,1.435523,1.529641,0.229194,1.422902,1.550443,0.227028,1.405634,1.558401,0.248078,1.410727,1.538720,0.251338,1.412204,1.561450,0.226883,1.400681,1.569385,0.238563,1.377855,1.527278,0.268294,1.386253,1.541143,0.272772,1.370347,1.557853,0.293988,1.363727,1.544691,0.291845,1.412764,1.523266,0.250107,1.442813,1.508233,0.228726,1.400859,1.510047,0.242019,1.431414,1.491197,0.217975,1.568315,1.556116,0.072298,1.590384,1.503517,0.038268,1.556001,1.601755,0.094441,1.531848,1.603091,0.138514,1.550060,1.556686,0.117459,1.574145,1.505414,0.086821,1.602204,1.444836,0.052665,1.616573,1.441611,0.005758,1.626050,1.373430,0.030062,1.634612,1.369471,-0.016070,1.616808,1.299373,0.071266,1.558113,1.305349,0.077103,1.638174,1.293395,0.023674,1.599542,1.379557,0.084462,1.525715,1.397464,0.112060,1.641939,1.290772,-0.019295,1.539935,1.509729,0.134736,1.577991,1.451013,0.111573,1.485225,1.524907,0.176341,1.520900,1.469236,0.153620,1.493149,1.597632,0.172922,1.511474,1.556102,0.155103,1.453480,1.593120,0.185698,1.468246,1.559679,0.176544,1.403949,1.573815,0.227623,1.391217,1.584610,0.239181,1.418116,1.561640,0.215679,1.425529,1.565307,0.205860,1.415202,1.572854,0.211208,1.401853,1.587289,0.221966,1.393432,1.602652,0.236698,1.383016,1.597051,0.251088,1.389655,1.613626,0.248654,1.382741,1.610807,0.258870,1.411636,1.611460,0.220059,1.402136,1.624977,0.241833,1.422790,1.589379,0.201833,1.443490,1.633740,0.209553,1.431292,1.654482,0.235940,1.398963,1.665385,0.285196,1.385547,1.639170,0.288340,1.398754,1.650082,0.274090,1.417586,1.680632,0.266567,1.376159,1.615666,0.285584,1.384053,1.624050,0.273721,1.391989,1.628691,0.259901,1.415199,1.655525,0.255663,1.551456,1.736966,0.058887,1.550820,1.695306,0.081061,1.543873,1.753024,0.097239,1.517241,1.707170,0.150324,1.539338,1.770440,0.111552,1.535369,1.780481,0.119277,1.523263,1.763178,0.147309,1.518075,1.745516,0.148225,1.506998,1.756059,0.167076,1.490692,1.734751,0.187238,1.472896,1.713102,0.210154,1.551490,1.647350,0.094972,1.525972,1.652265,0.150412,1.444998,1.691327,0.241506,1.471741,1.683364,0.216863,1.486582,1.650797,0.199777,1.434780,1.565736,0.190934,1.442793,1.551548,0.193201,1.435239,1.546704,0.206227,1.457646,1.524214,0.202850,1.476603,1.493216,0.197553,1.468450,1.460663,0.183247,-1.795479,1.400729,-0.119806,-1.804724,1.321050,-0.109959,-1.801837,1.308293,-0.091706,-1.790419,1.386562,-0.097398,-1.803469,1.236872,-0.087071,-1.801814,1.224208,-0.071544,-1.799471,1.214635,-0.053057,-1.797999,1.297675,-0.071705,-1.786365,1.375505,-0.071924,-1.794434,1.573975,-0.132998,-1.817957,1.585231,-0.149051,-1.829391,1.525818,-0.165324,-1.809337,1.510469,-0.152791,-1.831910,1.589066,-0.156524,-1.838261,1.533218,-0.170649,-1.842415,1.489198,-0.179418,-1.837547,1.467788,-0.174751,-1.819428,1.438680,-0.158636,-1.791478,1.493139,-0.135513,-1.776935,1.559324,-0.113592,-1.803393,1.417328,-0.140455,-1.781994,1.476711,-0.113660,-1.769484,1.541906,-0.090264,-1.803100,1.678615,-0.100300,-1.819741,1.639120,-0.132787,-1.803500,1.635789,-0.122895,-1.787294,1.672233,-0.089647,-1.779038,1.625463,-0.102333,-1.768113,1.660594,-0.070562,-1.750951,1.704422,-0.003868,-1.739709,1.719978,0.032676,-1.745057,1.736354,0.027534,-1.760401,1.721546,-0.013666,-1.730777,1.728789,0.061152,-1.731124,1.744866,0.065856,-1.730241,1.760176,0.074447,-1.751853,1.755436,0.028250,-1.768896,1.741020,-0.022765,-1.772888,1.700355,-0.054015,-1.785862,1.710145,-0.063862,-1.759504,1.686778,-0.039156,-1.752124,1.674637,-0.027347,-1.744316,1.682923,0.001742,-1.754911,1.649137,-0.045658,-1.742005,1.642313,-0.005273,-1.761564,1.611095,-0.078712,-1.753875,1.593497,-0.052418,-1.776483,1.461716,-0.087398,-1.760375,1.524057,-0.062689,-1.770423,1.447622,-0.056068,-1.758575,1.509100,-0.027182,-1.748765,1.571419,-0.025160,-1.748590,1.553548,0.006651,-1.739662,1.580324,0.032216,-1.738988,1.605202,0.017878,-1.655549,1.747103,0.191964,-1.633357,1.720991,0.198872,-1.607663,1.697664,0.220751,-1.611207,1.713853,0.221563,-1.623398,1.689361,0.201924,-1.600913,1.675565,0.222843,-1.589645,1.659083,0.233416,-1.589725,1.664566,0.233531,-1.590193,1.670674,0.239420,-1.571351,1.633193,0.240031,-1.568626,1.630126,0.250877,-1.578326,1.638859,0.234399,-1.563675,1.614334,0.237316,-1.556641,1.601561,0.245773,-1.551724,1.584627,0.261363,-1.689318,1.036984,0.185113,-1.733742,1.051550,0.150002,-1.749131,1.032220,0.129177,-1.706322,1.015917,0.172646,-1.776554,1.079593,0.102346,-1.778010,1.069689,0.068916,-1.774906,1.066903,0.041626,-1.749346,1.020166,0.102396,-1.714123,0.995673,0.153334,-1.748317,1.013358,0.080919,-1.715579,0.978808,0.135766,-1.773506,1.070271,0.020775,-1.775287,1.075667,0.002270,-1.747882,1.013471,0.063798,-1.709989,0.958286,0.126941,-1.754270,1.019923,0.043026,-1.729683,0.970482,0.086935,-1.776536,1.085622,-0.012734,-1.781333,1.092027,-0.024822,-1.764158,1.024820,0.026459,-1.746920,0.984051,0.062910,-1.828867,1.415184,-0.169872,-1.820206,1.365206,-0.148632,-1.840134,1.444774,-0.163871,-1.826255,1.372961,-0.150277,-1.814399,1.284564,-0.117764,-1.811236,1.336792,-0.127555,-1.806446,1.253530,-0.102141,-1.793887,1.152274,-0.052064,-1.796495,1.164748,-0.066342,-1.803101,1.175749,-0.074193,-1.792171,1.141387,-0.035093,-1.790781,1.134282,-0.013500,-1.794675,1.131729,0.014607,-1.797729,1.135682,0.050273,-1.806268,1.215631,0.012226,-1.800042,1.210439,-0.026011,-1.642836,1.056843,0.179167,-1.680191,1.074173,0.149928,-1.707360,1.067849,0.156483,-1.665748,1.051191,0.186492,-1.716907,1.107734,0.124656,-1.751408,1.096329,0.124346,-1.779910,1.151067,0.085403,-1.745380,1.163147,0.100295,-1.760885,1.235530,0.075210,-1.798710,1.228997,0.055517,-1.552480,1.589619,0.238831,-1.546856,1.572773,0.251456,-1.547613,1.563644,0.240796,-1.545067,1.547137,0.253122,-1.539365,1.531283,0.261297,-1.542077,1.552999,0.262675,-1.560055,1.587512,0.214690,-1.559719,1.565562,0.213823,-1.554814,1.555447,0.227872,-1.552264,1.577617,0.227302,-1.570580,1.550444,0.212001,-1.566826,1.538352,0.227101,-1.564393,1.522586,0.238858,-1.553034,1.540814,0.242285,-1.584999,1.540524,0.207177,-1.582879,1.527869,0.218934,-1.596073,1.534630,0.199156,-1.600160,1.524938,0.201557,-1.604541,1.508028,0.203612,-1.580916,1.510626,0.226579,-1.549446,1.525272,0.251198,-1.559776,1.503982,0.245626,-1.550225,1.488626,0.247255,-1.541709,1.510233,0.257214,-1.578126,1.490167,0.228972,-1.569193,1.473542,0.224988,-1.608739,1.486039,0.203097,-1.602013,1.461625,0.196061,-1.709230,1.575944,0.108895,-1.728390,1.578855,0.067836,-1.742591,1.543992,0.049141,-1.721752,1.538876,0.092702,-1.766483,1.502311,0.018340,-1.746658,1.498615,0.067835,-1.789619,1.371258,-0.036174,-1.779406,1.443569,-0.012476,-1.798859,1.377031,0.011119,-1.778819,1.445251,0.041751,-1.805952,1.298237,-0.002192,-1.797270,1.309304,0.048773,-1.770115,1.385343,0.063456,-1.751410,1.313599,0.067385,-1.709552,1.401248,0.091565,-1.795874,1.293536,-0.043675,-1.691538,1.450909,0.122124,-1.738646,1.449167,0.085479,-1.660097,1.509049,0.148738,-1.709908,1.500188,0.107894,-1.648383,1.541246,0.153506,-1.686643,1.538450,0.126301,-1.639544,1.569536,0.160617,-1.674262,1.572008,0.139875,-1.611991,1.541487,0.181464,-1.603910,1.538298,0.188915,-1.591941,1.547417,0.195152,-1.603036,1.549548,0.182067,-1.578183,1.557838,0.198819,-1.592689,1.564931,0.185330,-1.570538,1.592826,0.201162,-1.569795,1.573925,0.201145,-1.581627,1.593844,0.196077,-1.583728,1.581336,0.189271,-1.612238,1.567943,0.172718,-1.602558,1.589089,0.178531,-1.629399,1.598314,0.167161,-1.591918,1.606104,0.186035,-1.616957,1.622501,0.177865,-1.587384,1.633284,0.211151,-1.574305,1.625206,0.226518,-1.589673,1.649382,0.224390,-1.607010,1.658590,0.206414,-1.560965,1.602258,0.226998,-1.570459,1.610286,0.213647,-1.581674,1.611840,0.198325,-1.601832,1.633659,0.193384,-1.732655,1.697192,0.044521,-1.720989,1.715691,0.083850,-1.728676,1.661528,0.059375,-1.694979,1.678078,0.126508,-1.694219,1.752197,0.140151,-1.710760,1.757968,0.113542,-1.714890,1.742012,0.102405,-1.690774,1.733360,0.137743,-1.662631,1.731148,0.171567,-1.651363,1.693074,0.176777,-1.677050,1.751497,0.158751,-1.729148,1.616865,0.068954,-1.704923,1.614286,0.116390,-1.629606,1.658566,0.185814,-1.652601,1.641432,0.163260,-1.666345,1.606497,0.149079,-1.625135,1.532331,0.171489,-1.620296,1.546418,0.169343,-1.616271,1.526387,0.183661,-1.632427,1.507037,0.177214,-1.649333,1.472352,0.164957,-1.649066,1.437914,0.149040,4.258406,-3.042720,-0.518544,4.238291,-3.063961,-0.769491,4.261849,-2.963929,-0.755034,4.281084,-2.930131,-0.626550,4.194014,-3.010111,-1.029212,4.246312,-2.915035,-0.881420,4.270880,-2.883372,-0.747043,4.013700,-3.333330,-1.310886,4.107066,-3.369227,-0.858050,3.968338,-3.546629,-0.905359,3.895391,-3.525713,-1.428930,4.115990,-3.352435,-0.400620,3.983105,-3.517375,-0.376541,3.806224,-3.654869,-0.369181,3.791319,-3.701445,-0.948852,3.745082,-3.705177,-1.525860,3.918318,-3.240695,-1.668569,3.813666,-3.447141,-1.824981,3.688140,-3.631617,-1.939578,4.119313,-2.894632,-1.239163,4.024443,-3.049801,-1.469338,4.114691,-3.154896,-1.174808,4.192056,-3.197824,-0.807965,4.202460,-3.186203,-0.447972,3.764993,-3.584770,0.051053,3.592859,-3.695594,0.082019,3.611987,-3.763770,-0.365668,3.411231,-3.771039,0.108064,3.407746,-3.845366,-0.352937,3.922687,-3.445465,0.000040,4.057328,-3.280871,-0.075446,4.169553,-3.105423,-0.180124,4.240334,-2.939561,-0.327833,4.260922,-2.814437,-0.522593,4.244395,-2.758186,-0.750964,4.194157,-2.791535,-0.995212,-0.126170,-3.818236,-1.612431,0.063643,-3.819508,-1.610104,0.116466,-3.831588,-0.768839,-0.092812,-3.829692,-0.777521,0.252616,-3.821610,-1.609310,0.328145,-3.837069,-0.754327,0.398080,-3.786852,0.120141,0.167710,-3.779048,0.091707,-0.057359,-3.776347,0.074942,0.725036,-3.674263,-2.267818,0.550013,-3.668616,-2.226641,0.929006,-3.680336,-2.318509,1.041512,-3.880661,-1.838745,0.839455,-3.860732,-1.734342,0.637279,-3.843799,-1.658232,0.383079,-3.663595,-2.204518,0.213808,-3.660872,-2.197181,0.442354,-3.830012,-1.620260,1.475191,-3.707263,-2.358832,1.175955,-3.687841,-2.357140,1.542232,-3.912530,-1.881334,1.260885,-3.899616,-1.926014,2.373651,-3.916991,-0.177260,2.416955,-3.813428,0.402691,2.044074,-3.809892,0.437199,2.000772,-3.904747,-0.204104,1.658314,-3.797298,0.478891,1.556650,-3.890209,-0.338009,1.296963,-3.771016,0.590966,0.968003,-3.739633,0.691230,0.905578,-3.824741,0.078634,1.203476,-3.851455,-0.063890,2.252097,-3.946625,-1.784676,1.888256,-3.929505,-1.822824,1.828534,-3.733168,-2.342269,2.191663,-3.757659,-2.317384,2.516618,-3.778512,-2.285956,2.800232,-3.794462,-2.247513,2.854966,-3.960854,-1.737309,2.575099,-3.958462,-1.759926,3.218687,-3.809857,0.164111,3.192591,-3.893820,-0.321225,2.998799,-3.822961,0.238426,2.957956,-3.915845,-0.271086,2.690443,-3.922127,-0.211554,2.736499,-3.820984,0.325874,3.053905,-3.802712,-2.198053,3.286704,-3.792260,-2.132412,3.332862,-3.909191,-1.662429,3.103840,-3.948036,-1.706486,3.504830,-3.745853,-2.045012,3.549033,-3.832178,-1.602184,3.592103,-3.821980,-0.986406,3.378598,-3.906256,-1.011398,3.153947,-3.954493,-1.018874,2.910843,-3.974941,-1.010735,2.637141,-3.976967,-0.994517,2.317325,-3.967687,-0.995837,1.597323,-3.940876,-1.185105,1.950647,-3.952352,-1.044596,1.367860,-3.937943,-1.418604,1.238962,-3.916717,-1.145971,1.021206,-3.889352,-0.930132,0.776241,-3.866395,-0.806173,0.545352,-3.848308,-0.756482,0.640055,-3.802313,0.129055,0.184358,-3.676995,0.661048,-0.040511,-3.672412,0.639285,0.419321,-3.687356,0.698364,0.676394,-3.710095,0.721881,-0.141150,-3.661862,-2.196918,0.038930,-3.662189,-2.195390,-4.225506,-2.942968,-0.953543,-4.254473,-2.992788,-0.698405,-4.271281,-2.903749,-0.681301,-4.261500,-2.850982,-0.805512,-4.261909,-2.977695,-0.452510,-4.281084,-2.869236,-0.558030,-4.278529,-2.818305,-0.673232,-3.846647,-3.594869,-0.311740,-4.019670,-3.454846,-0.316299,-4.038633,-3.486409,-0.836205,-3.856916,-3.639398,-0.878287,-4.142002,-3.284925,-0.338927,-4.156742,-3.301469,-0.787449,-4.085154,-3.265448,-1.235387,-3.986231,-3.464157,-1.351881,-3.839891,-3.644220,-1.445450,-3.915715,-3.385299,-1.741808,-3.801781,-3.573309,-1.857368,-4.004585,-3.175502,-1.587551,-4.167196,-3.086101,-1.099679,-4.094242,-2.983320,-1.390430,-4.170063,-2.828581,-1.161194,-4.216639,-3.118661,-0.383740,-4.219728,-3.127835,-0.737303,-3.622896,-3.640238,0.119578,-3.449556,-3.718806,0.139979,-3.789532,-3.528092,0.095688,-3.660689,-3.709693,-0.311894,-3.464230,-3.794980,-0.303583,-4.070544,-3.223873,-0.022699,-3.945262,-3.388760,0.052740,-4.238672,-2.888255,-0.271303,-4.169603,-3.049472,-0.128372,-4.256146,-2.709365,-0.675507,-4.264126,-2.767298,-0.457045,-4.224927,-2.733073,-0.916693,-0.510662,-3.780522,0.118375,-0.509222,-3.830694,-0.750281,-0.300671,-3.828702,-0.767134,-0.281906,-3.775824,0.089316,-0.500368,-3.815321,-1.611801,-0.314720,-3.815764,-1.611027,-1.269783,-3.865888,-1.849622,-1.177411,-3.667651,-2.352824,-0.981390,-3.663386,-2.297835,-1.072881,-3.847917,-1.743264,-0.813169,-3.660017,-2.249593,-0.875587,-3.832411,-1.664911,-0.652653,-3.656960,-2.220192,-0.685630,-3.821304,-1.624813,-0.488383,-3.656330,-2.205420,-1.481392,-3.884799,-1.936315,-1.417732,-3.674417,-2.391161,-1.748484,-3.894988,-1.880291,-1.706465,-3.690893,-2.382801,-2.134060,-3.762817,0.471469,-1.751564,-3.759547,0.512446,-2.496699,-3.758873,0.429350,-2.470647,-3.876573,-0.128494,-2.112164,-3.872328,-0.149790,-1.684105,-3.867894,-0.286193,-1.018496,-3.811458,0.096084,-1.053975,-3.717834,0.689797,-1.387823,-3.742185,0.609464,-1.322248,-3.834154,-0.028773,-2.043103,-3.712024,-2.348373,-2.075617,-3.905786,-1.804457,-2.421222,-3.916077,-1.748204,-2.388038,-3.730406,-2.300717,-2.994474,-3.917374,-1.674475,-2.964345,-3.751586,-2.191694,-2.696164,-3.743091,-2.247740,-2.728360,-3.920839,-1.708229,-3.264353,-3.758236,0.190138,-3.054178,-3.769927,0.260476,-3.256779,-3.845585,-0.276213,-3.031189,-3.869208,-0.228242,-2.803401,-3.765523,0.347585,-2.774436,-3.876988,-0.167246,-3.449445,-3.856921,-1.586886,-3.420899,-3.739043,-2.058001,-3.202322,-3.753529,-2.130479,-3.231120,-3.899425,-1.635869,-3.626872,-3.690536,-1.965745,-3.655120,-3.775695,-1.523590,-3.669828,-3.766773,-0.917101,-3.465571,-3.855781,-0.944175,-3.249742,-3.907610,-0.954977,-3.016530,-3.931911,-0.950544,-2.754473,-3.938314,-0.937979,-2.449060,-3.934903,-0.943785,-2.099653,-3.926242,-0.998870,-1.766976,-3.920969,-1.150445,-1.516818,-3.901943,-1.399400,-1.422095,-3.899108,-1.120607,-1.198447,-3.874467,-0.907866,-0.952332,-3.854276,-0.791449,-0.723214,-3.839348,-0.748187,-0.751246,-3.793003,0.133762,-0.503846,-3.675308,0.676997,-0.267156,-3.669889,0.648547,-0.761126,-3.692965,0.702746,-0.318343,-3.659093,-2.199004,1.338983,1.795032,0.531727,1.348834,1.707789,0.469449,1.357175,1.806513,0.398591,1.354835,1.932418,0.439030,1.351780,1.637531,0.446381,1.362235,1.738761,0.387744,1.379500,1.799866,0.288642,1.373226,1.888486,0.286051,1.381924,1.532857,0.417204,1.395066,1.611449,0.410704,1.383387,1.638629,0.415424,1.367684,1.543821,0.429475,1.409896,1.674566,0.394065,1.397399,1.701287,0.392209,1.388663,1.733499,0.367712,1.375264,1.667726,0.411263,1.360066,1.559926,0.437317,1.369444,1.696722,0.400701,1.354681,1.587317,0.440872,1.378726,1.750196,0.350763,1.649923,1.574007,-0.142446,1.645246,1.629455,-0.126953,1.656266,1.558908,-0.127120,1.650969,1.614271,-0.115131,1.644786,1.661567,-0.087528,1.640717,1.678406,-0.100486,1.657648,1.512318,-0.144854,1.666377,1.497211,-0.128427,1.679566,1.486092,-0.112333,1.670447,1.544258,-0.110672,1.680249,1.420936,-0.107532,1.703667,1.418430,-0.106641,1.699457,1.483398,-0.109462,1.693457,1.539024,-0.106992,1.718196,1.580220,-0.173224,1.721216,1.515260,-0.183917,1.699738,1.527933,-0.206405,1.692392,1.598219,-0.194165,1.717846,1.440264,-0.189537,1.700418,1.446807,-0.212610,1.668413,1.450281,-0.227753,1.661856,1.536973,-0.219735,1.648951,1.611585,-0.206124,1.705980,1.647609,-0.091457,1.715389,1.602173,-0.117825,1.719305,1.616579,-0.133290,1.711369,1.663792,-0.106849,1.718675,1.552074,-0.136473,1.722331,1.564248,-0.153429,1.714840,1.634957,-0.151095,1.708773,1.684308,-0.122870,1.722831,1.425627,-0.144911,1.718205,1.421133,-0.125685,1.715791,1.345492,-0.131205,1.720190,1.347369,-0.149683,1.701910,1.344643,-0.107610,1.693033,1.259915,-0.105946,1.706069,1.258800,-0.124821,1.711170,1.257893,-0.140988,1.723056,1.432536,-0.165571,1.719277,1.350202,-0.170108,1.711469,1.353368,-0.192824,1.709303,1.256700,-0.161348,1.701605,1.255483,-0.182308,1.715214,1.487500,-0.123754,1.709591,1.543682,-0.120031,1.721379,1.494009,-0.142384,1.724958,1.503508,-0.161948,1.688391,1.656648,-0.171516,1.686022,1.707298,-0.140199,1.643389,1.671933,-0.181149,1.642161,1.723598,-0.144739,1.683277,1.776943,-0.039758,1.700811,1.732510,-0.089308,1.679627,1.757793,-0.103425,1.664668,1.804826,-0.048915,1.634409,1.774743,-0.103765,1.622848,1.821657,-0.047110,1.678127,1.725480,-0.013672,1.693700,1.691030,-0.059913,1.702106,1.709301,-0.074508,1.683527,1.750466,-0.028934,1.589466,1.782123,0.050656,1.566159,1.793844,0.104268,1.610284,1.757661,-0.013979,1.612249,1.738596,0.000843,1.590317,1.763962,0.064678,1.563030,1.775771,0.132173,1.640339,1.700300,0.011573,1.619068,1.721765,0.075719,1.595619,1.741169,0.070837,1.617688,1.716334,0.009928,1.594003,1.746834,0.128399,1.578886,1.759974,0.128617,1.652190,1.642418,-0.071620,1.638862,1.683986,-0.038944,1.632837,1.703633,-0.051796,1.675288,1.631314,-0.064732,1.657091,1.673747,-0.035623,1.644297,1.732161,0.069251,1.614047,1.754449,0.127678,1.663963,1.706698,0.001253,1.654861,1.755656,0.055490,1.630558,1.780017,0.121790,1.678680,1.678669,-0.046111,1.695596,1.635679,-0.075492,1.704925,1.592149,-0.102681,1.686742,1.587521,-0.091429,1.662680,1.595537,-0.096565,1.628889,1.722271,-0.066537,1.618974,1.536689,-0.219452,1.602295,1.610376,-0.198995,1.630445,1.449351,-0.230545,1.592104,1.442010,-0.214970,1.579569,1.523587,-0.192733,1.564609,1.590577,-0.160112,1.606587,1.254310,-0.203036,1.583647,1.253111,-0.182682,1.573485,1.347925,-0.184326,1.598865,1.353057,-0.216026,1.566556,1.254661,-0.157291,1.555102,1.345764,-0.146069,1.539078,1.429364,-0.130757,1.562845,1.434174,-0.171071,1.589393,1.047468,-0.116475,1.571379,1.058151,-0.109190,1.587786,1.152141,-0.154117,1.606894,1.147293,-0.167599,1.559056,1.072142,-0.099239,1.573712,1.158926,-0.141617,1.602114,1.013623,0.005307,1.634835,1.085613,-0.048163,1.566733,0.960948,0.070549,1.564999,0.942064,0.079517,1.606227,1.004408,0.006726,1.644352,1.080902,-0.051855,1.574302,1.819882,-0.023513,1.562236,1.848175,0.039331,1.608917,1.855362,0.020314,1.528227,1.801221,0.016237,1.517411,1.823139,0.072613,1.496807,1.835782,0.131590,1.536644,1.863825,0.108178,1.578271,1.874703,0.093165,1.532773,1.783836,0.142411,1.525148,1.774607,0.171764,1.532228,1.760776,0.189768,1.519269,1.755029,0.195065,1.498155,1.734839,0.228123,1.489153,1.743660,0.227501,1.571849,0.902484,0.080016,1.567799,0.922597,0.082761,1.524396,0.868719,0.148720,1.528051,0.839385,0.146998,1.523454,0.899884,0.143396,1.488858,0.866346,0.195264,1.491193,0.823096,0.204072,1.494708,0.785748,0.203183,1.476581,0.946343,0.231961,1.498210,0.980029,0.204637,1.493066,1.004574,0.228374,1.470813,0.971125,0.257212,1.473937,1.032575,0.240004,1.456547,1.003918,0.271629,1.462181,1.723171,0.092595,1.452662,1.748675,0.132667,1.481315,1.783814,0.106176,1.491065,1.763093,0.058891,1.438409,1.770293,0.173366,1.464756,1.801284,0.155016,1.445151,0.932674,0.283603,1.451693,0.899946,0.256943,1.440546,0.966584,0.305154,1.423066,0.937402,0.323696,1.413211,0.897256,0.311109,1.425749,0.822395,0.308060,1.423657,1.647447,0.386539,1.440946,1.698056,0.366360,1.427314,1.719724,0.368480,1.438659,1.620257,0.372084,1.456114,1.673615,0.359584,1.479700,1.731032,0.336344,1.467133,1.753713,0.340404,1.451827,1.770281,0.338676,1.371407,1.592545,0.327172,1.354213,1.568015,0.322977,1.357278,1.579275,0.320756,1.368750,1.601819,0.320311,1.342887,1.552183,0.315218,1.353118,1.570673,0.317265,1.340562,1.539498,0.319007,1.340234,1.546032,0.317864,1.348448,1.557323,0.321182,1.352562,1.559346,0.326657,1.346134,1.031948,0.224784,1.365201,1.037429,0.223824,1.381948,1.041255,0.185864,1.357143,1.047256,0.185270,1.375383,1.046499,0.229818,1.396431,1.046932,0.195715,1.420794,1.056749,0.160909,1.399934,1.056246,0.145205,1.373723,1.083134,0.139404,1.436194,1.781045,0.332416,1.415832,1.740280,0.362559,1.425071,1.783741,0.324904,1.409202,1.763845,0.341886,1.336177,1.022074,0.256259,1.348220,1.031593,0.256034,1.325390,1.013856,0.273915,1.332013,1.017450,0.281932,1.335661,1.022886,0.292374,1.355238,1.041110,0.264039,1.351653,1.319150,0.213675,1.334390,1.352303,0.223149,1.333871,1.360262,0.242626,1.352819,1.334073,0.237831,1.326316,1.377628,0.230261,1.316832,1.386603,0.246956,1.316406,1.411235,0.272364,1.336169,1.381680,0.264793,1.357550,1.359702,0.257098,1.352656,1.510233,0.254500,1.344534,1.523091,0.278911,1.335279,1.514252,0.277248,1.340325,1.502576,0.252730,1.340707,1.534581,0.297212,1.333706,1.525906,0.294584,1.328024,1.520182,0.297954,1.326181,1.505164,0.279202,1.329843,1.490975,0.254292,1.340631,1.544040,0.307906,1.336069,1.533717,0.304125,1.333888,1.535251,0.307207,1.334066,1.534409,0.311246,1.332070,1.527371,0.308702,1.321120,1.507347,0.298500,1.318713,1.493465,0.283356,1.317988,1.496263,0.302567,1.312812,1.480330,0.288809,1.310587,1.460199,0.266774,1.319344,1.477155,0.259597,1.333900,1.524516,0.315135,1.326903,1.518038,0.306639,1.330465,1.516166,0.313366,1.324420,1.508133,0.309752,1.319153,1.483411,0.308497,1.312027,1.463789,0.295109,1.329119,1.465330,0.312610,1.320190,1.440106,0.296945,1.307776,1.439671,0.272259,1.327852,1.498637,0.315446,1.336119,1.511671,0.319305,1.349156,1.503044,0.324329,1.339233,1.485406,0.320523,1.397148,1.473974,0.309365,1.404182,1.496717,0.317692,1.413638,1.483872,0.333430,1.409140,1.454431,0.321091,1.414201,1.521382,0.325140,1.422921,1.515687,0.342678,1.416754,1.516122,0.369035,1.410904,1.472535,0.358311,1.408764,1.433381,0.342430,1.427335,1.550524,0.330632,1.434104,1.553872,0.349710,1.440907,1.587530,0.333136,1.446897,1.599015,0.351247,1.425567,1.565872,0.374715,1.452149,1.833372,0.245286,1.435917,1.810639,0.292950,1.457418,1.820658,0.291331,1.479818,1.852392,0.238937,1.479987,1.819825,0.294154,1.510158,1.858196,0.236772,1.500379,1.807926,0.296491,1.537038,1.848030,0.237608,1.514719,1.786404,0.296586,1.554071,1.826927,0.239899,1.473837,1.841787,0.190743,1.506024,1.866409,0.177141,1.543141,1.875565,0.169070,1.559676,1.796043,0.240871,1.601971,1.814726,0.179946,1.595457,1.846398,0.173636,1.554672,1.763064,0.240378,1.594876,1.781526,0.183242,1.637142,1.811303,0.111691,1.634525,1.841301,0.101362,1.657704,1.783598,0.041461,1.656990,1.811704,0.029524,1.613361,1.865580,0.092627,1.646071,1.840276,0.021659,1.574809,1.867424,0.168359,1.481919,1.677464,0.314950,1.515569,1.726585,0.285230,1.520046,1.756862,0.292588,1.487654,1.702577,0.327139,1.343690,1.525359,0.323186,1.358826,1.520910,0.327784,1.351649,1.542043,0.328137,1.372276,1.546781,0.331066,1.358508,1.556558,0.328888,1.371629,1.571664,0.332437,1.426336,1.583747,0.322998,1.442572,1.618230,0.320267,1.457851,1.630265,0.329233,1.412680,1.584782,0.321951,1.420636,1.607274,0.320395,1.440853,1.646694,0.306866,1.468299,1.657176,0.304449,1.395573,1.570057,0.325544,1.393525,1.592172,0.328687,1.399686,1.618865,0.324242,1.562063,1.752463,0.184232,1.547217,1.754070,0.185358,1.523425,1.729983,0.232447,1.508211,1.730336,0.229237,1.579295,1.759421,0.184013,1.541225,1.739793,0.237305,1.463185,1.703969,0.271047,1.451424,1.713840,0.271175,1.427132,1.668678,0.301726,1.416476,1.674637,0.299709,1.435751,1.661378,0.301983,1.407733,1.638571,0.318153,1.395777,1.636299,0.319195,1.387870,1.637607,0.315207,1.472617,1.696088,0.270216,1.485434,1.692784,0.272315,1.501882,1.703484,0.276840,1.464588,1.648480,0.345050,1.409959,1.556686,0.321020,1.393017,1.533146,0.320235,1.381193,1.510505,0.318228,1.372651,1.490005,0.315574,1.392992,1.366548,0.306495,1.390925,1.394435,0.292262,1.401449,1.424777,0.307429,1.403910,1.398784,0.325497,1.379094,1.420977,0.288058,1.389217,1.449067,0.299758,1.370185,1.296682,0.260859,1.370678,1.330976,0.258231,1.379798,1.363684,0.275829,1.381035,1.334035,0.286199,1.367332,1.390238,0.273342,1.364429,1.469018,0.309684,1.355677,1.443928,0.299350,1.343985,1.413071,0.285372,1.368490,1.257223,0.197368,1.366452,1.285276,0.205865,1.366082,1.301944,0.234234,1.365784,1.265878,0.227466,1.396037,1.105356,0.093407,1.401688,1.151788,0.073662,1.374137,1.138377,0.117427,1.414619,1.120569,0.068501,1.429451,1.159469,0.047953,1.439250,1.226733,0.043472,1.413338,1.214846,0.065146,1.383535,1.196321,0.108689,1.464879,1.109454,0.089984,1.439695,1.108004,0.072154,1.415673,1.081093,0.108819,1.438678,1.079033,0.126084,1.532175,0.930507,0.126760,1.496897,0.910824,0.174589,1.505282,0.966404,0.185810,1.489262,0.941017,0.198167,1.462221,0.839882,0.243436,1.470118,0.895604,0.219905,1.675515,1.347976,-0.101699,1.672162,1.263119,-0.096522,1.660008,1.171105,-0.084460,1.674154,1.168449,-0.091183,1.463822,1.088489,0.146374,1.496825,1.115525,0.114868,1.437592,1.064430,0.177059,1.492381,1.233991,0.044082,1.487683,1.161681,0.058341,1.521306,1.163836,0.083879,1.523115,1.231999,0.063104,1.347946,1.491586,0.221632,1.363355,1.499407,0.224860,1.335376,1.478396,0.223182,1.342054,1.465275,0.186385,1.360846,1.482306,0.185569,1.382947,1.488993,0.190620,1.449473,1.396202,0.089897,1.420665,1.395337,0.082402,1.459261,1.316105,0.048336,1.486156,1.316845,0.053979,1.394364,1.382544,0.092756,1.432474,1.305258,0.057597,1.466260,1.232117,0.033815,1.324817,1.459590,0.228548,1.316298,1.438061,0.236303,1.329832,1.415608,0.207562,1.333155,1.441893,0.194818,1.313177,1.413899,0.245590,1.324408,1.390851,0.220543,1.337600,1.360412,0.204338,1.344999,1.385084,0.181391,1.356847,1.320027,0.186302,1.365517,1.334762,0.153574,1.351100,1.414300,0.157826,1.361177,1.443019,0.138398,1.376748,1.360817,0.118565,1.388898,1.464366,0.133867,1.416915,1.465765,0.143433,1.348997,1.546025,0.302921,1.348415,1.558522,0.311929,1.365143,1.517933,0.259753,1.354482,1.532861,0.284854,1.381971,1.502104,0.232535,1.406262,1.485838,0.202080,1.440816,1.456791,0.160436,1.477833,1.391035,0.101522,1.514797,1.312534,0.066645,1.458444,1.159899,0.040546,1.407183,1.284149,0.080117,1.387749,1.264495,0.119286,1.374152,1.269178,0.167245,1.370916,1.224501,0.165986,1.340102,1.219296,0.208856,1.335039,1.172861,0.181178,1.342597,1.265991,0.261681,1.305582,1.242768,0.263809,1.270661,0.768978,0.493643,1.292042,0.751627,0.490337,1.308692,0.774707,0.490151,1.291633,0.803354,0.494409,1.307343,0.740677,0.487323,1.321093,0.755768,0.483542,1.330091,0.770352,0.478449,1.327298,0.793079,0.478055,1.315030,0.841944,0.468974,1.348410,0.796309,0.460501,1.338907,0.842239,0.438197,1.346473,0.762573,0.468488,1.367338,0.745885,0.451273,1.374483,0.785328,0.437908,1.360378,0.834880,0.403494,1.334354,0.738195,0.473291,1.311224,0.726449,0.478271,1.318945,0.701229,0.466038,1.348742,0.717928,0.458803,1.362038,0.695774,0.438708,1.389180,0.724922,0.426729,1.331022,0.679565,0.445598,1.342933,0.666605,0.427957,1.368888,0.677041,0.415473,1.400694,0.700531,0.400763,1.400995,0.768543,0.404991,1.385338,0.822652,0.364402,1.424496,0.742118,0.374850,1.402358,0.943449,0.342077,1.379574,0.887838,0.341261,1.362924,0.954588,0.365331,1.350430,0.892773,0.372510,1.306192,0.928244,0.422755,1.312842,0.893746,0.438357,1.327557,0.891618,0.407479,1.323290,0.934230,0.393368,1.301401,0.935517,0.442444,1.302818,0.908731,0.454503,1.301633,0.945680,0.450134,1.296323,0.934531,0.457575,1.287737,0.913375,0.474331,1.296091,0.875961,0.477129,1.268812,0.883577,0.495863,1.278096,0.837469,0.496647,1.238207,0.832529,0.494645,1.252626,0.793158,0.494095,1.291880,0.995779,0.298703,1.312628,1.002668,0.283630,1.314956,1.015424,0.265471,1.290391,1.011671,0.282065,1.320468,1.034031,0.237680,1.288346,1.043689,0.262889,1.328936,1.060956,0.204976,1.298658,1.081406,0.230890,1.338836,1.096035,0.176991,1.303399,1.121764,0.215104,1.341376,1.133838,0.167303,1.300432,1.162666,0.225826,1.270483,0.946563,0.486627,1.255435,0.927221,0.506221,1.286755,0.961521,0.466800,1.283988,1.016407,0.476569,1.278390,1.021927,0.497417,1.272656,1.029409,0.521722,1.363314,1.242691,0.385801,1.360026,1.241366,0.395655,1.360375,1.206119,0.405314,1.363766,1.201815,0.395043,1.356628,1.238847,0.402487,1.355627,1.216657,0.411461,1.347819,1.184025,0.426504,1.354372,1.168412,0.414085,1.358996,1.161288,0.401113,1.346160,1.276521,0.409466,1.349394,1.239303,0.417895,1.352897,1.236160,0.411810,1.351699,1.255178,0.404108,1.348109,1.296995,0.397330,1.349221,1.331286,0.407696,1.342740,1.305078,0.423643,1.351646,1.305148,0.384672,1.356460,1.338796,0.387670,1.370767,1.385209,0.390877,1.350731,1.375197,0.427555,1.335992,1.345042,0.457280,1.351220,1.319915,0.336996,1.330707,1.305087,0.331626,1.324203,1.302177,0.315213,1.337017,1.303608,0.306114,1.321098,1.301048,0.330226,1.317550,1.302802,0.320439,1.312143,1.298132,0.313289,1.311517,1.288695,0.301805,1.362222,1.312187,0.297047,1.378245,1.342953,0.320782,1.390826,1.374671,0.343720,1.369131,1.351427,0.358512,1.395536,1.413033,0.365117,1.346247,1.255590,0.347290,1.335766,1.262174,0.341300,1.333176,1.289118,0.338130,1.342126,1.288044,0.344518,1.322461,1.273088,0.336706,1.324592,1.290912,0.334219,1.350440,1.297753,0.365344,1.353997,1.277301,0.364663,1.348320,1.282302,0.354580,1.349417,1.308770,0.357144,1.362219,1.245942,0.365962,1.356352,1.250253,0.355442,1.364052,1.243624,0.376001,1.356283,1.276390,0.373227,1.355718,1.275012,0.382835,1.351619,1.303267,0.372769,1.355069,1.328544,0.368651,1.353565,1.269023,0.393562,1.364570,1.200275,0.383840,1.362158,1.201449,0.371809,1.359618,1.157429,0.387900,1.356773,1.157134,0.376277,1.270911,1.047068,0.358570,1.276169,1.040379,0.370409,1.269297,1.014270,0.360276,1.262386,1.023113,0.349147,1.281499,1.035288,0.381366,1.272173,1.010499,0.375329,1.276240,0.990694,0.363643,1.268869,0.996373,0.347992,1.262980,1.005705,0.333808,1.342540,1.169351,0.358165,1.334841,1.180766,0.351823,1.341663,1.225304,0.344158,1.351268,1.215107,0.350122,1.327046,1.194419,0.347009,1.330229,1.235196,0.342557,1.357653,1.206199,0.359425,1.350641,1.160770,0.365866,1.348310,1.114381,0.361787,1.339509,1.122757,0.355615,1.354504,1.112008,0.371938,1.340277,1.072590,0.378414,1.332315,1.073389,0.368252,1.325332,1.079540,0.359244,1.318232,1.090986,0.353306,1.330430,1.135785,0.351785,1.308409,1.106696,0.349064,1.319447,1.151909,0.349621,1.296574,1.063163,0.365909,1.286680,1.074791,0.359824,1.304910,1.054909,0.372776,1.315379,0.999525,0.299596,1.318982,1.004022,0.314184,1.296990,0.990118,0.315859,1.303555,0.991486,0.333672,1.289669,0.984238,0.350108,1.281088,0.988921,0.331161,1.274421,0.997593,0.316964,1.317771,0.995128,0.360958,1.334203,1.010181,0.338941,1.324162,1.008050,0.328572,1.309965,0.994008,0.350088,1.346243,1.025909,0.320455,1.339374,1.027026,0.307099,1.334164,0.986987,0.365501,1.312894,0.968104,0.386521,1.303022,0.981323,0.379182,1.294218,0.986743,0.404464,1.301086,0.961018,0.413081,1.359681,1.046576,0.280165,1.360270,1.037251,0.308659,1.394820,1.050869,0.279624,1.384879,1.054958,0.245625,1.415086,0.991121,0.321155,1.380878,1.005675,0.333698,1.429267,1.034696,0.277657,1.449721,1.052317,0.238047,1.427225,1.056519,0.226355,1.410491,1.053065,0.210515,1.351659,1.009503,0.339137,1.297498,0.982733,0.367209,1.281475,0.987996,0.383566,1.295864,0.970590,0.454314,1.301484,0.972565,0.444479,1.306076,1.018299,0.443742,1.294510,1.014201,0.460578,1.303561,0.966352,0.433962,1.311550,0.998777,0.424794,1.312918,1.045619,0.438820,1.311834,1.091127,0.450280,1.299691,1.076028,0.467594,1.323738,1.062131,0.425008,1.331723,1.111623,0.429485,1.332808,1.177213,0.447143,1.319957,1.161937,0.470396,1.346017,1.078071,0.388842,1.336968,1.054970,0.400877,1.327960,1.047185,0.390185,1.346033,1.087793,0.395360,1.338139,1.076311,0.408160,1.326126,1.038895,0.411475,1.314601,1.029028,0.398382,1.299768,1.011387,0.405554,1.317990,1.022141,0.418551,1.277549,1.009734,0.392880,1.293783,1.030985,0.390202,1.315206,1.049119,0.379793,1.354820,1.120413,0.397444,1.357325,1.115154,0.384060,1.347005,1.120563,0.411990,1.342327,1.251929,0.433127,1.334599,1.257573,0.460200,1.300157,1.135311,0.500402,1.308055,1.146316,0.489346,1.320125,1.238237,0.487722,1.303221,1.191295,0.507154,1.324022,1.337683,0.488044,1.311907,1.303105,0.518438,1.295035,1.070489,0.483292,1.290932,1.079636,0.497352,1.288105,1.109222,0.511280,1.288872,1.150646,0.531208,1.202899,0.755445,0.509566,1.213425,0.806118,0.495271,1.243866,0.905256,0.528756,1.233572,0.873857,0.557535,1.267165,1.033295,0.550917,1.264915,1.031055,0.590227,1.509444,1.109672,-0.112009,1.498340,1.043411,-0.089461,1.460151,1.029578,-0.084657,1.470545,1.100778,-0.109489,1.488685,1.007892,-0.056500,1.456745,0.978727,-0.049726,1.422104,0.947400,-0.018818,1.414512,0.998597,-0.058296,1.407372,1.069498,-0.105895,1.434917,0.882342,0.055633,1.405372,0.862342,0.080530,1.404198,0.883611,0.049107,1.430157,0.910968,0.019095,1.385304,0.851382,0.095000,1.381150,0.861856,0.077667,1.379095,0.877000,0.054588,1.396819,0.912197,0.016034,1.460365,0.943526,-0.015097,1.496520,0.985288,-0.050962,1.503888,0.966350,-0.024974,1.466400,0.916340,0.019661,1.522090,1.041089,-0.079264,1.534900,1.029277,-0.065296,1.538780,1.108261,-0.101769,1.551972,1.099758,-0.094304,1.491123,0.930832,0.016382,1.497077,0.950149,0.000023,1.534532,1.013850,-0.054892,1.532143,0.998518,-0.047918,1.553183,1.086478,-0.094218,1.411763,0.838989,0.135204,1.427836,0.862157,0.091563,1.462103,0.895391,0.052923,1.456506,0.873626,0.075331,1.307635,0.799491,0.253144,1.290846,0.799042,0.259397,1.304005,0.810139,0.230991,1.323700,0.814794,0.217748,1.281628,0.798522,0.257076,1.289927,0.804166,0.235689,1.298659,0.806865,0.211369,1.312071,0.814649,0.197906,1.342743,0.824799,0.170019,1.367281,0.811222,0.193155,1.347315,0.815825,0.203892,1.375225,0.832418,0.159767,1.344632,0.797592,0.225363,1.328476,0.799203,0.240003,1.354377,0.845755,0.094065,1.348038,0.841024,0.082778,1.370413,0.882489,0.027280,1.336408,0.831560,0.126915,1.323313,0.814172,0.132932,1.284320,0.786511,0.148342,1.311454,0.820029,0.060006,1.328946,0.878727,-0.011437,1.253663,0.782628,0.020616,1.278823,0.836825,-0.070358,1.240578,0.758964,0.130325,1.338957,0.824300,0.145154,1.314525,0.813119,0.167817,1.292719,0.800803,0.192536,1.274466,0.789151,0.227748,1.265530,0.781495,0.260342,1.236047,0.750582,0.267806,1.256463,0.765756,0.210967,1.271251,0.779045,0.278808,1.249793,0.751378,0.299789,1.288927,0.777525,0.278679,1.271010,0.747304,0.298952,1.313907,0.776562,0.263289,1.342842,0.779788,0.235893,1.338484,0.747725,0.248854,1.302168,0.744949,0.281094,1.512608,0.878051,0.017005,1.497075,0.906595,0.019436,1.537229,0.980031,-0.050181,1.555102,0.958360,-0.057707,1.438373,0.727943,0.160086,1.427091,0.754629,0.152143,1.478572,0.801010,0.093637,1.492879,0.787946,0.103972,1.422060,0.786666,0.146971,1.468271,0.822606,0.087534,1.529843,0.857250,0.019052,1.548793,0.848524,0.029236,1.460768,0.847197,0.082730,1.418066,0.815530,0.142249,1.576854,0.943763,-0.057411,1.596559,0.939788,-0.047642,1.612232,1.040632,-0.118519,1.633114,1.039702,-0.112081,1.632088,1.144560,-0.175936,1.656567,1.144291,-0.172505,1.634340,1.254166,-0.216063,1.663924,1.253813,-0.215284,1.631812,1.356423,-0.230340,1.666260,1.356973,-0.228329,1.693414,1.355988,-0.213257,1.687923,1.254052,-0.202643,1.674346,1.147574,-0.158331,1.685371,1.151993,-0.140930,1.656136,1.051149,-0.084251,1.648270,1.044145,-0.098193,1.571489,0.865291,0.059901,1.574686,0.882165,0.072362,1.526831,0.816319,0.141245,1.520523,0.798643,0.131754,1.491851,0.753817,0.196889,1.479381,0.729036,0.185304,1.690738,1.156736,-0.123874,1.689136,1.160735,-0.111108,1.657501,1.066455,-0.063168,1.659546,1.059131,-0.071554,1.683779,1.164539,-0.100997,1.652759,1.074049,-0.056127,1.611398,0.993571,0.007430,1.616110,0.981976,0.004809,1.618852,0.969486,-0.002214,1.617654,0.956541,-0.014738,1.610317,0.945199,-0.031628,1.563619,0.851902,0.043923,1.507961,0.787841,0.117952,1.458715,0.718684,0.170683,1.325422,0.656669,0.412296,1.364952,0.660399,0.392483,1.303365,0.649444,0.377001,1.365012,0.649862,0.365649,1.396473,0.662236,0.360326,1.399112,0.677470,0.376144,1.292023,0.708135,0.295933,1.255345,0.714547,0.319195,1.334049,0.706994,0.261616,1.333159,0.670369,0.270344,1.288156,0.674109,0.307946,1.249180,0.685474,0.338525,1.250122,0.702278,0.451363,1.255361,0.735931,0.477842,1.230607,0.747070,0.468806,1.220698,0.713335,0.431733,1.210226,0.753451,0.455729,1.203709,0.718839,0.391581,1.297184,0.672259,0.437763,1.261580,0.674627,0.420067,1.284081,0.696940,0.460886,1.282942,0.724308,0.478717,1.443728,0.699312,0.299649,1.471295,0.736371,0.254704,1.469249,0.784249,0.255870,1.448817,0.746001,0.307334,1.427952,0.705823,0.350271,1.415269,0.674782,0.336232,1.459648,0.699430,0.248512,1.421355,0.667978,0.292983,1.387725,0.651519,0.285875,1.435104,0.675774,0.239249,1.386465,0.652380,0.331425,1.341346,0.641650,0.327421,1.301598,0.650381,0.317758,1.260441,0.662930,0.356863,1.353082,0.652661,0.278839,1.406896,0.672793,0.230650,1.387605,0.686575,0.223979,1.381192,0.722589,0.213865,1.376593,0.761506,0.202240,1.374707,0.791809,0.194232,1.372361,0.838807,0.124133,1.397030,0.846978,0.116735,1.361637,0.840047,0.111558,1.390898,0.942529,-0.017232,1.369667,0.955657,-0.067764,1.342577,1.073813,-0.180505,1.310067,0.944908,-0.130424,1.409967,1.576308,0.038602,1.433248,1.525368,-0.002743,1.429506,1.507953,-0.036246,1.409162,1.582455,0.011363,1.454636,1.479421,-0.046859,1.451135,1.440092,-0.073288,1.440414,1.359396,-0.122834,1.429692,1.496889,-0.099551,1.415179,1.622039,-0.032757,1.500813,1.289156,-0.110614,1.509203,1.195090,-0.118028,1.477774,1.199099,-0.126620,1.474277,1.309612,-0.109603,1.437044,1.203402,-0.134233,1.379629,1.206522,-0.210435,1.404194,1.351042,-0.228457,1.414457,1.500611,-0.218434,1.422005,1.646794,-0.159352,1.515252,1.422442,-0.081967,1.500260,1.419046,-0.080957,1.480275,1.463498,-0.062069,1.493858,1.476511,-0.059973,1.487619,1.414457,-0.088542,1.472040,1.441186,-0.073550,1.460425,1.503521,-0.029566,1.471009,1.521324,-0.027416,1.554406,1.259884,-0.133269,1.541356,1.347356,-0.119799,1.543513,1.268325,-0.109110,1.530550,1.351090,-0.099211,1.523807,1.426512,-0.102946,1.562168,1.168709,-0.126431,1.552336,1.180900,-0.110937,1.528186,1.278185,-0.108576,1.538519,1.190199,-0.111797,1.492793,1.367917,-0.097865,1.515008,1.356926,-0.094863,1.470373,1.394735,-0.092393,1.397285,1.618705,0.075921,1.412925,1.620773,0.090457,1.423908,1.585146,0.055113,1.401184,1.646247,0.106316,1.404723,1.650903,0.121217,1.420483,1.669828,0.124206,1.427737,1.637016,0.090235,1.438172,1.602910,0.054609,1.549079,1.507365,-0.143443,1.523204,1.496961,-0.104214,1.504855,1.552953,-0.069037,1.531148,1.570119,-0.110327,1.508294,1.487023,-0.073042,1.490923,1.536464,-0.037012,1.538767,1.712123,-0.082712,1.502420,1.685968,-0.032767,1.494600,1.730720,0.011833,1.529810,1.764692,-0.038728,1.475715,1.654283,0.010529,1.467576,1.691305,0.051459,1.588366,1.726280,-0.126839,1.580841,1.778787,-0.081735,1.593591,1.671165,-0.167706,1.550240,1.651743,-0.123057,1.513723,1.629699,-0.072682,1.488143,1.606419,-0.029373,1.454553,1.626131,0.039378,1.445077,1.660432,0.076645,1.438086,1.693725,0.114629,1.468353,1.585083,0.000611,1.452311,1.564274,0.015723,1.440908,1.545606,0.014201,1.400072,1.703230,0.116059,1.397221,1.667156,0.108148,1.397757,1.632406,0.062754,1.403394,1.666359,0.053975,1.419052,1.722036,0.010546,1.413605,1.702699,0.057325,1.414243,1.787699,0.090915,1.407744,1.733453,0.099599,1.340290,1.444749,0.457711,1.331994,1.451205,0.475719,1.328078,1.476046,0.491942,1.374848,1.456893,0.410393,1.354412,1.449641,0.435320,1.398411,1.463492,0.384033,1.401038,1.522148,0.395070,1.409918,1.586491,0.396834,1.397885,1.772210,0.217103,1.399131,1.747279,0.200109,1.397656,1.740671,0.173136,1.402883,1.768677,0.186303,1.407169,1.721643,0.179252,1.395402,1.712138,0.154648,1.399374,1.738232,0.146036,1.405386,1.759966,0.159465,1.414718,1.697454,0.153825,1.429749,1.720766,0.149554,1.419374,1.744445,0.181452,1.396618,1.680496,0.140045,1.422638,1.785941,0.215419,1.445576,1.812761,0.205768,1.403715,1.789952,0.263754,1.427149,1.809831,0.255629,1.408467,1.764373,0.212834,1.399639,1.780411,0.240388,1.397332,1.793382,0.234700,1.403051,1.795494,0.189089,1.398209,1.835990,0.178176,1.405772,1.771172,0.142577,1.288748,1.186601,0.560537,1.288246,1.222373,0.607852,1.306651,1.360186,0.550681,1.306996,1.426799,0.599909,1.329800,1.537817,0.516472,1.329437,1.624426,0.575781,1.227889,0.722958,0.328945,1.211263,0.724478,0.323872,1.219535,0.699420,0.363872,1.231652,0.685524,0.394329,1.182052,0.710623,0.375496,1.194004,0.739125,0.443338,1.180393,0.684380,0.445391,1.190488,0.708118,0.298051,1.211011,0.725315,0.228728,1.233140,0.747952,0.193179,1.397339,1.917959,0.153462,1.423267,1.867621,0.032499,1.432790,1.772024,-0.073765,1.406724,1.747866,0.128996,1.414607,1.790823,0.303257,1.396376,1.777247,0.316323,1.391784,1.789883,0.285601,1.385765,1.775161,0.318257,1.394687,1.790149,0.256993,-1.552934,1.791564,0.282433,-1.539512,1.738807,0.384745,-1.536689,1.818190,0.404440,-1.551821,1.887860,0.302115,-1.525994,1.650370,0.451122,-1.522135,1.709079,0.475775,-1.522011,1.806255,0.517189,-1.540733,1.933380,0.435458,-1.561580,1.723324,0.326327,-1.562882,1.694924,0.348921,-1.546178,1.634074,0.386309,-1.542424,1.662567,0.388532,-1.570365,1.673858,0.355600,-1.554266,1.608312,0.379530,-1.543049,1.531955,0.388766,-1.537266,1.542062,0.401657,-1.534427,1.564415,0.414892,-1.555613,1.740111,0.323785,-1.539946,1.693457,0.387672,-1.530554,1.604343,0.431938,-1.817718,1.657835,-0.080655,-1.829256,1.618235,-0.113731,-1.824793,1.632191,-0.129276,-1.814189,1.674763,-0.097219,-1.841184,1.568561,-0.139810,-1.835848,1.581905,-0.154116,-1.841620,1.523655,-0.167364,-1.846318,1.508764,-0.155271,-1.867510,1.425515,-0.133942,-1.848881,1.430431,-0.139793,-1.854282,1.498338,-0.138202,-1.869077,1.494335,-0.133610,-1.848065,1.556112,-0.125120,-1.865111,1.551675,-0.121397,-1.840779,1.451057,-0.240951,-1.871586,1.445436,-0.227279,-1.872592,1.538930,-0.222558,-1.838063,1.546721,-0.233987,-1.889238,1.439882,-0.204421,-1.890631,1.527984,-0.201729,-1.889314,1.597257,-0.187473,-1.870013,1.614297,-0.208072,-1.831612,1.623316,-0.216379,-1.895628,1.580834,-0.168041,-1.889641,1.632652,-0.145038,-1.884293,1.652592,-0.163387,-1.893766,1.566192,-0.149708,-1.886397,1.615549,-0.125776,-1.873440,1.655915,-0.091540,-1.878046,1.677243,-0.112131,-1.874901,1.701167,-0.129710,-1.838625,1.265088,-0.097381,-1.855293,1.348472,-0.120011,-1.870979,1.345761,-0.129801,-1.853533,1.261469,-0.106593,-1.884294,1.425029,-0.143840,-1.894027,1.429579,-0.163080,-1.880201,1.345371,-0.144627,-1.863533,1.259354,-0.121302,-1.881986,1.346135,-0.166459,-1.865201,1.256899,-0.141330,-1.895201,1.434931,-0.183935,-1.876023,1.347585,-0.189220,-1.859958,1.255097,-0.162105,-1.887015,1.497948,-0.143350,-1.898847,1.507252,-0.162185,-1.883404,1.555572,-0.130622,-1.897520,1.517479,-0.182520,-1.864916,1.673148,-0.180648,-1.824106,1.687362,-0.187372,-1.856171,1.727010,-0.145867,-1.811403,1.743602,-0.147683,-1.840079,1.774778,-0.101183,-1.793408,1.788362,-0.097398,-1.862481,1.747024,-0.089993,-1.842576,1.783658,-0.038133,-1.819990,1.811702,-0.044592,-1.775467,1.823287,-0.040486,-1.862290,1.719136,-0.075037,-1.857883,1.693676,-0.055228,-1.839308,1.721375,-0.013219,-1.845283,1.751742,-0.027487,-1.785683,1.717847,-0.002195,-1.786035,1.735251,-0.013844,-1.760578,1.747351,0.040594,-1.761980,1.740138,0.051753,-1.731836,1.758563,0.090689,-1.726108,1.755214,0.116327,-1.743743,1.739367,0.110035,-1.768358,1.723334,0.055173,-1.759453,1.734607,0.109448,-1.781289,1.716282,0.053483,-1.802059,1.693079,0.004346,-1.790532,1.699753,0.005280,-1.821451,1.666927,-0.031978,-1.809287,1.673831,-0.034216,-1.838104,1.635283,-0.064278,-1.822840,1.641830,-0.067541,-1.805043,1.691894,-0.045791,-1.821197,1.699363,-0.001211,-1.797293,1.725070,0.049467,-1.814319,1.745389,0.043330,-1.774026,1.748418,0.107520,-1.789046,1.769728,0.105593,-1.857435,1.640998,-0.073426,-1.840033,1.674489,-0.039320,-1.873105,1.602597,-0.106021,-1.853476,1.597782,-0.095997,-1.835220,1.604040,-0.099447,-1.804467,1.710713,-0.061919,-1.763465,1.442969,-0.189337,-1.799103,1.450362,-0.224641,-1.793564,1.541509,-0.213368,-1.758755,1.529222,-0.176217,-1.783173,1.615457,-0.191260,-1.742378,1.597922,-0.149276,-1.714462,1.429813,-0.127537,-1.721039,1.350163,-0.136046,-1.749319,1.351613,-0.152281,-1.745446,1.436561,-0.149652,-1.732351,1.268787,-0.129753,-1.751871,1.265592,-0.140863,-1.763992,1.261785,-0.168010,-1.765956,1.352538,-0.186407,-1.734897,1.181269,-0.117017,-1.746333,1.173583,-0.122773,-1.727734,1.091140,-0.085942,-1.735678,1.082021,-0.084593,-1.743224,1.067859,-0.099271,-1.759711,1.165255,-0.138768,-1.748544,0.951108,0.076181,-1.746587,0.967962,0.070740,-1.772373,1.021256,0.021674,-1.780463,1.012445,0.019501,-1.789747,1.094041,-0.028033,-1.801313,1.090431,-0.030353,-1.653321,1.815611,0.117642,-1.667067,1.803750,0.063020,-1.707922,1.836442,0.037755,-1.688018,1.846987,0.100358,-1.679713,1.782094,0.010633,-1.725119,1.813026,-0.020622,-1.755248,1.849324,0.023159,-1.731014,1.862722,0.092175,-1.707249,1.764316,0.134794,-1.693849,1.756406,0.158491,-1.670564,1.733181,0.201974,-1.698200,1.747257,0.168131,-1.680486,1.751801,0.173639,-1.661557,1.742172,0.203173,-1.698678,0.872493,0.173694,-1.715464,0.904637,0.126100,-1.726286,0.877747,0.130387,-1.714654,0.835882,0.179466,-1.754767,0.933469,0.076172,-1.761561,0.914626,0.069978,-1.738799,0.852458,0.129040,-1.727378,0.800218,0.177263,-1.673314,1.000318,0.205705,-1.655824,1.025920,0.216245,-1.683209,0.976206,0.186939,-1.666787,0.954059,0.216410,-1.659337,0.985367,0.242683,-1.638685,1.016169,0.254575,-1.627016,1.781948,0.138567,-1.639839,1.762354,0.092408,-1.606635,1.753046,0.154724,-1.620951,1.727957,0.116303,-1.639235,1.699245,0.078086,-1.652856,1.738718,0.045512,-1.615251,0.971610,0.313510,-1.623933,0.994679,0.290254,-1.648568,0.959059,0.278948,-1.625491,0.927246,0.309715,-1.657136,0.915101,0.246139,-1.638589,0.849946,0.281412,-1.643937,1.735697,0.290027,-1.617980,1.686037,0.317983,-1.604991,1.706693,0.322876,-1.631591,1.753276,0.293127,-1.599824,1.624714,0.337612,-1.583069,1.650023,0.351317,-1.593977,1.723191,0.322467,-1.616975,1.767046,0.293652,-1.533046,1.530329,0.276474,-1.544815,1.550595,0.279215,-1.549189,1.561358,0.274526,-1.541531,1.550536,0.273635,-1.563171,1.580686,0.280587,-1.557652,1.588489,0.271763,-1.531748,1.525146,0.280259,-1.540593,1.538154,0.280520,-1.533437,1.520467,0.282431,-1.546611,1.542894,0.284291,-1.611850,1.048582,0.150662,-1.586446,1.044409,0.189040,-1.575604,1.037800,0.179208,-1.595756,1.053822,0.136908,-1.560503,1.047446,0.224765,-1.551043,1.034609,0.216746,-1.529907,1.027081,0.215517,-1.551370,1.048714,0.178151,-1.577160,1.085499,0.134059,-1.577204,1.759285,0.298714,-1.583306,1.739104,0.313869,-1.587063,1.780908,0.280812,-1.602189,1.776579,0.290060,-1.521005,1.037022,0.282239,-1.515465,1.026465,0.271800,-1.530630,1.033650,0.247338,-1.539942,1.046864,0.256034,-1.510529,1.017366,0.264216,-1.517877,1.022443,0.246377,-1.507935,1.418214,0.242804,-1.509711,1.393070,0.218339,-1.517713,1.373032,0.216725,-1.514452,1.398433,0.241263,-1.514749,1.375999,0.200687,-1.519958,1.358449,0.197100,-1.529415,1.335692,0.191350,-1.531031,1.354066,0.215747,-1.531204,1.379376,0.236555,-1.515096,1.497562,0.272408,-1.515516,1.501312,0.270012,-1.512086,1.487920,0.258792,-1.507653,1.482298,0.258496,-1.521525,1.507360,0.269294,-1.518936,1.493652,0.259670,-1.521859,1.485941,0.235911,-1.512913,1.480544,0.234892,-1.506870,1.471518,0.238142,-1.525663,1.520362,0.274153,-1.523067,1.511684,0.276038,-1.524918,1.512958,0.278882,-1.520867,1.509077,0.277468,-1.504761,1.446923,0.241304,-1.506406,1.465774,0.259219,-1.506117,1.474470,0.258479,-1.505304,1.459909,0.239132,-1.511491,1.479701,0.269412,-1.510817,1.487313,0.271118,-1.517599,1.490213,0.276889,-1.516494,1.499073,0.276633,-1.522087,1.498989,0.278542,-1.524364,1.507028,0.281704,-1.514905,1.440725,0.262382,-1.509001,1.455283,0.260756,-1.505236,1.434088,0.242103,-1.524300,1.459157,0.275288,-1.515846,1.470418,0.272565,-1.542834,1.490114,0.285456,-1.528058,1.495819,0.283863,-1.521598,1.483401,0.279877,-1.533776,1.475017,0.282190,-1.571674,1.519758,0.348841,-1.591627,1.517320,0.323540,-1.584992,1.483600,0.317463,-1.568155,1.477420,0.343100,-1.595625,1.520181,0.303284,-1.585434,1.493403,0.297102,-1.575087,1.469952,0.290616,-1.576840,1.454213,0.308180,-1.565722,1.439382,0.328270,-1.612543,1.604835,0.320683,-1.599310,1.557593,0.326094,-1.582801,1.567677,0.347935,-1.616944,1.591367,0.305046,-1.605454,1.553179,0.306651,-1.619919,1.810247,0.259563,-1.642995,1.807749,0.259246,-1.598136,1.799489,0.258600,-1.614520,1.816332,0.217671,-1.641680,1.834750,0.214231,-1.671660,1.839993,0.215051,-1.662334,1.794710,0.258412,-1.676046,1.775181,0.255764,-1.696483,1.828699,0.215434,-1.711598,1.807842,0.214728,-1.665331,1.846983,0.159409,-1.702518,1.858590,0.157689,-1.635550,1.820383,0.170230,-1.755579,1.771483,0.166285,-1.758067,1.800000,0.163959,-1.792216,1.797791,0.099805,-1.718711,1.753522,0.213627,-1.719264,1.781769,0.215039,-1.752546,1.827127,0.161736,-1.788634,1.826517,0.095667,-1.818558,1.774673,0.034471,-1.817123,1.808684,0.026887,-1.797286,1.838552,0.021238,-1.769351,1.851768,0.092815,-1.734172,1.849385,0.159238,-1.684536,1.751159,0.253137,-1.684830,1.726686,0.248524,-1.654556,1.689264,0.275139,-1.652789,1.713583,0.284404,-1.536562,1.509780,0.286087,-1.546433,1.527121,0.287199,-1.555168,1.507832,0.287476,-1.570790,1.536135,0.289648,-1.554109,1.542057,0.284665,-1.569650,1.560018,0.286506,-1.630482,1.644094,0.257881,-1.615378,1.602625,0.278453,-1.629960,1.618830,0.281186,-1.649776,1.663900,0.264327,-1.609995,1.580513,0.285460,-1.615456,1.583884,0.291538,-1.634390,1.638278,0.292055,-1.591776,1.584188,0.283583,-1.593058,1.610520,0.276409,-1.595676,1.563902,0.288006,-1.682808,1.721014,0.199266,-1.712967,1.735154,0.159297,-1.695312,1.719534,0.201708,-1.727669,1.735412,0.160566,-1.742609,1.748601,0.163997,-1.710621,1.729594,0.209562,-1.596882,1.672760,0.248294,-1.623541,1.714899,0.228745,-1.609016,1.668770,0.252143,-1.639212,1.705606,0.229475,-1.621555,1.659788,0.251499,-1.597278,1.631609,0.267557,-1.583191,1.629321,0.268270,-1.572920,1.629494,0.261955,-1.652582,1.694023,0.228466,-1.663321,1.691782,0.231686,-1.676940,1.704472,0.238742,-1.630015,1.661263,0.305988,-1.602589,1.554466,0.293521,-1.587196,1.526401,0.292153,-1.573723,1.502128,0.287868,-1.561477,1.482154,0.284292,-1.565181,1.448943,0.281203,-1.569478,1.428301,0.293266,-1.554092,1.428445,0.269205,-1.561809,1.405923,0.275543,-1.554950,1.380611,0.290760,-1.562178,1.406851,0.309066,-1.540112,1.406194,0.254943,-1.553291,1.384121,0.257632,-1.548096,1.357644,0.240613,-1.547388,1.325839,0.249894,-1.549587,1.354370,0.273168,-1.550753,1.464173,0.279870,-1.538827,1.444729,0.273425,-1.524508,1.423625,0.261177,-1.543743,1.331650,0.217903,-1.541053,1.310936,0.190312,-1.547063,1.292334,0.193469,-1.546476,1.302263,0.219209,-1.627169,1.216331,0.035043,-1.628654,1.152292,0.051634,-1.601012,1.146764,0.073049,-1.592014,1.212842,0.054686,-1.622466,1.117634,0.070284,-1.604498,1.101385,0.090631,-1.573980,1.149370,0.115714,-1.560705,1.224705,0.111402,-1.616758,1.076476,0.101409,-1.637340,1.109472,0.073964,-1.659023,1.105790,0.086640,-1.635463,1.068435,0.115967,-1.715875,0.933663,0.112483,-1.692817,0.911115,0.155675,-1.690739,0.963063,0.167774,-1.679231,0.940988,0.179385,-1.674213,0.900386,0.201137,-1.681122,0.854420,0.220576,-1.824485,1.269535,-0.100525,-1.835958,1.354283,-0.125799,-1.823655,1.176999,-0.070976,-1.811133,1.178858,-0.070285,-1.624620,1.055771,0.165761,-1.655410,1.071656,0.133734,-1.685871,1.107925,0.107459,-1.708420,1.164072,0.087202,-1.681050,1.158256,0.060405,-1.694425,1.228774,0.039996,-1.722373,1.233675,0.064006,-1.516476,1.438506,0.160715,-1.510308,1.458338,0.206051,-1.514976,1.480676,0.192515,-1.530135,1.471975,0.141673,-1.529427,1.489339,0.191244,-1.556642,1.475894,0.153295,-1.618394,1.296635,0.041617,-1.652639,1.306003,0.036045,-1.659593,1.222683,0.029424,-1.598439,1.370291,0.070061,-1.638881,1.388871,0.068408,-1.660941,1.388684,0.080262,-1.685814,1.314333,0.042350,-1.512361,1.396449,0.185340,-1.506872,1.424055,0.215013,-1.509327,1.440033,0.213012,-1.513910,1.413060,0.176035,-1.506540,1.409676,0.217109,-1.512189,1.383641,0.194213,-1.520279,1.357605,0.178466,-1.527763,1.325821,0.163935,-1.520271,1.366561,0.160709,-1.533258,1.326949,0.133300,-1.524848,1.383447,0.141024,-1.555152,1.341334,0.098347,-1.540897,1.412968,0.114932,-1.579387,1.443746,0.098182,-1.605481,1.439199,0.117439,-1.534106,1.534798,0.270563,-1.530526,1.517452,0.267065,-1.529950,1.500133,0.259711,-1.535311,1.484882,0.242325,-1.549361,1.476508,0.209619,-1.579555,1.457896,0.177865,-1.628497,1.430084,0.136666,-1.682870,1.389727,0.088687,-1.713612,1.314114,0.057911,-1.655072,1.154653,0.046266,-1.553850,1.282789,0.108046,-1.581187,1.285745,0.063455,-1.548107,1.269264,0.165077,-1.541888,1.294043,0.154404,-1.534402,1.270210,0.205170,-1.519882,1.297181,0.246711,-1.533937,1.230067,0.183572,-1.499424,1.265127,0.250444,-1.515387,0.800129,0.428054,-1.505336,0.784934,0.436062,-1.494614,0.800280,0.443448,-1.510245,0.819224,0.428676,-1.496462,0.771291,0.440560,-1.484409,0.773788,0.447656,-1.468136,0.785752,0.453598,-1.484782,0.821403,0.449783,-1.500794,0.855043,0.429216,-1.552595,0.787784,0.392646,-1.529927,0.796339,0.414436,-1.529718,0.823543,0.407022,-1.552938,0.819085,0.378860,-1.520798,0.856195,0.397344,-1.544731,0.855790,0.364366,-1.520897,0.731722,0.419807,-1.505000,0.753261,0.433574,-1.520205,0.771774,0.424136,-1.540131,0.757300,0.407331,-1.556894,0.692857,0.386884,-1.541587,0.709211,0.401986,-1.562696,0.738691,0.388472,-1.582557,0.713436,0.372585,-1.578071,0.774656,0.367506,-1.602637,0.751777,0.345692,-1.582924,0.810376,0.346805,-1.617125,0.791096,0.318864,-1.584857,0.855449,0.333329,-1.543947,0.905038,0.358757,-1.585576,0.913655,0.335621,-1.542673,0.962752,0.349554,-1.583863,0.967345,0.328029,-1.513875,0.895912,0.386058,-1.499745,0.897397,0.415947,-1.504520,0.931617,0.411598,-1.514749,0.937494,0.382174,-1.476529,0.917973,0.460264,-1.479175,0.937599,0.449466,-1.487819,0.911646,0.436648,-1.485771,0.882755,0.447695,-1.482034,0.950066,0.441136,-1.490469,0.938151,0.429876,-1.454097,0.806117,0.460274,-1.474804,0.848677,0.460088,-1.442581,0.841339,0.469357,-1.467324,0.889348,0.470406,-1.497909,1.014861,0.253133,-1.504129,1.039208,0.230179,-1.497439,1.004815,0.272704,-1.476200,0.994443,0.283875,-1.474541,1.014438,0.270544,-1.475178,1.058810,0.260163,-1.523765,1.072066,0.202043,-1.545347,1.113006,0.179061,-1.493856,1.100504,0.232455,-1.509175,1.142992,0.218906,-1.548184,1.170700,0.175360,-1.510260,1.197682,0.223665,-1.470397,1.026405,0.474524,-1.470544,0.966044,0.469272,-1.464570,0.950609,0.482272,-1.467568,1.028421,0.489540,-1.453650,0.932249,0.495759,-1.464514,1.033778,0.508964,-1.532826,1.183199,0.405754,-1.549698,1.214615,0.395749,-1.559251,1.204335,0.381855,-1.545803,1.168339,0.390371,-1.551975,1.235182,0.392236,-1.559146,1.236405,0.380467,-1.563818,1.238013,0.365301,-1.564105,1.200659,0.367644,-1.550616,1.162262,0.378945,-1.528936,1.232596,0.413094,-1.542093,1.233140,0.401762,-1.528656,1.267945,0.405973,-1.542702,1.250642,0.397906,-1.519664,1.394204,0.371378,-1.523544,1.333711,0.375947,-1.519554,1.324985,0.398371,-1.516474,1.381345,0.406172,-1.533659,1.296423,0.372490,-1.532131,1.288215,0.390093,-1.515711,1.294448,0.417243,-1.506197,1.344072,0.435550,-1.479148,1.295828,0.301135,-1.482250,1.300763,0.307254,-1.485336,1.303258,0.299792,-1.483048,1.290987,0.286172,-1.485772,1.300310,0.316423,-1.491495,1.306247,0.317702,-1.502706,1.325032,0.328105,-1.490388,1.311260,0.286893,-1.516789,1.330667,0.279783,-1.526919,1.357501,0.307282,-1.540429,1.384874,0.327313,-1.545949,1.422243,0.347743,-1.513004,1.359601,0.346237,-1.485484,1.290968,0.322119,-1.496299,1.290129,0.324872,-1.484868,1.273933,0.323698,-1.503984,1.263645,0.321062,-1.520661,1.257044,0.321084,-1.511189,1.288497,0.327205,-1.537929,1.249544,0.325705,-1.527035,1.281148,0.331112,-1.553775,1.243467,0.335361,-1.540577,1.274485,0.339451,-1.531989,1.292424,0.345740,-1.521797,1.305864,0.341530,-1.548601,1.271570,0.351783,-1.533462,1.296305,0.357051,-1.563217,1.240535,0.349317,-1.549756,1.268737,0.367107,-1.522958,1.324535,0.357453,-1.547429,1.263153,0.384152,-1.563504,1.199954,0.354152,-1.550330,1.159360,0.368634,-1.556891,1.202439,0.341016,-1.546920,1.159352,0.357419,-1.462708,0.981305,0.351106,-1.462706,1.000021,0.360964,-1.454449,1.008808,0.351083,-1.453188,0.988601,0.337630,-1.471663,1.025101,0.361936,-1.463063,1.034396,0.355048,-1.451999,1.047668,0.351044,-1.444597,1.021178,0.343998,-1.441577,0.998231,0.324363,-1.498717,1.234384,0.322096,-1.515180,1.225580,0.321718,-1.503138,1.190792,0.335512,-1.518665,1.180015,0.335661,-1.530231,1.170572,0.339696,-1.530891,1.215697,0.324905,-1.539214,1.162746,0.347734,-1.545445,1.207412,0.330521,-1.526814,1.081708,0.361363,-1.539099,1.119827,0.359595,-1.530284,1.122508,0.348143,-1.515070,1.083125,0.348007,-1.518532,1.128956,0.341792,-1.503427,1.090276,0.339480,-1.496623,1.149077,0.344909,-1.508988,1.137936,0.342050,-1.483745,1.113030,0.340585,-1.494000,1.100327,0.337784,-1.486704,1.055544,0.354030,-1.476907,1.065706,0.349429,-1.465875,1.078810,0.347225,-1.501074,1.010000,0.290438,-1.483060,0.991794,0.304359,-1.504913,1.016274,0.304103,-1.490564,0.993327,0.321162,-1.463967,0.980143,0.318425,-1.452092,0.988399,0.300504,-1.477165,0.977642,0.335058,-1.527152,1.041125,0.293424,-1.510259,1.018206,0.314973,-1.533974,1.039795,0.304306,-1.521163,1.017832,0.321820,-1.505250,0.987587,0.340004,-1.497449,0.991715,0.332862,-1.493744,0.977560,0.391187,-1.494962,0.969322,0.363176,-1.506324,0.960381,0.374332,-1.502615,0.959008,0.402926,-1.519380,0.981069,0.345821,-1.581574,1.048940,0.265139,-1.552020,1.043427,0.291615,-1.548125,1.053170,0.269478,-1.571097,1.056144,0.239105,-1.592996,1.012260,0.301885,-1.611848,1.037938,0.262079,-1.563234,1.016814,0.313997,-1.633595,1.043584,0.219655,-1.611103,1.052108,0.214784,-1.596733,1.052622,0.202419,-1.539468,1.017775,0.321408,-1.485031,0.972781,0.349182,-1.474040,0.976103,0.367853,-1.489849,1.029368,0.438218,-1.483063,0.977939,0.441145,-1.474997,0.976584,0.455911,-1.476388,1.029250,0.458481,-1.496676,0.967394,0.425005,-1.500789,0.994051,0.417255,-1.522980,1.125186,0.409966,-1.504004,1.115252,0.425276,-1.508972,1.177421,0.425818,-1.523356,1.073763,0.412151,-1.508605,1.056389,0.424633,-1.490158,1.101617,0.442433,-1.493886,1.171827,0.443268,-1.533040,1.087502,0.396531,-1.521049,1.063100,0.386566,-1.509566,1.041055,0.395917,-1.538171,1.098392,0.383908,-1.532982,1.088651,0.374859,-1.510632,1.050609,0.373461,-1.495561,1.024445,0.382201,-1.503810,1.017145,0.406935,-1.489689,0.999808,0.389443,-1.483253,1.019809,0.370776,-1.474050,0.995653,0.374050,-1.497943,1.049629,0.362443,-1.542021,1.123516,0.371983,-1.542805,1.127531,0.382187,-1.539634,1.127427,0.394387,-1.513669,1.239797,0.425467,-1.502152,1.247161,0.443010,-1.493306,1.236551,0.462934,-1.501100,1.338722,0.462755,-1.485169,1.161481,0.460485,-1.485335,1.149210,0.473915,-1.485780,1.198492,0.479490,-1.496211,1.305350,0.494348,-1.475981,1.094482,0.475018,-1.480456,1.092883,0.460001,-1.475944,1.117209,0.488690,-1.479481,1.154670,0.509913,-1.445141,0.913312,0.515366,-1.464633,1.038602,0.538671,-1.425656,0.815387,0.475150,-1.417544,0.763794,0.488489,-1.442588,0.883097,0.546290,-1.468988,1.039880,0.584625,-1.590466,0.965264,-0.002439,-1.616434,0.992170,-0.037024,-1.607134,1.042707,-0.064995,-1.580953,1.008000,-0.037377,-1.641919,1.012366,-0.055285,-1.638744,1.055493,-0.082212,-1.639774,1.127393,-0.107608,-1.600383,1.118598,-0.092822,-1.565133,1.081810,-0.088328,-1.524845,0.863129,0.038563,-1.543810,0.845477,0.059415,-1.572386,0.887231,0.047007,-1.566702,0.911441,0.016371,-1.553893,0.835558,0.076997,-1.575753,0.859797,0.072893,-1.606431,0.891317,0.055840,-1.599613,0.925823,0.024727,-1.672192,0.974069,-0.028622,-1.652369,0.994206,-0.049153,-1.629315,0.957312,-0.011564,-1.641257,0.927396,0.018362,-1.666452,1.050356,-0.083978,-1.673408,1.124838,-0.110112,-1.693321,1.037107,-0.070949,-1.701672,1.115453,-0.103129,-1.707751,1.022982,-0.054496,-1.719707,1.104154,-0.092224,-1.680344,0.954796,-0.004113,-1.681457,0.933298,0.011261,-1.711833,1.007380,-0.045440,-1.646271,0.898885,0.047791,-1.608034,0.856379,0.085993,-1.601582,0.817727,0.121327,-1.649271,0.868547,0.069372,-1.474214,0.787048,0.213007,-1.471733,0.771135,0.244518,-1.490849,0.772635,0.231835,-1.487016,0.794010,0.195163,-1.469437,0.751597,0.269702,-1.486547,0.748721,0.268897,-1.511396,0.744010,0.253095,-1.515051,0.774884,0.208317,-1.517783,0.801511,0.158406,-1.535219,0.745175,0.229350,-1.542379,0.780011,0.187142,-1.550719,0.751866,0.208589,-1.568172,0.779723,0.174474,-1.558615,0.806261,0.141379,-1.454566,0.807094,0.158190,-1.478578,0.827411,0.129202,-1.486729,0.858234,0.078533,-1.470254,0.857831,0.076523,-1.490917,0.832296,0.117193,-1.496815,0.847072,0.082685,-1.506105,0.888188,0.025808,-1.490067,0.908379,0.014284,-1.427256,0.774605,0.152460,-1.438824,0.823987,0.062348,-1.462545,0.888283,-0.023998,-1.478956,0.809896,0.166622,-1.465691,0.793589,0.196771,-1.496125,0.818118,0.136025,-1.435796,0.731683,0.303095,-1.456413,0.742416,0.282566,-1.458945,0.766801,0.244321,-1.444586,0.759682,0.234867,-1.474980,0.726032,0.290536,-1.500805,0.712901,0.277611,-1.461860,0.709942,0.317122,-1.491336,0.691255,0.301745,-1.560055,0.698241,0.229525,-1.556940,0.727220,0.219253,-1.531583,0.710148,0.252885,-1.525513,0.685906,0.271312,-1.715278,0.990783,-0.044666,-1.684546,0.910426,0.015803,-1.694081,0.886785,0.011062,-1.722314,0.972751,-0.053659,-1.662748,0.817533,0.074897,-1.677647,0.800778,0.077728,-1.711173,0.868441,0.008835,-1.625771,0.765399,0.126127,-1.638793,0.742569,0.129176,-1.658019,0.730661,0.135182,-1.697837,0.792276,0.084021,-1.735346,0.859176,0.013795,-1.655017,0.840756,0.075278,-1.617845,0.792862,0.126159,-1.746572,0.953494,-0.060463,-1.767923,1.054387,-0.113205,-1.772896,0.946301,-0.056566,-1.797101,1.049459,-0.110648,-1.785151,1.156658,-0.155582,-1.791040,1.257211,-0.186706,-1.815450,1.154122,-0.153800,-1.823041,1.254607,-0.190223,-1.798564,1.353421,-0.212961,-1.833327,1.351471,-0.222290,-1.845927,1.253641,-0.179993,-1.859801,1.349081,-0.210833,-1.824735,1.057940,-0.079999,-1.844608,1.158617,-0.125148,-1.833825,1.155383,-0.141923,-1.816314,1.051202,-0.096961,-1.743165,0.829160,0.122737,-1.722779,0.767663,0.168001,-1.765532,0.895763,0.059125,-1.765402,0.876950,0.044610,-1.735752,0.808707,0.110328,-1.704186,0.743724,0.155100,-1.823533,1.075818,-0.044731,-1.847472,1.168260,-0.090193,-1.850186,1.163343,-0.105938,-1.828205,1.066268,-0.061081,-1.838185,1.172834,-0.078115,-1.813425,1.083427,-0.035984,-1.790640,1.000886,0.015013,-1.800799,0.987020,0.005074,-1.807140,0.971166,-0.011228,-1.804660,0.956769,-0.029487,-1.792611,0.948018,-0.044881,-1.754980,0.863201,0.027453,-1.680577,0.731853,0.144468,-1.718769,0.795212,0.095977,-1.625607,0.686023,0.322774,-1.590757,0.663981,0.332625,-1.587526,0.681243,0.356182,-1.622483,0.715350,0.334375,-1.536291,0.656787,0.352529,-1.546559,0.672210,0.375112,-1.569054,0.658059,0.248761,-1.561789,0.674915,0.240877,-1.521073,0.666983,0.290524,-1.525353,0.651237,0.301586,-1.479571,0.676548,0.328728,-1.483728,0.661193,0.346123,-1.435910,0.759693,0.441388,-1.418510,0.773525,0.427109,-1.460460,0.748836,0.442642,-1.468739,0.714052,0.421459,-1.437003,0.720862,0.417586,-1.416396,0.743195,0.394613,-1.517902,0.690848,0.399570,-1.496646,0.717190,0.422910,-1.493727,0.683611,0.393569,-1.484559,0.745692,0.439276,-1.699228,0.808059,0.224352,-1.707956,0.762979,0.220217,-1.683548,0.730902,0.264261,-1.672548,0.784569,0.267175,-1.652959,0.703483,0.301875,-1.645825,0.752104,0.305202,-1.619674,0.664823,0.252892,-1.659363,0.687321,0.258495,-1.693724,0.721622,0.212269,-1.663546,0.695806,0.203787,-1.619765,0.666700,0.299268,-1.575784,0.648308,0.301826,-1.588996,0.655127,0.252023,-1.543705,0.643962,0.305884,-1.504664,0.654424,0.353162,-1.636122,0.683991,0.197511,-1.614363,0.685303,0.191905,-1.591999,0.728752,0.180212,-1.600291,0.700901,0.185946,-1.583035,0.760018,0.176255,-1.571912,0.830591,0.102194,-1.539611,0.815424,0.106488,-1.513070,0.827223,0.096411,-1.551774,0.935952,-0.018749,-1.524939,0.971319,-0.045813,-1.492928,0.990734,-0.081313,-1.525785,1.102405,-0.131081,-1.583295,1.366335,-0.100244,-1.605091,1.438874,-0.069354,-1.588477,1.512959,-0.046263,-1.581292,1.506519,-0.095609,-1.616495,1.480595,-0.053295,-1.600741,1.527899,-0.019461,-1.586541,1.572303,0.021048,-1.577176,1.580614,-0.001158,-1.574560,1.623981,-0.035607,-1.606645,1.216932,-0.107548,-1.570507,1.221375,-0.097079,-1.644013,1.212849,-0.116233,-1.639739,1.293900,-0.106197,-1.611629,1.314003,-0.096184,-1.546758,1.229680,-0.154984,-1.565417,1.371016,-0.179505,-1.577387,1.522196,-0.188298,-1.580241,1.663184,-0.136352,-1.631485,1.436633,-0.072598,-1.642917,1.461569,-0.072224,-1.625678,1.505941,-0.045096,-1.641081,1.405817,-0.084605,-1.651760,1.412548,-0.091216,-1.666872,1.419348,-0.101363,-1.659162,1.477370,-0.078392,-1.640329,1.523926,-0.047368,-1.674586,1.351099,-0.112753,-1.695868,1.350023,-0.123488,-1.688082,1.424130,-0.112121,-1.691559,1.277740,-0.114018,-1.712481,1.273085,-0.122400,-1.700225,1.199683,-0.116053,-1.720106,1.190887,-0.114726,-1.674160,1.206546,-0.119122,-1.666449,1.283693,-0.110064,-1.657135,1.353329,-0.100619,-1.639038,1.362211,-0.092455,-1.621088,1.389187,-0.081455,-1.601433,1.648118,0.102962,-1.584508,1.632133,0.099969,-1.594905,1.607799,0.069987,-1.610561,1.622214,0.069550,-1.583099,1.629735,0.084583,-1.579372,1.606332,0.059060,-1.602965,1.578867,0.032212,-1.618241,1.594030,0.031407,-1.696733,1.555774,-0.072653,-1.712091,1.500855,-0.105759,-1.738376,1.515515,-0.135971,-1.719040,1.577049,-0.106526,-1.681238,1.488871,-0.089526,-1.663437,1.538615,-0.056145,-1.651624,1.670582,0.037798,-1.663790,1.709748,0.002005,-1.662542,1.637396,-0.000123,-1.676776,1.671771,-0.036993,-1.708416,1.707554,-0.078878,-1.692895,1.752170,-0.037386,-1.739106,1.780794,-0.074398,-1.756207,1.735603,-0.121147,-1.771846,1.679316,-0.159650,-1.724776,1.655225,-0.115912,-1.676202,1.597901,-0.036840,-1.694969,1.626129,-0.072731,-1.630632,1.642791,0.059534,-1.618886,1.670613,0.095756,-1.638908,1.611833,0.021358,-1.625881,1.561511,-0.008773,-1.647088,1.577942,-0.018536,-1.611219,1.545528,-0.009323,-1.571488,1.621901,0.048949,-1.570919,1.649009,0.090688,-1.565177,1.690666,0.097466,-1.570075,1.657395,0.041640,-1.573737,1.778649,0.084941,-1.573905,1.721498,0.007947,-1.572334,1.697518,0.047170,-1.567216,1.725981,0.084757,-1.518173,1.470182,0.453116,-1.515713,1.495767,0.480338,-1.520887,1.457196,0.431685,-1.526401,1.458235,0.409679,-1.532593,1.464427,0.386290,-1.553190,1.525143,0.371946,-1.546957,1.471882,0.366429,-1.566845,1.585565,0.367294,-1.566187,1.697409,0.133626,-1.564398,1.728759,0.153892,-1.563837,1.729521,0.129708,-1.577314,1.707484,0.156334,-1.566247,1.735111,0.177539,-1.565478,1.756722,0.198500,-1.564023,1.756533,0.169690,-1.568825,1.749779,0.144472,-1.590512,1.728971,0.160882,-1.604139,1.700443,0.129690,-1.588754,1.678769,0.130958,-1.572776,1.662214,0.117130,-1.594112,1.791996,0.226960,-1.610614,1.793607,0.182331,-1.574793,1.772539,0.237164,-1.591132,1.768677,0.191465,-1.569697,1.761574,0.218753,-1.578944,1.748586,0.190087,-1.562818,1.780260,0.177463,-1.565987,1.762369,0.131032,-1.561209,1.775565,0.220794,-1.563554,1.818881,0.177043,-1.483602,1.189091,0.546137,-1.499529,1.362425,0.538799,-1.485525,1.225816,0.600221,-1.500550,1.427079,0.595064,-1.511984,1.547510,0.517862,-1.508173,1.629478,0.568574,-1.445878,0.702459,0.355269,-1.444132,0.694879,0.378567,-1.417328,0.734579,0.360730,-1.465956,0.683840,0.390077,-1.404406,0.750614,0.424653,-1.389941,0.719204,0.375492,-1.388596,0.689156,0.428253,-1.389238,0.713075,0.323281,-1.405506,0.720489,0.259679,-1.428867,0.745908,0.215321,-1.586387,1.858934,0.040875,-1.572172,1.901936,0.166474,-1.581699,1.779703,-0.058010,-1.569571,1.741477,0.114226,-1.580668,1.780084,0.267811,-1.570443,1.765946,0.284214,-1.561530,1.774407,0.265075,-1.560709,1.763667,0.291233,-1.564621,1.775949,0.237992,0.716940,1.642148,1.753558,0.699583,1.632977,1.776158,0.704610,1.631386,1.783390,0.720789,1.639138,1.759306,0.668917,1.621735,1.800637,0.674690,1.622912,1.810544,0.678375,1.619377,1.816795,0.708876,1.627078,1.788897,0.725659,1.632646,1.764053,0.315347,1.660696,1.854567,0.368560,1.654667,1.873085,0.369786,1.660059,1.859616,0.315527,1.668416,1.838998,0.429065,1.638513,1.890920,0.430284,1.642072,1.879338,0.431264,1.637947,1.865924,0.371604,1.661704,1.848223,0.317828,1.673371,1.828643,0.565783,1.617675,1.870463,0.497100,1.624539,1.888664,0.497482,1.614700,1.893235,0.566437,1.608708,1.874244,0.430681,1.629258,1.897335,0.434852,1.615847,1.899749,0.498779,1.602178,1.894093,0.566983,1.597006,1.875839,0.322779,1.649475,1.868119,0.373011,1.644338,1.883660,0.335053,1.637406,1.877669,0.380932,1.630759,1.890645,0.439885,1.600303,1.901245,0.501354,1.587499,1.893980,0.444145,1.582886,1.898112,0.504238,1.570694,1.890293,0.570253,1.567008,1.873182,0.568547,1.582967,1.876191,0.345953,1.625663,1.882976,0.388854,1.615657,1.894922,0.350192,1.613714,1.883756,0.394115,1.599417,1.894912,0.285699,1.634900,1.859587,0.313565,1.623395,1.871632,0.318275,1.628926,1.873043,0.303745,1.636950,1.865670,0.506092,1.553596,1.881897,0.570528,1.550985,1.863777,0.446387,1.565150,1.890377,0.446264,1.548914,1.879592,0.505935,1.537228,1.869664,0.569587,1.534105,1.851704,0.757085,1.614348,1.730951,0.764646,1.617691,1.719827,0.758253,1.629137,1.720684,0.749976,1.626497,1.731453,0.769266,1.620939,1.712894,0.765876,1.630853,1.711940,0.759808,1.645351,1.709958,0.752009,1.642336,1.718978,0.744821,1.639296,1.729819,0.787275,1.613601,1.692075,0.776020,1.617292,1.705581,0.771570,1.609432,1.712577,0.780030,1.603510,1.699216,0.763572,1.603657,1.724190,0.770468,1.595112,1.711689,0.741283,1.624759,1.746527,0.747636,1.611933,1.746467,0.736398,1.636560,1.744158,0.730073,1.622317,1.766862,0.734544,1.609266,1.767314,0.712354,1.617074,1.791994,0.680655,1.610744,1.820773,0.682877,1.599201,1.823352,0.716282,1.605699,1.794057,0.630819,1.607251,1.849269,0.631766,1.595714,1.852100,0.629654,1.615565,1.845381,0.683529,1.570986,1.816117,0.684275,1.585638,1.822733,0.632764,1.581808,1.851967,0.633057,1.566748,1.846917,0.718601,1.592175,1.791767,0.738890,1.595983,1.763645,0.719102,1.578719,1.783950,0.741488,1.583811,1.754084,0.752720,1.599422,1.740912,0.757705,1.588590,1.729771,0.792446,1.597813,1.680660,0.803472,1.611008,1.671376,0.779161,1.586905,1.693840,0.792178,1.575148,1.670670,0.809841,1.589000,1.655483,0.826353,1.606891,1.643043,0.763803,1.578335,1.713981,0.744430,1.571990,1.740208,0.747347,1.558781,1.721707,0.770694,1.565554,1.692515,0.719532,1.564932,1.771874,0.682562,1.555868,1.805520,0.680920,1.539751,1.791759,0.719477,1.550474,1.755841,0.632742,1.550429,1.837582,0.630192,1.534087,1.824323,0.563506,1.620363,1.861957,0.497232,1.626174,1.879265,0.561080,1.613218,1.849803,0.496398,1.618600,1.865909,0.625946,1.618370,1.837711,0.621466,1.613025,1.827396,0.731896,1.643515,1.740060,0.728180,1.648027,1.733701,0.740316,1.647495,1.725545,0.736297,1.654065,1.716473,0.747681,1.652806,1.713841,0.743607,1.663366,1.700987,0.755650,1.659448,1.703298,0.752161,1.674026,1.686422,0.782200,1.645337,1.693849,0.769453,1.647525,1.702025,0.775072,1.629715,1.702574,0.789378,1.626969,1.689329,0.850034,1.659617,1.640526,0.808479,1.639997,1.673808,0.813037,1.625607,1.667203,0.844865,1.627132,1.633209,0.763880,1.688550,1.671942,0.759435,1.687157,1.677911,0.763853,1.666788,1.696899,0.767622,1.667234,1.694943,0.287288,1.650788,1.855068,0.263643,1.654288,1.848855,0.277249,1.666834,1.842196,0.247084,1.676527,1.838023,0.279314,1.683502,1.818149,0.276829,1.677777,1.827853,0.254533,1.690399,1.815713,0.251074,1.686824,1.826279,0.245513,1.693532,1.819201,0.239801,1.690734,1.829545,0.246962,1.697208,1.825644,0.238757,1.692755,1.837852,0.230153,1.691927,1.845309,0.229209,1.688488,1.837188,0.204381,1.706778,1.846763,0.207007,1.694596,1.837767,0.219293,1.691159,1.838709,0.217760,1.698339,1.849202,0.220139,1.677149,1.839087,0.231657,1.676955,1.840725,0.346724,1.587779,1.876079,0.393571,1.566645,1.882832,0.395628,1.582757,1.890357,0.349840,1.601251,1.881498,0.267883,1.627151,1.855636,0.304665,1.606142,1.865756,0.309156,1.615693,1.869598,0.275219,1.632269,1.857383,0.239916,1.653750,1.845846,0.250001,1.655699,1.847241,-0.865737,1.632709,1.833356,-0.863017,1.639641,1.826588,-0.903270,1.633721,1.801525,-0.905673,1.625429,1.806194,-0.863259,1.638968,1.814263,-0.903522,1.635568,1.792395,-0.928039,1.638709,1.772382,-0.927710,1.634726,1.779301,-0.930503,1.625763,1.782897,-0.602882,1.666690,1.853102,-0.603436,1.671181,1.862630,-0.545644,1.688026,1.843933,-0.545211,1.686656,1.834668,-0.607089,1.662951,1.872867,-0.548856,1.680038,1.854874,-0.500329,1.692038,1.839048,-0.496869,1.699100,1.826966,-0.496725,1.700416,1.818143,-0.617877,1.634166,1.888216,-0.612141,1.650958,1.882551,-0.677223,1.636861,1.888461,-0.682005,1.620609,1.892153,-0.672296,1.648433,1.880230,-0.742489,1.641957,1.874367,-0.747241,1.630397,1.880332,-0.751722,1.614212,1.882395,-0.562819,1.651078,1.877751,-0.554749,1.667715,1.868033,-0.518929,1.665702,1.863677,-0.507795,1.680599,1.852721,-0.757977,1.580290,1.870808,-0.689960,1.587180,1.883424,-0.686874,1.604500,1.889684,-0.755426,1.598178,1.877311,-0.627880,1.600119,1.885406,-0.624186,1.617512,1.889327,-0.576510,1.617568,1.880330,-0.571368,1.633813,1.882712,-0.532645,1.639430,1.869623,-0.528897,1.651322,1.870361,-0.494279,1.657916,1.858789,-0.501201,1.661601,1.860697,-0.463328,1.673726,1.850152,-0.485701,1.673256,1.854482,-0.621628,1.565173,1.871406,-0.627070,1.582823,1.877753,-0.689417,1.568350,1.873710,-0.685294,1.548835,1.864664,-0.757186,1.559476,1.860680,-0.753610,1.537865,1.849816,-0.957307,1.635349,1.727453,-0.961894,1.625180,1.730323,-0.958619,1.623491,1.740262,-0.954603,1.634454,1.738746,-0.966758,1.619837,1.731557,-0.964039,1.615721,1.738367,-0.960288,1.611338,1.749707,-0.955515,1.621233,1.752831,-0.950545,1.631779,1.750988,-0.969959,1.612037,1.732261,-0.965295,1.605118,1.742620,-0.971461,1.618392,1.725749,-0.981454,1.619441,1.713029,-0.978142,1.610416,1.720184,-0.971766,1.600735,1.730850,-0.943972,1.629232,1.765752,-0.948468,1.618053,1.766616,-0.935078,1.614549,1.783903,-0.953362,1.607510,1.763615,-0.939342,1.603436,1.781003,-0.872307,1.607504,1.831236,-0.869293,1.621650,1.835552,-0.909809,1.614053,1.807027,-0.913507,1.601439,1.803247,-0.809170,1.639077,1.856908,-0.812916,1.628592,1.860001,-0.816367,1.614355,1.857877,-0.820191,1.598272,1.853158,-0.876488,1.591781,1.824734,-0.880637,1.575233,1.816601,-0.824095,1.579683,1.847028,-0.917215,1.588337,1.796591,-0.920226,1.575338,1.787042,-0.942430,1.592505,1.773847,-0.945800,1.582362,1.763704,-0.957157,1.598824,1.756389,-0.961854,1.591280,1.745457,-0.998862,1.590889,1.691383,-0.982141,1.596970,1.713856,-0.993253,1.609685,1.702539,-1.015519,1.608717,1.676885,-1.000263,1.621288,1.694293,-1.029521,1.627785,1.667892,-0.956760,1.558385,1.736690,-0.950305,1.572027,1.751234,-0.969021,1.584033,1.730649,-0.978584,1.574739,1.711071,-0.879420,1.538219,1.794011,-0.881406,1.557661,1.805511,-0.922559,1.561882,1.775989,-0.924633,1.545902,1.764220,-0.823805,1.558402,1.836284,-0.820429,1.536043,1.824819,-0.669327,1.648842,1.860511,-0.668325,1.653658,1.870385,-0.739167,1.642327,1.853950,-0.738345,1.646337,1.864625,-0.806095,1.641016,1.836186,-0.805432,1.644922,1.846038,-0.939813,1.637274,1.762159,-0.946706,1.639822,1.746195,-0.940902,1.641837,1.754676,-0.946724,1.646016,1.736837,-0.949079,1.643004,1.732206,-0.952049,1.645392,1.719645,-0.948228,1.652953,1.720255,-0.949473,1.660335,1.706647,-0.969220,1.626451,1.721933,-0.963055,1.635406,1.718951,-0.973597,1.635956,1.713075,-0.981461,1.627639,1.711066,-1.003071,1.632039,1.691362,-0.999390,1.638044,1.700468,-1.042647,1.666081,1.683877,-1.043025,1.647806,1.666849,-0.955385,1.649822,1.712339,-0.951706,1.667888,1.697400,-0.954154,1.670591,1.692593,-0.960347,1.650751,1.710971,-0.469675,1.686430,1.844171,-0.460057,1.697932,1.832143,-0.442496,1.687724,1.840865,-0.429227,1.699725,1.833850,-0.434145,1.708635,1.823594,-0.457531,1.705314,1.820076,-0.437512,1.714140,1.812423,-0.459166,1.709869,1.811512,-0.421649,1.709220,1.843840,-0.429609,1.709668,1.833289,-0.426707,1.710311,1.829454,-0.418471,1.707237,1.839946,-0.434539,1.716774,1.821123,-0.431385,1.717252,1.818360,-0.413728,1.699624,1.840021,-0.408490,1.708285,1.845281,-0.403740,1.700141,1.841521,-0.396538,1.711282,1.845240,-0.398312,1.719700,1.848016,-0.411097,1.712690,1.849589,-0.575109,1.602169,1.875182,-0.568523,1.587374,1.869089,-0.522716,1.616666,1.862742,-0.530052,1.628508,1.866438,-0.487365,1.652407,1.856851,-0.479188,1.644361,1.855191,-0.441907,1.667311,1.849864,-0.450805,1.672097,1.849153,-0.427415,1.687377,1.842516,-0.418372,1.685254,1.842117,0.351369,0.371176,1.930056,0.327835,0.396782,1.962826,0.327988,0.405392,1.964178,0.349112,0.388105,1.931878,0.315377,0.414918,2.000013,0.312694,0.415504,2.007033,0.322046,0.412105,1.973017,0.342142,0.404700,1.938002,0.291464,0.413875,2.015481,0.306487,0.413142,2.003875,0.322138,0.389941,1.967505,0.308992,0.385997,1.978648,0.348853,0.357899,1.933777,0.337621,0.348047,1.943867,0.308986,0.422762,2.031564,0.309625,0.422219,2.057150,0.306445,0.419568,2.062762,0.306226,0.419083,2.037977,0.319966,0.422770,2.095125,0.310208,0.418860,2.078537,0.316517,0.418327,2.072503,0.327818,0.418084,2.083360,0.317766,0.415793,2.069505,0.330706,0.411666,2.076125,0.257020,0.423146,2.103142,0.249693,0.428937,2.089604,0.217853,0.430216,2.112820,0.227062,0.423032,2.122040,0.247396,0.425504,2.055349,0.215839,0.430763,2.084175,0.169013,0.434367,2.107557,0.171729,0.435897,2.136177,0.183556,0.425361,2.146564,0.318509,0.399341,2.077655,0.327530,0.404656,2.074321,0.312454,0.413609,2.070654,0.301814,0.412731,2.077750,0.304847,0.422698,2.060949,0.292391,0.423026,2.070304,0.302209,0.423289,2.036788,0.288970,0.423947,2.047894,0.288937,0.388252,2.095715,0.306260,0.395306,2.084453,0.288583,0.412730,2.088241,0.271107,0.411812,2.102573,0.276423,0.423293,2.085423,0.271732,0.426343,2.065754,0.271892,0.417586,2.032080,0.245003,0.408926,2.121569,0.263927,0.380226,2.119294,0.205438,0.408249,2.150560,0.227265,0.375418,2.154492,0.049168,0.440438,2.142462,0.112258,0.437872,2.127559,0.110430,0.404291,2.072223,0.051106,0.405832,2.087067,0.164735,0.400126,2.054656,0.181287,0.333061,2.022396,0.123373,0.334993,2.042844,0.060960,0.338521,2.055345,0.061638,0.438984,2.212849,0.051554,0.448931,2.186483,-0.016798,0.446991,2.202353,-0.010799,0.437687,2.233368,-0.016073,0.437835,2.155252,-0.077824,0.438960,2.160950,-0.080014,0.445384,2.208788,-0.078893,0.436778,2.236500,0.106259,0.374611,2.237999,0.082540,0.413100,2.224786,0.003988,0.411705,2.257198,0.023002,0.372983,2.281150,-0.074466,0.408699,2.261034,-0.067485,0.367294,2.288581,0.149960,0.410517,2.185797,0.172249,0.372067,2.196501,0.126839,0.432499,2.179699,0.115289,0.444305,2.162843,-0.012377,0.403690,2.100318,-0.074052,0.400593,2.107954,-0.005191,0.340707,2.061405,-0.069607,0.339378,2.066186,0.286997,0.385268,1.994233,0.252601,0.391466,2.007335,0.313623,0.340482,1.957286,0.278783,0.335685,1.975787,0.211503,0.397785,2.030115,0.233849,0.333408,1.998186,-0.469758,0.401368,2.005491,-0.467914,0.398236,2.003244,-0.475300,0.388531,1.967267,-0.478682,0.398127,1.970098,-0.459935,0.394490,2.004465,-0.468318,0.377241,1.969384,-0.484824,0.353970,1.930207,-0.490313,0.373085,1.929055,-0.492260,0.391221,1.932387,-0.458985,0.367197,1.976574,-0.476415,0.336965,1.936099,-0.447033,0.392341,2.009287,-0.428937,0.392043,2.020951,-0.443558,0.360127,1.989806,-0.463036,0.322168,1.948790,-0.463650,0.396334,2.062753,-0.465740,0.394548,2.058595,-0.463666,0.398294,2.033067,-0.465692,0.400850,2.036384,-0.460746,0.395455,2.058750,-0.459712,0.398501,2.034515,-0.473170,0.387884,2.075716,-0.467720,0.385658,2.074458,-0.467788,0.391928,2.080895,-0.480547,0.398442,2.104027,-0.484314,0.391942,2.091080,-0.481685,0.385071,2.084114,-0.299583,0.427198,2.111378,-0.343517,0.417521,2.085555,-0.351605,0.423688,2.119490,-0.308926,0.438672,2.146889,-0.378932,0.405568,2.062064,-0.386022,0.416438,2.094498,-0.393238,0.407171,2.110452,-0.360567,0.411802,2.133939,-0.318013,0.425985,2.162375,-0.458184,0.386487,2.077690,-0.451167,0.398020,2.063767,-0.473936,0.380090,2.085723,-0.463486,0.378390,2.093423,-0.446662,0.389821,2.086827,-0.438017,0.401599,2.075100,-0.448153,0.399774,2.040278,-0.431273,0.402454,2.051745,-0.430940,0.392691,2.099510,-0.419684,0.404048,2.091150,-0.447756,0.375677,2.105432,-0.422958,0.369532,2.121156,-0.406420,0.391837,2.114728,-0.410920,0.407426,2.070727,-0.406172,0.396683,2.039531,-0.375932,0.395786,2.140176,-0.332547,0.407036,2.170183,-0.389958,0.367473,2.150844,-0.343019,0.372984,2.189362,-0.301327,0.317300,2.036647,-0.295351,0.375351,2.074705,-0.241489,0.385654,2.090240,-0.244365,0.327273,2.052877,-0.246192,0.437241,2.130806,-0.190835,0.440462,2.147838,-0.186386,0.394630,2.100539,-0.186961,0.334641,2.062921,-0.135034,0.441206,2.158435,-0.139495,0.446016,2.205715,-0.197730,0.448566,2.195506,-0.203942,0.439294,2.219382,-0.142884,0.438029,2.231994,-0.146474,0.411973,2.256861,-0.212505,0.414579,2.242656,-0.218312,0.369689,2.265963,-0.148062,0.368746,2.283578,-0.263108,0.436047,2.192572,-0.275932,0.415533,2.206795,-0.280994,0.373203,2.230877,-0.254675,0.446593,2.175033,-0.130616,0.400982,2.104946,-0.129431,0.338026,2.067294,-0.420089,0.356056,2.009590,-0.438750,0.311168,1.966109,-0.387095,0.356835,2.032065,-0.402772,0.306278,1.987849,-0.345455,0.363617,2.055441,-0.355839,0.308650,2.013432,0.122671,0.447274,2.080157,0.116105,0.444764,2.121220,0.074229,0.446865,2.135063,0.080896,0.448640,2.090786,0.110168,0.442701,2.160871,0.065695,0.446402,2.177532,0.012910,0.446820,2.192935,0.021888,0.446982,2.147351,0.030598,0.448081,2.099613,-0.034394,0.445204,2.157080,-0.025844,0.447084,2.107313,-0.040280,0.444083,2.203622,-0.093228,0.444445,2.204768,-0.089072,0.446324,2.159163,-0.083571,0.447169,2.111272,0.004090,0.464476,2.238171,-0.045047,0.461378,2.244975,-0.006110,0.493272,2.281045,-0.051368,0.489529,2.284559,-0.101437,0.485664,2.285037,-0.097723,0.461465,2.242991,0.101683,0.458932,2.202137,0.055637,0.464835,2.220985,0.087213,0.489967,2.245820,0.040861,0.495909,2.264575,0.296227,0.419097,2.048110,0.301640,0.417373,2.017551,0.294888,0.419158,2.073382,0.280816,0.420981,2.091030,0.281859,0.421123,2.065155,0.285645,0.421344,2.033329,0.294334,0.441443,2.129111,0.284911,0.427751,2.112394,0.299303,0.421634,2.092731,0.308598,0.429491,2.110229,0.169618,0.456235,2.191056,0.208330,0.442146,2.160246,0.202742,0.470889,2.198666,0.159310,0.496677,2.230873,0.238588,0.433378,2.133888,0.239307,0.452352,2.160321,0.239605,0.485369,2.190770,0.197992,0.510637,2.224810,0.146002,0.542010,2.253507,0.192255,0.447096,2.048482,0.185331,0.440328,2.087952,0.151911,0.442062,2.106063,0.158709,0.447155,2.066565,0.180581,0.438502,2.123884,0.146010,0.439831,2.142766,0.139141,0.451284,2.179711,0.175974,0.438992,2.157545,0.129091,0.477296,2.221237,0.216453,0.437345,2.066727,0.212877,0.436489,2.103100,0.225523,0.445506,2.026277,0.258246,0.442359,2.002886,0.245650,0.433875,2.042271,0.240302,0.430758,2.079544,0.312116,0.417406,1.983170,0.328390,0.419422,1.948344,0.294744,0.423550,1.998275,0.309214,0.430330,1.961761,0.264968,0.426448,2.054855,0.272288,0.429657,2.018477,0.285908,0.437522,1.979950,0.210242,0.434743,2.134199,0.238657,0.429244,2.111209,0.262890,0.426232,2.112684,0.262244,0.424589,2.087559,0.265813,0.437110,2.133475,0.272385,0.462016,2.156897,0.111453,0.520854,2.257452,0.062705,0.534811,2.284513,0.092142,0.565916,2.287168,0.042136,0.581820,2.313858,0.002839,0.586458,2.334095,0.018568,0.540329,2.303804,-0.032253,0.582096,2.342858,-0.021885,0.538962,2.314986,-0.071065,0.573577,2.348712,-0.064056,0.531550,2.321001,-0.113908,0.570686,2.350225,-0.108284,0.526315,2.326474,-0.193111,0.446477,2.193160,-0.233724,0.442534,2.178987,-0.236609,0.442713,2.135718,-0.192934,0.443370,2.147313,-0.270529,0.437297,2.163470,-0.274926,0.440480,2.122102,-0.280522,0.449164,2.078724,-0.239041,0.450207,2.091282,-0.192492,0.449042,2.101537,-0.146018,0.446017,2.202947,-0.142842,0.445227,2.155858,-0.140250,0.447261,2.108551,-0.151188,0.490174,2.285231,-0.153382,0.461141,2.247506,-0.192235,0.493951,2.277541,-0.193755,0.463918,2.237107,-0.231659,0.490216,2.264275,-0.232818,0.461147,2.221852,-0.268386,0.481042,2.244969,-0.267859,0.455208,2.201163,-0.441962,0.401020,2.084886,-0.455289,0.397291,2.070869,-0.458684,0.402423,2.044903,-0.444453,0.404350,2.059315,-0.465355,0.403966,2.013974,-0.451137,0.407231,2.028264,-0.460119,0.398741,2.091986,-0.448272,0.406414,2.108578,-0.463317,0.420008,2.131906,-0.474731,0.407085,2.117537,-0.421867,0.463408,2.183288,-0.407470,0.437675,2.160915,-0.377663,0.460429,2.192872,-0.390220,0.490005,2.219707,-0.397481,0.419890,2.134933,-0.369913,0.433815,2.165408,-0.336716,0.451396,2.194683,-0.343323,0.482386,2.227344,-0.353423,0.520474,2.252537,-0.304327,0.432906,2.145579,-0.310206,0.437550,2.105892,-0.337175,0.428156,2.124837,-0.344268,0.434778,2.086163,-0.355114,0.444218,2.042770,-0.318497,0.447302,2.063060,-0.334301,0.431567,2.159643,-0.300721,0.446422,2.181434,-0.303164,0.467915,2.221496,-0.425737,0.433303,1.991118,-0.391677,0.438939,2.017776,-0.378013,0.429944,2.062088,-0.410768,0.424180,2.035655,-0.369098,0.422814,2.099911,-0.400470,0.416800,2.073602,-0.475101,0.405913,1.978070,-0.461685,0.412539,1.991463,-0.488681,0.406715,1.939499,-0.476191,0.418758,1.950498,-0.439421,0.418431,2.010868,-0.454683,0.427249,1.967871,-0.428711,0.411393,2.048438,-0.395788,0.413876,2.106177,-0.366412,0.424885,2.133450,-0.422562,0.407339,2.080106,-0.421624,0.408235,2.106690,-0.429367,0.418543,2.131358,-0.444877,0.439377,2.153164,-0.307077,0.502453,2.258714,-0.314812,0.549396,2.281393,-0.271800,0.520842,2.281989,-0.274834,0.570575,2.302380,-0.195159,0.535932,2.312075,-0.235010,0.532784,2.298877,-0.196680,0.582530,2.333924,-0.237516,0.581721,2.321121,-0.153336,0.529155,2.324632,-0.155941,0.575836,2.346615,1.322260,2.544786,0.749097,1.360602,2.350030,0.579890,1.239065,2.714230,0.935234,1.194612,2.479244,1.107958,1.280941,2.310380,0.866890,1.311361,2.134650,0.701213,1.323174,1.956075,0.601824,1.357563,2.129529,0.485417,0.437280,1.505138,1.854458,0.496651,1.492109,1.842981,0.502889,1.516002,1.857267,0.442832,1.528351,1.868951,0.557978,1.488233,1.822265,0.565978,1.513595,1.837507,0.842913,1.532281,1.636133,0.870584,1.552359,1.609566,0.838145,1.573838,1.630619,0.815143,1.556083,1.650370,0.892093,1.579479,1.584861,0.858005,1.597700,1.612122,0.771181,1.507600,1.700089,0.809561,1.517720,1.667727,0.786369,1.543751,1.674393,0.754273,1.535900,1.703160,0.675562,1.490294,1.766544,0.726934,1.498784,1.731152,0.720763,1.528530,1.738043,0.677340,1.519231,1.775122,0.618939,1.486916,1.798750,0.625268,1.513969,1.809661,0.909901,1.617991,1.563458,0.877258,1.629124,1.594407,0.923746,1.667698,1.551951,0.891618,1.670296,1.586605,0.185512,1.823336,1.853306,0.165727,1.773027,1.828482,0.202348,1.748035,1.837176,0.223461,1.791112,1.855913,0.155996,1.729009,1.825047,0.188542,1.717623,1.838739,0.220799,1.722261,1.850751,0.258932,1.751297,1.874862,0.161178,1.692568,1.835160,0.189759,1.695106,1.835568,0.178590,1.661922,1.838519,0.203741,1.673570,1.837961,0.332053,1.548613,1.855618,0.382203,1.525550,1.858274,0.389084,1.549444,1.871844,0.340429,1.571150,1.868233,0.243155,1.597280,1.847924,0.285441,1.570827,1.851012,0.297685,1.592626,1.859062,0.258615,1.616687,1.853168,0.206696,1.631152,1.846139,0.227231,1.647254,1.846107,0.790213,2.013370,1.912476,0.680073,2.040492,1.988704,0.651336,1.942729,1.977863,0.743189,1.922031,1.910985,0.528212,2.044425,2.054944,0.537679,1.952968,2.013124,0.508838,1.907589,1.968017,0.612718,1.888094,1.944455,0.693546,1.866075,1.899167,0.902281,1.916062,1.725725,0.867546,1.971656,1.820183,0.813956,1.893600,1.831482,0.851715,1.859550,1.750417,0.760580,1.839292,1.835664,0.804844,1.814793,1.770649,0.931431,1.724219,1.560627,0.896890,1.719396,1.597915,0.935976,1.786342,1.595772,0.890264,1.769282,1.629358,0.849377,1.742047,1.671227,0.861317,1.703876,1.639822,0.927413,1.852777,1.652059,0.874128,1.814705,1.681912,0.829796,1.782336,1.714121,0.381397,1.963524,2.048678,0.404668,1.943810,1.996395,0.274486,1.933705,1.967477,0.302425,1.908999,1.935847,0.316898,1.877133,1.919561,0.399864,1.908272,1.954434,0.216557,1.879681,1.899522,0.251619,1.851900,1.886801,0.277146,1.827899,1.887929,0.336055,1.804338,1.917571,0.327749,1.844229,1.912311,0.294266,1.818326,1.895246,0.296079,1.782990,1.897118,0.404972,1.818289,1.946423,0.398483,1.861671,1.943727,0.499180,1.816366,1.964796,0.497888,1.862229,1.959856,0.588899,1.807153,1.946517,0.593533,1.846238,1.942945,0.665667,1.798099,1.904924,0.671300,1.831248,1.901551,0.723987,1.780026,1.850929,0.734102,1.806981,1.844949,0.761965,1.754901,1.794846,0.776135,1.782938,1.785059,0.814304,1.702783,1.704743,0.827514,1.721232,1.693827,0.806597,1.755549,1.734344,0.791732,1.728910,1.746202,0.831896,1.684123,1.670277,0.841544,1.699968,1.666985,1.183730,1.336908,1.139055,1.155852,1.451613,1.272989,1.128781,1.300386,1.326750,1.159310,1.158319,1.200859,1.106783,1.535506,1.376156,1.087136,1.409509,1.423621,1.057245,1.318485,1.486094,1.096166,1.186631,1.401964,1.127907,1.015906,1.290188,1.045760,1.102470,1.492658,1.080287,0.902220,1.404187,1.013433,1.256481,1.555742,0.960707,1.220124,1.629053,0.980764,1.046944,1.591881,1.007832,0.824794,1.534305,0.893343,1.203786,1.697900,0.901560,1.021911,1.691432,0.819840,1.208053,1.758497,0.816197,1.036643,1.780873,0.801668,0.798842,1.812856,0.916284,0.791492,1.670948,0.367004,0.718224,2.097760,0.436711,0.620366,2.086350,0.468944,0.654940,2.060907,0.410164,0.750167,2.062307,0.481688,0.536279,2.071285,0.516589,0.559773,2.046500,0.558501,0.583283,2.021563,0.506851,0.688867,2.037015,0.449234,0.786843,2.040144,0.350941,0.942203,2.028924,0.313374,0.902459,2.043856,0.357505,0.834289,2.053505,0.397340,0.872060,2.038175,0.275331,0.876216,2.065144,0.313861,0.813399,2.076195,0.226345,1.057067,2.086456,0.229870,1.050912,2.118492,0.230794,1.011279,2.121820,0.227350,1.008736,2.096927,0.232646,1.043625,2.140679,0.232308,1.013128,2.154117,0.216646,0.968223,2.187563,0.223303,0.977107,2.134842,0.224262,0.984833,2.109868,0.213449,0.953050,2.110490,0.219436,0.968972,2.108399,0.212878,0.951117,2.141887,0.204393,0.934275,2.138969,0.198102,0.933605,2.190107,0.174800,0.910983,2.192811,0.173235,0.899841,2.144627,0.175609,0.904665,2.165092,0.137596,0.888441,2.203851,0.137844,0.883676,2.185787,0.132878,0.894677,2.227175,0.098738,0.904033,2.246612,0.101162,0.892301,2.231518,0.099668,0.885454,2.216621,0.146045,0.908373,2.240651,0.117331,0.907568,2.250635,0.118573,0.931272,2.261854,0.100342,0.939674,2.256234,0.080932,0.949869,2.249931,0.090428,0.923737,2.257182,0.150966,0.942189,2.274424,0.134743,0.930594,2.264707,0.169649,0.923048,2.237503,0.186451,0.945492,2.245292,-0.001782,1.590601,2.210469,0.032603,1.540410,2.152790,0.034637,1.595294,2.105142,0.004526,1.651179,2.160107,0.069362,1.486539,2.097626,0.069595,1.537480,2.056830,0.068096,1.577156,2.005049,0.036562,1.640681,2.045037,0.009961,1.717037,2.090882,0.033177,0.814018,2.273435,-0.001701,0.813550,2.295248,-0.003334,0.784429,2.302159,0.034217,0.783783,2.283041,-0.035925,0.809967,2.304929,-0.038938,0.779963,2.307993,-0.042989,0.745237,2.308990,-0.006978,0.750468,2.308856,0.031887,0.748466,2.293712,0.208799,1.023177,2.261816,0.189445,0.990084,2.293204,0.193542,0.967764,2.264770,0.219218,0.994984,2.225190,0.162460,0.971447,2.307610,0.161133,0.955213,2.286959,0.124225,1.008507,2.374136,0.150758,0.991316,2.336214,0.170947,1.013856,2.329233,0.139664,1.032589,2.376676,0.184654,1.050137,2.307603,0.144431,1.075508,2.377979,-0.074659,0.772411,2.298790,-0.078763,0.737256,2.299386,-0.070534,0.804725,2.299094,-0.109700,0.801965,2.289509,-0.113675,0.768244,2.288697,-0.116306,0.732921,2.288780,-0.095292,0.896545,2.332159,-0.096725,0.888745,2.323467,-0.060043,0.888519,2.321079,-0.059614,0.899342,2.326989,-0.098140,0.879969,2.316550,-0.061811,0.878232,2.316923,-0.027768,0.882848,2.306810,-0.025563,0.896551,2.307883,-0.021822,0.916159,2.312253,-0.035580,0.925206,2.328775,-0.061656,0.909357,2.337004,-0.041655,0.935012,2.344392,-0.063230,0.919568,2.350661,-0.091194,0.912618,2.356237,-0.093541,0.904634,2.342451,0.226687,0.772853,2.145561,0.241277,0.720117,2.168113,0.304331,0.686488,2.145757,0.292046,0.752811,2.123851,0.248871,0.662630,2.190289,0.304015,0.625068,2.163981,0.351076,0.581819,2.143445,0.364011,0.639851,2.127027,0.232858,0.861460,2.091743,0.262707,0.813294,2.102545,0.185765,0.855769,2.123639,0.206279,0.818955,2.130470,0.115973,0.802790,2.212348,0.123587,0.764996,2.227118,0.179341,0.745213,2.195342,0.167888,0.789886,2.177629,0.126624,0.720980,2.242795,0.185884,0.694533,2.215182,0.140685,0.857178,2.162540,0.152796,0.826492,2.165418,0.098983,0.858304,2.198847,0.106259,0.833243,2.202460,0.134053,0.879657,2.167938,0.172397,0.884457,2.129035,0.095709,0.878389,2.201804,0.031664,0.838744,2.266817,-0.000665,0.837952,2.291690,0.030551,0.859783,2.262129,0.000105,0.857820,2.288741,-0.032370,0.854336,2.304273,-0.033728,0.834851,2.304787,0.031306,0.894276,2.261865,0.003194,0.890041,2.286064,0.001321,0.874802,2.287049,0.030304,0.878311,2.260479,-0.029707,0.869594,2.305528,0.066037,0.904943,2.249699,0.062862,0.894774,2.238964,0.066638,0.916474,2.257955,0.037653,0.922703,2.270631,0.033625,0.908621,2.265549,0.064421,0.933796,2.261505,0.058620,0.955306,2.253444,0.038831,0.959548,2.267603,0.039644,0.939640,2.271749,0.018096,0.942161,2.288524,0.010926,0.922746,2.288027,0.023588,0.963797,2.286273,0.010299,0.967644,2.306172,-0.001082,0.944281,2.307153,0.006058,0.905568,2.286883,0.061614,0.878991,2.232546,0.063082,0.859150,2.231910,0.066733,0.836746,2.236359,0.071470,0.810198,2.244930,0.074491,0.777510,2.255651,0.076318,0.739636,2.271263,-0.081496,0.699395,2.300591,-0.046362,0.707558,2.313089,-0.117407,0.697531,2.293607,-0.117617,0.661774,2.307991,-0.081088,0.662464,2.311694,-0.045684,0.668940,2.320604,-0.011404,0.712946,2.314953,0.028651,0.710185,2.305135,-0.011983,0.673885,2.323676,0.026717,0.670376,2.314346,-0.076869,0.622606,2.335997,-0.040019,0.629799,2.337229,-0.115984,0.620837,2.337015,-0.006621,0.633661,2.336001,0.029846,0.628645,2.319467,0.134715,0.584822,2.263049,0.077506,0.612268,2.294051,0.129025,0.628434,2.263684,0.072136,0.654793,2.290145,0.074021,0.697888,2.283571,0.126929,0.674228,2.255598,0.190245,0.642151,2.230882,0.192453,0.593584,2.237222,0.243992,0.560266,2.203632,0.247600,0.606930,2.200743,0.285297,0.528642,2.172477,0.296502,0.571982,2.173734,0.318581,0.495182,2.148636,0.335307,0.533857,2.150513,0.391340,0.531865,2.126102,0.413824,0.576518,2.111052,0.418754,0.481026,2.103353,0.449527,0.508712,2.091259,0.342264,0.464491,2.127881,0.366518,0.493044,2.131853,0.359462,0.440056,2.109674,0.388629,0.456767,2.109290,0.322260,0.444371,2.121021,0.304634,0.466646,2.141815,0.335345,0.429771,2.106345,0.277728,0.493251,2.168650,0.239723,0.521767,2.198929,0.193451,0.552162,2.233552,-0.085981,0.939336,2.444476,-0.085260,0.933970,2.419300,-0.058803,0.946718,2.416101,-0.056962,0.953098,2.442303,-0.086090,0.927882,2.395750,-0.060666,0.938980,2.391260,-0.042028,0.955938,2.386487,-0.038926,0.964326,2.411356,-0.033424,0.971104,2.437597,-0.043437,0.945945,2.363600,-0.062848,0.929842,2.368798,-0.088404,0.920610,2.374225,-0.000996,0.970589,2.327664,-0.015341,0.947573,2.325288,-0.011378,0.974525,2.350465,-0.024479,0.955121,2.343606,-0.018651,0.982600,2.374171,-0.029108,0.964964,2.365102,-0.018501,0.993852,2.398068,-0.029683,0.975773,2.388840,-0.010193,0.999550,2.418634,-0.025069,0.984183,2.412057,-0.002296,0.997934,2.431128,-0.015481,0.988495,2.433601,0.077459,1.046864,2.461667,0.066342,1.031500,2.455767,0.102083,1.035606,2.423664,0.105098,1.058773,2.438946,0.046421,1.015353,2.442265,0.088979,1.016822,2.412675,-0.012449,0.992631,2.483091,0.016693,1.009100,2.467316,0.036050,1.025915,2.479775,0.003981,1.014395,2.501816,0.058261,1.048876,2.483759,0.025569,1.046035,2.513894,-0.000881,0.995438,2.452199,-0.024315,0.978963,2.462015,0.014309,1.003456,2.439445,-0.053531,0.960054,2.468496,-0.087417,0.945060,2.472412,-0.047247,0.972012,2.495967,-0.089839,0.958584,2.504462,-0.037496,0.996966,2.523572,-0.090142,0.984778,2.541569,-0.023976,1.037798,2.548434,-0.089624,1.033112,2.574451,-0.008897,1.093829,2.565263,-0.087915,1.098693,2.593258,0.053669,1.085659,2.515053,0.071487,1.135846,2.492701,0.000432,1.160970,2.552972,-0.084200,1.171875,2.580438,0.087372,1.076757,2.470675,0.112067,1.111558,2.437092,0.066549,1.226940,2.421029,0.073975,1.183879,2.456158,0.121097,1.151750,2.395325,0.110568,1.189354,2.354854,0.154487,1.120110,2.331676,0.144919,1.157518,2.293583,0.044526,1.306604,2.368321,0.032376,1.340421,2.344896,-0.028952,1.368607,2.397126,-0.019467,1.336892,2.422280,0.020949,1.375975,2.321973,-0.036999,1.403466,2.372528,-0.102916,1.416611,2.399076,-0.098345,1.380905,2.423468,-0.095032,1.348292,2.447375,-0.009166,1.304371,2.449953,0.055373,1.268595,2.392775,-0.090671,1.315324,2.473732,-0.086512,1.276844,2.504690,-0.000201,1.265457,2.481520,0.002888,1.218356,2.517605,-0.084542,1.230864,2.543333,-0.068096,0.831369,2.303742,-0.065968,0.851673,2.309180,-0.102257,0.853548,2.301561,-0.105665,0.831141,2.294182,-0.063921,0.866588,2.313228,-0.100116,0.868837,2.310198,1.138678,2.863524,1.093946,1.030764,2.980341,1.228724,1.002472,2.850616,1.382190,1.099949,2.714761,1.260433,1.321290,1.744139,0.676003,1.305782,1.510829,0.689645,1.292185,1.885807,0.786370,1.293735,1.611272,0.820967,1.257857,1.730638,0.952406,1.242806,1.441795,0.961627,1.266335,1.326936,0.813694,1.201778,1.834132,1.091463,1.211233,1.563050,1.105754,1.214460,1.185966,0.986334,1.243787,1.001814,0.793077,1.282155,1.264202,0.690146,1.259356,1.022575,0.658963,1.190124,2.133950,1.097069,1.246945,2.029846,0.928037,0.997452,1.635109,1.486841,0.986866,1.557202,1.512800,1.035077,1.494409,1.481290,1.048971,1.595790,1.443524,0.967664,1.500062,1.551008,1.012218,1.421518,1.533187,0.967585,1.730243,1.524820,0.978046,1.815190,1.558043,0.957601,1.656759,1.519928,1.005917,1.732148,1.482952,1.014070,1.848647,1.508673,0.945423,1.596250,1.536158,0.928472,1.550297,1.564130,0.284404,1.397182,1.897611,0.294082,1.437540,1.867206,0.236776,1.466649,1.882980,0.228969,1.428096,1.918539,0.308336,1.481520,1.849080,0.250382,1.505070,1.856570,0.194691,1.537886,1.867538,0.180967,1.508527,1.904255,0.173463,1.474846,1.945660,0.112013,1.435923,2.051676,0.115261,1.484610,2.017357,0.159423,1.390252,2.014759,0.165328,1.434914,1.982506,0.120584,1.525928,1.975392,0.080641,1.381417,2.156024,0.120542,1.336376,2.105473,0.114410,1.384964,2.080727,0.072793,1.432711,2.129934,0.156457,1.294821,2.063641,0.157957,1.342753,2.042644,0.163156,1.213499,2.101102,0.156804,1.251166,2.081923,0.123971,1.291862,2.125012,0.127693,1.251992,2.142913,0.089885,1.335510,2.178398,0.097669,1.294868,2.197620,0.221902,0.988585,2.085751,0.221600,1.015137,2.064230,0.212722,0.958304,2.093305,0.218304,0.963271,2.065253,0.199993,0.928422,2.123925,0.194689,0.921451,2.102239,0.209210,0.896943,2.090359,0.243766,0.922000,2.058518,0.276255,1.047353,2.020888,0.247050,1.002274,2.034485,0.276204,0.956465,2.037507,0.310772,0.999673,2.023067,0.213380,1.131788,2.039437,0.219253,1.094575,2.061464,0.223642,1.049008,2.041902,0.242768,1.090823,2.023447,0.259856,1.314860,1.963243,0.248440,1.268833,1.991869,0.296303,1.235892,1.981393,0.312231,1.284118,1.950189,0.236305,1.221133,2.012245,0.279010,1.185441,2.002840,0.323388,1.147205,2.000464,0.345356,1.200834,1.976327,0.366133,1.254675,1.945470,0.223291,1.174756,2.024344,0.260806,1.136179,2.013741,0.299965,1.095145,2.013518,0.209704,1.098950,2.196251,0.228257,1.067140,2.160805,0.222199,1.091420,2.135448,0.199350,1.128655,2.169358,0.214568,1.113669,2.109834,0.187820,1.154846,2.144614,0.215894,1.062802,2.226725,0.187716,1.091739,2.273789,0.178953,1.128853,2.240974,0.230578,1.033011,2.188134,0.174428,1.181413,2.122146,0.135738,1.216990,2.163780,0.149835,1.187566,2.186900,0.105399,1.258118,2.217314,0.115364,1.223906,2.238507,0.075073,1.301305,2.280746,0.083994,1.264893,2.300601,0.064314,1.337877,2.260316,0.129230,1.190639,2.262926,0.094902,1.226170,2.324238,0.165147,1.160067,2.212173,0.192220,1.173455,2.067682,0.203330,1.140514,2.087711,0.188899,1.212568,2.047843,0.194408,1.256358,2.031570,0.201216,1.303342,2.011231,0.208906,1.349245,1.984764,0.218490,1.390625,1.952976,0.272418,1.356982,1.930000,0.397728,1.352719,1.876502,0.410429,1.396750,1.855040,0.351455,1.414701,1.857440,0.339487,1.373006,1.882125,0.421976,1.438862,1.847399,0.365564,1.459834,1.849258,0.327553,1.331206,1.916913,0.383757,1.306257,1.909428,0.341252,1.048004,2.016545,0.371062,1.103004,2.002372,0.386345,0.990622,2.018664,0.422613,1.048398,2.004662,0.398370,1.160844,1.976320,0.422693,1.219653,1.942419,0.455668,1.112011,1.977499,0.484052,1.178955,1.941835,0.437413,0.920360,2.024128,0.479159,0.979760,2.006465,0.492849,0.833602,2.021972,0.540649,0.892677,2.000271,0.551310,0.730048,2.011281,0.604517,0.783211,1.983087,0.605385,0.612875,1.991844,0.661207,0.651180,1.955080,0.624530,1.055693,1.921994,0.587047,0.966578,1.966063,0.657557,0.853016,1.938045,0.704785,0.955313,1.886587,0.725169,0.703507,1.901968,0.549901,1.126302,1.936087,0.518560,1.049494,1.975917,0.665539,1.260571,1.842031,0.591786,1.287302,1.861287,0.573140,1.207368,1.893298,0.648606,1.158636,1.877120,0.522837,1.310106,1.870274,0.505728,1.245439,1.902469,0.742824,1.230363,1.807736,0.732083,1.095221,1.844364,0.803519,1.418227,1.714254,0.743551,1.411666,1.752869,0.746944,1.336971,1.778423,0.815727,1.333441,1.736637,0.677539,1.408338,1.786194,0.675101,1.345743,1.810884,0.609053,1.409885,1.813773,0.602928,1.356797,1.834450,0.543329,1.416495,1.831951,0.532914,1.368621,1.844789,0.457429,1.331028,1.871504,0.442623,1.277473,1.905217,0.480724,1.424948,1.841848,0.469577,1.381717,1.851991,0.489671,1.461951,1.839528,0.551291,1.455781,1.823402,0.430738,1.476006,1.846289,0.902913,1.442183,1.634548,0.857398,1.428706,1.675434,0.879764,1.338340,1.691491,0.934656,1.351134,1.641094,0.978526,1.375999,1.587505,0.939459,1.463643,1.592486,0.905470,1.519711,1.597693,0.873330,1.498542,1.631789,0.835057,1.483718,1.668629,0.789217,1.471138,1.703367,0.614138,1.452538,1.801947,0.677185,1.454030,1.772923,0.735707,1.460860,1.737670,0.375221,1.497116,1.848707,0.321517,1.519468,1.847845,0.269372,1.541890,1.847171,0.219501,1.569046,1.849193,0.009119,1.417513,2.298001,-0.044289,1.446290,2.347888,-0.000037,1.468140,2.273248,-0.049053,1.499415,2.322586,-0.112469,1.510469,2.339082,-0.107823,1.460108,2.372613,0.051915,1.379138,2.238554,0.039974,1.427181,2.214497,0.034198,1.482661,2.188020,-0.004650,1.527055,2.245933,-0.054662,1.560544,2.290806,-0.055131,1.624201,2.251915,-0.119146,1.635068,2.261981,-0.116848,1.571263,2.301274,-0.113853,1.752542,2.177391,-0.116312,1.695474,2.220278,-0.049360,1.685465,2.205753,-0.046827,1.745262,2.158900,-0.115427,1.861190,2.132980,-0.052454,1.859169,2.113827,-0.044881,1.911354,2.126460,-0.114455,1.912465,2.137308,0.003967,1.857294,2.067676,0.016438,1.908508,2.090231,0.030719,1.951812,2.128203,-0.036978,1.958822,2.148950,-0.113338,1.963544,2.151281,-0.051890,1.803389,2.125351,0.000444,1.796376,2.071093,-0.115072,1.808180,2.146369,0.159326,1.945199,2.045661,0.119417,1.907182,1.983161,0.169130,1.898434,1.933431,0.224805,1.940086,2.006910,0.088697,1.857395,1.938032,0.134959,1.848337,1.878980,0.082556,1.608061,1.949747,0.044818,1.666039,1.971502,0.103116,1.627943,1.891869,0.072488,1.680019,1.900436,0.057509,1.739888,1.906247,0.031437,1.735489,1.994081,0.128540,1.556609,1.927103,0.143569,1.579991,1.878815,0.174069,1.603822,1.848811,0.140068,1.644938,1.852146,0.114886,1.687971,1.849113,0.097402,1.737179,1.836639,0.108022,1.796509,1.844270,0.066089,1.802424,1.913855,0.036439,1.799300,1.998296,0.050981,1.857009,2.005538,0.069696,1.907811,2.037491,0.092346,1.950322,2.086974,0.078110,2.082641,2.189699,0.050943,2.002029,2.166456,0.127766,1.997695,2.137454,0.178064,2.078236,2.169884,0.218246,1.984064,2.111598,0.285587,2.071775,2.147236,-0.133213,2.738806,2.088727,-0.136772,2.520268,2.103837,0.022555,2.517685,2.107267,0.043687,2.729129,2.080182,-0.136216,2.353548,2.159447,0.007032,2.353875,2.170835,0.144253,2.355921,2.181252,0.169437,2.513158,2.106792,0.202101,2.711619,2.058107,-0.132181,2.207206,2.200154,-0.009505,2.204523,2.206639,-0.124313,2.091581,2.189019,-0.022242,2.089746,2.191231,0.112793,2.201735,2.208079,0.300338,2.511081,2.087167,0.339195,2.702859,2.029108,0.273481,2.354630,2.163053,0.392435,2.353417,2.124816,0.417129,2.512040,2.047939,0.460397,2.700386,1.985756,0.604740,2.343866,1.992879,0.500628,2.350482,2.064093,0.464269,2.197614,2.099575,0.580064,2.191174,2.034914,0.347908,2.200061,2.150045,0.398740,2.069615,2.106750,0.312199,1.973209,2.081223,0.796104,2.144125,1.870806,0.694544,2.178672,1.958890,0.802432,2.284782,1.819042,0.706224,2.325636,1.911052,0.723276,2.487117,1.837517,0.622180,2.507622,1.918556,0.826230,2.437225,1.749688,0.884611,2.591515,1.659541,0.783755,2.656015,1.756166,0.680386,2.687862,1.848029,0.952081,2.726322,1.531776,1.033387,2.595744,1.424249,0.962458,2.476630,1.553724,1.022238,2.312585,1.453786,1.102002,2.402394,1.327161,0.873896,2.082291,1.774722,0.928469,2.000677,1.685314,0.947376,2.102655,1.628299,0.884362,2.209715,1.719825,0.965370,1.910149,1.612819,0.990437,1.979606,1.557173,1.067649,2.110528,1.378702,1.123682,2.149158,1.253109,1.102329,1.895922,1.344325,1.154168,1.886657,1.228127,1.051859,1.724857,1.424974,1.053515,1.879160,1.437377,1.110128,1.700709,1.345800,1.168233,1.649861,1.238082,1.023875,2.049240,1.479840,0.972191,2.209935,1.549838,0.906070,2.343513,1.645714,0.075826,2.956932,2.006787,-0.117674,2.969256,2.018399,0.249840,2.935719,1.985490,0.276471,3.125399,1.872464,0.092542,3.145821,1.900831,-0.110202,3.156377,1.913828,0.397021,2.919219,1.949256,0.526336,2.905586,1.896871,0.560973,3.075709,1.765521,0.429570,3.101373,1.825915,-0.107053,3.310879,1.784144,0.098516,3.302955,1.771368,0.284088,3.280359,1.734962,0.440940,3.253366,1.684036,0.574836,3.219904,1.619855,0.790774,3.000347,1.598262,0.898645,2.939778,1.494620,0.922134,3.065942,1.348583,0.810615,3.128760,1.452874,0.680557,3.044553,1.690535,0.697063,3.180056,1.544008,0.853128,2.805949,1.635854,0.751720,2.856178,1.738176,0.571913,2.698551,1.923893,0.643044,2.887209,1.826187,0.520832,2.512341,1.987945,0.232022,2.200061,2.189417,-0.115793,2.018077,2.167061,-0.030338,2.013394,2.168127,-1.426156,2.454529,1.074988,-1.459287,2.708956,0.901496,-1.515126,2.541557,0.723597,-1.491033,2.292726,0.855373,-1.541637,2.353017,0.566337,-1.517452,2.126002,0.686992,-1.544713,2.134442,0.477173,-1.525092,1.953554,0.578452,-0.747157,1.517012,1.838517,-0.677526,1.531861,1.851007,-0.738454,1.496062,1.830635,-0.667970,1.510600,1.846385,-0.601792,1.529587,1.854062,-0.613121,1.548846,1.859853,-1.071609,1.640551,1.636149,-1.051016,1.609202,1.647492,-1.113956,1.639744,1.603303,-1.089722,1.600574,1.618866,-1.056314,1.566175,1.642183,-1.024758,1.581430,1.665635,-0.994982,1.560037,1.690807,-1.016210,1.538509,1.673930,-0.972776,1.518478,1.706126,-0.961080,1.543452,1.718140,-0.922614,1.529854,1.748689,-0.924279,1.505267,1.739080,-0.868278,1.496610,1.771333,-0.873874,1.520900,1.780685,-0.815028,1.514918,1.814624,-0.805526,1.492568,1.803584,-1.107448,1.711347,1.643382,-1.092344,1.674186,1.635960,-1.155186,1.734808,1.608526,-1.136420,1.682650,1.600013,-0.379679,1.728703,1.841928,-0.394429,1.749953,1.840868,-0.410923,1.730544,1.852424,-0.352854,1.739925,1.835332,-0.369003,1.772841,1.838943,-0.395589,1.818754,1.863307,-0.419530,1.787652,1.858071,-0.449290,1.749495,1.865270,-0.388429,1.697623,1.841069,-0.378480,1.713641,1.842967,-0.365562,1.691002,1.841742,-0.353929,1.714106,1.841030,-0.558136,1.571954,1.860167,-0.545097,1.554183,1.853794,-0.495309,1.586266,1.850015,-0.511185,1.603085,1.857863,-0.466827,1.632861,1.854824,-0.448999,1.616931,1.848601,-0.411053,1.644226,1.847603,-0.430060,1.658263,1.850045,-0.405578,1.678849,1.841050,-0.384415,1.668073,1.844124,-0.748826,1.932833,1.959038,-0.770894,1.987955,1.999084,-0.887646,1.987722,1.989066,-0.848516,1.927543,1.947888,-0.775466,2.066807,2.059405,-0.916033,2.082336,1.996637,-1.020398,2.060551,1.937769,-0.979436,1.972688,1.940316,-0.929177,1.906622,1.918186,-1.049219,1.940565,1.874698,-0.993488,1.875579,1.864544,-1.100146,2.016958,1.865984,-1.147569,1.966995,1.788100,-1.093165,1.896747,1.806306,-1.033539,1.834430,1.806958,-1.051886,1.748272,1.724514,-1.106065,1.799561,1.703206,-1.113508,1.754762,1.664554,-1.058973,1.710066,1.691341,-1.179858,1.860535,1.673361,-1.173581,1.795841,1.633504,-1.099890,1.850677,1.751167,-1.044551,1.791558,1.764315,-1.172614,1.914963,1.724752,-0.529612,1.875959,1.920153,-0.522823,1.910421,1.932449,-0.636921,1.961850,1.971909,-0.629545,1.915352,1.948407,-0.506457,1.938691,1.955460,-0.623089,1.986888,2.022134,-0.455256,1.849607,1.891208,-0.475227,1.823110,1.886146,-0.434646,1.877369,1.905093,-0.533829,1.838875,1.913392,-0.490327,1.811296,1.892557,-0.532901,1.797952,1.912212,-0.485852,1.776258,1.886627,-0.728983,1.874530,1.958207,-0.620321,1.864892,1.944126,-0.720589,1.815822,1.969212,-0.614287,1.813170,1.948391,-0.904280,1.846975,1.909229,-0.826002,1.867568,1.942430,-0.894611,1.789043,1.905354,-0.819366,1.807935,1.952202,-0.996708,1.782115,1.807095,-0.961782,1.817667,1.858200,-0.982115,1.732971,1.808986,-0.947598,1.763135,1.855156,-1.016530,1.744816,1.768891,-1.027736,1.708321,1.737500,-1.016561,1.674799,1.743708,-1.003980,1.699546,1.774101,-1.024746,1.664858,1.715460,-1.037588,1.685982,1.716347,-1.283847,1.368042,1.498996,-1.298287,1.454299,1.455142,-1.347010,1.325390,1.382409,-1.324479,1.215947,1.431025,-1.303621,1.575851,1.424135,-1.353612,1.472614,1.349553,-1.398672,1.344912,1.233843,-1.382075,1.169765,1.266074,-1.354439,1.028919,1.327897,-1.209178,1.262772,1.624810,-1.254270,1.305828,1.556830,-1.288124,1.132317,1.502249,-1.234310,1.074635,1.587806,-1.312971,0.912569,1.419228,-1.250378,0.831477,1.529154,-1.067845,0.802420,1.776814,-1.078668,1.059598,1.769884,-1.163016,1.046908,1.678268,-1.170006,0.794948,1.646248,-1.066267,1.237236,1.762085,-1.146093,1.239426,1.695712,-0.763020,0.569740,2.045946,-0.713206,0.542305,2.070511,-0.670295,0.650665,2.079310,-0.715617,0.688861,2.056592,-0.671845,0.513510,2.090751,-0.634627,0.609201,2.104088,-0.565668,0.715362,2.110996,-0.610707,0.753556,2.079219,-0.653844,0.794505,2.061060,-0.506030,0.819681,2.090763,-0.549585,0.842979,2.069331,-0.451052,0.889684,2.085231,-0.491944,0.916614,2.062281,-0.533569,0.958308,2.046474,-0.591398,0.883599,2.054509,-0.413985,0.998123,2.293200,-0.428867,1.046269,2.266826,-0.441704,1.046676,2.231664,-0.438843,1.008681,2.246070,-0.428980,1.076280,2.250022,-0.433059,1.087047,2.221060,-0.440850,1.095227,2.179835,-0.452348,1.043753,2.200615,-0.449887,1.013948,2.218643,-0.432313,0.974360,2.247266,-0.397912,0.954155,2.284976,-0.449860,0.994822,2.214872,-0.445834,0.971038,2.213133,-0.425067,0.946282,2.239080,-0.366995,0.923072,2.271909,-0.287880,0.934349,2.249837,-0.316965,0.925515,2.258271,-0.323453,0.909550,2.245916,-0.289223,0.921117,2.239742,-0.372263,0.904716,2.246116,-0.378272,0.897458,2.222751,-0.327353,0.899475,2.229714,-0.287432,0.909586,2.227552,-0.275384,0.962026,2.250416,-0.295709,0.961229,2.253526,-0.306191,0.944649,2.260313,-0.282818,0.948196,2.254025,-0.314540,0.960777,2.271154,-0.331912,0.941287,2.280450,-0.357318,0.950423,2.302560,-0.329023,0.962777,2.296015,-0.337137,0.969301,2.323332,-0.371907,0.971609,2.324309,-0.269674,1.615739,2.024998,-0.270364,1.575295,2.080030,-0.248094,1.620304,2.119000,-0.248202,1.664668,2.056234,-0.273858,1.525485,2.125931,-0.249287,1.565511,2.169490,-0.219593,1.602622,2.213423,-0.221231,1.661683,2.161472,-0.227963,1.726978,2.093718,-0.193313,0.745724,2.302868,-0.190899,0.779968,2.299798,-0.228041,0.781823,2.290917,-0.232697,0.746310,2.295504,-0.185509,0.811290,2.296246,-0.219460,0.814091,2.287726,-0.251592,0.811732,2.266774,-0.264394,0.777977,2.272826,-0.272199,0.739634,2.279847,-0.337109,0.980680,2.350497,-0.369891,0.992933,2.350543,-0.329785,0.992279,2.377259,-0.357525,1.011124,2.378724,-0.381284,1.043710,2.363788,-0.399277,1.022315,2.330530,-0.336999,1.025675,2.410619,-0.355942,1.063334,2.402379,-0.314264,1.002541,2.405154,-0.288918,1.007463,2.430757,-0.307082,1.032421,2.444097,-0.319081,1.078609,2.453590,-0.148406,0.805386,2.294466,-0.151944,0.772741,2.293687,-0.153370,0.738259,2.296388,-0.167129,0.889638,2.309002,-0.133981,0.884286,2.315037,-0.132815,0.894188,2.323200,-0.167541,0.902578,2.315114,-0.131118,0.902837,2.333496,-0.170633,0.919276,2.324188,-0.121918,0.915530,2.360138,-0.126924,0.909662,2.345914,-0.149662,0.929185,2.361144,-0.156212,0.925458,2.343917,-0.551893,0.561109,2.153978,-0.507897,0.608404,2.169339,-0.507072,0.676645,2.151962,-0.562135,0.627226,2.136292,-0.459694,0.647981,2.188935,-0.451046,0.711522,2.172768,-0.429076,0.773507,2.156306,-0.490024,0.748983,2.131746,-0.395781,0.827307,2.146340,-0.451748,0.818271,2.115737,-0.372674,0.874874,2.158757,-0.410949,0.877712,2.119974,-0.409247,0.680798,2.212365,-0.394543,0.737959,2.196452,-0.360514,0.708199,2.237926,-0.346528,0.757765,2.225124,-0.327153,0.802596,2.216080,-0.373604,0.791292,2.186047,-0.306303,0.839474,2.213212,-0.347464,0.836094,2.181626,-0.291775,0.869389,2.214981,-0.332225,0.871906,2.191537,-0.286730,0.892677,2.219883,-0.330003,0.890340,2.211487,-0.379646,0.892686,2.197148,-0.172444,0.860083,2.299920,-0.203885,0.863181,2.288288,-0.210714,0.841312,2.288210,-0.178270,0.838745,2.296040,-0.231657,0.864666,2.265008,-0.240004,0.841039,2.266256,-0.168741,0.876154,2.303945,-0.199304,0.880635,2.287970,-0.200033,0.895413,2.292499,-0.228726,0.900448,2.267295,-0.228617,0.884141,2.265256,-0.234016,0.929825,2.277524,-0.260497,0.933624,2.258553,-0.258848,0.919756,2.250071,-0.231031,0.914857,2.272013,-0.256431,0.905492,2.243164,-0.233906,0.964320,2.278707,-0.254010,0.962861,2.259909,-0.259352,0.948159,2.263171,-0.235835,0.946352,2.280891,-0.199564,0.964799,2.319354,-0.216060,0.965060,2.299301,-0.213508,0.944897,2.301463,-0.192135,0.943392,2.322143,-0.205800,0.926055,2.299368,-0.201599,0.909286,2.296336,-0.255880,0.888252,2.240179,-0.259444,0.866501,2.239039,-0.270657,0.840186,2.240046,-0.287426,0.808138,2.243084,-0.302872,0.769860,2.249848,-0.314262,0.727431,2.259952,-0.153132,0.703391,2.300688,-0.153482,0.666432,2.309262,-0.193164,0.709070,2.307367,-0.192656,0.672432,2.316156,-0.234484,0.709097,2.303279,-0.235003,0.671015,2.311442,-0.275584,0.700212,2.287988,-0.276034,0.660091,2.294909,-0.154927,0.624718,2.334209,-0.195529,0.630993,2.331737,-0.237188,0.630102,2.321145,-0.277896,0.619099,2.303848,-0.319409,0.638843,2.278150,-0.319160,0.596275,2.284761,-0.364561,0.608411,2.255828,-0.361339,0.564476,2.260147,-0.318727,0.682844,2.269456,-0.365703,0.657202,2.248780,-0.448027,0.537411,2.199891,-0.409161,0.572914,2.229662,-0.413899,0.624774,2.225705,-0.458978,0.588514,2.200997,-0.532397,0.508145,2.158999,-0.498152,0.549534,2.176311,-0.507959,0.467933,2.155325,-0.481851,0.501932,2.174015,-0.636157,0.482154,2.107906,-0.608278,0.556664,2.124310,-0.602558,0.452606,2.117664,-0.584445,0.506436,2.137660,-0.567597,0.430108,2.124175,-0.555224,0.467362,2.140598,-0.530312,0.416447,2.126175,-0.523539,0.440118,2.138378,-0.501232,0.406832,2.120990,-0.496181,0.421007,2.132007,-0.483073,0.440620,2.145603,-0.463410,0.465891,2.166091,-0.435853,0.495926,2.196671,-0.401023,0.528995,2.229076,-0.145174,0.934727,2.400429,-0.115562,0.925217,2.398790,-0.115817,0.931274,2.421117,-0.146091,0.939398,2.422109,-0.119305,0.936919,2.446092,-0.150108,0.944782,2.445075,-0.117744,0.920489,2.377983,-0.146130,0.931964,2.380012,-0.167461,0.947020,2.361181,-0.176462,0.944574,2.341335,-0.174760,0.964994,2.362411,-0.185600,0.963877,2.340218,-0.166411,0.950249,2.402015,-0.164765,0.949076,2.381823,-0.176968,0.969076,2.405305,-0.172116,0.967566,2.385448,-0.173439,0.956303,2.441305,-0.169023,0.951683,2.421875,-0.186032,0.965642,2.437043,-0.182619,0.967554,2.423039,-0.257686,1.002961,2.447614,-0.275491,1.023962,2.469967,-0.224921,0.990509,2.458614,-0.243824,1.013854,2.486080,-0.254097,1.034598,2.498434,-0.279388,1.051986,2.486883,-0.215770,1.006423,2.503693,-0.235817,1.037613,2.515103,-0.198858,0.981573,2.482591,-0.169074,0.972154,2.495631,-0.184731,0.998179,2.521664,-0.204555,1.036825,2.540169,-0.199838,0.973721,2.445244,-0.183947,0.965488,2.461148,-0.157428,0.955419,2.469576,-0.124217,0.944271,2.473734,-0.132681,0.960776,2.504641,-0.142979,0.988992,2.537900,-0.155718,1.034382,2.564885,-0.243942,1.142952,2.525901,-0.227105,1.086681,2.542448,-0.168008,1.096631,2.576130,-0.174569,1.163908,2.561138,-0.262848,1.072726,2.511449,-0.287560,1.115169,2.491470,-0.299279,1.165909,2.460438,-0.335745,1.135761,2.419714,-0.250118,1.196932,2.497586,-0.249561,1.243902,2.465798,-0.297136,1.212823,2.424118,-0.329672,1.181720,2.378793,-0.170676,1.410872,2.388118,-0.171028,1.375438,2.415293,-0.225781,1.390930,2.350004,-0.231473,1.355315,2.379572,-0.239906,1.322296,2.409771,-0.172797,1.343759,2.442036,-0.175468,1.309126,2.468627,-0.177762,1.270319,2.498360,-0.246537,1.285088,2.437288,-0.177237,1.221757,2.530340,-0.138977,0.856946,2.298729,-0.143620,0.834028,2.295186,-0.135600,0.872771,2.307021,-1.244668,2.852020,1.362032,-1.255121,2.982668,1.208106,-1.367208,2.863122,1.063454,-1.348156,2.704050,1.220841,-1.509052,1.741520,0.648769,-1.498525,1.874423,0.783752,-1.501767,1.509743,0.689518,-1.492071,1.608250,0.852347,-1.411248,1.570054,1.209191,-1.452107,1.447221,1.059208,-1.427629,1.193964,1.069479,-1.410001,1.833902,1.172804,-1.454012,1.725541,1.022302,-1.480678,1.334493,0.865354,-1.452705,1.011754,0.835815,-1.487402,1.270971,0.693333,-1.470400,1.034586,0.665173,-1.459449,2.012680,0.955310,-1.402489,2.115744,1.131138,-1.230243,1.482127,1.531843,-1.245494,1.551859,1.497516,-1.182589,1.560744,1.551655,-1.200769,1.620042,1.529864,-1.218720,1.701040,1.527475,-1.256128,1.650870,1.479143,-1.189074,1.728098,1.571554,-1.209934,1.804667,1.596858,-1.240010,1.800293,1.548598,-1.216037,1.891967,1.632995,-1.242064,1.915403,1.576620,-1.168245,1.663884,1.564126,-1.147707,1.612339,1.574880,-0.354281,1.594630,1.881213,-0.399528,1.562599,1.868237,-0.388407,1.535550,1.905412,-0.343364,1.569791,1.925007,-0.455033,1.531912,1.860913,-0.441148,1.502093,1.889591,-0.432060,1.469640,1.925854,-0.382863,1.503359,1.946532,-0.339436,1.538387,1.970943,-0.338027,1.497791,2.013954,-0.300941,1.534585,2.044950,-0.301759,1.575401,1.997730,-0.338869,1.450258,2.053228,-0.303082,1.486575,2.087007,-0.343048,1.399338,2.089468,-0.307323,1.434763,2.123075,-0.347531,1.349017,2.121434,-0.312492,1.384599,2.155234,-0.282289,1.420328,2.195882,-0.277275,1.471751,2.163250,-0.319834,1.340713,2.185503,-0.289204,1.374972,2.226936,-0.350398,1.303737,2.149080,-0.350805,1.261631,2.173333,-0.323863,1.300494,2.211956,-0.297205,1.335026,2.255967,-0.459374,1.017970,2.186283,-0.451845,0.977596,2.191777,-0.459601,1.048548,2.156382,-0.457389,0.987474,2.158492,-0.425795,0.931983,2.218588,-0.427509,0.924799,2.194757,-0.418756,0.910941,2.167141,-0.437780,0.943888,2.124870,-0.442897,0.978583,2.078723,-0.460283,1.033647,2.114957,-0.453036,1.074663,2.070970,-0.484022,1.020920,2.048700,-0.451164,1.085141,2.127606,-0.428740,1.136196,2.145208,-0.411868,1.175705,2.119428,-0.439409,1.127426,2.097527,-0.493729,1.185506,2.036306,-0.449021,1.231577,2.049975,-0.459756,1.288825,2.022903,-0.509531,1.246348,2.012165,-0.412632,1.273731,2.068967,-0.417131,1.327200,2.039206,-0.420325,1.380296,2.003396,-0.467211,1.344388,1.987017,-0.522888,1.304370,1.976129,-0.437702,1.177089,2.069877,-0.473168,1.127046,2.045165,-0.407376,1.222954,2.093943,-0.408119,1.123517,2.232029,-0.401081,1.148358,2.198350,-0.413256,1.097168,2.266342,-0.385666,1.122296,2.294718,-0.372215,1.153945,2.257759,-0.363511,1.187282,2.226033,-0.357553,1.151366,2.333497,-0.365189,1.109585,2.373496,-0.392611,1.085118,2.333146,-0.413179,1.061407,2.299285,-0.328053,1.262833,2.237273,-0.305099,1.298742,2.283037,-0.354358,1.221944,2.198071,-0.333986,1.225909,2.264089,-0.312322,1.262734,2.310903,-0.265946,1.364749,2.302807,-0.273507,1.328104,2.331042,-0.281757,1.291953,2.360023,-0.291068,1.254594,2.390980,-0.319258,1.223507,2.342185,-0.346626,1.190402,2.296924,-0.387924,1.179454,2.168436,-0.378526,1.219703,2.142046,-0.378182,1.264570,2.118462,-0.380743,1.312651,2.093182,-0.379871,1.363825,2.061782,-0.379943,1.416317,2.026607,-0.426392,1.430375,1.966555,-0.379627,1.463495,1.986975,-0.513780,1.501662,1.856292,-0.498491,1.469123,1.879117,-0.575455,1.476724,1.853256,-0.560624,1.440300,1.869489,-0.547403,1.401890,1.899827,-0.487076,1.436209,1.911380,-0.475702,1.395314,1.948638,-0.535258,1.358233,1.937477,-0.518999,1.073036,2.038302,-0.573645,1.011297,2.043422,-0.547199,1.134353,2.032231,-0.610137,1.074755,2.035120,-0.570589,1.199606,2.010739,-0.642061,1.144413,2.011580,-0.590369,1.262527,1.974990,-0.666572,1.213987,1.972345,-0.636000,0.937110,2.047971,-0.705213,0.845804,2.046893,-0.681835,1.002208,2.035558,-0.762504,0.909532,2.027378,-0.771993,0.733508,2.031786,-0.820725,0.600493,2.009497,-0.840272,0.789800,1.998216,-0.894025,0.640316,1.962074,-0.909148,0.865612,1.943662,-0.978529,0.696012,1.889015,-0.815976,0.988417,1.989778,-0.854166,1.082214,1.943172,-0.960923,0.974680,1.884162,-0.723805,1.076981,2.008430,-0.753942,1.156502,1.964476,-0.681375,1.278278,1.926080,-0.770080,1.236168,1.917593,-0.692630,1.338025,1.886412,-0.778255,1.308904,1.874937,-0.874443,1.282353,1.856042,-0.870201,1.185296,1.896869,-0.976864,1.120152,1.848090,-0.973483,1.255103,1.817312,-0.874030,1.360910,1.819728,-0.961581,1.355073,1.781323,-0.871589,1.421186,1.793562,-0.947968,1.424582,1.754779,-1.014834,1.435187,1.710365,-1.041415,1.358183,1.733705,-0.703404,1.389920,1.856330,-0.786311,1.372754,1.844889,-0.716275,1.434534,1.840884,-0.793533,1.423620,1.823775,-0.603877,1.319067,1.931556,-0.616111,1.369661,1.893738,-0.628770,1.414652,1.864359,-0.642729,1.454552,1.850083,-0.589418,1.506860,1.849078,-0.655919,1.486299,1.842182,-0.728266,1.469586,1.832259,-1.110896,1.373103,1.684169,-1.073285,1.454711,1.666614,-1.120331,1.482210,1.623609,-1.161853,1.396577,1.627261,-1.156380,1.516635,1.583953,-1.202634,1.432362,1.575975,-1.122379,1.570848,1.597212,-1.088583,1.536049,1.629411,-0.991373,1.484895,1.704277,-1.042741,1.506244,1.665234,-0.800404,1.462578,1.811251,-0.870086,1.464585,1.779538,-0.934082,1.471666,1.742317,-0.530346,1.531499,1.849674,-0.475989,1.562194,1.847199,-0.423208,1.592034,1.848112,-0.380608,1.620964,1.852957,-0.172048,1.505165,2.325337,-0.172230,1.454060,2.358767,-0.217432,1.483020,2.287011,-0.221539,1.432811,2.319147,-0.250893,1.453352,2.240871,-0.256696,1.405107,2.272185,-0.247574,1.508041,2.207832,-0.217857,1.542032,2.254188,-0.176778,1.627671,2.249172,-0.174383,1.565693,2.290276,-0.177602,1.687555,2.202472,-0.179649,1.748144,2.159080,-0.272647,1.955676,2.111211,-0.249706,1.908320,2.086818,-0.186221,1.911100,2.125656,-0.195548,1.959629,2.139551,-0.235492,1.857575,2.073621,-0.181181,1.860594,2.120359,-0.178330,1.805616,2.128452,-0.227148,1.800565,2.076566,-0.361128,1.842495,1.890163,-0.400960,1.898311,1.932980,-0.316634,1.856334,1.943471,-0.353330,1.908682,1.978573,-0.409196,1.956657,2.033945,-0.467384,1.955169,1.989714,-0.276785,1.750987,1.917900,-0.279211,1.703514,1.912601,-0.256454,1.688924,1.983643,-0.250076,1.745129,2.001877,-0.294909,1.662815,1.904809,-0.276515,1.643149,1.964383,-0.320405,1.627694,1.894428,-0.306623,1.605058,1.945470,-0.350227,1.650002,1.858173,-0.328830,1.678470,1.859016,-0.316459,1.710474,1.858337,-0.317467,1.748196,1.860398,-0.334486,1.791892,1.866762,-0.291123,1.803110,1.924827,-0.275624,1.857284,2.010946,-0.258000,1.802930,2.004199,-0.303351,1.909549,2.034452,-0.342808,1.957015,2.073110,-0.399432,2.004572,2.121902,-0.485191,2.004088,2.094749,-0.307214,2.011031,2.140027,-0.350176,2.089814,2.176168,-0.454885,2.093024,2.152542,-0.556948,2.093048,2.125612,-0.427615,2.364431,2.176319,-0.284666,2.358117,2.169159,-0.301501,2.521178,2.107037,-0.456317,2.521506,2.113343,-0.316234,2.731622,2.089842,-0.488644,2.718049,2.085367,-0.237044,2.090830,2.186971,-0.264718,2.208686,2.206464,-0.394759,2.210194,2.203293,-0.672035,2.367032,2.119599,-0.556536,2.366540,2.157154,-0.591767,2.522451,2.100562,-0.708373,2.521597,2.064608,-0.634872,2.707753,2.062332,-0.757537,2.700320,2.018464,-0.623033,2.216829,2.141475,-0.726611,2.219929,2.094105,-0.656506,2.088671,2.092684,-0.773419,2.367294,2.065407,-0.871049,2.362306,1.998189,-0.831563,2.220520,2.035492,-0.564183,1.998610,2.066006,-0.967804,2.343897,1.923806,-0.938115,2.212378,1.965831,-1.056710,2.300576,1.838985,-1.032101,2.177221,1.888671,-1.145554,2.559346,1.665167,-1.091427,2.425293,1.767548,-1.002028,2.479812,1.859204,-1.052655,2.629977,1.770730,-0.908117,2.507304,1.941912,-0.958066,2.668821,1.868072,-1.265615,2.297586,1.475861,-1.217772,2.446360,1.558324,-1.288489,2.570055,1.392919,-1.340177,2.371624,1.312725,-1.204261,2.713822,1.516552,-1.188423,2.137486,1.675889,-1.164184,2.050109,1.737165,-1.109905,2.119304,1.810983,-1.131951,2.229312,1.751790,-1.199000,1.975468,1.676957,-1.223224,2.031762,1.616513,-1.363522,1.900067,1.301320,-1.348523,2.139096,1.293866,-1.315167,1.927782,1.410914,-1.294239,2.120564,1.428559,-1.270680,1.780719,1.484160,-1.310344,1.739014,1.407545,-1.270869,1.930327,1.501427,-1.359071,1.670022,1.318568,-1.251432,2.082700,1.534762,-1.218284,2.221141,1.591866,-1.163376,2.336980,1.672215,-0.504990,3.127957,1.876367,-0.499378,2.939885,1.997213,-0.315791,2.959805,2.014834,-0.316780,3.149045,1.906254,-0.794895,3.080286,1.771493,-0.782315,2.905929,1.912782,-0.653280,2.921189,1.963703,-0.661081,3.103076,1.829155,-0.315471,3.302114,1.773207,-0.506154,3.279194,1.737746,-0.799443,3.217402,1.618849,-0.665561,3.250326,1.684762,-1.141478,3.068234,1.335704,-1.132898,2.946059,1.489269,-1.023868,3.008541,1.601734,-1.032805,3.132265,1.448400,-0.919500,3.179381,1.541362,-0.914274,3.051714,1.696825,-1.103594,2.803656,1.638773,-1.000087,2.856758,1.748057,-0.896997,2.888496,1.841619,-0.862152,2.689087,1.951024,-0.811551,2.518223,2.011060,-0.512515,2.213830,2.177107,-0.211540,2.014278,2.158314,0.728725,0.351793,1.900934,0.737058,0.202128,1.859799,0.789224,0.157554,1.775208,0.787567,0.338428,1.834149,0.727699,0.068208,1.811886,0.769780,0.003531,1.718509,0.800674,-0.067261,1.606527,0.850076,0.100235,1.654088,0.862657,0.311902,1.718811,0.554711,0.467401,2.028789,0.599562,0.476236,2.002182,0.513707,0.458148,2.051183,0.536317,0.385546,2.031600,0.581915,0.378610,2.009633,0.629266,0.369851,1.982256,1.082281,0.285049,0.677068,1.007117,0.147673,0.775211,0.963782,0.061284,0.641880,1.047526,0.188617,0.547421,0.930677,0.005492,0.899979,0.884264,-0.075992,0.773497,0.901728,0.039188,1.495165,0.950606,0.269204,1.543760,0.818220,-0.136383,1.485639,0.817000,-0.199767,1.363261,0.918740,-0.023567,1.317164,1.017989,0.231732,1.284410,1.064665,0.239530,0.927450,0.982386,0.081357,1.050923,1.133127,0.410555,0.818936,1.165895,0.588918,0.986601,1.108212,0.405935,1.109759,1.156208,0.805831,1.151635,1.101997,0.656176,1.277993,1.034784,0.556923,1.438702,0.949234,0.533817,1.616760,0.854061,0.537258,1.767746,0.790232,-0.261961,1.248689,0.896487,-0.093570,1.155653,0.739606,-0.332831,1.146274,0.845355,-0.162311,1.022927,0.786756,-0.251417,0.907010,0.673701,-0.430515,1.054327,0.370922,0.420034,2.093938,0.404909,0.425795,2.089172,0.375262,0.401897,2.079031,0.412804,0.396988,2.071681,0.451946,0.394232,2.063106,0.438903,0.435177,2.082386,0.475047,0.446814,2.069271,0.493085,0.390370,2.050608,0.344018,0.419429,2.093070,0.348188,0.409322,2.079571,0.642743,0.265785,1.960509,0.688644,0.236920,1.917250,0.677143,0.361320,1.946300,0.635812,0.169264,1.936619,0.681779,0.122811,1.883781,0.547096,0.316260,2.014011,0.594854,0.292248,1.989980,0.541812,0.250054,1.998795,0.589840,0.210440,1.972534,-0.008702,-0.524129,1.970599,0.142577,-0.513849,1.949863,0.162335,-0.467568,2.073043,0.002122,-0.480603,2.100356,0.273473,-0.483596,1.903544,0.296732,-0.428010,2.008136,0.304602,-0.343762,2.089596,0.170708,-0.378175,2.169958,0.010199,-0.396353,2.213349,-0.020009,-0.566617,1.859861,0.118935,-0.553546,1.839356,-0.039334,-0.619665,1.765903,0.082631,-0.610382,1.749585,0.190930,-0.592374,1.711466,0.242550,-0.527870,1.799464,0.375664,-0.441844,1.837860,0.398587,-0.381644,1.931041,0.463598,-0.390491,1.763594,0.481843,-0.324999,1.848780,0.480190,-0.251094,1.922752,0.402406,-0.301634,2.005188,0.343427,-0.494411,1.744135,0.294801,-0.563432,1.661142,0.395513,-0.525402,1.604096,0.434163,-0.453298,1.679726,0.731113,-0.182491,1.603119,0.721288,-0.256000,1.509300,0.652314,-0.262082,1.633630,0.624901,-0.338950,1.554807,0.590339,-0.413118,1.479727,0.700886,-0.323547,1.419326,0.696194,-0.036594,1.788938,0.726642,-0.105706,1.698537,0.642103,-0.117136,1.800299,0.666657,-0.185335,1.716417,0.529862,-0.403283,1.614754,0.558723,-0.330268,1.691046,0.489916,-0.476378,1.541197,0.564115,-0.189491,1.849808,0.573467,-0.257644,1.770549,0.609637,0.085048,1.921012,0.654711,0.026491,1.865431,0.565019,0.012158,1.926921,0.606781,-0.052739,1.874291,0.522250,0.187298,1.992146,0.566039,0.137341,1.961774,0.490081,0.129718,2.001651,0.528494,0.071876,1.970476,0.446133,0.077990,2.028257,0.476376,0.015529,1.997330,0.388010,0.036242,2.061595,0.412702,-0.029432,2.036757,0.438412,-0.099554,2.010112,0.507409,-0.049797,1.960702,0.345540,0.396930,2.073499,0.371706,0.382211,2.069039,0.338092,0.385470,2.074951,0.362360,0.365834,2.065491,0.454821,0.355664,2.048151,0.499885,0.337888,2.032520,0.447697,0.319048,2.037082,0.494367,0.286635,2.020258,0.410082,0.368704,2.059132,0.398573,0.343171,2.050795,0.476882,0.236871,2.017811,0.432111,0.281902,2.037024,0.408974,0.244339,2.052039,0.449959,0.188887,2.029738,0.381369,0.318173,2.054219,0.347262,0.351253,2.067474,0.330246,0.333840,2.081797,0.363554,0.292117,2.072690,0.326135,0.375330,2.077297,0.309754,0.364329,2.088855,0.285605,0.353015,2.117647,0.309210,0.313533,2.110859,0.246846,0.340404,2.159117,0.271901,0.290338,2.152731,0.338460,0.263095,2.096724,0.374290,0.205746,2.076922,0.299050,0.231831,2.133099,0.328422,0.168397,2.109747,0.411011,0.142288,2.054502,0.359700,0.102136,2.085770,0.268902,0.138144,2.138925,0.294942,0.072324,2.116086,0.191645,0.115684,2.166725,0.210225,0.052188,2.146730,0.228222,-0.014102,2.139817,0.318434,0.006086,2.098943,0.342507,-0.062151,2.087589,0.365949,-0.135712,2.073788,0.251071,-0.082246,2.144634,0.275471,-0.158279,2.148677,0.537808,-0.119245,1.912758,0.463806,-0.174183,1.975994,0.387935,-0.216254,2.050030,0.296293,-0.247806,2.136076,0.167408,-0.268847,2.219216,0.154950,-0.166815,2.229976,0.004119,-0.172014,2.270527,0.009131,-0.277861,2.262215,0.137137,-0.087127,2.217030,0.117847,-0.023592,2.195622,-0.008196,-0.028611,2.236532,-0.002039,-0.092888,2.259252,0.089496,0.101798,2.188140,0.101743,0.038315,2.181094,-0.023869,0.094029,2.197084,-0.015699,0.029057,2.207651,0.156034,0.249366,2.229692,0.172800,0.179940,2.195478,0.244091,0.203713,2.166186,0.221198,0.268362,2.192782,0.196626,0.328072,2.206644,0.134327,0.321082,2.249895,0.045678,0.308834,2.288559,-0.056792,0.301112,2.294671,-0.044581,0.232860,2.243245,0.061614,0.234262,2.251378,0.076541,0.163866,2.215770,-0.033378,0.159958,2.212655,1.160850,0.595059,0.448030,1.189302,0.676244,0.529891,1.171376,0.565121,0.561290,1.142103,0.472981,0.466655,1.112560,0.331625,0.497123,1.138843,0.429514,0.609705,1.190060,0.979835,1.052809,1.207270,0.781225,0.884977,1.179282,0.583069,0.733876,1.210255,0.728246,0.663092,1.225292,0.820179,0.601490,0.648933,0.487878,1.969705,0.705011,0.504097,1.927226,0.772045,0.523764,1.866306,0.277392,-0.654356,1.502862,0.338091,-0.601605,1.538899,0.218030,-0.646499,1.591542,0.145277,-0.706142,1.523643,0.098420,-0.671725,1.646373,-0.080152,-0.723456,1.586058,0.035329,-0.657364,1.689836,-0.061061,-0.672073,1.686785,-0.077912,-0.784226,1.392198,-0.076450,-0.797680,1.336223,0.155703,-0.763401,1.311400,0.162896,-0.748755,1.371578,0.378108,-0.663526,1.281837,0.425302,-0.611441,1.358189,0.539529,-0.554650,1.198413,0.604485,-0.470304,1.263812,0.662307,-0.393108,1.336312,0.538014,-0.494088,1.412493,0.436005,-0.556254,1.480270,0.331748,-0.645283,1.443586,0.141583,-0.734794,1.444609,-0.081303,-0.766167,1.468251,-0.829974,-0.218866,1.693059,-0.796830,-0.150100,1.812730,-0.890850,0.032043,1.826100,-0.953522,-0.026416,1.704408,-0.765631,-0.072567,1.896545,-0.840067,0.088826,1.907349,-0.891209,0.273643,1.929801,-0.954209,0.251322,1.855429,-1.031414,0.224454,1.742498,-0.682923,0.339610,2.060506,-0.688089,0.424286,2.075394,-0.733438,0.434145,2.057249,-0.729642,0.328572,2.042027,-0.782250,0.443356,2.028594,-0.778728,0.313383,2.015125,-1.024665,-0.165846,0.779546,-1.111436,-0.015550,0.662310,-1.082630,-0.070863,0.888810,-1.176269,0.091215,0.780430,-1.262082,0.248671,0.690675,-1.198138,0.135206,0.568707,-0.893080,-0.317947,1.388050,-0.868148,-0.273641,1.547829,-1.017552,-0.078121,1.536849,-1.055856,-0.126715,1.337702,-1.125818,0.191580,1.569464,-1.214658,0.179992,1.314467,-1.366834,0.590325,1.034847,-1.329199,0.398508,0.849968,-1.256021,0.216489,0.948062,-1.316356,0.396947,1.150497,-1.162325,0.020410,1.053047,-1.326980,0.652378,1.308866,-1.255065,0.537719,1.454172,-1.368923,0.811584,1.195655,-1.072896,0.497447,1.761091,-1.166360,0.500858,1.618557,-0.982298,-0.246905,1.009460,-1.032905,-0.183127,1.148202,-0.859873,-0.414622,1.133043,-0.886972,-0.360107,1.245354,-0.814371,-0.485940,1.047201,-0.932964,-0.330338,0.911770,-0.601434,0.358009,2.081570,-0.561943,0.367186,2.093062,-0.569388,0.396466,2.108710,-0.609765,0.402977,2.101568,-0.526011,0.378157,2.096901,-0.529566,0.393576,2.115900,-0.639780,0.348933,2.072293,-0.647467,0.413252,2.090623,-0.501133,0.393820,2.108059,-0.500013,0.384666,2.090934,-0.730903,0.004311,1.951764,-0.793594,0.140680,1.963514,-0.699546,0.072918,1.991928,-0.749120,0.186955,2.001307,-0.831795,0.295041,1.978925,-0.665167,0.133786,2.020932,-0.704933,0.226973,2.025015,-0.626507,0.186951,2.040553,-0.656802,0.260536,2.037960,-0.287490,-0.394008,2.165487,-0.280492,-0.464476,2.067907,-0.155782,-0.481031,2.099787,-0.156478,-0.400095,2.206354,-0.269979,-0.510216,1.949282,-0.152675,-0.523625,1.972405,-0.250978,-0.607420,1.743058,-0.154683,-0.615747,1.766140,-0.153278,-0.563293,1.859826,-0.262155,-0.550004,1.838089,-0.459768,-0.367101,2.053581,-0.452141,-0.438748,1.965362,-0.373491,-0.452868,2.020075,-0.381110,-0.382009,2.110286,-0.433078,-0.482756,1.856201,-0.357650,-0.497710,1.909235,-0.421662,-0.587828,1.657087,-0.336886,-0.599720,1.705179,-0.346560,-0.539383,1.800635,-0.423115,-0.527068,1.749864,-0.618662,-0.523298,1.528040,-0.608018,-0.468682,1.637220,-0.725552,-0.396138,1.586492,-0.747674,-0.446916,1.457206,-0.596432,-0.413588,1.751498,-0.701968,-0.343113,1.716345,-0.604742,-0.359588,1.862040,-0.692775,-0.279503,1.829994,-0.604366,-0.281872,1.945777,-0.682817,-0.197400,1.912480,-0.514367,-0.567650,1.597471,-0.509120,-0.508307,1.693705,-0.511024,-0.457744,1.800846,-0.527500,-0.409408,1.909013,-0.534747,-0.337114,1.997005,-0.596846,-0.193736,2.007176,-0.661599,-0.108669,1.966823,-0.575809,-0.102274,2.041180,-0.638304,-0.025168,2.005371,-0.552750,-0.017769,2.061087,-0.613459,0.050791,2.033439,-0.532792,0.060160,2.079465,-0.586277,0.119336,2.055034,-0.442059,-0.190501,2.138912,-0.421463,-0.102890,2.146957,-0.488496,-0.069310,2.101468,-0.511524,-0.156845,2.088229,-0.398144,-0.020087,2.143409,-0.467901,0.012823,2.110191,-0.492237,0.373021,2.089198,-0.480804,0.362484,2.094703,-0.515986,0.360493,2.088943,-0.501760,0.342390,2.090982,-0.588122,0.234814,2.055578,-0.615955,0.289669,2.052511,-0.557142,0.277871,2.066617,-0.581732,0.317434,2.066322,-0.546600,0.342265,2.081089,-0.527386,0.314340,2.080621,-0.496446,0.199026,2.110334,-0.531875,0.238494,2.084920,-0.558225,0.181765,2.074771,-0.514219,0.132448,2.096246,-0.457938,0.308902,2.126637,-0.483610,0.324967,2.102952,-0.507287,0.287619,2.097668,-0.479147,0.259309,2.121087,-0.465385,0.354180,2.105544,-0.438575,0.344683,2.126462,-0.402887,0.335170,2.164651,-0.356396,0.322542,2.207565,-0.418808,0.287825,2.165660,-0.366416,0.265024,2.208820,-0.432767,0.227747,2.156719,-0.371933,0.200348,2.192436,-0.441876,0.161817,2.141334,-0.372328,0.132915,2.164341,-0.451775,0.090398,2.122533,-0.380894,0.059095,2.147101,-0.239776,-0.043671,2.208674,-0.224511,0.030711,2.185954,-0.306212,0.040236,2.164955,-0.324514,-0.038560,2.174352,-0.219608,0.101248,2.194821,-0.300156,0.112414,2.185072,-0.347698,-0.119944,2.189160,-0.259593,-0.120438,2.234361,-0.367141,-0.206772,2.189375,-0.276497,-0.207407,2.242967,-0.457419,-0.281622,2.112202,-0.529001,-0.248942,2.056354,-0.380244,-0.297269,2.167938,-0.285374,-0.301625,2.221320,-0.149507,-0.192393,2.278616,-0.154490,-0.295828,2.266841,-0.134144,-0.037820,2.238699,-0.142725,-0.106628,2.265545,-0.126822,0.027419,2.206065,-0.126499,0.096752,2.193788,-0.303433,0.179037,2.219843,-0.222272,0.167383,2.228182,-0.227087,0.240232,2.263860,-0.304962,0.249667,2.248566,-0.298346,0.315005,2.254941,-0.229563,0.310985,2.286402,-0.147288,0.304384,2.296933,-0.138396,0.233354,2.255139,-0.132176,0.163303,2.218375,-1.380668,0.562278,0.558439,-1.402903,0.679220,0.515141,-1.364356,0.586289,0.442618,-1.329432,0.453683,0.470052,-1.336240,0.413109,0.617863,-1.273496,0.298791,0.511057,-1.400678,0.987872,1.113389,-1.410504,0.786201,0.936862,-1.421013,0.738094,0.673943,-1.386840,0.580753,0.760799,-1.436788,0.831590,0.597032,-0.839363,0.452766,1.989912,-0.908952,0.464565,1.940142,-0.987019,0.482198,1.866569,-0.306228,-0.662625,1.624156,-0.208144,-0.670501,1.664902,-0.403867,-0.645280,1.579902,-0.371713,-0.682770,1.532901,-0.272428,-0.710012,1.551142,-0.144226,-0.659944,1.701891,-0.297991,-0.770271,1.334078,-0.506120,-0.699204,1.274787,-0.299155,-0.753097,1.397659,-0.525195,-0.660594,1.366406,-0.675752,-0.603296,1.172447,-0.714084,-0.546338,1.249701,-0.604856,-0.579170,1.435674,-0.740860,-0.492045,1.341633,-0.424534,-0.680688,1.473571,-0.494937,-0.622334,1.516905,-0.278090,-0.737009,1.473258,0.632533,1.940624,1.508006,0.638564,1.951762,1.553109,0.553221,1.985484,1.564730,0.550273,1.971723,1.513747,0.642379,1.959105,1.590201,0.555787,1.991043,1.609346,0.460594,1.990305,1.617035,0.460260,1.985587,1.565451,0.462347,1.970112,1.509534,0.372432,1.952461,1.611279,0.373569,1.948625,1.555687,0.306448,1.886948,1.601371,0.307015,1.882414,1.542996,0.315766,1.870032,1.480653,0.380313,1.934128,1.496353,0.270517,1.805797,1.598606,0.269591,1.796945,1.535188,0.258300,1.718016,1.615444,0.258674,1.703484,1.532778,0.266575,1.694042,1.461833,0.277952,1.786460,1.468897,0.271537,1.632810,1.599603,0.271295,1.613249,1.532228,0.300252,1.565089,1.614017,0.305106,1.531032,1.537999,0.315650,1.516253,1.463807,0.279918,1.601838,1.459691,0.359496,1.460295,1.548420,0.368958,1.442786,1.473662,0.358893,1.497049,1.613000,0.425551,1.452165,1.617743,0.428193,1.407639,1.558550,0.434601,1.386081,1.484102,0.502991,1.375112,1.563787,0.506771,1.349692,1.489709,0.496776,1.423759,1.622729,0.568368,1.412671,1.622728,0.575261,1.361702,1.562310,0.575907,1.333733,1.488534,0.682829,1.434902,1.594259,0.685087,1.381558,1.535723,0.637037,1.365685,1.552125,0.632299,1.418037,1.612810,0.678878,1.352011,1.467202,0.633693,1.336467,1.479976,0.744912,1.480624,1.550606,0.746241,1.431839,1.502706,0.720435,1.403998,1.518304,0.719095,1.456432,1.572002,0.738621,1.405205,1.444051,0.713001,1.375120,1.454403,0.763739,1.507847,1.532318,0.765104,1.465086,1.490597,0.777494,1.538798,1.518581,0.778969,1.503052,1.482674,0.771936,1.483017,1.435722,0.757903,1.441703,1.437896,0.781930,1.692811,1.454071,0.788820,1.704984,1.486663,0.776347,1.764354,1.497367,0.768915,1.753305,1.464521,0.789289,1.724313,1.510771,0.777655,1.780551,1.522114,0.752905,1.841398,1.539984,0.750755,1.827788,1.513054,0.742986,1.817101,1.477801,0.787089,1.578381,1.440196,0.794365,1.594755,1.478466,0.794370,1.648341,1.480477,0.787373,1.634072,1.445942,0.794302,1.624964,1.510208,0.794192,1.672530,1.505598,0.787264,1.575030,1.510505,0.788848,1.545775,1.478952,0.781665,1.528095,1.436730,0.698077,1.883811,1.493943,0.705383,1.894240,1.533542,0.708629,1.904591,1.564494,0.290439,1.686235,1.401688,0.302009,1.771189,1.409966,0.330606,1.677675,1.353661,0.342338,1.751271,1.361767,0.374159,1.816594,1.374836,0.337768,1.847116,1.423185,0.385204,1.666633,1.317616,0.397306,1.727465,1.325033,0.445917,1.653987,1.294876,0.457583,1.700180,1.300884,0.506690,1.740323,1.309339,0.426561,1.781716,1.337113,0.508953,1.540189,1.287883,0.460058,1.601861,1.291422,0.399573,1.600899,1.314798,0.427457,1.538025,1.317298,0.343679,1.600589,1.350795,0.374172,1.527916,1.354501,0.337704,1.517971,1.402310,0.303499,1.599394,1.398610,0.444009,1.394541,1.421457,0.385725,1.448460,1.411672,0.456758,1.419769,1.373427,0.411683,1.466872,1.363763,0.474462,1.449558,1.335747,0.448771,1.487223,1.326404,0.491709,1.469334,1.314279,0.490330,1.496059,1.302988,0.516063,1.457027,1.313545,0.524798,1.481459,1.298591,0.540693,1.441229,1.318486,0.554690,1.452238,1.309884,0.571928,1.464374,1.303186,0.540366,1.497490,1.290906,0.562338,1.372114,1.378174,0.550925,1.410796,1.340789,0.511941,1.424287,1.340212,0.510122,1.387735,1.378653,0.508888,1.358825,1.426538,0.570906,1.342168,1.425517,0.661782,1.357800,1.407650,0.621817,1.343656,1.418257,0.637082,1.385729,1.362686,0.604243,1.373067,1.371926,0.581374,1.413036,1.335397,0.605840,1.424663,1.327755,0.686901,1.430623,1.347250,0.647050,1.461430,1.315162,0.627764,1.440583,1.320546,0.664078,1.405081,1.353732,0.603974,1.491623,1.294376,0.589712,1.475819,1.298196,0.718056,1.408448,1.390077,0.693068,1.379623,1.397479,0.395551,1.906154,1.440474,0.420701,1.869303,1.392200,0.479593,1.901964,1.407972,0.468577,1.940469,1.455742,0.548217,1.944155,1.462978,0.547182,1.907898,1.416575,0.613140,1.886744,1.416789,0.623993,1.917530,1.461053,0.685198,1.865613,1.451207,0.665973,1.842420,1.409261,0.702505,1.788400,1.398369,0.727321,1.803379,1.438472,0.729663,1.583011,1.354793,0.725510,1.538666,1.348687,0.761775,1.526870,1.391472,0.767194,1.575104,1.397421,0.718748,1.498461,1.345543,0.752283,1.483478,1.388016,0.583015,1.622206,1.290937,0.613020,1.570559,1.291627,0.671815,1.557290,1.314182,0.670632,1.599181,1.318735,0.619563,1.537506,1.291542,0.671645,1.519907,1.312543,0.570589,1.543873,1.283060,0.572777,1.567138,1.283277,0.540551,1.584819,1.282667,0.616542,1.511463,1.292289,0.662958,1.487814,1.312665,0.705677,1.462100,1.344755,0.737776,1.443663,1.387164,0.579885,1.525385,1.284400,0.562970,1.514541,1.285243,0.503243,1.608053,1.283526,0.504949,1.640657,1.285699,0.539809,1.680799,1.293228,0.501212,1.674492,1.290353,0.619993,1.661184,1.304785,0.576608,1.685316,1.297907,0.632990,1.695795,1.315353,0.577522,1.712312,1.304496,0.733844,1.682946,1.375917,0.687516,1.686076,1.340351,0.680428,1.642282,1.328607,0.733897,1.631674,1.364452,0.768761,1.628736,1.405952,0.764781,1.685374,1.416059,0.621949,1.764397,1.334269,0.634760,1.729333,1.324874,0.683570,1.730014,1.351511,0.667096,1.774683,1.362197,0.724351,1.735012,1.387250,0.752375,1.743210,1.426796,0.599310,1.854314,1.379807,0.639304,1.819078,1.372754,0.585338,1.829609,1.356819,0.603151,1.801227,1.345722,0.591780,1.732320,1.312353,0.569310,1.757183,1.317868,0.495739,1.861712,1.370439,0.547077,1.868943,1.378577,0.513576,1.832018,1.349109,0.549168,1.831329,1.351019,0.555204,1.793979,1.331568,0.503688,1.800468,1.332846,0.457103,1.830112,1.354642,0.560809,1.500052,1.288579,0.284920,1.685498,1.789514,0.272599,1.689758,1.795661,0.273070,1.686494,1.799342,0.291995,1.679221,1.793281,0.261692,1.696789,1.798226,0.257576,1.693968,1.799291,0.257353,1.694145,1.803680,0.278249,1.686093,1.805229,0.314315,1.671548,1.804731,0.256573,1.693299,1.808640,0.244992,1.697558,1.809156,0.247660,1.700727,1.802435,0.250111,1.707000,1.807487,0.246348,1.702734,1.815269,0.616736,1.591987,1.812004,0.558054,1.587449,1.833330,0.663281,1.608375,1.785444,0.658335,1.593474,1.761990,0.610529,1.570795,1.788244,0.550192,1.563820,1.807542,0.485080,1.572820,1.820271,0.493155,1.594552,1.847968,0.422382,1.605419,1.824030,0.429112,1.622856,1.848326,0.367270,1.643426,1.817462,0.369876,1.654716,1.836251,0.318080,1.674806,1.820272,0.416182,1.587685,1.764723,0.418817,1.597726,1.793936,0.476919,1.566233,1.788778,0.472776,1.561514,1.759566,0.539501,1.556872,1.774799,0.534414,1.550805,1.745684,0.599698,1.565289,1.753821,0.651540,1.586683,1.728841,0.649462,1.571378,1.696528,0.595765,1.555782,1.723232,0.761811,1.734598,1.647962,0.751357,1.697930,1.680208,0.735220,1.682005,1.711040,0.746899,1.737369,1.674697,0.745970,1.669097,1.712663,0.731463,1.647387,1.742944,0.710773,1.630826,1.777893,0.713193,1.667137,1.744796,0.723403,1.743471,1.707410,0.783705,1.727071,1.572144,0.780329,1.724508,1.597892,0.780171,1.746021,1.604620,0.784397,1.755520,1.578520,0.773189,1.716669,1.622596,0.771000,1.727331,1.630462,0.771682,1.766632,1.618813,0.778422,1.785769,1.592287,0.758349,1.690711,1.641379,0.767320,1.705582,1.627693,0.774750,1.706062,1.600608,0.765566,1.688412,1.611333,0.777594,1.703568,1.573774,0.769060,1.683126,1.579182,0.736565,1.660111,1.682386,0.747427,1.675313,1.660523,0.752984,1.670566,1.627933,0.739294,1.652024,1.648170,0.757717,1.662097,1.592034,0.743090,1.641348,1.609816,0.694202,1.625789,1.763069,0.713314,1.639162,1.743287,0.708794,1.630598,1.721977,0.688593,1.616153,1.740103,0.724319,1.644982,1.703311,0.723334,1.636025,1.668364,0.706219,1.619805,1.688028,0.726851,1.622107,1.630391,0.707971,1.604481,1.651679,0.684845,1.604950,1.707277,0.684407,1.588948,1.673226,0.726139,1.650152,1.724004,0.736113,1.660585,1.704193,0.743915,1.673317,1.683992,0.753172,1.685957,1.665418,0.761634,1.697138,1.650953,0.764742,1.703469,1.644470,0.762479,1.704000,1.657860,0.757230,1.683489,1.687842,0.260236,1.704848,1.819846,0.256918,1.695128,1.830616,0.261515,1.712598,1.811740,0.281674,1.721389,1.814200,0.284641,1.702061,1.822174,0.281224,1.685012,1.835236,0.251256,1.703065,1.798282,0.250968,1.711355,1.805007,0.256663,1.703912,1.799689,0.255122,1.714308,1.800880,0.266736,1.698730,1.798929,0.261122,1.705735,1.800266,0.271852,1.701711,1.802387,0.269242,1.708513,1.802262,0.267640,1.718340,1.801771,0.260020,1.716098,1.801706,0.260758,1.721275,1.808659,0.260212,1.727230,1.808124,0.267573,1.748873,1.804457,0.274478,1.738594,1.809569,0.267043,1.728899,1.801885,0.260253,1.728664,1.802013,0.266107,1.736851,1.802041,0.263586,1.740537,1.802646,0.290687,1.701041,1.795422,0.280689,1.700353,1.802903,0.276577,1.692977,1.799447,0.288254,1.690613,1.793046,0.295471,1.705835,1.777402,0.296098,1.703477,1.785321,0.295611,1.691962,1.781482,0.291640,1.697979,1.769871,0.291724,1.682375,1.776575,0.288407,1.682271,1.754372,0.280116,1.710692,1.802556,0.276651,1.720922,1.800897,0.290456,1.713819,1.798392,0.285661,1.724767,1.798787,0.273554,1.743588,1.794852,0.269095,1.739544,1.799215,0.272246,1.730928,1.800610,0.278628,1.734293,1.797000,0.353360,1.661167,1.864540,0.351848,1.695088,1.844424,0.411134,1.684883,1.856939,0.414939,1.645093,1.886603,0.347386,1.743733,1.824685,0.407127,1.751203,1.827848,0.489558,1.754654,1.821125,0.496137,1.670533,1.855152,0.496103,1.626509,1.889953,0.571789,1.662605,1.839441,0.567901,1.617290,1.874858,0.570411,1.760094,1.807919,0.637829,1.762033,1.777682,0.635199,1.662847,1.811504,0.627250,1.616285,1.847264,0.681318,1.664164,1.778581,0.687578,1.754788,1.742577,0.675147,1.621679,1.812794,0.755983,1.786617,1.641092,0.764936,1.818257,1.614482,0.731597,1.809629,1.670821,0.738263,1.854452,1.641576,0.691738,1.834389,1.705955,0.696534,1.890938,1.675225,0.633521,1.853540,1.744088,0.635172,1.919449,1.712557,0.560750,1.856238,1.774786,0.477260,1.843072,1.794519,0.470076,1.912095,1.765087,0.556627,1.928545,1.745859,0.395599,1.818661,1.805544,0.333010,1.789176,1.810415,0.311431,1.817483,1.779863,0.388816,1.873053,1.773140,0.297334,1.760973,1.807466,0.309767,1.733477,1.818066,0.283750,1.776158,1.798098,0.310648,1.673342,1.845675,0.314316,1.699296,1.829119,0.788316,1.751536,1.560093,0.786817,1.720255,1.554719,0.783185,1.788174,1.571959,0.785876,1.775924,1.551780,0.791040,1.735240,1.542714,0.790140,1.702783,1.540288,0.734877,1.606983,1.604276,0.715329,1.587886,1.626674,0.751250,1.628338,1.583817,0.761534,1.609234,1.564267,0.746325,1.587206,1.584243,0.727173,1.567150,1.607502,0.690932,1.569889,1.649836,0.654526,1.552583,1.674337,0.702435,1.547722,1.632367,0.665344,1.528919,1.658019,0.600093,1.538603,1.700798,0.536523,1.537071,1.721546,0.610592,1.513524,1.682266,0.544528,1.511528,1.698650,0.416657,1.548770,1.705143,0.415032,1.573634,1.736542,0.472469,1.549413,1.732888,0.477531,1.525110,1.704832,0.781906,1.695213,1.553762,0.774775,1.673680,1.557452,0.786820,1.679593,1.539325,0.781881,1.657162,1.541618,0.764870,1.651195,1.567792,0.773637,1.633182,1.549876,0.261257,1.706961,1.691003,0.265905,1.715203,1.721657,0.272702,1.691074,1.720895,0.269219,1.676845,1.688487,0.272315,1.720917,1.746166,0.278578,1.701533,1.747446,0.281985,1.667824,1.721830,0.278424,1.649268,1.689883,0.465278,1.974475,1.709113,0.467959,1.952752,1.737432,0.389091,1.908600,1.738811,0.385557,1.930164,1.707063,0.327750,1.858679,1.737544,0.323181,1.877436,1.701911,0.644742,1.969691,1.660666,0.639594,1.953889,1.688109,0.557407,1.969348,1.721134,0.558518,1.988572,1.692446,0.702685,1.918749,1.650861,0.744615,1.874401,1.617195,0.708764,1.925946,1.624333,0.750271,1.874264,1.591866,0.770111,1.829592,1.590997,0.774014,1.822929,1.567889,0.794031,1.705575,1.527390,0.793660,1.672680,1.529455,0.789170,1.750871,1.533680,0.757211,1.553785,1.562662,0.738718,1.531438,1.584533,0.771016,1.578405,1.545214,0.713351,1.509998,1.609191,0.676113,1.489024,1.634845,0.623123,1.472360,1.656082,0.557182,1.467689,1.667959,0.421806,1.504720,1.665906,0.487374,1.479261,1.669188,0.784303,1.660595,1.528700,0.788034,1.636187,1.530040,0.781465,1.606304,1.534180,0.259042,1.697731,1.657099,0.269555,1.655500,1.650083,0.280232,1.619559,1.655618,0.461865,1.987914,1.670302,0.374869,1.947478,1.667511,0.309492,1.886644,1.658043,0.646202,1.969550,1.627377,0.558550,1.995105,1.655752,0.712077,1.919806,1.594796,0.754807,1.860647,1.566378,0.778332,1.803217,1.546462,0.256083,1.743843,1.697146,0.261162,1.748460,1.726221,0.262094,1.734627,1.723645,0.257098,1.729580,1.694789,0.266591,1.748602,1.748191,0.268777,1.736982,1.747053,0.257665,1.720644,1.671255,0.253426,1.733888,1.664768,0.267802,1.753088,1.792140,0.266077,1.748472,1.798334,0.269039,1.767033,1.789629,0.266750,1.761802,1.797554,0.274581,1.775834,1.794830,0.276697,1.785978,1.785758,0.271278,1.770352,1.778348,0.276198,1.786197,1.774504,0.272607,1.773092,1.761182,0.284717,1.800397,1.761132,0.262652,1.762229,1.729663,0.267197,1.759527,1.751728,0.257338,1.758370,1.699972,0.264134,1.782418,1.699499,0.270204,1.783837,1.732546,0.289398,1.817275,1.734371,0.282525,1.824758,1.699154,0.258890,1.765231,1.660754,0.257760,1.745222,1.673999,0.273183,1.818114,1.654606,0.294618,1.716282,1.787953,0.288383,1.727716,1.788360,0.291314,1.715530,1.777514,0.285060,1.727897,1.777765,0.275905,1.746807,1.775378,0.274786,1.745625,1.786075,0.281687,1.736927,1.787983,0.281257,1.739087,1.776444,0.273291,1.756119,1.782911,0.272239,1.756414,1.772118,0.275163,1.738574,1.764013,0.272368,1.747771,1.763876,0.278577,1.725444,1.764491,0.284714,1.710204,1.765689,0.270468,1.754864,1.763687,0.280722,1.687170,1.811618,0.368272,1.619377,1.762665,0.368014,1.632518,1.790881,0.329555,1.644435,1.757079,0.328222,1.658487,1.782810,0.302445,1.662090,1.753029,0.302714,1.672356,1.776966,0.297686,1.648438,1.724005,0.325825,1.628346,1.728292,0.319998,1.607183,1.697749,0.292295,1.629451,1.694099,0.366051,1.602462,1.733964,0.363461,1.578058,1.702073,0.292985,1.609422,1.666301,0.313062,1.579898,1.663943,0.362179,1.539788,1.663083,-0.064992,-0.254468,1.445354,0.056824,-0.251019,1.447697,0.071880,-0.243016,1.182099,-0.063957,-0.242149,1.173989,0.170941,-0.250315,1.447638,0.193385,-0.247007,1.189680,0.212125,-0.197215,0.914108,0.088304,-0.192904,0.902219,-0.054177,-0.189744,0.891639,0.265375,-0.245785,1.443798,0.287837,-0.248325,1.193317,0.346412,-0.240082,1.438117,0.364965,-0.248986,1.189685,0.381858,-0.205898,0.920471,0.306430,-0.200575,0.922053,0.422278,-0.230744,1.430367,0.438300,-0.247774,1.177127,0.491738,-0.209769,1.420190,0.509507,-0.233110,1.159859,0.522704,-0.204397,0.888955,0.452822,-0.212303,0.906974,0.550316,-0.166487,1.409465,0.574837,-0.191334,1.145718,0.596825,-0.089635,1.401427,0.628972,-0.112479,1.138635,0.651660,-0.098080,0.871312,0.590789,-0.168190,0.875787,0.657974,0.167744,1.395659,0.702040,0.145954,1.134699,0.672485,0.003853,1.136306,0.633320,0.026504,1.397634,0.737644,0.139351,0.875943,0.702330,0.005753,0.872866,0.666034,0.318624,1.395783,0.709190,0.305329,1.136173,0.659041,0.463350,1.408026,0.700552,0.466763,1.149943,0.738180,0.469656,0.893258,0.747416,0.300066,0.881325,0.654833,0.169044,0.520897,0.656792,0.060516,0.529871,0.713974,0.026733,0.662005,0.744904,0.145662,0.665420,0.648416,-0.008325,0.556673,0.667147,-0.055524,0.661566,0.753669,0.472266,0.684430,0.758007,0.302540,0.672250,0.656981,0.493392,0.536768,0.656278,0.324628,0.523204,0.507371,0.033824,1.757493,0.522564,0.125443,1.755864,0.579974,0.065664,1.608877,0.554912,-0.042506,1.610669,0.525926,0.232963,1.754828,0.593291,0.197181,1.607868,0.426032,-0.075663,1.765169,0.475542,-0.032287,1.760075,0.517771,-0.116524,1.615426,0.465514,-0.161353,1.621932,0.602260,-0.103384,0.663306,0.527925,-0.133311,0.676069,0.577520,-0.021114,0.535174,0.482267,-0.047718,0.539866,0.419320,-0.075391,0.563098,0.458681,-0.144945,0.695192,0.384161,-0.095657,0.599169,0.392228,-0.143245,0.710182,0.207821,-0.061422,0.545590,0.313585,-0.075017,0.567299,0.301848,-0.016460,0.494420,0.150538,0.015155,0.467219,0.337155,0.037490,0.466037,-0.026582,0.119480,0.425286,0.503744,0.066951,0.473745,0.411716,0.186129,0.450490,0.277999,-0.110357,1.781831,0.357342,-0.099765,1.771701,0.397133,-0.185848,1.628769,0.318531,-0.197531,1.636692,0.216536,0.172615,1.926072,0.280866,0.172984,1.910882,0.314578,0.037939,1.856724,0.241713,0.031843,1.868179,0.336254,0.181485,1.900310,0.377488,0.055074,1.849261,0.377092,0.201025,1.892798,0.422603,0.088274,1.843873,0.402253,0.231054,1.886493,0.450036,0.137390,1.840208,0.080232,0.170659,1.964122,0.149468,0.172841,1.945082,0.167252,0.030027,1.884576,0.092151,0.027666,1.901450,0.197066,-0.113946,1.796247,0.114172,-0.115661,1.810385,-0.058120,-0.121839,1.825067,-0.059356,0.019653,1.921362,0.015934,0.022803,1.914356,0.027787,-0.118575,1.820146,-0.062213,0.162156,1.987020,0.008537,0.165344,1.979319,0.043241,-0.206510,1.664519,-0.060010,-0.211176,1.668724,0.144218,-0.204583,1.657435,0.235249,-0.202525,1.647150,0.317734,-0.137097,0.705260,0.222038,-0.132417,0.691741,0.099142,-0.128967,0.677003,0.093766,-0.058734,0.531274,-0.034019,-0.057979,0.521696,-0.043099,-0.127514,0.666341,0.070410,0.002734,0.465732,-0.028909,0.018166,0.451024,-0.026065,0.886922,0.577655,0.079089,0.887922,0.583162,0.087627,0.920140,0.753440,-0.033498,0.923709,0.748413,0.164872,0.881871,0.586541,0.189515,0.912710,0.757110,0.188941,0.904812,1.012177,0.082906,0.914584,1.010316,-0.042023,0.920824,1.005954,-0.021737,0.702074,0.437023,0.104459,0.817707,0.489961,0.056971,0.837578,0.499570,-0.020929,0.819763,0.483845,0.048348,0.509380,2.006469,-0.011582,0.508844,2.009792,-0.001753,0.554977,1.967366,0.064168,0.554037,1.963176,-0.074728,0.509301,2.011053,-0.072377,0.555584,1.969368,-0.069923,0.608370,1.912646,0.012513,0.607786,1.908589,0.087768,0.607032,1.901529,0.158029,0.773435,1.630965,0.121684,0.677558,1.800030,0.033782,0.680013,1.811596,0.057070,0.781604,1.636698,-0.065321,0.682302,1.818628,-0.058065,0.787894,1.638772,0.178246,0.857131,1.336002,0.072494,0.867102,1.336571,-0.049955,0.874252,1.334380,0.505417,0.437038,1.759388,0.441386,0.410523,1.838068,0.424108,0.463161,1.847486,0.486307,0.509037,1.775650,0.396450,0.396112,1.880744,0.381254,0.433945,1.886924,0.361104,0.463690,1.897392,0.402210,0.501719,1.861238,0.461114,0.557758,1.798164,0.374938,0.526564,1.877526,0.428964,0.585709,1.821287,0.335557,0.483516,1.911742,0.305157,0.494484,1.928832,0.341748,0.540329,1.894655,0.389799,0.600228,1.840883,0.383629,0.368332,0.449790,0.407446,0.559008,0.463941,-0.023213,0.382843,0.422749,0.200074,0.810412,0.493610,0.173349,0.832224,0.506307,0.285260,0.869573,0.587168,0.231999,0.880054,0.589678,0.263579,0.906769,0.757260,0.320145,0.897805,0.753165,0.322104,0.888745,1.004463,0.265198,0.896134,1.009913,0.312708,0.840318,1.326969,0.255017,0.847542,1.332748,0.288841,0.759717,1.619034,0.232412,0.765318,1.625468,0.205685,0.605159,1.887141,0.151369,0.606814,1.895281,0.191130,0.674813,1.790169,0.247262,0.673595,1.781464,0.150109,0.507505,1.992873,0.102314,0.509420,2.001187,0.122409,0.552411,1.957394,0.173602,0.550001,1.950022,0.232789,0.502218,1.965749,0.192826,0.504557,1.981133,0.219779,0.548256,1.939966,0.262984,0.547679,1.926763,0.254572,0.605732,1.877918,0.301023,0.606286,1.867493,0.303845,0.546170,1.911360,0.270434,0.499827,1.947572,0.346382,0.605591,1.855669,0.501117,0.754158,1.555379,0.449710,0.672414,1.740884,0.398052,0.675555,1.758579,0.443900,0.761152,1.581967,0.347207,0.674508,1.767821,0.390196,0.759100,1.599203,0.297904,0.673345,1.774956,0.339668,0.757800,1.610930,0.535196,0.842845,0.971380,0.527933,0.812173,1.273166,0.470673,0.827951,1.293269,0.475905,0.863831,0.980990,0.416658,0.832941,1.307955,0.422826,0.873759,0.989508,0.364936,0.835995,1.318887,0.372931,0.881324,0.997414,0.423133,0.875375,0.746118,0.472601,0.864799,0.738804,0.405654,0.861958,0.621352,0.424462,0.845105,0.587290,0.475843,0.812472,0.577289,0.533574,0.842932,0.734820,0.372908,0.885702,0.748227,0.350794,0.862159,0.592143,0.315789,0.820404,0.513951,0.332696,0.758881,0.489475,0.652872,0.713990,0.609381,0.681438,0.728604,0.725423,0.609755,0.799686,0.732371,0.572100,0.763089,0.584643,0.663454,0.728749,0.940219,0.600964,0.801160,0.958964,0.729939,0.619722,0.704248,0.711651,0.617131,0.915045,0.657752,0.631474,0.566198,0.493242,0.685996,0.502717,0.639380,0.708719,1.213693,0.586891,0.775682,1.246132,0.607217,0.671914,1.477516,0.558550,0.727116,1.519001,0.537717,0.620113,1.675978,0.498027,0.657066,1.712229,0.585675,0.456321,1.616302,0.566909,0.553431,1.641253,0.639942,0.583666,1.437847,0.412782,0.267971,1.882145,0.462462,0.200523,1.837889,0.413120,0.309568,1.879686,0.462863,0.272631,1.835943,0.454653,0.345490,1.834670,0.519027,0.342251,1.753588,0.407076,0.353320,1.878855,0.594643,0.333444,1.607329,0.677389,0.604970,1.178904,0.001554,0.265479,2.023794,-0.066044,0.264085,2.028023,0.070484,0.266997,2.014047,0.135671,0.267916,1.996903,0.197113,0.267201,1.974963,0.254955,0.267383,1.954851,0.305099,0.271747,1.938842,0.343077,0.281861,1.926827,0.366935,0.297917,1.916785,0.376646,0.317961,1.909118,0.377522,0.341884,1.905989,0.373763,0.369019,1.906960,0.365162,0.397168,1.911011,0.350482,0.422755,1.917903,0.330825,0.442318,1.928649,0.306198,0.454653,1.943583,0.277705,0.461837,1.963527,0.244342,0.466608,1.985098,0.208639,0.468804,2.005625,0.172035,0.469522,2.023055,0.132988,0.470518,2.036197,0.088764,0.469732,2.044667,0.037809,0.468061,2.049993,-0.018912,0.467128,2.054651,-0.078368,0.467670,2.057473,-0.649199,2.032719,1.602310,-0.752052,2.041170,1.593228,-0.744396,2.036390,1.541566,-0.643341,2.030468,1.545345,-0.840824,2.018171,1.575993,-0.833106,2.013499,1.530797,-0.822898,2.003390,1.480451,-0.736343,2.023891,1.486123,-0.639605,2.015713,1.485090,-0.465162,1.908199,1.466431,-0.462946,1.918166,1.533559,-0.544427,1.987436,1.540690,-0.544782,1.974756,1.476901,-0.471415,1.918717,1.596362,-0.550234,1.987928,1.600965,-0.386676,1.733113,1.453427,-0.384866,1.740777,1.530418,-0.409924,1.832382,1.530211,-0.411684,1.824293,1.458447,-0.400479,1.751205,1.618216,-0.422146,1.837651,1.597707,-0.418823,1.562784,1.453078,-0.412838,1.576453,1.532886,-0.385987,1.654193,1.529808,-0.389450,1.643931,1.451253,-0.421695,1.608367,1.613617,-0.397296,1.671896,1.603342,-0.540276,1.499603,1.609134,-0.472335,1.543265,1.607365,-0.465287,1.510620,1.538089,-0.537177,1.462103,1.542849,-0.471510,1.494925,1.458706,-0.542096,1.445155,1.463219,-0.700580,1.465540,1.593422,-0.619744,1.472971,1.605857,-0.620850,1.435951,1.539941,-0.702239,1.430705,1.528925,-0.622956,1.416655,1.462056,-0.701894,1.409335,1.454888,-0.768341,1.420218,1.442488,-0.772617,1.441596,1.513680,-0.820904,1.442799,1.428499,-0.828939,1.463997,1.496774,-0.831382,1.495993,1.556237,-0.772742,1.474852,1.575705,-0.860842,1.471955,1.416387,-0.871458,1.493037,1.481225,-0.891395,1.506431,1.407691,-0.902732,1.526605,1.468117,-0.908522,1.555806,1.521197,-0.875919,1.524070,1.537844,-0.934412,1.588642,1.404091,-0.945118,1.604972,1.454388,-0.926550,1.564150,1.458980,-0.915500,1.545850,1.403703,-0.951105,1.627469,1.496745,-0.932655,1.590468,1.506980,-0.951485,1.928519,1.533690,-0.975272,1.876311,1.517913,-0.966223,1.861517,1.484060,-0.943849,1.916315,1.498123,-0.985507,1.823695,1.505962,-0.974564,1.806975,1.472743,-0.965446,1.794136,1.433708,-0.956807,1.849592,1.444570,-0.933601,1.905040,1.456404,-0.985966,1.771248,1.497769,-0.975186,1.752243,1.463914,-0.979821,1.719236,1.497585,-0.970091,1.698756,1.457911,-0.959500,1.684034,1.414748,-0.965408,1.738274,1.423501,-0.959646,1.649227,1.454282,-0.948937,1.634190,1.408051,-0.965966,1.667781,1.492517,-0.900753,1.970363,1.514977,-0.907984,1.978225,1.554485,-0.890130,1.960055,1.469364,-0.516348,1.859804,1.352942,-0.472780,1.794207,1.342369,-0.432845,1.811114,1.394743,-0.482541,1.887355,1.404827,-0.451575,1.721601,1.335611,-0.409318,1.727223,1.388022,-0.652562,1.796961,1.280912,-0.592807,1.753454,1.274589,-0.529677,1.774933,1.301967,-0.568377,1.829863,1.312029,-0.575398,1.707700,1.269379,-0.510109,1.714951,1.295628,-0.519078,1.652376,1.292123,-0.457921,1.647433,1.332534,-0.586301,1.658867,1.265446,-0.636339,1.604388,1.259933,-0.543988,1.593671,1.292680,-0.483987,1.578969,1.334224,-0.413989,1.643224,1.384979,-0.442692,1.566145,1.386501,-0.520680,1.522566,1.340834,-0.490215,1.502303,1.392375,-0.568349,1.481077,1.347241,-0.552471,1.455236,1.397373,-0.611482,1.558939,1.274804,-0.563756,1.546008,1.300186,-0.611079,1.533245,1.285592,-0.590336,1.511869,1.308007,-0.702297,1.538728,1.272308,-0.681728,1.524002,1.279272,-0.649538,1.548614,1.269219,-0.668613,1.566505,1.261341,-0.665047,1.511499,1.288098,-0.638050,1.523940,1.283980,-0.631361,1.491670,1.310694,-0.675154,1.483455,1.309698,-0.686533,1.447486,1.346096,-0.627347,1.456022,1.349222,-0.624882,1.427557,1.397513,-0.695746,1.419152,1.392302,-0.734970,1.454426,1.338260,-0.754647,1.427972,1.382462,-0.773401,1.471871,1.328325,-0.801119,1.448239,1.371016,-0.710253,1.489784,1.303434,-0.739110,1.505054,1.295334,-0.723343,1.553736,1.267175,-0.765142,1.524709,1.287918,-0.740571,1.571541,1.263369,-0.788301,1.548139,1.282552,-0.832677,1.523593,1.312977,-0.805329,1.495210,1.319226,-0.837833,1.474886,1.361040,-0.867624,1.507190,1.354426,-0.643922,1.950349,1.378613,-0.574487,1.914157,1.366610,-0.554132,1.948495,1.417567,-0.639363,1.987148,1.428279,-0.791651,1.949142,1.384429,-0.720152,1.962112,1.384811,-0.728085,1.997667,1.432705,-0.809325,1.981000,1.430400,-0.884095,1.868640,1.368338,-0.847122,1.914205,1.377990,-0.872693,1.940331,1.422504,-0.914502,1.888423,1.412092,-0.911474,1.585665,1.355202,-0.925564,1.629178,1.360695,-0.873170,1.593421,1.312797,-0.883844,1.633167,1.317309,-0.892844,1.676434,1.324644,-0.935839,1.676683,1.368884,-0.819832,1.606057,1.280720,-0.823162,1.641656,1.283250,-0.761226,1.615211,1.260953,-0.756485,1.645302,1.261493,-0.726888,1.691843,1.261972,-0.826327,1.682255,1.289246,-0.706500,1.615194,1.253260,-0.710349,1.637043,1.253568,-0.674996,1.650669,1.253926,-0.807865,1.575079,1.280323,-0.855931,1.556681,1.311027,-0.755865,1.591278,1.261332,-0.892198,1.544678,1.352747,-0.715064,1.598208,1.254396,-0.695820,1.587437,1.255382,-0.634988,1.668813,1.255871,-0.639622,1.700590,1.258059,-0.682967,1.743028,1.264060,-0.638689,1.733003,1.262503,-0.791480,1.768921,1.285268,-0.773304,1.734742,1.275360,-0.725629,1.752186,1.268227,-0.730383,1.777425,1.274393,-0.841157,1.725296,1.299457,-0.854281,1.767586,1.310061,-0.909474,1.772694,1.346607,-0.903163,1.723612,1.334995,-0.943374,1.728501,1.379251,-0.945369,1.782243,1.390622,-0.855057,1.808914,1.320425,-0.904270,1.821317,1.357869,-0.796792,1.800887,1.293952,-0.785835,1.832645,1.302981,-0.840400,1.849026,1.330658,-0.937363,1.835614,1.401568,-0.768334,1.865333,1.313816,-0.812663,1.887286,1.340466,-0.751404,1.890342,1.324523,-0.770695,1.915629,1.347111,-0.748063,1.797789,1.281819,-0.725449,1.819625,1.287499,-0.710945,1.888164,1.319460,-0.713779,1.924106,1.346585,-0.670846,1.885419,1.318465,-0.655352,1.912550,1.340210,-0.713304,1.853274,1.300791,-0.656073,1.854492,1.303349,-0.608160,1.878955,1.326873,-0.691861,1.571845,1.258623,-0.443262,1.721953,1.801718,-0.454107,1.712977,1.801317,-0.458388,1.711438,1.801151,-0.445714,1.721307,1.801569,-0.449762,1.713596,1.798054,-0.458911,1.709169,1.788158,-0.467341,1.704842,1.789707,-0.491535,1.696172,1.796426,-0.442264,1.729253,1.808525,-0.438224,1.726874,1.803249,-0.434909,1.722615,1.808821,-0.439490,1.724145,1.812613,-0.441530,1.718830,1.806322,-0.859923,1.604778,1.768135,-0.865715,1.623572,1.798508,-0.810031,1.619689,1.821859,-0.801678,1.593982,1.789435,-0.743447,1.615276,1.841481,-0.732785,1.586772,1.811039,-0.603412,1.646787,1.840618,-0.671217,1.624818,1.847144,-0.595638,1.630412,1.819069,-0.660497,1.601949,1.821285,-0.496938,1.697840,1.810390,-0.545554,1.675954,1.823978,-0.541763,1.666030,1.807248,-0.643882,1.591471,1.781824,-0.713009,1.576673,1.764948,-0.583646,1.620147,1.787251,-0.575210,1.612603,1.751891,-0.631482,1.582107,1.743287,-0.698250,1.564212,1.723061,-0.825061,1.578123,1.675353,-0.840998,1.592290,1.720357,-0.781012,1.580619,1.741553,-0.766468,1.564870,1.697650,-0.920769,1.645751,1.763120,-0.937557,1.652390,1.742226,-0.940361,1.702360,1.718638,-0.921330,1.706283,1.736247,-0.948050,1.661725,1.723202,-0.948665,1.697743,1.698122,-0.953674,1.747363,1.667915,-0.947284,1.767591,1.688082,-0.927494,1.786185,1.705548,-0.955586,1.731250,1.651865,-0.961191,1.770235,1.622764,-0.959648,1.798729,1.637247,-0.956219,1.719180,1.645408,-0.961223,1.747927,1.615095,-0.964586,1.770985,1.584125,-0.965947,1.800485,1.593706,-0.964558,1.835008,1.607463,-0.958222,1.726997,1.615623,-0.961134,1.747111,1.581165,-0.954497,1.703500,1.647977,-0.954185,1.685078,1.657377,-0.955541,1.703713,1.622277,-0.954550,1.722956,1.583969,-0.948982,1.679671,1.635630,-0.946361,1.695544,1.593784,-0.951828,1.667190,1.673581,-0.946193,1.650837,1.693827,-0.941116,1.654442,1.653379,-0.935339,1.665662,1.607612,-0.924290,1.620444,1.733345,-0.929815,1.631150,1.759982,-0.905764,1.625453,1.778373,-0.899592,1.611459,1.749849,-0.929361,1.633138,1.673281,-0.920876,1.637429,1.625115,-0.939142,1.633134,1.714696,-0.910867,1.616193,1.690064,-0.898935,1.614502,1.641326,-0.882655,1.605026,1.704202,-0.868393,1.595754,1.657503,-0.948803,1.648537,1.720895,-0.943095,1.638625,1.741262,-0.952255,1.672611,1.686474,-0.952428,1.661527,1.702113,-0.951936,1.693254,1.671651,-0.951758,1.685478,1.676852,-0.952867,1.668604,1.705308,-0.952511,1.695232,1.679994,-0.468044,1.740009,1.799991,-0.452803,1.732676,1.806426,-0.451001,1.723519,1.811449,-0.469355,1.724113,1.808413,-0.449651,1.715888,1.819739,-0.467992,1.709937,1.820929,-0.443165,1.728325,1.802609,-0.444018,1.726782,1.803627,-0.445327,1.730927,1.806286,-0.445546,1.733179,1.804366,-0.453871,1.733882,1.794883,-0.452768,1.726720,1.795325,-0.445846,1.726685,1.799882,-0.447070,1.734351,1.800341,-0.453212,1.722166,1.796770,-0.447508,1.721277,1.798219,-0.462624,1.764249,1.794047,-0.453213,1.743591,1.804145,-0.454121,1.739287,1.804588,-0.465477,1.754272,1.794702,-0.457026,1.754243,1.795195,-0.451075,1.743984,1.799059,-0.459040,1.750640,1.794267,-0.456148,1.742630,1.794091,-0.453224,1.718337,1.794285,-0.458373,1.722077,1.794674,-0.466794,1.721130,1.792131,-0.461635,1.715946,1.788968,-0.471719,1.713241,1.782040,-0.469103,1.707406,1.774729,-0.477215,1.719653,1.787402,-0.479731,1.722871,1.779565,-0.476956,1.717007,1.771100,-0.468510,1.707531,1.753128,-0.462003,1.727084,1.794903,-0.471596,1.728609,1.793497,-0.464119,1.735051,1.794905,-0.473349,1.738363,1.793058,-0.464903,1.744584,1.793179,-0.463803,1.753573,1.790906,-0.469876,1.758618,1.786710,-0.472115,1.748917,1.791068,-0.644586,1.783187,1.784820,-0.567841,1.776630,1.795004,-0.575486,1.713628,1.825866,-0.659834,1.710046,1.820949,-0.516260,1.763984,1.794811,-0.522365,1.715919,1.813622,-0.529773,1.689523,1.838148,-0.584397,1.667262,1.852080,-0.673212,1.653546,1.852587,-0.821065,1.784454,1.747252,-0.731890,1.784109,1.768512,-0.753797,1.704151,1.801846,-0.836336,1.700724,1.777261,-0.771341,1.646252,1.832538,-0.846402,1.641407,1.806042,-0.891901,1.641325,1.784750,-0.887706,1.705313,1.755691,-0.886066,1.790792,1.723718,-0.951473,1.832081,1.653742,-0.928147,1.859511,1.668952,-0.956039,1.872984,1.624169,-0.930990,1.905608,1.640126,-0.877437,1.867914,1.687250,-0.804212,1.861665,1.710258,-0.879392,1.922391,1.661728,-0.805111,1.925561,1.687305,-0.638073,1.911428,1.725130,-0.636854,1.852394,1.750087,-0.718787,1.858308,1.732607,-0.720210,1.922537,1.709385,-0.499060,1.838706,1.748176,-0.510447,1.810119,1.774241,-0.562300,1.836061,1.766002,-0.562914,1.883267,1.735100,-0.476278,1.794873,1.775203,-0.482530,1.779092,1.782725,-0.487966,1.750177,1.793795,-0.492149,1.720642,1.806704,-0.493481,1.701317,1.824131,-0.984151,1.851870,1.563758,-0.974688,1.850336,1.585479,-0.976252,1.811467,1.571417,-0.984770,1.809652,1.550466,-0.972602,1.779639,1.561201,-0.980132,1.775062,1.542046,-0.941436,1.665831,1.551242,-0.935856,1.671101,1.573586,-0.918115,1.639685,1.588746,-0.923878,1.633361,1.566275,-0.894718,1.611501,1.605397,-0.900888,1.602567,1.584230,-0.864104,1.586737,1.624263,-0.870212,1.575020,1.604877,-0.820859,1.565955,1.644879,-0.826838,1.551386,1.626762,-0.762460,1.551163,1.668924,-0.767356,1.534642,1.650498,-0.693317,1.550213,1.693378,-0.695502,1.531844,1.672051,-0.625620,1.569720,1.711182,-0.568293,1.601070,1.719926,-0.560367,1.579351,1.689938,-0.623002,1.548783,1.685377,-0.966848,1.754359,1.556232,-0.974858,1.749480,1.537874,-0.959170,1.730252,1.556475,-0.966295,1.725403,1.537072,-0.949377,1.702242,1.562430,-0.955891,1.697110,1.541457,-0.465781,1.723776,1.746987,-0.450715,1.717551,1.719319,-0.452972,1.697988,1.718782,-0.466181,1.740924,1.744784,-0.451617,1.738902,1.719882,-0.433461,1.735613,1.689933,-0.432872,1.707848,1.687594,-0.435566,1.683276,1.687294,-0.567172,1.925187,1.715530,-0.509302,1.879707,1.716414,-0.647472,1.958548,1.710662,-0.656194,1.995421,1.692778,-0.566952,1.956109,1.695348,-0.502314,1.899305,1.689631,-0.735268,1.974231,1.696342,-0.821429,1.973143,1.673508,-0.837462,2.002859,1.652073,-0.750990,2.011640,1.677779,-0.893606,1.958629,1.645830,-0.906525,1.978274,1.624190,-0.942343,1.931324,1.620787,-0.952347,1.941516,1.598469,-0.966543,1.893227,1.602129,-0.975611,1.897725,1.579856,-0.993081,1.840790,1.540468,-0.991546,1.793616,1.529570,-0.984111,1.756184,1.525245,-0.949648,1.650027,1.530297,-0.931773,1.616205,1.543679,-0.908092,1.583781,1.560561,-0.875900,1.554229,1.580080,-0.831567,1.528216,1.600819,-0.771730,1.509001,1.622827,-0.698732,1.502477,1.642378,-0.620989,1.514286,1.654114,-0.550058,1.542858,1.655901,-0.973213,1.734956,1.527598,-0.974497,1.716418,1.522350,-0.964550,1.683883,1.523000,-0.414039,1.691325,1.653292,-0.420407,1.657624,1.656929,-0.413966,1.731179,1.659244,-0.559324,1.977167,1.657290,-0.486154,1.911744,1.651524,-0.655539,2.021958,1.657903,-0.756796,2.035375,1.644330,-0.845085,2.017919,1.620748,-0.913244,1.984266,1.594470,-0.958806,1.940380,1.570451,-0.982916,1.890816,1.554049,-0.466785,1.755446,1.743012,-0.453284,1.756201,1.719978,-0.466425,1.766533,1.741380,-0.454167,1.768525,1.719596,-0.437050,1.767094,1.692670,-0.436110,1.755368,1.692236,-0.421834,1.749452,1.668829,-0.417946,1.760485,1.664828,-0.462811,1.774630,1.780951,-0.461791,1.761176,1.788020,-0.469560,1.780318,1.770955,-0.466998,1.766306,1.778909,-0.470000,1.792584,1.771699,-0.474366,1.802960,1.760778,-0.470939,1.790275,1.745199,-0.472279,1.785443,1.760196,-0.476290,1.802025,1.752166,-0.479697,1.819365,1.740629,-0.445467,1.803011,1.691134,-0.439274,1.779683,1.693450,-0.455676,1.780815,1.719621,-0.461482,1.802199,1.719259,-0.467143,1.776543,1.741068,-0.463679,1.845077,1.688749,-0.476575,1.837184,1.717464,-0.423905,1.790954,1.659073,-0.426422,1.770422,1.669315,-0.442321,1.843841,1.651396,-0.480751,1.731205,1.788383,-0.482179,1.732753,1.776944,-0.482507,1.743420,1.787315,-0.483175,1.745008,1.774510,-0.478859,1.753786,1.782792,-0.475822,1.763330,1.777339,-0.477234,1.764225,1.766405,-0.480954,1.755780,1.771241,-0.472931,1.771594,1.769265,-0.474052,1.772841,1.758961,-0.478026,1.743477,1.761585,-0.475912,1.755865,1.759776,-0.474407,1.765024,1.756207,-0.477384,1.729530,1.764879,-0.472677,1.771371,1.753396,-0.460342,1.710269,1.805484,-0.499310,1.684575,1.775325,-0.536994,1.657822,1.781863,-0.495502,1.672693,1.750029,-0.529844,1.646313,1.752932,-0.476639,1.698573,1.772244,-0.474588,1.690313,1.748961,-0.468322,1.643475,1.688949,-0.485226,1.660729,1.719605,-0.462985,1.680711,1.718349,-0.445754,1.665687,1.688367,-0.520888,1.633328,1.721817,-0.508009,1.612733,1.690442,-0.433224,1.647166,1.665192,-0.446581,1.620621,1.659006,-0.490066,1.580459,1.655818,-0.332941,-0.181859,0.886630,-0.320071,-0.251329,1.166954,-0.198941,-0.248408,1.169068,-0.200167,-0.188614,0.886428,-0.286939,-0.275975,1.446441,-0.182517,-0.267067,1.445656,-0.525727,-0.166885,0.889436,-0.504637,-0.241019,1.154922,-0.418288,-0.245475,1.163186,-0.438570,-0.169987,0.888841,-0.459747,-0.267324,1.433762,-0.375727,-0.274283,1.443079,-0.688764,-0.194155,0.878841,-0.680416,-0.245318,1.125145,-0.593037,-0.244728,1.141972,-0.608424,-0.179713,0.886124,-0.639615,-0.242649,1.399138,-0.549551,-0.259088,1.419135,-0.827127,-0.149276,0.851471,-0.827299,-0.167870,1.086555,-0.761158,-0.226103,1.106812,-0.763906,-0.191160,0.867474,-0.783876,-0.140449,1.353187,-0.720321,-0.208537,1.376616,-0.870575,-0.056757,0.830513,-0.868506,-0.059996,1.063493,-0.895299,0.082281,0.806292,-0.889644,0.092266,1.044040,-0.850549,0.125457,1.319652,-0.826070,-0.027012,1.332096,-0.926064,0.444903,0.781789,-0.908849,0.460222,1.050365,-0.901706,0.275424,1.036803,-0.911862,0.258750,0.784527,-0.855696,0.468769,1.331905,-0.858461,0.300443,1.319222,-0.794843,-0.094939,0.674569,-0.832337,-0.022541,0.655729,-0.746869,-0.042385,0.577281,-0.742904,0.018435,0.539738,-0.734222,0.122835,0.512968,-0.855866,0.096509,0.631578,-0.740651,0.276327,0.490027,-0.874971,0.257394,0.605712,-0.766032,0.448010,0.477422,-0.894212,0.433435,0.591479,-0.790878,0.175388,1.544797,-0.771897,0.037371,1.557094,-0.723252,0.225049,1.691448,-0.710903,0.115627,1.700451,-0.680133,0.024908,1.715943,-0.733009,-0.070172,1.576071,-0.671927,-0.141304,1.599319,-0.625162,-0.039445,1.736294,-0.550403,-0.081123,1.759901,-0.592793,-0.184430,1.623244,-0.734161,-0.120321,0.682179,-0.672486,-0.042168,0.554811,-0.660146,-0.123016,0.688325,-0.580793,-0.049105,0.549143,-0.515632,-0.107193,0.696313,-0.587690,-0.114594,0.693958,-0.490132,-0.074192,0.590856,-0.521690,-0.060874,0.561305,-0.387077,-0.018765,0.485785,-0.413956,0.023202,0.464892,-0.410186,-0.066045,0.554667,-0.290916,-0.066265,0.533463,-0.218256,0.005752,0.459837,-0.577643,0.034218,0.482531,-0.474928,0.147434,0.446348,-0.502800,-0.209724,1.644899,-0.463188,-0.106221,1.785067,-0.374839,-0.119618,1.806370,-0.413276,-0.223672,1.660914,-0.498970,0.051242,1.836402,-0.423078,0.036038,1.862410,-0.449292,0.167507,1.893575,-0.388014,0.162664,1.919048,-0.322784,0.164396,1.944795,-0.344361,0.029321,1.886947,-0.608718,0.126397,1.797333,-0.562853,0.080328,1.814484,-0.540476,0.210021,1.854651,-0.501893,0.181752,1.871708,-0.271128,0.025844,1.904681,-0.294185,-0.125836,1.819462,-0.258356,0.167602,1.964997,-0.194713,0.167901,1.978579,-0.201587,0.023261,1.915955,-0.217950,-0.127498,1.825288,-0.129864,0.164425,1.986253,-0.131647,0.020504,1.921828,-0.140033,-0.125512,1.826703,-0.248541,-0.229538,1.672416,-0.158491,-0.221304,1.671377,-0.330755,-0.230044,1.669455,-0.431865,-0.111051,0.685113,-0.324414,-0.122581,0.672531,-0.165884,-0.066714,0.523898,-0.190081,-0.128682,0.665208,-0.132536,-0.006058,0.460414,-0.280179,0.914520,0.997446,-0.265630,0.912921,0.743109,-0.157295,0.920106,0.744613,-0.168642,0.919702,1.001089,-0.223777,0.875821,0.575372,-0.133266,0.884642,0.576065,-0.150179,0.811485,0.483434,-0.101284,0.833782,0.494711,-0.143333,0.555491,1.968548,-0.151980,0.607632,1.911947,-0.137934,0.510467,2.010954,-0.198311,0.511037,2.007383,-0.210699,0.553721,1.964564,-0.227743,0.605529,1.906600,-0.162255,0.683080,1.817287,-0.247957,0.682424,1.808403,-0.267412,0.789742,1.626973,-0.170016,0.790720,1.635042,-0.171751,0.876099,1.329430,-0.278363,0.873896,1.323843,-0.546154,0.449818,1.867179,-0.564775,0.422954,1.854779,-0.625759,0.457868,1.803313,-0.604405,0.492110,1.821348,-0.574378,0.386759,1.845787,-0.638502,0.406704,1.789180,-0.716064,0.442623,1.698014,-0.701515,0.516941,1.718955,-0.677519,0.561782,1.747441,-0.483128,0.479950,1.902795,-0.518696,0.468148,1.883196,-0.572494,0.512676,1.841349,-0.531080,0.524468,1.862559,-0.640137,0.582550,1.777180,-0.590060,0.590705,1.805533,-0.488737,0.524131,0.432138,-0.446942,0.328954,0.430240,-0.364049,0.860793,0.578718,-0.261804,0.800511,0.487770,-0.227080,0.823386,0.498661,-0.298506,0.872143,0.578717,-0.435458,0.905549,0.993824,-0.418206,0.899518,0.743530,-0.348590,0.907527,0.744086,-0.365365,0.909715,0.995831,-0.344831,0.786990,1.618181,-0.361032,0.870385,1.319225,-0.410881,0.785486,1.607918,-0.429542,0.868080,1.313934,-0.319532,0.682211,1.795187,-0.294625,0.603454,1.897472,-0.355300,0.602104,1.883790,-0.383062,0.682824,1.779562,-0.272050,0.550064,1.957196,-0.254001,0.508953,2.000094,-0.305034,0.504943,1.988988,-0.328105,0.545414,1.945322,-0.381009,0.541001,1.927763,-0.413667,0.600764,1.865952,-0.352582,0.498717,1.972655,-0.397595,0.492322,1.951683,-0.432518,0.536550,1.906821,-0.472189,0.598564,1.846831,-0.531945,0.595502,1.827684,-0.483295,0.531716,1.884641,-0.441803,0.486615,1.926813,-0.581478,0.684798,1.731101,-0.512021,0.682843,1.751195,-0.649088,0.686178,1.695523,-0.691221,0.788294,1.506304,-0.617947,0.794008,1.546530,-0.545383,0.789811,1.576010,-0.446249,0.682574,1.766327,-0.476615,0.786255,1.595359,-0.642486,0.866076,1.270432,-0.567211,0.868424,1.291909,-0.721379,0.851161,1.238536,-0.733189,0.867691,0.949473,-0.651291,0.888525,0.969507,-0.575601,0.896523,0.981253,-0.496812,0.867917,1.305623,-0.504312,0.901346,0.989078,-0.611766,0.798830,0.558251,-0.550226,0.834749,0.578767,-0.627883,0.868926,0.730051,-0.705420,0.845697,0.714737,-0.525877,0.854777,0.614731,-0.560400,0.879722,0.739655,-0.489679,0.888834,0.741007,-0.451007,0.852682,0.585379,-0.407129,0.807087,0.507386,-0.425537,0.742195,0.475749,-0.818909,0.822907,0.915975,-0.795541,0.799029,0.687044,-0.890881,0.740467,0.868063,-0.870950,0.719183,0.649253,-0.814918,0.691213,0.538142,-0.723182,0.744184,0.538165,-0.799208,0.596974,0.492982,-0.900663,0.594728,0.607692,-0.926133,0.611384,0.814638,-0.610085,0.656854,0.461904,-0.758978,0.760867,1.456323,-0.799802,0.811999,1.194514,-0.811834,0.701707,1.405641,-0.864875,0.736377,1.142652,-0.707048,0.674646,1.652123,-0.749802,0.638969,1.609401,-0.775670,0.569945,1.573744,-0.789632,0.464324,1.549549,-0.842317,0.604335,1.362242,-0.643305,0.263564,1.780368,-0.633646,0.189478,1.785835,-0.572735,0.295804,1.838949,-0.562272,0.249504,1.843626,-0.576745,0.343085,1.840072,-0.644308,0.339333,1.781337,-0.723726,0.340102,1.689548,-0.795588,0.325802,1.541190,-0.900987,0.617524,1.089912,-0.189920,0.265508,2.021453,-0.129196,0.265214,2.027363,-0.249905,0.261964,2.010080,-0.309552,0.254512,1.991881,-0.367035,0.247842,1.966349,-0.418517,0.247582,1.940780,-0.490758,0.273875,1.904521,-0.460624,0.255880,1.920304,-0.517748,0.326421,1.888620,-0.508075,0.298328,1.893610,-0.524201,0.385200,1.893086,-0.523657,0.356576,1.888968,-0.503531,0.428481,1.909574,-0.517871,0.409620,1.899530,-0.449096,0.450627,1.946122,-0.480307,0.441624,1.924991,-0.412995,0.456406,1.971606,-0.372912,0.462018,1.997016,-0.289298,0.470859,2.033176,-0.332041,0.466976,2.017619,-0.192370,0.471523,2.052495,-0.243077,0.472375,2.044871,-0.137078,0.469239,2.056633,1.310279,1.265776,0.337733,1.305301,1.279618,0.332192,1.310447,1.284497,0.334250,1.283693,1.260815,0.333035,1.281192,1.275950,0.330652,1.282950,1.287309,0.326287,1.303179,1.296273,0.317605,1.305059,1.302331,0.322476,1.294795,1.296401,0.319048,1.293317,1.290193,0.309672,1.309955,1.299615,0.329731,1.302775,1.297003,0.327820,1.270382,1.282846,0.309028,1.269298,1.261757,0.291593,1.315789,1.290760,0.331887,1.320455,1.294898,0.331146,1.315198,1.299979,0.330022,1.312736,1.290850,0.330184,1.311795,1.303420,0.323665,1.306683,1.299097,0.314178,1.300094,1.285752,0.302199,1.289989,1.251315,0.281073,1.165992,1.133452,0.233162,1.168626,1.170217,0.238460,1.139401,1.179892,0.240149,1.138701,1.143080,0.228451,1.171108,1.205856,0.245518,1.142644,1.214417,0.246250,1.123155,1.219464,0.252386,1.119541,1.186649,0.248513,1.119253,1.151188,0.238432,1.111035,1.177264,0.297423,1.107248,1.152680,0.292391,1.100530,1.150029,0.277529,1.102800,1.175339,0.283281,1.107444,1.135699,0.286537,1.104286,1.128105,0.276038,1.108313,1.119507,0.261587,1.102874,1.141156,0.263937,1.104816,1.168643,0.271258,1.181152,1.256884,0.261755,1.152720,1.260070,0.258568,1.148078,1.240973,0.250697,1.176777,1.234859,0.250486,1.136502,1.258198,0.260373,1.130278,1.243964,0.255448,1.221179,1.252165,0.272587,1.215451,1.225194,0.258462,1.254023,1.217549,0.269087,1.209858,1.192353,0.248406,1.246809,1.176461,0.255293,1.186721,1.272964,0.291094,1.184173,1.269482,0.276598,1.226558,1.268172,0.289073,1.230622,1.272829,0.304879,1.131704,1.264717,0.282546,1.132696,1.263640,0.269308,1.154270,1.270593,0.271629,1.154839,1.272642,0.286135,1.121133,1.247164,0.266673,1.121746,1.247496,0.277712,1.114587,1.226976,0.277404,1.115060,1.223497,0.265985,1.134350,1.262069,0.295007,1.121422,1.248206,0.290232,1.139428,1.255725,0.300576,1.131999,1.245167,0.301521,1.124841,1.227496,0.300764,1.114446,1.229144,0.287723,1.106202,1.203407,0.288673,1.108167,1.199331,0.276091,1.117244,1.203752,0.300374,1.110282,1.192970,0.263813,1.108760,1.159956,0.255476,1.205167,1.067875,0.304812,1.212930,1.062885,0.298169,1.181405,1.073430,0.278244,1.177622,1.076222,0.289619,1.221156,1.066086,0.288340,1.188774,1.079404,0.266001,1.155439,1.088037,0.243174,1.147413,1.084617,0.258240,1.143528,1.089264,0.273594,1.229503,1.065258,0.331332,1.212607,1.063815,0.314104,1.180737,1.082114,0.301697,1.188125,1.093622,0.311659,1.143612,1.099108,0.287242,1.147797,1.115026,0.298267,1.230942,1.052777,0.312941,1.241871,1.050207,0.302169,1.241725,1.043766,0.326023,1.251612,1.033548,0.312407,1.257580,1.018613,0.322581,1.253360,1.033443,0.338041,1.257312,1.056805,0.347636,1.277962,1.195512,0.261205,1.275866,1.151902,0.245187,1.236106,1.102394,0.261609,1.242575,1.136465,0.252968,1.205813,1.155782,0.244421,1.201036,1.121137,0.247303,1.271591,1.110094,0.249495,1.264226,1.077468,0.267816,1.270197,1.012328,0.302675,1.266211,1.034396,0.293126,1.228956,1.078846,0.275003,1.252950,1.057777,0.287023,1.195490,1.095272,0.255312,1.162300,1.105291,0.233904,1.137077,1.114631,0.225013,1.131654,1.098490,0.233549,1.118318,1.123768,0.231097,1.120913,1.109706,0.234506,1.111089,1.110584,0.245048,1.108267,1.131890,0.247112,1.123239,1.094794,0.249433,1.119910,1.102452,0.264326,1.121129,1.128303,0.290730,1.118682,1.112755,0.279621,1.125623,1.149498,0.298492,1.155374,1.137331,0.304838,1.132100,1.174344,0.303342,1.164534,1.162963,0.307929,1.147323,1.223035,0.305270,1.139864,1.199958,0.305492,1.180920,1.213974,0.307689,1.173407,1.188705,0.307642,1.284265,1.207241,0.333246,1.285676,1.237667,0.334748,1.314972,1.239702,0.342210,1.313720,1.205243,0.342450,1.255693,1.126296,0.333893,1.290042,1.121995,0.347388,1.270342,1.086663,0.351372,1.238563,1.094009,0.336537,1.197633,1.114744,0.317398,1.208709,1.141415,0.317127,1.220242,1.170382,0.314910,1.229894,1.202561,0.315647,1.274282,1.169563,0.332615,1.153233,1.241745,0.303055,1.156910,1.255831,0.302480,1.189066,1.252491,0.303967,1.186379,1.235551,0.305452,1.156379,1.266489,0.298061,1.188682,1.264623,0.299859,1.235808,1.251218,0.316683,1.234044,1.264736,0.313153,1.235228,1.230877,0.316733,1.304971,1.166684,0.344946,-1.451555,1.262433,0.327746,-1.473645,1.265931,0.324804,-1.467438,1.278324,0.321996,-1.448907,1.277094,0.321899,-1.471906,1.284099,0.321282,-1.449810,1.287274,0.315790,-1.465836,1.288553,0.315190,-1.461100,1.290123,0.307092,-1.444023,1.284644,0.297533,-1.474438,1.292586,0.315227,-1.471393,1.293021,0.309956,-1.469615,1.291470,0.305309,-1.463711,1.286138,0.297534,-1.449035,1.266375,0.281610,-1.477718,1.290167,0.320465,-1.480965,1.293840,0.319634,-1.479760,1.295325,0.314777,-1.472949,1.289201,0.318778,-1.478655,1.297289,0.309504,-1.474236,1.295010,0.302496,-1.474009,1.284856,0.289168,-1.477027,1.258608,0.269058,-1.315609,1.210648,0.243305,-1.335874,1.203945,0.238235,-1.333094,1.170308,0.223058,-1.313474,1.177065,0.231506,-1.363170,1.196762,0.240700,-1.359383,1.162520,0.229530,-1.355109,1.131495,0.221257,-1.329932,1.138354,0.211345,-1.310724,1.145037,0.220110,-1.293677,1.118080,0.244861,-1.289718,1.124882,0.263943,-1.287824,1.145588,0.266711,-1.292798,1.137463,0.249070,-1.294333,1.132572,0.278153,-1.293518,1.148610,0.289904,-1.297896,1.171788,0.301461,-1.290208,1.169500,0.277328,-1.294107,1.161962,0.259766,-1.319580,1.238257,0.253510,-1.338394,1.234174,0.250708,-1.324499,1.252061,0.266054,-1.340682,1.257591,0.260661,-1.368582,1.257313,0.265689,-1.366336,1.230790,0.253050,-1.405334,1.228109,0.257710,-1.402096,1.189993,0.243858,-1.407839,1.259417,0.273231,-1.445745,1.224307,0.261121,-1.442672,1.181984,0.251114,-1.409157,1.277991,0.286111,-1.370307,1.272382,0.278642,-1.370767,1.278711,0.292443,-1.410115,1.282803,0.302793,-1.341077,1.270358,0.273813,-1.320501,1.261963,0.270979,-1.319042,1.266322,0.283535,-1.340962,1.274769,0.286763,-1.300238,1.222321,0.276433,-1.304744,1.247999,0.279579,-1.310251,1.242487,0.266803,-1.305988,1.216274,0.261447,-1.311920,1.223803,0.311085,-1.319329,1.244758,0.309173,-1.306860,1.247979,0.295248,-1.299567,1.225016,0.293849,-1.327528,1.256888,0.302710,-1.321130,1.263466,0.298266,-1.304741,1.197546,0.309565,-1.294828,1.197180,0.287919,-1.296965,1.192146,0.269922,-1.302935,1.184450,0.251355,-1.300447,1.152891,0.240676,-1.343784,1.091854,0.230936,-1.377799,1.087555,0.256496,-1.370550,1.081286,0.267252,-1.335612,1.086973,0.245303,-1.405623,1.075551,0.286371,-1.396574,1.071974,0.295721,-1.391251,1.078947,0.298264,-1.366319,1.084126,0.279125,-1.331921,1.091808,0.260143,-1.368419,1.090320,0.294656,-1.333089,1.101131,0.274908,-1.395656,1.075621,0.317259,-1.411871,1.080109,0.335329,-1.376843,1.103966,0.307844,-1.338198,1.116500,0.290857,-1.409604,1.062371,0.317697,-1.420630,1.051897,0.330195,-1.420970,1.059261,0.304755,-1.431070,1.040530,0.313918,-1.432448,1.036712,0.338755,-1.436360,1.062853,0.347247,-1.437137,1.018735,0.318355,-1.477786,1.214836,0.249750,-1.475506,1.167029,0.244715,-1.396763,1.154907,0.238870,-1.436368,1.145571,0.252931,-1.427754,1.114664,0.260946,-1.391565,1.125426,0.238460,-1.452355,1.093259,0.268451,-1.466890,1.127669,0.252846,-1.451390,1.013893,0.293815,-1.447513,1.043622,0.291135,-1.435311,1.070119,0.288543,-1.416882,1.089665,0.271967,-1.385460,1.102238,0.245371,-1.350765,1.107968,0.221708,-1.325665,1.113381,0.212534,-1.307244,1.120725,0.216722,-1.318745,1.096414,0.219750,-1.307296,1.106753,0.219526,-1.297145,1.127980,0.233082,-1.299454,1.108860,0.231914,-1.311851,1.094954,0.234288,-1.306492,1.101285,0.249467,-1.306868,1.112234,0.266100,-1.308998,1.126419,0.283301,-1.314252,1.145196,0.299708,-1.321187,1.167872,0.312491,-1.345897,1.136522,0.306074,-1.355274,1.159650,0.319239,-1.363314,1.186053,0.328639,-1.328774,1.193413,0.319347,-1.370464,1.214813,0.329302,-1.335918,1.219594,0.319402,-1.481639,1.238131,0.326403,-1.455069,1.239725,0.334566,-1.455235,1.207117,0.342086,-1.483673,1.200575,0.338033,-1.450555,1.094178,0.347839,-1.468355,1.126945,0.347036,-1.441056,1.140240,0.341981,-1.425012,1.110019,0.339641,-1.387292,1.125880,0.319907,-1.399112,1.151022,0.331172,-1.414423,1.211988,0.339342,-1.408320,1.179217,0.338425,-1.449977,1.171858,0.345740,-1.375241,1.258887,0.313426,-1.344092,1.258457,0.309498,-1.341256,1.241944,0.315295,-1.374542,1.239554,0.322364,-1.343098,1.268566,0.300211,-1.373665,1.270963,0.303732,-1.412398,1.274801,0.314966,-1.416024,1.260226,0.321255,-1.417088,1.239418,0.330233,-1.478342,1.160999,0.347677,0.505934,1.708507,1.957735,0.505683,1.654070,1.950877,0.577308,1.648518,1.933753,0.583182,1.701210,1.937167,0.502718,1.617312,1.946214,0.574848,1.611087,1.929957,0.635478,1.611340,1.899994,0.638200,1.647438,1.899407,0.649340,1.698900,1.898113,0.686181,1.615257,1.858925,0.689168,1.646410,1.858826,0.727915,1.622790,1.816036,0.733955,1.643180,1.818915,0.738532,1.678543,1.815064,0.697461,1.693202,1.854980,0.765541,1.639598,1.739824,0.776140,1.646438,1.712567,0.794088,1.645167,1.701244,0.779065,1.643310,1.737094,0.812506,1.657108,1.686924,0.792413,1.659715,1.729203,0.751385,1.631398,1.775534,0.761128,1.642385,1.776769,0.768368,1.667472,1.771878,0.752838,1.648647,1.732470,0.762771,1.661673,1.709357,0.717845,1.620313,1.802701,0.739527,1.633492,1.765548,0.628971,1.606794,1.877405,0.678261,1.611589,1.841052,0.498762,1.614715,1.919688,0.570140,1.606356,1.905173,0.251507,1.686073,1.844020,0.244129,1.687558,1.855090,0.274747,1.675205,1.851852,0.266883,1.677836,1.867672,0.345372,1.651976,1.911404,0.298273,1.666034,1.884835,0.305828,1.662991,1.867555,0.354950,1.652078,1.889613,0.418230,1.632677,1.912719,0.415398,1.632264,1.937311,0.415284,1.713312,1.949513,0.414861,1.662387,1.946947,0.343658,1.720573,1.921361,0.340252,1.677207,1.921447,0.232026,1.700874,1.861320,0.260352,1.699548,1.874475,0.297764,1.730291,1.896032,0.294023,1.691165,1.893682,0.412204,1.768563,1.951991,0.503037,1.764527,1.965672,0.342940,1.763649,1.923196,0.304868,1.757703,1.902888,0.587017,1.758300,1.943143,0.661192,1.755241,1.901003,0.713245,1.744195,1.853356,0.749407,1.720642,1.804997,0.779220,1.698735,1.761087,0.802192,1.682020,1.717939,0.816610,1.673393,1.684993,-0.870606,1.599657,1.862281,-0.801525,1.597061,1.894693,-0.815061,1.620353,1.916773,-0.883282,1.621271,1.882185,-0.703733,1.605078,1.913568,-0.718472,1.629428,1.936345,-0.724997,1.680963,1.956798,-0.821675,1.671187,1.935985,-0.888296,1.667383,1.894146,-0.964145,1.647835,1.809965,-0.955134,1.624927,1.805900,-0.927580,1.625218,1.842071,-0.936705,1.659545,1.855191,-0.941622,1.614439,1.797025,-0.914678,1.607220,1.828722,-0.988751,1.633642,1.721087,-1.005603,1.641071,1.716916,-0.972650,1.635537,1.725742,-0.967693,1.628935,1.745333,-0.980139,1.628009,1.745955,-0.993805,1.634922,1.744725,-0.969797,1.625331,1.773884,-0.980870,1.638024,1.774642,-0.957890,1.621316,1.769532,-0.960388,1.647478,1.721384,-0.955289,1.639135,1.738257,-0.945423,1.628713,1.759297,-0.928410,1.618736,1.782351,-0.900376,1.611975,1.808742,-0.855078,1.610188,1.835530,-0.784653,1.612141,1.864500,-0.687489,1.619642,1.883597,-0.443238,1.707951,1.832487,-0.463454,1.702611,1.836116,-0.434865,1.707256,1.844457,-0.455469,1.701056,1.848751,-0.491272,1.690348,1.845728,-0.485914,1.686198,1.860713,-0.531558,1.665906,1.883634,-0.534777,1.678813,1.865033,-0.593917,1.642534,1.880500,-0.601019,1.632311,1.906483,-0.529036,1.679166,1.899506,-0.607052,1.652920,1.927876,-0.530472,1.713690,1.907349,-0.611256,1.698567,1.939893,-0.425235,1.714608,1.852722,-0.447061,1.711247,1.861809,-0.479029,1.698564,1.876305,-0.480332,1.725726,1.882961,-0.530800,1.753772,1.908341,-0.613108,1.756513,1.945304,-0.722449,1.750009,1.968907,-0.489622,1.748629,1.889210,-0.821942,1.739624,1.950829,-0.892646,1.727155,1.902924,-0.943263,1.709156,1.857740,-0.975272,1.685941,1.812833,-0.992210,1.663002,1.774355,-1.004870,1.650936,1.743953,-1.011671,1.649468,1.721239,0.115005,0.986433,2.252440,0.113230,0.983548,2.238524,0.113555,0.959429,2.263727,0.121449,0.961754,2.276595,0.105772,0.982937,2.225721,0.105486,0.964176,2.251445,0.092388,0.965870,2.237484,0.089729,0.982159,2.215618,0.069199,0.983589,2.213671,0.073580,0.969220,2.231882,0.011738,1.008836,2.424115,0.039905,1.013836,2.419116,-0.002277,1.006964,2.406436,0.016771,1.023041,2.402462,0.022269,0.985017,2.277275,0.013071,0.989869,2.302559,0.034347,0.978716,2.255432,0.027113,0.994916,2.238695,0.014655,1.002594,2.262852,0.007614,1.009548,2.294160,0.052095,0.973464,2.237995,0.046340,0.987756,2.221313,0.113700,0.997010,2.288303,0.115757,0.991574,2.267920,0.127808,0.965215,2.288449,0.128744,0.971738,2.305558,0.078565,1.013626,2.350231,0.101181,1.003994,2.316321,0.121408,0.982708,2.331707,0.101246,0.998024,2.365065,-0.009128,1.009520,2.362267,-0.007323,0.991062,2.359201,0.003118,0.990755,2.331074,-0.000385,1.011192,2.329895,-0.011191,0.996938,2.384365,-0.008017,1.014176,2.386915,0.051271,1.024223,2.382973,0.071395,1.010244,2.398000,0.015832,1.102591,2.193104,0.034266,1.097955,2.181623,0.038133,1.128444,2.180610,0.024233,1.131240,2.189897,0.055463,1.093976,2.174724,0.051829,1.126044,2.174116,0.050969,1.143435,2.178774,0.042427,1.148446,2.180824,0.031048,1.151176,2.186364,0.065267,1.166131,2.225600,0.064117,1.156363,2.240507,0.045938,1.158246,2.251749,0.054513,1.171591,2.227880,0.061015,1.134512,2.261725,0.036312,1.136535,2.281976,0.011367,1.132148,2.290452,0.026878,1.156361,2.255376,0.041404,1.170958,2.226776,0.119458,1.104568,2.182052,0.115474,1.114305,2.198927,0.097555,1.143410,2.194118,0.096159,1.137970,2.181654,0.101917,1.123530,2.218710,0.092003,1.148464,2.208543,0.081936,1.160987,2.204688,0.080992,1.163036,2.197056,0.075596,1.161705,2.188966,0.080409,1.153555,2.225161,0.074921,1.167662,2.215198,0.083632,1.130723,2.240413,0.065203,1.126262,2.171947,0.053911,1.149004,2.175307,0.076787,1.092042,2.169781,0.096502,1.092698,2.167761,0.077379,1.129202,2.170512,0.056738,1.156433,2.181113,0.111767,1.096747,2.171293,0.088481,1.132948,2.174087,0.066841,1.158770,2.183567,-0.010193,1.110253,2.226736,0.000771,1.106664,2.208311,0.011543,1.133473,2.201238,0.002572,1.135794,2.214215,0.019221,1.151947,2.195807,0.014653,1.152726,2.208357,-0.016533,1.120038,2.269265,-0.016804,1.114577,2.247740,-0.000177,1.140307,2.227712,0.002912,1.146320,2.240890,0.012983,1.157405,2.210379,0.019592,1.163491,2.217109,0.011558,1.151918,2.251178,0.029198,1.168011,2.222987,-0.007110,1.126435,2.285681,0.067526,1.170002,2.210100,0.057385,1.169481,2.204660,0.036712,1.167945,2.196973,0.047176,1.170605,2.200296,0.027143,1.160381,2.194696,0.038693,1.159999,2.184834,0.046403,1.157993,2.178941,0.059833,1.055850,2.175776,0.087260,1.052569,2.172354,0.063617,1.020696,2.181951,0.090138,1.018875,2.181806,0.112181,1.019130,2.184095,0.111077,1.052394,2.172619,0.066404,0.997796,2.195753,0.089338,0.996412,2.196243,0.107456,0.998241,2.202833,0.009942,1.068567,2.198157,0.032616,1.061427,2.183585,0.010937,1.035361,2.207189,0.035717,1.026817,2.190939,0.018083,1.011347,2.221452,0.040386,1.002376,2.203385,-0.020216,1.078234,2.241118,-0.007608,1.074294,2.216802,-0.018809,1.046537,2.258778,-0.007046,1.042212,2.229026,-0.005879,1.025769,2.278706,0.002332,1.018226,2.245500,-0.026210,1.087050,2.300323,-0.027446,1.082258,2.270655,-0.023813,1.056384,2.331240,-0.023606,1.052448,2.296041,-0.014888,1.031484,2.354156,-0.010142,1.031632,2.318383,0.002728,1.102456,2.328016,-0.016705,1.094252,2.321793,0.003469,1.072234,2.361565,-0.015678,1.062216,2.354411,0.008608,1.045908,2.384566,-0.010317,1.036082,2.376724,0.060030,1.107192,2.288553,0.029857,1.107233,2.314711,0.063120,1.077090,2.315529,0.032742,1.078701,2.347023,0.068528,1.045277,2.335894,0.038099,1.049259,2.369168,0.110458,1.093543,2.234738,0.087068,1.102584,2.260483,0.114328,1.062285,2.253919,0.091238,1.071708,2.282314,0.112607,1.029481,2.270953,0.095971,1.038872,2.301337,0.137183,1.066452,2.190627,0.129821,1.080451,2.211395,0.136544,1.033907,2.206962,0.131700,1.048534,2.229014,0.125282,1.008063,2.227917,0.121161,1.018589,2.246427,0.130177,1.056410,2.176091,0.129559,1.023209,2.191501,0.119482,1.001792,2.213200,-0.306097,0.977645,2.258370,-0.317435,0.980204,2.281959,-0.299305,0.993236,2.245888,-0.315253,1.000081,2.266156,-0.316657,1.003977,2.292243,-0.319394,0.982738,2.309571,-0.256114,0.984249,2.231808,-0.277181,0.987013,2.234750,-0.286446,0.974337,2.243766,-0.265915,0.973674,2.241769,-0.194122,0.984181,2.427030,-0.182088,0.989551,2.408961,-0.210829,1.000204,2.428653,-0.186284,1.014180,2.410710,-0.217510,0.995927,2.259322,-0.227141,0.981158,2.270737,-0.214471,0.986907,2.293012,-0.207382,1.007263,2.282005,-0.201059,0.987872,2.314602,-0.197940,1.012192,2.306903,-0.246190,0.977207,2.252594,-0.236083,0.988677,2.241920,-0.314800,0.986234,2.336847,-0.308574,1.006954,2.319107,-0.295301,1.010172,2.344195,-0.305480,0.991286,2.363252,-0.290051,0.996631,2.388881,-0.276975,1.015760,2.368359,-0.252640,1.022747,2.389633,-0.267422,1.005463,2.409714,-0.187464,0.985377,2.338568,-0.173949,0.982757,2.364509,-0.166695,1.002170,2.365921,-0.182740,1.008590,2.334641,-0.172151,0.986603,2.390565,-0.163074,1.004574,2.394122,-0.237604,1.009832,2.423410,-0.221385,1.027713,2.407329,-0.198573,1.162585,2.201278,-0.203056,1.141593,2.197751,-0.187993,1.141402,2.202015,-0.188257,1.164808,2.200990,-0.211346,1.105080,2.200300,-0.190841,1.105575,2.205799,-0.172051,1.108383,2.215343,-0.172729,1.142572,2.209298,-0.175513,1.166486,2.205845,-0.175789,1.144368,2.315712,-0.206462,1.150106,2.307860,-0.199898,1.176870,2.280324,-0.178172,1.172288,2.281513,-0.234225,1.152827,2.291560,-0.220780,1.178533,2.272159,-0.213355,1.190214,2.259351,-0.200567,1.193726,2.258572,-0.186082,1.190451,2.254706,-0.232355,1.190425,2.240939,-0.249083,1.175607,2.246485,-0.252731,1.171467,2.233543,-0.228896,1.189623,2.233099,-0.272300,1.149121,2.256024,-0.279045,1.142133,2.239452,-0.275751,1.132657,2.225079,-0.249837,1.166009,2.221018,-0.224051,1.188230,2.224082,-0.256040,1.152017,2.273265,-0.237411,1.178183,2.259722,-0.223103,1.193525,2.249939,-0.249592,1.114501,2.203827,-0.231522,1.108163,2.199279,-0.216775,1.145320,2.197873,-0.228982,1.151809,2.203000,-0.202291,1.168248,2.198557,-0.201708,1.178585,2.207605,-0.240867,1.158975,2.210461,-0.215130,1.183486,2.215077,-0.265300,1.123096,2.212024,-0.159925,1.143531,2.220017,-0.163586,1.165793,2.214980,-0.157550,1.111500,2.228480,-0.147170,1.114199,2.244447,-0.151201,1.145153,2.232213,-0.158443,1.162521,2.226701,-0.148320,1.149920,2.245518,-0.157090,1.171125,2.230133,-0.141668,1.118373,2.263869,-0.141934,1.125209,2.285939,-0.151506,1.156876,2.260077,-0.163561,1.178791,2.238806,-0.152029,1.134816,2.306546,-0.160850,1.165017,2.273611,-0.173419,1.185121,2.247626,-0.212380,1.198487,2.242606,-0.201589,1.196408,2.235193,-0.191328,1.192378,2.228016,-0.180135,1.187854,2.220972,-0.182927,1.177063,2.207596,-0.169919,1.180564,2.216625,-0.190426,1.175187,2.200176,-0.279784,1.033493,2.222358,-0.259545,1.024172,2.213170,-0.246470,1.062482,2.205022,-0.267320,1.070092,2.209904,-0.236904,1.019909,2.210743,-0.223374,1.058928,2.203598,-0.269090,1.001147,2.223320,-0.290653,1.010317,2.234198,-0.246907,0.996562,2.220104,-0.210407,1.022302,2.217494,-0.198081,1.061312,2.210310,-0.187563,1.033170,2.234659,-0.175743,1.068316,2.223758,-0.223661,0.999539,2.228459,-0.203604,1.010913,2.246398,-0.173442,1.045028,2.255009,-0.159329,1.074549,2.240357,-0.165201,1.052123,2.278998,-0.148849,1.078205,2.260692,-0.192386,1.024703,2.268427,-0.185262,1.032859,2.294617,-0.156218,1.054176,2.308129,-0.141194,1.081656,2.285641,-0.144187,1.051063,2.342860,-0.138106,1.087246,2.314847,-0.171692,1.030726,2.325140,-0.153596,1.021614,2.361047,-0.144373,1.053728,2.374823,-0.147822,1.096380,2.341838,-0.167503,1.066296,2.386621,-0.174608,1.108402,2.353078,-0.149942,1.023752,2.391487,-0.171101,1.037171,2.402346,-0.210782,1.080555,2.371808,-0.213863,1.118819,2.341876,-0.252117,1.083828,2.344384,-0.249592,1.121541,2.317225,-0.210282,1.049613,2.393127,-0.248456,1.049760,2.370523,-0.282272,1.081153,2.317426,-0.274971,1.118746,2.292333,-0.302302,1.076035,2.294554,-0.294682,1.114342,2.271464,-0.277600,1.045368,2.345764,-0.299243,1.041068,2.322100,-0.310968,1.066872,2.273261,-0.302978,1.105042,2.251822,-0.307885,1.055758,2.253572,-0.298396,1.092901,2.234806,-0.312588,1.035826,2.298675,-0.314469,1.028218,2.273665,-0.298525,1.044428,2.235052,-0.284986,1.080640,2.220547,-0.309916,1.020163,2.250733], + 'morphTargets': [], + + 'normals': [0.920499,0.200568,-0.335246,0.907987,0.128605,-0.398694,0.931089,0.100497,-0.350597,0.953032,0.173833,-0.247902,0.897702,0.097293,-0.429701,0.903653,0.065096,-0.423231,0.910977,0.020478,-0.411878,0.944548,0.057863,-0.323222,0.975433,0.125736,-0.180700,0.747948,0.575701,0.330271,0.717154,0.643086,0.268471,0.645955,0.699545,0.305490,0.677541,0.633229,0.374004,0.685507,0.692648,0.224128,0.628376,0.744163,0.226600,0.569811,0.787072,0.236274,0.579455,0.747551,0.324595,0.607959,0.689413,0.393750,0.544572,0.810144,-0.216956,0.489273,0.857814,-0.157140,0.552355,0.832606,-0.040468,0.598193,0.799463,-0.054659,0.451003,0.883602,-0.125614,0.474380,0.879940,-0.024964,0.481948,0.870602,0.098636,0.557634,0.826807,0.073397,0.602374,0.796625,0.049867,0.633900,0.762932,0.126743,0.580859,0.802149,0.138249,0.710776,0.687582,0.148289,0.741722,0.668844,0.049409,0.659536,0.750755,0.036500,0.672506,0.738060,-0.054262,0.764763,0.642872,-0.042390,0.776299,0.607624,-0.167638,0.670339,0.716758,-0.191931,0.450667,0.854335,0.258766,0.519456,0.817835,0.247536,0.532945,0.830805,0.160222,0.464370,0.865902,0.185797,0.268807,0.922056,0.278390,0.364269,0.891293,0.269906,0.368603,0.906980,0.203681,0.262001,0.942045,0.209479,0.366375,0.923887,0.110202,0.245521,0.963775,0.103916,-0.001282,0.958464,0.285134,0.141087,0.948515,0.283517,0.133610,0.968780,0.208716,-0.006287,0.978881,0.204199,0.120548,0.988495,0.091098,-0.009400,0.996582,0.082003,-0.007904,0.877926,0.478683,-0.011658,0.823084,0.567736,0.144444,0.816248,0.559313,0.146397,0.867977,0.474471,-0.010743,0.765618,0.643178,0.144658,0.754540,0.640095,0.281259,0.733329,0.618946,0.278207,0.794244,0.540117,0.276223,0.844691,0.458449,0.144780,0.918149,0.368786,-0.003876,0.928556,0.371105,0.273324,0.891537,0.361156,0.982818,-0.105136,0.151646,0.968902,-0.194830,0.152409,0.983459,-0.175665,0.044038,0.992004,-0.117466,0.045534,0.891720,-0.439528,0.107791,0.919980,-0.386822,0.062807,0.955321,-0.290994,-0.051210,0.983764,-0.161992,-0.077090,0.988128,-0.146733,-0.045198,0.981933,-0.054781,0.181066,0.998383,-0.043672,-0.036225,0.997986,-0.054048,-0.033143,0.981201,-0.059084,0.183569,0.975188,-0.030702,-0.219092,0.970824,-0.054506,-0.233406,0.970031,-0.091739,-0.224952,0.996765,-0.079928,-0.004303,0.981475,-0.083438,0.172430,0.937712,-0.012909,-0.347118,0.921354,-0.046205,-0.385937,0.878903,-0.015290,-0.476730,0.850368,-0.080935,-0.519913,0.908811,-0.095706,-0.406018,0.904080,-0.153294,-0.398846,0.971343,-0.125370,-0.201788,0.832087,-0.182043,-0.523881,0.829402,-0.279550,-0.483657,0.911649,-0.201209,-0.358257,0.975249,-0.144047,-0.167577,0.994018,-0.104923,0.029267,0.982543,-0.099063,0.157262,0.991424,-0.115848,0.060274,0.844997,-0.095950,0.526078,0.921903,-0.069948,0.380963,0.939665,-0.089541,0.330149,0.887387,-0.140873,0.438917,0.963469,-0.138310,0.229286,0.930265,-0.254219,0.264473,0.983032,-0.140660,0.117557,0.973571,-0.217719,0.068545,0.979308,-0.188757,0.072634,0.939116,-0.340007,0.048921,0.971679,-0.194555,-0.133915,0.946104,-0.298715,-0.125034,0.919492,-0.256447,-0.297891,0.836512,-0.351909,-0.419935,0.843379,-0.401959,-0.356487,0.917936,-0.315348,-0.240638,0.861446,-0.406537,-0.304331,0.920042,-0.336253,-0.201086,0.886868,-0.377392,-0.266396,0.929136,-0.324442,-0.177252,0.933775,-0.309122,-0.180273,0.931547,-0.316263,-0.179388,0.935087,-0.267464,-0.232429,0.910916,-0.331767,-0.245155,0.845332,-0.377667,-0.377789,0.875881,-0.286996,-0.387799,0.805444,-0.447554,-0.388470,0.720115,-0.512528,-0.467635,0.766106,-0.415662,-0.490158,0.793420,-0.309153,-0.524277,0.973510,-0.192022,-0.123875,0.948454,-0.268960,-0.167455,0.942961,-0.294259,-0.155614,0.963561,-0.238838,-0.120334,0.989624,-0.143284,0.009857,0.988952,-0.138432,-0.052583,0.980346,-0.182867,-0.073946,0.986847,-0.158177,-0.033143,0.958464,-0.178167,-0.222571,0.974609,-0.069185,-0.212806,0.910367,0.222938,-0.348521,0.941710,0.259346,-0.214179,0.983673,0.097171,-0.151311,0.951720,0.070864,-0.298593,0.951476,0.294229,-0.089908,0.993347,0.112613,-0.023011,0.998138,-0.021332,0.056917,0.997375,-0.032075,-0.064455,0.778130,0.481948,0.402692,0.842586,0.410199,0.348888,0.819330,0.511460,0.259011,0.803308,0.406995,0.434736,0.857997,0.311075,0.408704,0.905271,0.202918,0.373180,0.901944,0.315744,0.294595,0.900052,0.403272,0.165075,0.968932,0.168859,0.180670,0.986236,0.136692,0.092715,0.939085,0.341868,0.034669,0.975463,-0.026063,0.218574,0.988372,-0.025727,0.149693,0.858455,0.512711,-0.011231,0.870418,0.473006,-0.136357,0.829341,0.550066,0.097751,0.781762,0.591632,0.196875,0.946959,0.188421,0.260170,0.950194,0.077883,0.301675,0.811335,-0.065737,-0.580828,0.802942,0.015839,-0.595813,0.886898,0.039613,-0.460219,0.897549,-0.054689,-0.437452,0.778191,0.144810,-0.611072,0.853206,0.180059,-0.489486,0.566149,-0.101901,-0.817957,0.567797,-0.027802,-0.822687,0.697806,-0.007477,-0.716208,0.706137,-0.080355,-0.703452,0.551500,0.106906,-0.827265,0.678030,0.121464,-0.724906,0.277993,0.104434,-0.954863,0.417920,0.100894,-0.902829,0.429701,-0.040468,-0.902036,0.287698,-0.043641,-0.956694,0.419294,-0.130711,-0.898373,0.281991,-0.152532,-0.947203,0.283334,0.890194,-0.356700,0.310068,0.824976,-0.472488,0.145238,0.852107,-0.502762,0.143620,0.909940,-0.389050,0.324992,0.722770,-0.609882,0.145054,0.745048,-0.651021,-0.030427,0.742576,-0.669057,-0.011414,0.850246,-0.526200,0.004700,0.912839,-0.408216,-0.000458,0.978545,-0.205878,0.126347,0.971770,-0.199133,0.140324,0.942564,-0.303018,0.005982,0.950468,-0.310709,0.251045,0.950530,-0.182775,0.268685,0.922880,-0.275826,0.115360,0.991424,-0.060915,-0.005463,0.997345,-0.072481,0.236518,0.970611,-0.043855,0.358592,0.933073,-0.027070,0.368450,0.916440,-0.156011,0.389813,0.891110,-0.232215,0.416669,0.855342,-0.307749,0.283059,0.455519,-0.843989,0.408002,0.454085,-0.792016,0.402966,0.284463,-0.869839,0.271615,0.285440,-0.919065,0.516098,0.450056,-0.728721,0.525498,0.285470,-0.801447,0.544603,0.663961,-0.512345,0.528642,0.579394,-0.620319,0.430403,0.594958,-0.678762,0.449995,0.696188,-0.559252,0.308298,0.601245,-0.737175,0.616779,0.434217,-0.656514,0.640492,0.284341,-0.713340,0.685690,0.414197,-0.598529,0.730766,0.299966,-0.613147,0.764367,0.563616,-0.313150,0.662435,0.662008,-0.350536,0.737693,0.521989,-0.428144,0.648183,0.601856,-0.466475,0.549944,0.739341,-0.388409,0.827876,0.399792,-0.393353,0.858486,0.436720,-0.268777,0.788171,0.347667,-0.507828,0.709769,0.471908,-0.522965,0.627522,0.539048,-0.561754,0.445753,0.784326,-0.431410,0.137486,0.613239,-0.777795,0.135624,0.468276,-0.873104,-0.021790,0.490097,-0.871364,-0.035035,0.622150,-0.782098,0.137608,0.291574,-0.946593,0.139805,0.112461,-0.983764,0.000885,0.118656,-0.992920,-0.006012,0.304300,-0.952544,0.238929,-0.428449,-0.871364,0.108188,-0.447249,-0.887814,0.133122,-0.310007,-0.941343,0.264779,-0.299173,-0.916684,-0.037782,-0.461409,-0.886349,-0.019593,-0.321299,-0.946745,-0.005005,-0.161992,-0.986755,0.145329,-0.160436,-0.976257,0.145756,-0.038331,-0.988556,0.001373,-0.032258,-0.999451,0.536302,-0.376049,-0.755577,0.372875,-0.406934,-0.833857,0.400708,-0.285806,-0.870449,0.561632,-0.258217,-0.786004,0.681875,-0.340281,-0.647481,0.706870,-0.212012,-0.674795,0.811060,-0.173406,-0.558641,0.894894,-0.164617,-0.414716,0.630055,-0.556688,-0.541398,0.663686,-0.428449,-0.613117,0.479263,-0.560320,-0.675527,0.507035,-0.429609,-0.747215,0.465285,0.883755,-0.049348,0.392468,0.913450,0.107303,0.392163,0.863247,0.317728,0.459792,0.841517,0.283578,0.312540,0.922025,0.228370,0.283670,0.882809,0.374371,0.235145,0.812769,0.532975,0.282266,0.774071,0.566668,0.300943,0.711081,0.635426,0.163976,0.800836,0.575945,0.176702,0.734672,0.654958,0.095676,0.794458,0.599689,0.121494,0.747948,0.652516,0.164861,0.654164,0.738121,0.182562,0.644215,0.742698,0.289407,0.589373,0.754234,0.315134,0.581591,0.749931,0.253548,0.712516,0.654195,0.248726,0.719779,0.648091,0.296701,0.561968,0.772088,0.232124,0.664937,0.709861,0.126408,0.797449,0.589953,0.166021,0.846370,0.506027,0.174474,0.865200,0.470046,0.221137,0.598407,0.770043,0.141850,0.719016,0.680349,0.257851,0.548814,0.795160,0.200995,0.553117,0.808466,0.191076,0.562334,0.804498,0.237648,0.413251,0.879025,0.413831,0.132511,0.900632,0.362896,0.321360,0.874630,0.186163,0.510392,0.839534,0.633839,-0.369152,0.679647,0.664510,-0.137730,0.734428,0.673940,0.087039,0.733604,0.340983,0.433058,0.834346,0.163457,0.540544,0.825251,0.257698,0.548814,0.795190,0.276254,0.575335,0.769829,0.302744,0.476638,0.825282,0.297250,0.310556,0.902860,0.298349,0.578692,0.758965,0.310160,0.562304,0.766533,0.300638,0.531114,0.792138,0.310221,0.286081,0.906583,0.247383,-0.382733,0.890103,0.188482,-0.673971,0.714255,0.266335,-0.014771,0.963744,0.272927,0.156041,0.949278,0.188757,-0.561998,0.805292,0.234809,0.501785,0.832484,0.220435,0.574084,0.788537,0.181494,0.557054,0.810358,0.149785,0.557573,0.816462,0.263527,-0.769097,0.582232,0.392590,-0.292459,0.871944,0.370373,-0.819971,0.436354,0.524705,-0.631245,0.571123,0.375408,0.535905,0.756188,0.193732,0.587786,0.785455,0.675436,0.302499,0.672475,0.688986,0.511582,0.513382,0.464217,0.673544,0.575121,0.158818,0.571032,0.805383,0.306833,0.558519,0.770592,0.264504,0.570757,0.777337,0.328501,0.551256,0.766900,0.304666,0.549058,0.778252,0.261208,0.120060,0.957762,0.185492,-0.615162,0.766259,0.236335,0.498947,0.833735,0.143864,0.479385,0.865719,0.169195,0.059542,0.983764,0.113071,-0.672994,0.730918,0.222114,0.545366,0.808191,0.209021,0.583209,0.784936,0.150273,0.566912,0.809931,0.140355,0.533647,0.833949,0.114811,0.877957,0.464736,0.185492,0.707572,0.681814,0.131230,0.880367,0.455702,0.155156,0.695547,0.701498,0.887417,0.369793,0.275155,0.884732,0.297250,0.358959,0.767113,0.340831,0.543413,0.768487,0.436903,0.467452,0.914060,0.211158,0.346202,0.807459,0.248848,0.534806,0.714652,0.233131,0.659444,0.657552,0.336070,0.674245,0.557848,0.487289,0.671773,0.206061,0.696066,0.687765,0.190130,0.561235,0.805475,0.270730,0.825068,0.495895,0.410321,0.619526,0.669149,0.241127,0.665853,0.706015,0.182348,0.601703,0.777581,0.113926,0.448927,-0.886258,0.204932,0.534989,-0.819575,0.252297,0.611682,-0.749748,0.136418,0.501389,-0.854366,0.273812,0.604785,-0.747826,0.340587,0.674795,-0.654683,0.419172,0.800745,-0.427839,0.268227,0.680349,-0.681997,0.161870,0.551012,-0.818628,0.226356,0.524430,-0.820765,0.313578,0.508286,-0.802026,0.468978,0.487869,-0.736198,0.423597,0.601672,-0.677145,0.308695,0.460158,-0.832423,0.400708,0.399915,-0.824274,0.552202,0.286447,-0.782922,0.615131,0.445936,-0.650136,0.566027,0.608844,-0.555742,0.823756,0.229957,-0.518174,0.811518,0.372478,-0.450179,0.733848,0.406781,-0.543992,0.756249,0.244942,-0.606677,0.771355,0.535997,-0.343059,0.681692,0.578204,-0.448256,0.879116,0.470748,-0.074313,0.918973,0.321451,-0.228309,0.951567,0.293588,-0.091067,0.897031,0.429029,0.105960,0.969176,0.243049,0.039949,0.655019,0.742943,-0.137577,0.674123,0.738517,-0.010559,0.540422,0.841365,0.003510,0.567766,0.800439,-0.191992,0.670339,0.714347,0.200751,0.498611,0.826930,0.259865,0.370067,0.901639,0.223792,0.426862,0.901608,-0.069643,0.541002,0.797479,0.267037,0.552080,0.832118,-0.052461,0.696890,0.673177,0.247200,0.685995,0.724754,-0.063936,0.460372,0.773217,-0.436079,0.463179,0.844447,-0.268960,0.546953,0.783532,-0.294687,0.554704,0.696219,-0.455550,0.674734,0.662801,-0.324656,0.685598,0.552232,-0.474258,0.358104,0.827967,-0.431471,0.311502,0.728996,-0.609485,0.277017,0.716636,-0.640034,0.347209,0.834040,-0.428663,0.251228,0.599811,-0.759636,0.200568,0.584582,-0.786126,0.718101,0.422803,-0.552751,0.562914,0.600208,-0.568163,0.757653,0.276437,-0.591144,0.567217,0.484451,-0.665975,0.415021,0.571062,-0.708243,0.444807,0.685324,-0.576556,0.785699,0.077181,-0.613758,0.561510,0.267373,-0.783044,0.747612,-0.232521,-0.622059,0.546159,-0.264565,-0.794794,0.320902,-0.254463,-0.912259,0.370647,0.326365,-0.869503,0.257241,0.345408,-0.902493,0.317606,0.597736,-0.736045,0.190405,-0.224036,-0.955779,0.120518,-0.195196,-0.973327,0.187506,0.350627,-0.917539,0.365551,0.720389,-0.589343,0.399030,0.809717,-0.430219,0.368114,0.903012,-0.221442,0.409894,0.875851,-0.254646,0.327280,0.944884,-0.006775,0.385540,0.918241,-0.090243,0.181524,0.827052,0.531938,0.095187,0.827448,0.553362,0.180914,0.649739,0.738304,0.362804,0.570788,0.736564,0.025513,0.799860,0.599597,0.073214,0.718192,0.691946,0.169622,0.733360,0.658315,0.300119,0.616474,0.727897,0.043458,0.847896,0.528336,0.094394,0.897702,0.430342,0.107486,0.924497,0.365673,0.032228,0.790490,0.611591,0.061983,0.791742,0.607685,0.189734,0.872707,0.449782,0.106418,0.841273,0.529984,0.244362,0.926817,0.285012,0.159825,0.903928,0.396649,0.319559,0.942351,0.099094,0.246406,0.946959,0.206153,0.060671,0.788934,0.611438,0.132817,0.835963,0.532395,0.226936,0.905545,0.358379,0.279733,0.833949,0.475631,0.315775,0.941374,0.118595,0.366192,0.917966,-0.152348,0.416669,0.745750,0.519822,0.624866,0.637867,0.450148,0.799432,0.595416,0.079653,0.795251,0.531236,0.292093,0.872768,0.217780,-0.436842,0.870266,0.343303,-0.353191,0.835597,0.500870,-0.225501,0.771722,0.627400,-0.103732,0.710227,0.666036,-0.227882,0.616230,0.718406,-0.322642,0.502396,0.723136,-0.473952,0.377026,0.667928,-0.641621,0.257424,0.584918,-0.769127,0.163182,0.485427,-0.858882,0.123417,0.451369,-0.883724,0.092257,0.408521,-0.908048,0.075198,0.381787,-0.921171,-0.075869,-0.193793,-0.978088,0.014435,0.232124,-0.972564,0.026612,0.261574,-0.964812,-0.039308,-0.152501,-0.987487,0.040162,0.290170,-0.956114,-0.006836,-0.135624,-0.990722,0.047395,0.356273,-0.933164,0.094913,0.424299,-0.900510,0.082217,0.417646,-0.904843,0.051820,0.364727,-0.929655,0.004547,-0.324961,-0.945708,0.016816,0.168279,-0.985565,0.025819,0.174413,-0.984313,-0.018036,-0.311624,-0.950011,0.019318,0.351695,-0.935881,0.046144,0.353008,-0.934446,0.012299,0.186712,-0.982330,-0.060396,-0.284860,-0.956633,0.002991,0.205817,-0.978576,-0.088229,-0.243538,-0.965850,0.134251,0.347148,-0.928129,0.077212,-0.172674,-0.981933,0.041261,-0.155034,-0.987030,0.087893,0.334971,-0.938108,0.056948,0.315348,-0.947233,0.014283,-0.140751,-0.989929,0.001526,0.167852,-0.985778,-0.007874,0.352580,-0.935728,0.006378,-0.328684,-0.944395,0.001404,-0.327006,-0.945006,-0.003876,0.171422,-0.985168,-0.013672,0.355266,-0.934629,0.057649,0.455794,-0.888180,0.028382,0.405866,-0.913480,-0.010895,0.401532,-0.915769,0.005768,0.441328,-0.897305,-0.023621,0.402081,-0.915281,-0.036500,0.436933,-0.898740,0.080233,0.415052,-0.906217,0.135258,0.476730,-0.868557,0.080569,0.457778,-0.885372,0.181555,0.457808,-0.870296,0.172185,0.501968,-0.847530,0.084414,0.493515,-0.865596,-0.122623,0.112613,0.986023,0.005890,-0.160344,0.987030,-0.064211,-0.245827,0.967162,-0.218787,0.080538,0.972411,0.186377,-0.297006,0.936491,0.062319,-0.392132,0.917783,-0.054933,-0.412397,0.909330,-0.041169,-0.275002,0.960540,-0.057497,0.083041,0.994873,0.350414,0.169347,0.921140,0.365581,-0.072542,0.927915,0.182653,-0.087832,0.979217,0.138646,0.164129,0.976623,0.348308,-0.132664,0.927915,0.259774,-0.185827,0.947600,0.041627,0.502731,0.863399,0.213324,0.530473,0.820399,-0.202307,0.418378,0.885433,-0.243477,0.533097,0.810236,0.013276,0.589740,0.807459,0.457839,-0.084323,0.885006,0.464766,-0.118198,0.877499,0.442579,0.075472,0.893521,0.515061,-0.036012,0.856380,0.324686,0.439344,0.837550,0.462325,0.256233,0.848842,0.798669,-0.106632,0.592212,0.879086,-0.072787,0.471053,0.910581,-0.091311,0.403058,0.826197,-0.116428,0.551195,0.960143,-0.043428,0.276070,0.977142,-0.062929,0.202918,0.980468,0.168798,0.100772,0.988403,0.058931,-0.139836,0.996460,0.002960,-0.083804,0.990417,0.092349,0.102390,0.960509,0.013733,-0.277840,0.984313,-0.018555,-0.175359,0.997925,-0.024812,0.059084,0.999176,-0.039979,-0.005036,0.870663,0.064638,0.487564,0.918882,0.124760,0.374248,0.981323,0.038423,0.188421,0.925748,0.006867,0.378063,0.699149,0.019013,0.714682,0.790033,0.034944,0.612049,0.830439,-0.014954,0.556871,0.744194,-0.038881,0.666799,0.680746,-0.074465,0.728690,0.608020,-0.007141,0.793847,0.722037,-0.123356,0.680746,0.604663,-0.115757,0.787988,0.595416,-0.106021,0.796350,0.811914,0.102298,0.574725,0.831935,0.164342,0.529923,0.779077,0.104465,0.618152,0.761773,0.149846,0.630238,0.506027,0.454176,0.733207,0.594775,0.315195,0.739494,0.409650,0.614673,0.674032,0.273110,0.759697,0.590136,0.192969,0.887661,0.418073,0.434462,0.721763,0.538713,0.593036,0.385601,0.706778,0.698111,0.154729,0.699057,0.608539,0.384991,0.693838,0.091189,0.926420,0.365246,0.689016,0.176550,0.702872,0.745354,0.086947,0.660939,0.762383,0.062838,0.644032,0.696738,0.053652,0.715262,0.601886,0.109745,0.790979,0.511948,-0.155675,0.844752,0.408856,-0.156804,0.899014,0.482528,-0.120945,0.867458,0.504501,-0.113041,0.855953,0.478591,-0.839595,0.256813,0.439863,-0.833827,0.333445,0.579333,-0.748802,0.321848,0.634724,-0.745048,0.204871,0.402966,-0.820887,0.404584,0.469588,-0.752678,0.461440,0.539079,-0.626759,0.562609,0.663259,-0.622669,0.415082,0.761101,-0.597125,0.253182,0.026643,-0.884152,0.466384,0.252541,-0.856288,0.450453,0.254891,-0.892605,0.371838,0.027070,-0.925932,0.376629,0.275491,-0.913572,0.299081,0.027345,-0.951231,0.307230,0.281167,-0.769524,0.573351,0.327433,-0.640858,0.694296,0.026978,-0.793847,0.607501,0.021149,-0.668081,0.743767,0.580432,-0.319803,0.748833,0.538011,-0.322245,0.778863,0.639851,-0.234474,0.731803,0.680227,-0.292520,0.672079,0.454054,-0.341594,0.822871,0.549944,-0.237342,0.800745,0.606464,-0.179815,0.774468,0.689718,-0.272561,0.670797,0.645680,-0.177557,0.742637,0.588061,-0.121403,0.799615,0.716575,-0.125767,0.686056,0.740440,-0.132389,0.658895,0.875393,-0.365764,0.315989,0.779382,-0.281686,0.559618,0.822840,-0.200781,0.531571,0.887356,-0.305673,0.345134,0.548051,-0.135777,0.825343,0.649525,-0.229682,0.724784,0.751396,-0.426435,0.503494,0.773583,-0.364971,0.517960,0.847102,-0.463515,0.259774,0.581347,-0.449599,0.678121,0.688955,-0.449202,0.568773,0.365429,-0.470107,0.803369,0.008118,-0.511124,0.859432,-0.012085,-0.444288,0.895779,0.361431,-0.383801,0.849696,-0.037049,-0.521867,0.852199,0.303385,-0.443434,0.843379,-0.065615,-0.512192,0.856349,0.210211,-0.449751,0.868038,0.410291,-0.238655,0.880154,0.344951,-0.341868,0.874111,-0.075198,-0.444685,0.892483,0.135044,-0.422071,0.896420,-0.301675,0.373028,0.877377,-0.071963,0.397137,0.914914,-0.062288,0.501175,0.863063,-0.338969,0.478256,0.810114,-0.337291,0.484237,0.807276,-0.225562,0.458541,0.859554,-0.033052,0.539781,0.841121,-0.018555,0.485549,0.873989,-0.262215,0.438185,0.859767,-0.161596,0.367473,0.915860,0.051912,0.451064,0.890957,0.185278,0.469710,0.863124,0.048616,0.358776,0.932127,0.123966,0.408551,0.904263,0.101596,0.093448,0.990417,0.061586,-0.639882,0.765984,0.115665,0.458083,0.881344,0.066439,0.129460,0.989349,0.007660,-0.583392,0.812128,0.160039,0.509293,0.845546,-0.009095,0.119541,0.992767,-0.079440,-0.557176,0.826563,-0.145787,0.112217,0.982910,-0.160283,-0.548082,0.820887,-0.202124,0.149266,0.967895,-0.161351,-0.533677,0.830103,-0.042055,0.160222,0.986175,-0.053652,-0.526872,0.848231,0.681997,0.553880,0.477554,0.744224,0.488449,0.455519,0.715506,0.548021,0.433241,0.649678,0.614917,0.446883,0.386761,0.810724,0.439436,0.371532,0.858852,0.352519,0.479568,0.769738,0.421247,0.462020,0.816919,0.345164,0.397748,0.705771,0.586200,0.395550,0.761742,0.513077,0.501450,0.669424,0.548051,0.491195,0.724906,0.482894,0.545610,0.733177,0.405835,0.528123,0.779687,0.336344,0.599963,0.616535,0.509751,0.573138,0.677938,0.460250,0.542405,-0.012177,-0.840022,0.203162,0.001984,-0.979125,0.166601,-0.166356,-0.971862,0.506607,-0.188513,-0.841273,0.003327,0.016755,-0.999847,-0.041139,-0.149113,-0.987945,-0.049715,-0.380444,-0.923460,0.165746,-0.311869,-0.935545,0.487411,-0.294778,-0.821894,0.693442,-0.498123,-0.520524,0.624775,-0.508560,-0.592425,0.602985,-0.593127,-0.533464,0.682638,-0.547838,-0.483566,0.470199,-0.537522,-0.699973,0.460799,-0.621418,-0.633625,0.754540,-0.471297,-0.456618,0.767541,-0.486984,-0.416730,0.786157,-0.327708,-0.523972,0.764428,-0.414380,-0.493851,0.775262,-0.323954,-0.542222,0.729911,-0.419843,-0.539354,0.703146,-0.304971,-0.642262,0.665242,-0.396161,-0.632801,0.483993,-0.390057,-0.783288,0.872738,0.039766,-0.486557,0.872646,0.092654,-0.479415,0.844478,0.020539,-0.535173,0.847316,-0.036592,-0.529771,0.869350,0.138890,-0.474227,0.831568,0.133610,-0.539079,0.762932,0.126896,-0.633839,0.760094,-0.007599,-0.649739,0.557909,0.132969,-0.819147,0.820551,-0.185766,-0.540483,0.820795,-0.175237,-0.543626,0.736167,-0.184667,-0.651112,0.311472,-0.533738,-0.786157,0.338328,-0.440962,-0.831294,0.182928,-0.525773,-0.830683,0.210913,-0.458998,-0.863002,0.261788,-0.598010,-0.757500,0.289590,-0.626057,-0.723991,0.086581,-0.688772,-0.719748,0.145146,-0.642720,-0.752190,0.046632,-0.539018,-0.840999,0.077212,-0.478347,-0.874752,-0.073153,-0.548021,-0.833216,-0.058473,-0.493881,-0.867519,-0.016907,-0.440046,-0.897794,-0.019257,-0.690970,-0.722617,0.008271,-0.598743,-0.800867,0.089908,-0.390790,-0.916044,0.029664,-0.653310,-0.756493,-0.028748,-0.727989,-0.684957,-0.001892,-0.745750,-0.666189,0.020325,-0.662862,-0.748436,-0.065310,-0.655599,-0.752251,0.215491,-0.458480,-0.862148,0.202582,0.370281,-0.906522,0.225867,0.262368,-0.938139,0.066042,0.356456,-0.931944,0.054476,0.252052,-0.966155,0.082797,0.241890,-0.966735,0.085299,0.131077,-0.987671,0.035371,0.136998,-0.989929,0.097934,0.223853,-0.969665,0.136448,0.125980,-0.982574,0.139317,0.039949,-0.989410,0.059175,0.027100,-0.997864,0.223090,0.139775,-0.964690,-0.010712,0.444502,-0.895688,0.045717,0.456496,-0.888516,0.031770,0.486160,-0.873257,-0.037294,0.477096,-0.878048,0.061129,0.346721,-0.935942,0.039521,0.327647,-0.943937,0.016022,-0.142827,-0.989593,0.124485,-0.110630,-0.986023,0.979034,-0.105075,0.174444,0.974090,-0.123630,0.189276,0.977508,-0.106357,0.182012,0.973693,-0.100070,0.204657,0.979766,-0.115329,0.163427,0.985656,-0.108066,0.129398,0.990509,-0.132115,0.037812,0.987640,-0.134983,0.079501,-0.903500,-0.011628,-0.428388,-0.887722,0.033692,-0.459120,-0.916440,0.037873,-0.398328,-0.935392,-0.000092,-0.353526,-0.892239,0.066866,-0.446516,-0.912778,0.079653,-0.400555,-0.939177,0.134587,-0.315928,-0.950224,0.083956,-0.299936,-0.968169,0.027039,-0.248756,-0.598834,0.770104,0.219794,-0.633015,0.747032,0.202948,-0.648152,0.706900,0.283059,-0.604694,0.737388,0.300912,-0.672018,0.716178,0.188299,-0.708670,0.662435,0.242805,-0.747703,0.595141,0.294443,-0.677450,0.656484,0.331736,-0.621113,0.700583,0.351207,-0.470992,0.880764,0.048677,-0.454939,0.887539,-0.072420,-0.529221,0.845149,-0.074770,-0.550401,0.833827,0.041932,-0.430921,0.890316,-0.146947,-0.476699,0.862392,-0.170293,-0.566057,0.791986,-0.228614,-0.605365,0.792108,-0.077700,-0.617298,0.785760,0.038301,-0.729484,0.682730,0.041475,-0.699332,0.705710,0.113559,-0.650288,0.751396,0.111637,-0.676656,0.735343,0.036958,-0.608173,0.783349,0.128239,-0.779321,0.603992,-0.166692,-0.756554,0.652852,-0.037324,-0.683370,0.727409,-0.062227,-0.683767,0.701193,-0.201849,-0.552171,0.821436,0.142399,-0.552934,0.798700,0.237251,-0.478378,0.840114,0.255531,-0.474105,0.866543,0.155797,-0.376965,0.910825,0.168096,-0.369488,0.927641,0.054262,-0.383557,0.882534,0.271920,-0.267739,0.921415,0.281533,-0.262307,0.947935,0.180486,-0.263741,0.962615,0.061251,-0.137791,0.971252,0.194037,-0.144505,0.986816,0.072787,-0.135807,0.949004,0.284463,-0.284646,0.757042,0.588061,-0.157781,0.766167,0.622913,-0.168706,0.814508,0.555040,-0.296304,0.798822,0.523484,-0.166448,0.866359,0.470840,-0.300088,0.839351,0.453200,-0.285470,0.882870,0.372784,-0.150029,0.915738,0.372631,-0.941862,-0.306406,-0.137791,-0.915830,-0.401471,-0.005005,-0.964629,-0.263405,-0.007782,-0.951903,-0.261696,-0.159185,-0.898190,-0.437483,0.042665,-0.955565,-0.270211,0.117649,-0.980285,-0.142308,0.136937,-0.981567,-0.186560,0.041078,-0.960723,-0.263131,-0.088046,-0.989807,-0.071108,-0.123173,-0.990356,-0.065127,-0.122074,-0.994140,-0.068514,0.083438,-0.994476,-0.066927,0.080844,-0.992798,-0.052583,-0.107395,-0.992920,-0.059297,0.102878,-0.964599,-0.072817,0.253334,-0.971587,-0.082827,0.221656,-0.978515,-0.079745,0.190039,-0.836451,-0.071444,-0.543352,-0.867031,-0.024537,-0.497574,-0.935392,-0.055910,-0.349101,-0.924467,-0.078433,-0.373058,-0.951353,-0.042756,-0.305032,-0.819727,-0.218421,-0.529405,-0.818323,-0.156285,-0.553087,-0.923185,-0.124790,-0.363475,-0.928953,-0.168035,-0.329844,-0.990020,-0.086856,-0.110843,-0.985473,-0.138066,-0.098636,-0.993927,-0.069887,0.084719,-0.987548,-0.133763,0.082614,-0.983734,-0.077975,0.161687,-0.929655,-0.117038,0.349254,-0.954619,-0.138462,0.263588,-0.918363,-0.085604,0.386334,-0.834986,-0.098178,0.541398,-0.869594,-0.167272,0.464522,-0.924894,-0.270272,0.267403,-0.978881,-0.141270,0.147588,-0.962767,-0.262703,0.063234,-0.965300,-0.254158,0.059542,-0.969604,-0.218055,-0.110874,-0.943480,-0.330821,0.018372,-0.951384,-0.279366,-0.129643,-0.849208,-0.292123,-0.439833,-0.836055,-0.252266,-0.487167,-0.929472,-0.207923,-0.304605,-0.921873,-0.251991,-0.294259,-0.933348,-0.281930,-0.222053,-0.912625,-0.310373,-0.265999,-0.912442,-0.294992,-0.283517,-0.934843,-0.290719,-0.203772,-0.862545,-0.352428,-0.362957,-0.853664,-0.340648,-0.393902,-0.758446,-0.419965,-0.498337,-0.817194,-0.387463,-0.426649,-0.838008,-0.348827,-0.419538,-0.778314,-0.379345,-0.500290,-0.882412,-0.320719,-0.344127,-0.915799,-0.258461,-0.307413,-0.860103,-0.291879,-0.418317,-0.797662,-0.311777,-0.516221,-0.926908,-0.284768,-0.244331,-0.949736,-0.241707,-0.198798,-0.974303,-0.162999,-0.155278,-0.956633,-0.207160,-0.204657,-0.979247,-0.135105,-0.151006,-0.952513,-0.161077,-0.258278,-0.989227,-0.101444,-0.105441,-0.994934,-0.095309,-0.031068,-0.988311,-0.115238,-0.099551,-0.969329,-0.072970,-0.234596,-0.999451,-0.005890,0.032197,-0.991272,0.129643,-0.023103,-0.981872,0.080050,-0.171758,-0.994201,-0.041536,-0.099033,-0.955199,0.286813,-0.072665,-0.952849,0.211371,-0.217566,-0.923185,0.138981,-0.358287,-0.947630,0.033082,-0.317576,-0.934080,0.242775,0.261757,-0.876492,0.357067,0.322855,-0.855281,0.434095,0.282876,-0.918271,0.326243,0.224281,-0.808618,0.453139,0.375195,-0.781152,0.523331,0.340434,-0.825953,0.515519,0.228065,-0.904782,0.399853,0.146489,-0.990692,0.011628,0.135533,-0.981628,0.166845,0.092349,-0.985717,0.022889,0.166753,-0.968657,0.194220,0.154790,-0.935759,0.349498,0.046266,-0.815546,0.573016,0.080691,-0.850581,0.525803,-0.000031,-0.881558,0.456557,-0.119755,-0.771020,0.615314,0.163823,-0.957610,0.215644,0.190863,-0.971618,0.122593,0.202216,-0.874050,0.093783,-0.476669,-0.894406,-0.000092,-0.447249,-0.792169,0.078738,-0.605152,-0.815760,-0.025178,-0.577837,-0.818934,-0.096805,-0.565630,-0.898556,-0.070376,-0.433088,-0.684835,0.082430,-0.723991,-0.712516,-0.032105,-0.700888,-0.596026,0.096438,-0.797113,-0.614826,-0.025666,-0.788232,-0.630451,-0.118931,-0.767022,-0.728538,-0.114841,-0.675253,-0.519333,-0.024567,-0.854183,-0.515213,-0.129978,-0.847133,-0.510758,0.112033,-0.852351,-0.367870,0.125309,-0.921384,-0.358318,-0.027802,-0.933164,-0.346294,-0.151952,-0.925718,-0.178594,0.721458,-0.668996,-0.163732,0.830866,-0.531785,-0.324870,0.690634,-0.646077,-0.318400,0.801355,-0.506363,-0.302408,0.879360,-0.367718,-0.154698,0.902554,-0.401746,-0.290628,0.917844,-0.270241,-0.152959,0.941740,-0.299509,-0.281655,0.940031,-0.192206,-0.148961,0.967437,-0.204627,-0.270486,0.959410,-0.079592,-0.145878,0.986175,-0.078524,-0.373516,0.911679,-0.171026,-0.367779,0.926664,-0.077242,-0.394238,0.890011,-0.228950,-0.432936,0.844813,-0.314341,-0.567186,0.230750,-0.790582,-0.483779,0.269692,-0.832575,-0.540208,0.367748,-0.756890,-0.450056,0.419050,-0.788537,-0.348857,0.464614,-0.813868,-0.367748,0.301218,-0.879757,-0.434492,0.549120,-0.713889,-0.329478,0.583483,-0.742241,-0.538255,0.506821,-0.673330,-0.564714,0.619892,-0.544755,-0.446547,0.661061,-0.602954,-0.753716,0.187933,-0.629719,-0.654805,0.196936,-0.729667,-0.722098,0.272347,-0.635884,-0.643178,0.312998,-0.698813,-0.683920,0.546678,-0.483077,-0.690298,0.637898,-0.341319,-0.583544,0.712485,-0.389599,-0.786981,0.433119,-0.439375,-0.790887,0.529527,-0.306681,-0.892331,0.367901,-0.261422,-0.874477,0.278024,-0.397412,-0.758446,0.336894,-0.557878,-0.830683,0.212867,-0.514359,-0.658040,0.437239,-0.612995,-0.456069,0.765465,-0.453871,-0.194617,0.494705,-0.846950,-0.189184,0.614154,-0.766167,-0.170934,0.125340,-0.977264,-0.189184,0.313395,-0.930570,-0.173070,-0.324076,-0.930052,-0.166997,-0.162511,-0.972442,-0.164586,-0.459975,-0.872524,-0.307047,-0.437727,-0.845027,-0.331004,-0.306925,-0.892300,-0.160680,-0.029756,-0.986541,-0.501297,-0.269204,-0.822291,-0.475845,-0.402448,-0.782006,-0.626545,-0.363689,-0.689291,-0.637684,-0.232673,-0.734275,-0.733726,-0.211493,-0.645650,-0.724174,-0.333506,-0.603565,-0.813166,-0.194739,-0.548448,-0.887082,-0.177465,-0.426099,-0.602191,-0.466201,-0.648030,-0.700003,-0.419477,-0.577929,-0.563707,-0.532701,-0.631184,-0.667623,-0.466842,-0.579913,-0.198523,0.792901,0.576067,-0.248878,0.873379,0.418592,-0.341594,0.862545,0.373211,-0.235237,0.775323,0.586077,-0.281014,0.910550,0.303140,-0.361461,0.911191,0.197546,-0.476516,0.879147,-0.000641,-0.448103,0.833430,0.323374,-0.277749,0.713126,0.643635,-0.144871,0.670095,0.727958,-0.120884,0.741844,0.659566,-0.140751,0.741844,0.655599,-0.139103,0.664998,0.733726,-0.112491,0.774377,0.622608,-0.139561,0.781091,0.608570,-0.165685,0.779260,0.604358,-0.258034,0.660970,0.704611,-0.255470,0.719840,0.645375,-0.174505,0.822291,0.541612,-0.328959,0.523759,0.785760,-0.341929,0.552232,0.760308,-0.300363,0.576678,0.759728,-0.229194,0.743889,0.627735,-0.201605,0.824458,0.528733,-0.190100,0.503800,0.842616,-0.281198,0.503342,0.817011,-0.239479,0.595965,0.766442,-0.170660,0.555925,0.813501,-0.172155,0.717338,0.675069,-0.656575,0.092746,0.748497,-0.643574,-0.111881,0.757134,-0.323801,0.324381,0.888760,-0.317637,0.410230,0.854854,-0.618213,-0.347850,0.704825,-0.372326,0.159368,0.914274,-0.195471,0.433515,0.879665,-0.137577,0.497574,0.856410,-0.124851,0.501724,0.855953,-0.322520,0.515946,0.793542,-0.345256,0.542039,0.766106,-0.333232,0.483840,0.809198,-0.332316,0.305979,0.892117,-0.337687,0.546678,0.766198,-0.307993,0.557848,0.770623,-0.265633,0.549974,0.791772,-0.313822,0.340983,0.886105,-0.274789,-0.337962,0.900113,-0.212012,0.516770,0.829432,-0.266274,0.197089,0.943510,-0.237617,0.021180,0.971099,-0.178564,-0.648305,0.740104,-0.196905,-0.522385,0.829615,-0.143773,0.535325,0.832301,-0.219642,0.537828,0.813898,-0.104068,0.510727,0.853389,-0.518174,-0.616382,0.592883,-0.361827,-0.266305,0.893368,-0.370556,-0.808710,0.456771,-0.251686,-0.754418,0.606189,-0.702048,0.486526,0.519974,-0.675802,0.285592,0.679464,-0.372539,0.512497,0.773644,-0.473495,0.653493,0.590503,-0.176489,0.563768,0.806818,-0.114841,0.554064,0.824488,-0.294565,0.520096,0.801691,-0.346049,0.504410,0.791040,-0.365795,0.502152,0.783563,-0.333293,0.503006,0.797388,-0.164342,0.462996,0.870968,-0.259072,0.482833,0.836482,-0.281137,0.144169,0.948759,-0.189032,0.068056,0.979583,-0.214850,-0.580157,0.785638,-0.134465,-0.654317,0.744133,-0.117344,0.601611,0.790094,-0.201727,0.597461,0.776086,-0.245796,0.505753,0.826899,-0.138951,0.517655,0.844203,-0.145940,0.662618,0.734581,-0.171117,0.722678,0.669637,-0.200415,0.737388,0.645009,-0.195135,0.787957,0.583941,-0.721946,0.252052,0.644368,-0.825068,0.207587,0.525468,-0.782495,0.300760,0.545152,-0.647450,0.357707,0.672903,-0.926328,0.127293,0.354534,-0.917295,0.219489,0.332163,-0.909665,0.318155,0.266884,-0.767571,0.405011,0.496719,-0.566759,0.496536,0.657399,-0.203070,0.557573,0.804865,-0.203284,0.690359,0.694266,-0.134404,0.608600,0.781976,-0.087191,0.581469,0.808863,-0.092898,0.577990,0.810724,-0.069369,0.572436,0.816980,-0.447188,0.801263,-0.397473,-0.355541,0.683187,-0.637806,-0.260445,0.649129,-0.714652,-0.286325,0.706076,-0.647633,-0.289285,0.625843,-0.724265,-0.213233,0.582904,-0.784051,-0.119541,0.504288,-0.855190,-0.159398,0.548082,-0.821070,-0.197974,0.584674,-0.786706,-0.658498,0.259713,-0.706320,-0.548082,0.391583,-0.739067,-0.500687,0.527360,-0.686392,-0.635456,0.478072,-0.606281,-0.468368,0.474380,-0.745323,-0.393475,0.538835,-0.744835,-0.251564,0.548387,-0.797449,-0.424543,0.627949,-0.652211,-0.568926,0.647023,-0.507553,-0.711753,0.615467,-0.338481,-0.781518,0.413434,-0.467208,-0.805811,0.553819,-0.209510,-0.874325,0.351695,-0.334391,-0.886654,0.197241,-0.418226,-0.801965,0.225471,-0.553148,-0.968719,0.224250,-0.105960,-0.987701,0.153752,-0.027314,-0.945341,0.275948,-0.173559,-0.886380,0.462661,0.015381,-0.902432,0.403790,0.150029,-0.386456,0.887020,0.252571,-0.515854,0.799615,0.307321,-0.566668,0.821955,0.056917,-0.451125,0.891659,-0.037202,-0.674764,0.687155,0.269143,-0.681692,0.726859,0.083163,-0.672597,0.739616,-0.022767,-0.603046,0.789026,-0.117222,-0.563250,0.773614,0.290262,-0.715476,0.647114,0.263222,-0.588946,0.807947,-0.017914,-0.706626,0.707175,-0.023164,-0.589007,0.772668,-0.236702,-0.704825,0.663350,-0.251259,-0.488205,0.842586,-0.227271,-0.481918,0.776574,-0.405713,-0.592578,0.695578,-0.406171,-0.727897,0.550310,-0.408948,-0.239174,0.604877,-0.759514,-0.296243,0.735527,-0.609241,-0.285989,0.607471,-0.741020,-0.324778,0.740776,-0.587970,-0.357830,0.839808,-0.408185,-0.355937,0.845088,-0.398846,-0.440016,0.562059,-0.700308,-0.597095,0.470016,-0.650014,-0.593951,0.593066,-0.543535,-0.463363,0.684225,-0.563097,-0.795923,0.256874,-0.548143,-0.761467,0.404584,-0.506363,-0.366161,-0.263985,-0.892300,-0.588946,-0.264901,-0.763482,-0.593616,0.260720,-0.761315,-0.408460,0.320048,-0.854793,-0.785974,-0.225196,-0.575762,-0.818659,0.072207,-0.569689,-0.195227,-0.204382,-0.959197,-0.251259,-0.233619,-0.939268,-0.308054,0.342936,-0.887387,-0.247536,0.355815,-0.901151,-0.348399,0.594775,-0.724448,-0.379589,0.724204,-0.575671,-0.404035,0.818445,-0.408460,-0.378887,0.924406,-0.043245,-0.410688,0.884335,-0.221961,-0.315653,0.948241,0.034028,-0.361339,0.912412,-0.192053,-0.182562,0.762932,0.620136,-0.115482,0.764244,0.634449,-0.223548,0.716727,0.660512,-0.328440,0.650349,0.684896,-0.101199,0.780969,0.616291,-0.162145,0.795740,0.583483,-0.246773,0.786493,0.566118,-0.383953,0.624989,0.679647,-0.153508,0.825648,0.542863,-0.205847,0.835261,0.509812,-0.115635,0.799707,0.589129,-0.121281,0.765923,0.631336,-0.104923,0.772973,0.625660,-0.178594,0.855983,0.485122,-0.230506,0.908200,0.349284,-0.120640,0.825739,0.550951,-0.159368,0.892697,0.421491,-0.301279,0.935881,0.182470,-0.234748,0.940489,0.245674,-0.115452,0.798639,0.590625,-0.158422,0.842891,0.514206,-0.232948,0.898770,0.371380,-0.314829,0.937407,0.148747,-0.287973,0.822230,0.490890,-0.368084,0.921842,-0.121189,-0.433241,0.716117,0.547197,-0.636708,0.600299,0.483932,-0.788415,0.507767,0.347209,-0.795434,0.583178,0.164769,-0.917570,0.311045,-0.247566,-0.856868,0.504074,-0.107822,-0.922941,0.170141,-0.345256,-0.725486,0.681631,-0.094852,-0.775628,0.631062,0.010224,-0.645009,0.731620,-0.220649,-0.529466,0.726157,-0.438551,-0.275338,0.602496,-0.749107,-0.394360,0.667928,-0.631123,-0.170354,0.533372,-0.828516,-0.083560,0.465377,-0.881130,-0.118290,0.495834,-0.860286,-0.050722,0.435865,-0.898556,-0.018128,0.300424,-0.953612,-0.055147,0.323832,-0.944487,0.016236,0.273385,-0.961730,0.099185,-0.181951,-0.978271,0.034333,-0.147130,-0.988495,-0.024506,-0.137089,-0.990234,-0.107486,0.460250,-0.881222,-0.075106,0.465133,-0.882015,-0.031434,0.398114,-0.916776,-0.028474,0.414136,-0.909757,-0.044282,0.382824,-0.922727,0.014405,0.201178,-0.979430,0.036866,0.220771,-0.974609,-0.031404,0.368480,-0.929075,0.004730,0.186682,-0.982391,0.025452,-0.313761,-0.949126,0.063387,-0.296793,-0.952818,0.112674,-0.268044,-0.956755,0.041169,0.245247,-0.968566,0.133091,-0.227577,-0.964599,-0.111606,-0.162358,-0.980377,-0.155797,-0.181036,-0.971038,-0.197851,0.362011,-0.910916,-0.145940,0.358135,-0.922178,-0.097873,0.343883,-0.933866,-0.067080,-0.146519,-0.986908,0.006195,-0.322489,-0.946532,0.002777,0.177404,-0.984100,-0.010376,0.359508,-0.933073,-0.034089,0.408918,-0.911924,-0.080233,0.421613,-0.903195,-0.140355,0.469008,-0.871944,-0.080142,0.448561,-0.890133,-0.122166,0.439985,-0.889615,-0.206336,0.494461,-0.844325,-0.296945,0.514817,-0.804193,-0.397046,0.446211,-0.801996,-0.262123,0.425733,-0.866024,-0.206854,0.487045,-0.848506,-0.110904,-0.368877,0.922819,0.007752,-0.242042,0.970214,-0.130650,-0.292550,0.947264,-0.013062,-0.187933,0.982086,0.107150,0.113804,0.987701,0.134068,0.091281,0.986755,-0.185614,-0.230293,0.955229,-0.150639,-0.161779,0.975249,-0.285134,-0.205908,0.936094,-0.304361,-0.173437,0.936613,-0.278512,0.110843,0.953978,-0.090976,0.139775,0.985961,0.201239,0.537919,0.818598,0.188696,0.415998,0.889553,0.000000,0.464095,0.885769,0.011841,0.568407,0.822626,-0.121403,0.471419,0.873501,-0.402783,-0.198523,0.893490,-0.391003,-0.015503,0.920225,-0.420270,-0.205267,0.883847,-0.491165,-0.130924,0.861141,-0.333476,0.208899,0.919309,-0.198096,0.378552,0.904111,-0.954802,-0.086062,0.284433,-0.914060,-0.106784,0.391217,-0.936613,-0.088656,0.338939,-0.892056,-0.116947,0.436445,-0.822840,-0.146641,0.548967,-0.835047,-0.119114,0.537095,-0.998169,-0.059175,-0.010437,-0.987304,-0.024567,-0.156804,-0.995636,0.076449,0.053072,-0.989898,0.011231,0.141270,-0.968108,-0.031739,-0.248390,-0.995880,-0.052156,-0.074129,-0.988311,-0.067080,0.136814,-0.979949,-0.073855,0.185003,-0.960387,-0.025361,0.277383,-0.908048,0.061525,0.414258,-0.851375,0.021821,0.524064,-0.904782,-0.045900,0.423353,-0.842219,-0.075716,0.533769,-0.768670,-0.012574,0.639515,-0.674123,-0.057161,0.736351,-0.767907,-0.117496,0.629658,-0.595264,-0.169469,0.785424,-0.718589,-0.164892,0.675558,-0.674612,-0.158666,0.720878,-0.574084,-0.183447,0.797937,-0.584338,-0.104740,0.804682,-0.751274,0.165868,0.638783,-0.830073,0.136723,0.540574,-0.738792,0.121982,0.662770,-0.782556,0.091372,0.615802,-0.412610,0.612201,0.674459,-0.591815,0.335826,0.732749,-0.491501,0.494827,0.716575,-0.305063,0.736351,0.603870,-0.544939,0.172674,0.820460,-0.521928,0.391766,0.757653,-0.338450,0.664113,0.666585,-0.390179,0.385113,0.836299,-0.256264,0.796136,0.548143,-0.213019,0.832118,0.512040,-0.664541,0.106906,0.739525,-0.654927,0.188604,0.731773,-0.691641,0.056764,0.719962,-0.575884,0.033357,0.816828,-0.467879,0.074099,0.880673,-0.457228,-0.192389,0.868252,-0.335154,-0.212226,0.917936,-0.417249,-0.211219,0.883877,-0.487930,-0.175939,0.854946,-0.476211,-0.726310,0.495621,-0.401379,-0.815912,0.416089,-0.531846,-0.783105,0.322245,-0.610065,-0.710929,0.349834,-0.339427,-0.853664,0.395001,-0.396100,-0.847896,0.352306,-0.446486,-0.843410,0.298776,-0.612507,-0.747307,0.257454,-0.735893,-0.637226,0.228797,-0.202002,-0.907254,0.368847,-0.227027,-0.924070,0.307443,-0.190497,-0.878994,0.437056,-0.218360,-0.816248,0.534806,-0.279550,-0.701621,0.655385,-0.408551,-0.285684,0.866848,-0.539506,-0.304636,0.784906,-0.523759,-0.226417,0.821192,-0.403790,-0.385784,0.829493,-0.518509,-0.390332,0.760735,-0.565874,-0.431318,0.702628,-0.633473,-0.414289,0.653493,-0.658193,-0.366832,0.657399,-0.721397,-0.125584,0.680990,-0.604419,-0.137547,0.784692,-0.686636,-0.193396,0.700766,-0.748497,-0.128666,0.650502,-0.832942,-0.236274,0.500320,-0.815119,-0.332255,0.474441,-0.878536,-0.409345,0.246101,-0.888852,-0.345897,0.300424,-0.534989,-0.167669,0.828028,-0.663533,-0.284494,0.691916,-0.790918,-0.444563,0.420454,-0.735557,-0.542894,0.405164,-0.840236,-0.505203,0.196844,-0.651631,-0.591906,0.474288,-0.542955,-0.581256,0.606037,-0.343455,-0.547136,0.763298,-0.381268,-0.445662,0.809931,-0.293100,-0.480758,0.826380,-0.364299,-0.482498,0.796503,-0.278695,-0.263100,0.923612,-0.264473,-0.339335,0.902707,-0.208167,-0.411573,0.887265,0.211554,0.396222,0.893429,0.249763,0.508469,0.824030,0.262490,0.518998,0.813440,0.209784,0.413190,0.886135,0.180792,0.513230,0.838954,0.140233,0.348766,0.926633,-0.007874,0.516984,0.855922,0.009705,0.356151,0.934355,-0.073519,0.522721,0.849300,-0.031068,0.407788,0.912534,-0.071200,0.446913,0.891720,-0.072542,0.073824,0.994598,0.020569,0.093142,0.995422,-0.055086,-0.636860,0.768975,0.043519,-0.576525,0.815882,-0.077578,0.526475,0.846614,0.071047,0.073794,0.994720,0.122898,0.054689,0.990905,0.113895,-0.535447,0.836818,0.122135,-0.532182,0.837733,0.126560,0.098178,0.987060,0.071535,-0.531419,0.844050,-0.714316,0.592212,0.372814,-0.748344,0.525437,0.404767,-0.675863,0.594562,0.435469,-0.648488,0.650227,0.395734,-0.480758,0.805689,0.345958,-0.391369,0.844539,0.365459,-0.480270,0.778466,0.404065,-0.397473,0.810419,0.430342,-0.488296,0.744896,0.454573,-0.396435,0.778100,0.487197,-0.500931,0.698843,0.510514,-0.394910,0.735740,0.550157,-0.556688,0.766350,0.320566,-0.561266,0.738517,0.373547,-0.575762,0.699484,0.423322,-0.592364,0.652882,0.472030,-0.247688,-0.177557,-0.952422,-0.244911,-0.019868,-0.969329,-0.485519,-0.009613,-0.874172,-0.470351,-0.131169,-0.872646,-0.251045,0.061464,-0.966002,-0.502914,0.050905,-0.862819,-0.676260,0.034516,-0.735832,-0.648762,-0.032533,-0.760247,-0.612018,-0.128086,-0.780358,-0.532060,-0.529862,-0.660390,-0.644826,-0.477554,-0.596728,-0.545549,-0.413739,-0.728813,-0.662679,-0.408307,-0.627766,-0.752586,-0.402783,-0.520890,-0.743645,-0.442824,-0.500839,-0.797845,-0.399396,-0.451491,-0.786340,-0.361278,-0.501114,-0.786798,-0.303995,-0.537095,-0.783654,-0.300821,-0.543443,-0.828425,-0.202673,-0.522080,-0.796045,-0.236579,-0.557054,-0.578173,-0.258980,-0.773705,-0.709403,-0.278115,-0.647572,-0.756371,-0.157781,-0.634785,-0.883572,0.031892,-0.467147,-0.890316,0.077548,-0.448653,-0.863033,0.029450,-0.504227,-0.846980,-0.030427,-0.530717,-0.908780,0.112980,-0.401654,-0.885342,0.124516,-0.447920,-0.808863,0.120945,-0.575396,-0.682424,0.114658,-0.721885,-0.814142,0.027741,-0.579943,-0.824396,-0.141423,-0.548021,-0.864467,-0.100742,-0.492477,-0.794794,-0.068514,-0.602954,-0.294107,-0.507035,-0.810175,-0.459517,-0.498550,-0.735038,-0.302255,-0.579058,-0.757164,-0.446242,-0.578845,-0.682455,-0.315806,-0.602069,-0.733299,-0.441389,-0.577197,-0.687002,-0.306986,-0.530595,-0.790033,-0.458022,-0.448469,-0.767479,-0.160161,-0.504013,-0.848689,-0.169317,-0.558245,-0.812189,-0.048830,-0.515580,-0.855434,-0.120304,-0.640706,-0.758263,0.008148,-0.272378,-0.962127,-0.273049,-0.371197,-0.887478,-0.165777,-0.625416,-0.762444,-0.464888,-0.281472,-0.839412,-0.468154,0.315897,-0.825220,-0.283731,0.300272,-0.910672,-0.504166,0.203192,-0.839351,-0.279458,0.198798,-0.939329,0.001312,0.126041,-0.992004,0.021363,0.055544,-0.998199,-0.040590,0.208167,-0.977233,-0.265450,0.124454,-0.956053,-0.514359,0.117985,-0.849391,-0.123783,0.474410,-0.871517,-0.123600,0.427290,-0.895596,-0.086947,0.308054,-0.947356,0.025697,-0.059603,-0.997864,-0.993469,-0.086703,0.073763,-0.986450,-0.064302,0.150853,-0.990570,-0.104556,0.088412,-0.986328,-0.086917,0.139775,-0.987365,-0.070437,0.141789,-0.985839,-0.048036,0.160466,-0.993805,-0.104923,0.035920,-0.994201,-0.105075,-0.022095,0.990600,-0.088382,-0.104160,0.998657,-0.031251,0.040712,0.997467,0.068941,-0.016297,0.991363,0.047761,-0.121982,0.964873,0.049532,0.257912,0.981536,0.101413,0.162053,0.977416,0.153386,0.145268,0.984863,0.168798,-0.038759,0.979278,0.168065,-0.112888,-0.294870,0.049379,0.954253,-0.256996,-0.029817,0.965941,0.623035,0.060335,0.779839,0.464339,0.104770,0.879421,-0.191137,-0.143529,0.970977,0.679586,0.021363,0.733268,0.890805,0.107639,0.441389,0.885739,0.098117,0.453658,0.881100,0.106906,0.460646,0.955657,0.130741,0.263741,0.944060,0.124210,0.305399,0.974761,0.165502,0.149632,0.944060,0.141118,0.297983,0.976104,0.185583,0.112888,0.733299,-0.156682,0.661550,0.914487,0.014893,0.404279,-0.114811,-0.389447,0.913846,-0.059084,-0.551195,0.832240,0.725700,-0.243995,0.643239,0.909238,-0.025819,0.415418,0.572008,-0.787194,0.230476,0.915586,-0.214087,0.340342,0.850490,-0.420087,0.316446,0.172185,-0.944762,0.278787,0.950377,-0.159490,0.267006,0.953917,-0.192450,0.230140,0.947630,-0.176458,0.266091,0.783807,-0.460707,0.416333,0.016083,-0.897244,0.441176,0.925382,-0.084902,0.369366,0.740257,-0.334666,0.583056,-0.028871,-0.721976,0.691275,0.976684,0.074374,0.201300,0.971923,0.093753,0.215674,0.985321,0.039033,0.166112,0.980407,0.139103,0.139409,0.965392,0.098239,0.241462,0.980529,0.176061,0.086825,0.975585,0.215888,-0.040132,0.970550,0.238502,-0.033174,0.974944,0.222175,-0.007508,0.969695,0.211554,0.122044,0.945433,0.123203,0.301584,0.957610,0.144292,0.249306,0.974944,0.211890,0.067385,0.966186,0.174200,0.190039,0.849544,-0.526902,0.024354,0.856349,-0.298166,0.421583,0.839290,-0.510422,0.187139,0.746971,-0.610248,-0.263771,0.746574,-0.033418,0.664418,0.794275,-0.213416,0.568773,0.554003,-0.832484,-0.006165,0.432600,-0.814264,-0.387005,0.439955,-0.639637,-0.630299,0.924497,-0.355602,0.137059,0.883999,-0.461531,0.074190,0.836177,-0.498764,-0.228004,0.934874,-0.354656,0.014527,0.705344,-0.523789,-0.477584,0.911008,-0.412275,-0.005890,0.922666,-0.373699,0.094790,0.919980,-0.332621,0.207312,0.861690,-0.288552,0.417341,0.859859,-0.441267,0.256722,0.864254,-0.069063,0.498215,0.757866,0.128086,0.639668,0.615436,0.273629,0.739158,0.793695,-0.187109,0.578814,0.818171,-0.407758,0.405347,0.940611,-0.163732,0.297372,0.944487,-0.256447,0.205298,0.883236,-0.389538,0.260994,0.909177,-0.224067,0.350871,0.842952,-0.407392,0.351329,0.874294,-0.174871,0.452773,0.682150,0.170751,0.710959,0.886746,-0.039613,0.460524,0.866756,0.031190,0.497726,0.765923,0.194037,0.612903,0.817713,0.111759,0.564653,0.803980,0.175573,0.568102,-0.785485,0.089236,0.612384,-0.700369,0.089114,0.708152,-0.152776,0.235115,0.959868,-0.579363,0.183538,0.794092,0.612232,0.234443,0.755089,0.048585,0.238655,0.969878,0.787835,0.166143,0.593005,0.915586,0.160894,0.368450,0.799066,0.089816,0.594440,0.421491,0.204169,0.883541,0.947325,-0.021790,0.319437,0.969329,-0.243446,-0.032899,0.982299,-0.126560,0.137913,0.965026,-0.033662,0.259865,0.926237,-0.132572,0.352794,0.967437,-0.246834,0.055574,0.996734,-0.080538,0.002045,0.529038,0.410779,0.742515,0.371227,0.660909,0.652181,-0.046815,0.751061,0.658528,-0.163030,0.904691,0.393567,-0.280770,0.914670,0.290719,0.184057,0.746178,0.639760,-0.073885,0.148045,0.986206,-0.047365,0.437757,0.897824,0.585467,0.175359,0.791467,0.605335,0.085055,0.791406,0.610675,-0.381878,0.693686,0.802210,-0.149236,0.578051,0.920042,-0.239204,0.310221,0.785638,-0.331767,0.522172,0.916623,-0.025575,0.398877,0.944426,-0.227058,0.237648,0.775933,0.144200,0.614063,0.816370,0.368297,0.444777,0.904477,0.203070,0.374981,0.856288,0.100345,0.506607,0.835383,0.404492,0.372143,0.926328,0.157628,0.342051,0.935972,-0.181921,0.301401,0.951872,-0.063326,0.299814,0.722526,0.355296,0.593005,0.719596,0.563402,0.405835,0.747185,0.479049,0.460646,0.713095,0.211859,0.668264,0.726890,0.588244,0.354350,0.758873,0.532365,0.375011,0.313150,-0.663137,0.679800,0.592700,-0.296945,0.748650,0.704520,-0.210974,0.677572,0.476608,-0.536119,0.696707,0.498367,-0.303385,0.812128,0.553178,-0.204901,0.807428,0.153996,-0.734581,0.660787,0.088870,-0.750542,0.654805,0.920835,0.120792,0.370739,0.937101,0.209906,0.278848,0.914151,0.081820,0.396985,0.816675,-0.016175,0.576830,0.834101,0.085452,0.544939,0.878964,0.201025,0.432356,0.915647,0.221473,0.335398,0.958770,0.234413,0.160527,0.945555,0.149205,0.289193,0.984924,0.162786,0.058046,0.613636,-0.009156,0.789514,-0.044343,-0.175573,0.983459,0.963713,0.070345,0.257393,0.669973,-0.080905,0.737938,0.146855,-0.465865,0.872555,0.998474,0.053682,0.010468,0.711173,0.131230,0.690603,0.740471,0.039644,0.670888,0.600971,0.250862,0.758843,0.577899,-0.118290,0.807459,0.547502,-0.196814,0.813288,0.606372,-0.007019,0.795129,0.411145,-0.264138,0.872433,0.462752,0.023774,0.886135,0.769616,0.431288,0.470748,0.844905,0.282266,0.454329,0.731346,0.482437,0.482040,0.715262,0.443159,0.540330,0.744621,0.346385,0.570544,0.775964,0.040407,0.629444,0.778649,-0.234352,0.582018,0.900143,-0.010163,0.435469,0.767571,-0.380169,0.515976,0.861202,-0.308390,0.403974,0.630848,-0.381512,0.675588,0.683432,-0.477584,0.552049,0.595111,-0.164220,0.786645,0.481094,-0.419294,0.769860,0.602741,-0.444624,0.662557,0.830653,-0.354015,0.429731,0.847285,-0.374126,0.376904,0.782434,-0.411054,0.467727,0.764641,-0.231819,0.601276,0.908017,-0.304941,0.287179,0.846095,-0.418561,0.329936,0.761956,-0.484176,0.430067,0.703543,-0.431959,0.564226,0.972289,-0.024445,0.232459,0.952971,0.100253,0.285897,0.936949,-0.065523,0.343242,0.858791,0.053011,0.509537,0.914731,-0.080172,0.395978,0.862056,-0.406079,0.303110,0.876186,-0.201636,0.437696,0.863491,-0.081942,0.497604,0.827021,-0.370312,0.422926,0.801141,-0.092288,0.591266,0.763482,0.033662,0.644917,0.930204,0.119327,0.347056,0.842311,0.028230,0.538224,0.728019,-0.144932,0.670003,0.698843,-0.136448,0.702109,0.612293,-0.224525,0.758049,0.609973,0.201758,0.766289,0.631153,0.439619,0.639027,0.686422,0.535051,0.492447,0.701254,0.417646,0.577715,0.636250,-0.112461,0.763207,0.132542,-0.692770,0.708853,-0.916379,0.142216,0.374157,-0.944212,0.102390,0.312937,-0.971313,0.096927,0.217048,-0.953154,0.149052,0.263131,-0.986206,-0.016175,0.164586,-0.993835,-0.025758,0.107639,-0.998444,-0.032258,0.045320,-0.989319,0.089999,0.114383,-0.983306,0.159154,0.087832,-0.703879,-0.124577,0.699271,-0.578326,-0.181036,0.795434,-0.599384,-0.077181,0.796716,-0.660909,-0.028474,0.749901,0.228736,-0.355937,0.906064,0.310678,-0.181677,0.932981,0.466048,-0.050264,0.883297,0.242653,0.079714,0.966796,-0.713157,0.051363,0.699088,-0.822993,0.044221,0.566271,-0.867244,-0.015687,0.497604,-0.808008,0.117100,0.577380,-0.926756,0.101657,0.361583,-0.942656,0.062838,0.327738,-0.134800,-0.643727,0.753258,0.119449,-0.552293,0.825007,-0.623157,-0.289285,0.726585,-0.694082,-0.349071,0.629566,-0.771325,-0.208380,0.601337,-0.828272,-0.246651,0.503067,-0.903775,-0.228675,0.361766,-0.921384,-0.163823,0.352428,-0.893643,-0.225715,0.387799,-0.866115,-0.273446,0.418378,-0.926359,-0.120243,0.356822,-0.906674,-0.155705,0.391949,-0.522172,-0.797174,0.302988,-0.311136,-0.906644,0.284860,-0.340709,-0.812342,0.473251,-0.791528,-0.332621,0.512650,-0.313608,-0.690085,0.652211,-0.873653,-0.257851,0.412549,-0.927763,-0.166356,0.333995,-0.945921,-0.133702,0.295450,-0.926298,-0.131077,0.353191,-0.970641,-0.025819,0.239021,-0.907651,-0.078738,0.412244,-0.961913,0.021729,0.272439,-0.957701,0.132847,0.255135,-0.969298,0.109531,0.220099,-0.979705,0.197241,0.035585,-0.972655,0.227973,0.044038,-0.978698,0.097781,0.180364,-0.969390,0.208716,0.129185,-0.971038,0.129734,0.200537,-0.979705,0.070406,0.187536,-0.494766,-0.866268,0.068697,-0.727561,-0.252419,0.637898,-0.774834,-0.235939,0.586444,-0.770440,-0.637349,-0.013306,-0.707694,-0.206885,0.675527,-0.771508,-0.248115,0.585833,-0.748375,-0.262093,0.609241,-0.807733,-0.286874,0.515000,-0.857295,-0.505631,-0.096713,-0.862209,-0.386059,0.327891,-0.881222,-0.450789,-0.142125,-0.793970,-0.378674,0.475570,-0.870937,-0.414106,0.264412,-0.927122,-0.368053,0.070437,-0.909116,-0.366192,-0.198340,-0.582507,0.295083,0.757347,-0.680715,0.100101,0.725669,-0.839442,-0.322275,0.437513,-0.741905,-0.154942,0.652333,-0.871944,-0.061678,0.485641,-0.933653,-0.342448,0.104862,-0.921201,-0.387768,-0.031587,-0.863369,-0.461867,0.203040,-0.802972,-0.374828,0.463332,-0.884030,-0.456130,0.102023,-0.847438,-0.401929,0.346812,-0.931333,-0.362255,-0.036531,-0.942808,-0.331980,-0.029237,-0.922941,-0.361522,0.131962,-0.904477,-0.203711,0.374706,-0.919431,-0.054720,0.389355,-0.847346,0.041566,0.529374,-0.955779,-0.081606,0.282479,-0.524644,0.365795,0.768670,-0.687948,0.292245,0.664296,-0.699911,0.259743,0.665304,0.145756,0.299509,0.942869,-0.583453,0.200507,0.786981,0.890866,0.138524,0.432569,0.703787,0.301614,0.643178,0.078280,0.370525,0.925504,-0.841945,0.132206,0.523087,-0.857265,0.115207,0.501785,-0.982543,-0.185827,0.004639,-0.915189,0.021851,0.402387,-0.153020,0.395795,0.905484,-0.982269,-0.187384,-0.002960,-0.975005,-0.214484,-0.057772,-0.972167,-0.222816,-0.071963,-0.973052,-0.091494,0.211615,-0.998291,-0.037660,0.044374,-0.993774,-0.061739,-0.092441,0.016083,0.951872,0.306009,0.120548,0.822016,0.556536,-0.300272,0.567583,0.766594,-0.296274,0.737144,0.607288,0.080935,0.583850,0.807794,-0.482162,0.339579,0.807550,-0.686300,0.167760,0.707663,-0.037111,0.376720,0.925565,-0.091556,0.199133,0.975677,-0.780755,0.089633,0.618336,-0.938841,-0.289529,0.186346,-0.967071,-0.222785,0.122837,-0.942015,0.000153,0.335551,-0.894803,-0.002289,0.446394,-0.779595,-0.124607,0.613727,-0.948698,-0.244606,0.200232,-0.854427,-0.176977,0.488449,-0.785852,0.202490,0.584307,-0.818262,0.274026,0.505295,-0.925993,-0.093570,0.365703,-0.640767,0.458571,0.615711,-0.669515,0.423750,0.610034,-0.674245,0.241462,0.697897,-0.788568,0.240028,0.566149,-0.627522,0.474013,0.617634,-0.660909,0.380810,0.646626,-0.661458,0.421033,0.620624,-0.677358,0.349895,0.647084,-0.688375,0.174474,0.704001,-0.675253,0.167455,0.718284,-0.693045,0.075808,0.716849,-0.601306,-0.052431,0.797266,-0.308786,-0.543199,0.780755,-0.520676,-0.211768,0.827021,-0.614795,-0.169042,0.770318,-0.205573,-0.768334,0.606098,-0.636219,-0.156560,0.755425,-0.238502,-0.741935,0.626576,-0.798944,-0.004303,0.601367,-0.936918,0.087771,0.338267,-0.931303,0.226997,0.284738,-0.809381,0.090426,0.580248,-0.948607,0.290231,0.125950,-0.843287,0.180975,0.505997,-0.978515,0.171697,-0.114109,-0.965941,0.254433,-0.046632,-0.976104,0.158666,0.148442,-0.915250,0.194983,0.352519,-0.997223,0.072909,0.012970,-0.765984,0.067721,0.639241,-0.703330,0.000793,0.710807,-0.118015,-0.066408,0.990783,-0.307596,-0.354320,0.883053,-0.993011,0.064547,-0.098514,-0.612018,-0.102176,0.784173,-0.678579,0.004089,0.734489,-0.645314,0.126896,0.753288,-0.674795,0.053377,0.736045,-0.547624,0.019044,0.836482,-0.642232,-0.014863,0.766350,-0.472457,-0.067446,0.878750,-0.594836,-0.075411,0.800256,-0.632130,0.396374,0.665761,-0.641072,0.392315,0.659597,-0.606616,0.441816,0.660878,-0.606311,0.354595,0.711753,-0.619190,0.353832,0.700980,-0.575915,0.179205,0.797601,-0.709708,-0.162786,0.685415,-0.681753,0.081912,0.726951,-0.609607,-0.117374,0.783929,-0.588275,-0.012055,0.808557,-0.485305,0.016511,0.874172,-0.494339,-0.075320,0.865963,-0.441755,-0.117801,0.889340,-0.557878,-0.192480,0.807245,-0.488571,-0.271187,0.829279,-0.728996,-0.484664,0.483322,-0.806330,-0.466933,0.362987,-0.790094,-0.405591,0.459548,-0.710746,-0.371593,0.597247,-0.873409,-0.381634,0.302469,-0.794916,-0.427290,0.430677,-0.677511,-0.344188,0.649983,-0.607654,-0.428327,0.668752,-0.939543,-0.096988,0.328318,-0.909177,-0.083804,0.407819,-0.946867,0.004486,0.321512,-0.807245,-0.057741,0.587359,-0.780786,-0.310739,0.542009,-0.740562,-0.520005,0.425550,-0.882870,-0.115757,0.455092,-0.803583,-0.133000,0.580096,-0.740898,-0.191046,0.643849,-0.698172,-0.157811,0.698294,-0.691366,-0.570910,0.442732,-0.944060,0.041963,0.327036,-0.793786,-0.003143,0.608173,-0.633717,-0.306894,0.710044,-0.588214,-0.180914,0.788171,-0.568834,-0.083895,0.818140,-0.637898,0.310282,0.704825,-0.567980,0.178716,0.803369,-0.663228,0.336680,0.668386,-0.694052,0.209052,0.688864,-0.656758,-0.120273,0.744407,-0.318278,-0.628498,0.709677,0.974975,-0.213324,0.062044,0.954558,-0.267739,-0.130711,0.973998,-0.180609,-0.136631,0.999023,-0.037599,-0.022370,0.950774,-0.133641,-0.279550,0.973693,-0.013367,-0.227363,0.986633,0.100314,-0.128208,0.900510,-0.352855,-0.253975,0.865078,-0.491714,-0.098972,0.756005,-0.652242,-0.054781,0.839991,-0.505020,-0.198340,0.846431,-0.517533,0.125095,0.720786,-0.681112,0.128513,0.577654,-0.807306,0.120609,0.605121,-0.796075,-0.005829,0.687613,-0.711295,-0.145543,0.900021,-0.069735,-0.430189,0.890530,-0.242103,-0.385083,0.757195,-0.526994,-0.385815,0.877194,0.224158,-0.424543,0.889248,0.071780,-0.451704,0.928465,-0.240669,-0.282846,0.924253,-0.362011,-0.121067,0.924467,-0.366832,0.103732,0.628742,-0.705344,0.327280,0.494797,-0.828181,0.263131,0.444075,-0.888730,0.113529,0.331736,-0.913938,0.233650,0.303171,-0.946165,0.113193,0.746971,-0.540880,0.386578,0.842341,-0.335673,0.421583,0.901059,-0.110904,0.419202,0.930784,0.137852,0.338481,0.921537,0.356365,0.154057,0.893094,0.438795,-0.099094,0.874691,0.366771,-0.316782,-0.007935,-0.990509,-0.137181,-0.007599,-0.990356,-0.138310,-0.019013,-0.999512,0.023865,-0.007721,-0.999664,0.024140,-0.028504,-0.989715,-0.140141,-0.040468,-0.998901,0.023041,-0.061037,-0.991424,0.115513,-0.036164,-0.992126,0.119755,-0.010620,-0.992431,0.122105,-0.160283,-0.781304,-0.603168,-0.117313,-0.809351,-0.575427,-0.155339,-0.744957,-0.648732,-0.151250,-0.970855,-0.185858,-0.136753,-0.977935,-0.157903,-0.103916,-0.983673,-0.146764,-0.060060,-0.826472,-0.559740,-0.015107,-0.834712,-0.550462,-0.066591,-0.987548,-0.142308,-0.022370,-0.719810,-0.693808,-0.083773,-0.717917,-0.691061,-0.017640,-0.974883,-0.221961,-0.080508,-0.971496,-0.222938,-0.017548,-0.992889,0.117649,0.048158,-0.935484,0.350017,0.027558,-0.953764,0.299234,-0.040620,-0.993774,0.103610,0.001648,-0.965575,0.260018,-0.050386,-0.995117,0.084719,-0.009522,-0.962279,0.271859,-0.040834,-0.950926,0.306650,-0.060732,-0.993103,0.100009,-0.048555,-0.994537,0.092288,-0.029572,-0.982971,-0.181219,-0.028932,-0.980316,-0.195227,-0.011872,-0.741081,-0.671255,-0.001862,-0.759148,-0.650868,0.018525,-0.773339,-0.633686,0.055940,-0.788324,-0.612659,0.032441,-0.985382,-0.167058,-0.012146,-0.984588,-0.174291,0.187109,-0.947874,0.257790,0.169195,-0.978423,0.118320,0.106113,-0.946562,0.304514,0.075472,-0.989471,0.123447,0.018830,-0.992035,0.124363,0.062075,-0.935545,0.347636,0.131870,-0.803980,-0.579821,0.269692,-0.805872,-0.527085,0.265419,-0.954314,-0.137181,0.121830,-0.980377,-0.154912,0.489334,-0.747673,-0.448866,0.462539,-0.877621,-0.125828,0.441176,-0.897122,0.022065,0.283395,-0.958525,0.029450,0.144017,-0.989135,0.029420,0.047823,-0.998474,0.027131,-0.006470,-0.999664,0.023835,-0.034028,-0.999207,0.020386,-0.036592,-0.999298,0.006409,-0.042299,-0.998962,0.015870,-0.067782,-0.997650,-0.008728,-0.097293,-0.995056,0.018708,-0.086215,-0.996002,0.022462,-0.076205,-0.996826,0.022309,-0.063601,-0.997711,0.022675,-0.071169,-0.991516,0.108615,-0.080935,-0.929502,0.359783,-0.026551,-0.928068,0.371410,-0.106693,-0.932524,0.344920,-0.086184,-0.939787,0.330607,-0.003265,-0.838740,-0.544450,0.001984,-0.837855,-0.545824,-0.972777,-0.101566,-0.208197,-0.974364,-0.210273,-0.079623,-0.986633,-0.140355,-0.082430,-0.987487,-0.002411,-0.157628,-0.981231,-0.170507,0.089969,-0.999512,-0.025208,0.016694,-0.993225,0.091617,-0.071169,-0.591968,-0.792627,0.145848,-0.739128,-0.654286,0.159917,-0.779077,-0.626637,-0.017884,-0.619312,-0.784814,0.022492,-0.876003,-0.455763,0.157659,-0.904202,-0.423322,-0.056551,-0.930784,-0.297739,-0.211982,-0.862758,-0.477462,-0.166204,-0.704276,-0.700339,-0.116062,-0.913236,-0.227638,-0.337809,-0.784845,-0.516068,-0.343028,-0.924619,-0.057711,-0.376476,-0.954985,-0.194311,-0.224067,-0.918485,0.074282,-0.388379,-0.909818,0.227149,-0.347270,-0.943846,-0.302194,0.133335,-0.953185,-0.293069,-0.074068,-0.509507,-0.812708,0.282571,-0.345775,-0.903195,0.254189,-0.633686,-0.690298,0.349101,-0.472243,-0.870998,0.135380,-0.324900,-0.936460,0.131962,-0.847987,-0.296335,0.439344,-0.752922,-0.512314,0.413007,-0.930296,0.132481,0.341990,-0.901517,-0.090884,0.423048,-0.902799,0.427656,-0.044954,-0.924436,0.338511,0.175451,-0.898984,0.368297,-0.236946,0.047182,-0.991638,0.119877,0.027619,-0.999390,0.020081,0.003906,-0.999725,0.022645,0.017182,-0.992279,0.122623,0.019105,-0.990020,-0.139500,-0.005707,-0.990448,-0.137700,0.138585,-0.973571,-0.181494,0.161718,-0.752129,-0.638844,0.176672,-0.784265,-0.594684,0.132969,-0.978637,-0.156743,0.136448,-0.810480,-0.569597,0.098483,-0.984283,-0.146397,0.075869,-0.827265,-0.556658,0.058809,-0.988098,-0.142094,0.024567,-0.835414,-0.549028,0.073550,-0.975097,-0.209082,0.070498,-0.729911,-0.679891,0.008911,-0.978210,-0.207312,-0.011567,-0.733329,-0.679739,-0.055025,-0.941313,0.332926,-0.025727,-0.957152,0.288430,-0.073031,-0.919675,0.385784,-0.001740,-0.990814,0.135166,0.020936,-0.992798,0.117893,0.036256,-0.995331,0.089328,0.049654,-0.993103,0.105991,0.043184,-0.943358,0.328867,-0.007447,-0.955687,0.294259,0.034303,-0.994476,0.099155,-0.033387,-0.755181,-0.654653,0.003327,-0.982391,-0.186743,0.001007,-0.984588,-0.174718,-0.052828,-0.772637,-0.632618,-0.062807,-0.984375,-0.164312,-0.111393,-0.795434,-0.595660,-0.077670,-0.784173,-0.615619,-0.018250,-0.985260,-0.170080,-0.192602,-0.940336,0.280374,-0.110080,-0.936857,0.331919,-0.183752,-0.973785,0.134068,-0.086917,-0.986389,0.139348,-0.074465,-0.921720,0.380566,-0.032991,-0.989319,0.141911,-0.294412,-0.947081,-0.127842,-0.302133,-0.808252,-0.505387,-0.176397,-0.807794,-0.562395,-0.150945,-0.976959,-0.150853,-0.522080,-0.743706,-0.417432,-0.493667,-0.863124,-0.106113,-0.474349,-0.879360,0.041139,-0.308725,-0.950224,0.041688,-0.164403,-0.985687,0.036561,-0.065767,-0.997314,0.031892,-0.011139,-0.999512,0.028138,0.015717,-0.999573,0.024201,0.024720,-0.999512,0.018799,0.036744,-0.999268,0.009522,0.065767,-0.997803,-0.005860,0.082522,-0.996490,0.012818,0.078188,-0.996765,0.017884,0.066683,-0.997620,0.017457,0.052431,-0.998444,0.018097,0.060610,-0.991638,0.113742,0.080966,-0.924131,0.373363,0.035310,-0.926023,0.375774,0.087039,-0.929044,0.359508,-0.002472,-0.838221,-0.545274,0.988495,-0.017670,0.150090,0.985961,-0.025788,0.164861,0.987213,-0.000183,0.159246,0.984466,-0.049043,0.168493,0.945311,0.012574,0.325846,0.922849,0.168584,0.346263,0.857723,0.409009,0.311380,0.984863,-0.015717,0.172430,0.679067,-0.076998,0.730003,0.589465,0.029145,0.807245,0.414380,0.183843,0.891324,0.652242,-0.009644,0.757897,0.534867,0.181097,0.825282,0.258278,0.413800,0.872951,0.024506,0.655110,0.755120,0.337992,0.336283,0.878994,0.665670,0.058626,0.743919,0.622181,0.355693,0.697348,0.794153,0.073031,0.603290,0.396039,0.659841,0.638508,-0.866390,-0.167547,0.470382,-0.872951,-0.258644,0.413526,-0.902829,-0.164922,0.397046,-0.941282,-0.210242,0.264107,-0.962462,-0.257027,0.087069,-0.870968,-0.374126,0.318461,-0.849330,-0.070070,0.523148,-0.866604,-0.062288,0.495071,-0.503189,-0.033326,0.863521,-0.574175,-0.198126,0.794366,-0.416333,0.065218,0.906857,0.443220,0.022645,0.896115,0.316294,0.018830,0.948454,0.231513,-0.149419,0.961272,0.896390,0.167486,-0.410352,0.900418,0.064455,-0.430158,0.572924,0.131321,-0.808985,0.546190,0.270272,-0.792840,0.892392,-0.019501,-0.450789,0.610950,0.017762,-0.791436,0.239753,0.048891,-0.969573,0.173376,0.159825,-0.971770,0.101444,0.307077,-0.946226,0.895047,-0.072359,0.439985,0.925413,-0.058473,0.374340,0.993713,0.064974,0.090976,0.981201,0.065340,0.181433,0.943937,-0.018555,0.329569,0.998291,0.044130,0.037660,0.905606,0.247383,-0.344432,0.925047,0.289895,-0.245369,0.989441,-0.017701,0.143712,0.896146,-0.006897,0.443678,0.915128,-0.060945,0.398480,0.992706,-0.069582,0.098300,0.567583,-0.018769,0.823084,0.616749,-0.008820,0.787103,0.886532,-0.074496,0.456587,0.980529,-0.124424,0.151738,0.994110,-0.028565,-0.104404,0.980255,-0.081668,-0.179937,0.876034,-0.087497,-0.474197,0.969756,-0.177190,-0.167730,0.875851,-0.211585,-0.433699,0.836238,0.031892,0.547410,0.779168,-0.061769,0.623737,0.968505,0.016602,0.248390,0.999817,0.013977,-0.011780,0.549577,0.409497,-0.728172,0.556017,0.510269,-0.656056,0.056673,0.485275,-0.872494,0.027467,0.596515,-0.802087,0.938047,0.333842,0.092654,0.940336,0.327372,-0.092349,0.579028,0.622272,-0.526749,0.634480,0.713981,-0.295969,0.013398,0.709250,-0.704794,0.024873,0.849239,-0.527360,0.906613,-0.149297,0.394635,0.878933,-0.136387,0.456984,0.962828,0.051210,0.265114,0.949919,0.069826,0.304575,-0.774621,-0.621021,-0.119358,-0.381481,-0.890530,-0.247719,-0.839961,-0.542619,-0.002319,-0.938719,-0.288095,-0.189123,-0.913297,-0.333476,-0.233741,-0.645436,-0.649953,-0.401166,-0.090121,-0.916044,0.390790,-0.137211,-0.936918,0.321390,-0.794183,-0.603870,-0.067568,-0.806879,-0.590655,-0.005127,-0.102664,-0.977355,0.185003,-0.660360,-0.719718,-0.214209,-0.759911,-0.479446,0.438887,-0.796167,-0.568529,0.207007,-0.952483,-0.293161,-0.082492,0.037049,-0.533860,0.844722,-0.030702,-0.742119,0.669546,0.676015,-0.561632,0.476974,0.620838,-0.629353,0.467391,0.676015,-0.554949,0.484725,0.916379,-0.132939,0.377514,0.870540,-0.210059,0.444960,0.665059,-0.397687,0.632069,0.688955,-0.245674,0.681845,0.735069,-0.197058,0.648701,0.131474,-0.391003,0.910916,-0.679250,-0.365947,0.636128,-0.860408,-0.485092,0.156072,-0.321757,0.142674,-0.935972,-0.452528,0.247841,-0.856594,-0.203284,0.051943,-0.977722,-0.656484,0.021607,-0.753990,-0.730949,0.077792,-0.677938,-0.782403,0.125492,-0.609943,-0.537736,-0.205451,-0.817682,-0.755913,-0.155919,-0.635792,-0.824061,-0.071474,-0.561968,-0.596118,-0.078951,-0.798975,-0.855617,-0.111118,-0.505478,-0.879116,-0.070345,-0.471328,-0.874477,-0.034455,-0.483810,-0.846492,-0.009461,-0.532273,-0.421552,-0.369427,-0.828120,-0.656911,-0.237892,-0.715415,-0.673940,-0.228706,-0.702445,-0.460860,-0.316233,-0.829188,-0.771020,-0.155583,-0.617481,-0.801294,-0.159062,-0.576708,0.675161,0.271096,0.685995,0.518082,0.273202,0.810511,0.794397,0.164861,0.584552,0.748100,0.217017,0.627033,0.628742,0.307260,0.714286,0.551469,0.255226,0.794153,-0.459334,0.735740,-0.497604,-0.484756,0.775414,-0.404553,0.017762,0.937864,-0.346507,-0.741020,0.544939,-0.392254,-0.740165,0.550920,-0.385479,-0.731254,0.570971,-0.373119,-0.494461,0.812525,-0.308664,-0.008545,0.989563,-0.143773,0.492813,-0.870083,0.004608,-0.019196,-0.926420,-0.375927,-0.388409,-0.722190,-0.572283,-0.206915,-0.813685,-0.543199,-0.353038,-0.618946,-0.701590,-0.172796,-0.779107,-0.602557,0.845973,0.005646,0.533158,0.772759,0.157201,0.614887,0.796686,0.112766,0.593738,0.860164,-0.032624,0.508927,0.781121,0.144688,0.607349,0.809412,0.143010,0.569506,0.838252,0.114658,0.533067,0.905972,-0.071474,0.417188,0.871944,-0.233894,0.430067,0.843593,-0.303507,0.442946,0.803858,-0.086795,0.588397,0.848476,-0.091617,0.521195,0.615284,0.335154,0.713462,0.729484,0.255318,0.634541,-0.853389,0.344981,-0.390728,-0.817499,0.368114,-0.442885,-0.827113,0.402600,-0.392071,-0.855342,0.386639,-0.344737,-0.779382,0.418287,-0.466414,-0.794824,0.444716,-0.412824,0.842738,-0.145360,0.518296,0.866359,-0.104190,0.488357,0.775567,0.045259,0.629627,0.727744,-0.161260,0.666585,0.776299,-0.109500,0.620746,0.841792,0.175237,0.510483,0.637196,0.037202,0.769799,0.534989,0.154881,0.830500,0.399396,0.327799,0.856136,0.754936,-0.108371,0.646748,0.684255,-0.016480,0.729026,0.650746,0.084964,0.754479,0.451796,0.297617,0.840999,0.228553,0.497330,0.836879,0.410871,-0.302835,-0.859920,0.768975,-0.385144,-0.510178,0.812677,-0.388989,-0.433790,0.709037,-0.407788,-0.575274,0.869839,-0.493271,0.006012,0.891537,-0.446181,0.077609,0.727500,-0.159429,-0.667287,0.836787,-0.291665,-0.463301,0.763451,-0.352550,-0.541124,0.613849,-0.231483,-0.754692,0.062471,0.935453,0.347819,-0.385968,0.922056,-0.028748,-0.082095,0.971404,0.222633,0.436201,0.730522,0.525376,-0.464339,0.864223,-0.193548,-0.352519,0.933714,-0.062258,-0.381024,0.902188,0.202094,0.077792,0.873165,0.481094,0.664815,0.437056,0.605762,-0.062288,0.666524,0.742851,0.110508,0.551988,0.826472,-0.306406,0.739311,0.599567,-0.243080,0.721122,0.648701,-0.294626,0.919614,0.259774,-0.608509,0.791253,-0.059725,-0.475845,0.846614,0.238227,-0.677938,0.734428,0.031495,-0.740928,0.670766,-0.032655,-0.651051,0.747917,-0.129154,0.903195,0.425459,-0.056429,0.909452,0.411817,0.056948,0.734703,0.549089,-0.398328,0.732536,0.481796,-0.480850,0.932707,0.301798,0.197333,0.924711,0.372417,-0.078555,0.758415,0.414197,-0.503189,0.391400,0.539720,-0.745293,0.491134,0.420087,-0.763085,0.325999,-0.810541,0.486526,0.452101,-0.712790,0.536180,0.617145,-0.635884,0.463424,0.572802,-0.695334,0.434034,0.563341,-0.625111,0.540208,0.669027,-0.597919,0.441420,0.849940,-0.488083,0.198218,0.774773,-0.513535,0.368725,0.766808,-0.517472,0.379711,0.677908,-0.551347,0.486221,0.684500,-0.573779,0.449660,0.854549,-0.487686,0.178533,0.916837,-0.245369,-0.314890,0.907285,-0.283364,-0.310678,0.915525,-0.401288,0.027223,0.888333,-0.391919,0.239174,0.934721,-0.232276,-0.268929,0.974303,-0.225196,-0.000916,0.960295,-0.197028,0.197333,0.869930,-0.372814,0.322794,0.756951,-0.214545,-0.617206,0.883541,-0.365001,-0.293374,0.710990,-0.207312,-0.671926,0.811762,-0.243568,-0.530717,0.771783,0.011841,-0.635731,0.921140,0.064882,-0.383770,0.293954,0.316507,-0.901883,0.515549,0.393963,-0.760888,0.992706,0.081729,-0.088290,0.601703,-0.059053,-0.796503,0.516190,-0.071078,-0.853481,0.079318,0.163091,-0.983398,0.156987,0.220466,-0.962645,0.414411,0.200629,-0.887692,0.512375,0.078280,-0.855159,0.959014,-0.106815,-0.262337,0.924009,-0.016694,-0.381970,0.611469,-0.091067,-0.785974,0.964843,-0.229469,-0.128117,0.899991,-0.206702,0.383709,0.954314,-0.174932,0.242195,0.977325,-0.172033,0.123356,0.726249,-0.215644,-0.652699,0.961333,-0.270211,0.052797,0.815363,-0.313150,-0.486892,0.937040,-0.273446,0.217109,0.826868,-0.182104,0.532060,-0.627186,0.778344,0.028047,-0.469802,0.798791,0.375744,-0.202368,0.815149,0.542711,-0.352092,0.909513,0.220801,0.140080,0.708640,0.691488,0.074160,0.895444,0.438917,0.438337,0.494278,0.750664,0.442457,0.687490,0.575793,0.666341,0.213507,0.714408,0.694113,0.359661,0.623524,-0.703909,0.662526,-0.255989,-0.455977,0.883023,-0.110965,0.012665,0.991882,0.126286,0.814600,0.001831,0.579974,0.852077,0.063967,0.519425,0.746757,0.460982,0.479354,0.827052,-0.350169,0.439711,0.826228,-0.299173,0.477279,0.924680,0.072268,0.373730,0.860042,0.423200,0.284951,0.954039,0.072634,0.290719,0.927244,0.331706,0.173681,0.544359,0.832911,0.099551,0.641682,0.761223,-0.093478,0.458113,0.820826,0.341105,0.882717,-0.460067,0.095492,0.853969,-0.405286,0.326273,0.813715,-0.094974,0.573412,0.845973,-0.189001,0.498581,0.470992,-0.024384,-0.881771,0.002197,0.166326,-0.986053,0.404492,-0.018586,-0.914335,-0.098941,0.123356,-0.987396,0.379009,-0.087436,-0.921232,0.092990,-0.074892,-0.992828,0.290170,-0.150365,-0.945067,0.450392,-0.390576,-0.802850,0.874294,-0.430036,-0.224982,-0.119541,0.006684,-0.992798,-0.098209,-0.153722,-0.983215,-0.039247,-0.439985,-0.897122,0.605701,-0.633473,-0.481429,-0.243599,0.087771,-0.965880,-0.197302,-0.053896,-0.978851,-0.090762,-0.227363,-0.969543,0.091678,-0.987335,-0.129276,-0.372997,-0.790429,-0.485824,0.260781,-0.892972,-0.366802,-0.185858,-0.729698,-0.657979,0.617725,-0.729881,0.292642,0.675527,-0.730125,0.102725,-0.351573,-0.484268,-0.801141,-0.144566,-0.646901,-0.748711,-0.163396,-0.440016,-0.882962,0.064119,-0.537461,-0.840815,-0.231513,-0.397687,-0.887814,-0.099277,-0.317331,-0.943083,0.127049,-0.394147,-0.910215,0.427015,-0.483261,-0.764244,-0.221717,-0.571337,-0.790155,0.205512,-0.754875,-0.622791,0.692801,-0.709616,-0.128239,0.895596,-0.253182,0.365764,0.116276,-0.013611,-0.993103,-0.025880,0.119816,-0.992431,-0.090243,0.223579,-0.970489,-0.117527,0.291940,-0.949156,0.945250,-0.309885,-0.102206,0.804498,0.015076,-0.593738,0.855190,-0.005585,-0.518235,0.969695,-0.243141,-0.022919,0.310160,0.302133,-0.901364,0.339976,0.259560,-0.903897,0.936827,-0.334269,0.102817,0.862148,0.134770,-0.488357,0.800775,0.061190,-0.595782,0.940092,-0.339091,-0.035035,0.336528,0.348247,-0.874874,-0.102664,0.367931,-0.924131,-0.046510,0.427229,-0.902921,0.106571,0.481674,-0.869808,0.962645,-0.172704,0.208472,0.982574,0.185034,0.015931,0.945921,0.203192,-0.252815,0.938475,-0.280831,0.200842,0.601611,0.447249,0.661824,0.769677,0.057802,0.635792,0.831751,0.054598,0.552416,0.398785,0.459090,0.793817,0.475051,0.162877,0.864711,0.512253,-0.053865,0.857112,0.775567,-0.067904,0.627583,0.875698,-0.145787,0.460280,-0.452284,0.732841,0.508286,-0.090823,0.691763,0.716361,0.037965,0.818476,0.573229,-0.403302,0.844356,0.352641,0.802576,0.104099,0.587359,0.834346,0.042909,0.549516,0.849422,-0.336833,0.406171,0.874264,-0.250343,0.415876,0.845912,0.142674,0.513871,0.879269,-0.050569,0.473586,-0.247719,0.086001,0.964995,0.036958,0.110324,0.993194,0.341105,0.185186,0.921567,0.591662,0.096286,0.800378,-0.445692,0.859157,0.251289,-0.411969,0.769127,0.488510,-0.452284,0.884457,0.114536,-0.450209,0.029908,0.892392,-0.515885,0.410016,0.752129,-0.435926,0.460341,0.773309,-0.416059,0.096896,0.904141,0.514237,-0.761711,0.394116,0.155278,-0.906064,0.393536,0.783441,-0.504135,0.363323,0.787652,-0.436323,0.434950,0.399030,-0.805902,0.437330,-0.057802,-0.940184,0.335704,-0.324351,-0.595691,0.734764,0.130650,-0.451247,0.882748,0.082919,-0.253700,0.963683,-0.346202,-0.325846,0.879727,0.638661,-0.137059,0.757164,0.562975,-0.101016,0.820246,-0.021485,-0.022980,0.999481,0.896878,-0.270638,0.349773,0.936155,-0.093844,0.338786,0.913816,0.037507,0.404370,0.917936,-0.092898,0.385662,0.971374,0.100681,0.215003,0.924711,0.148656,0.350414,0.914579,0.229865,0.332682,0.902158,0.133427,0.410169,0.928587,0.266884,0.257851,0.911740,0.156407,0.379742,0.893399,0.045259,0.446944,0.735496,-0.282174,0.615925,0.852809,0.072207,0.517167,0.237739,-0.699820,0.673574,-0.266518,-0.824152,0.499649,0.490005,-0.565661,0.663259,0.676321,-0.468062,0.568712,0.201880,-0.803827,0.559496,0.371532,-0.698386,0.611682,0.007843,-0.883511,0.468276,-0.192053,-0.901944,0.386761,-0.314341,-0.818659,0.480544,-0.324503,-0.620136,0.714194,-0.353221,-0.290597,0.889248,-0.130528,0.342296,0.930448,0.809412,-0.011353,0.587085,0.927946,0.030183,0.371471,0.972869,0.095126,0.210852,0.907956,-0.264260,0.325144,0.714347,-0.513047,0.475845,0.768181,-0.327555,0.550066,0.611957,-0.593371,0.522843,0.518021,-0.534165,0.668020,-0.116794,-0.190924,0.974609,0.041047,-0.246956,0.968139,0.329325,0.027467,0.943785,0.298868,0.067904,0.951842,0.219245,-0.284188,0.933348,0.422926,-0.102756,0.900296,0.537797,0.035768,0.842280,0.560717,0.195074,0.804682,0.683645,0.287942,0.670583,0.687674,0.276711,0.671194,0.748955,0.414075,0.517258,0.599780,0.009735,0.800073,0.680013,-0.049257,0.731498,0.774255,0.298654,0.557939,0.779260,0.428510,0.457228,0.476699,-0.210700,0.853420,0.195502,-0.401074,0.894925,0.199896,-0.512162,0.835292,0.508560,-0.301248,0.806574,0.559496,-0.432325,0.707114,0.745415,-0.163060,0.646290,0.239570,-0.663076,0.709128,0.303903,-0.774224,0.555162,0.546739,-0.635914,0.544633,0.762169,-0.368877,0.531938,0.823359,0.250252,0.509323,0.783135,0.366985,0.501999,0.885769,0.056856,0.460585,0.614368,-0.010132,0.788934,0.719718,0.017396,0.694021,0.534837,0.215125,0.817072,0.740684,0.183111,0.646382,0.920011,0.230354,0.316935,0.857387,0.298135,0.419477,0.785821,0.305521,0.537675,0.716971,0.268899,0.643086,0.979644,0.088778,0.179998,0.893063,0.188818,0.408307,0.937346,0.051210,0.344523,0.848964,0.109134,0.517014,0.731864,0.134953,0.667898,0.715232,0.192511,0.671834,0.448866,0.047823,0.892300,0.297983,0.068392,0.952086,0.233192,-0.273751,0.933073,-0.257698,-0.134831,0.956755,0.260720,0.851497,0.454909,-0.187231,0.891201,0.413099,0.183813,0.804254,0.565111,0.518357,0.596545,0.612690,0.485641,0.653462,0.580615,0.640278,0.420423,0.642842,0.678976,0.421339,0.601184,0.715140,0.255409,0.650624,0.764672,0.190161,0.615680,0.739586,0.020386,0.672719,0.809595,-0.030122,0.586169,0.715934,-0.213233,0.664785,0.771569,-0.067080,0.632557,0.815088,-0.204993,0.541826,0.814417,0.007111,0.580218,0.864254,-0.147649,0.480850,0.911496,-0.158605,0.379437,0.946806,-0.172094,0.271859,0.968108,0.149113,0.201209,0.902799,0.174169,0.393109,0.910642,0.042604,0.410932,0.978759,-0.014191,0.204413,0.876125,0.178655,0.447707,0.868984,0.097507,0.485092,0.830927,-0.043733,0.554613,0.872158,-0.087741,0.481246,0.960814,-0.101535,0.257912,0.951933,0.085910,0.293954,0.903348,0.086642,0.420057,0.887570,0.139622,0.438978,0.899258,0.177129,0.399915,0.957915,0.020783,0.286203,0.950224,-0.139042,0.278726,0.970000,-0.021851,0.242073,0.988708,0.001099,0.149754,0.950896,-0.219550,0.218024,0.859767,-0.274667,0.430464,0.902493,-0.145024,0.405499,0.934629,-0.046358,0.352489,0.796960,-0.601520,-0.054598,0.434950,-0.754601,-0.491256,0.293466,-0.885250,0.360759,0.457808,-0.763573,0.455306,0.217170,-0.722526,-0.656301,0.103336,-0.977386,0.184332,0.121372,-0.817072,0.563585,0.238960,-0.710715,0.661611,0.670156,-0.631886,0.389294,0.782464,-0.572588,0.244606,0.854762,-0.423872,0.299417,0.859798,-0.443617,0.252815,0.864223,-0.274575,0.421522,0.645192,0.023957,-0.763634,0.386608,-0.054079,-0.920652,0.406690,-0.188757,-0.893826,0.727439,-0.109012,-0.677419,0.151738,-0.186316,-0.970672,0.279641,-0.200171,-0.938994,0.969115,0.036866,-0.243751,0.944395,0.170751,-0.280953,0.915220,0.053316,-0.399365,0.968657,-0.169591,-0.181371,0.948210,0.097293,-0.302255,0.836695,0.073519,-0.542680,0.991668,0.118320,-0.050691,0.977081,0.197638,-0.079012,0.963317,0.190588,0.188757,0.994537,0.013184,-0.103458,0.964507,-0.263344,0.018983,0.911374,0.183447,0.368358,0.995972,-0.060854,-0.065462,0.939390,-0.093936,-0.329661,0.994201,-0.091678,-0.055818,0.928098,-0.085635,-0.362285,0.655995,-0.137730,-0.742058,0.699210,-0.329661,-0.634358,0.932676,0.058962,-0.355815,0.884884,0.154363,-0.439436,0.603504,-0.479476,-0.637043,0.930174,-0.002594,-0.367016,0.751976,0.646535,-0.128361,0.825007,0.556719,-0.096927,0.872372,0.488418,-0.019288,0.539567,-0.112980,-0.834284,0.319803,-0.115360,-0.940397,0.304727,-0.113742,-0.945616,0.567156,-0.111484,-0.816004,0.187994,-0.098788,-0.977172,0.109806,-0.117222,-0.986999,0.794733,-0.111881,-0.596515,0.762444,-0.097446,-0.639637,0.710532,-0.162114,-0.684713,0.506058,-0.110324,-0.855373,0.899106,-0.188757,-0.394879,0.774987,-0.463820,-0.429182,0.529099,-0.474654,-0.703330,0.312052,-0.394848,-0.864101,0.155766,-0.274545,-0.948851,0.325907,-0.074740,-0.942412,0.103610,-0.187475,-0.976775,0.205634,-0.073366,-0.975860,0.232063,-0.471877,-0.850551,0.256844,-0.298563,-0.919156,0.239753,-0.587390,-0.772942,-0.529801,0.838893,0.124516,-0.668355,0.743522,0.020295,-0.134709,0.971374,0.195563,-0.435652,0.894986,0.095798,0.080813,0.993286,0.082583,0.363170,0.917386,0.162694,0.609272,0.722739,0.326212,-0.159703,0.842250,0.514817,-0.232215,0.832240,0.503372,-0.591296,0.787225,0.174841,-0.488235,0.852626,0.186041,-0.334666,0.829859,0.446425,-0.615650,0.771233,0.161596,0.285562,0.565844,0.773431,0.604419,0.478988,0.636555,0.255623,0.889584,0.378491,0.876431,0.304422,-0.373028,0.971129,0.197638,0.133549,-0.460280,0.883541,0.086306,-0.081759,0.867306,0.490982,0.168401,0.891354,0.420789,-0.240333,0.970183,-0.031190,0.568407,0.357128,0.741172,0.390881,0.522507,0.757714,0.493271,0.623371,0.606677,0.275033,0.760521,0.588122,-0.090060,0.968932,0.230201,-0.283273,0.958342,-0.036256,0.182165,0.677602,0.712485,-0.064333,0.993927,0.089145,0.660726,0.684439,-0.308115,0.825617,0.014740,0.564013,0.917325,-0.022980,0.397443,0.890835,-0.111393,0.440382,0.856990,-0.119144,0.501328,0.998383,-0.050325,0.025758,0.980804,-0.180242,-0.074007,0.860134,-0.153600,0.486373,0.844966,-0.162236,0.509598,0.897244,-0.164983,0.409528,0.827754,-0.191717,0.527268,0.801813,-0.165532,0.574175,0.877926,-0.111484,0.465590,0.913785,-0.150884,0.377087,0.940580,-0.336344,0.046205,0.901181,-0.417676,0.115574,0.633259,-0.623066,-0.459059,0.906034,-0.226875,0.357189,0.860408,-0.211097,0.463759,0.876858,-0.462447,0.131108,0.568834,-0.633045,-0.524979,0.677053,-0.330088,-0.657735,0.935606,-0.352214,-0.023377,0.758965,-0.120670,-0.639790,0.425062,-0.555803,-0.714377,0.338267,-0.626911,-0.701804,0.926878,-0.181890,0.328227,0.982910,-0.184027,0.001404,0.842921,-0.181036,0.506638,0.940092,0.005768,0.340831,0.932096,-0.048433,0.358898,0.857540,-0.141758,0.494461,0.896725,-0.148778,0.416761,0.896512,-0.075686,0.436445,0.883145,-0.112522,0.455336,0.924741,-0.041322,0.378307,0.948729,-0.083651,0.304727,0.892483,-0.186254,0.410779,0.861049,-0.186712,0.472945,0.903409,-0.153142,0.400433,0.955901,-0.131932,0.262276,0.970702,-0.226753,-0.079318,0.859767,-0.388348,0.331584,0.942686,-0.253914,0.216346,0.976928,-0.213355,-0.005676,0.973388,-0.173254,0.149785,0.984588,-0.159673,0.071322,0.171026,-0.230537,-0.957884,0.142491,-0.475509,-0.868068,0.042146,-0.507370,-0.860683,0.052065,-0.281167,-0.958220,0.102573,-0.582385,-0.806391,0.052400,-0.627949,-0.776482,-0.004547,-0.676260,-0.736595,0.151463,-0.579211,-0.800958,0.457595,-0.406995,-0.790521,0.192419,-0.832881,-0.518876,0.152348,-0.869564,-0.469710,0.070284,-0.787561,-0.612171,0.062410,-0.756005,-0.651570,0.153478,-0.889004,-0.431349,0.126041,-0.843959,-0.521378,0.372692,-0.788415,-0.489334,0.179540,-0.729270,-0.660237,0.110385,-0.704947,-0.700583,0.186041,-0.627369,-0.756157,0.464797,-0.698416,-0.544176,0.333995,-0.786279,-0.519761,0.280709,-0.489914,-0.825312,0.279183,-0.548845,-0.787896,0.288522,-0.257088,-0.922300,-0.195868,-0.292215,-0.936064,-0.536668,-0.403027,-0.741295,0.151311,-0.715384,-0.682119,-0.324534,-0.461257,-0.825770,-0.701529,-0.225684,-0.675924,-0.736290,-0.177740,-0.652852,-0.353984,-0.694510,-0.626331,0.142155,-0.879452,-0.454237,0.218513,-0.805383,-0.550951,-0.397290,-0.572619,-0.717093,-0.266121,-0.733116,-0.625843,0.130711,-0.866634,-0.481491,0.207526,-0.960418,-0.185736,-0.040223,-0.941923,-0.333323,0.506607,-0.837001,-0.206671,0.524949,-0.851039,-0.009735,0.553758,-0.829646,0.070650,0.405652,-0.913999,0.006714,0.230659,-0.963378,-0.136540,-0.569842,-0.521622,-0.634907,-0.285714,-0.819086,-0.497391,-0.020142,-0.931181,-0.363903,-0.633045,-0.421918,-0.649007,-0.496994,-0.570360,-0.653920,0.446455,-0.849635,-0.280587,0.627308,-0.754112,-0.194281,0.580340,-0.696921,-0.421277,0.500870,-0.855525,-0.130955,0.624134,-0.781243,-0.006928,0.611347,-0.791223,-0.013703,0.604511,-0.760582,-0.236641,0.653951,-0.643971,-0.397015,0.800928,-0.592883,-0.083316,0.842738,-0.487381,-0.228492,0.732871,-0.680319,-0.006287,0.350780,-0.926145,-0.138401,0.535264,-0.843349,0.046999,0.631672,-0.767510,0.108951,0.702017,-0.707022,0.085147,0.671529,-0.725791,-0.149144,0.641438,-0.759026,-0.111484,0.680013,-0.732292,0.035859,0.250313,-0.730949,-0.634846,0.184332,-0.736259,-0.651082,-0.317881,-0.491379,-0.810846,-0.366131,-0.383526,-0.847804,-0.573321,-0.313089,-0.757134,-0.689291,-0.252449,-0.679067,-0.682607,-0.184790,-0.706992,-0.582385,-0.206397,-0.786248,-0.566118,-0.399701,-0.720908,-0.686911,-0.274148,-0.672994,-0.682791,-0.240791,-0.689749,-0.480270,-0.392193,-0.784539,-0.217505,-0.640706,-0.736290,-0.564043,-0.382611,-0.731742,-0.390545,-0.543718,-0.742821,0.079470,-0.759148,-0.646016,-0.675283,-0.266243,-0.687796,-0.624195,-0.348766,-0.699057,-0.226783,-0.628254,-0.744194,0.296731,-0.771783,-0.562365,-0.678487,-0.299753,-0.670644,-0.677938,-0.289407,-0.675710,-0.070376,-0.578112,-0.812891,0.442488,-0.651204,-0.616535,-0.029237,-0.506363,-0.861812,0.445631,-0.559893,-0.698477,-0.103702,-0.407849,-0.907102,0.361492,-0.448500,-0.817408,-0.169866,-0.240699,-0.955596,0.287332,-0.250801,-0.924406,-0.173803,-0.073611,-0.982025,0.265267,-0.067995,-0.961760,0.632954,-0.077700,-0.770257,0.667714,-0.236579,-0.705771,0.717429,-0.408856,-0.563982,0.886074,-0.342723,-0.312021,0.908139,-0.396344,-0.134770,0.769463,-0.495895,-0.402417,0.880734,-0.463088,0.099063,0.909085,-0.222480,0.352153,0.908109,-0.282998,0.308573,0.832484,-0.553972,0.007599,0.910703,-0.369945,0.183660,0.728751,-0.665426,-0.161473,0.967193,-0.252113,-0.030457,0.944456,-0.128300,0.302469,0.888272,-0.055879,0.455824,0.955107,-0.245399,0.165929,0.815943,-0.012329,0.577960,0.733757,0.121952,0.668325,0.728202,0.195105,0.656972,0.853267,0.012452,0.521287,0.932829,-0.201178,0.298837,0.917417,-0.397168,0.024049,0.785821,-0.553178,-0.276406,0.706351,-0.674978,-0.213111,0.561174,-0.753441,-0.342540,0.314982,-0.792840,-0.521683,0.072726,-0.918882,0.387707,0.406049,-0.827326,0.388073,-0.136052,-0.974456,0.178472,0.310648,-0.919828,0.239570,0.611194,-0.727317,0.312113,0.701834,-0.568804,0.428755,-0.600787,-0.206519,-0.772240,-0.512803,-0.374859,-0.772301,-0.645894,-0.195593,-0.737907,-0.532884,-0.460494,-0.709891,-0.598468,-0.445051,-0.666097,-0.639393,-0.546373,-0.540941,-0.441145,-0.646870,0.622028,-0.358104,-0.427473,0.830042,-0.587329,-0.368786,0.720420,-0.684225,-0.595019,0.421613,-0.222510,-0.649373,0.727165,-0.378185,-0.907926,0.180609,-0.136143,-0.816218,0.561449,-0.386151,-0.841670,0.377422,-0.160680,-0.635823,0.754875,-0.121189,-0.466048,0.876400,0.865291,-0.395703,0.307627,0.918729,-0.187353,0.347575,0.874081,0.102542,0.474807,0.914304,0.003388,0.404950,0.894436,-0.249794,0.370891,0.748680,-0.609638,0.260292,0.819239,-0.557543,0.134007,0.629048,-0.765496,0.135105,0.240028,-0.961516,-0.133518,0.497757,-0.846614,-0.188238,0.417554,-0.899564,0.127903,0.026673,-0.999420,-0.019837,-0.379345,-0.854976,-0.353618,-0.514969,-0.845515,-0.140934,-0.201605,-0.858516,-0.471450,0.012146,-0.850612,-0.525620,-0.445998,-0.540086,-0.713675,-0.658071,-0.271035,-0.702475,-0.708823,-0.217322,-0.671041,-0.704031,-0.261940,-0.660085,0.226905,-0.936155,-0.268441,0.160680,-0.930692,-0.328501,0.192236,-0.914274,-0.356487,0.467727,-0.636494,-0.613239,0.660939,-0.527940,-0.533280,0.839534,-0.347880,-0.417249,0.837092,-0.411389,-0.360546,0.706687,0.581042,-0.403638,0.360851,0.680319,-0.637898,0.887143,0.378002,-0.264595,0.982910,0.176183,0.052828,0.010590,0.594409,-0.804071,0.504440,0.456191,-0.733055,0.792199,0.126652,-0.596942,0.988250,0.105380,-0.110630,0.995422,-0.023682,0.092257,0.143559,0.143071,-0.979217,0.176244,-0.004517,-0.984313,0.177892,-0.026948,-0.983673,0.262673,0.184088,-0.947142,0.560503,-0.140782,-0.816065,0.896359,-0.237129,-0.374554,0.962981,-0.098453,-0.250893,0.994385,-0.032716,-0.100528,0.997620,-0.068392,0.007630,-0.572161,0.113346,-0.812250,0.044954,0.323405,-0.945189,-0.137181,0.458083,-0.878231,-0.537614,0.259529,-0.802240,0.125462,0.349681,-0.928404,-0.034211,0.453902,-0.890378,-0.345988,0.521256,-0.780084,-0.596606,0.342479,-0.725761,-0.892453,-0.090915,-0.441816,-0.893979,-0.082522,-0.440382,-0.550920,-0.004303,-0.834529,-0.591357,0.039918,-0.805383,-0.875668,-0.054140,-0.479812,-0.868648,-0.111148,-0.482772,-0.473891,-0.095859,-0.875332,0.072359,0.106571,-0.991638,0.163976,-0.036042,-0.985778,0.111209,0.230262,-0.966735,0.066195,0.194464,-0.978668,0.095187,0.322672,-0.941679,0.838099,0.435652,-0.328257,-0.043611,0.686514,-0.725791,-0.182928,0.649251,-0.738212,0.895962,0.342204,-0.283059,0.245827,0.669454,-0.700949,-0.615467,0.483718,-0.622211,-0.699362,0.420454,-0.577990,-0.714957,0.367107,-0.594989,-0.847133,0.037965,-0.529984,-0.874203,0.008362,-0.485458,-0.876492,0.029695,-0.480422,-0.849330,0.072115,-0.522904,-0.833735,0.049318,-0.549913,-0.805506,0.126713,-0.578845,-0.772088,0.305673,-0.557115,-0.869045,0.205817,-0.449843,-0.873806,0.310800,-0.373882,-0.758019,0.443342,-0.478347,-0.880398,0.195196,-0.432142,-0.876675,0.285501,-0.387158,-0.477981,0.496048,-0.724876,-0.458724,0.618366,-0.638050,-0.497116,0.393811,-0.773125,-0.787713,0.212683,-0.578112,-0.856960,0.130039,-0.498672,-0.876797,0.098239,-0.470717,-0.844661,0.233741,-0.481552,-0.836024,0.307993,-0.454054,-0.810755,0.361034,-0.460707,-0.826502,0.168523,-0.537095,-0.686911,0.343730,-0.640278,-0.336802,0.584399,-0.738243,0.979125,-0.139653,0.147649,0.998657,0.048494,-0.016907,0.997192,0.026185,0.069918,0.977386,-0.127628,0.168554,0.989074,-0.090091,0.116581,0.975036,-0.142399,0.170232,0.991302,-0.017273,0.130284,0.976409,-0.137852,0.166082,0.865688,-0.041169,0.498856,0.908383,-0.030213,0.417005,0.956420,-0.052644,0.287118,0.776177,-0.150365,0.612293,0.820368,-0.086917,0.565172,0.832820,-0.184454,0.521897,0.774407,-0.139439,0.617084,0.704245,-0.076113,0.705832,0.968871,0.219214,-0.114963,0.611560,0.553117,-0.565691,0.998810,-0.048280,-0.000214,0.987945,-0.112705,0.105960,0.011353,0.631703,-0.775109,0.946257,0.214698,-0.241829,0.970977,-0.194250,0.139317,0.982665,-0.152409,0.105319,-0.385052,0.563005,-0.731254,-0.774529,0.383404,-0.503037,-0.699545,0.446913,-0.557543,0.706076,0.473861,-0.526170,-0.720634,0.562120,-0.405774,-0.760643,0.560167,-0.327982,-0.348704,0.932737,-0.091403,-0.688833,0.722648,-0.056948,-0.436781,0.670797,-0.599322,0.282601,0.870815,-0.402173,0.950652,0.283944,0.124943,0.988708,0.069552,0.132664,0.978881,0.108219,0.173345,0.993713,-0.047639,0.101077,0.980651,-0.119785,0.154729,0.989196,-0.108615,0.098239,0.980590,-0.091769,0.173223,0.988891,-0.089053,0.118961,0.981658,-0.070406,0.177038,0.989471,-0.052248,0.134922,-0.332011,-0.725944,-0.602283,0.265725,-0.946654,-0.182257,-0.701102,-0.662648,-0.263283,-0.626789,-0.768181,0.130222,0.706381,-0.700034,0.104587,0.751061,-0.593493,0.289163,0.966887,-0.233070,-0.103854,0.729606,-0.682699,0.039552,0.746391,-0.664663,0.033143,0.693136,-0.720756,0.001404,0.982086,-0.026185,0.186529,0.986785,-0.043245,0.156102,0.993011,-0.086581,0.080020,0.978301,-0.152074,0.140690,-0.511338,0.791375,0.334971,-0.147649,0.879116,0.453108,0.408887,0.886258,0.217536,0.253914,0.820460,0.512192,0.706992,0.706931,-0.019898,-0.971252,0.181066,0.154363,-0.979186,0.035554,0.199774,-0.989746,-0.038972,0.137272,-0.990234,-0.057802,0.126621,-0.980468,-0.016053,0.195990,-0.988464,-0.033967,0.147496,-0.992920,-0.051729,0.106693,-0.990783,-0.059023,0.121799,-0.438887,0.557024,0.705008,-0.435743,0.421003,0.795495,-0.790613,0.123386,0.599719,-0.893460,0.125919,0.431043,-0.530015,0.255287,0.808618,-0.712760,0.050752,0.699515,-0.839869,-0.088687,0.535447,-0.915738,-0.054170,0.398022,-0.952696,-0.031922,0.302133,-0.868099,0.305094,0.391491,-0.950896,0.092624,0.295206,-0.969604,-0.017640,0.243934,0.961211,-0.273324,-0.036134,0.956145,-0.286843,0.059145,0.884884,-0.392163,0.251320,0.795160,-0.526994,0.299936,0.957183,-0.221137,0.186773,0.922056,-0.251411,0.294259,0.967467,-0.076632,0.241035,0.944487,-0.056948,0.323496,-0.132664,0.070833,0.988617,0.627430,0.138615,0.766198,0.682821,-0.096438,0.724143,-0.103030,-0.110416,0.988525,0.707846,-0.346446,0.615528,-0.096286,-0.337046,0.936521,-0.006714,-0.053743,-0.998505,-0.592975,-0.085025,-0.800684,-0.580584,0.112583,-0.806330,0.049348,0.142644,-0.988525,-0.876522,-0.099826,-0.470870,-0.883877,0.057619,-0.464095,-0.901608,0.177160,-0.394543,-0.572466,0.285897,-0.768426,0.094089,0.308634,-0.946501,-0.994964,0.086703,-0.049715,-0.989074,0.124516,0.078829,-0.923643,0.277627,-0.264077,-0.952635,-0.006928,0.304025,-0.929044,-0.028230,0.368816,-0.901608,-0.050539,0.429548,-0.972381,0.132817,0.191809,-0.936430,0.329356,-0.120701,-0.232185,0.235450,0.943724,-0.181310,0.186560,0.965545,-0.715201,0.029908,0.698233,-0.693381,0.082034,0.715873,-0.718345,-0.013276,0.695517,-0.964202,-0.073946,0.254555,-0.949095,-0.096866,0.299631,-0.934690,-0.063814,0.349590,-0.977355,-0.186743,-0.099399,-0.979919,-0.190832,-0.057649,-0.984375,-0.099216,-0.145299,-0.866695,-0.237434,-0.438643,-0.874783,-0.276559,-0.397778,-0.708792,-0.068667,0.702017,-0.966460,-0.022187,0.255806,-0.707389,-0.156346,0.689291,-0.989715,0.018159,-0.141789,-0.585192,0.453658,-0.672079,0.099429,0.472945,-0.875423,-0.582995,0.594562,-0.553667,0.092502,0.626850,-0.773583,-0.552385,0.728111,-0.405774,0.087405,0.775842,-0.624805,-0.929380,0.368938,0.009430,-0.910154,0.391217,0.136113,-0.542955,0.808130,-0.228126,0.077181,0.880581,-0.467513,-0.956359,0.108921,0.271035,-0.882870,-0.097690,0.459304,-0.866421,-0.169225,0.469710,-0.939238,0.083590,0.332896,0.915616,-0.310160,-0.255684,0.750359,-0.660115,-0.034120,0.685537,-0.706809,-0.174413,0.838679,-0.473617,-0.268868,0.484207,-0.855800,-0.181982,0.690268,-0.619678,-0.373486,0.541704,-0.817835,-0.194067,0.681265,-0.730827,-0.041597,-0.199744,-0.948180,0.247017,-0.058748,-0.916776,0.395032,0.013733,-0.867000,0.498062,0.757347,-0.652638,0.021332,0.003204,-0.770318,0.637623,0.778771,-0.609058,0.150151,-0.037507,-0.665883,0.745079,0.764244,-0.567858,0.305673,0.949370,-0.268532,-0.162877,-0.623035,-0.517563,0.586413,-0.640461,-0.568682,0.516098,-0.856624,-0.230110,0.461745,-0.680105,-0.584277,0.442732,-0.851161,-0.257881,0.457137,-0.668233,-0.329691,0.666860,-0.642170,-0.412580,0.646016,-0.696005,-0.257729,0.670125,-0.076479,-0.544237,0.835414,0.731284,-0.513260,0.449141,0.739494,-0.637043,0.217475,0.812494,-0.010102,-0.582812,0.538957,-0.018494,-0.842097,0.589160,0.100894,-0.801660,0.819025,0.029359,-0.572985,0.610187,0.195288,-0.767785,0.806146,0.059694,-0.588672,0.566088,0.112400,-0.816614,0.485855,-0.039308,-0.873135,0.744560,-0.056795,-0.665090,0.784204,0.030427,-0.619739,0.434523,-0.129368,-0.891293,0.723289,-0.109622,-0.681753,0.759697,-0.133122,-0.636494,0.788873,-0.084262,-0.608722,0.350017,-0.211921,-0.912442,0.693686,-0.152562,-0.703879,0.243171,-0.332316,-0.911252,0.689383,-0.178991,-0.701926,0.728050,-0.162603,-0.665914,0.736869,-0.153752,-0.658254,-0.643544,0.310221,0.699667,-0.639851,0.313944,0.701407,-0.529710,0.393872,0.751152,-0.587573,0.333811,0.737083,-0.225135,0.457411,0.860256,-0.440992,0.344493,0.828730,0.775262,0.537278,-0.332072,0.799829,0.474013,-0.368175,0.544023,0.749321,-0.377514,0.542619,0.799921,-0.256233,0.806848,0.410565,-0.424696,0.541124,0.681631,-0.492447,0.060366,0.953581,-0.294961,0.042634,0.995941,-0.079012,-0.148228,-0.988006,0.043092,0.281991,-0.893674,-0.348949,0.480850,-0.462844,-0.744652,0.590503,-0.589709,-0.550890,0.372967,-0.791314,-0.484451,0.162023,-0.768181,-0.619373,-0.795282,0.353557,0.492416,-0.706961,0.338603,0.620869,-0.750664,0.316752,0.579760,-0.807001,0.321116,0.495590,-0.725425,0.235908,0.646565,-0.857082,0.075900,0.509537,-0.890866,0.128971,0.435499,-0.925657,0.035188,0.376690,-0.817774,0.060701,0.572314,-0.668477,0.451003,0.591327,-0.852504,-0.203406,0.481460,-0.933500,-0.051210,0.354869,-0.889920,0.171361,0.422651,-0.708945,0.490493,0.506699,0.835444,0.380200,-0.396741,0.885769,0.261788,-0.383221,0.802698,0.343760,-0.487259,0.847407,0.224403,-0.481124,0.885128,0.166417,-0.434553,0.915311,0.171728,-0.364208,-0.561357,0.256752,0.786706,-0.646199,0.400769,0.649434,-0.865871,0.120518,0.485488,-0.708274,0.028352,0.705344,-0.921598,0.023530,0.387402,-0.770898,0.113407,0.626759,-0.608081,0.147404,0.780023,-0.654317,0.073397,0.752617,-0.532731,0.217231,0.817896,-0.469069,0.306192,0.828364,-0.705313,-0.019776,0.708609,-0.628925,0.095798,0.771508,-0.332896,0.397229,0.855190,-0.252235,0.477645,0.841548,-0.787927,-0.420454,-0.449812,-0.719108,-0.381176,-0.580981,-0.774102,-0.386608,-0.501236,-0.863979,-0.406873,-0.296548,-0.412427,-0.317209,-0.853938,-0.742759,-0.385876,-0.547105,-0.686666,-0.351085,-0.636555,-0.641377,-0.346446,-0.684500,-0.496261,-0.249275,-0.831599,-0.433760,-0.248939,-0.865932,0.271554,0.950255,0.152501,0.348766,0.920927,-0.173833,0.026154,0.972503,0.231361,-0.250954,0.813379,0.524796,0.455336,0.832362,-0.315897,0.411298,0.899319,-0.148289,-0.181982,0.887020,0.424299,-0.567797,0.524400,0.634480,-0.747703,0.298441,0.593127,0.346568,0.690420,0.634968,-0.053591,0.563555,0.824305,0.401837,0.710624,0.577471,0.060793,0.638264,0.767388,0.703085,0.708792,-0.056887,0.752373,0.640187,-0.155095,0.631764,0.733421,-0.250862,0.570879,0.786798,-0.234504,0.650410,0.759545,-0.002197,0.360973,0.923307,0.130955,-0.875576,0.274209,-0.397656,-0.953581,0.275979,-0.120273,-0.827998,0.447310,-0.338054,-0.638539,0.457472,-0.618824,-0.956145,0.290658,-0.035310,-0.917692,0.369549,-0.145695,-0.867458,0.422834,-0.262062,-0.742515,0.473128,-0.474105,-0.569048,0.454878,-0.685018,-0.902493,-0.421552,-0.088015,-0.851985,-0.511032,0.113590,-0.719871,-0.614612,0.322489,-0.928922,-0.363628,0.069521,-0.671712,-0.494247,0.551775,-0.415509,-0.711997,0.566027,-0.205908,-0.954985,0.213416,-0.741905,-0.647847,0.172613,-0.956603,-0.255440,0.140141,-0.883847,-0.466628,-0.031983,-0.850368,-0.469039,-0.238411,-0.809107,-0.461409,-0.363872,-0.805811,-0.417219,-0.420148,-0.999817,0.004578,-0.017670,-0.932249,0.076144,-0.353679,-0.983581,-0.100436,-0.149815,-0.993652,-0.073550,0.084902,-0.752586,0.111515,-0.648946,-0.901517,-0.122257,-0.415052,-0.563494,0.070925,-0.823054,-0.689718,-0.117374,-0.714469,-0.464492,0.012360,-0.885464,-0.472030,-0.100681,-0.875790,-0.640370,0.288308,-0.711875,-0.830866,0.172094,-0.529130,-0.971709,0.125065,-0.200232,-0.386395,0.277902,-0.879452,-0.646229,0.170568,-0.743797,-0.090487,0.137150,-0.986389,-0.351421,0.025300,-0.935850,-0.492386,0.091311,-0.865566,-0.191992,0.217566,-0.956969,-0.761589,-0.163579,0.627033,-0.896237,-0.229072,0.379803,-0.941710,-0.266945,0.204627,-0.801843,-0.222633,0.554460,-0.927427,-0.265786,-0.263039,-0.841243,-0.204199,-0.500565,-0.751396,-0.093600,-0.653127,-0.966033,-0.258370,0.003967,-0.853084,-0.304514,0.423627,-0.822687,-0.136998,0.551714,-0.850215,-0.194372,0.489212,-0.732963,-0.114353,0.670553,-0.933103,-0.273171,0.233772,-0.954711,-0.296609,0.021882,0.189154,0.813685,0.549638,-0.205634,0.649037,0.732414,0.590167,0.761650,0.267434,0.686666,0.722709,-0.078433,0.377148,0.907743,0.183691,-0.091525,0.867641,0.488662,-0.464675,0.417676,0.780755,-0.608173,0.223609,0.761620,-0.467391,0.591906,0.656636,-0.650868,0.312143,0.692007,0.499039,0.860286,-0.104099,0.004212,0.983276,0.182043,0.736137,0.618641,-0.274422,-0.832148,-0.245766,0.497055,-0.829157,0.089572,0.551775,-0.905667,0.072970,0.417615,-0.798883,-0.240425,0.551317,-0.745689,0.071078,0.662465,-0.747063,0.385937,0.541215,-0.848689,0.392285,0.354686,-0.929319,0.066042,0.363262,-0.893887,0.381298,0.235572,-0.556902,0.829585,-0.040071,-0.536851,0.825037,0.176275,-0.489822,0.757225,0.432020,-0.714866,0.015748,0.699026,-0.800378,-0.259682,0.540269,-0.859157,-0.250313,0.446272,-0.741539,-0.040590,0.669637,-0.269845,-0.029756,-0.962432,-0.250740,-0.131779,-0.959014,-0.081301,0.070070,-0.994201,-0.141850,-0.081576,-0.986511,-0.238227,-0.168340,-0.956481,-0.160283,-0.185369,-0.969481,-0.276406,-0.545793,-0.790979,-0.370312,-0.424116,-0.826411,-0.880184,-0.425275,-0.210700,-0.866085,-0.497482,-0.048616,-0.437544,-0.374004,-0.817713,-0.842097,-0.403546,-0.357738,-0.906552,-0.241340,0.346202,-0.053499,-0.261879,-0.963591,-0.026704,-0.339061,-0.940367,-0.220130,-0.246193,-0.943876,0.286813,-0.672994,-0.681753,0.408887,-0.798456,-0.441816,-0.343577,-0.905393,-0.249306,-0.295755,-0.955260,0.002503,-0.708365,-0.617512,0.341807,-0.727165,-0.634022,0.263039,-0.423597,-0.543443,-0.724693,-0.135716,-0.622791,-0.770501,0.054292,-0.402509,-0.913785,0.287332,-0.383557,-0.877651,0.148259,-0.389843,-0.908841,0.038148,-0.358806,-0.932615,-0.211829,-0.398724,-0.892239,-0.638356,-0.471389,-0.608509,0.193548,-0.499008,-0.844661,-0.390240,-0.766869,-0.509507,-0.791742,-0.590228,0.157201,-0.790674,-0.080233,0.606922,-0.696493,-0.330607,-0.636830,-0.484146,-0.146916,-0.862545,-0.333506,-0.002441,-0.942717,-0.234352,0.107822,-0.966124,-0.649251,0.077761,-0.756554,-0.963408,-0.189856,-0.189123,-0.514450,0.243385,-0.822230,-0.929411,-0.091433,-0.357494,-0.875423,-0.438765,0.202704,-0.883267,-0.386395,0.265511,-0.453993,0.366832,-0.811945,-0.901212,0.046327,-0.430830,-0.903775,0.174200,-0.390942,-0.896481,-0.344005,0.279122,-0.869472,-0.411389,0.273415,-0.184301,0.236274,-0.954009,-0.213599,0.344493,-0.914151,-0.370037,0.411756,-0.832759,-0.915128,0.260903,-0.307260,-0.924497,0.317972,-0.210211,-0.999939,0.008881,0.001434,-0.966796,-0.209967,0.145604,-0.340800,0.107242,0.933988,-0.332835,0.336131,0.881008,-0.694784,0.264077,0.668966,-0.708853,0.142155,0.690848,-0.310831,0.465499,0.828639,-0.577960,0.414594,0.702872,-0.874172,0.176580,0.452345,-0.926420,0.100223,0.362835,-0.153203,0.705832,0.691580,0.075686,0.599445,0.796808,0.444472,0.634449,0.632374,0.316874,0.828028,0.462508,-0.766228,0.212531,0.606372,-0.866604,0.158635,0.473037,-0.849055,-0.286233,0.444014,-0.904843,-0.106845,0.412061,-0.894192,0.135716,0.426557,-0.820643,0.286508,0.494400,0.407453,0.329234,0.851772,0.531785,0.281716,0.798608,-0.308939,0.287423,0.906583,0.163549,0.405133,0.899503,0.283547,0.956786,0.064089,0.386731,0.848231,0.361827,0.460524,0.630146,0.625141,0.491012,0.432020,0.756432,0.531175,0.431989,0.728843,0.487075,0.132084,0.863277,0.467605,0.184606,0.864437,-0.918485,-0.093600,0.384136,-0.978484,-0.121006,0.166936,-0.749077,-0.629353,0.206732,-0.506668,-0.678487,0.531877,0.051576,-0.996246,0.069430,0.301035,-0.934507,0.189734,-0.376965,-0.148808,0.914182,0.015381,-0.231483,0.972686,0.079134,0.102481,0.991577,-0.474349,-0.198950,0.857540,0.013916,-0.483627,0.875149,0.358837,-0.658132,0.661824,0.360790,-0.273019,0.891751,-0.980255,0.053316,0.190374,-0.988952,-0.017975,0.146947,-0.985351,-0.046205,0.164129,-0.968474,-0.005860,0.249001,-0.992767,0.116306,0.029359,-0.979034,0.187872,0.078402,-0.967406,0.248756,0.047151,-0.943388,0.331645,0.003418,-0.958525,0.120670,0.258095,-0.925626,0.172735,0.336619,-0.881222,0.020264,0.472243,-0.765740,-0.018586,0.642872,-0.696371,-0.122135,0.707205,-0.125828,-0.632801,0.764000,0.402448,-0.848994,0.342296,-0.896512,-0.362865,0.254036,-0.649983,-0.311624,0.693075,-0.343089,-0.549821,0.761528,0.069399,-0.897977,0.434523,0.322520,-0.938658,0.121952,0.350963,-0.919156,0.178625,0.238563,-0.883450,0.403211,0.206854,-0.649800,0.731376,0.345866,-0.221259,0.911802,0.146489,0.410993,0.899777,-0.923124,0.177007,0.341227,-0.720359,-0.009522,0.693533,-0.985961,-0.035493,0.162999,-0.952483,0.304514,-0.002441,-0.823359,-0.375744,0.425275,-0.647328,-0.488266,0.585223,-0.889828,-0.083163,0.448622,-0.728660,-0.308359,0.611469,-0.655873,0.092807,0.749107,-0.583911,-0.007202,0.811762,-0.534684,0.028901,0.844539,-0.679800,0.170385,0.713309,-0.490158,-0.117008,0.863704,-0.351024,-0.157079,0.923063,-0.193945,-0.199927,0.960387,-0.554613,-0.011353,0.831996,-0.790429,0.158757,0.591571,-0.722587,0.155187,0.673605,-0.702841,0.116062,0.701773,-0.742729,0.267251,0.613910,-0.726554,0.288400,0.623615,-0.774285,0.269326,0.572619,-0.680502,0.223365,0.697836,-0.476791,-0.236366,0.846614,-0.481033,-0.179662,0.858089,-0.630268,-0.022950,0.776025,-0.651601,-0.003571,0.758538,-0.487350,-0.368694,0.791498,-0.463210,-0.297037,0.834956,-0.655873,0.005615,0.754845,-0.649525,-0.120121,0.750755,-0.720756,0.171819,0.671529,-0.701956,0.123844,0.701315,-0.703726,0.241981,0.667959,-0.689779,0.208167,0.693411,-0.644734,0.098697,0.757988,-0.608295,0.115818,0.785180,-0.533677,0.037721,0.844813,-0.459090,0.337016,0.821955,-0.441877,0.276711,0.853298,-0.811640,0.123142,0.571001,-0.879727,0.085147,0.467727,-0.908658,0.071413,0.411328,-0.798944,0.237739,0.552355,-0.878506,0.024293,0.477065,-0.906003,0.054750,0.419660,-0.873592,0.077670,0.480392,-0.839442,0.057314,0.540361,-0.848811,0.010529,0.528581,-0.843806,0.016358,0.536363,-0.009095,-0.225257,0.974242,-0.577074,-0.080111,0.812738,-0.521775,-0.342235,0.781396,-0.675222,-0.111759,0.729057,-0.246529,0.754875,0.607746,-0.646321,0.376568,0.663625,0.420179,0.869533,0.259468,-0.037355,0.841731,0.538560,-0.577349,0.387158,0.718833,-0.680715,0.190191,0.707389,-0.738578,0.111759,0.664815,-0.791955,0.025086,0.610034,-0.684713,0.067537,0.725639,-0.671957,-0.029817,0.739952,-0.865749,0.064608,0.496231,-0.704031,-0.092898,0.704031,-0.960143,-0.059816,0.273019,-0.931211,-0.014222,0.364147,-0.872677,-0.103275,0.477187,-0.969573,-0.088961,0.228034,-0.890957,-0.196326,0.409436,-0.980926,-0.125401,0.148381,-0.667837,-0.071413,0.740837,-0.722770,-0.021668,0.690695,-0.865902,-0.079470,0.493820,-0.826716,-0.138615,0.545244,-0.784783,0.130680,0.605823,-0.889340,0.176641,0.421735,-0.966643,0.210822,0.145299,-0.975402,-0.129093,0.178594,-0.952696,-0.225623,0.203528,-0.652120,0.038850,0.757073,-0.646229,0.064028,0.760430,-0.747734,0.199683,0.633229,-0.725608,0.216224,0.653218,-0.965972,-0.146062,0.213355,-0.983428,0.181066,0.004639,-0.944823,0.136235,0.297800,-0.979308,-0.051180,0.195685,-0.916654,0.385693,0.104648,-0.863887,0.312296,0.395123,-0.859706,0.089633,0.502792,-0.954375,-0.048677,0.294534,-0.601398,-0.733848,0.315775,-0.651814,-0.758354,0.001190,-0.806055,-0.576464,0.133885,-0.695975,-0.534196,0.479781,-0.521989,-0.663717,-0.535691,-0.647938,-0.482589,-0.589251,-0.883541,-0.255165,-0.392682,-0.805506,-0.512040,0.298196,-0.655385,-0.580920,0.482620,-0.744133,-0.581591,0.328593,-0.786462,-0.465163,0.406262,-0.787591,-0.326762,0.522385,-0.981842,-0.189184,-0.011841,-0.253822,-0.290475,-0.922575,-0.237770,-0.030488,-0.970824,-0.021210,-0.099704,-0.994781,-0.034516,0.051973,-0.998047,-0.216285,0.104160,-0.970733,-0.384472,0.193640,-0.902585,-0.469192,0.142094,-0.871578,-0.563585,0.339671,-0.752953,-0.738945,0.178930,-0.649525,-0.727103,0.436689,-0.529679,-0.774407,0.454909,-0.439680,-0.743278,0.326304,-0.583972,-0.857814,0.476791,-0.191809,-0.873470,0.438612,-0.211280,-0.942747,0.211219,-0.257973,-0.885098,0.441939,0.145665,-0.909238,0.245918,-0.335856,-0.833277,0.362651,0.417219,-0.951994,-0.187414,-0.241981,-0.946532,-0.288125,-0.145054,-0.747063,-0.211798,-0.630085,-0.809076,-0.298593,-0.506119,-0.696097,0.664418,-0.271920,-0.750786,0.021363,-0.660176,-0.720817,0.118839,-0.682821,-0.735557,0.617450,-0.278664,-0.478286,-0.288705,-0.829371,-0.368206,-0.155339,-0.916654,-0.273385,-0.014252,-0.961760,-0.705283,0.218421,-0.674398,-0.886685,0.446883,-0.118442,0.189215,-0.172796,-0.966582,0.042146,-0.166784,-0.985076,0.231330,-0.235084,-0.944029,0.072359,-0.219123,-0.972991,-0.227668,-0.233009,-0.945433,-0.177007,-0.181585,-0.967284,-0.541887,-0.269539,-0.796045,-0.450209,-0.202826,-0.869564,-0.805628,-0.416120,-0.421644,-0.863765,-0.245369,-0.440077,-0.616382,-0.190619,-0.764000,-0.537858,-0.378979,-0.753014,-0.293466,-0.097995,-0.950926,-0.222053,-0.247047,-0.943205,0.179540,-0.014283,-0.983642,0.027161,-0.018494,-0.999451,0.173437,0.032991,-0.984283,0.058107,-0.075808,-0.995422,-0.234046,-0.399213,-0.886471,-0.013520,-0.248207,-0.968596,0.082553,-0.098025,-0.991729,0.727500,0.686087,0.004517,0.486526,0.846309,0.216773,0.745354,0.651540,0.141057,0.598682,0.737053,0.313456,-0.126133,0.977569,0.168584,-0.586016,0.684042,0.434278,0.041017,0.971679,0.232643,0.456923,0.851802,0.256111,0.564135,0.693747,0.447676,0.105075,0.818354,0.565020,0.164373,0.664724,0.728751,0.167364,0.701987,0.692221,0.469955,0.709891,0.524552,-0.868587,0.392804,-0.302042,-0.244392,0.922880,0.297555,-0.638325,0.624165,0.450453,-0.952330,0.257057,0.164159,-0.189245,0.599322,0.777795,-0.275094,0.877407,0.392987,-0.169286,0.834925,0.523637,0.219886,0.971038,0.093387,0.104434,0.993744,-0.039460,-0.440626,0.539933,0.717124,-0.479446,0.728477,0.489303,-0.338969,0.572924,0.746208,-0.419477,0.794763,0.438551,-0.156621,0.968291,0.194586,0.156987,0.983703,-0.087527,-0.198187,0.589282,0.783227,0.045198,0.964476,0.260170,-0.639485,0.664602,-0.386425,-0.823817,-0.063784,0.563219,-0.836604,-0.035005,0.546648,-0.914701,-0.011750,0.403943,-0.905698,-0.055605,0.420209,-0.908322,0.009705,0.418073,-0.985412,-0.055055,0.160863,-0.688772,-0.024201,0.724540,-0.686972,-0.020081,0.726402,-0.718497,-0.060091,0.692892,-0.858638,-0.206977,0.468856,-0.812250,-0.121952,0.570391,-0.813044,-0.042879,0.580584,-0.853908,-0.074099,0.515061,-0.925657,-0.276986,0.257668,-0.873989,-0.480972,-0.068789,-0.900723,-0.429334,-0.065737,-0.962004,-0.271371,0.029633,-0.921598,-0.362346,-0.139073,-0.746940,-0.535722,-0.393719,-0.772698,-0.445235,-0.452406,-0.967132,-0.252510,-0.028901,-0.827998,-0.165716,-0.535661,-0.597217,-0.391583,-0.699942,-0.737724,-0.062471,-0.672170,-0.493057,-0.502792,-0.709952,-0.961516,-0.237037,-0.138829,-0.975372,-0.182653,0.123508,-0.861843,-0.091647,0.498795,-0.761803,-0.001068,0.647755,-0.896786,-0.052889,0.439253,-0.972015,-0.081271,0.220283,-0.981628,-0.090884,0.167638,-0.960509,-0.089206,0.263497,-0.975372,-0.097690,0.197729,-0.981964,-0.096103,0.162633,-0.992157,-0.096164,0.079775,-0.965697,-0.094546,0.241798,-0.934019,-0.074526,0.349254,-0.979308,-0.102847,0.174261,-0.992798,-0.110508,0.046052,-0.977599,-0.189367,0.091830,-0.991333,-0.130985,0.008393,-0.944884,-0.303446,0.122684,-0.971862,-0.203955,-0.117679,-0.984832,-0.162084,-0.061373,-0.992157,-0.120273,-0.033753,-0.134739,-0.599597,-0.788842,0.249702,-0.568621,-0.783746,0.177831,-0.477493,-0.860408,-0.221900,-0.507889,-0.832331,0.220130,-0.529160,-0.819453,0.210089,-0.421400,-0.882168,0.199866,-0.218696,-0.955077,0.175237,-0.251930,-0.951720,-0.359630,-0.347606,-0.865902,0.066775,-0.723228,-0.687338,-0.150761,-0.745323,-0.649373,-0.410596,-0.586963,-0.697714,-0.404889,-0.570482,-0.714530,-0.315683,-0.748894,-0.582629,-0.373791,-0.660146,-0.651509,-0.097110,-0.677694,-0.728874,-0.080691,-0.649739,-0.755821,-0.161290,-0.665548,-0.728690,0.069887,-0.598743,-0.797845,0.155187,-0.653249,-0.741050,-0.005219,-0.707633,-0.706534,-0.009064,-0.449904,-0.893002,-0.030457,-0.234291,-0.971679,-0.272469,-0.499466,-0.822352,-0.229225,-0.279641,-0.932310,-0.174230,-0.523179,-0.834193,-0.143162,-0.340587,-0.929228,-0.021302,-0.641255,-0.767022,0.479141,-0.422529,-0.769341,0.335765,-0.397595,-0.853908,0.067232,-0.661916,-0.746513,-0.037935,-0.695273,-0.717734,0.262978,-0.637471,-0.724174,0.411115,-0.476638,-0.777001,-0.005127,-0.889370,-0.457106,0.014374,-0.853328,-0.521134,0.318705,-0.800867,-0.506974,0.215583,-0.870083,-0.443220,0.097720,-0.765618,-0.635792,0.373302,-0.653157,-0.658773,0.524918,-0.556322,-0.644154,0.350078,-0.779565,-0.519333,0.186377,-0.891079,-0.413770,0.537431,-0.531541,-0.654653,0.295267,-0.751915,-0.589404,0.549791,-0.500351,-0.668844,0.433271,-0.603687,-0.669149,0.020264,-0.851833,-0.523362,-0.506546,-0.775506,-0.376782,0.084445,-0.874569,-0.477462,0.258858,-0.789422,-0.556566,-0.398968,-0.799158,-0.449599,0.406781,-0.794885,-0.450148,0.437239,-0.745811,-0.502518,0.184057,-0.696249,-0.693777,-0.298624,-0.740226,-0.602344,-0.836207,-0.528550,-0.146214,-0.867214,-0.482589,-0.122532,-0.851375,-0.468917,-0.235054,0.082980,-0.897610,-0.432844,-0.255440,-0.868984,-0.423780,0.349864,-0.844997,-0.404370,-0.094974,-0.939848,-0.328013,0.008118,-0.796533,-0.604480,-0.316599,-0.836634,-0.446944,-0.579058,-0.753929,-0.310221,0.425611,-0.575671,-0.698141,0.601337,-0.416791,-0.681631,0.580889,-0.629475,-0.516007,0.640522,-0.486221,-0.594378,0.679800,-0.344676,-0.647298,0.649342,-0.370830,-0.663930,0.640217,-0.375683,-0.670034,0.648061,-0.413312,-0.639668,0.740410,-0.168950,-0.650533,0.752251,-0.204901,-0.626179,0.663991,-0.310312,-0.680288,0.706198,-0.219733,-0.673025,0.607624,-0.335002,-0.720084,0.285806,-0.566240,-0.773095,0.304880,-0.559496,-0.770684,0.626637,-0.320505,-0.710318,0.368267,-0.535417,-0.760033,-0.047761,-0.726310,-0.685690,-0.164190,-0.719291,-0.675008,-0.196204,-0.714103,-0.671957,0.669240,-0.264443,-0.694357,0.621845,-0.330943,-0.709769,0.290139,-0.458144,-0.840175,0.285470,-0.356487,-0.889584,-0.239174,-0.586108,-0.774102,-0.276711,-0.451827,-0.848079,0.313608,-0.297220,-0.901822,0.372387,-0.245338,-0.895047,-0.245918,-0.378460,-0.892331,-0.143773,-0.329081,-0.933256,0.458235,-0.159001,-0.874477,-0.056581,-0.245277,-0.967772,-0.606403,-0.334056,-0.721549,-0.581713,-0.266945,-0.768303,-0.925474,-0.298715,-0.232856,-0.901303,-0.289468,-0.322245,-0.678487,-0.361064,-0.639729,-0.711997,-0.409131,-0.570666,-0.968139,-0.194586,0.157445,-0.919889,-0.387280,0.061464,-0.944365,-0.152226,0.291513,-0.902676,-0.430067,-0.013215,-0.851680,-0.500198,-0.156224,-0.708121,-0.658376,-0.255043,-0.874813,0.034455,0.483200,-0.907010,-0.016266,0.420728,-0.982940,-0.183294,0.014588,-0.980377,-0.159307,0.115909,-0.660421,0.148503,0.736045,-0.661245,0.211585,0.719687,-0.709922,0.217383,0.669851,-0.858028,0.041841,0.511887,-0.955046,-0.158635,0.250313,-0.925901,-0.366070,-0.092990,-0.690756,-0.541734,-0.478896,-0.651906,-0.659688,-0.373852,-0.430280,-0.760399,-0.486404,-0.578570,-0.689261,-0.436048,-0.689322,-0.391186,0.609729,-0.493332,-0.720725,0.486953,-0.581347,-0.441267,0.683554,-0.695639,-0.075747,0.714377,-0.163915,-0.869594,0.465712,-0.314035,-0.665883,0.676717,0.335307,-0.783502,-0.523087,0.610157,-0.480270,-0.630085,0.632130,-0.522111,-0.572527,0.458266,-0.802911,-0.381176,0.677419,-0.569079,-0.466048,0.571429,-0.804804,-0.160405,0.451613,-0.380718,0.806879,-0.020844,-0.668630,0.743278,0.054018,-0.414197,0.908567,0.089419,-0.605823,0.790521,0.521928,-0.598895,0.607349,0.343394,-0.868252,0.358013,-0.168310,-0.624165,0.762902,-0.180822,-0.494400,0.850185,0.027558,-0.749687,0.661184,-0.220679,-0.346049,0.911863,-0.811304,0.249428,0.528703,-0.910154,-0.107578,0.400006,-0.854183,-0.210059,0.475631,-0.756737,0.185034,0.626942,-0.768395,-0.319437,0.554491,-0.711112,0.118656,0.692953,-0.403607,-0.911100,-0.083651,-0.690146,-0.710471,0.137394,-0.813593,-0.576800,0.072970,-0.550432,-0.812159,-0.193365,-0.549272,-0.788507,0.276650,-0.275124,-0.951079,0.140416,-0.101596,-0.957610,-0.269448,0.044496,-0.997894,-0.046510,0.174902,-0.944426,0.278268,-0.265633,-0.878231,-0.397626,0.152379,-0.774224,-0.614246,0.684866,-0.319407,-0.654897,0.529130,-0.503739,-0.682791,0.639973,-0.374920,-0.670705,-0.234962,-0.799219,-0.553148,-0.064394,-0.892727,-0.445936,0.311563,-0.826411,-0.468947,-0.266366,-0.563494,-0.781976,-0.374828,-0.561327,-0.737815,-0.795648,-0.440962,-0.415265,-0.836604,-0.305673,-0.454512,-0.739158,0.052767,-0.671407,-0.401349,0.305734,-0.863369,-0.815516,0.334208,-0.472427,-0.985198,0.060915,-0.160161,0.134953,0.414472,-0.899991,-0.187719,0.615345,-0.765557,-0.512772,0.668233,-0.538987,-0.947081,0.277322,-0.161596,-0.999359,0.028535,0.020966,0.188513,-0.009583,-0.981994,-0.473037,-0.102420,-0.875027,0.176733,0.005951,-0.984222,0.185827,0.145695,-0.971709,0.050813,0.147618,-0.987732,-0.928800,-0.182287,-0.322520,-0.976989,-0.115329,-0.179296,-0.996612,-0.049471,-0.065432,-0.998505,-0.047426,0.026246,0.338298,0.257027,-0.905240,0.508347,0.257363,-0.821772,0.470260,0.393139,-0.790094,0.431837,0.183752,-0.883023,0.528886,0.158544,-0.833735,0.529069,0.159246,-0.833461,0.537828,0.270821,-0.798364,0.558245,0.377483,-0.738792,0.453017,0.019868,-0.891263,0.444441,-0.011994,-0.895718,0.494858,0.160009,-0.854091,0.244057,-0.017762,-0.969573,0.335154,-0.098788,-0.936949,-0.040925,-0.078463,-0.996063,0.105289,-0.170385,-0.979705,0.009857,-0.011658,-0.999878,0.160100,0.085452,-0.983367,0.396100,0.091861,-0.913572,0.299600,0.175726,-0.937712,0.081332,0.237587,-0.967925,0.526566,0.502853,-0.685446,-0.238136,0.705802,-0.667165,0.078372,0.750847,-0.655782,0.636097,0.523606,-0.566698,-0.756859,0.537553,-0.371654,-0.676748,0.593402,-0.435682,0.279977,0.705924,-0.650563,0.640065,0.534684,-0.551714,0.724601,0.187353,-0.663167,0.653981,0.189459,-0.732383,0.830805,0.041353,-0.554979,0.850490,0.002777,-0.525925,0.527604,0.280526,-0.801813,0.569781,0.361064,-0.738212,0.902646,0.169713,-0.395489,0.918912,0.123173,-0.374676,0.874905,0.181005,-0.449110,0.896084,0.075686,-0.437361,0.791650,0.213385,-0.572466,0.803980,0.319468,-0.501511,0.559526,0.563829,-0.607410,0.586657,0.408795,-0.699057,0.606128,0.295389,-0.738426,0.791650,0.130375,-0.596881,0.803552,0.183569,-0.566210,0.867000,0.020569,-0.497818,0.778588,0.374645,-0.503372,0.762871,0.326060,-0.558245,0.739982,0.416761,-0.527879,0.607135,0.491134,-0.624622,0.656178,0.418836,-0.627674,0.414502,0.574236,-0.705954,-0.958037,0.252693,-0.135075,-0.929929,0.316630,-0.186956,-0.999084,0.038942,0.016022,-0.998138,0.022248,0.056642,-0.992950,-0.070620,0.094974,-0.996246,-0.057680,0.064486,-0.994629,-0.044588,0.093173,-0.993164,-0.067995,0.094760,-0.978912,-0.081515,0.187292,-0.987091,-0.061373,0.147740,-0.968627,-0.098209,0.228278,-0.965484,-0.124760,0.228492,-0.904843,-0.174200,0.388440,-0.766198,-0.126591,0.629963,-0.786309,-0.201849,0.583880,-0.706290,-0.039979,0.706748,-0.872127,0.352306,-0.339457,-0.988464,0.112918,-0.100833,-0.996429,-0.068178,0.049532,-0.087466,0.632344,-0.769707,-0.528703,0.637013,-0.560900,-0.858730,0.449934,-0.245155,-0.998810,0.039918,0.027680,-0.996734,-0.035676,0.072268,0.626392,0.449232,-0.637013,0.713401,0.334025,-0.615986,0.270577,0.537217,-0.798822,-0.614032,0.549883,-0.566179,0.776025,0.609149,-0.163305,0.793237,0.498398,-0.349742,0.390332,0.906217,-0.162328,0.759941,0.498825,-0.416639,-0.178503,0.890591,-0.418256,0.439741,0.675008,-0.592395,-0.995819,0.056459,0.071718,-0.997040,-0.013886,0.075259,-0.943022,0.330882,-0.034181,-0.992431,-0.036317,0.117252,-0.994690,-0.101840,0.013733,-0.995209,-0.073946,0.063753,-0.996490,-0.082308,0.013062,-0.997467,-0.054750,0.045320,-0.992004,-0.045137,0.117618,-0.996429,-0.041169,0.073336,0.739586,-0.614948,-0.273507,0.718009,-0.693869,0.054537,0.174657,-0.984313,-0.024049,0.361400,-0.797296,0.483383,-0.882595,-0.456313,0.112980,-0.798700,-0.594531,0.092593,-0.951872,-0.253792,-0.171697,-0.697958,-0.713492,0.061037,-0.696036,-0.717307,-0.031129,-0.758843,-0.625477,-0.181371,-0.991058,-0.095218,0.093204,-0.988220,-0.079012,0.130863,-0.994720,-0.083651,0.059297,-0.994720,-0.078738,0.065615,0.694357,0.691458,0.199316,0.073794,0.898953,0.431715,-0.645436,0.758354,0.090976,-0.670949,0.628407,0.393506,-0.677145,0.719596,-0.153752,-0.222816,0.955412,0.193701,-0.375134,0.926817,0.016419,0.097842,0.924924,0.367321,0.311441,0.849269,0.426221,-0.401349,0.882382,-0.245491,-0.031983,0.978729,0.202521,0.339305,0.713279,0.613239,0.475143,0.661641,0.580004,0.615802,0.600360,0.510208,-0.095859,0.783624,0.613758,-0.015290,0.820795,0.571001,0.136998,0.956572,0.257179,0.032777,0.900540,0.433454,0.128056,0.801599,0.583972,0.247963,0.967956,0.039369,0.333720,0.824000,-0.457839,0.329875,0.930448,-0.159307,0.183294,0.957152,0.224097,0.248177,0.753533,0.608722,0.213935,0.771691,0.598895,0.202307,0.298196,0.932798,0.311472,0.284829,0.906522,0.026063,0.406507,0.913266,-0.000183,0.161718,0.986816,0.188696,0.096347,0.977264,0.307871,0.100040,0.946135,-0.228767,0.518540,0.823847,-0.132939,0.519120,0.844264,-0.280740,0.268807,0.921354,-0.169530,0.252022,0.952727,-0.008698,-0.022980,0.999695,0.177648,-0.055269,0.982513,-0.039064,-0.270974,0.961791,0.146764,-0.305918,0.940642,0.291330,-0.328990,0.898251,0.304666,-0.073092,0.949614,-0.295785,0.061953,0.953215,-0.188696,0.030915,0.981536,-0.306650,-0.110813,0.945341,-0.213111,-0.194525,0.957457,-0.278878,0.202857,0.938627,-0.337016,0.022889,0.941191,-0.341258,0.095523,0.935087,-0.321451,0.231971,0.918058,0.116642,-0.510849,0.851680,0.267739,-0.528367,0.805658,-0.057863,-0.458876,0.886593,-0.047029,-0.507492,0.860347,0.121830,-0.552080,0.824793,0.268227,-0.581164,0.768273,0.780602,0.256142,0.570116,0.747307,0.239265,0.619861,0.686880,0.362468,0.629871,0.734581,0.387402,0.557024,0.737419,0.238716,0.631794,0.680471,0.310312,0.663808,0.566240,0.398938,0.721213,0.618061,0.462325,0.635762,0.667470,0.499252,0.552446,0.762047,-0.061190,0.644612,0.764855,0.116703,0.633503,0.804498,0.029786,0.593188,0.804559,-0.137089,0.577807,0.829432,0.004456,0.558519,0.826533,-0.177313,0.534196,0.771050,0.391980,0.501785,0.812220,0.246376,0.528733,0.679647,0.543931,0.492080,0.751854,0.382458,0.537004,0.804712,0.212958,0.554094,0.653584,0.378948,0.655110,0.511399,0.368236,0.776421,0.561785,0.152654,0.813044,0.718253,0.180914,0.671834,0.396924,0.332804,0.855373,0.416242,0.130345,0.899838,0.277230,0.741203,0.611316,0.583514,-0.409589,0.701224,0.593158,-0.163244,0.788324,0.431104,-0.121403,0.894070,0.428602,-0.375896,0.821558,0.750328,-0.136326,0.646840,0.833369,-0.066530,0.548662,0.722312,-0.378521,0.578722,0.803858,-0.299692,0.513749,0.845088,-0.017975,0.534288,0.830042,-0.225929,0.509842,0.773156,-0.226234,0.592456,0.740226,-0.215613,0.636799,0.792108,-0.272835,0.546007,0.729911,-0.168065,0.662526,0.716727,-0.138981,0.683340,0.716453,-0.188177,0.671743,0.791986,-0.345927,0.503037,0.763756,-0.425092,0.485702,0.747765,-0.368999,0.551958,0.750298,-0.254006,0.610309,0.695975,-0.488907,0.525864,0.569872,-0.530686,0.627338,0.562395,-0.566057,0.602680,0.689993,-0.478195,0.543290,0.411756,-0.539598,0.734306,0.406476,-0.597278,0.691366,0.021607,0.992309,-0.121708,0.146336,0.982849,-0.112186,-0.165319,0.745323,-0.645833,0.073336,0.772423,-0.630818,-0.034364,0.999390,-0.000763,-0.310495,0.800104,-0.513199,0.445509,0.773400,0.450911,0.013337,0.939451,0.342387,0.440352,0.726127,0.527970,0.090030,0.877346,0.471297,0.375134,0.683645,0.625996,0.005280,0.838771,0.544420,0.232154,0.626789,0.743767,-0.256935,0.793481,0.551653,0.376476,-0.440443,0.814997,0.559221,0.294565,0.774895,0.687460,0.200354,0.698019,0.686636,0.023835,0.726554,0.753624,-0.261849,0.602863,0.581042,-0.532609,0.615375,0.695334,-0.173681,0.697348,0.726127,-0.224403,0.649861,-0.910062,0.391003,0.137303,-0.201178,0.814173,0.544603,0.307291,0.558702,0.770318,-0.583117,-0.230934,0.778832,-0.212165,0.439467,0.872799,-0.103336,0.375469,0.921018,-0.012879,0.696860,0.717063,0.162145,0.535783,0.828608,0.172033,0.882290,0.438063,0.129093,0.837245,0.531327,0.304300,0.847468,0.434919,0.312204,0.765893,0.562059,0.894162,0.304605,0.328104,0.755486,-0.049074,0.653310,0.571978,-0.766350,-0.292428,0.214637,-0.975372,-0.050356,-0.150853,-0.945402,0.288858,0.277871,-0.302744,0.911649,-0.432936,-0.225135,0.872829,-0.265328,-0.265908,0.926756,-0.164892,-0.365032,0.916257,-0.411237,-0.625935,0.662587,-0.114200,0.103366,0.988037,-0.000153,0.234626,0.972076,-0.313547,-0.318857,0.894406,-0.208380,-0.425367,0.880673,-0.219306,-0.351512,0.910123,-0.315592,-0.235939,0.919065,-0.263222,-0.000214,0.964721,-0.330149,-0.195044,0.923521,-0.337626,-0.092441,0.936705,-0.268715,0.107364,0.957213,-0.164861,0.152562,0.974425,-0.122501,0.251045,0.960173,-0.455123,0.544115,0.704794,-0.247505,0.932829,0.261788,-0.388073,0.808100,0.443129,-0.583667,0.434065,0.686209,0.138585,0.892697,-0.428755,0.146336,0.962615,-0.227882,0.186834,0.982147,-0.021149,-0.505936,0.681814,0.528275,-0.649892,0.411573,0.638936,-0.349834,0.730979,-0.585894,-0.241279,0.963591,0.115024,-0.187964,0.954985,0.229347,-0.396283,0.825007,-0.402844,-0.061953,0.745933,0.663106,-0.007599,0.769677,0.638356,-0.002960,0.799219,0.600971,-0.114231,0.929044,0.351817,-0.295297,0.951567,-0.085238,0.067965,0.183111,0.980712,0.013642,0.499252,0.866329,-0.080874,0.423444,0.902280,-0.056063,0.059175,0.996643,-0.118564,0.754753,0.645161,-0.171148,0.742393,0.647725,-0.220466,0.333842,0.916471,-0.243019,-0.024293,0.969695,0.137577,0.310221,0.940642,0.063814,0.584185,0.809076,0.168065,0.379467,0.909787,0.073183,0.632008,0.771447,-0.224647,-0.365612,0.903226,-0.039552,-0.374004,0.926572,-0.046754,-0.216010,0.975249,-0.240486,-0.242531,0.939848,0.118473,-0.325327,0.938139,0.099429,-0.113834,0.988495,0.261605,-0.256539,0.930418,0.216254,-0.020844,0.976104,0.326273,-0.165532,0.930662,0.279885,0.046785,0.958861,0.261879,0.008515,0.965056,0.259804,0.104343,0.959990,0.136601,0.300882,0.943785,0.169042,0.355968,0.919065,0.109043,-0.431410,0.895535,0.105106,-0.365825,0.924711,-0.041688,-0.428602,0.902493,-0.026551,-0.498489,0.866451,-0.208960,-0.451277,0.867550,-0.189642,-0.499222,0.845454,-0.722129,0.556627,0.410627,-0.725547,0.512131,0.459609,-0.824732,0.439558,0.355785,-0.798547,0.520981,0.301431,-0.713187,0.484817,0.506241,-0.797754,0.398297,0.452681,-0.856044,0.245674,0.454726,-0.837123,0.364391,0.407910,-0.775872,0.503555,0.380047,-0.815577,0.247719,0.522874,-0.865871,0.073305,0.494797,-0.722465,0.376934,0.579608,-0.718680,0.206336,0.663961,-0.798059,0.109897,0.592456,-0.846522,-0.057405,0.529191,-0.721824,0.457717,0.519059,-0.781030,0.287484,0.554338,-0.701437,0.203375,0.683065,-0.825343,0.070894,0.560137,-0.727165,-0.057924,0.683981,-0.475936,-0.166478,0.863552,-0.497848,0.107822,0.860500,-0.621693,0.129215,0.772485,-0.606647,-0.138951,0.782708,-0.282876,0.668691,0.687582,-0.356212,0.196112,0.913572,-0.372997,-0.111148,0.921140,-0.379284,-0.229957,0.896237,-0.479873,-0.256386,0.839015,-0.483230,-0.372600,0.792199,-0.369884,-0.347911,0.861446,-0.603961,-0.289254,0.742668,-0.611316,-0.391003,0.688009,-0.728385,-0.264748,0.631947,-0.731620,-0.346171,0.587237,-0.833613,-0.134098,0.535752,-0.823328,-0.217750,0.524125,-0.732841,-0.134861,0.666860,-0.802515,-0.134648,0.581195,-0.754051,-0.036775,0.655751,-0.690878,-0.113742,0.713950,-0.692953,-0.025330,0.720511,-0.653066,-0.210944,0.727287,-0.724693,-0.362651,0.585894,-0.740837,-0.334391,0.582476,-0.808161,-0.227424,0.543229,-0.764611,-0.209082,0.609607,-0.475478,-0.533799,0.699210,-0.479019,-0.459609,0.747826,-0.616352,-0.421613,0.665059,-0.600116,-0.503098,0.621876,-0.356578,-0.456160,0.815302,-0.357433,-0.502976,0.786889,-0.145268,0.727378,-0.670644,-0.169317,0.985107,0.029664,0.080935,0.733818,-0.674459,-0.064119,0.997864,0.010926,0.177374,0.786370,-0.591723,-0.086581,0.992187,0.089755,-0.661184,0.587786,0.466140,-0.781457,0.523606,0.339274,0.174657,0.971099,0.162542,0.193457,0.956420,0.218665,-0.814692,0.508805,0.278146,-0.689627,0.581835,0.431104,-0.833277,-0.327158,-0.445631,0.157445,0.646474,0.746483,-0.623218,0.468337,0.626270,-0.529283,0.529496,0.662923,-0.277200,-0.392895,0.876766,-0.627064,0.181707,0.757469,-0.633381,-0.221259,0.741508,-0.489944,-0.788263,0.372204,-0.692312,-0.564318,0.449660,-0.629048,-0.406018,0.662862,-0.426221,0.607349,0.670370,0.146245,0.713187,0.685507,0.772942,0.371746,0.514115,0.638264,0.021302,0.769494,0.059877,0.600024,0.797723,-0.041871,0.765374,0.642170,-0.020936,0.533860,0.845302,-0.304758,0.478317,0.823573,-0.424268,0.683828,0.593554,-0.125980,0.867672,0.480850,-0.463363,0.697745,0.546251,-0.234870,0.924161,0.301187,-0.032716,-0.966765,0.253517,-0.064058,-0.955077,-0.289346,-0.834468,-0.415571,0.361827,-0.458205,-0.543046,0.703635,-0.127567,-0.841365,-0.525163,-0.932188,-0.321757,0.165716,-0.172582,0.013367,0.984893,-0.074953,-0.501877,0.861660,0.022004,-0.136723,0.990356,0.137944,-0.284524,0.948668,0.251106,-0.110477,0.961608,0.101932,-0.599994,0.793451,0.241310,-0.272469,0.931394,0.224982,-0.300821,0.926725,0.232246,-0.147221,0.961425,0.287484,-0.159154,0.944456,0.212928,-0.001648,0.977050,0.149785,0.010620,0.988647,0.115848,0.167852,0.978973,0.104343,0.237342,0.965789,-0.035646,0.368999,0.928739,0.065889,0.157933,0.985229,-0.760186,-0.015717,-0.649495,-0.822108,0.172613,-0.542497,-0.896359,-0.196936,-0.397107,-0.798914,-0.089206,-0.594775,-0.827448,0.230445,-0.512040,-0.092410,-0.994354,0.051546,-0.743584,-0.611682,-0.269997,-0.804468,-0.288675,-0.519059,-0.356426,0.790551,-0.497909,-0.435499,0.768487,-0.468734,-0.689261,0.325877,-0.647023,-0.583026,0.396252,-0.709250,-0.713248,0.036409,-0.699942,-0.606494,0.162145,-0.778375,0.874020,0.485275,-0.023682,0.249947,-0.607227,0.754173,0.195959,-0.980255,-0.026063,0.457350,-0.884030,0.096316,-0.016785,-0.909391,0.415540,-0.024018,-0.993744,0.109012,-0.360668,-0.912137,0.194647,-0.228492,-0.870785,0.435286,-0.544877,-0.129276,0.828455,-0.320902,-0.479019,0.817011,0.371166,0.799188,0.472732,0.148839,0.986175,0.072390,0.181677,0.966704,0.180151,0.369701,0.749962,0.548509,-0.092807,0.926786,-0.363903,-0.080660,0.952879,-0.292306,-0.048463,0.950530,-0.306772,0.203803,0.962127,0.180944,0.381085,0.753746,0.535356,0.309244,0.292306,0.904904,0.001068,0.130497,0.991424,0.128117,0.631367,0.764794,0.395825,0.623341,0.674306,0.162633,0.945219,0.282907,0.266701,0.916990,0.296579,-0.074801,0.986541,-0.145177,-0.025666,0.991577,-0.126743,0.552843,0.272805,0.787347,0.454054,0.236335,0.859035,0.499222,0.524979,0.689291,0.524003,0.436903,0.731071,0.346202,0.870235,0.350383,0.080782,0.995178,-0.055483,-0.196905,0.863643,-0.463973,0.515580,0.464888,0.719718,0.588275,0.371105,0.718467,0.489792,0.540239,0.684255,0.554857,0.431623,0.711203,-0.079012,0.928587,-0.362590,-0.042390,0.936888,-0.346965,-0.181829,0.635182,-0.750633,-0.144810,0.656850,-0.739952,-0.272378,0.615741,-0.739341,-0.329112,0.408063,-0.851558,-0.235115,0.435072,-0.869137,-0.151738,0.450545,-0.879727,0.241401,0.815363,0.526170,0.055208,0.995911,0.071169,-0.008698,0.997986,0.062807,0.082095,0.841639,0.533708,-0.077822,0.926695,-0.367595,-0.004089,0.929868,-0.367809,0.002503,0.996887,0.078707,-0.002045,0.844386,0.535661,0.422681,0.453383,0.784692,0.364238,0.588244,0.721976,0.158818,0.614856,0.772454,0.212287,0.395734,0.893460,-0.003418,0.609333,0.792871,0.011048,0.345927,0.938169,0.453078,0.564440,0.689993,0.499557,0.459120,0.734581,0.357280,0.775719,0.520157,0.161229,0.980102,0.115635,-0.114017,0.683157,-0.721305,-0.030213,0.690512,-0.722678,-0.100833,0.475906,-0.873653,-0.041658,0.497421,-0.866482,-0.413617,0.515671,-0.750328,-0.331980,0.576525,-0.746544,-0.464064,0.288217,-0.837581,-0.401379,0.331584,-0.853755,-0.347118,0.587603,-0.730857,-0.389477,0.359081,-0.848140,0.971740,-0.037660,-0.233009,0.686270,0.692373,-0.222694,0.823695,0.408795,-0.392926,0.941374,0.080721,-0.327555,0.458693,0.829310,-0.319071,0.748131,0.444197,-0.492874,0.777825,0.214087,-0.590869,0.801294,0.213843,-0.558672,0.855800,0.085971,-0.510086,0.699271,0.407422,-0.587329,0.757866,0.218268,-0.614765,0.387127,0.805597,-0.448439,0.374248,0.753655,-0.540269,0.646748,0.380505,-0.660970,0.687033,0.296487,-0.663350,0.680715,-0.730064,-0.059877,0.807855,0.514206,0.287942,0.604236,0.796533,-0.020203,0.905423,-0.398907,-0.144993,-0.139927,0.944731,0.296426,0.013581,0.999756,-0.016511,0.702292,-0.329142,0.631184,0.179449,0.755547,0.629994,0.401044,-0.892361,0.206854,0.220588,-0.832575,0.508042,0.431471,-0.668813,0.605365,0.446486,0.101901,0.888943,0.070376,0.816858,-0.572466,0.130070,0.792810,-0.595386,-0.295267,0.954192,0.047761,-0.271889,0.960448,0.059908,0.219306,0.763726,-0.607074,-0.233528,0.972167,-0.017182,-0.438612,0.790185,0.427992,-0.496597,0.744224,0.446638,-0.470717,0.747307,0.468947,-0.285958,0.861568,0.419385,-0.332621,0.913816,0.232856,-0.067293,0.686697,0.723777,-0.363964,0.665456,0.651662,-0.440443,0.793298,0.420270,-0.367473,0.905057,0.213965,-0.051698,0.994354,-0.092563,-0.061708,0.987945,-0.141820,-0.432813,0.692526,0.577074,-0.381817,0.870083,0.311624,-0.425367,0.540666,0.725730,-0.490249,0.507462,0.708579,-0.475631,0.613147,0.630696,-0.137944,0.983276,-0.118717,0.315836,0.740074,-0.593707,-0.549760,0.601367,0.579730,-0.524186,0.591327,0.612781,-0.566515,0.506119,0.650288,-0.541551,0.478042,0.691488,0.199683,0.541704,-0.816492,0.195318,0.548784,-0.812799,0.117283,0.585284,-0.802271,0.121250,0.533036,-0.837336,0.058443,0.851863,-0.520432,0.052797,0.894131,-0.444655,0.061098,0.627552,-0.776147,0.066134,0.518540,-0.852473,0.040315,0.921995,-0.385052,0.008972,0.995483,0.094333,-0.043153,0.994324,0.097049,-0.176977,0.834284,0.522111,-0.048128,0.845851,0.531175,-0.093509,0.606494,0.789544,-0.271981,0.598956,0.753166,-0.293405,0.418744,0.859371,-0.099826,0.370434,0.923460,-0.343669,0.788171,0.510483,-0.435102,0.584979,0.684408,-0.459517,0.455763,0.762291,-0.152989,0.984375,0.086917,0.029542,0.667104,-0.744346,0.022217,0.506180,-0.862117,0.559893,0.409223,-0.720420,0.559069,0.415601,-0.717399,0.440901,0.462996,-0.768883,0.432081,0.498062,-0.751793,0.313120,0.509171,-0.801660,0.311838,0.535691,-0.784692,-0.111545,-0.951811,-0.285623,-0.083560,-0.993957,-0.071108,-0.037751,-0.998627,-0.036134,-0.051973,-0.968993,-0.241462,-0.021577,-0.987274,0.157384,0.022553,-0.981964,0.187658,0.070132,-0.977996,0.196448,0.012665,-0.999725,-0.018616,-0.010559,-0.977722,-0.209632,0.008271,-0.999634,-0.024537,-0.010590,-0.980041,-0.198462,0.034913,-0.981170,0.189825,-0.006989,-0.983337,0.181555,-0.005066,-0.999634,-0.026276,-0.007385,-0.979644,-0.200568,0.148961,-0.856258,0.494552,0.064425,-0.875240,0.479354,0.199805,-0.682424,0.703085,0.105502,-0.733482,0.671438,0.014618,-0.770074,0.637745,0.001465,-0.884945,0.465621,0.099033,-0.869716,0.483444,0.139348,-0.853511,0.502029,0.213630,-0.678304,0.702994,0.231391,-0.667531,0.707663,-0.080508,-0.996521,0.020631,-0.252174,-0.967101,-0.032868,-0.035096,-0.996857,0.070742,-0.065340,-0.985565,0.156133,-0.202124,-0.979278,-0.011200,-0.317728,-0.943693,-0.092013,0.263588,-0.685720,0.678426,0.102115,-0.894009,0.436232,0.024934,-0.961119,0.274911,0.129002,-0.818049,0.560442,0.087771,-0.802576,0.590014,0.110508,-0.869411,0.481552,0.275491,-0.629688,0.726310,0.241066,-0.549516,0.799921,0.052278,-0.924497,0.377575,0.258675,-0.719962,0.643971,0.443068,-0.426344,0.788598,0.415143,-0.320200,0.851527,0.388440,-0.240608,0.889462,-0.249855,-0.895596,-0.368053,-0.131962,-0.983093,-0.126835,-0.097781,-0.989776,-0.103793,-0.167180,-0.930204,-0.326701,-0.102542,-0.994720,0.000153,-0.060793,-0.994110,0.089602,0.012207,-0.917051,0.398541,-0.051454,-0.965300,0.255928,0.141942,-0.727012,0.671773,-0.217048,-0.963408,-0.157140,-0.175726,-0.982757,-0.057253,-0.349742,-0.842708,-0.409223,-0.450026,-0.774499,-0.444502,-0.310434,-0.928800,-0.202216,-0.251045,-0.964110,-0.086123,-0.557207,-0.796045,-0.236183,-0.721732,-0.502762,-0.475692,-0.485763,-0.836787,-0.252480,-0.621601,-0.622150,-0.475906,-0.296976,-0.949217,-0.103671,-0.405133,-0.881954,-0.240791,-0.541398,-0.698050,-0.468551,-0.090213,-0.987030,0.132664,-0.169866,-0.983947,0.054201,-0.034272,-0.962249,0.269906,-0.210944,-0.977477,0.005615,0.170049,-0.808313,0.563616,0.368175,-0.553697,0.746879,0.286050,-0.489456,0.823756,0.314310,-0.473067,0.823023,0.421430,-0.197699,0.885006,0.412519,-0.192755,0.890286,0.308237,-0.203833,0.929197,0.288034,-0.491897,0.821589,0.168706,-0.191198,0.966918,0.229987,-0.524033,0.820032,0.100528,-0.149358,0.983642,0.152867,-0.564959,0.810816,-0.004059,-0.120243,0.992706,0.015595,-0.591296,0.806299,-0.031526,-0.979095,0.200812,0.007996,-0.979766,0.199896,0.073916,-0.993316,-0.088443,0.023591,-0.998962,-0.038484,0.043794,-0.984893,0.167425,0.136387,-0.979705,-0.146702,0.163762,-0.929197,-0.331278,0.085757,-0.948851,-0.303781,0.027680,-0.963256,-0.267098,-0.028169,-0.982421,0.184423,0.006592,-0.999756,-0.020325,0.007416,-0.974273,-0.225135,-0.133091,-0.753014,0.644368,-0.080233,-0.880215,0.467727,-0.199103,-0.722312,0.662252,-0.129887,-0.868709,0.477950,-0.160283,-0.737693,0.655782,-0.099490,-0.871792,0.479659,-0.119114,-0.775506,0.619983,-0.065645,-0.885586,0.459792,0.247719,-0.966308,0.069521,0.347026,-0.936766,-0.044923,0.388012,-0.907346,-0.161534,0.323038,-0.936094,-0.139103,0.590228,-0.785150,-0.187414,0.393536,-0.897336,-0.199652,0.256020,-0.924406,0.282632,0.101260,-0.908322,0.405774,-0.020173,-0.741966,0.670125,0.119480,-0.800165,0.587725,-0.297159,-0.605640,0.738151,-0.134678,-0.780511,0.610431,-0.191046,-0.716819,0.670553,-0.342570,-0.520188,0.782311,0.054170,-0.925260,0.375408,-0.044099,-0.871364,0.488571,-0.074709,-0.826746,0.557573,-0.223640,-0.659169,0.717948,-0.371166,-0.409680,0.833277,0.123356,-0.988769,0.083987,0.190771,-0.962035,-0.195105,0.205176,-0.978240,-0.030183,0.270302,-0.933195,-0.236702,0.327555,-0.869106,-0.370556,0.239082,-0.905271,-0.351146,0.086245,-0.951262,0.295969,0.032777,-0.915525,0.400861,-0.072237,-0.804895,0.588977,0.475906,-0.770440,-0.424116,0.412030,-0.820338,-0.396527,0.353282,-0.895505,-0.270608,0.407361,-0.864742,-0.293680,0.287942,-0.950011,-0.120609,0.365551,-0.911313,-0.189276,0.823267,-0.486831,-0.291787,0.560350,-0.776971,-0.286843,0.843226,-0.246498,-0.477676,0.691946,-0.557848,-0.458235,0.455885,-0.837764,-0.300455,0.556078,-0.701621,-0.445509,0.376141,-0.900327,-0.218787,0.262795,-0.963897,0.042451,0.155553,-0.973083,0.169988,0.292978,-0.953764,-0.066805,0.149266,-0.962981,0.224342,-0.031465,-0.851070,0.524064,-0.182928,-0.675680,0.714103,-0.230171,-0.601062,0.765313,-0.371075,-0.299722,0.878872,-0.229347,-0.550707,0.802545,-0.357524,-0.232276,0.904538,-0.262917,-0.534745,0.803034,-0.234382,-0.528031,0.816218,-0.264473,-0.169103,0.949431,-0.318247,-0.206397,0.925230,-0.190497,-0.570818,0.798639,-0.167791,-0.124393,0.977935,0.951415,0.012848,0.307596,0.968871,-0.064394,0.238929,0.918363,0.124271,0.375652,0.924497,0.045015,0.378491,0.952757,-0.017609,0.303171,0.973357,-0.036805,0.226264,0.984252,-0.021363,0.175390,0.975341,-0.073885,0.207862,-0.007630,-0.382519,0.923887,0.170629,-0.356548,0.918546,0.140660,-0.531449,0.835322,-0.035768,-0.495804,0.867672,0.308176,-0.293497,0.904904,0.282571,-0.546831,0.788079,0.564165,0.298593,0.769738,0.593036,0.236854,0.769524,0.641377,0.064211,0.764519,0.632832,0.097598,0.768090,0.635548,0.167028,0.753746,0.678365,-0.002808,0.734703,0.558611,0.267403,0.785119,0.554857,0.333720,0.762047,0.658986,0.089602,0.746788,0.695914,-0.024415,0.717673,0.535997,-0.048402,0.842799,0.571001,0.117679,0.812433,0.678762,-0.227485,0.698202,0.574236,-0.409406,0.708914,0.424970,-0.191168,0.884762,0.421918,-0.511948,0.748222,0.668874,0.051454,0.741569,0.722861,-0.094729,0.684439,0.694021,-0.104099,0.712363,0.750511,-0.172979,0.637776,-0.104251,-0.508103,0.854946,-0.090823,-0.231513,0.968566,-0.392895,-0.013672,0.919462,-0.401563,-0.226997,0.887234,-0.016327,0.083102,0.996399,-0.317209,0.001343,0.948332,-0.474166,0.047365,0.879147,-0.495773,-0.035218,0.867702,0.064028,0.183966,0.980834,-0.184362,-0.033570,0.982269,0.063295,0.168554,0.983642,-0.080447,0.127293,0.988586,-0.197790,-0.276437,0.940428,-0.142644,-0.359142,0.922300,-0.193182,-0.443709,0.875088,-0.285958,-0.348552,0.892575,-0.089724,-0.037690,0.995239,-0.161351,-0.159337,0.973937,-0.283120,-0.227210,0.931761,-0.206641,-0.058779,0.976623,-0.023682,0.098575,0.994842,-0.128544,0.121158,0.984252,0.673086,-0.072878,0.735923,0.500839,-0.088961,0.860927,0.333659,-0.457625,0.824152,0.508286,-0.430555,0.745781,0.336894,-0.300119,0.892392,0.131932,-0.585650,0.799738,0.020600,-0.454299,0.890591,0.271615,-0.420698,0.865566,0.472976,-0.409680,0.779992,0.823084,-0.244484,0.512558,0.805078,-0.149113,0.574084,0.636952,-0.454482,0.622639,0.695547,-0.459883,0.551988,0.612903,-0.427137,0.664724,0.700217,-0.417432,0.579119,0.700705,-0.276925,0.657460,0.741356,-0.260933,0.618244,0.712516,-0.361827,0.601123,0.711051,-0.354717,0.607074,0.775964,-0.254250,0.577227,0.783410,-0.222633,0.580248,0.763176,-0.322947,0.559648,0.697745,-0.422651,0.578326,0.747581,-0.337321,0.572069,0.112125,-0.775567,0.621204,-0.026429,-0.735221,0.677267,0.024323,-0.865993,0.499405,-0.132450,-0.686941,0.714499,-0.278573,-0.399579,0.873318,-0.173040,-0.470199,0.865413,-0.019837,-0.702658,0.711234,-0.262642,-0.437819,0.859828,-0.389752,-0.207465,0.897214,-0.432630,0.032563,0.900967,-0.389355,-0.111606,0.914274,-0.435804,-0.078188,0.896634,-0.482437,0.001923,0.875912,-0.285379,0.045869,0.957305,-0.261483,-0.086367,0.961303,0.020600,0.046693,0.998688,0.013215,-0.048067,0.998749,0.348277,-0.003815,0.937346,0.322977,-0.071200,0.943693,0.570513,-0.071200,0.818171,0.545000,-0.140446,0.826563,0.719108,-0.128697,0.682821,0.687124,-0.223975,0.691122,0.789453,-0.149907,0.595203,0.756493,-0.264473,0.598071,0.810358,-0.219367,0.543260,0.787042,-0.226875,0.573595,0.781610,-0.236549,0.577105,0.812677,-0.153417,0.562120,0.783258,-0.235054,0.575488,0.779900,-0.236396,0.579485,0.961608,-0.054720,0.268807,0.935575,-0.015564,0.352763,0.936064,-0.025575,0.350810,0.961852,-0.045930,0.269662,0.858974,0.055177,0.508957,0.867855,0.054323,0.493759,0.859645,0.042634,0.509049,0.916349,-0.031281,0.399091,0.946440,-0.053499,0.318369,0.875423,-0.039918,0.481674,0.914640,-0.063448,0.399213,0.826197,0.024354,0.562822,0.766289,0.027711,0.641865,0.820002,-0.031281,0.571459,0.870724,-0.047639,0.489425,0.686361,0.058962,0.724815,0.755852,0.003143,0.654714,0.613422,0.118137,0.780847,0.680410,0.063845,0.730033,0.732994,0.052248,0.678182,0.816736,-0.006256,0.576952,0.453841,0.327464,0.828700,0.514603,0.183111,0.837642,0.454848,0.170415,0.874081,0.360576,0.256661,0.896695,0.522080,0.049409,0.851436,0.502060,0.072970,0.861721,0.491379,0.065889,0.868435,0.409619,0.128208,0.903165,0.292184,0.169317,0.941221,0.117313,0.183142,0.976043,0.218787,0.270211,0.937590,0.263802,0.283334,0.921995,0.178289,0.187201,0.965972,0.352000,0.356029,0.865596,0.375927,0.387066,0.841914,0.991302,0.093020,-0.092837,0.990905,0.107486,-0.080569,0.990936,-0.120518,-0.059114,0.983917,-0.125095,-0.127293,0.995788,0.089053,-0.021424,0.993866,-0.104678,0.035615,0.911313,-0.380169,0.157903,0.950591,-0.310404,0.004517,0.961882,-0.262215,-0.077273,0.898953,-0.425977,-0.101810,0.939695,-0.331126,-0.085513,0.891110,-0.452559,0.032929,0.832148,-0.554186,0.018281,0.789087,-0.586138,0.183691,0.641652,-0.732322,0.227943,0.725150,-0.619556,0.300455,0.660604,-0.735496,0.150365,0.362774,-0.880459,0.305155,0.392346,-0.875179,0.282937,0.289926,-0.838099,0.462050,0.075930,-0.687918,0.721763,0.103366,-0.853328,0.511002,0.213141,-0.865902,0.452467,0.352519,-0.706839,0.613239,0.132389,-0.536973,0.833125,-0.212165,-0.277200,0.937071,-0.119053,0.138432,0.983184,0.149632,0.456465,0.877041,0.114017,-0.176580,0.977630,0.062075,-0.717521,0.693716,-0.094180,-0.565905,0.819025,0.544145,-0.685781,0.483291,0.671834,-0.615741,0.411664,0.825770,0.293191,0.481735,0.904263,0.238136,0.354350,0.922422,0.254830,0.290078,0.850063,0.315470,0.421674,0.869778,0.287362,0.401074,0.862514,0.343028,0.371929,0.839381,0.406232,0.361064,0.930479,0.264595,0.253273,0.892026,0.240547,0.382611,0.559740,0.245918,0.791314,0.393811,0.152776,0.906369,0.293069,0.170537,0.940733,0.499344,0.248146,0.830073,0.052522,0.048250,0.997436,-0.055666,0.095004,0.993896,-0.140904,0.097995,0.985137,0.187719,0.156804,0.969604,0.429151,0.220985,0.875759,0.921445,-0.005768,0.388440,0.790429,-0.339335,0.509934,0.750084,-0.512497,0.417920,0.938719,-0.219001,0.266091,0.329051,-0.745415,0.579699,0.200934,-0.777825,0.595447,0.410901,-0.725974,0.551439,0.412580,-0.688559,0.596332,0.776696,-0.252541,0.576983,0.739982,-0.333354,0.584155,0.885525,0.087466,0.456252,0.873623,0.009613,0.486465,-0.248787,0.042360,0.967620,-0.271126,0.067873,0.960143,-0.198462,-0.032746,0.979553,-0.073000,-0.066225,0.995117,-0.055330,0.010193,0.998413,-0.030915,0.071688,0.996918,0.020631,-0.738731,0.673666,-0.025391,-0.626789,0.778741,0.232551,-0.441664,0.866482,0.318522,-0.569933,0.757408,-0.068606,-0.510758,0.856960,0.145299,-0.353191,0.924192,0.440992,-0.181860,0.878872,0.495163,-0.252449,0.831294,0.566424,-0.366894,0.737907,0.594745,-0.514847,0.617359,0.388165,-0.681783,0.620045,0.641652,-0.594806,0.484207,0.456069,-0.747551,0.482803,0.136601,-0.888089,0.438856,0.072848,-0.825587,0.559526,0.476211,0.442061,0.760094,0.492843,0.379528,0.782952,0.477279,0.305979,0.823725,0.443800,0.408734,0.797449,0.509781,0.252907,0.822260,0.499832,0.163488,0.850520,0.457198,0.072726,0.886349,0.485000,0.219581,0.846461,0.467238,0.375988,0.800165,0.428449,0.437422,0.790613,0.577013,0.305612,0.757378,0.494278,0.435224,0.752464,0.579852,0.397290,0.711264,0.553056,0.359722,0.751457,0.529160,0.392285,0.752373,0.548509,0.439314,0.711417,0.525864,0.288797,0.800012,0.505844,0.299020,0.809107,0.641713,0.202338,0.739738,0.579730,0.397565,0.711203,0.658040,0.149144,0.738029,0.616962,0.348949,0.705374,0.633808,-0.461715,0.620533,0.739036,-0.120640,0.662740,0.557909,-0.460433,0.690420,0.614612,0.209937,0.760338,0.478988,0.109165,0.870998,0.655660,0.118809,0.745628,0.545335,0.054231,0.836451,0.288919,-0.079897,0.954009,0.176244,-0.024934,0.984008,0.595569,-0.267464,0.757439,0.607990,-0.132023,0.782861,0.591906,-0.036683,0.805139,0.659200,-0.049928,0.750267,0.376965,-0.141270,0.915372,0.211921,-0.656941,0.723502,0.386090,-0.597064,0.703116,0.219153,-0.423536,0.878964,0.456984,-0.279092,0.844539,0.488601,-0.392804,0.779046,0.335368,0.064394,0.939848,0.432447,0.506851,0.745689,0.680563,0.333415,0.652394,0.549181,0.012391,0.835566,0.659658,-0.168737,0.732353,0.587451,-0.260445,0.766167,0.810755,0.066347,0.581591,0.837519,-0.179266,0.516098,0.683737,-0.339091,0.646138,0.593738,-0.235481,0.769402,0.616901,-0.221595,0.755181,0.666616,0.140049,0.732109,0.631367,0.292001,0.718375,0.590625,0.328196,0.737144,0.553270,0.313028,0.771905,0.519700,0.263527,0.812647,-0.259133,0.184515,0.948027,-0.198370,0.165563,0.966033,-0.005219,0.214881,0.976623,0.000519,0.435713,0.900052,-0.184027,0.386700,0.903653,-0.176733,0.300058,0.937376,0.103610,0.186651,0.976928,0.378399,0.190130,0.905881,0.106235,0.248421,0.962798,0.395184,0.181616,0.900449,-0.054903,0.361064,0.930906,-0.029786,0.258797,0.965453,-0.009003,0.405072,0.914212,0.217627,0.168706,0.961333,0.442122,0.105838,0.890652,0.451186,-0.013489,0.892300,0.490951,0.060549,0.869076,0.457259,0.095096,0.884213,0.489517,0.130711,0.862117,0.495010,0.181616,0.849666,0.488144,0.195502,0.850551,0.492325,0.177709,0.852046,0.479843,0.026368,0.876949,0.521287,-0.071108,0.850398,0.518265,0.085147,0.850948,0.467574,-0.177923,0.865841,0.481338,-0.022736,0.876217,0.362621,-0.294504,0.884152,0.402600,-0.115116,0.908078,0.451064,-0.049532,0.891079,0.511338,0.104221,0.853023,0.428602,-0.185705,0.884182,0.496780,-0.042817,0.866787,0.268197,-0.416395,0.868709,0.357952,-0.235298,0.903592,0.197821,-0.523637,0.828639,0.324595,-0.351726,0.877987,0.216681,-0.597613,0.771905,0.361370,-0.451979,0.815516,0.072573,-0.728019,0.681692,0.478164,-0.302622,0.824458,0.527909,-0.179296,0.830134,0.473220,-0.098178,0.875423,0.255806,-0.942869,0.213324,0.271371,-0.935514,0.226112,0.554979,-0.813929,0.171728,0.526017,-0.838069,0.144658,0.258583,-0.930204,0.260414,0.554399,-0.799371,0.231544,0.749168,-0.638173,0.177343,0.734642,-0.675802,0.059755,0.654805,-0.755730,0.008515,0.703726,-0.632008,0.324503,0.518662,-0.785363,0.337809,0.207984,-0.921567,0.327708,0.811609,-0.364788,0.456282,0.678823,-0.474837,0.560076,0.765831,-0.499100,0.405408,0.681356,-0.564287,0.466140,0.729911,-0.609729,0.308878,0.732994,-0.590136,0.338206,0.707358,-0.702963,0.073977,0.799158,-0.585406,0.136479,0.623737,-0.750938,-0.216712,0.768883,-0.633168,-0.088809,0.529710,-0.805139,-0.266610,0.631764,-0.761315,-0.145695,0.621784,-0.527299,0.579058,0.524003,-0.693075,0.494980,0.630726,-0.539201,0.558000,0.752647,-0.324625,0.572771,0.341319,-0.917020,0.206183,0.328776,-0.843776,0.424177,0.562059,-0.779900,0.275307,0.500778,-0.830622,0.243355,0.538194,-0.715232,0.445814,0.558885,-0.677877,0.477584,0.617542,-0.527146,0.583728,0.584552,-0.510056,0.630909,0.523392,-0.851802,0.021088,0.587085,-0.803949,0.094577,0.404523,-0.904904,-0.132237,0.489731,-0.845668,0.212073,0.216407,-0.926695,0.307169,0.466414,-0.796014,0.385723,0.166814,-0.852870,0.494705,0.459212,-0.661184,0.593249,0.136082,-0.688406,0.712424,0.454665,-0.461928,0.761467,0.104892,-0.428205,0.897549,0.485702,-0.126347,0.864925,0.072726,-0.059664,0.995544,0.686178,-0.197668,0.700003,0.756584,0.195288,0.624043,0.514542,0.284310,0.808924,0.062166,0.345042,0.936521,0.760796,-0.243690,0.601489,0.859249,0.101749,0.501297,0.777276,0.495041,0.388256,0.767296,0.420576,0.484085,0.860439,0.366710,0.353740,0.838557,0.487899,0.242317,0.880856,0.344890,0.324198,0.832667,0.506851,0.222968,0.783746,0.496628,0.372906,0.772240,0.498428,0.393933,0.533067,0.581866,0.614185,0.516587,0.609394,0.601428,0.776086,0.470260,0.420087,0.557634,0.528001,0.640492,0.114750,0.567919,0.815027,0.122837,0.612812,0.780602,0.117588,0.636250,0.762444,0.514634,0.606250,0.606281,0.789819,0.494827,0.362285,0.104282,0.638478,0.762505,0.088900,0.624165,0.776208,0.516526,0.580981,0.628986,0.516709,0.509598,0.687918,0.072024,0.563524,0.822932,-0.121372,-0.149968,0.981201,-0.029817,-0.240669,0.970122,-0.136662,-0.327830,0.934782,-0.109561,-0.181036,0.977325,0.062349,-0.302591,0.951048,-0.114261,-0.434706,0.893277,0.878445,0.242866,0.411451,0.826930,0.352977,0.437635,0.837672,0.281289,0.468123,0.887722,0.175512,0.425581,0.988403,-0.015717,0.150914,0.986847,-0.068361,0.146428,0.976806,0.006409,0.213874,0.976287,-0.032777,0.213904,0.960051,0.006012,0.279672,0.962889,-0.057375,0.263710,0.976440,-0.085482,0.198065,0.948698,0.039338,0.313669,0.957823,-0.015259,0.286843,0.969787,-0.067537,0.234382,0.984527,-0.113163,0.133732,0.986724,-0.098880,0.128697,0.987091,-0.138981,0.079196,0.936338,0.009583,0.350871,0.956084,0.009400,0.292856,0.685324,0.060427,0.725700,0.664022,0.194830,0.721854,0.760552,0.153264,0.630909,0.758843,0.093081,0.644551,0.665120,0.265603,0.697867,0.764336,0.174718,0.620655,0.725272,-0.210120,0.655599,0.808374,-0.231239,0.541307,0.666341,-0.020386,0.745354,0.767968,-0.098086,0.632923,0.859127,-0.096957,0.502457,0.637196,0.151097,0.755730,0.620991,0.261574,0.738853,0.460341,0.472915,0.751244,0.348613,0.387127,0.853572,0.505234,0.455092,0.733177,0.591540,0.461867,0.660848,0.155034,0.179601,0.971435,0.308847,0.293252,0.904752,0.461104,0.407544,0.788171,0.634877,0.499985,0.588977,0.693167,0.453230,0.560381,0.799402,0.321879,0.507248,0.776116,0.380291,0.502976,0.723136,0.332743,0.605243,0.707938,0.378124,0.596515,0.746910,0.463363,0.476821,0.876217,0.316721,0.363201,0.852596,0.284799,0.438093,0.823267,0.309183,0.475997,0.872402,0.294320,0.390149,0.795068,0.233436,0.559771,0.752770,0.285348,0.593158,0.858486,0.379406,0.344951,0.841304,0.263405,0.471999,0.877102,0.279000,0.390912,0.879971,0.343760,0.327769,0.891629,0.320933,0.319315,0.906461,0.330210,0.263100,0.973113,-0.196600,-0.119907,0.994842,-0.017121,0.099765,0.927396,-0.368053,-0.066561,0.858547,-0.008179,0.512650,0.820582,-0.571276,0.016541,0.879391,-0.283303,0.382550,0.642445,0.193854,0.741386,0.456954,0.281930,0.843593,0.196173,0.131687,0.971679,0.459090,0.173162,0.871334,0.265419,0.236518,0.934660,0.117557,0.154424,0.980956,0.808100,0.188482,0.558031,0.970855,0.187628,0.149052,0.828974,0.110446,0.548235,0.486251,0.120701,0.865413,0.498459,0.397778,0.770226,0.482620,0.308359,0.819727,0.365642,0.334910,0.868374,0.380718,0.428083,0.819605,0.465651,0.188360,0.864650,0.303079,0.205359,0.930540,0.213172,0.234291,0.948485,0.290384,0.346263,0.892026,0.312479,0.428480,0.847774,0.558916,0.135350,0.818079,0.289132,0.120182,0.949705,0.134831,0.138157,0.981170,0.886349,0.411359,0.212439,0.966308,0.242012,0.087497,0.943663,0.329295,0.031617,0.848354,0.500168,0.173437,0.930235,0.365398,0.033479,0.829005,0.532731,0.169988,0.926481,0.239357,0.290323,0.878658,0.337321,0.337809,0.830470,0.497299,0.250954,0.984497,0.043886,0.169774,0.839900,0.492141,0.228706,0.850520,0.459670,0.255501,0.810114,0.546464,0.212226,0.899991,0.378582,0.215918,0.868679,0.453658,0.198889,0.882900,0.396405,0.251564,0.882321,0.408643,0.233406,0.874538,0.394879,0.281442,0.830897,0.520249,0.197211,0.859645,0.461562,0.218909,0.800226,0.559862,0.214820,0.883755,0.318125,0.343089,0.917600,0.380200,0.115940,0.765893,0.209174,0.607959,0.661061,0.198523,0.723563,0.632649,0.279336,0.722282,0.625385,0.355052,0.694815,0.616016,0.407697,0.673971,0.492904,0.452437,0.743156,0.235145,0.446089,0.863521,0.143895,0.277078,0.949980,0.209449,0.317454,0.924833,0.323862,0.475173,0.818110,0.088565,0.089755,0.992004,0.075381,0.104953,0.991607,0.368603,0.486648,0.792016,0.298898,0.482437,0.823328,0.103122,0.143071,0.984313,0.189947,0.235054,0.953215,0.114841,0.154851,0.981231,0.202338,0.216773,0.955016,0.262703,0.339152,0.903287,0.287332,0.413129,0.864132,0.283975,0.309183,0.907590,0.311289,0.376446,0.872555,0.179998,0.149449,0.972228,0.261757,0.184759,0.947264,0.293527,0.119449,0.948454,0.372265,0.133732,0.918424,0.413160,0.087252,0.906430,0.485916,0.085299,0.869808,0.512406,0.051180,0.857204,0.573321,0.047151,0.817957,0.484878,0.227180,0.844539,0.465255,0.185247,0.865535,0.583758,0.115574,0.803644,0.607990,0.129124,0.783319,0.667379,0.064333,0.741905,0.382641,0.315348,0.868374,0.352123,0.258095,0.899655,0.403180,0.249977,0.880276,0.292245,0.307657,0.905484,0.345836,0.319041,0.882351,0.443159,0.239631,0.863796,0.210456,0.364910,0.906919,0.276162,0.394696,0.876278,0.520920,0.187109,0.832820,0.570544,0.146916,0.808008,0.508042,0.298654,0.807855,0.461074,0.303781,0.833705,0.479324,0.257851,0.838893,0.547105,0.221076,0.807306,0.399335,0.290384,0.869564,0.389141,0.291543,0.873806,0.318217,0.253029,0.913602,0.283670,0.306040,0.908750,0.229743,0.188452,0.954802,0.191443,0.291940,0.937071,0.200354,0.405133,0.891995,0.264321,0.451247,0.852321,0.151280,0.122593,0.980834,0.151616,0.271126,0.950499,0.177343,-0.050111,0.982849,0.286081,0.045686,0.957091,0.050569,-0.117435,0.991760,0.615009,0.301370,0.728629,0.559496,0.299020,0.773003,0.610462,0.193030,0.768120,0.688620,0.178899,0.702658,0.742119,0.174413,0.647145,0.650655,0.292093,0.700919,0.593799,0.319407,0.738487,0.565905,0.352977,0.745079,0.538713,0.353648,0.764641,0.502640,0.318217,0.803766,0.371685,0.130680,0.919095,0.447584,0.211219,0.868923,0.481155,0.277291,0.831599,-0.037873,-0.124943,0.991424,-0.039399,-0.068026,0.996887,0.051668,0.039430,0.997864,0.159276,0.158025,0.974487,0.796686,0.408521,0.445326,0.569323,0.467818,0.675985,0.815912,0.336039,0.470412,0.550768,0.437788,0.710593,0.042695,0.520005,0.853084,0.086184,0.535264,0.840266,0.870296,0.375347,0.318796,0.876858,0.319102,0.359539,0.889096,0.258614,0.377606,0.819849,0.293252,0.491714,0.513138,0.440474,0.736625,0.495315,0.468520,0.731498,-0.010468,0.557176,0.830317,0.008728,0.519211,0.854579,0.005585,0.545824,0.837855,-0.011719,0.590686,0.806787,0.514908,0.507096,0.691153,0.539689,0.467055,0.700400,0.030793,0.032228,0.998993,0.452589,-0.065035,0.889309,0.282998,-0.378002,0.881466,-0.005799,-0.229865,0.973174,0.700064,-0.242958,0.671438,0.483718,-0.556658,0.675344,0.273812,-0.646321,0.712210,0.107059,-0.438734,0.892209,-0.042634,-0.313242,0.948698,0.530595,0.282022,0.799310,0.828211,0.077822,0.554949,0.028474,0.353587,0.934935,0.177648,-0.881527,0.437391,0.392621,-0.802698,0.448866,0.215339,-0.825190,0.522141,0.116764,-0.911740,0.393780,0.646321,-0.605853,0.463851,0.325083,-0.675375,0.661946,0.804498,0.432356,0.407208,0.910550,0.263314,0.318644,0.710715,0.399243,0.579180,0.815882,0.291543,0.499313,0.901120,0.019440,0.433088,0.953764,0.058748,0.294687,0.715201,0.503769,0.484390,0.601428,0.441267,0.665975,0.283914,0.237983,0.928831,0.414716,0.278878,0.866146,0.506577,0.300699,0.808039,0.570574,0.065859,0.818567,0.484115,-0.398053,0.779199,0.840052,-0.329417,0.430952,0.910764,-0.150456,0.384472,0.759697,-0.430219,0.487594,0.511429,-0.694388,0.506180,0.289407,-0.794214,0.534227,0.093326,-0.264657,0.959807,0.145848,-0.492904,0.857753,0.205542,-0.631855,0.747307,0.203864,-0.326487,0.922941,0.162297,-0.710654,0.684530,0.263009,-0.335978,0.904386,0.020020,0.192846,0.981017,0.007782,0.214545,0.976653,0.007904,0.253700,0.967223,0.082583,0.210334,0.974120,-0.000214,0.298257,0.954466,-0.044801,0.300790,0.952605,0.053316,0.290963,0.955229,0.094699,0.304239,0.947844,0.165807,0.236427,0.957366,-0.006592,0.068972,0.997589,-0.038942,0.052278,0.997864,-0.023164,-0.215247,0.976257,-0.021302,-0.206671,0.978149,0.066408,-0.002747,0.997772,0.233955,0.311777,0.920865,0.276040,0.243202,0.929838,0.224891,0.252235,0.941160,0.385113,0.211982,0.898160,0.395154,0.275369,0.876339,0.419630,0.216437,0.881497,0.579974,0.208838,0.787378,0.502396,0.199377,0.841304,0.441084,-0.021363,0.897183,0.507645,0.057039,0.859645,0.347240,-0.059786,0.935850,0.331034,-0.316202,0.889035,0.174261,-0.758476,0.627918,0.743645,0.171422,0.646199,0.605304,0.139714,0.783593,0.766442,0.180151,0.616474,0.661306,0.209357,0.720267,0.677084,0.174200,0.714957,0.606342,0.198248,0.770074,0.767815,0.128056,0.627705,0.783441,0.104587,0.612568,0.709342,0.143406,0.690115,0.641102,0.151189,0.752373,0.821375,0.184912,0.539567,0.868313,0.095431,0.486709,0.843013,0.041200,0.536241,0.870846,0.018433,0.491165,0.892941,0.016694,0.449843,0.856807,0.119510,0.501541,0.892850,0.019166,0.449904,0.891507,0.090945,0.443739,0.853908,0.134495,0.502731,0.871120,-0.099521,0.480850,0.896634,0.022919,0.442122,0.892972,0.040345,0.448256,0.914029,0.018281,0.405164,0.889065,0.046876,0.455336,0.926328,0.059694,0.371929,0.809046,0.001312,0.587725,0.870357,-0.006623,0.492355,0.866970,0.043947,0.496384,0.932035,0.027650,0.361278,0.891751,0.054262,0.449232,0.881405,0.069643,0.467147,0.848140,0.080447,0.523576,0.121403,0.385418,0.914701,0.022034,0.395306,0.918271,0.217200,0.378552,0.899716,0.251228,0.557024,0.791559,0.135533,0.560350,0.817042,0.014069,0.568957,0.822230,0.327860,0.374279,0.867397,0.456862,0.358562,0.814051,0.486312,0.533464,0.692007,0.370190,0.551134,0.747765,0.000946,0.688437,0.725272,0.143834,0.675863,0.722831,0.274087,0.664266,0.695395,0.392193,0.645589,0.655232,0.501877,0.614093,0.609058,0.703299,0.432112,0.564440,0.774041,0.367748,0.515336,0.764092,0.442183,0.469710,0.696585,0.507614,0.506974,0.604846,0.491592,0.626453,0.608936,0.565477,0.556230,0.758232,0.250252,0.601978,0.689047,0.285348,0.666128,0.545457,0.178625,0.818842,0.584704,0.325694,0.742943,0.522263,0.230201,0.821100,0.223304,-0.053285,0.973266,-0.043458,-0.309000,0.950041,0.005280,-0.343455,0.939146,-0.946837,0.051393,0.317545,-0.948393,0.146794,0.280984,-0.976745,0.046907,0.209082,-0.972442,0.002228,0.233039,-0.988220,-0.016114,0.152043,-0.987671,-0.024323,0.154515,-0.990539,-0.043916,0.129826,-0.993164,-0.044740,0.107639,-0.189825,-0.473952,0.859828,-0.043123,-0.443953,0.894986,-0.229469,-0.221931,0.947661,-0.090701,-0.233467,0.968108,0.019898,-0.223334,0.974517,0.079775,-0.392987,0.916044,-0.621143,-0.224677,0.750755,-0.618793,-0.076754,0.781762,-0.613300,-0.139348,0.777429,-0.587359,0.006623,0.809259,-0.572436,0.082522,0.815760,-0.645131,-0.046510,0.762627,-0.679586,-0.100070,0.726707,-0.574786,0.103549,0.811701,-0.574786,0.060915,0.816004,-0.672109,-0.265633,0.691153,-0.586932,-0.431379,0.685080,-0.547258,-0.013581,0.836818,-0.493057,-0.101382,0.864040,-0.482833,-0.505539,0.715018,-0.365154,-0.506241,0.781243,-0.393963,-0.182318,0.900845,-0.651234,-0.405133,0.641652,-0.636494,-0.376629,0.673025,-0.650960,-0.382153,0.655873,-0.633656,-0.291360,0.716636,0.207251,0.083346,0.974700,0.288369,-0.028809,0.957060,0.313303,-0.033082,0.949065,-0.196173,-0.019654,0.980346,-0.100894,-0.304239,0.947203,0.001251,-0.501694,0.865017,0.299692,-0.246895,0.921506,0.419660,-0.096896,0.902463,0.024720,-0.055544,0.998138,0.116337,-0.043367,0.992248,-0.179022,0.128117,0.975433,-0.192572,0.093448,0.976806,0.192114,-0.293008,0.936583,0.119785,-0.175451,0.977142,0.132694,-0.138005,0.981475,0.201666,-0.187567,0.961303,0.144719,-0.072909,0.986755,0.076540,-0.083987,0.993500,-0.002655,0.066164,0.997803,0.122288,0.091983,0.988189,0.064547,0.113926,0.991363,-0.110141,0.175451,0.978301,-0.012757,-0.322062,0.946623,-0.104007,-0.567431,0.816797,-0.260872,-0.448042,0.855068,-0.190313,-0.385418,0.902890,-0.305704,-0.374432,0.875393,-0.458724,-0.096377,0.883297,-0.608600,-0.015625,0.793298,-0.428144,-0.395337,0.812616,-0.373547,-0.423414,0.825312,-0.549120,-0.421003,0.721946,-0.509507,-0.449812,0.733512,-0.747948,-0.067690,0.660237,-0.817530,-0.171972,0.549577,-0.624989,-0.466842,0.625629,-0.596820,-0.461898,0.656056,-0.719871,-0.372082,0.585894,-0.644948,-0.454787,0.614124,-0.645955,-0.421766,0.636250,-0.742454,-0.374462,0.555437,-0.739860,-0.361858,0.567095,-0.678274,-0.408856,0.610523,-0.650685,-0.481491,0.587146,-0.672201,-0.430708,0.602130,-0.802881,-0.279824,0.526353,0.250893,-0.258522,0.932829,0.082461,-0.545671,0.833918,-0.005646,-0.623981,0.781365,0.135166,-0.268899,0.953612,-0.068331,-0.767907,0.636860,-0.123508,-0.764214,0.632984,0.198309,-0.399396,0.895047,0.348399,-0.208350,0.913877,-0.021455,-0.616749,0.786828,0.367412,-0.064547,0.927793,0.421888,-0.101352,0.900937,0.416272,-0.017609,0.909055,0.460158,-0.044923,0.886685,-0.007782,0.047792,0.998810,0.232673,0.023164,0.972259,0.005402,0.068941,0.997589,0.291238,0.034730,0.955992,-0.478591,-0.196905,0.855647,-0.271676,-0.051210,0.960997,-0.574816,-0.063967,0.815729,-0.343089,0.025758,0.938932,-0.691305,-0.299753,0.657399,-0.614887,-0.287515,0.734306,-0.779321,-0.147588,0.608966,-0.705161,-0.118442,0.699057,-0.761254,-0.274758,0.587329,-0.804651,-0.270577,0.528459,-0.824183,-0.316904,0.469314,-0.810999,-0.205237,0.547807,-0.802881,-0.443281,0.398541,-0.816675,-0.328471,0.474441,-0.827174,0.108341,0.551378,-0.829218,0.094485,0.550829,-0.915464,0.020936,0.401837,-0.909726,-0.003845,0.415143,-0.837245,0.039796,0.545335,-0.906796,0.029633,0.420454,-0.953673,-0.028443,0.299448,-0.959441,-0.047121,0.277902,-0.949889,-0.063173,0.306070,-0.759941,0.112491,0.640126,-0.805109,0.109165,0.582965,-0.882748,-0.023804,0.469192,-0.828272,-0.035432,0.559160,-0.919950,-0.076388,0.384503,-0.869076,-0.081088,0.487960,-0.758202,-0.002441,0.651997,-0.687674,0.039949,0.724876,-0.762932,-0.018769,0.646199,-0.815485,-0.057711,0.575854,-0.597491,0.186468,0.779870,-0.686941,0.131596,0.714652,-0.472488,0.016358,0.881161,-0.439741,0.018555,0.897916,-0.388714,0.133732,0.911588,-0.355968,0.091372,0.929991,-0.449812,-0.012299,0.893033,-0.445082,0.131108,0.885830,-0.393292,0.284219,0.874355,-0.297525,0.229438,0.926725,-0.213263,0.136418,0.967406,-0.364849,0.347331,0.863826,-0.230659,0.265938,0.935972,-0.645863,0.112003,0.755150,-0.409986,0.204199,0.888913,-0.145817,0.132786,0.980346,-0.106174,0.153264,0.982452,-0.818232,-0.270913,0.507004,-0.919156,0.121769,0.374554,-0.931120,0.155797,0.329691,-0.907956,-0.078219,0.411634,-0.893857,0.326243,0.307474,-0.887478,0.378857,0.262246,-0.894253,0.390362,0.218848,-0.948210,0.166662,0.270363,-0.940245,-0.000763,0.340465,-0.837764,-0.324137,0.439375,-0.565325,-0.568865,0.597278,-0.939940,-0.131993,0.314676,-0.919736,-0.285348,0.269448,-0.767144,-0.491592,0.412061,-0.177313,-0.731254,0.658620,0.021607,-0.461318,0.886959,0.303385,-0.597980,0.741844,0.212165,-0.784295,0.582934,0.003357,-0.675680,0.737175,-0.258858,-0.823695,0.504471,-0.303140,-0.896817,0.322092,0.079623,-0.858669,0.506302,-0.142430,-0.634114,0.759972,-0.123142,0.472884,0.872433,0.422163,0.209204,0.882015,0.405957,-0.242653,0.881069,-0.049318,0.013489,0.998688,0.716208,-0.168676,0.677145,0.399243,-0.550645,0.733024,0.032746,-0.727500,0.685293,0.663198,-0.547960,0.509751,0.370006,-0.833796,0.409650,-0.344890,-0.722373,0.599292,-0.891537,0.364971,0.268136,-0.902158,0.329814,0.277993,-0.927854,0.270974,0.256172,-0.947050,0.233833,0.219916,-0.899564,0.295755,0.321360,-0.907193,0.262215,0.328898,-0.816034,0.337352,0.469283,-0.847468,0.340037,0.407605,-0.904263,0.195257,0.379620,0.002899,0.123539,0.992309,-0.037965,0.096591,0.994598,-0.339885,0.193213,0.920377,-0.289193,0.180242,0.940123,-0.080386,0.057405,0.995086,-0.387066,0.176885,0.904904,-0.546800,0.285775,0.786950,-0.491317,0.282113,0.824000,-0.445235,0.234962,0.864009,0.054750,-0.915189,0.399243,-0.534471,-0.624592,0.569353,-0.159581,-0.890042,0.426984,-0.611835,-0.518784,0.597034,-0.830714,-0.092746,0.548875,-0.842250,-0.187139,0.505509,-0.627003,-0.474410,0.617847,-0.810327,-0.072604,0.581439,-0.240638,-0.863460,0.443251,-0.242866,-0.910215,0.335398,-0.611225,-0.521561,0.595264,-0.773705,-0.110630,0.623798,0.083895,-0.032380,0.995941,0.142949,0.023194,0.989441,0.183660,0.086764,0.979125,-0.357585,-0.391675,0.847743,-0.168310,-0.521653,0.836360,-0.215278,-0.617084,0.756828,-0.421674,-0.456038,0.783685,-0.254250,-0.729148,0.635334,-0.520280,-0.535905,0.664876,-0.221107,-0.900540,0.374279,-0.256569,-0.826899,0.500351,-0.543413,-0.777276,0.317026,-0.539476,-0.689352,0.483413,-0.425214,0.043062,0.904050,-0.467422,0.133702,0.873836,-0.468337,0.270882,0.840968,-0.447645,0.190924,0.873562,-0.523606,0.212775,0.824946,-0.507431,0.323008,0.798822,-0.511856,0.402997,0.758660,-0.447279,0.369793,0.814356,-0.566637,0.298410,0.767998,-0.484146,0.356120,0.799219,-0.595965,-0.377453,0.708731,-0.703238,-0.160466,0.692587,-0.552232,0.274392,0.787194,-0.549547,0.354656,0.756401,-0.538621,0.289163,0.791345,-0.557146,0.361156,0.747734,-0.563219,0.378491,0.734489,-0.554949,0.396008,0.731559,-0.570116,0.282266,0.771538,-0.582293,0.255348,0.771783,-0.527787,-0.022126,0.849055,-0.495865,-0.301981,0.814173,-0.362041,-0.380840,0.850765,-0.167974,-0.769616,0.615986,-0.373821,-0.858791,0.350230,-0.191992,-0.132908,0.972320,-0.487594,0.088137,0.868587,-0.433271,0.124302,0.892636,-0.121952,-0.031190,0.992035,-0.634175,0.179144,0.752129,-0.598346,0.255379,0.759423,-0.287881,-0.271645,0.918302,-0.544572,-0.080691,0.834803,-0.566851,-0.271828,0.777642,-0.652516,-0.245399,0.716910,-0.656728,-0.021668,0.753777,-0.611225,-0.314707,0.726157,-0.457869,-0.358562,0.813471,-0.471145,-0.493789,0.730857,-0.623066,-0.360149,0.694296,-0.556139,-0.349956,0.753777,-0.697684,0.318705,0.641560,-0.507462,0.473464,0.719901,-0.499100,0.053285,0.864895,-0.656545,-0.042421,0.753075,-0.801508,-0.050935,0.595752,-0.771996,0.120029,0.624165,-0.683828,-0.184027,0.706015,-0.694784,-0.331523,0.638203,-0.602924,-0.354472,0.714682,-0.577746,-0.339854,0.742058,-0.615436,-0.079073,0.784173,-0.619892,0.155614,0.769066,-0.589618,0.304605,0.748009,-0.556719,0.350444,0.753136,-0.528489,0.337779,0.778832,-0.497971,0.271310,0.823634,0.186865,0.192145,0.963378,0.129154,0.378521,0.916532,0.033998,0.185400,0.982055,0.007080,0.298441,0.954375,-0.257912,0.196112,0.946013,-0.278085,0.232154,0.932066,-0.420057,0.196326,0.885983,-0.427808,0.185278,0.884640,-0.011658,0.350627,0.936430,-0.126499,0.231422,0.964568,-0.326884,0.131840,0.935789,-0.428938,0.072756,0.900388,-0.476150,0.142949,0.867641,-0.464064,0.003296,0.885769,-0.514573,0.065279,0.854946,-0.499680,-0.098849,0.860530,-0.471358,0.191534,0.860866,-0.510056,0.167699,0.843623,-0.491287,-0.169256,0.854366,-0.526353,-0.047456,0.848903,-0.531968,0.110721,0.839473,-0.511948,0.020173,0.858760,-0.337107,-0.159795,0.927793,-0.417219,-0.067660,0.906247,-0.242378,-0.349925,0.904843,-0.362926,-0.268288,0.892331,-0.442701,-0.089022,0.892209,-0.467025,0.059816,0.882199,-0.374035,-0.208838,0.903562,-0.421827,-0.086337,0.902524,-0.263771,-0.330363,0.906217,-0.308359,-0.258980,0.915311,-0.096622,-0.456404,0.884487,-0.180975,-0.413770,0.892178,0.102115,-0.659993,0.744285,-0.039033,-0.599994,0.799005,-0.144871,-0.531632,0.834468,-0.306681,-0.463240,0.831446,-0.454787,-0.356670,0.816034,-0.505417,-0.223792,0.833308,-0.443800,-0.884823,0.141728,-0.103763,-0.965758,0.237678,-0.081240,-0.971526,0.222510,-0.380596,-0.912381,0.150517,-0.101444,-0.969115,0.224616,-0.361553,-0.912412,0.191626,-0.160710,-0.948790,0.271859,-0.511063,-0.839900,0.182653,-0.786737,-0.542131,0.295144,-0.733329,-0.461409,0.499283,-0.936369,-0.200903,0.287759,-0.849940,-0.163732,0.500748,-0.744530,-0.666341,-0.040468,-0.804102,-0.589679,0.075076,-0.898862,-0.329234,-0.289193,-0.974090,-0.217750,-0.060671,-0.538347,-0.839839,0.069247,-0.639943,-0.768059,-0.022553,-0.672689,-0.721702,-0.163030,-0.788568,-0.537065,-0.299448,-0.304575,-0.946654,0.104953,-0.558824,-0.629261,0.540117,-0.517441,-0.855647,0.008881,-0.519608,-0.684744,0.510971,-0.559252,-0.504349,0.657888,-0.649281,-0.361980,0.668844,-0.510483,-0.673360,0.534745,-0.553941,-0.468123,0.688437,-0.484787,-0.801263,0.350597,-0.403272,-0.804224,0.436476,-0.444105,-0.663442,0.602100,-0.492965,-0.427808,0.757561,-0.645741,-0.741234,-0.183081,-0.483566,-0.852260,0.199469,-0.375805,-0.877346,0.298288,-0.152196,-0.931913,0.329142,-0.204810,-0.844539,0.494736,-0.247536,-0.679250,0.690878,-0.292550,-0.405011,0.866207,-0.588275,0.198279,0.783959,-0.549303,-0.107852,0.828608,-0.343181,-0.043886,0.938231,-0.358043,0.300974,0.883847,-0.637989,-0.209754,0.740898,-0.723655,0.069552,0.686636,-0.771905,0.308725,0.555712,-0.850490,0.265877,0.453810,-0.607562,0.390515,0.691580,-0.625202,0.475570,0.618793,-0.799158,0.419935,0.430036,-0.860653,0.412275,0.298776,-0.406140,0.538408,0.738304,-0.350230,0.600085,0.719169,-0.710013,0.479751,0.515427,-0.674306,0.538591,0.505142,-0.655171,0.549883,0.517991,-0.310343,0.614643,0.725150,-0.299814,0.593890,0.746574,-0.311655,0.566485,0.762841,-0.642689,0.513779,0.568285,-0.336344,0.493118,0.802271,-0.053682,-0.302591,0.951598,0.017609,-0.129032,0.991455,-0.119083,-0.442061,0.889004,-0.852077,0.310617,0.421277,-0.831080,0.399335,0.387005,-0.897916,0.276284,0.342570,-0.909177,0.180303,0.375286,-0.996918,-0.032258,0.071444,-0.988739,-0.008362,0.149297,-0.997986,-0.038850,0.049745,-0.990997,-0.009369,0.133457,-0.948759,0.005463,0.315928,-0.974670,-0.031373,0.221290,-0.974273,-0.079226,0.210944,-0.954161,0.047395,0.295480,-0.974151,0.026795,0.224250,-0.989471,-0.059664,0.131779,-0.985961,-0.121555,0.114383,-0.996490,-0.070315,0.045259,-0.992248,-0.121311,0.025880,-0.970092,0.013733,0.242286,-0.953551,0.027619,0.299936,-0.704306,0.187262,0.684713,-0.722251,0.095157,0.685018,-0.639515,0.129673,0.757714,-0.669362,-0.019837,0.742637,-0.724723,-0.189215,0.662526,-0.768975,-0.041353,0.637898,-0.682333,-0.318339,0.658040,-0.769036,-0.317789,0.554552,-0.838435,-0.195166,0.508835,-0.869472,-0.169652,0.463851,-0.916135,-0.053774,0.397198,-0.651662,-0.174322,0.738182,-0.625874,-0.010315,0.779809,-0.591906,0.462935,0.659780,-0.452681,0.468154,0.758873,-0.591388,0.569475,0.570879,-0.695029,0.546831,0.466720,-0.317972,0.412549,0.853633,-0.480087,0.547288,0.685507,-0.557756,0.544939,0.625996,-0.647481,0.536790,0.540910,-0.732078,0.507248,0.454634,-0.752739,0.450484,0.479965,-0.829676,0.405072,0.384075,-0.805780,0.463881,0.368084,-0.766961,0.411023,0.492752,-0.842860,0.362987,0.397229,-0.783990,0.379711,0.491043,-0.844142,0.347148,0.408490,-0.813562,0.344127,0.468673,-0.848872,0.355174,0.391430,-0.871883,0.335582,0.356609,-0.885464,0.294778,0.359142,-0.868465,0.340831,0.359935,-0.867000,0.372936,0.330454,-0.851588,0.295236,0.433088,-0.876858,0.299875,0.375683,-0.895413,0.313700,0.315836,-0.877041,0.377483,0.297067,-0.983886,0.005768,0.178594,-0.950896,-0.276193,0.139653,-0.986480,0.141270,0.082858,-0.971923,-0.235206,-0.003204,-0.760033,-0.575823,0.301187,-0.759850,-0.628864,0.164708,-0.734764,-0.625629,0.262032,-0.934324,-0.258705,0.245033,-0.866207,-0.017823,0.499313,-0.998688,-0.012513,0.049043,-0.870266,0.095798,0.483108,-0.495621,0.063448,0.866207,-0.963988,0.259285,0.058779,-0.865139,0.448683,0.223945,-0.849727,0.382183,0.363079,-0.919187,0.271310,0.285379,-0.355144,0.164953,0.920103,-0.576708,0.205847,0.790551,-0.541307,0.342265,0.767968,-0.381481,0.339366,0.859798,-0.712607,0.258492,0.652150,-0.668752,0.349071,0.656423,-0.632771,0.416456,0.652760,-0.524979,0.429060,0.735008,-0.397839,0.452132,0.798303,-0.737541,0.177892,0.651387,-0.509354,0.088198,0.856014,-0.785455,0.259957,0.561632,-0.797693,0.536515,0.275277,-0.798059,0.533799,0.279458,-0.840846,0.440168,0.314951,-0.830592,0.484512,0.274392,-0.816157,0.523820,0.243843,-0.838557,0.479202,0.259133,-0.861110,0.443403,0.248634,-0.868587,0.279031,0.409406,-0.874264,0.271096,0.402661,-0.897427,0.185766,0.400067,-0.909299,0.329539,0.254036,-0.890835,0.369701,0.263924,-0.869747,0.391278,0.300638,-0.899808,0.384777,0.205573,-0.891964,0.384228,0.238197,-0.825770,0.434706,0.359264,-0.821009,0.453261,0.346995,-0.825434,0.453719,0.335734,-0.823237,0.436995,0.362316,-0.878506,0.411603,0.242409,-0.876370,0.440352,0.194983,-0.817499,0.479659,0.318705,-0.835932,0.357555,0.416333,-0.818445,0.270363,0.506943,-0.782891,0.299600,0.545244,-0.743095,0.365795,0.560320,-0.705496,0.419599,0.571093,-0.599170,0.483291,0.638234,-0.676046,0.478591,0.560228,-0.217780,0.316019,0.923399,-0.379498,0.492294,0.783319,-0.158849,0.245491,0.956267,-0.278817,0.434614,0.856349,-0.368450,0.519913,0.770623,-0.469436,0.531907,0.704733,-0.506516,0.487350,0.711264,-0.398602,0.507187,0.764092,-0.180181,0.077822,0.980529,-0.046144,0.092929,0.994598,-0.162175,0.164006,0.973022,-0.129246,0.168432,0.977172,-0.261666,0.330973,0.906613,-0.255531,0.308512,0.916227,-0.320048,0.459609,0.828425,-0.323283,0.433729,0.841029,-0.091617,0.099185,0.990814,-0.229377,0.080752,0.969970,-0.204871,0.153111,0.966704,-0.349467,0.106357,0.930876,-0.395001,0.043550,0.917631,-0.518815,-0.006836,0.854823,-0.502182,0.041169,0.863765,-0.596759,-0.016633,0.802210,-0.621357,0.083163,0.779077,-0.710044,0.002991,0.704123,-0.469100,0.180883,0.864376,-0.497360,0.249184,0.830958,-0.646901,0.109714,0.754601,-0.326914,0.265023,0.907102,-0.372204,0.368419,0.851863,-0.316874,0.486770,0.814020,-0.339640,0.423353,0.839869,-0.271493,0.464278,0.843043,-0.286233,0.420667,0.860836,-0.377728,0.354717,0.855251,-0.445021,0.304209,0.842219,-0.583209,0.154149,0.797540,-0.499435,0.269295,0.823389,-0.356029,0.376415,0.855281,-0.444136,0.367595,0.817072,-0.382550,0.332804,0.861873,-0.441816,0.361095,0.821192,-0.474349,0.362957,0.801996,-0.503891,0.342326,0.793023,-0.226478,0.365581,0.902768,-0.267373,0.369762,0.889798,-0.212073,0.239631,0.947386,-0.296335,0.283883,0.911893,-0.332163,0.512772,0.791620,-0.296396,0.499130,0.814203,-0.225379,0.388195,0.893582,-0.162603,0.224921,0.960692,-0.046327,-0.024842,0.998596,-0.122959,-0.003601,0.992401,-0.231727,0.082553,0.969268,-0.576281,0.313517,0.754692,-0.512650,0.338237,0.789148,-0.570635,0.287606,0.769158,-0.645466,0.278085,0.711325,-0.610157,0.220679,0.760888,-0.679067,0.236488,0.694906,-0.590503,0.119541,0.798120,-0.544877,0.205145,0.813013,-0.497787,0.279122,0.821131,-0.512742,0.255715,0.819544,-0.348277,0.184332,0.919065,-0.422895,0.254952,0.869533,-0.469192,0.280404,0.837367,-0.015717,0.035188,0.999237,-0.067812,0.115421,0.990966,-0.181829,0.172216,0.968108,-0.316111,0.232582,0.919736,-0.476852,0.461318,0.748161,-0.453780,0.496658,0.739860,-0.782983,0.345195,0.517441,-0.751457,0.417341,0.510971,-0.865291,0.316660,0.388531,-0.842647,0.389355,0.371868,-0.886654,0.261879,0.381054,-0.800623,0.307443,0.514206,-0.503830,0.492538,0.709586,-0.483993,0.448714,0.751244,-0.534867,0.510392,0.673330,-0.549760,0.433363,0.714072,-0.314219,-0.585101,0.747581,-0.527177,-0.476150,0.703787,-0.316996,-0.276284,0.907254,-0.204535,-0.381390,0.901486,-0.721641,-0.242531,0.648335,-0.432234,-0.043092,0.900723,-0.517777,0.231330,0.823603,-0.845912,-0.001099,0.533250,-0.374187,-0.625263,0.684805,-0.262185,-0.749382,0.607990,-0.622181,-0.587298,0.517624,-0.429304,-0.757408,0.491928,-0.258705,-0.854427,0.450545,-0.177801,-0.855739,0.485855,-0.878109,-0.143712,0.456343,-0.876614,0.121036,0.465712,-0.946196,0.172491,0.273751,-0.956755,-0.025269,0.289773,-0.790979,0.331523,0.514237,-0.870327,0.368999,0.326090,-0.693838,0.428297,0.578875,-0.777764,0.490707,0.392743,-0.433637,0.293039,0.852077,-0.539048,0.269326,0.798029,-0.639760,0.113895,0.760063,-0.662496,-0.162542,0.731193,-0.543779,-0.444014,0.712119,-0.784051,-0.382855,0.488510,-0.756645,-0.445936,0.478103,-0.898709,-0.220344,0.379131,-0.535264,-0.662923,0.523423,-0.310007,-0.769677,0.558061,-0.216010,-0.635060,0.741600,-0.227210,-0.710410,0.666066,-0.181738,-0.517747,0.835963,-0.143101,-0.347392,0.926725,-0.229225,-0.377850,0.897031,-0.284494,-0.380596,0.879849,-0.054567,0.257729,0.964660,0.044008,0.294961,0.954466,0.026978,0.225471,0.973846,-0.047304,0.242286,0.969024,-0.024476,0.208136,0.977783,-0.107273,0.244148,0.963775,-0.049837,-0.274545,0.960265,0.010498,0.034211,0.999359,-0.110782,-0.047365,0.992706,-0.378948,0.128056,0.916501,-0.223792,0.187139,0.956481,-0.213752,0.221747,0.951353,-0.396130,0.179510,0.900449,-0.255470,0.261971,0.930631,-0.434034,0.244545,0.867061,-0.349559,-0.125187,0.928495,-0.428114,-0.074679,0.900601,-0.307962,-0.370769,0.876156,-0.504318,0.099796,0.857692,-0.586108,0.108188,0.802942,-0.491287,0.018067,0.870785,-0.189703,-0.753807,0.629078,-0.665944,0.126560,0.735160,-0.585955,0.104099,0.803613,-0.757530,0.130650,0.639546,-0.702933,0.162450,0.692434,-0.829524,0.134495,0.541978,-0.796503,0.124393,0.591662,-0.717307,0.143590,0.681783,-0.762444,0.176214,0.622578,-0.641896,0.140538,0.753777,-0.694510,0.190588,0.693747,-0.906186,0.047731,0.420148,-0.880215,0.081668,0.467483,-0.898923,0.109592,0.424146,-0.922544,0.037599,0.384014,-0.853175,0.203040,0.480422,-0.889035,0.091586,0.448561,-0.884365,0.084140,0.459120,-0.814417,0.154515,0.559282,-0.833857,0.122379,0.538194,-0.903989,-0.020386,0.427045,-0.919340,0.042817,0.391095,-0.926359,0.041444,0.374279,-0.933775,0.037873,0.355815,-0.905454,0.016755,0.424085,-0.916044,0.044801,0.398541,-0.857479,-0.086276,0.507187,-0.870754,-0.011994,0.491531,-0.914304,-0.008484,0.404859,-0.907010,0.018708,0.420637,-0.920896,0.051057,0.386425,-0.902097,0.077486,0.424451,-0.860988,0.099612,0.498703,-0.245735,0.590289,0.768853,-0.187170,0.443434,0.876522,-0.079958,0.413678,0.906888,-0.118107,0.580004,0.805963,-0.469283,0.592029,0.655141,-0.453841,0.451430,0.768242,-0.309976,0.464339,0.829615,-0.357433,0.598346,0.717032,-0.140568,0.697104,0.703024,-0.272927,0.693258,0.666982,-0.493393,0.657949,0.568865,-0.387097,0.679647,0.623066,-0.768853,0.482894,0.419050,-0.786218,0.409040,0.463118,-0.711112,0.480148,0.513535,-0.693625,0.554979,0.459151,-0.595965,0.619282,0.511155,-0.599536,0.549028,0.582293,-0.789911,0.284555,0.543168,-0.720237,0.338786,0.605335,-0.608600,0.398785,0.685965,-0.591449,0.211798,0.778008,-0.543992,0.147252,0.826044,-0.248634,-0.112003,0.962096,-0.116794,-0.385937,0.915067,0.700613,-0.090274,0.707755,0.725059,-0.214942,0.654225,0.789575,-0.245491,0.562365,0.778100,-0.117283,0.617084,0.716178,-0.315256,0.622608,0.773370,-0.358379,0.522874,0.800592,-0.420484,0.426893,0.835658,-0.288156,0.467544,0.841365,-0.151158,0.518876,0.495987,-0.008820,0.868252,0.528123,0.011170,0.849055,0.473830,-0.059755,0.878567,0.397351,-0.147343,0.905728,0.458510,-0.094638,0.883602,0.544847,-0.066256,0.835871,0.917447,-0.396802,0.028657,0.882351,-0.470534,0.005799,0.894192,-0.424146,0.143101,0.913511,-0.383648,0.135228,0.872860,-0.486740,-0.033967,0.890622,-0.445326,0.091800,0.882138,-0.339183,0.326670,0.903592,-0.196875,0.380383,0.816126,-0.482315,0.318155,0.821375,-0.537492,0.190832,0.902707,-0.400159,0.157994,0.936827,-0.277566,0.212836,0.916135,-0.399396,0.033631,0.900815,-0.433760,0.018708,0.950285,-0.309915,0.029328,0.972442,-0.183325,0.143864,0.951048,-0.249153,0.182745,0.963164,-0.089541,0.253456,0.942686,-0.120945,0.310953,0.919401,-0.113895,0.376415,0.876003,-0.069094,0.477279,0.809809,-0.026734,0.586047,0.807092,-0.585284,0.077456,0.879360,-0.475936,0.011780,0.797754,-0.601520,0.041292,0.856105,-0.515213,-0.039766,0.859615,-0.508408,0.050081,0.786645,-0.612171,0.079928,0.093356,-0.605213,0.790551,0.238136,-0.432447,0.869625,0.014100,-0.539079,0.842097,0.153294,-0.438185,0.885708,0.229865,-0.336253,0.913266,0.332957,-0.285409,0.898679,0.420454,-0.153417,0.894223,0.322611,-0.231300,0.917814,-0.085574,-0.775964,0.624897,-0.153111,-0.588885,0.793542,0.534806,-0.177923,0.825983,0.646046,-0.189825,0.739280,0.628163,-0.067751,0.775109,0.509873,-0.268410,0.817286,0.629383,-0.290017,0.720908,0.323038,-0.212500,0.922208,0.410810,-0.184515,0.892819,0.307901,-0.217963,0.926084,0.388043,-0.241432,0.889431,0.058107,-0.942717,0.328471,0.227058,-0.921537,0.314890,0.304971,-0.827143,0.471999,0.083041,-0.877987,0.471389,0.424085,-0.854946,0.298593,0.529618,-0.721702,0.445631,0.613147,-0.450026,0.649190,0.394452,-0.546678,0.738578,0.129612,-0.616108,0.776910,0.057314,-0.908811,0.413190,0.217627,-0.898251,0.381787,0.054506,-0.853633,0.517991,0.209937,-0.844295,0.492996,0.355876,-0.820917,0.446547,0.380291,-0.860164,0.339763,0.582751,-0.758202,0.292367,0.678274,-0.612476,0.405927,0.663045,-0.675039,0.323496,0.733879,-0.546220,0.403760,0.758873,-0.355144,0.545854,0.731162,-0.371319,0.572283,0.516923,-0.792810,0.322794,0.472427,-0.783624,0.403363,0.559984,-0.736229,0.379894,0.601550,-0.723197,0.339244,0.754875,-0.520371,0.399182,0.739067,-0.584735,0.334330,0.707968,-0.587664,0.391675,0.685934,-0.638295,0.349315,0.672414,-0.670858,0.312662,0.730888,-0.632618,0.256020,0.705161,-0.367656,0.606250,0.750145,-0.438581,0.494858,0.703665,-0.390149,0.593768,0.721000,-0.498947,0.480789,0.646565,-0.675161,0.355083,0.680990,-0.629017,0.374859,0.623585,-0.697531,0.352886,0.726737,-0.383160,0.570055,0.718223,-0.530259,0.450484,0.526933,-0.274697,0.804254,0.623554,-0.317911,0.714194,0.589465,-0.221473,0.776788,0.648946,-0.293405,0.701956,0.397076,-0.155309,0.904538,0.447859,-0.220191,0.866543,0.513291,-0.086245,0.853847,0.546770,-0.159398,0.821955,0.557054,-0.075625,0.826991,0.587970,-0.122990,0.799432,0.532975,-0.072085,0.843013,0.587298,-0.064821,0.806757,0.653279,-0.080569,0.752800,0.633595,-0.160527,0.756798,0.015320,-0.208411,0.977905,0.076540,-0.345805,0.935148,0.227454,-0.024293,0.973479,0.217902,-0.187506,0.957762,0.166509,-0.323557,0.931425,0.242805,-0.264138,0.933409,0.205573,-0.204810,0.956938,0.252235,-0.206946,0.945250,0.125645,-0.368816,0.920957,0.202795,-0.215033,0.955290,0.374157,-0.092318,0.922727,0.365001,-0.010254,0.930937,0.504318,0.077334,0.860012,0.500107,-0.014863,0.865810,0.389508,0.045351,0.919889,0.410474,0.029389,0.911374,0.586077,0.220344,0.779687,0.541581,0.177068,0.821741,0.405042,0.068270,0.911740,0.576769,0.249763,0.777734,0.632862,0.338420,0.696341,0.655507,0.222877,0.721519,0.610157,0.316782,0.726157,0.638569,0.112278,0.761284,0.613697,0.125828,0.779443,0.562914,0.044527,0.825282,0.599231,-0.003998,0.800531,0.540056,-0.045900,0.840358,0.545671,-0.016846,0.837794,0.511917,-0.065127,0.856533,0.445509,-0.158910,0.881039,0.428602,-0.102878,0.897580,0.326853,-0.224860,0.917905,0.351787,-0.051668,0.934629,0.418500,0.133824,0.898282,0.467269,-0.011994,0.883999,0.548967,0.051729,0.834223,0.639119,0.018250,0.768853,0.501114,0.196722,0.842677,0.578509,0.090121,0.810633,0.689352,-0.242622,0.682546,0.720389,-0.176946,0.670583,0.709128,-0.132023,0.692587,0.624195,-0.146489,0.767388,0.419294,-0.199194,0.885708,0.408338,0.087558,0.908597,0.154485,0.042695,0.987060,0.155675,-0.250038,0.955626,0.381237,0.275094,0.882565,0.330790,0.301584,0.894192,0.119724,0.385968,0.914701,0.141820,0.263558,0.954131,0.178625,-0.189093,0.965545,0.257515,0.111301,0.959807,0.043672,-0.098849,0.994140,0.085604,0.264199,0.960631,0.409925,-0.233467,0.881710,0.351787,-0.304117,0.885281,0.503464,-0.165197,0.848048,0.563555,-0.048860,0.824610,0.559679,0.250313,0.789972,0.457045,0.116550,0.881741,0.215583,-0.097903,0.971557,0.031159,-0.215766,0.975921,0.026399,-0.480758,0.876431,0.145848,-0.407208,0.901578,0.127445,-0.369823,0.920286,0.020478,-0.362316,0.931822,0.975555,-0.181188,-0.124149,0.974303,-0.197577,-0.107974,0.975127,-0.209662,-0.071474,0.979583,-0.185858,-0.076205,0.959655,-0.278970,0.034700,0.958495,-0.285012,-0.002503,0.972625,-0.061647,0.223975,0.983306,-0.131687,0.125492,0.973846,-0.226142,0.021271,0.982360,-0.186834,0.003113,0.982055,-0.187078,-0.022889,0.577197,0.010865,0.816523,0.641591,0.000916,0.767022,0.730979,-0.007416,0.682333,0.453200,-0.832667,0.318155,0.510147,-0.777551,0.367534,0.390271,-0.832179,0.393841,0.306894,-0.893307,0.328288,0.255501,-0.859340,0.442946,0.022065,-0.920591,0.389843,0.168554,-0.848537,0.501541,0.034730,-0.866115,0.498581,0.016480,-0.971648,0.235755,0.022248,-0.968596,0.247505,0.295877,-0.924070,0.241951,0.306009,-0.923551,0.231025,0.523820,-0.822535,0.221351,0.564562,-0.793268,0.227973,0.677053,-0.717948,0.161504,0.706320,-0.691336,0.152043,0.720267,-0.670705,0.177007,0.652821,-0.708975,0.266732,0.589465,-0.737358,0.329875,0.494949,-0.824244,0.274972,0.295602,-0.917844,0.264809,0.016175,-0.957732,0.287088,-0.708457,-0.544694,0.448683,-0.697623,-0.457839,0.551073,-0.716819,-0.356609,0.599109,-0.763421,-0.412152,0.497269,-0.633717,-0.353984,0.687765,-0.633869,-0.304849,0.710807,-0.657399,-0.185583,0.730308,-0.745628,-0.217383,0.629841,-0.804376,-0.249641,0.539079,-0.250313,-0.249123,0.935545,-0.383435,-0.139256,0.912992,-0.440016,-0.092349,0.893216,-0.353923,-0.189825,0.915769,-0.520493,-0.070132,0.850948,-0.478530,-0.158269,0.863674,-0.881466,-0.466628,0.072481,-0.888668,-0.447829,0.098392,-0.855770,-0.515000,-0.048891,-0.873074,-0.486160,-0.036866,-0.901914,-0.431104,-0.026215,-0.908872,-0.413495,0.054292,-0.741539,-0.630329,0.229743,-0.718558,-0.596271,0.357891,-0.802972,-0.467757,0.369304,-0.830500,-0.521592,0.195379,-0.862117,-0.290353,0.415235,-0.911313,-0.345897,0.223273,-0.974151,-0.194037,0.115635,-0.944426,-0.327891,0.022706,-0.912748,-0.408460,-0.004059,-0.953887,-0.263741,0.143101,-0.876217,-0.481857,-0.004425,-0.948088,-0.137608,0.286660,-0.907041,-0.156041,0.391003,-0.971618,-0.105808,0.211432,-0.808557,-0.098972,0.580004,-0.859615,-0.130222,0.494003,-0.831538,-0.555437,-0.001160,-0.826624,-0.561388,0.038209,-0.769860,-0.629719,0.103519,-0.757317,-0.640584,0.126774,-0.768975,-0.625416,0.132237,-0.848323,-0.524888,0.069216,-0.164373,-0.404492,0.899625,-0.083346,-0.484542,0.870754,-0.180334,-0.453200,0.872951,-0.274606,-0.332133,0.902341,0.105350,-0.528916,0.842097,0.026276,-0.606037,0.794977,-0.199194,-0.324015,0.924833,-0.342296,-0.223853,0.912503,0.247230,-0.728813,0.638478,0.281930,-0.434584,0.855342,-0.540025,-0.276559,0.794885,-0.527818,-0.260781,0.808313,-0.452589,-0.218909,0.864406,-0.418043,-0.226142,0.879788,-0.564653,-0.159124,0.809809,-0.368023,-0.143559,0.918638,-0.289315,-0.198920,0.936308,-0.347179,-0.073824,0.934874,-0.215094,-0.199377,0.955992,-0.349864,-0.637226,0.686666,-0.275765,-0.852321,0.444349,-0.107761,-0.880367,0.461806,-0.126225,-0.648915,0.750298,-0.226569,-0.919156,0.322092,-0.093356,-0.939695,0.328929,-0.244118,-0.827845,0.505020,-0.109684,-0.845485,0.522568,-0.102145,-0.904050,0.415021,-0.234901,-0.884548,0.402936,-0.592578,-0.555559,0.583239,-0.498245,-0.772210,0.394208,-0.388867,-0.818384,0.423078,-0.491226,-0.602649,0.628864,-0.422590,-0.853053,0.306070,-0.322153,-0.893521,0.312754,-0.431532,-0.769951,0.470016,-0.342601,-0.802515,0.488388,-0.338145,-0.852718,0.398114,-0.428022,-0.808100,0.404645,-0.590503,-0.716849,0.370617,-0.581103,-0.709067,0.399396,-0.641591,-0.667898,0.377117,-0.661672,-0.687033,0.300150,-0.601245,-0.716575,0.353496,-0.653401,-0.642994,0.399426,-0.666890,-0.623920,0.407331,-0.686911,-0.545396,0.480270,-0.708487,-0.431318,0.558550,-0.676473,-0.384075,0.628346,-0.517014,-0.740226,0.429762,-0.511490,-0.755272,0.409742,-0.526078,-0.788171,0.319315,-0.606800,-0.700980,0.374645,-0.678487,-0.492141,0.545335,-0.683126,-0.237770,0.690481,-0.624043,-0.244392,0.742149,-0.601611,-0.094729,0.793115,-0.547838,-0.157659,0.821558,-0.522233,-0.049898,0.851314,-0.474868,-0.105350,0.873714,-0.479110,-0.059969,0.875668,-0.458022,-0.061708,0.886776,-0.577807,-0.032899,0.815485,-0.484878,0.106937,0.867977,-0.522477,0.026582,0.852229,-0.606800,-0.057161,0.792779,-0.383984,0.098849,0.917997,-0.448500,-0.002106,0.893765,0.007965,0.163823,0.986450,-0.316538,0.325816,0.890835,-0.043977,-0.162511,0.985717,-0.326762,0.093051,0.940489,-0.363506,-0.030213,0.931089,-0.195471,-0.225990,0.954283,-0.384686,-0.029756,0.922544,-0.185827,-0.273446,0.943754,-0.144475,-0.289712,0.946135,-0.380230,-0.015259,0.924741,-0.537950,-0.025269,0.842586,-0.521165,0.053682,0.851741,-0.475906,0.002411,0.879452,-0.482803,-0.058779,0.873714,-0.589129,0.211493,0.779839,-0.500595,0.212165,0.839259,-0.538743,0.116550,0.834346,-0.584094,0.069918,0.808649,-0.460921,0.338725,0.820215,-0.548662,0.371044,0.749138,-0.600208,0.352519,0.717948,-0.580096,0.278207,0.765526,-0.619312,0.119022,0.776025,-0.579516,-0.029908,0.814386,-0.571947,-0.066622,0.817560,-0.498215,-0.244087,0.831965,-0.486038,-0.143834,0.861995,-0.394269,-0.256844,0.882351,-0.428846,-0.091464,0.898709,-0.342143,-0.075076,0.936613,-0.294107,0.337565,0.894162,-0.208930,0.127110,0.969604,-0.275063,-0.008240,0.961364,-0.339885,0.224342,0.913297,-0.110172,-0.257637,0.959929,-0.270486,-0.313974,0.910062,-0.445509,0.191351,0.874569,-0.358104,0.252449,0.898892,-0.523331,-0.009491,0.852046,-0.391797,0.005188,0.920011,-0.623615,-0.280038,0.729820,-0.674215,-0.256752,0.692434,-0.542314,-0.301248,0.784265,-0.391095,-0.316111,0.864345,-0.123417,0.017243,0.992187,-0.125645,-0.299387,0.945799,-0.131138,0.393353,0.909970,-0.133213,0.260811,0.956145,-0.092593,0.263070,0.960295,-0.020997,-0.126957,0.991668,-0.316691,-0.385632,0.866573,-0.062563,-0.430616,0.900327,-0.121494,-0.370922,0.920652,-0.406995,-0.208808,0.889218,-0.472365,0.182775,0.862209,-0.244575,0.021424,0.969359,-0.043703,-0.146428,0.988250,0.037568,-0.458968,0.887631,0.044588,-0.389111,0.920103,-0.958556,-0.269021,-0.093570,-0.967650,-0.222785,-0.118259,-0.945616,-0.261635,-0.193121,-0.939177,-0.307230,-0.153325,-0.935667,-0.349071,-0.051149,-0.930296,-0.362407,-0.056490,-0.976287,-0.090640,0.196509,-0.980956,-0.149998,0.123173,-0.980773,-0.194006,0.020356,-0.968078,-0.247810,0.036958,-0.984436,-0.174566,-0.018891,-0.571581,-0.066164,0.817835,-0.644948,-0.075564,0.760460,-0.745384,-0.085269,0.661122,-0.290536,-0.839869,0.458419,-0.182714,-0.858272,0.479537,-0.405438,-0.808374,0.426740,-0.367840,-0.856594,0.361797,-0.239387,-0.898068,0.368969,-0.097751,-0.849178,0.518937,-0.249306,-0.930815,0.267159,-0.480880,-0.836543,0.262490,-0.258248,-0.934263,0.245766,-0.501633,-0.826533,0.255287,-0.649922,-0.729423,0.213324,-0.666646,-0.718863,0.196875,-0.581072,-0.757042,0.298624,-0.671865,-0.707358,0.219459,-0.418683,-0.856624,0.301401,-0.499832,-0.784082,0.367901,-0.243171,-0.929319,0.277840,-0.436628,-0.818262,0.373821,-0.455336,-0.854701,0.249184,-0.161931,-0.965209,0.205267,-0.155187,-0.913724,0.375469,-0.413007,-0.876522,0.247169,-0.135960,-0.983215,0.121464,0.216376,-0.975799,0.031159,0.191687,-0.964690,0.180517,0.162114,-0.910154,0.381207,0.558367,-0.829554,-0.000824,0.535051,-0.828761,0.163762,0.816706,-0.576922,0.009674,0.806635,-0.574755,0.137547,0.738701,-0.574999,0.351604,0.472060,-0.796594,0.377606,0.957152,-0.287637,0.032655,0.957366,-0.271859,0.097598,0.999664,0.003937,0.025361,0.998505,0.009491,0.053407,0.968688,-0.002716,0.248177,0.909726,-0.287484,0.299509,0.963591,0.262642,-0.049593,0.964660,0.263405,0.000855,0.819422,0.510758,-0.260048,0.864345,0.494980,-0.088839,0.854823,0.493759,0.159520,0.942351,0.261849,0.208228,0.701651,0.677023,-0.221931,0.724021,0.684255,0.086825,0.603748,0.652791,-0.457533,0.416456,0.692587,-0.588916,0.503983,0.787500,-0.354656,0.550188,0.835017,0.000977,0.278451,0.847530,-0.451796,0.336436,0.938871,-0.072909,0.219916,0.710105,-0.668844,-0.029206,0.699393,-0.714133,0.010956,0.863186,-0.504715,0.077761,0.990509,-0.113041,-0.549547,0.534074,-0.642415,-0.529984,0.720328,-0.447401,-0.281442,0.818171,-0.501328,-0.309763,0.636952,-0.705893,-0.463851,0.884365,-0.052034,-0.210211,0.972106,-0.103763,-0.814508,0.328043,-0.478469,-0.836207,0.470840,-0.281137,-0.711539,0.598163,-0.368572,-0.713858,0.423658,-0.557543,-0.813166,0.574328,0.094180,-0.665334,0.746239,0.020508,-0.874203,0.254280,-0.413587,-0.912931,0.356517,-0.198553,-0.910977,0.200262,-0.360485,-0.957915,0.258705,-0.124119,-0.942381,0.265389,0.203528,-0.900327,0.406903,0.154302,-0.914304,-0.194830,0.355022,-0.960692,-0.179174,0.211982,-0.899045,-0.334391,0.282571,-0.860469,-0.338420,0.380810,-0.966613,-0.178961,0.183355,-0.887814,-0.346294,0.302988,-0.754692,-0.538102,0.375286,-0.796442,-0.514573,0.317545,-0.771813,-0.500961,0.391552,-0.955382,0.028871,0.293893,-0.997406,0.054476,0.046724,-0.988861,-0.060488,0.135868,-0.941465,-0.079287,0.327616,-0.966735,0.076022,-0.244118,-0.996857,-0.055696,0.055940,-0.941130,0.153905,-0.300851,-0.985321,0.164220,-0.046388,-0.957549,0.142674,0.250435,-0.641560,-0.664663,0.382794,-0.659108,-0.690420,0.298105,-0.604450,-0.715567,0.350108,0.852016,-0.025910,0.522843,0.770959,-0.299722,0.561907,0.649709,-0.048555,0.758599,0.561998,-0.292184,0.773797,0.424146,-0.477157,0.769646,0.598743,-0.542039,0.589618,0.433821,-0.066195,0.898556,0.343730,-0.275307,0.897763,0.240913,-0.083926,0.966887,0.159246,-0.239814,0.957640,0.032441,-0.324412,0.945341,0.246590,-0.401959,0.881802,0.184576,0.147526,0.971648,0.247688,0.068056,0.966430,0.445967,0.144261,0.883328,0.434919,0.275338,0.857326,0.649068,0.194067,0.735527,0.604907,0.377087,0.701315,0.764428,0.457503,0.454176,0.837794,0.238838,0.490921,0.516312,0.779015,0.355632,0.659566,0.634175,0.403424,0.442824,0.665426,0.600909,0.546037,0.530747,0.648152,0.382153,0.555773,0.738273,0.438704,0.404920,0.802179,0.326243,0.473769,0.817957,0.316904,0.330668,0.888913,0.232429,0.522935,0.820032,0.172308,0.384808,0.906735,0.145085,0.564318,0.812677,0.066286,0.503891,0.861202,0.003693,0.452162,0.891903,0.108402,0.300027,0.947722,0.152379,0.780602,0.606128,0.150548,0.655812,0.739738,0.273324,0.640553,0.717612,0.305673,0.749657,0.586963,0.340587,0.881100,0.328043,0.132969,0.935270,0.327982,-0.316263,0.854915,0.411115,-0.100742,0.927732,0.359325,-0.166662,0.699484,0.694906,-0.014374,0.761345,0.648152,0.024201,0.621509,0.783013,-0.071963,0.564623,0.822169,-0.463179,0.459273,0.757958,-0.293497,0.365825,0.883175,-0.173345,0.486038,0.856563,-0.313334,0.601337,0.734947,-0.159612,0.280526,0.946471,-0.070223,0.383526,0.920835,-0.665273,0.553819,0.500626,-0.505020,0.727348,0.464583,0.372753,-0.718894,0.586688,0.270882,-0.617450,0.738456,0.084597,-0.712363,0.696646,0.121464,-0.814112,0.567827,-0.140172,-0.825251,0.547075,-0.127659,-0.737297,0.663350,-0.339915,-0.685080,0.644276,-0.387799,-0.753746,0.530534,-0.580004,-0.624897,0.522568,-0.508042,-0.577349,0.639149,-0.608722,-0.457869,0.647908,-0.701834,-0.483627,0.522965,-0.661000,-0.064272,0.747612,-0.661733,0.000855,0.749718,-0.843593,0.083010,0.530473,-0.842341,-0.014466,0.538682,-0.646962,0.126225,0.751976,-0.827479,0.211798,0.519974,-0.196814,-0.114414,0.973724,-0.267800,-0.086428,0.959563,-0.462813,-0.075289,0.883236,-0.453322,-0.102054,0.885464,-0.277413,0.007324,0.960692,-0.457411,0.046724,0.887997,-0.064516,0.026826,0.997528,-0.093142,-0.027589,0.995239,-0.010651,-0.022645,0.999664,-0.233345,0.143468,0.961730,-0.398389,0.209998,0.892819,-0.582232,0.291238,0.759026,-0.773003,0.371929,0.513932,-0.080050,0.095096,0.992218,-0.003479,0.176336,0.984313,0.070833,-0.023164,0.997192,0.035310,-0.101260,0.994201,-0.072115,-0.199408,0.977233,0.025605,-0.180548,0.983215,-0.299234,-0.138798,0.943999,-0.162145,-0.202582,0.965728,-0.349071,-0.206091,0.914121,-0.161168,-0.251167,0.954405,-0.686758,-0.210303,0.695761,-0.519639,-0.201605,0.830256,-0.479537,-0.116611,0.869716,-0.674276,-0.117771,0.728996,-0.838679,-0.102206,0.534928,-0.824519,-0.208319,0.526048,-0.325144,-0.397534,0.858028,-0.354137,-0.303415,0.884579,-0.522080,-0.316080,0.792138,-0.484909,-0.424574,0.764550,-0.666799,-0.333628,0.666372,-0.780755,-0.341350,0.523331,-0.285257,-0.608539,0.740471,-0.416425,-0.519242,0.746300,-0.228431,-0.533769,0.814173,-0.280038,-0.461654,0.841670,-0.195349,-0.299020,0.934019,-0.139500,-0.359325,0.922697,0.047395,-0.609210,0.791559,-0.116123,-0.647359,0.753258,0.002991,-0.524094,0.851650,-0.110599,-0.533036,0.838801,-0.115177,-0.423475,0.898526,0.043641,-0.430464,0.901517,0.172491,-0.506149,0.844997,0.025300,0.277108,0.960479,0.746422,0.070681,0.661672,0.255562,0.010071,0.966735,0.433607,0.854213,0.286782,0.500748,0.861446,0.084231,0.021729,-0.069277,0.997345,0.409803,0.627338,0.662191,0.447096,0.880245,0.158879,0.353526,0.921506,-0.160619,0.436811,0.864681,-0.247932,0.325571,0.895779,0.302530,0.890103,0.363231,0.275185,0.888089,0.223914,0.401379,0.793756,-0.558641,-0.240425,0.721061,-0.632038,-0.283822,-0.410718,0.686636,-0.599811,-0.191260,0.675069,-0.712485,-0.573168,0.720420,-0.390423,-0.560930,0.799982,-0.212989,-0.367809,0.874935,-0.314859,-0.102542,0.903256,-0.416578,0.210059,0.860897,-0.463363,0.096713,0.688253,-0.718955,0.461989,0.767510,-0.444349,0.381451,0.679647,-0.626514,0.519761,0.766350,-0.377483,0.453475,0.764519,-0.458083,0.362590,0.917173,-0.165227,0.448866,0.815394,-0.365490,0.488083,0.822260,-0.292642,0.266732,0.931242,-0.248146,0.239296,0.910337,-0.337657,-0.037446,0.979736,-0.196631,-0.060030,0.928251,-0.366985,-0.309153,0.934538,-0.176183,-0.521134,0.829676,-0.200018,-0.549455,0.695853,-0.462416,-0.343547,0.832850,-0.433912,-0.877529,-0.148686,-0.455824,-0.756615,-0.366375,-0.541520,-0.723319,-0.360363,-0.588977,-0.835963,-0.178899,-0.518754,-0.472091,-0.657430,-0.587268,-0.391522,-0.715201,-0.578936,-0.371685,-0.754051,-0.541490,-0.683554,-0.358623,-0.635701,-0.764489,-0.219428,-0.606098,-0.971587,0.148167,-0.184423,-0.968108,0.167089,-0.186590,-0.960723,-0.032380,-0.275521,-0.977752,-0.020203,-0.208686,-0.951994,0.221107,-0.211615,-0.935911,-0.027772,-0.351085,-0.910337,-0.136052,-0.390851,-0.946501,-0.136296,-0.292428,-0.886532,0.436506,-0.153233,-0.907743,0.391552,-0.150426,-0.932401,0.313486,-0.179693,-0.905942,0.371990,-0.202094,-0.936430,0.275765,-0.216834,-0.910245,0.323130,-0.258889,-0.849330,0.515061,-0.115207,-0.881649,0.450392,-0.140721,-0.889401,0.408856,-0.204321,-0.860195,0.469527,-0.198950,-0.894528,0.338969,-0.291299,-0.873775,0.367748,-0.318155,-0.628895,0.750603,-0.202551,-0.626881,0.776086,-0.068117,-0.708914,0.690481,-0.143620,-0.644154,0.745506,-0.171026,-0.781640,0.613056,-0.114719,-0.809534,0.551530,-0.201025,-0.738609,0.636525,-0.221961,-0.843043,0.410565,-0.347362,-0.785028,0.482620,-0.388256,-0.645436,0.727958,-0.231178,-0.686819,0.580767,-0.436964,-0.558061,0.825739,0.081851,-0.528977,0.821711,0.211982,-0.587634,0.774163,0.235176,-0.703085,0.691458,0.165868,-0.726249,0.673025,0.139836,-0.942991,0.321268,-0.086764,-0.876186,-0.255959,-0.408338,-0.660298,-0.570452,-0.488418,0.185766,-0.709708,-0.679495,-0.032991,-0.793664,-0.607410,0.355266,-0.480544,-0.801752,0.208289,-0.312174,-0.926878,0.104984,-0.514847,-0.850795,-0.075381,-0.736656,-0.672018,0.587054,-0.013398,0.809412,0.875790,-0.480575,0.044679,0.056490,-0.187994,0.980529,0.609272,-0.394971,0.687551,-0.178655,-0.333384,0.925687,-0.131748,-0.168401,0.976867,-0.178259,-0.216865,0.959777,-0.107761,-0.045717,0.993103,0.009186,0.017426,0.999786,0.162145,-0.149419,0.975372,0.522019,-0.330241,-0.786370,0.879330,-0.404401,-0.251350,0.623432,-0.329844,-0.708853,0.234443,-0.247139,-0.940153,0.144871,0.034303,0.988830,0.588855,-0.231727,0.774285,0.334635,0.126774,0.933775,0.869106,-0.104617,0.483413,0.720573,-0.205451,0.662191,0.195288,-0.241615,0.950499,0.059603,-0.527146,0.847652,0.574084,-0.527848,0.625874,0.920927,0.161016,-0.354900,0.992615,-0.021577,0.119114,0.955504,-0.271615,0.114780,0.913633,0.105472,-0.392590,0.973479,0.224128,0.045686,0.873653,0.357677,-0.329753,0.185919,0.052339,0.981140,0.158879,0.137028,0.977722,0.687368,0.121799,0.715995,0.566057,0.377514,0.732841,0.660695,0.456099,0.596149,0.479598,0.298746,0.825037,0.286325,0.199408,0.937132,0.567583,0.468642,0.676901,0.046876,-0.768639,-0.637959,0.192694,-0.441420,-0.876339,0.011048,-0.488571,-0.872433,-0.079501,-0.782037,-0.618091,0.181097,-0.304239,-0.935179,0.016053,-0.343791,-0.938871,-0.112735,-0.340129,-0.933592,-0.149602,-0.489486,-0.859066,-0.183599,-0.788049,-0.587573,-0.289010,-0.449171,-0.845363,-0.238166,-0.786737,-0.569445,-0.274117,-0.323527,-0.905637,-0.482192,-0.300119,-0.823023,-0.452498,-0.401929,-0.796014,-0.293527,-0.776177,-0.557970,-0.591571,-0.372326,-0.715079,-0.648762,-0.264687,-0.713431,-0.346019,-0.766259,-0.541368,-0.855434,-0.181799,-0.484909,-0.889615,-0.212714,-0.404065,-0.777673,-0.240394,-0.580859,-0.803278,-0.285806,-0.522507,-0.661336,-0.299234,-0.687796,-0.682241,-0.349437,-0.642170,-0.489212,-0.342082,-0.802271,-0.502548,-0.408032,-0.762169,-0.265908,-0.357524,-0.895230,-0.069460,-0.365795,-0.928068,0.032380,-0.502091,-0.864193,-0.251228,-0.452956,-0.855373,0.087405,-0.396893,-0.913663,0.229194,-0.388531,-0.892453,0.491836,-0.634144,-0.596576,0.275277,-0.573168,-0.771783,0.251350,-0.323771,-0.912107,0.237770,-0.269021,-0.933287,0.331034,-0.456496,-0.825831,0.040651,-0.752342,-0.657491,0.216224,-0.428053,-0.877468,-0.982482,-0.012909,-0.185736,-0.945463,0.131535,-0.297952,-0.976104,-0.161870,-0.144902,-0.982543,-0.185919,0.002869,-0.988128,-0.036988,-0.149022,-0.894986,0.137211,-0.424390,-0.838649,0.202582,-0.505539,-0.792596,0.248848,-0.556627,-0.858821,0.187170,-0.476821,-0.832148,0.093265,-0.546617,-0.819697,0.097476,-0.564409,-0.780236,0.132023,-0.611347,-0.702536,0.329173,-0.630909,-0.562090,0.445448,-0.696829,-0.694815,0.203375,-0.689779,-0.550035,0.309519,-0.775628,-0.364574,0.603900,-0.708762,-0.091037,0.762047,-0.641041,-0.346507,0.453505,-0.821100,-0.083590,0.605518,-0.791406,0.348247,0.690329,-0.634144,0.390698,0.770501,-0.503616,0.190649,0.816126,-0.545488,0.169225,0.687460,-0.706198,-0.897824,0.202765,-0.390881,-0.878811,0.200415,-0.432997,-0.871670,0.159520,-0.463363,-0.885556,0.098117,-0.454024,-0.870205,0.187078,-0.455702,-0.830439,0.102664,-0.547533,0.961943,0.222907,-0.157842,0.936521,0.241493,-0.254097,0.912809,0.299173,-0.277932,0.939116,0.282266,-0.195746,0.907071,0.248268,-0.339885,0.880520,0.296579,-0.369701,0.831233,0.431379,-0.350566,0.859584,0.407025,-0.308847,0.238807,-0.853175,-0.463668,0.164312,-0.690054,-0.704825,0.440107,-0.673666,-0.593646,0.515427,-0.723045,-0.459914,0.627491,-0.649342,-0.429609,0.700003,-0.615528,-0.362041,-0.482742,-0.836818,-0.258126,-0.516923,-0.597980,-0.612476,-0.205359,-0.676595,-0.707114,-0.140507,-0.914182,-0.380108,-0.724174,-0.496933,-0.478103,-0.853206,-0.399670,-0.335063,-0.718497,-0.683187,-0.130314,-0.857112,-0.514359,-0.027223,-0.933805,-0.289193,-0.210608,-0.939695,-0.341288,0.021943,-0.997772,-0.053591,-0.039064,-0.899747,0.107944,-0.422803,-0.973907,-0.184790,0.131596,-0.840205,0.146764,-0.521989,-0.797143,0.198614,-0.570147,-0.857418,0.123692,-0.499496,-0.709403,0.279336,-0.647053,-0.552873,0.383923,-0.739525,-0.324625,0.499100,-0.803400,-0.054994,0.594501,-0.802179,0.353496,0.646382,-0.676138,0.183447,0.639332,-0.746696,-0.846919,0.138615,-0.513321,-0.888028,0.088107,-0.451247,-0.864376,0.116520,-0.489120,0.981079,0.187017,-0.049806,0.959349,0.267373,-0.089999,0.870144,0.426954,-0.246040,0.243782,-0.952116,-0.184423,0.556108,-0.795709,-0.239875,0.783471,-0.595508,-0.177526,-0.406690,-0.904935,0.125034,-0.110446,-0.993103,-0.038789,-0.621570,-0.743339,0.247078,-0.779199,-0.555986,0.289315,-0.904294,-0.355083,0.236915,0.994995,-0.005402,-0.099490,0.976623,0.044343,-0.210181,0.956603,0.170660,-0.236061,0.977355,0.158422,-0.140110,0.951872,0.123325,-0.280496,0.926023,0.206885,-0.315653,0.985748,0.158574,-0.055605,0.999756,-0.018097,0.012452,0.858089,0.239265,0.454329,0.888699,0.127781,0.440291,0.974914,-0.184240,0.124821,0.907346,-0.308664,-0.285257,0.587359,-0.519333,-0.620685,0.774438,-0.564684,-0.285134,0.981933,-0.132481,0.135014,0.873745,-0.485549,-0.027955,0.964843,-0.239296,-0.108646,0.814692,-0.557512,-0.159429,0.969085,-0.162267,-0.185675,0.966033,-0.081332,-0.245155,0.979522,-0.191290,-0.062563,0.945463,-0.308481,-0.104556,0.913450,-0.362011,-0.185797,0.801996,-0.533891,-0.267739,0.855159,-0.472274,-0.213599,0.977386,-0.210181,0.022980,0.980407,-0.190558,0.049501,0.927824,-0.368328,-0.058473,0.952574,0.290506,0.090304,0.865017,0.491836,0.098972,0.852321,0.336863,-0.400037,0.862697,0.371776,-0.342784,0.913572,0.389172,-0.117893,0.849849,0.475356,0.227454,0.804956,0.563646,0.185186,0.879330,0.431928,-0.200446,0.951231,0.220008,0.216163,0.986450,0.109195,-0.122227,0.887570,0.267769,-0.374828,0.917417,0.252022,-0.307871,0.860958,0.267037,-0.432905,0.819178,0.297494,-0.490280,0.959380,0.078372,-0.270943,0.271157,0.954924,0.120518,0.527726,0.748985,-0.400616,0.545518,0.780206,-0.306070,0.539689,0.735618,-0.409314,0.518326,0.806330,-0.284829,0.651173,0.671773,-0.353038,0.611347,0.776330,-0.153294,0.658284,0.605274,-0.447462,0.535569,0.681906,-0.498123,0.548936,0.627216,-0.552446,0.688772,0.560472,-0.459792,0.489547,0.711203,-0.504471,0.456893,0.660085,-0.596210,0.727073,0.546190,-0.415937,0.632038,0.599628,-0.490860,0.492111,0.637928,-0.592303,-0.057741,0.995697,-0.072359,-0.013611,0.996124,-0.086795,0.005768,0.994476,0.104709,-0.027497,0.992645,0.117740,-0.018555,0.994659,-0.101444,0.007233,0.995483,0.094638,0.010498,0.973510,0.228248,0.004303,0.974059,0.226142,-0.008271,0.973846,0.226936,-0.046846,0.992096,-0.116245,0.001892,0.996765,0.080172,-0.088107,0.986999,-0.134312,-0.001221,0.998260,0.058718,0.072848,0.971587,0.225105,0.033448,0.972991,0.228278,-0.208075,0.964843,-0.160436,-0.103122,0.994263,0.027345,-0.457656,0.869137,-0.187353,-0.375072,0.926878,-0.011994,-0.266274,0.944823,0.190680,-0.000397,0.976043,0.217475,-0.738914,0.643330,-0.200293,-0.691885,0.719840,-0.055452,-0.897610,0.390057,-0.205237,-0.879055,0.466597,-0.097415,-0.830409,0.556902,0.015595,-0.596698,0.793939,0.116489,-0.967223,0.098392,-0.234016,-0.979919,0.129276,-0.151646,-0.950438,0.281320,-0.132176,-0.950377,0.220740,-0.219092,-0.984558,0.153508,-0.083987,-0.940001,0.336741,-0.054292,-0.970367,0.003143,-0.241585,-0.987915,0.006409,-0.154790,-0.966735,-0.067690,-0.246620,-0.984680,-0.087374,-0.150700,-0.989624,-0.095035,-0.107639,-0.995025,0.012818,-0.098544,-0.610462,0.034425,0.791284,-0.631733,0.236518,0.738182,-0.921903,0.315165,0.225166,-0.959410,0.123722,0.253304,-0.558824,0.535203,0.633412,-0.740196,0.612720,0.276833,-0.966216,-0.104129,0.235603,-0.964965,0.002594,0.262337,-0.616810,-0.102939,0.780328,-0.592059,-0.028993,0.805353,-0.779290,0.237892,-0.579699,-0.847194,0.090274,-0.523484,-0.927488,0.153905,-0.340678,-0.882687,0.315592,-0.348155,-0.856288,-0.007752,-0.516404,-0.931516,0.049287,-0.360332,-0.401746,0.574694,-0.712943,-0.619373,0.422895,-0.661428,-0.736351,0.555498,-0.386212,-0.480178,0.775079,-0.410657,-0.428083,0.819697,0.380535,-0.180792,0.888089,0.422590,-0.273965,0.632374,0.724570,-0.129521,0.707755,0.694449,-0.026460,0.806482,0.590625,0.007202,0.920499,0.390667,0.047792,0.879238,0.473922,0.075320,0.932676,0.352702,-0.027955,0.822321,0.568316,0.026887,0.851161,0.524155,-0.025788,0.649953,0.759514,-0.054018,0.536119,0.842402,-0.083468,0.417829,0.904660,-0.009461,0.194494,0.980834,-0.208991,0.263436,0.941740,-0.179785,0.032441,0.983154,-0.170782,0.673269,-0.719352,-0.234870,0.649586,-0.723075,-0.251808,0.880123,-0.402417,-0.137425,0.911344,-0.387951,-0.239998,0.367016,-0.898709,-0.232887,0.336283,-0.912473,-0.204077,0.397259,-0.894711,-0.197455,0.410230,-0.890316,-0.276498,0.292703,-0.915311,-0.290323,0.360424,-0.886441,-0.385327,0.225135,-0.894864,-0.445570,0.283029,-0.849300,-0.526231,0.122074,-0.841517,-0.606342,0.167180,-0.777398,-0.214057,0.399823,-0.891232,-0.246376,0.388745,-0.887783,-0.208899,0.422803,-0.881771,-0.189337,0.446089,-0.874722,-0.150029,0.686728,-0.711203,-0.123783,0.705100,-0.698172,-0.062319,0.727653,-0.683065,-0.050874,0.485336,-0.872829,-0.133549,0.472335,-0.871212,-0.090793,0.722648,-0.685202,-0.042543,0.396680,-0.916959,-0.144414,0.399731,-0.905148,-0.046480,0.933500,-0.355480,-0.071047,0.933744,-0.350780,-0.058016,0.928312,-0.367199,-0.089267,0.921537,-0.377880,0.037904,0.936583,0.348369,-0.003235,0.934568,0.355693,-0.014924,0.934568,0.355419,-0.044282,0.810816,0.583575,-0.037172,0.817499,0.574694,-0.016572,0.937864,0.346507,-0.069063,0.568804,0.819544,-0.037294,0.497543,0.866604,-0.000763,-0.922666,0.385510,-0.052736,-0.920835,0.386334,-0.054994,-0.994751,0.086154,-0.005127,-0.995270,0.096896,-0.066927,-0.924833,0.374401,-0.079073,-0.993957,0.076022,-0.098270,-0.991058,-0.090213,-0.065493,-0.994293,-0.083895,-0.016846,-0.996979,-0.075777,-0.019318,-0.273507,0.961669,-0.063356,-0.638508,0.766991,-0.055300,-0.705130,0.706900,-0.008301,-0.639607,0.768639,-0.055727,-0.703269,-0.708701,-0.033967,-0.703330,-0.710044,-0.041047,-0.707114,-0.705863,-0.066713,-0.710868,-0.700125,-0.015961,-0.707877,-0.706137,-0.011383,-0.705069,-0.709006,-0.016175,-0.761528,-0.647908,-0.057161,-0.766656,-0.639485,-0.077975,-0.772881,-0.629688,-0.109134,-0.912046,-0.395215,-0.096316,-0.831416,-0.547197,-0.071200,-0.827509,-0.556871,-0.074892,-0.915555,-0.395062,-0.025422,-0.825983,-0.563066,-0.030702,-0.918790,-0.393475,-0.108585,-0.970824,-0.213660,-0.071963,-0.974761,-0.211249,-0.027711,-0.977966,-0.206885,-0.815912,-0.075259,-0.573199,-0.711875,-0.098209,-0.695395,-0.681570,-0.094852,-0.725547,-0.787011,-0.088382,-0.610523,-0.672170,-0.128758,-0.729087,-0.648640,-0.145878,-0.746940,-0.611103,-0.169958,-0.773034,-0.636189,-0.119572,-0.762169,-0.733665,-0.155461,-0.661458,-0.566515,-0.193152,-0.801080,-0.620228,-0.305368,-0.722526,-0.569445,-0.216224,-0.793054,-0.516953,-0.301553,-0.801111,-0.471541,-0.311319,-0.825037,-0.439863,-0.493454,-0.750298,-0.172796,-0.032380,0.984405,-0.208350,-0.102573,0.972625,-0.023408,-0.009735,0.999664,-0.109104,-0.607318,0.786920,-0.087252,-0.694571,0.714072,-0.147160,-0.907956,0.392315,-0.104038,-0.915616,0.388287,-0.116031,-0.990448,0.074129,-0.164403,-0.983245,0.078555,-0.151891,-0.984222,-0.090396,-0.126469,-0.987487,-0.093936,-0.127628,-0.969085,-0.211005,-0.131809,-0.967834,-0.214240,-0.111515,-0.917295,-0.382214,-0.126225,-0.911527,-0.391308,-0.119358,-0.762780,-0.635487,-0.100772,-0.771508,-0.628132,-0.108371,-0.836665,-0.536821,-0.100497,-0.842891,-0.528581,-0.185125,-0.672506,-0.716514,-0.104373,-0.699301,-0.707114,-0.108158,-0.701407,-0.704459,-0.161229,-0.672506,-0.722282,-0.355541,-0.530198,-0.769677,-0.271065,-0.615864,-0.739738,-0.214972,-0.622669,-0.752342,-0.281899,-0.546373,-0.788629,-0.132176,-0.746208,-0.652394,-0.170934,-0.709983,-0.683126,-0.369060,-0.440016,-0.818598,-0.442274,-0.418104,-0.793420,-0.267373,-0.635182,-0.724570,-0.422498,-0.838527,-0.343944,-0.423048,-0.700369,-0.574877,-0.196081,-0.808557,-0.554765,-0.185705,-0.917142,-0.352611,-0.095279,-0.841487,-0.531754,-0.082553,-0.929807,-0.358592,-0.083468,-0.847072,-0.524827,-0.082430,-0.925321,-0.370037,-0.434431,-0.899106,-0.053255,-0.432020,-0.886868,-0.163671,-0.217444,-0.959868,-0.176946,-0.255959,-0.964904,-0.058535,-0.115909,-0.974914,-0.189917,-0.166417,-0.983673,-0.068422,-0.108921,-0.973205,-0.202429,-0.156835,-0.984375,-0.079928,-0.196509,-0.977386,0.077883,-0.302072,-0.946410,0.114139,-0.195013,-0.942656,0.270821,-0.305124,-0.840815,0.447066,-0.390759,-0.721183,0.571978,-0.430219,-0.889920,0.151433,-0.166112,-0.983306,0.073977,-0.134434,-0.929838,0.342479,-0.174871,-0.673391,0.718253,-0.222541,-0.394177,0.891659,-0.682089,-0.528459,0.505417,-0.816004,-0.561846,0.135777,-0.591968,-0.792505,0.146519,-0.482620,-0.654256,0.582202,-0.855068,-0.510941,-0.088046,-0.654347,-0.753533,-0.063143,-0.945280,-0.274697,0.176000,-0.960112,-0.258522,-0.106388,-0.674337,-0.279733,0.683340,-0.317118,-0.312998,0.895230,-0.878994,-0.455000,-0.142430,-0.685446,-0.712424,-0.150334,-0.883694,-0.374493,-0.280709,-0.698447,-0.641377,-0.317423,-0.833705,-0.252754,-0.490921,-0.679708,-0.485427,-0.549821,-0.907956,-0.058718,-0.414869,-0.888455,-0.113102,-0.444777,-0.951323,-0.171331,-0.256111,-0.625874,0.011048,-0.779839,-0.709189,0.046113,-0.703482,-0.664907,-0.066195,-0.743950,-0.742546,-0.047456,-0.668081,-0.734581,-0.094913,-0.671834,-0.839686,-0.062685,-0.539415,-0.676351,-0.106357,-0.728843,-0.921659,-0.020600,-0.387402,-0.963561,-0.225196,-0.144230,-0.110477,0.426740,-0.897580,-0.036622,0.418409,-0.907498,-0.177587,0.453444,-0.873379,-0.245613,0.465712,-0.850154,-0.285775,0.443800,-0.849300,-0.307413,0.390179,-0.867885,-0.345988,0.314920,-0.883785,-0.425794,0.223731,-0.876705,-0.553575,0.100284,-0.826716,-0.649922,-0.016358,-0.759819,-0.681234,-0.065340,-0.729118,-0.705954,-0.097201,-0.701529,-0.724601,-0.177709,-0.665822,-0.700705,-0.274941,-0.658315,-0.647633,-0.351695,-0.675893,-0.598651,-0.416791,-0.683981,-0.537492,-0.502548,-0.677114,-0.449232,-0.604389,-0.657918,-0.352184,-0.691977,-0.630146,-0.258827,-0.752922,-0.605029,-0.169500,-0.792474,-0.585864,-0.084628,-0.821345,-0.564104,-0.039552,-0.837489,-0.544969,-0.029633,-0.846217,-0.531999,-0.017182,-0.849208,-0.527757,-0.249001,-0.964324,-0.089785,0.076144,-0.997070,-0.003906,0.074740,-0.983612,0.163884,-0.237403,-0.964660,0.114048,0.347789,-0.931761,0.104068,0.351146,-0.910672,0.217475,0.327799,-0.870968,0.365917,0.059755,-0.937620,0.342387,-0.218390,-0.920347,0.324351,-0.710471,-0.653523,0.260964,-0.756462,-0.653859,0.014466,-0.526170,-0.848048,0.062471,-0.480972,-0.825098,0.296335,-0.753105,-0.633503,-0.177374,-0.538835,-0.829920,-0.144322,-0.972839,-0.124149,0.195318,-0.989990,-0.128666,-0.057436,-0.915098,-0.402203,-0.028077,-0.884823,-0.409711,0.221717,-0.949858,-0.142796,-0.278085,-0.891201,-0.407605,-0.198889,-0.863979,0.481735,0.146367,-0.867824,0.472579,-0.153264,-0.981170,0.171300,-0.089053,-0.966308,0.183935,0.179998,-0.796136,0.450270,-0.404218,-0.953795,0.148991,-0.260781,-0.359569,0.744224,-0.562822,-0.572771,0.646687,-0.503647,-0.666982,0.705649,-0.239113,-0.419080,0.851711,-0.314493,-0.685049,0.723289,0.086520,-0.456282,0.889553,0.020966,0.117496,0.830531,-0.544389,-0.124241,0.812464,-0.569567,-0.153569,0.919736,-0.361187,0.098300,0.922269,-0.373760,-0.207404,0.977722,-0.031343,0.043214,0.997559,-0.054598,0.284249,0.958068,-0.035615,0.327403,0.877743,-0.349773,0.488357,0.872463,0.017060,0.523362,0.799829,-0.293832,0.522324,0.727409,-0.444960,0.335582,0.796381,-0.503128,0.653890,0.752068,0.082583,0.683676,0.696432,-0.218055,0.780267,0.608386,0.144810,0.804346,0.578478,-0.135411,0.796197,0.529435,-0.292795,0.677450,0.634693,-0.371746,0.910459,0.336619,0.240242,0.931150,0.364391,0.010407,0.882748,0.465987,-0.059450,0.862667,0.466262,0.195868,0.918851,0.359935,-0.161565,0.873592,0.432813,-0.222449,0.736381,-0.591693,0.327982,0.862575,-0.361858,0.353526,0.878689,-0.332163,0.342784,0.762047,-0.553117,0.336589,0.938231,-0.148564,0.312479,0.939512,-0.138157,0.313364,0.921537,-0.137394,0.363079,0.860530,-0.322825,0.394024,0.740715,-0.530625,0.411969,0.979308,0.037049,0.198828,0.966613,0.012543,0.255837,0.978637,0.201880,-0.038148,0.974273,0.143956,0.173254,0.941954,0.104770,0.318918,0.939879,-0.004028,0.341441,0.961303,0.261483,0.086489,0.934324,0.216224,0.283303,0.951964,0.292611,-0.090152,0.584948,-0.759270,0.285104,0.559862,-0.796228,0.229194,0.564562,-0.723045,0.398053,-0.453413,-0.526292,0.719291,-0.575243,-0.358745,0.735099,-0.764336,-0.397412,0.507736,-0.600360,-0.608448,0.518937,-0.658132,-0.115268,0.744011,-0.857875,-0.122074,0.499130,-0.086673,-0.334758,0.938292,-0.201880,-0.260872,0.943999,-0.375652,-0.315622,0.871334,-0.293527,-0.431928,0.852779,-0.266243,-0.108066,0.957823,-0.451094,-0.109104,0.885739,-0.448836,0.107578,0.887082,-0.654042,0.142460,0.742882,-0.256111,0.046602,0.965514,-0.180639,0.126713,0.975341,-0.424635,0.245369,0.871456,-0.598651,0.350841,0.720054,-0.851131,0.173406,0.495437,-0.764153,0.439131,0.472427,-0.516587,0.534867,0.668599,-0.623157,0.658864,0.421339,-0.382336,0.688864,0.615802,-0.437635,0.819422,0.370067,-0.285836,0.309580,0.906857,-0.412152,0.390820,0.823023,-0.278481,0.471297,0.836818,-0.330729,0.564501,0.756249,0.041475,0.444411,0.894833,-0.016663,0.503281,0.863918,-0.133885,0.373852,0.917753,-0.079409,0.283029,0.955779,-0.086032,0.570421,0.816797,-0.176794,0.526353,0.831660,-0.203772,0.656178,0.726554,-0.079134,0.666402,0.741356,-0.064760,0.790765,0.608661,-0.222022,0.772637,0.594714,-0.233406,0.909940,0.342784,-0.024537,0.938322,0.344798,0.089206,0.757897,0.646229,0.184088,0.908597,0.374828,0.219367,0.689016,0.690725,0.363994,0.830195,0.422163,0.038484,0.623829,0.780572,0.122776,0.557817,0.820795,0.099704,0.374432,0.921873,0.199622,0.478072,0.855312,0.158788,0.284219,0.945494,0.284494,0.370586,0.884121,0.451735,0.469955,0.758324,0.335521,0.595141,0.730186,0.516556,0.715598,0.470138,0.647572,0.569872,0.505814,-0.158452,-0.732231,0.662313,-0.322947,-0.647908,0.689810,-0.406079,-0.751610,0.519730,-0.190130,-0.832850,0.519791,0.234626,-0.705405,0.668813,0.033296,-0.754204,0.655751,0.042238,-0.849147,0.526414,0.280709,-0.791711,0.542528,0.531754,-0.469039,0.705130,0.410779,-0.598865,0.687429,0.493728,-0.665426,0.559801,0.650044,-0.506516,0.566424,0.796594,0.261971,0.544755,0.814936,0.134434,0.563707,0.603198,0.153661,0.782617,0.612384,0.027253,0.790063,0.611225,-0.027985,0.790948,0.818506,0.045259,0.572680,0.404950,0.059694,0.912381,0.401349,-0.066927,0.913450,0.233467,0.013123,0.972259,0.216590,-0.087924,0.972289,0.151128,-0.107791,0.982604,0.392041,-0.085391,0.915952,0.040193,0.023927,0.998901,0.061617,-0.033174,0.997528,-0.016053,-0.031343,0.999359,0.362407,0.224921,0.904447,0.548997,0.317148,0.773278,0.206030,0.154607,0.966247,0.742821,0.413007,0.526872,0.062502,0.098636,0.993133,0.005524,0.169225,0.985534,-0.093692,-0.035096,0.994964,-0.068484,-0.106845,0.991882,0.025452,-0.195502,0.980346,-0.068880,-0.183355,0.980621,0.286508,-0.173681,0.942167,0.248726,-0.110416,0.962249,0.114353,-0.190405,0.975005,0.106906,-0.242042,0.964324,0.416883,-0.078402,0.905545,0.449324,-0.157353,0.879360,0.642323,-0.161657,0.749168,0.627644,-0.065401,0.775719,0.823908,-0.034822,0.565600,0.815546,-0.155614,0.557329,0.440779,-0.293191,0.848354,0.612140,-0.316568,0.724570,0.277261,-0.282907,0.918180,0.239875,-0.388379,0.889706,0.392468,-0.421613,0.817408,0.759819,-0.327677,0.561480,0.194098,-0.457503,0.867733,0.318003,-0.524461,0.789788,0.140965,-0.536363,0.832118,0.187536,-0.618122,0.763359,0.132420,-0.289132,0.948057,0.073519,-0.355327,0.931822,0.033143,-0.538255,0.842097,0.029237,-0.659505,0.751122,-0.072542,-0.534379,0.842097,-0.120304,-0.625843,0.770562,0.046327,-0.421155,0.905789,-0.105106,-0.438429,0.892575,-0.232734,-0.527696,0.816889,-0.001404,0.262886,0.964812,-0.602741,0.618793,0.503708,-0.856685,0.288369,0.427625,-0.393841,0.719077,-0.572527,-0.393658,0.859920,-0.324778,-0.803003,0.542436,0.246803,-0.775048,0.332774,0.537126,-0.475661,0.875332,-0.086612,-0.456130,0.848964,-0.266762,-0.333598,-0.776513,-0.534501,-0.664144,-0.471206,0.580340,-0.940825,-0.241157,0.237983,-0.245491,-0.759636,-0.602191,-0.512925,0.666128,0.541429,0.280679,0.912046,-0.298898,0.313303,0.743309,-0.590991,0.284738,0.660115,-0.695059,0.237281,0.898953,-0.368145,0.122105,0.613453,-0.780206,0.049562,0.889492,-0.454207,-0.378796,0.595233,-0.708640,-0.142674,0.600482,-0.786767,-0.450270,0.724082,-0.522416,-0.223579,0.820734,-0.525681,-0.407636,0.856136,-0.317484,-0.477706,0.671712,-0.566179,-0.543535,0.720054,-0.431349,-0.268166,0.905972,-0.327525,-0.005097,0.964385,-0.264382,-0.488968,0.790765,-0.368175,-0.476241,0.797021,-0.371349,-0.271096,0.893948,-0.356822,0.001770,0.936399,-0.350871,0.369762,0.901883,-0.223273,0.290292,0.945677,-0.146153,0.196814,0.957976,-0.208655,0.228126,0.923185,-0.309244,0.539262,-0.476974,-0.693991,0.679861,-0.432783,-0.591968,0.825831,-0.197302,-0.528245,0.592029,-0.297006,-0.749168,0.800745,-0.402326,-0.443709,0.948454,-0.123814,-0.291665,0.974212,-0.030519,-0.223457,0.867031,-0.161077,-0.471480,0.586566,-0.312357,-0.747215,0.991485,0.027833,-0.127110,0.991089,0.033815,-0.128788,0.976684,-0.030549,-0.212409,0.994415,0.069216,-0.079440,0.993866,0.089785,-0.064211,0.977660,0.147069,-0.149937,0.969970,0.087832,-0.226722,0.951811,0.003937,-0.306558,0.991058,0.133213,0.002930,0.975799,0.210822,-0.057894,0.996765,0.038575,-0.070345,0.995849,0.090732,-0.002930,0.967620,0.232276,0.098636,0.958281,0.284280,0.029115,0.904813,0.383221,0.185461,0.925962,0.365368,0.095065,0.940458,0.320627,0.112735,0.860622,0.490860,0.135441,0.839442,0.506729,0.196265,0.868679,0.476730,0.134587,0.526322,0.847682,-0.066103,0.611011,0.722343,-0.323771,0.409497,0.778466,-0.475661,0.348521,0.915799,-0.199469,0.709006,0.685232,0.166570,0.757164,0.640187,0.129734,0.743004,0.665944,0.066408,0.507981,0.857997,0.075808,0.607257,0.793298,0.043275,0.361248,0.931394,-0.044282,0.478408,0.872982,-0.094943,0.952269,0.301401,-0.047792,0.815302,0.562883,-0.135563,0.964873,-0.193365,-0.177679,0.976897,-0.117435,-0.178381,0.962279,0.223609,0.154912,0.963866,0.225898,0.141026,0.918027,-0.325632,-0.226173,0.990020,-0.059053,-0.127903,0.155705,-0.400098,-0.903134,0.087619,-0.458510,-0.884335,0.110294,-0.602252,-0.790613,0.129124,-0.563585,-0.815882,0.134953,-0.768548,-0.625385,0.171697,-0.764794,-0.620960,-0.132633,-0.710074,0.691488,-0.673391,-0.405499,0.618091,-0.522599,-0.759239,-0.387799,-0.867824,-0.490432,-0.079409,-0.336772,-0.018433,0.941374,-0.308817,0.018189,0.950926,-0.743156,-0.029664,0.668447,-0.829157,-0.261483,0.494034,-0.313059,-0.133213,0.940306,-0.637074,-0.036042,0.769921,-0.465377,-0.534928,-0.705130,-0.464003,-0.505997,-0.727042,0.104068,-0.347392,-0.931913,0.280740,-0.318186,-0.905484,-0.895047,-0.183813,0.406293,-0.859371,-0.384686,0.336802,-0.474868,0.101657,0.874142,-0.397870,-0.008545,0.917386,-0.508988,-0.281838,0.813288,-0.241462,-0.339152,0.909177,-0.291849,-0.477523,0.828700,-0.414136,-0.531114,0.739158,-0.614917,-0.690298,0.381207,-0.967437,0.000977,0.253059,-0.685446,-0.535905,0.492904,-0.924833,-0.380200,-0.010102,-0.895108,-0.419599,-0.150578,-0.943968,0.049532,-0.326212,-0.146031,-0.046846,0.988159,-0.344249,-0.153417,0.926237,-0.091922,0.082186,0.992340,-0.340159,0.130589,0.931242,-0.158116,0.192480,0.968444,-0.332987,0.356456,0.872921,-0.359081,0.559618,0.746879,-0.352245,0.359233,0.864193,0.125309,-0.449782,-0.884274,-0.017792,-0.428449,-0.903378,-0.018250,-0.478133,-0.878079,0.134312,-0.477279,-0.868404,-0.144414,-0.379925,-0.913663,-0.118015,-0.497787,-0.859188,0.070345,-0.773339,-0.630055,0.114933,-0.678396,-0.725608,0.151891,-0.619404,-0.770196,0.252022,-0.415296,-0.874050,0.197638,-0.438429,-0.876736,0.231605,-0.460311,-0.856990,0.298898,-0.418226,-0.857723,0.244545,-0.608631,-0.754784,0.317759,-0.581164,-0.749168,0.405499,-0.531877,-0.743400,0.397382,-0.367077,-0.840999,0.346446,-0.384503,-0.855617,0.876644,-0.195441,-0.439619,0.593005,-0.367504,-0.716392,0.858852,-0.161382,-0.486068,0.618549,-0.308451,-0.722648,0.335063,-0.412152,-0.847255,0.242286,-0.398572,-0.884548,0.392590,-0.310221,-0.865780,0.280343,-0.265481,-0.922422,0.061037,-0.357921,-0.931730,0.101901,-0.432752,-0.895718,0.185400,-0.399915,-0.897580,0.190222,-0.275521,-0.942259,-0.509873,-0.590625,-0.625416,-0.167852,-0.473373,-0.864711,-0.046693,-0.479202,-0.876431,-0.139317,-0.490951,-0.859951,-0.348277,-0.580218,-0.736229,-0.010468,-0.417249,-0.908719,-0.036195,-0.382672,-0.923154,-0.001648,-0.539567,-0.841914,0.101535,-0.792444,-0.601398,0.930631,0.023530,-0.365123,0.917875,0.042665,-0.394513,0.919401,0.151189,-0.363048,0.897427,0.167486,-0.408063,0.917142,0.219062,-0.332926,0.865535,0.254646,-0.431196,0.866359,0.278573,-0.414441,0.910947,0.389508,-0.135655,0.850551,0.506912,-0.139836,0.842738,0.332316,-0.423444,0.748833,0.624928,-0.220618,0.774499,0.417127,-0.475509,0.619068,0.703848,-0.348308,0.661031,0.510147,-0.550218,0.470931,0.751152,-0.462508,0.512467,0.591937,-0.622028,0.298837,0.795465,-0.527146,0.337657,0.663930,-0.667196,0.051210,0.839076,-0.541581,0.102664,0.720176,-0.686148,-0.227424,0.821802,-0.522355,-0.415265,0.751457,-0.512650,-0.337474,0.656087,-0.674978,-0.156896,0.711539,-0.684896,0.918729,0.264199,-0.293405,0.860897,0.269295,-0.431593,0.928251,0.283242,-0.240974,0.861507,0.246223,-0.444014,0.932707,0.310709,-0.182928,0.859554,0.252571,-0.444227,-0.874630,-0.060183,-0.481033,-0.871151,0.027985,-0.490188,-0.822016,0.249855,-0.511673,-0.855464,-0.070894,-0.512925,-0.863155,-0.050081,-0.502396,-0.856319,-0.019684,-0.516007,-0.855007,0.067324,-0.514206,-0.783319,0.241585,-0.572680,-0.263039,-0.499374,-0.825465,-0.558794,-0.546922,-0.623371,-0.006745,-0.384320,-0.923154,-0.125736,-0.648823,-0.750450,-0.416089,-0.633869,-0.651936,-0.640522,-0.557512,-0.528062,0.182318,-0.310343,-0.932951,0.329875,-0.304666,-0.893490,0.380505,-0.631214,-0.675802,0.150578,-0.632618,-0.759636,0.489151,-0.339183,-0.803491,0.591266,-0.608936,-0.528703,0.696677,-0.306009,-0.648823,0.800409,-0.462081,-0.381817,0.865200,-0.134739,-0.482955,0.921506,-0.204718,-0.329936,0.996551,-0.072390,-0.039766,0.979186,0.120579,-0.163060,0.920286,0.236579,-0.311533,0.874111,0.293649,-0.386853,0.848262,0.342326,-0.404004,0.782373,0.435408,-0.445265,0.671163,0.545335,-0.502060,0.520524,0.641957,-0.562914,0.338816,0.710379,-0.616871,0.117038,0.740349,-0.661916,-0.124790,0.710105,-0.692923,-0.316324,0.642323,-0.698080,0.878536,0.254830,-0.403943,0.893796,0.241279,-0.377972,0.884243,0.269692,-0.381268,-0.899167,0.109043,-0.423719,-0.806513,0.297891,-0.510666,-0.898618,-0.009247,-0.438581,-0.513443,-0.768883,-0.380993,-0.713584,-0.599200,-0.362926,-0.226295,-0.891140,-0.393231,0.099246,-0.932401,-0.347453,0.374096,-0.900449,-0.221839,0.592822,-0.803247,-0.057375,0.799341,-0.597980,0.058687,0.943480,-0.327006,0.053468,-0.863186,-0.053621,-0.501999,-0.856105,-0.069765,-0.512040,-0.875546,-0.057009,-0.479720,-0.855403,-0.081942,-0.511399,-0.850765,-0.114353,-0.512925,-0.847499,-0.045167,-0.528825,-0.872402,-0.034242,-0.487564,-0.886685,-0.145848,-0.438704,-0.967467,-0.197821,0.157628,-0.742973,0.260811,0.616352,-0.893307,0.073611,0.443312,-0.601550,0.477309,0.640522,-0.848537,-0.489273,-0.201361,-0.927641,-0.373363,-0.004059,-0.941954,-0.164464,-0.292642,-0.990295,-0.016816,0.137883,-0.940062,-0.333964,-0.068606,-0.833461,-0.440138,-0.334056,-0.833491,-0.298776,-0.464736,-0.850826,-0.217780,-0.478133,-0.855647,-0.161718,-0.491592,-0.837703,-0.292917,-0.460891,-0.891507,-0.097964,-0.442213,-0.769066,-0.438795,-0.464705,-0.760613,-0.445601,-0.472060,-0.879299,-0.283151,-0.382916,-0.873653,-0.250618,-0.416974,-0.830988,-0.426618,-0.356975,-0.820826,-0.191961,0.537889,-0.978179,-0.182104,-0.099796,-0.830744,0.156774,0.534043,-0.990112,0.044099,-0.133091,-0.761467,0.430311,0.484695,-0.708213,0.561174,0.428358,-0.951811,0.299478,-0.065676,-0.962584,0.252174,-0.099033,-0.838710,0.423383,0.342418,-0.978210,0.169530,-0.119663,-0.890194,-0.048433,-0.452925,-0.899899,0.035157,-0.434614,-0.922239,0.045381,-0.383892,-0.905545,-0.150121,-0.396741,-0.931181,0.009247,-0.364391,-0.370525,0.917325,0.145512,-0.543840,0.774499,-0.322977,-0.575945,0.729881,-0.368145,-0.576891,0.697775,-0.424574,-0.559862,0.717948,-0.413587,-0.658467,0.740837,-0.132359,-0.720847,0.590991,-0.362041,-0.507645,0.545915,-0.666494,-0.557817,0.634327,-0.535173,-0.669210,0.518357,-0.532395,-0.622395,0.447829,-0.641896,-0.505112,0.683309,-0.527177,-0.434309,0.600604,-0.671285,-0.646840,0.434614,-0.626606,-0.572100,0.518326,-0.635578,-0.453017,0.583850,-0.673696,0.068239,0.965026,0.252998,0.019837,0.986663,0.161443,-0.035096,0.989502,0.140019,0.009033,0.971435,0.237037,-0.022675,0.998260,-0.054140,-0.081027,0.994964,-0.058931,-0.040895,0.959349,0.279153,-0.003876,0.984863,0.173223,0.051820,0.983459,0.173498,0.073763,0.960326,0.268868,0.083590,0.993988,-0.070589,0.052736,0.996918,-0.057772,-0.046541,0.962157,0.268380,0.103824,0.991150,0.082553,-0.034150,0.988922,0.144230,-0.134556,0.951903,0.275246,0.302561,0.936857,-0.175237,0.136540,0.984588,-0.109012,0.721732,0.663411,0.197272,0.821223,0.566790,-0.065584,0.457991,0.888943,0.001068,0.282418,0.925535,0.252205,0.846461,0.468032,-0.253761,0.590808,0.770592,-0.238960,0.938994,0.316935,0.133457,0.964263,0.249580,-0.088626,0.983917,0.147282,0.100925,0.990387,0.102908,-0.092288,0.973144,0.083926,-0.214209,0.949614,0.212165,-0.230659,0.998138,0.037599,0.047456,0.991974,0.013337,-0.125614,0.993194,0.053102,-0.103488,0.992828,0.092380,0.075686,0.971343,-0.011902,-0.237312,0.975524,0.025697,-0.218299,0.555773,0.675497,0.484512,0.811365,0.343608,0.472854,0.389233,0.597003,0.701468,0.488968,0.329875,0.807489,0.470992,0.158055,0.867824,0.850337,0.189093,0.491043,0.431623,0.121128,0.893857,0.855007,0.142521,0.498611,0.442305,0.041047,0.895901,0.878506,0.067568,0.472884,0.933958,0.059999,-0.352245,0.911466,0.174749,-0.372326,0.829798,0.030793,-0.557207,0.801324,0.112857,-0.587451,0.713309,0.255165,-0.652730,0.821741,0.378246,-0.426191,0.632618,0.613056,-0.473190,0.567492,0.403119,-0.717917,0.428419,0.502487,-0.750938,0.421491,0.773217,-0.473739,0.164068,0.874538,0.456343,0.158208,0.706992,0.689291,-0.039277,0.915708,0.399853,0.067843,0.779870,0.622242,-0.013184,0.950621,0.310007,-0.095157,0.936705,0.336863,0.031343,0.919126,0.392682,0.032319,0.861171,0.507279,0.077944,0.663717,0.743858,0.096103,0.451430,0.887082,0.072634,0.877834,0.473373,0.067965,0.834986,0.546007,0.050447,0.512101,0.857418,0.179388,0.368389,0.912168,0.145482,0.116306,0.982482,0.267312,0.853206,-0.447829,0.320688,0.565447,-0.759850,0.224281,0.613727,-0.756951,0.164678,0.891537,-0.421857,0.398236,0.302866,-0.865810,0.335917,0.342509,-0.877377,0.410169,0.300241,-0.861141,0.356273,0.340281,-0.870174,0.285226,0.371166,-0.883633,0.265847,0.381024,-0.885495,0.580706,0.155217,-0.799158,0.479934,0.245308,-0.842280,0.561296,0.150609,-0.813776,0.477798,0.239937,-0.845058,0.186438,0.417371,-0.889370,0.127415,0.654622,-0.745109,0.208045,0.386486,-0.898495,0.141575,0.390576,-0.909604,0.111942,0.449324,-0.886319,0.037935,0.689169,-0.723563,0.062990,0.393414,-0.917173,0.036195,0.475265,-0.879086,-0.026917,0.715232,-0.698355,-0.022065,0.924772,-0.379803,-0.081606,0.929655,-0.359203,0.074648,0.912717,-0.401685,0.088809,0.945067,0.314493,0.082522,0.941374,0.327097,0.006256,0.821558,0.570055,0.016602,0.941557,0.336406,0.012146,0.565996,0.824305,0.052400,-0.996887,-0.058473,0.063967,-0.990936,0.118076,0.042970,-0.993072,0.109165,0.029176,-0.997375,-0.066103,0.073153,-0.907926,0.412641,0.050020,-0.912320,0.406384,0.063021,-0.614673,0.786248,0.042207,-0.695059,0.717673,0.030885,-0.709098,-0.704398,0.037538,-0.757530,-0.651692,0.015809,-0.715262,-0.698660,0.074801,-0.719748,-0.690146,0.089236,-0.708090,-0.700430,0.091617,-0.751122,-0.653768,0.032014,-0.822565,-0.567705,0.082736,-0.816950,-0.570696,0.060884,-0.916623,-0.395001,0.019227,-0.919279,-0.393078,0.016327,-0.979369,-0.201331,0.046571,-0.979125,-0.197729,0.621876,-0.125095,-0.773034,0.661763,-0.026887,-0.749199,0.693777,0.004395,-0.720145,0.637501,-0.064638,-0.767693,0.671468,0.039735,-0.739952,0.711478,0.023072,-0.702292,0.832575,-0.006836,-0.553819,0.816004,-0.030244,-0.577227,0.751915,-0.137272,-0.644765,0.522019,-0.340465,-0.782006,0.567431,-0.235664,-0.788934,0.551958,-0.172887,-0.815729,0.470656,-0.289224,-0.833552,0.615528,-0.301431,-0.728141,0.451827,-0.445143,-0.773064,0.104373,-0.061220,0.992645,0.105106,0.042299,0.993530,0.129521,-0.886105,0.444990,0.100558,-0.592181,0.799463,0.095279,-0.662435,0.743004,0.103153,-0.893979,0.436018,0.071383,-0.996582,-0.041322,0.112247,-0.982788,0.146519,0.086856,-0.987579,0.130802,0.063417,-0.996612,-0.052187,0.081210,-0.913572,-0.398389,0.056429,-0.978851,-0.196570,0.077944,-0.912320,-0.401929,0.048189,-0.979675,-0.194617,0.117618,-0.810480,-0.573809,0.144078,-0.736686,-0.660665,0.195624,-0.709189,-0.677297,0.135136,-0.802087,-0.581683,0.160314,-0.689444,-0.706351,0.156621,-0.710929,-0.685568,0.255898,-0.677236,-0.689779,0.243843,-0.645772,-0.723533,0.320048,-0.579730,-0.749290,0.237770,-0.668355,-0.704794,0.353618,-0.617756,-0.702353,0.429395,-0.537858,-0.725455,0.370281,-0.499619,-0.783074,0.267220,-0.618427,-0.739006,0.325938,-0.549333,-0.769372,0.412305,-0.401807,-0.817621,0.483322,-0.440901,-0.756279,0.257912,-0.735679,-0.626270,0.171117,-0.768883,-0.616016,0.446486,-0.655904,-0.608631,0.418683,-0.824641,-0.380291,0.197699,-0.895810,-0.397992,0.095340,-0.909665,-0.404218,0.147252,-0.788110,-0.597613,0.073031,-0.911466,-0.404767,0.164464,-0.971435,-0.170934,0.062166,-0.981567,-0.180639,0.379254,-0.910764,-0.163182,0.348918,-0.936735,0.026551,0.172216,-0.984985,0.009583,0.085940,-0.996246,-0.008454,0.040803,-0.981048,-0.189306,0.071291,-0.997101,-0.025422,0.251808,-0.735496,0.628956,0.204596,-0.838984,0.504166,0.205817,-0.954405,0.216071,0.317331,-0.907834,0.274026,0.131870,-0.929838,0.343486,0.121281,-0.978668,0.165685,0.102664,-0.983123,0.151280,0.101932,-0.910947,0.399670,0.122929,-0.679556,0.723228,0.129582,-0.437117,0.889981,0.607410,-0.793725,0.031922,0.490249,-0.815760,0.306833,0.876431,-0.480880,0.024812,0.770287,-0.534379,0.347880,0.535173,-0.501663,0.679617,0.317972,-0.659169,0.681417,0.511124,-0.192572,0.837642,0.901028,-0.145238,0.408704,0.990234,-0.136814,0.026276,0.169439,-0.313944,0.934172,0.695639,-0.630696,-0.343883,0.665578,-0.728782,-0.160649,0.893368,-0.336863,-0.297250,0.898953,-0.408307,-0.158452,0.680960,-0.487777,-0.546190,0.852229,-0.253059,-0.457839,0.914823,-0.082644,-0.395245,0.928709,-0.023957,-0.370006,0.959441,-0.106143,-0.261116,0.687307,0.028321,-0.725791,0.653890,0.068941,-0.753410,0.637898,0.062166,-0.767571,0.615925,0.078097,-0.783898,0.656514,0.065554,-0.751427,0.704764,0.021760,-0.709067,0.834895,-0.001587,-0.550371,0.934324,0.003693,-0.356334,0.982147,-0.117985,-0.146489,0.112308,0.452437,-0.884671,0.047334,0.431684,-0.900754,0.168920,0.471938,-0.865261,0.251076,0.477340,-0.842067,0.347209,0.456893,-0.818934,0.430006,0.411603,-0.803522,0.629383,0.210700,-0.747978,0.523942,0.331614,-0.784509,0.688498,0.115604,-0.715934,0.682882,0.122745,-0.720115,0.727439,0.060518,-0.683462,0.699149,0.120334,-0.704764,0.687948,-0.293497,-0.663717,0.736656,-0.095645,-0.669424,0.542161,-0.557726,-0.628468,0.608173,-0.451552,-0.652821,0.484939,-0.640370,-0.595569,0.410016,-0.714438,-0.566973,0.222724,-0.804682,-0.550310,0.319529,-0.768975,-0.553636,0.048738,-0.838313,-0.542985,0.126530,-0.827479,-0.547014,0.004975,-0.844844,-0.534959,0.139714,-0.165044,-0.976318,0.173925,-0.205786,-0.963012,0.131443,-0.279946,-0.950957,0.269570,-0.120487,-0.955382,0.284829,-0.264748,-0.921262,0.354106,-0.675008,-0.647237,0.295480,-0.807978,0.509720,0.345805,-0.938169,0.015625,0.390423,-0.902921,0.179571,0.219855,-0.723655,0.654164,0.291726,-0.484848,-0.824488,0.421918,-0.529710,-0.735771,0.224036,-0.895505,0.384503,0.008026,-0.561205,0.827631,0.156133,-0.180486,-0.971099,0.187231,-0.194983,-0.962767,0.123051,-0.621815,-0.773400,0.163884,-0.228065,-0.959746,0.159276,-0.986999,0.021149,0.242897,-0.826411,0.507920,0.266427,-0.691549,0.671377,0.307962,-0.508011,0.804376,-0.266915,-0.008057,0.963652,-0.145024,-0.136021,0.980010,0.120151,-0.216285,0.968902,0.062014,-0.184790,0.980804,-0.100192,-0.170049,0.980316,0.123569,-0.179998,0.975860,0.557298,-0.206854,0.804102,0.588672,-0.206153,0.781610,0.580004,-0.217994,0.784875,0.604175,0.025056,-0.796411,0.666036,0.151006,-0.730461,0.988372,0.058382,-0.140263,0.982818,-0.094211,-0.158544,0.646626,0.324412,-0.690329,0.864528,0.383129,-0.325205,0.919462,0.391766,-0.032411,0.977020,0.024110,0.211768,0.952361,-0.138615,0.271615,-0.200385,-0.569292,0.797327,0.020539,-0.608142,0.793542,0.065676,-0.294320,0.953429,-0.155034,-0.291940,0.943785,0.331675,-0.591388,0.734977,0.466231,-0.357891,0.809015,-0.244179,-0.533341,0.809870,-0.266305,-0.303568,0.914823,-0.122105,-0.345073,0.930570,-0.220557,-0.159520,0.962218,-0.069124,-0.164495,0.983917,0.032136,-0.971892,-0.233131,-0.138462,-0.872982,0.467635,-0.069399,-0.865902,0.495315,0.230659,-0.919370,-0.318583,0.605579,-0.790704,-0.089480,0.528062,-0.763543,0.371654,0.075625,-0.911374,0.404523,0.159185,-0.972015,-0.172643,0.838893,-0.421796,0.343944,0.898251,-0.439344,0.007508,0.955504,-0.272378,0.112980,0.904630,-0.232673,0.356975,0.513382,-0.630207,-0.582446,0.826228,-0.402509,-0.394055,0.283547,-0.319712,-0.904050,0.396069,-0.201819,-0.895749,0.468703,-0.159642,-0.868770,0.910459,-0.289254,-0.295511,0.951964,-0.194067,-0.236702,0.959807,-0.184912,0.211066,0.525529,-0.085788,-0.846431,0.899655,-0.168432,0.402722,0.879269,-0.158910,0.448988,0.472030,0.864772,-0.171209,0.338267,0.929106,0.149236,0.234352,0.963836,0.126804,0.455702,0.844874,-0.280099,0.119755,0.824458,0.553056,-0.096072,0.808161,0.581042,-0.038484,0.786004,0.616993,0.316111,0.944639,0.087588,0.495285,0.801111,-0.335917,0.580859,0.300668,-0.756401,0.581225,0.716758,-0.385205,0.534776,0.598804,-0.596149,0.472335,0.246284,-0.846278,0.509140,0.573534,-0.641682,0.409650,0.298685,-0.861934,0.567095,0.823267,0.024842,0.471145,0.751640,0.461531,0.750725,0.610248,-0.252937,0.743980,0.592853,0.308115,0.860683,0.493149,0.126499,0.831141,0.348155,-0.433515,0.591144,0.060793,-0.804254,0.354839,-0.353099,0.865658,0.436781,-0.124210,0.890927,0.004425,0.384136,0.923246,0.010010,0.119144,0.992798,-0.218146,-0.000092,0.975890,-0.274331,0.212287,0.937895,0.489242,0.187811,0.851650,0.448195,0.409986,0.794336,0.706717,0.516587,0.483383,0.662740,0.465438,0.586596,0.010529,0.611225,0.791345,0.414716,0.580126,0.701010,-0.278878,0.488510,0.826746,-0.287240,0.331278,0.898709,0.092013,0.159612,0.982849,0.323710,0.632984,0.703207,0.619953,0.018067,0.784417,0.647908,0.364177,0.668996,0.871487,0.397565,0.287057,0.906674,-0.001129,0.421796,0.598682,0.790155,0.131077,0.675680,0.685812,-0.270272,0.439375,0.359050,-0.823389,0.610034,0.569964,-0.550401,0.304086,0.176458,-0.936125,0.279733,0.098300,-0.955016,0.216803,0.061617,-0.974242,0.168371,-0.009705,-0.985656,0.106296,-0.072115,-0.991699,0.153081,-0.012970,-0.988098,0.109043,-0.059450,-0.992248,0.112033,-0.036592,-0.993011,0.308695,-0.040071,-0.950285,0.288186,-0.026765,-0.957183,0.156163,-0.079257,-0.984527,0.240181,-0.068178,-0.968322,0.321116,-0.201056,-0.925443,0.227424,-0.192938,-0.954466,0.337901,-0.183172,-0.923154,0.388348,-0.117954,-0.913907,0.335459,-0.018159,-0.941862,0.241279,-0.123234,-0.962584,0.223426,-0.091372,-0.970397,0.241523,-0.039338,-0.969573,0.320505,-0.128147,-0.938505,0.073336,-0.094638,-0.992798,0.078677,-0.249611,-0.965117,0.143681,-0.188086,-0.971557,0.129002,-0.080538,-0.988342,0.137730,-0.666189,-0.732933,0.140263,-0.546068,-0.825892,0.299539,-0.120853,-0.946379,0.323985,-0.393353,-0.860378,0.269967,-0.036470,-0.962157,0.260018,-0.110782,-0.959197,-0.025727,-0.300455,-0.953429,0.093417,-0.192938,-0.976745,-0.041261,-0.308512,-0.950285,-0.129795,-0.447768,-0.884671,-0.104404,-0.402173,-0.909574,-0.178808,-0.857631,-0.482131,-0.281075,-0.860958,-0.423902,-0.234901,-0.955931,0.175970,-0.070101,-0.899167,0.431928,-0.410016,-0.797143,-0.443159,-0.414136,-0.905423,-0.093173,-0.417554,-0.866939,0.272103,-0.249794,-0.785913,0.565600,-0.068026,-0.582629,0.809870,-0.310648,-0.502518,-0.806787,-0.383496,-0.533677,-0.753716,-0.485977,-0.737632,-0.468703,-0.211768,-0.596301,-0.774285,-0.539689,-0.831355,-0.132389,-0.511521,-0.815760,0.269906,-0.467940,-0.666311,0.580523,-0.433088,-0.454207,0.778527,-0.506851,-0.344615,0.790124,0.032228,-0.361614,0.931761,0.037507,-0.338176,0.940306,-0.562487,-0.324717,0.760338,0.180334,-0.301218,0.936338,0.288369,-0.214362,0.933195,0.380535,0.001190,0.924741,0.032044,-0.158116,0.986877,-0.585559,-0.243965,0.773003,-0.927519,0.368053,0.064760,-0.869228,0.425367,-0.251869,-0.999939,-0.001343,-0.007813,-0.943602,-0.095737,0.316904,-0.668813,0.483810,-0.564409,-0.761406,0.283517,-0.582965,-0.756951,0.106143,-0.644765,-0.990875,-0.133641,-0.016633,-0.917051,-0.214881,0.335856,-0.391675,-0.458419,0.797754,-0.001190,-0.418836,0.908048,-0.299020,-0.555742,0.775689,-0.059877,-0.559160,0.826868,0.122837,-0.529649,0.839259,0.142247,-0.373699,0.916562,0.138646,-0.363720,0.921110,0.189032,-0.200659,0.961211,0.110843,-0.521683,0.845882,-0.039308,-0.329081,0.943449,0.018067,-0.088473,0.995911,0.016877,-0.829951,0.557543,0.034211,-0.814325,0.579333,-0.133000,-0.985473,-0.105350,-0.171575,-0.962523,-0.209967,-0.131443,-0.805750,0.577471,-0.447249,-0.674703,0.587115,-0.579821,-0.811975,0.066836,-0.223334,-0.973907,-0.039521,-0.949339,-0.206702,0.236610,-0.884243,-0.431776,0.177923,-0.719596,-0.416730,0.555406,-0.845088,-0.234809,0.480239,-0.583514,-0.171941,-0.793664,-0.451125,-0.363445,-0.815088,-0.799738,-0.428327,-0.420606,-0.940245,-0.203589,-0.272866,-0.340312,-0.495499,-0.799127,-0.491928,-0.676962,-0.547410,-0.688925,-0.032105,-0.724082,-0.980041,-0.148412,-0.132206,-0.938871,-0.194403,0.284066,-0.862117,-0.223243,0.454848,-0.857509,-0.229560,0.460372,0.162450,0.807917,0.566424,0.216956,0.824671,0.522294,-0.161687,0.983367,0.082553,-0.188147,0.980255,0.060518,-0.019257,0.851314,0.524277,-0.400830,0.910184,0.104190,-0.558489,0.812037,-0.169225,-0.424604,0.866085,-0.263741,-0.412854,0.845790,-0.337840,-0.563707,0.630177,-0.533921,-0.472274,0.660512,-0.583636,-0.692404,0.603717,-0.395032,-0.604633,0.179693,-0.775964,-0.555803,0.277810,-0.783471,-0.428571,0.501511,-0.751518,-0.677175,0.735282,-0.027039,-0.816462,0.497482,-0.292978,-0.465773,0.734703,0.493210,-0.800134,0.475356,0.365764,-0.793481,0.319559,-0.517899,-0.379040,0.067660,-0.922880,-0.932157,0.319224,0.170721,-0.407361,-0.242378,0.880490,-0.399945,-0.037111,0.915769,0.300058,-0.019623,0.953703,0.101810,0.157292,0.982269,0.176580,0.385235,0.905728,0.409925,0.204443,0.888882,-0.359783,0.336863,0.870083,-0.390912,0.154515,0.907346,-0.761986,0.241798,0.600726,-0.692770,0.286630,0.661702,-0.352000,0.532762,0.769555,0.152837,0.633106,0.758782,0.397137,0.523759,0.753594,0.364422,0.378643,0.850734,0.001770,0.202521,0.979247,-0.604968,0.002167,0.796228,-0.232948,0.689291,0.685965,-0.655873,0.371532,0.657063,-0.891476,-0.086093,0.444777,-0.872433,0.384930,0.301096,-0.525193,0.845302,0.097934,-0.610187,0.749229,-0.257454,-0.540361,0.677084,-0.499496,-0.435163,0.585406,-0.684042,-0.380810,0.448164,-0.808771,-0.356090,0.273598,-0.893490,-0.346263,0.397595,-0.849696,-0.288217,0.280251,-0.915616,-0.253883,0.085910,-0.963378,-0.324961,0.059877,-0.943815,-0.217841,-0.163640,-0.962157,-0.269509,-0.148534,-0.951445,0.230598,-0.208838,-0.950346,0.060091,-0.269753,-0.961028,0.037873,-0.190771,-0.980895,0.215064,-0.230079,-0.949095,-0.088931,-0.055086,-0.994507,0.013703,0.019501,-0.999695,-0.235939,0.023469,-0.971465,-0.366192,-0.025178,-0.930174,-0.427107,0.181921,-0.885708,-0.303629,0.164953,-0.938383,-0.146611,-0.166509,-0.975066,-0.208045,0.058138,-0.976379,-0.099918,-0.021882,-0.994751,-0.169958,-0.476424,-0.862606,-0.203253,-0.510666,-0.835383,-0.222510,-0.333415,-0.916135,-0.177648,-0.341014,-0.923093,-0.225990,-0.750786,-0.620655,-0.194433,-0.697012,-0.690146,-0.232704,-0.580798,-0.780053,-0.188330,-0.383435,-0.904141,-0.144597,-0.326518,-0.934049,0.092502,-0.050417,-0.994415,0.072420,-0.105014,0.991821,0.070956,-0.133091,0.988556,0.356426,-0.101505,0.928770,0.371136,-0.116153,0.921262,-0.046541,-0.730613,0.681173,0.222938,-0.687857,0.690725,0.432112,-0.654653,0.620197,0.559435,-0.075747,0.825373,0.570879,-0.124393,0.811518,0.539781,-0.664479,0.516800,0.658406,-0.081973,0.748161,0.568773,-0.762078,0.309366,0.758690,-0.185369,0.624470,0.761223,-0.078280,0.643696,0.671834,-0.104984,0.733177,-0.022584,-0.970519,-0.239937,-0.354259,-0.906339,-0.230232,0.393445,-0.889340,0.232887,0.609851,-0.759758,0.225410,0.790490,-0.371349,0.486984,0.849086,-0.291025,0.440809,0.392376,-0.919736,0.008301,0.794855,-0.437696,0.420209,0.837672,-0.139622,0.528001,-0.326884,-0.796319,-0.508927,-0.582293,-0.663656,-0.469497,0.056978,-0.972045,-0.227668,-0.075381,-0.917112,-0.391400,0.000488,-0.996704,-0.080874,0.050722,-0.991333,-0.120945,-0.161748,-0.977996,-0.131626,-0.080508,-0.993286,-0.082766,-0.240974,-0.906003,-0.347942,-0.425581,-0.868618,0.253609,-0.276742,-0.913511,-0.298135,-0.493149,-0.776452,0.392254,-0.423231,-0.790277,0.443007,-0.483688,-0.767113,0.421339,-0.201453,-0.950896,-0.234870,-0.171911,-0.959990,-0.220893,-0.192999,-0.960784,-0.199011,-0.290689,-0.775994,0.559709,-0.231697,-0.063906,0.970672,-0.229957,-0.165075,0.959075,-0.425092,-0.027863,0.904691,-0.454299,-0.183325,0.871761,-0.502365,-0.337992,0.795831,-0.515824,-0.224921,0.826594,-0.495804,-0.023316,0.868099,-0.529008,-0.191870,0.826624,-0.267281,-0.014466,0.963500,0.046144,-0.049806,0.997681,-0.430616,-0.006836,0.902493,-0.490310,-0.019745,0.871303,0.364269,-0.095401,0.926389,0.569140,-0.138890,0.810389,0.699423,-0.145848,0.699637,0.780938,-0.109012,0.614978,0.832148,-0.103580,0.544755,0.854610,-0.172521,0.489731,0.828455,-0.203101,0.521867,-0.169744,-0.975646,0.138707,-0.029237,-0.983825,0.176672,-0.260445,-0.555986,0.789300,-0.484848,-0.548357,0.681295,0.148808,-0.961974,0.228950,0.034516,-0.520432,0.853175,0.006165,-0.253090,0.967406,-0.334819,-0.268868,0.903073,-0.556047,-0.243507,0.794641,-0.777459,-0.349925,0.522568,-0.645314,-0.663656,0.378246,-0.611072,-0.574175,0.544877,-0.692923,-0.269845,0.668569,-0.242927,-0.969359,-0.035768,-0.263710,-0.960326,0.090548,-0.189123,-0.971801,-0.140751,-0.634144,-0.761223,0.135411,0.361400,-0.890744,-0.275491,0.192358,-0.917631,-0.347728,-0.277810,-0.958678,-0.060854,-0.678610,-0.697195,0.230995,-0.525040,-0.832545,0.176458,-0.757866,-0.504379,0.413739,-0.064516,-0.972930,-0.221809,0.716666,-0.628620,-0.301950,0.517808,-0.700705,-0.490738,0.371166,-0.767754,-0.522263,0.270821,-0.825190,-0.495651,0.224403,-0.849025,-0.478256,0.215949,-0.843471,-0.491806,0.193884,-0.831751,-0.520157,0.175512,-0.836085,-0.519730,0.166204,-0.913358,-0.371654,0.231788,-0.890378,-0.391705,0.202582,-0.966887,0.155126,0.359050,-0.931516,0.057649,0.178228,-0.890408,-0.418775,0.391644,-0.920103,0.000000,0.416364,-0.907651,0.052950,0.211707,-0.874294,-0.436720,0.254433,-0.845912,-0.468673,0.369182,-0.909726,0.189917,0.487411,-0.458327,0.743187,0.319285,-0.456282,0.830561,0.423933,-0.116794,0.898099,0.288339,-0.171209,0.942076,0.252724,-0.546464,0.798425,0.456679,-0.521561,0.720664,0.538652,-0.491501,0.684286,0.479171,-0.083346,0.873745,0.418958,-0.041261,0.907041,0.299661,-0.066530,0.951689,0.011994,-0.091006,0.995758,0.463118,-0.023530,0.885952,-0.360973,-0.099155,0.927274,-0.591144,-0.093326,0.801111,-0.721641,-0.105960,0.684072,-0.804346,-0.177526,0.566973,-0.808466,-0.299264,0.506729,-0.805536,-0.447615,0.388165,-0.781030,-0.540544,0.312632,-0.974639,0.182134,0.129795,-0.799005,0.502701,0.329905,-0.732047,0.038118,0.680135,-0.752953,-0.314646,0.577929,-0.506790,0.704031,0.497452,-0.559801,0.381664,0.735466,-0.243446,0.631001,0.736564,-0.192633,0.786584,0.586596,0.157964,0.795465,0.585009,0.145573,0.736229,0.660848,0.389172,-0.872311,-0.295938,0.100620,-0.971313,-0.215430,0.597247,-0.769707,-0.225349,0.231697,-0.746574,-0.623615,0.868099,0.368297,0.332804,0.933287,0.162908,0.319956,0.715232,0.560076,0.418012,0.676321,0.669668,0.306742,0.792718,0.586963,0.164373,0.864162,0.484939,0.134190,0.464217,0.698325,0.544786,0.463393,0.749474,0.472762,-0.923795,-0.355083,-0.143071,-0.994171,-0.107761,0.001648,-0.664541,-0.593524,0.453963,-0.512375,-0.801752,0.307657,-0.674215,-0.668569,-0.313669,-0.797296,-0.541551,-0.266396,-0.332102,-0.910886,0.244819,-0.219733,-0.957213,0.188208,0.982238,0.154424,0.106418,0.939940,-0.195715,0.279580,0.939390,-0.021271,0.342143,0.913846,0.348766,0.207831,0.874355,-0.482833,0.048036,0.912015,-0.219794,-0.346202,-0.466994,-0.767235,-0.439558,-0.137669,-0.990204,0.022370,0.620716,-0.033967,0.783258,0.436537,0.012085,0.899594,0.427442,-0.061251,0.901944,0.588366,-0.069552,0.805567,0.260781,0.043916,0.964385,0.307688,-0.046419,0.950346,0.364910,-0.036287,0.930326,0.431806,-0.059908,0.899960,0.554552,-0.171880,0.814173,-0.451247,-0.768456,-0.453658,-0.539415,-0.615253,-0.574816,-0.249214,-0.780450,-0.573351,-0.191626,-0.930235,-0.312876,-0.587817,-0.540880,-0.601550,-0.320109,-0.699484,-0.638905,0.154424,-0.810877,-0.564440,0.172857,-0.875973,-0.450270,0.117862,-0.979247,-0.164678,-0.810602,-0.419874,0.408155,-0.866054,-0.486435,-0.115268,-0.795831,-0.600604,0.076571,-0.617084,-0.554918,0.557878,-0.789148,-0.468764,-0.396802,-0.791467,-0.550127,-0.266213,-0.698386,-0.708396,-0.101779,-0.550157,-0.814081,0.185949,-0.330332,-0.799921,0.500931,-0.691488,-0.550981,-0.467147,-0.567858,-0.778558,-0.267098,-0.701834,-0.477767,-0.528306,0.152501,-0.098148,0.983398,0.134526,-0.302286,0.943663,0.132328,0.046754,0.990081,-0.066103,-0.019135,0.997620,-0.072451,-0.244057,0.967040,-0.053804,-0.664296,0.745506,-0.452071,-0.209937,0.866909,-0.312540,-0.402966,0.860164,-0.147160,-0.702994,0.695761,0.892544,-0.173162,0.416333,0.777520,-0.087405,0.622700,0.751518,-0.160558,0.639851,0.849666,-0.278481,0.447768,0.720145,-0.302377,0.624439,0.814661,-0.347179,0.464522,0.857875,-0.508682,-0.072298,0.931272,-0.315073,0.182897,0.860256,-0.459639,0.220618,0.733848,-0.677541,-0.048341,0.757561,-0.569384,0.319193,0.556597,-0.828150,0.065676,0.499344,-0.826930,-0.258370,0.327128,-0.941343,-0.082766,0.601489,-0.719993,-0.346110,-0.260292,-0.964476,0.044984,-0.047090,-0.975982,0.212592,0.258492,-0.878964,0.400678,0.071139,-0.953246,0.293649,0.535539,-0.646321,0.543504,0.268777,-0.604968,0.749474,0.263741,-0.323954,0.908536,0.223640,0.143223,0.964080,0.062410,0.178289,0.981994,0.200598,0.374828,0.905118,-0.035920,0.425367,0.904294,-0.284555,0.505722,0.814386,-0.142857,0.199805,0.969359,0.180395,0.668966,0.721030,-0.122227,0.696829,0.706717,-0.416761,0.709647,0.568041,0.661031,0.114841,0.741478,0.443129,0.129368,0.887051,0.698141,0.369518,0.613178,0.481338,0.363933,0.797388,0.681021,0.610889,0.403699,0.483413,0.637135,0.600269,0.942412,0.044923,0.331339,0.829249,0.084964,0.552355,0.907773,0.379254,0.179113,0.835719,0.379925,0.396496,0.811853,0.579455,0.071169,0.769616,0.605762,0.201758,0.960295,-0.242653,-0.137516,0.993103,-0.039155,0.110385,0.985626,0.085665,-0.145573,0.943846,0.327403,0.044130,0.962523,0.266549,-0.049501,0.860836,0.502640,0.079012,0.160710,-0.751762,-0.639515,0.708121,-0.555650,-0.435652,0.160741,-0.673696,-0.721274,0.786859,-0.359996,-0.501236,0.132908,-0.582659,-0.801752,0.835749,-0.190405,-0.515000,-0.607105,-0.554216,-0.569414,-0.359691,-0.684988,-0.633534,-0.655965,-0.519456,-0.547563,-0.419507,-0.642354,-0.641346,-0.717277,-0.466750,-0.517319,-0.499100,-0.586901,-0.637471,-0.784356,-0.420942,-0.455580,-0.706870,-0.475692,-0.523423,-0.836909,-0.283822,-0.467940,-0.753105,-0.417707,-0.508255,-0.910245,-0.173803,-0.375744,-0.814600,-0.347850,-0.464064,-0.967254,-0.163884,0.193732,-0.902310,-0.339702,-0.265328,-0.983032,0.181951,-0.022706,-0.930570,-0.093295,-0.354015,-0.942747,0.324839,-0.075137,-0.958007,0.046175,-0.282937,-0.623981,0.086856,0.776574,-0.728690,0.465407,0.502335,-0.742576,0.605792,0.285531,0.751762,0.132084,0.646046,0.929441,-0.150304,0.336894,0.679678,0.244667,0.691488,0.935575,0.060427,0.347819,0.989105,-0.142705,-0.035432,0.872433,-0.481246,0.084994,-0.103030,0.727226,0.678579,0.362743,0.440016,0.821436,0.374432,0.408643,0.832331,-0.143590,0.670522,0.727836,-0.720939,-0.423566,-0.548448,-0.797235,-0.105472,-0.594348,-0.427107,-0.630299,-0.648274,-0.421583,-0.235206,-0.875729,-0.692099,0.693899,0.198706,-0.712973,0.558977,0.423261,-0.833155,0.352000,0.426466,-0.816218,0.551866,0.170934,-0.845363,0.193457,0.497879,-0.810907,0.468978,0.349864,-0.498428,0.696158,0.516587,-0.474807,0.794336,0.378887,0.674764,-0.737968,-0.005615,0.913388,-0.306742,-0.267556,0.789392,-0.467727,-0.397534,0.470840,-0.882077,-0.014740,0.347789,-0.937193,-0.025788,0.662587,-0.594775,-0.455123,0.504624,-0.681112,-0.530442,0.263588,-0.950438,-0.164769,-0.861995,0.127171,0.490646,-0.947020,0.164434,0.275826,-0.843532,0.462508,0.272896,-0.774285,0.424879,0.468947,-0.957366,0.141514,-0.251808,-0.834681,0.352824,-0.422803,0.013031,-0.889187,-0.457320,0.173650,-0.654042,-0.736229,-0.147435,0.034089,0.988464,-0.148534,0.029176,0.988464,-0.320505,0.071078,0.944548,-0.295083,-0.016572,0.955321,-0.130863,0.104068,0.985900,-0.376019,0.149998,0.914365,-0.590472,0.174078,0.788049,-0.540757,0.097171,0.835536,-0.515366,-0.132725,0.846614,-0.264260,-0.722892,-0.638417,0.150395,-0.730522,-0.666097,0.050478,-0.772820,-0.632557,-0.323283,-0.778436,-0.538011,0.409192,-0.686117,-0.601459,0.326334,-0.727958,-0.602924,0.240577,-0.812159,-0.531480,-0.030549,-0.897946,-0.439009,-0.349132,-0.900235,-0.260079,0.541673,-0.840144,-0.026704,0.659841,-0.734581,-0.157964,0.681600,-0.680868,0.267891,0.452193,-0.848598,0.274483,0.718070,-0.646352,-0.257973,0.807123,-0.551286,0.211219,0.708304,-0.365246,0.604022,0.579485,-0.555132,0.596637,0.313334,-0.788812,0.528733,0.563646,-0.653645,-0.504990,0.508744,-0.716056,-0.477859,0.383862,-0.866268,-0.319651,0.345470,-0.081515,0.934843,0.131840,0.022553,0.990997,0.126408,-0.126041,0.983917,0.338176,-0.297403,0.892819,0.062868,-0.312174,0.947935,0.140568,-0.685598,0.714225,0.422834,-0.403790,0.811243,0.194983,-0.701865,0.685049,0.532975,-0.204566,0.821009,-0.758415,0.044801,0.650197,-0.738731,-0.184759,0.648122,-0.774834,0.169317,0.609027,-0.916257,0.107669,0.385815,-0.904172,-0.057222,0.423292,-0.876278,-0.188299,0.443434,-0.959075,-0.242347,0.146275,-0.859493,-0.454695,0.233406,-0.988433,-0.038942,0.146489,-0.956420,-0.270058,-0.110752,-0.871944,-0.472701,-0.127293,-0.687674,-0.725181,-0.034150,-0.722526,-0.549089,-0.419965,-0.663076,-0.667409,-0.338908,-0.529405,-0.836848,-0.139164,0.130772,-0.991241,-0.016602,-0.101413,-0.971618,0.213599,-0.203528,-0.934080,0.293313,-0.318064,-0.878079,0.357433,-0.269814,-0.596759,0.755669,-0.579638,-0.606006,0.544725,-0.185522,-0.350597,0.917936,0.525163,0.136357,0.839991,0.291543,0.200079,0.935362,0.189032,0.104190,0.976409,0.419721,0.052217,0.906125,-0.071474,0.320536,0.944517,-0.100620,0.163854,0.981323,0.356609,0.353618,0.864711,0.607562,0.206153,0.767022,-0.066652,0.590594,0.804193,-0.482620,0.463637,0.743034,-0.423719,0.245674,0.871822,-0.728141,0.552324,0.405835,-0.670370,0.323954,0.667562,-0.488907,0.720023,0.492416,-0.696860,0.697470,0.166845,-0.774987,0.608234,0.171422,-0.810114,0.379742,0.446608,-0.741783,0.651387,0.159398,-0.875484,0.392041,0.282510,-0.749229,0.661336,0.034822,-0.717521,0.670522,0.188421,-0.760247,0.596515,0.257179,-0.936125,0.303262,0.177984,-0.937681,0.323618,0.126377,-0.999084,0.007752,-0.041566,-0.684042,0.620838,0.382885,-0.819971,0.514603,0.250526,-0.882687,-0.199622,-0.425398,-0.795526,-0.421339,-0.435377,-0.264229,-0.537645,-0.800653,-0.257546,-0.660482,-0.705252,-0.865566,0.184881,-0.465346,-0.266823,-0.323191,-0.907926,0.261818,-0.557451,-0.787835,0.220527,-0.661336,-0.716910,0.533830,-0.498672,-0.682852,0.488998,-0.607715,-0.625721,0.243263,-0.533738,-0.809870,0.534715,-0.510636,-0.673269,0.668233,-0.448195,-0.593738,0.623524,-0.566088,-0.539171,0.824244,-0.366222,-0.431776,0.789117,-0.510422,-0.341624,0.684378,-0.414167,-0.600055,0.819697,-0.301279,-0.487106,0.977599,-0.198431,-0.069857,0.929777,-0.353465,0.102664,0.946287,-0.065401,0.316538,0.840632,-0.162297,0.516709,0.958586,-0.165349,-0.231788,0.991821,-0.082797,0.096957,0.767602,0.037385,0.639790,0.645558,-0.035401,0.762871,0.870174,0.043794,0.490738], + 'colors': [], 'uvs': [[0.775590,0.644450,0.776840,0.621890,0.758860,0.625140,0.755160,0.648660,0.778090,0.599320,0.762560,0.601620,0.747030,0.603910,0.740880,0.628390,0.734740,0.652860,0.627690,0.101190,0.631310,0.091130,0.620770,0.083720,0.614970,0.092930,0.634940,0.081060,0.626560,0.074500,0.618190,0.067940,0.610220,0.076310,0.602260,0.084670,0.733610,0.073930,0.719120,0.060450,0.686800,0.061920,0.697320,0.072760,0.704630,0.046970,0.676290,0.051070,0.647950,0.055160,0.654490,0.063380,0.661040,0.071590,0.644020,0.077790,0.639610,0.069770,0.648430,0.085810,0.661920,0.090560,0.661480,0.081080,0.695190,0.085270,0.693050,0.097780,0.724190,0.105000,0.728900,0.089470,0.594840,0.052820,0.606510,0.060380,0.630500,0.061880,0.621390,0.053990,0.565150,0.037950,0.579990,0.045390,0.608230,0.045000,0.595080,0.036000,0.636480,0.044610,0.625010,0.034050,0.499990,0.022640,0.532570,0.030300,0.566160,0.026180,0.537240,0.016360,0.599750,0.022070,0.574500,0.010080,0.499990,0.057690,0.499990,0.069070,0.522090,0.070390,0.523670,0.058720,0.499990,0.080450,0.520510,0.082060,0.541040,0.083660,0.544190,0.071700,0.547350,0.059740,0.528120,0.044510,0.499990,0.040170,0.556250,0.048850,0.731780,0.503120,0.741510,0.491130,0.726860,0.491050,0.716340,0.504670,0.751250,0.479130,0.737380,0.477430,0.723510,0.475720,0.712200,0.490970,0.700900,0.506220,0.670050,0.633780,0.689900,0.624620,0.701320,0.593600,0.681610,0.601640,0.709760,0.615460,0.721040,0.585560,0.732320,0.555660,0.712740,0.562580,0.693170,0.569490,0.728390,0.609690,0.743930,0.581650,0.766830,0.577740,0.786630,0.551560,0.759470,0.553610,0.774420,0.527450,0.748810,0.530410,0.800040,0.524480,0.813460,0.497400,0.789380,0.501280,0.765300,0.505150,0.730640,0.533360,0.712470,0.536310,0.748540,0.504140,0.630560,0.661470,0.650300,0.647630,0.662000,0.612140,0.642400,0.622640,0.673700,0.576650,0.654240,0.583810,0.695020,0.540660,0.677570,0.545020,0.759360,0.488840,0.770180,0.473550,0.777200,0.486560,0.789110,0.467960,0.801150,0.482130,0.825090,0.477690,0.836730,0.457980,0.812920,0.462970,0.844180,0.435390,0.826190,0.437410,0.851640,0.412790,0.839460,0.411850,0.827280,0.410900,0.808190,0.439430,0.856580,0.334040,0.854110,0.373420,0.867420,0.371960,0.869290,0.333900,0.865550,0.410010,0.879470,0.407220,0.880740,0.370490,0.882010,0.333760,0.834860,0.337670,0.831070,0.374290,0.842590,0.373850,0.845720,0.335860,0.815780,0.280730,0.825320,0.309200,0.836450,0.301070,0.827190,0.266280,0.847590,0.292940,0.838610,0.251830,0.811270,0.174620,0.776730,0.165580,0.791850,0.201630,0.824940,0.213230,0.742200,0.156530,0.758760,0.190030,0.775330,0.223520,0.806970,0.237680,0.622680,0.116560,0.645720,0.132750,0.654510,0.118170,0.617670,0.131930,0.636930,0.147330,0.656190,0.162720,0.668760,0.148940,0.681340,0.135150,0.692330,0.163420,0.725540,0.176730,0.711770,0.145840,0.703320,0.191690,0.739320,0.207610,0.702410,0.121810,0.733190,0.130770,0.671630,0.112860,0.651470,0.101990,0.680280,0.163190,0.679750,0.177210,0.866320,0.249220,0.859960,0.213870,0.842450,0.213550,0.852460,0.250530,0.853610,0.178510,0.832440,0.176570,0.904180,0.243890,0.895860,0.210110,0.877910,0.211990,0.885250,0.246560,0.887540,0.176320,0.870570,0.177420,0.932970,0.170190,0.910250,0.173260,0.917040,0.207300,0.938230,0.204500,0.923840,0.241350,0.943500,0.238800,0.780490,0.032690,0.811900,0.042510,0.826930,0.031570,0.788000,0.019580,0.843320,0.052330,0.865860,0.043560,0.888400,0.034780,0.841950,0.020620,0.795510,0.006460,0.676030,0.002420,0.682250,0.012720,0.735120,0.016150,0.735770,0.004440,0.688470,0.023010,0.734480,0.027850,0.641000,0.017390,0.625260,0.006250,0.656740,0.028530,0.666510,0.039800,0.696550,0.034990,0.726800,0.044150,0.757050,0.053310,0.902620,0.101170,0.883990,0.111020,0.897120,0.142140,0.917790,0.135680,0.865360,0.120860,0.876450,0.148590,0.806280,0.090650,0.835820,0.105760,0.854390,0.091260,0.824800,0.071490,0.872970,0.076750,0.847520,0.128710,0.859050,0.153060,0.829690,0.136550,0.841650,0.157530,0.754050,0.114060,0.762000,0.098180,0.783920,0.123120,0.795100,0.106890,0.769940,0.082290,0.797590,0.148870,0.765390,0.139820,0.819620,0.153200,0.806800,0.129840,0.821310,0.117800,0.790920,0.062400,0.896850,0.067760,0.927850,0.091960,0.953090,0.082740,0.920740,0.058760,0.942190,0.126850,0.956530,0.161750,0.980090,0.153300,0.966590,0.118020,0.952130,0.325620,0.971760,0.323490,0.967820,0.278150,0.947810,0.282210,0.991400,0.321360,0.987820,0.274080,0.984250,0.226790,0.963870,0.232800,0.960200,0.197270,0.982170,0.190050,0.915350,0.328920,0.933740,0.327270,0.928790,0.284310,0.909760,0.286410,0.898680,0.331340,0.891960,0.288950,0.874160,0.291490,0.860880,0.292220,0.899050,0.403180,0.898860,0.367260,0.918630,0.399130,0.916990,0.364030,0.766430,0.811420,0.752710,0.801900,0.737930,0.809970,0.744700,0.822000,0.738990,0.792380,0.731170,0.797930,0.723350,0.803480,0.723160,0.818030,0.722980,0.832580,0.716880,0.801680,0.713980,0.815860,0.710420,0.799880,0.704810,0.813680,0.699200,0.827480,0.711090,0.830030,0.661360,0.840800,0.670690,0.845070,0.673520,0.830950,0.664630,0.827220,0.680030,0.849330,0.682420,0.834680,0.684810,0.820030,0.676350,0.816830,0.667900,0.813630,0.688960,0.842270,0.692000,0.823760,0.685920,0.860780,0.691820,0.872230,0.695510,0.849860,0.700620,0.936400,0.710110,0.941520,0.713060,0.918870,0.703540,0.912970,0.719610,0.946640,0.722580,0.924770,0.725550,0.902890,0.716000,0.896210,0.706460,0.889530,0.685670,0.908700,0.680850,0.891980,0.673050,0.899060,0.677820,0.923100,0.676030,0.875260,0.668290,0.875020,0.660550,0.874770,0.665260,0.906130,0.669980,0.937490,0.691670,0.971740,0.696140,0.954070,0.686980,0.938590,0.680820,0.954620,0.693140,0.922550,0.688740,0.890470,0.696140,0.901720,0.699140,0.880880,0.698850,0.974620,0.704480,0.958070,0.706030,0.977490,0.712820,0.962070,0.723770,0.872340,0.714720,0.861060,0.732820,0.883610,0.740100,0.864330,0.731540,0.848460,0.705110,0.855460,0.678030,0.862300,0.683380,0.876380,0.669490,0.860040,0.660950,0.857790,0.646270,0.896970,0.649530,0.922960,0.643010,0.870980,0.625480,0.867180,0.627280,0.887810,0.629080,0.908430,0.643420,0.855810,0.643840,0.840630,0.626320,0.840460,0.625900,0.853820,0.654030,0.812010,0.648930,0.826320,0.640160,0.810390,0.633240,0.825430,0.724490,0.694740,0.703610,0.701130,0.697380,0.717140,0.718740,0.712170,0.682730,0.707520,0.676020,0.722100,0.669310,0.736680,0.691150,0.733140,0.713000,0.729600,0.614080,0.822800,0.603960,0.839040,0.624210,0.806560,0.608260,0.802720,0.594930,0.820170,0.581610,0.837610,0.900950,0.880160,0.890080,0.850020,0.873660,0.845490,0.886290,0.882630,0.879220,0.819870,0.861030,0.808350,0.842850,0.796830,0.857240,0.840970,0.871640,0.885100,0.927680,0.788260,0.921930,0.754720,0.893080,0.729020,0.889290,0.764780,0.916190,0.721180,0.896870,0.693270,0.877560,0.665350,0.864230,0.703320,0.850910,0.741290,0.823420,0.647610,0.819360,0.678780,0.841800,0.691050,0.850490,0.656480,0.815310,0.709940,0.833110,0.725620,0.769240,0.690780,0.772410,0.667620,0.751010,0.670710,0.746860,0.692760,0.729610,0.673800,0.814060,0.745600,0.792180,0.736070,0.800980,0.757100,0.828450,0.771220,0.770310,0.726540,0.773510,0.742990,0.776710,0.759430,0.809780,0.778130,0.749410,0.839900,0.767280,0.831340,0.754120,0.857800,0.768140,0.851260,0.812600,0.848380,0.789510,0.829900,0.786870,0.845820,0.806460,0.860290,0.784230,0.861730,0.800330,0.872200,0.825010,0.829050,0.839490,0.860040,0.848360,0.850500,0.833930,0.812940,0.853970,0.891020,0.862800,0.888060,0.809530,0.889910,0.817130,0.881540,0.818730,0.907620,0.827790,0.902790,0.836860,0.897950,0.824730,0.873170,0.823630,0.928380,0.832950,0.929980,0.828540,0.949140,0.838110,0.957160,0.847690,0.965180,0.842270,0.931570,0.851460,0.932660,0.845410,0.894490,0.857500,0.970840,0.867320,0.976490,0.860640,0.933760,0.832110,0.866600,0.818800,0.838720,0.800110,0.806900,0.794810,0.818400,0.775220,0.784740,0.770820,0.798080,0.680730,0.773260,0.688670,0.781750,0.704720,0.762350,0.696860,0.751430,0.696610,0.790240,0.712580,0.773260,0.728550,0.756280,0.720770,0.742940,0.690710,0.805140,0.682510,0.799290,0.674310,0.793450,0.703510,0.795060,0.697760,0.809410,0.727430,0.792920,0.723690,0.787910,0.737980,0.784160,0.736970,0.775940,0.754400,0.791120,0.756090,0.780340,0.718130,0.780590,0.732760,0.766110,0.754360,0.769100,0.752630,0.757860,0.775960,0.772090,0.804940,0.792520,0.747140,0.742970,0.741650,0.728070,0.769770,0.708660,0.744260,0.710420,0.799500,0.646030,0.795890,0.673200,0.792270,0.700360,0.792230,0.718220,0.814680,0.727770,0.830780,0.748420,0.846880,0.769060,0.875160,0.786570,0.903450,0.804070,0.908440,0.840810,0.926800,0.831590,0.913430,0.877540,0.925920,0.874920,0.932440,0.971420,0.929180,0.923170,0.916990,0.925720,0.920550,0.973900,0.904810,0.928270,0.908670,0.976380,0.947100,0.865130,0.937390,0.826700,0.933560,0.842770,0.936510,0.870030,0.973090,0.966760,0.970960,0.908570,0.960400,0.912580,0.962830,0.967410,0.968840,0.850370,0.957970,0.857750,0.949840,0.916600,0.952580,0.968060,0.939510,0.919890,0.942510,0.969740,0.870000,0.933890,0.877190,0.979720,0.887070,0.982950,0.879350,0.934030,0.892080,0.931150,0.897870,0.979670,0.982160,0.900600,0.981880,0.844390,0.982430,0.956800,0.991780,0.946840,0.993350,0.892620,0.994930,0.838400,0.960860,0.769420,0.964850,0.809900,0.979370,0.800230,0.976850,0.756070,0.993890,0.790560,0.992850,0.742720,0.951120,0.818300,0.944270,0.778840,0.960410,0.705560,0.938300,0.713370,0.941280,0.746110,0.960630,0.737490,0.528590,0.833430,0.528180,0.820980,0.514080,0.825290,0.514290,0.837080,0.527770,0.808520,0.513880,0.813490,0.499990,0.818460,0.499990,0.829600,0.499990,0.840730,0.563820,0.816990,0.561200,0.804520,0.544690,0.812750,0.546200,0.825210,0.558590,0.792040,0.543180,0.800280,0.551280,0.836050,0.572710,0.827300,0.529840,0.844790,0.531100,0.856150,0.556350,0.846880,0.569730,0.797190,0.572690,0.787290,0.575310,0.799760,0.586800,0.782530,0.585120,0.809970,0.597530,0.792630,0.616900,0.715040,0.634900,0.701710,0.642600,0.674670,0.623730,0.688260,0.652900,0.688380,0.661470,0.661080,0.709660,0.680560,0.715720,0.659990,0.696710,0.667110,0.689720,0.687320,0.722060,0.634840,0.703230,0.641290,0.674800,0.677750,0.682350,0.651190,0.641210,0.727530,0.661970,0.717530,0.668380,0.697640,0.647050,0.707960,0.612080,0.755300,0.626640,0.741420,0.630770,0.721570,0.614490,0.735170,0.600930,0.747980,0.599440,0.768920,0.602430,0.727050,0.587970,0.739050,0.587380,0.760790,0.641620,0.737680,0.658820,0.729890,0.642030,0.747830,0.655670,0.742260,0.679890,0.752320,0.662910,0.753200,0.656520,0.769720,0.668620,0.771490,0.648340,0.790060,0.632980,0.788820,0.641750,0.771070,0.626990,0.772420,0.617620,0.787570,0.661320,0.791750,0.648710,0.756670,0.634510,0.760130,0.630570,0.750770,0.619530,0.763860,0.608530,0.778250,0.560850,0.756930,0.559720,0.774490,0.573550,0.767640,0.574410,0.747990,0.542630,0.670910,0.537390,0.686660,0.548450,0.686370,0.561390,0.663470,0.532160,0.702410,0.535510,0.709270,0.538860,0.716130,0.559510,0.686080,0.580160,0.656020,0.499990,0.716120,0.516070,0.709270,0.518690,0.694200,0.499990,0.701730,0.521310,0.679130,0.499990,0.687340,0.517750,0.718100,0.519420,0.726940,0.499990,0.726930,0.499990,0.737740,0.536810,0.746090,0.534090,0.762450,0.549660,0.749150,0.553210,0.730420,0.531380,0.778810,0.546110,0.767870,0.565230,0.735840,0.569610,0.714740,0.598750,0.688460,0.593360,0.713760,0.608540,0.701010,0.614650,0.674970,0.616310,0.621290,0.607530,0.654880,0.624960,0.638760,0.635270,0.602550,0.579290,0.724800,0.584180,0.701600,0.574880,0.685380,0.591200,0.670130,0.598230,0.638660,0.537830,0.731110,0.556360,0.708250,0.518910,0.740850,0.499990,0.750590,0.499990,0.763430,0.518400,0.754760,0.499990,0.778000,0.517040,0.770230,0.499990,0.792570,0.515680,0.785690,0.544640,0.784080,0.529570,0.793670,0.499990,0.805520,0.514780,0.799590,0.514910,0.848300,0.499990,0.851800,0.499990,0.862860,0.515540,0.859510,0.516150,0.872100,0.532320,0.869450,0.499990,0.874750,0.499990,0.886640,0.516770,0.884700,0.533550,0.882750,0.557030,0.861370,0.581730,0.853280,0.557700,0.875850,0.581860,0.868940,0.603680,0.887500,0.603700,0.906930,0.603670,0.868060,0.580090,0.887180,0.578320,0.905420,0.603810,0.853550,0.556620,0.892250,0.555550,0.908650,0.533160,0.897320,0.532780,0.911880,0.516570,0.898080,0.516380,0.911470,0.499990,0.898850,0.499990,0.911050,0.592500,0.110760,0.605080,0.121350,0.610030,0.107140,0.597380,0.097720,0.562530,0.064520,0.571260,0.054950,0.577720,0.069290,0.586280,0.061060,0.555770,0.089060,0.559150,0.076790,0.570500,0.094460,0.574110,0.081880,0.589990,0.076980,0.598250,0.068680,0.581500,0.102610,0.585740,0.089800,0.886420,0.557740,0.918920,0.549510,0.923250,0.515840,0.896010,0.522040,0.951430,0.541280,0.950490,0.509630,0.949550,0.477970,0.927580,0.482160,0.905610,0.486340,0.867840,0.450650,0.891450,0.446940,0.895250,0.425060,0.873650,0.428940,0.915060,0.443220,0.916840,0.421180,0.852280,0.454320,0.858920,0.432160,0.835480,0.494910,0.843880,0.474610,0.857500,0.492410,0.862670,0.471530,0.881550,0.489380,0.886500,0.468160,0.910330,0.464780,0.784840,0.581010,0.802850,0.584270,0.827620,0.569220,0.807120,0.560390,0.801180,0.615150,0.825520,0.608420,0.853750,0.609980,0.857020,0.563480,0.881990,0.611550,0.821300,0.527650,0.842560,0.530820,0.869280,0.526430,0.938140,0.394050,0.935940,0.360660,0.957660,0.388960,0.954890,0.357290,0.935080,0.438040,0.936610,0.416040,0.955100,0.432850,0.956380,0.410910,0.976290,0.386630,0.974030,0.355060,0.994930,0.384290,0.993160,0.352830,0.971140,0.473290,0.972310,0.451030,0.952320,0.455410,0.992740,0.468610,0.992290,0.446640,0.991850,0.424660,0.973470,0.428760,0.974880,0.407690,0.993390,0.404480,0.931330,0.460100,0.927860,0.681510,0.917420,0.649640,0.958850,0.669750,0.957290,0.633930,0.975170,0.625440,0.973480,0.581550,0.954360,0.587610,0.993060,0.616950,0.992600,0.575490,0.992140,0.534020,0.971780,0.537650,0.918170,0.599580,0.992900,0.687470,0.976650,0.696520,0.976750,0.726300,0.992870,0.715100,0.975910,0.660980,0.992980,0.652210,0.971460,0.505470,0.992440,0.501320,0.738190,0.259140,0.758390,0.258690,0.748860,0.233150,0.720750,0.225420,0.778600,0.258240,0.776960,0.240880,0.802080,0.253580,0.797190,0.269490,0.252950,0.603910,0.237420,0.601620,0.241110,0.625140,0.259090,0.628390,0.221890,0.599320,0.223140,0.621890,0.224390,0.644450,0.244810,0.648660,0.265240,0.652860,0.381790,0.067940,0.373410,0.074500,0.379210,0.083720,0.389750,0.076310,0.365040,0.081060,0.368660,0.091130,0.372290,0.101190,0.385000,0.092930,0.397720,0.084670,0.352030,0.055160,0.323690,0.051070,0.313170,0.061920,0.345480,0.063380,0.295350,0.046970,0.280860,0.060450,0.266370,0.073930,0.302650,0.072760,0.338940,0.071590,0.338060,0.090560,0.351550,0.085810,0.355950,0.077790,0.338500,0.081080,0.360360,0.069770,0.275790,0.105000,0.306920,0.097780,0.304790,0.085270,0.271080,0.089470,0.369470,0.061880,0.393460,0.060380,0.405140,0.052820,0.378580,0.053990,0.391740,0.045000,0.363500,0.044610,0.419980,0.045390,0.434830,0.037950,0.404900,0.036000,0.374970,0.034050,0.433810,0.026180,0.400220,0.022070,0.467410,0.030300,0.462730,0.016360,0.425480,0.010080,0.458940,0.083660,0.479460,0.082060,0.477880,0.070390,0.455780,0.071700,0.476310,0.058720,0.452630,0.059740,0.443730,0.048850,0.471860,0.044510,0.276470,0.475720,0.262600,0.477430,0.273120,0.491050,0.287770,0.490970,0.248730,0.479130,0.258460,0.491130,0.268200,0.503120,0.283640,0.504670,0.299080,0.506220,0.267660,0.555660,0.278940,0.585560,0.298650,0.593600,0.287230,0.562580,0.290220,0.615460,0.310070,0.624620,0.329930,0.633780,0.318370,0.601640,0.306810,0.569490,0.213350,0.551560,0.233150,0.577740,0.256040,0.581650,0.240500,0.553610,0.271580,0.609690,0.186520,0.497400,0.199930,0.524480,0.225550,0.527450,0.210600,0.501280,0.251170,0.530410,0.234680,0.505150,0.269330,0.533360,0.251440,0.504140,0.287500,0.536310,0.337970,0.612140,0.326270,0.576650,0.349670,0.647630,0.369420,0.661470,0.357580,0.622640,0.345740,0.583810,0.304950,0.540660,0.322410,0.545020,0.240620,0.488840,0.222770,0.486560,0.229800,0.473550,0.210870,0.467960,0.163250,0.457980,0.174880,0.477690,0.198830,0.482130,0.187060,0.462970,0.172700,0.410900,0.160520,0.411850,0.173790,0.437410,0.191780,0.439430,0.148340,0.412790,0.155790,0.435390,0.120510,0.407220,0.134420,0.410010,0.132550,0.371960,0.119240,0.370490,0.145870,0.373420,0.143400,0.334040,0.130680,0.333900,0.117970,0.333760,0.157390,0.373850,0.168910,0.374290,0.165120,0.337670,0.154260,0.335860,0.163520,0.301070,0.152380,0.292940,0.174660,0.309200,0.184200,0.280730,0.172780,0.266280,0.161370,0.251830,0.224650,0.223520,0.241210,0.190030,0.208120,0.201630,0.193010,0.237680,0.257780,0.156530,0.223240,0.165580,0.188710,0.174620,0.175040,0.213230,0.343790,0.162720,0.363050,0.147330,0.354250,0.132750,0.331210,0.148940,0.382310,0.131930,0.377300,0.116560,0.345460,0.118170,0.318640,0.135150,0.260650,0.207610,0.274430,0.176730,0.296660,0.191690,0.307650,0.163420,0.288210,0.145840,0.328350,0.112860,0.297560,0.121810,0.266780,0.130770,0.348500,0.101990,0.319690,0.163190,0.320220,0.177210,0.167540,0.176570,0.157520,0.213550,0.146370,0.178510,0.140010,0.213870,0.133660,0.249220,0.147510,0.250530,0.129400,0.177420,0.122060,0.211990,0.112440,0.176320,0.104120,0.210110,0.095800,0.243890,0.114730,0.246560,0.082930,0.207300,0.076140,0.241350,0.089720,0.173260,0.067010,0.170190,0.061740,0.204500,0.056480,0.238800,0.111580,0.034780,0.134120,0.043560,0.173050,0.031570,0.158020,0.020620,0.156660,0.052330,0.188070,0.042510,0.219490,0.032690,0.211980,0.019580,0.204470,0.006460,0.265500,0.027850,0.264850,0.016150,0.311510,0.023010,0.317730,0.012720,0.323950,0.002420,0.264210,0.004440,0.343240,0.028530,0.358970,0.017390,0.374710,0.006250,0.303430,0.034990,0.333460,0.039800,0.273180,0.044150,0.242930,0.053310,0.123530,0.148590,0.102850,0.142140,0.134620,0.120860,0.115990,0.111020,0.097360,0.101170,0.082180,0.135680,0.145580,0.091260,0.127010,0.076750,0.164160,0.105760,0.193700,0.090650,0.175180,0.071490,0.158330,0.157530,0.140930,0.153060,0.170290,0.136550,0.152450,0.128710,0.204880,0.106890,0.237980,0.098180,0.230030,0.082290,0.216060,0.123120,0.245920,0.114060,0.234580,0.139820,0.202380,0.148870,0.193170,0.129840,0.180350,0.153200,0.178660,0.117800,0.209050,0.062400,0.046890,0.082740,0.072120,0.091960,0.103120,0.067760,0.079230,0.058760,0.019890,0.153300,0.043450,0.161750,0.057780,0.126850,0.033390,0.118020,0.015730,0.226790,0.012150,0.274080,0.032160,0.278150,0.036100,0.232800,0.008580,0.321360,0.028210,0.323490,0.047850,0.325620,0.052160,0.282210,0.017810,0.190050,0.039770,0.197270,0.071190,0.284310,0.066240,0.327270,0.084630,0.328920,0.090210,0.286410,0.108010,0.288950,0.101300,0.331340,0.125810,0.291490,0.139100,0.292220,0.082990,0.364030,0.101110,0.367260,0.081350,0.399130,0.100930,0.403180,0.276630,0.803480,0.268810,0.797930,0.262040,0.809970,0.276810,0.818030,0.260990,0.792380,0.247270,0.801900,0.233550,0.811420,0.255270,0.822000,0.277000,0.832580,0.300780,0.827480,0.295170,0.813680,0.285990,0.815860,0.288890,0.830030,0.289560,0.799880,0.283090,0.801680,0.315170,0.820030,0.317560,0.834680,0.326450,0.830950,0.323620,0.816830,0.319950,0.849330,0.329280,0.845070,0.338620,0.840800,0.335350,0.827220,0.332080,0.813630,0.308160,0.872230,0.314050,0.860780,0.311010,0.842270,0.304470,0.849860,0.307970,0.823760,0.274430,0.902890,0.277400,0.924770,0.286920,0.918870,0.283970,0.896210,0.280370,0.946640,0.289860,0.941520,0.299360,0.936400,0.296440,0.912970,0.293520,0.889530,0.339430,0.874770,0.331690,0.875020,0.326920,0.899060,0.334710,0.906130,0.323950,0.875260,0.319130,0.891980,0.314310,0.908700,0.322150,0.923100,0.330000,0.937490,0.306830,0.922550,0.312990,0.938590,0.303830,0.954070,0.308310,0.971740,0.319150,0.954620,0.303830,0.901720,0.311230,0.890470,0.300840,0.880880,0.287160,0.962070,0.295490,0.958070,0.293950,0.977490,0.301130,0.974620,0.259880,0.864330,0.267150,0.883610,0.276200,0.872340,0.268440,0.848460,0.285260,0.861060,0.294860,0.855460,0.316590,0.876380,0.321950,0.862300,0.330480,0.860040,0.339020,0.857790,0.374500,0.867180,0.356960,0.870980,0.353700,0.896970,0.372700,0.887810,0.350450,0.922960,0.370900,0.908430,0.373660,0.840460,0.356140,0.840630,0.356550,0.855810,0.374080,0.853820,0.366740,0.825430,0.351040,0.826320,0.359820,0.810390,0.345950,0.812010,0.330670,0.736680,0.323960,0.722100,0.302590,0.717140,0.308820,0.733140,0.317250,0.707520,0.296370,0.701130,0.275490,0.694740,0.281230,0.712170,0.286980,0.729600,0.391720,0.802720,0.375770,0.806560,0.385890,0.822800,0.405040,0.820170,0.396010,0.839040,0.418370,0.837610,0.157130,0.796830,0.138940,0.808350,0.126310,0.845490,0.142730,0.840970,0.120760,0.819870,0.109890,0.850020,0.099030,0.880160,0.113680,0.882630,0.128340,0.885100,0.122420,0.665350,0.103100,0.693270,0.106890,0.729020,0.135740,0.703320,0.083790,0.721180,0.078040,0.754720,0.072300,0.788260,0.110680,0.764780,0.149070,0.741290,0.166870,0.725620,0.158180,0.691050,0.184670,0.709940,0.180610,0.678780,0.176560,0.647610,0.149490,0.656480,0.248960,0.670710,0.270360,0.673800,0.227560,0.667620,0.230740,0.690780,0.253110,0.692760,0.223270,0.759430,0.226470,0.742990,0.198990,0.757100,0.190200,0.778130,0.229670,0.726540,0.207790,0.736070,0.185920,0.745600,0.171520,0.771220,0.250560,0.839900,0.245860,0.857800,0.232690,0.831340,0.231840,0.851260,0.213100,0.845820,0.215740,0.861730,0.210460,0.829900,0.187380,0.848380,0.193510,0.860290,0.199650,0.872200,0.137170,0.888060,0.151610,0.850500,0.146010,0.891020,0.160490,0.860040,0.174970,0.829050,0.166050,0.812940,0.163120,0.897950,0.172180,0.902790,0.182850,0.881540,0.175250,0.873170,0.181250,0.907620,0.190450,0.889910,0.152290,0.965180,0.161860,0.957160,0.167020,0.929980,0.157700,0.931570,0.171440,0.949140,0.176340,0.928380,0.132660,0.976490,0.142470,0.970840,0.148520,0.932660,0.139330,0.933760,0.154560,0.894490,0.167870,0.866600,0.181170,0.838720,0.229150,0.798080,0.205160,0.818400,0.224760,0.784740,0.199860,0.806900,0.271430,0.756280,0.287400,0.773260,0.295250,0.762350,0.279200,0.742940,0.303370,0.790240,0.311310,0.781750,0.319250,0.773260,0.303110,0.751430,0.317460,0.799290,0.325660,0.793450,0.309270,0.805140,0.302220,0.809410,0.296460,0.795060,0.272540,0.792920,0.262000,0.784160,0.276280,0.787910,0.263010,0.775940,0.245570,0.791120,0.243880,0.780340,0.281840,0.780590,0.267220,0.766110,0.245610,0.769100,0.224010,0.772090,0.247350,0.757860,0.195030,0.792520,0.252830,0.742970,0.258320,0.728070,0.255720,0.710420,0.230200,0.708660,0.204090,0.673200,0.207700,0.700360,0.200470,0.646030,0.185290,0.727770,0.207750,0.718220,0.169190,0.748420,0.153100,0.769060,0.096530,0.804070,0.124810,0.786570,0.091530,0.840810,0.086540,0.877540,0.073180,0.831590,0.074060,0.874920,0.082980,0.925720,0.095170,0.928270,0.070800,0.923170,0.067540,0.971420,0.079420,0.973900,0.091310,0.976380,0.062590,0.826700,0.066410,0.842770,0.052880,0.865130,0.063470,0.870030,0.042010,0.857750,0.039570,0.912580,0.050140,0.916600,0.031140,0.850370,0.029010,0.908570,0.026890,0.966760,0.037140,0.967410,0.047400,0.968060,0.060470,0.919890,0.057470,0.969740,0.112910,0.982950,0.122780,0.979720,0.129980,0.933890,0.120620,0.934030,0.107890,0.931150,0.102110,0.979670,0.008200,0.946840,0.017540,0.956800,0.017820,0.900600,0.006620,0.892620,0.018090,0.844390,0.005050,0.838400,0.020610,0.800230,0.006090,0.790560,0.035130,0.809900,0.039120,0.769420,0.023120,0.756070,0.007130,0.742720,0.048860,0.818300,0.055710,0.778840,0.058690,0.746110,0.061680,0.713370,0.039570,0.705560,0.039340,0.737490,0.486100,0.813490,0.485890,0.825290,0.472210,0.808520,0.471800,0.820980,0.471390,0.833430,0.485690,0.837080,0.456800,0.800280,0.455280,0.812750,0.441390,0.792040,0.438770,0.804520,0.436160,0.816990,0.453770,0.825210,0.468880,0.856150,0.470130,0.844790,0.448700,0.836050,0.443620,0.846880,0.427260,0.827300,0.430240,0.797190,0.424670,0.799760,0.427280,0.787290,0.413180,0.782530,0.402450,0.792630,0.414850,0.809970,0.338500,0.661080,0.357370,0.674670,0.347080,0.688380,0.365080,0.701710,0.383080,0.715040,0.376250,0.688260,0.303270,0.667110,0.284250,0.659990,0.290310,0.680560,0.310260,0.687320,0.277920,0.634840,0.296740,0.641290,0.317620,0.651190,0.325170,0.677750,0.331590,0.697640,0.338010,0.717530,0.358770,0.727530,0.352920,0.707960,0.369200,0.721570,0.373330,0.741420,0.387900,0.755300,0.385490,0.735170,0.412010,0.739050,0.397540,0.727050,0.399040,0.747980,0.412590,0.760790,0.400540,0.768920,0.344310,0.742260,0.341160,0.729890,0.357950,0.747830,0.358360,0.737680,0.343460,0.769720,0.337060,0.753200,0.320090,0.752320,0.331350,0.771490,0.372990,0.772420,0.358220,0.771070,0.366990,0.788820,0.382350,0.787570,0.351640,0.790060,0.338650,0.791750,0.365470,0.760130,0.351260,0.756670,0.369400,0.750770,0.380440,0.763860,0.391440,0.778250,0.426420,0.767640,0.440260,0.774490,0.439130,0.756930,0.425570,0.747990,0.461120,0.716130,0.464470,0.709270,0.451520,0.686370,0.440470,0.686080,0.467820,0.702410,0.462580,0.686660,0.457350,0.670910,0.438580,0.663470,0.419820,0.656020,0.481280,0.694200,0.478670,0.679130,0.483900,0.709270,0.482230,0.718100,0.480550,0.726940,0.453860,0.767870,0.450310,0.749150,0.434750,0.735840,0.468600,0.778810,0.465880,0.762450,0.463170,0.746090,0.446770,0.730420,0.430370,0.714740,0.391430,0.701010,0.406620,0.713760,0.401230,0.688460,0.385320,0.674970,0.375010,0.638760,0.392450,0.654880,0.383670,0.621290,0.364700,0.602550,0.420680,0.724800,0.415800,0.701600,0.408770,0.670130,0.425090,0.685380,0.401740,0.638660,0.443620,0.708250,0.462140,0.731110,0.481060,0.740850,0.481580,0.754760,0.484290,0.785690,0.482930,0.770230,0.455330,0.784080,0.470400,0.793670,0.485190,0.799590,0.485060,0.848300,0.484430,0.859510,0.483820,0.872100,0.483210,0.884700,0.467650,0.869450,0.466430,0.882750,0.442950,0.861370,0.442270,0.875850,0.418240,0.853280,0.418120,0.868940,0.396310,0.868060,0.396290,0.887500,0.419890,0.887180,0.396280,0.906930,0.421660,0.905420,0.396160,0.853550,0.443350,0.892250,0.466810,0.897320,0.444430,0.908650,0.467200,0.911880,0.483400,0.898080,0.483590,0.911470,0.389950,0.107140,0.394890,0.121350,0.407480,0.110760,0.402600,0.097720,0.413700,0.061060,0.428710,0.054950,0.422260,0.069290,0.437440,0.064520,0.425870,0.081880,0.440820,0.076790,0.429480,0.094460,0.444210,0.089060,0.401720,0.068680,0.409990,0.076980,0.414230,0.089800,0.418480,0.102610,0.050430,0.477970,0.049490,0.509630,0.076720,0.515840,0.072400,0.482160,0.048550,0.541280,0.081050,0.549510,0.113560,0.557740,0.103960,0.522040,0.094370,0.486340,0.083130,0.421180,0.104730,0.425060,0.084920,0.443220,0.108530,0.446940,0.132140,0.450650,0.126320,0.428940,0.141060,0.432160,0.147690,0.454320,0.137310,0.471530,0.156090,0.474610,0.142480,0.492410,0.164500,0.494910,0.089640,0.464780,0.113470,0.468160,0.118420,0.489380,0.172360,0.569220,0.197120,0.584270,0.215130,0.581010,0.192850,0.560390,0.198800,0.615150,0.174460,0.608420,0.146220,0.609980,0.117990,0.611550,0.142960,0.563480,0.178670,0.527650,0.157420,0.530820,0.130690,0.526430,0.045080,0.357290,0.064030,0.360660,0.042320,0.388960,0.061830,0.394050,0.043600,0.410910,0.063360,0.416040,0.044880,0.432850,0.064900,0.438040,0.006810,0.352830,0.025950,0.355060,0.005050,0.384290,0.023680,0.386630,0.008130,0.424660,0.007680,0.446640,0.027670,0.451030,0.026500,0.428760,0.007240,0.468610,0.028830,0.473290,0.047650,0.455410,0.006590,0.404480,0.025090,0.407690,0.068650,0.460100,0.072110,0.681510,0.041130,0.669750,0.082550,0.649640,0.042690,0.633930,0.007840,0.534020,0.007380,0.575490,0.026500,0.581550,0.028190,0.537650,0.006920,0.616950,0.024800,0.625440,0.045620,0.587610,0.081800,0.599580,0.023220,0.726300,0.023320,0.696520,0.007080,0.687470,0.007100,0.715100,0.024060,0.660980,0.007000,0.652210,0.007540,0.501320,0.028510,0.505470,0.223010,0.240880,0.251120,0.233150,0.221380,0.258240,0.241580,0.258690,0.261790,0.259140,0.279220,0.225420,0.202790,0.269490,0.197900,0.253580,0.778920,0.376650,0.779750,0.376740,0.779710,0.364160,0.778770,0.364880,0.780580,0.376830,0.780650,0.363440,0.780730,0.350040,0.779670,0.351570,0.778620,0.353100,0.783650,0.345010,0.782480,0.338970,0.781760,0.339520,0.783010,0.345670,0.781310,0.332920,0.780510,0.333370,0.779720,0.333820,0.781040,0.340070,0.782370,0.346320,0.781550,0.348180,0.780140,0.341420,0.779230,0.342770,0.778730,0.334660,0.777740,0.335490,0.779380,0.328450,0.778470,0.328770,0.780300,0.328130,0.779290,0.323340,0.778250,0.323530,0.777220,0.323720,0.769070,0.315940,0.769720,0.316840,0.772230,0.317230,0.772300,0.316310,0.770380,0.317740,0.772150,0.318150,0.773930,0.318550,0.774730,0.317620,0.775540,0.316680,0.775570,0.321140,0.776490,0.320580,0.777410,0.320010,0.775080,0.322180,0.775650,0.323990,0.774010,0.321400,0.774090,0.324250,0.777190,0.329320,0.775910,0.329870,0.777960,0.344170,0.776680,0.345570,0.776240,0.336760,0.774750,0.338030,0.772560,0.330150,0.773650,0.334090,0.774780,0.331980,0.773320,0.327200,0.756320,0.326030,0.758520,0.324860,0.758720,0.323020,0.755950,0.325240,0.760720,0.323690,0.761490,0.320790,0.762260,0.317890,0.758920,0.321170,0.755580,0.324450,0.755350,0.332140,0.755830,0.329090,0.755090,0.328920,0.754230,0.332590,0.754340,0.328740,0.753110,0.333030,0.769960,0.398630,0.769300,0.397060,0.763000,0.403480,0.763570,0.406380,0.768650,0.395480,0.762430,0.400570,0.756220,0.405650,0.756700,0.409890,0.757190,0.414130,0.771050,0.401000,0.770500,0.399820,0.764040,0.408850,0.764510,0.411320,0.757580,0.417890,0.757980,0.421640,0.772090,0.401940,0.771570,0.401470,0.765660,0.411570,0.766800,0.411810,0.759750,0.421660,0.761520,0.421670,0.784710,0.343820,0.784180,0.344420,0.783390,0.352930,0.783770,0.360200,0.782600,0.361450,0.782840,0.376570,0.781710,0.376700,0.781630,0.362440,0.776640,0.389090,0.777460,0.389260,0.775810,0.388920,0.774440,0.387640,0.775120,0.388280,0.776980,0.376630,0.772810,0.386060,0.773620,0.386850,0.777950,0.376640,0.767620,0.393720,0.761120,0.398280,0.766600,0.391960,0.759820,0.396000,0.753040,0.400030,0.754630,0.402840,0.775030,0.376550,0.770810,0.384260,0.771810,0.385160,0.776000,0.376590,0.756090,0.339080,0.757070,0.338260,0.755650,0.335420,0.754600,0.336060,0.758050,0.337430,0.756700,0.334790,0.763010,0.341100,0.763490,0.339920,0.761200,0.338180,0.760530,0.339270,0.763970,0.338740,0.761870,0.337100,0.759780,0.335450,0.758910,0.336440,0.766010,0.342920,0.765780,0.341590,0.764630,0.340760,0.764510,0.342010,0.765550,0.340260,0.764760,0.339500,0.762480,0.343970,0.762740,0.342540,0.759900,0.340400,0.759280,0.341530,0.764860,0.344130,0.766970,0.345730,0.765210,0.346250,0.767940,0.348530,0.772360,0.334860,0.773360,0.338980,0.771350,0.330750,0.770150,0.331340,0.771060,0.335630,0.771980,0.339920,0.774050,0.347750,0.775360,0.346660,0.776120,0.355580,0.777370,0.354340,0.775310,0.366330,0.774080,0.366550,0.776550,0.366110,0.774630,0.356060,0.773140,0.356540,0.777660,0.365490,0.770380,0.340290,0.772500,0.348180,0.768790,0.340650,0.770960,0.348600,0.768930,0.332710,0.769650,0.336500,0.767710,0.334080,0.768250,0.337370,0.765650,0.338320,0.765040,0.337370,0.766270,0.339270,0.767000,0.338280,0.766550,0.337140,0.766110,0.335990,0.764300,0.334540,0.763080,0.335820,0.762490,0.333080,0.761130,0.334270,0.764900,0.333110,0.762890,0.331170,0.766910,0.335040,0.765500,0.331670,0.763300,0.329260,0.757580,0.328130,0.756650,0.331390,0.757950,0.330630,0.759330,0.327160,0.757780,0.333920,0.758860,0.333040,0.760880,0.332110,0.760620,0.329950,0.771490,0.320840,0.770830,0.323530,0.768970,0.320270,0.767570,0.322800,0.768280,0.318600,0.767580,0.316930,0.766100,0.317910,0.766830,0.320360,0.764180,0.317900,0.764160,0.320580,0.764140,0.323250,0.771090,0.327140,0.768860,0.327070,0.762380,0.326600,0.765430,0.326030,0.767180,0.329370,0.767400,0.337250,0.767890,0.339470,0.766830,0.340530,0.767400,0.341790,0.768970,0.347160,0.770540,0.352540,0.219250,0.350040,0.219320,0.363440,0.220260,0.364160,0.220300,0.351570,0.219400,0.376830,0.220230,0.376740,0.221060,0.376650,0.221210,0.364880,0.221360,0.353100,0.220260,0.333820,0.219460,0.333370,0.218210,0.339520,0.218930,0.340070,0.218670,0.332920,0.217500,0.338970,0.216330,0.345010,0.216970,0.345670,0.217610,0.346320,0.219840,0.341420,0.221250,0.334660,0.218430,0.348180,0.220740,0.342770,0.222240,0.335490,0.220690,0.323340,0.219680,0.328130,0.220590,0.328450,0.221720,0.323530,0.221510,0.328770,0.222760,0.323720,0.226050,0.318550,0.227820,0.318150,0.227750,0.317230,0.225240,0.317620,0.229600,0.317740,0.230250,0.316840,0.230910,0.315940,0.227670,0.316310,0.224440,0.316680,0.223480,0.320580,0.222560,0.320010,0.224400,0.321140,0.224900,0.322180,0.225970,0.321400,0.224320,0.323990,0.225890,0.324250,0.222780,0.329320,0.224060,0.329870,0.222020,0.344170,0.223730,0.336760,0.223290,0.345570,0.225230,0.338030,0.225190,0.331980,0.226320,0.334090,0.227420,0.330150,0.226650,0.327200,0.237720,0.317890,0.238490,0.320790,0.241260,0.323020,0.241060,0.321170,0.239260,0.323690,0.241460,0.324860,0.243660,0.326030,0.244030,0.325240,0.244400,0.324450,0.244890,0.328920,0.245630,0.328740,0.244140,0.329090,0.244630,0.332140,0.245750,0.332590,0.246870,0.333030,0.243760,0.405650,0.237540,0.400570,0.236970,0.403480,0.243270,0.409890,0.231330,0.395480,0.230670,0.397060,0.230020,0.398630,0.236400,0.406380,0.242790,0.414130,0.235930,0.408850,0.242390,0.417890,0.229470,0.399820,0.228930,0.401000,0.235460,0.411320,0.242000,0.421640,0.234320,0.411570,0.240230,0.421660,0.228410,0.401470,0.227890,0.401940,0.233170,0.411810,0.238460,0.421670,0.216580,0.352930,0.217370,0.361450,0.215800,0.344420,0.215270,0.343820,0.216200,0.360200,0.217140,0.376570,0.218350,0.362440,0.218270,0.376700,0.224160,0.388920,0.223340,0.389090,0.222510,0.389260,0.224850,0.388280,0.225540,0.387640,0.226350,0.386850,0.227160,0.386060,0.223000,0.376630,0.222030,0.376640,0.246940,0.400030,0.240160,0.396000,0.238850,0.398280,0.245350,0.402840,0.233380,0.391960,0.232350,0.393720,0.228160,0.385160,0.229160,0.384260,0.224950,0.376550,0.223970,0.376590,0.243280,0.334790,0.244330,0.335420,0.241930,0.337430,0.242910,0.338260,0.243890,0.339080,0.245380,0.336060,0.240200,0.335450,0.238100,0.337100,0.238770,0.338180,0.241060,0.336440,0.236010,0.338740,0.236490,0.339920,0.236970,0.341100,0.239450,0.339270,0.235220,0.339500,0.235340,0.340760,0.234430,0.340260,0.234200,0.341590,0.233970,0.342920,0.235470,0.342010,0.240070,0.340400,0.237230,0.342540,0.237500,0.343970,0.240690,0.341530,0.235120,0.344130,0.234770,0.346250,0.233000,0.345730,0.232040,0.348530,0.229830,0.331340,0.228620,0.330750,0.227620,0.334860,0.228910,0.335630,0.226610,0.338980,0.228000,0.339920,0.222610,0.354340,0.224610,0.346660,0.223860,0.355580,0.225930,0.347750,0.223430,0.366110,0.224660,0.366330,0.225350,0.356060,0.225890,0.366550,0.226840,0.356540,0.222320,0.365490,0.229010,0.348600,0.227470,0.348180,0.231190,0.340650,0.229590,0.340290,0.231730,0.337370,0.230320,0.336500,0.232270,0.334080,0.231050,0.332710,0.232980,0.338280,0.233700,0.339270,0.234320,0.338320,0.233420,0.337140,0.234940,0.337370,0.233870,0.335990,0.238840,0.334270,0.236890,0.335820,0.237490,0.333080,0.235680,0.334540,0.233070,0.335040,0.235070,0.333110,0.234470,0.331670,0.237080,0.331170,0.236680,0.329260,0.242030,0.330630,0.243330,0.331390,0.242390,0.328130,0.240640,0.327160,0.242190,0.333920,0.241110,0.333040,0.239100,0.332110,0.239350,0.329950,0.228480,0.320840,0.231000,0.320270,0.229150,0.323530,0.232410,0.322800,0.233880,0.317910,0.232390,0.316930,0.231700,0.318600,0.233140,0.320360,0.235810,0.320580,0.235830,0.323250,0.235800,0.317900,0.228880,0.327140,0.231120,0.327070,0.237590,0.326600,0.234540,0.326030,0.232790,0.329370,0.232080,0.339470,0.232570,0.337250,0.233140,0.340530,0.232580,0.341790,0.231010,0.347160,0.229440,0.352540,0.596340,0.960490,0.596020,0.954560,0.597390,0.954300,0.598230,0.957140,0.595710,0.948620,0.597910,0.951210,0.600120,0.953790,0.587750,0.943900,0.589210,0.954400,0.586280,0.954520,0.584810,0.943060,0.590680,0.964900,0.587740,0.965970,0.584810,0.967030,0.583340,0.954630,0.581880,0.942220,0.611020,0.933550,0.599380,0.938730,0.596130,0.937360,0.607450,0.931650,0.592880,0.935990,0.603890,0.929750,0.622130,0.942990,0.608920,0.945810,0.604150,0.942270,0.616570,0.938270,0.591730,0.946260,0.592620,0.954480,0.593510,0.962700,0.597280,0.973500,0.590940,0.974650,0.579250,0.967870,0.609760,0.979970,0.602630,0.981420,0.595500,0.982860,0.584600,0.975790,0.573700,0.968710,0.600530,0.971980,0.603780,0.970460,0.616890,0.976010,0.613320,0.977990,0.606870,0.967070,0.609970,0.963690,0.623600,0.966880,0.620240,0.971450,0.611440,0.958740,0.612910,0.953790,0.625700,0.953790,0.624650,0.960340,0.610910,0.949800,0.623910,0.948390,0.500000,0.941620,0.506970,0.941700,0.508010,0.957330,0.500000,0.957070,0.513940,0.941770,0.516030,0.957600,0.518130,0.973420,0.509060,0.972970,0.500000,0.972510,0.522110,0.923330,0.525360,0.923880,0.524390,0.932230,0.521060,0.932020,0.528610,0.924420,0.527710,0.932450,0.526820,0.940470,0.523420,0.940590,0.520020,0.940700,0.514570,0.922850,0.518340,0.923090,0.517660,0.932170,0.514250,0.932310,0.516980,0.941240,0.540570,0.923960,0.537530,0.931340,0.532620,0.931900,0.534590,0.924190,0.534490,0.938720,0.530650,0.939600,0.556080,0.970990,0.564360,0.979210,0.557020,0.978720,0.548740,0.969620,0.572650,0.987430,0.565310,0.987810,0.557970,0.988190,0.549690,0.978220,0.541410,0.968250,0.547270,0.989330,0.540930,0.979970,0.536580,0.990470,0.532180,0.981720,0.527780,0.972970,0.534590,0.970610,0.553780,0.940090,0.544130,0.939410,0.549220,0.931950,0.560910,0.932560,0.554300,0.924500,0.568040,0.925030,0.575270,0.925790,0.567140,0.933140,0.582500,0.926550,0.573380,0.933710,0.564260,0.940860,0.559020,0.940480,0.579620,0.976620,0.569400,0.969240,0.589840,0.984000,0.584180,0.985140,0.574640,0.977460,0.565100,0.969770,0.560590,0.970380,0.569500,0.978340,0.578410,0.986290,0.587950,0.927160,0.578250,0.934130,0.593410,0.927770,0.583130,0.934540,0.572860,0.941310,0.568560,0.941090,0.598650,0.928760,0.588010,0.935270,0.577370,0.941770,0.578310,0.954820,0.573280,0.955010,0.568980,0.955170,0.564680,0.955320,0.559800,0.955430,0.554930,0.955540,0.537950,0.953490,0.546440,0.954520,0.534240,0.949150,0.534110,0.954360,0.529000,0.955600,0.523900,0.956840,0.519960,0.957220,0.522950,0.973200,0.510270,0.981610,0.500000,0.981040,0.520540,0.982180,0.522950,0.990930,0.511470,0.990250,0.500000,0.989560,0.526360,0.981950,0.529760,0.990700,0.500000,0.934390,0.507120,0.933350,0.500000,0.927160,0.507280,0.925010,0.404270,0.948620,0.403950,0.954560,0.402590,0.954300,0.402060,0.951210,0.403640,0.960490,0.401750,0.957140,0.399860,0.953790,0.415170,0.967030,0.412230,0.965970,0.413700,0.954520,0.416630,0.954630,0.409300,0.964900,0.410760,0.954400,0.412230,0.943900,0.415160,0.943060,0.418100,0.942220,0.403840,0.937360,0.407090,0.935990,0.400590,0.938730,0.388960,0.933550,0.392520,0.931650,0.396090,0.929750,0.408250,0.946260,0.395820,0.942270,0.391060,0.945810,0.377850,0.942990,0.383400,0.938270,0.406470,0.962700,0.407360,0.954480,0.404480,0.982860,0.397350,0.981420,0.409030,0.974650,0.415380,0.975790,0.390220,0.979970,0.402690,0.973500,0.420720,0.967870,0.426280,0.968710,0.383090,0.976010,0.396190,0.970460,0.399440,0.971980,0.386650,0.977990,0.376380,0.966880,0.390010,0.963690,0.393100,0.967070,0.379730,0.971450,0.374280,0.953790,0.387070,0.953790,0.388540,0.958740,0.375330,0.960340,0.389060,0.949800,0.376060,0.948390,0.481850,0.973420,0.483940,0.957600,0.491960,0.957330,0.490910,0.972970,0.486040,0.941770,0.493010,0.941700,0.499980,0.941620,0.499980,0.957070,0.499980,0.972510,0.473160,0.940470,0.472260,0.932450,0.475590,0.932230,0.476560,0.940590,0.471370,0.924420,0.474620,0.923880,0.477870,0.923330,0.478910,0.932020,0.479960,0.940700,0.482320,0.932170,0.483000,0.941240,0.481640,0.923090,0.485410,0.922850,0.485720,0.932310,0.469320,0.939600,0.467350,0.931900,0.465490,0.938720,0.462450,0.931340,0.459410,0.923960,0.465390,0.924190,0.442010,0.988190,0.434670,0.987810,0.442950,0.978720,0.450290,0.978220,0.427330,0.987430,0.435610,0.979210,0.443900,0.970990,0.451230,0.969620,0.458570,0.968250,0.472200,0.972970,0.467800,0.981720,0.459040,0.979970,0.465380,0.970610,0.463400,0.990470,0.452700,0.989330,0.450760,0.931950,0.445670,0.924500,0.455840,0.939410,0.446200,0.940090,0.439070,0.932560,0.431940,0.925030,0.435720,0.940860,0.426600,0.933710,0.432830,0.933140,0.440960,0.940480,0.417480,0.926550,0.424710,0.925790,0.415800,0.985140,0.410140,0.984000,0.420360,0.976620,0.425340,0.977460,0.430580,0.969240,0.434880,0.969770,0.430470,0.978340,0.421560,0.986290,0.439390,0.970380,0.427120,0.941310,0.416840,0.934540,0.421720,0.934130,0.431420,0.941090,0.406570,0.927770,0.412020,0.927160,0.411970,0.935270,0.422610,0.941770,0.401330,0.928760,0.421660,0.954820,0.426700,0.955010,0.431000,0.955170,0.435300,0.955320,0.440170,0.955430,0.445050,0.955540,0.453540,0.954520,0.462030,0.953490,0.465740,0.949150,0.465860,0.954360,0.470970,0.955600,0.476080,0.956840,0.480010,0.957220,0.477020,0.973200,0.477030,0.990930,0.479440,0.982180,0.489710,0.981610,0.488500,0.990250,0.499980,0.981040,0.499980,0.989560,0.473620,0.981950,0.470210,0.990700,0.492690,0.925010,0.492850,0.933350,0.499980,0.927160,0.499980,0.934390,0.714260,0.296480,0.720970,0.305780,0.731920,0.288060,0.726220,0.277810,0.727690,0.315080,0.737610,0.298310,0.747540,0.281530,0.742860,0.270340,0.737570,0.331580,0.739190,0.324800,0.738370,0.320340,0.735440,0.328090,0.740810,0.318020,0.741310,0.312590,0.741810,0.307160,0.737560,0.315880,0.733320,0.324600,0.737590,0.307100,0.730500,0.319840,0.744670,0.294350,0.782030,0.332200,0.781080,0.327440,0.782760,0.331480,0.781870,0.326750,0.780980,0.322010,0.780130,0.322680,0.783100,0.338310,0.783730,0.337650,0.784470,0.337160,0.783480,0.330700,0.785470,0.343620,0.786230,0.343410,0.785220,0.336660,0.784210,0.329910,0.788450,0.324610,0.788800,0.333880,0.790060,0.333660,0.789650,0.324030,0.789150,0.343140,0.790470,0.343290,0.791800,0.343430,0.791330,0.333440,0.790860,0.323450,0.784030,0.317270,0.785050,0.322280,0.786190,0.320930,0.785120,0.315910,0.786070,0.327290,0.787260,0.325950,0.787330,0.319580,0.786210,0.314550,0.787230,0.343220,0.786730,0.343320,0.786240,0.360170,0.786920,0.360150,0.785560,0.360190,0.784900,0.376960,0.785760,0.377020,0.786620,0.377070,0.788190,0.343180,0.787840,0.360350,0.788770,0.360550,0.787500,0.377520,0.788390,0.377960,0.785930,0.335960,0.785140,0.328600,0.786650,0.335260,0.787720,0.334570,0.788480,0.318990,0.787320,0.313950,0.789640,0.318400,0.788430,0.313350,0.778720,0.307450,0.782460,0.311000,0.783390,0.310080,0.779460,0.306210,0.784310,0.309160,0.780200,0.304970,0.777460,0.310210,0.780740,0.313740,0.781600,0.312370,0.778090,0.308830,0.772020,0.315280,0.767950,0.314570,0.776100,0.315990,0.776670,0.315300,0.771750,0.314250,0.766830,0.313200,0.777300,0.313050,0.772010,0.311220,0.771880,0.312740,0.776980,0.314180,0.766720,0.309380,0.766770,0.311290,0.781700,0.321230,0.779340,0.317710,0.778820,0.318660,0.782420,0.320450,0.779860,0.316750,0.771810,0.309870,0.766250,0.308110,0.777380,0.311630,0.771620,0.308530,0.765790,0.306840,0.780300,0.315250,0.783220,0.318860,0.784180,0.323730,0.783310,0.325180,0.782590,0.325970,0.778120,0.319340,0.792700,0.333960,0.792200,0.323680,0.793210,0.344240,0.794620,0.345040,0.794080,0.334480,0.793550,0.323910,0.793740,0.379800,0.795390,0.380450,0.795780,0.363480,0.794180,0.362420,0.797040,0.381090,0.797380,0.364540,0.797730,0.347990,0.796170,0.346520,0.782270,0.408970,0.784120,0.408630,0.789750,0.394540,0.788000,0.394390,0.785980,0.408280,0.791510,0.394690,0.766880,0.413330,0.772430,0.402850,0.761340,0.423800,0.761170,0.425930,0.766970,0.414850,0.772770,0.403760,0.781300,0.304330,0.773420,0.301510,0.772750,0.302410,0.782400,0.303690,0.774100,0.300620,0.765800,0.297540,0.765550,0.298690,0.765300,0.299840,0.766060,0.316240,0.764540,0.315550,0.763680,0.314210,0.763200,0.315440,0.760530,0.315220,0.761390,0.316560,0.761920,0.428900,0.761540,0.427420,0.758620,0.430370,0.758800,0.432630,0.758430,0.428110,0.755700,0.430280,0.755690,0.433320,0.755690,0.436350,0.751610,0.419020,0.754400,0.416580,0.753170,0.412230,0.749630,0.414570,0.751940,0.407880,0.747660,0.410110,0.784590,0.302850,0.775900,0.298990,0.775000,0.299810,0.783490,0.303270,0.767220,0.295130,0.766510,0.296340,0.747150,0.416820,0.749000,0.421640,0.745300,0.412000,0.742940,0.413890,0.744660,0.419080,0.746390,0.424260,0.741480,0.321410,0.744150,0.316800,0.743520,0.313910,0.742160,0.324800,0.744780,0.319690,0.747400,0.314570,0.746820,0.312190,0.746240,0.309800,0.749420,0.331710,0.749970,0.334170,0.751010,0.333790,0.751260,0.332370,0.750520,0.336630,0.751810,0.334830,0.748110,0.339220,0.749310,0.337930,0.749350,0.335860,0.748760,0.335470,0.747540,0.389080,0.746780,0.392200,0.749550,0.391000,0.749800,0.387510,0.746030,0.395320,0.749310,0.394480,0.752590,0.393640,0.752330,0.389790,0.752070,0.385930,0.745950,0.308190,0.743630,0.310390,0.745660,0.306570,0.743730,0.306870,0.744960,0.390770,0.743730,0.393480,0.742380,0.392450,0.740680,0.394760,0.738990,0.397060,0.742510,0.396190,0.758930,0.365810,0.759200,0.363280,0.756860,0.359300,0.756300,0.361290,0.759470,0.360740,0.757420,0.357300,0.755370,0.353850,0.754520,0.355310,0.753670,0.356770,0.762080,0.347710,0.757990,0.344140,0.756990,0.344910,0.761070,0.348760,0.753910,0.340560,0.752910,0.341070,0.751920,0.341570,0.755990,0.345690,0.760060,0.349800,0.752210,0.338600,0.752110,0.339590,0.751220,0.339100,0.750180,0.339140,0.750010,0.340400,0.752170,0.343710,0.755580,0.347320,0.752430,0.345850,0.755180,0.348940,0.757940,0.352030,0.759000,0.350920,0.748490,0.341280,0.750330,0.342500,0.748880,0.343340,0.750650,0.344600,0.751590,0.346750,0.754120,0.349850,0.750750,0.347650,0.753060,0.350750,0.756650,0.352940,0.749710,0.345080,0.747830,0.343400,0.746790,0.343460,0.748770,0.345560,0.744720,0.344070,0.743490,0.341490,0.742170,0.340970,0.743450,0.344470,0.742270,0.338900,0.740890,0.337470,0.739510,0.336030,0.740840,0.340450,0.742180,0.344860,0.742980,0.334780,0.741900,0.332600,0.743690,0.330650,0.742920,0.327730,0.740830,0.330420,0.752070,0.301950,0.748860,0.304260,0.749500,0.305500,0.753050,0.302810,0.750140,0.306740,0.754040,0.303670,0.750880,0.308770,0.754950,0.305350,0.751630,0.310800,0.755870,0.307020,0.758930,0.299750,0.759300,0.300750,0.759670,0.301760,0.756700,0.308770,0.761140,0.307000,0.760610,0.305310,0.757540,0.310520,0.761660,0.308680,0.765570,0.305220,0.765360,0.303590,0.771830,0.307030,0.772040,0.305520,0.765330,0.301720,0.772390,0.303970,0.760140,0.303530,0.748360,0.318380,0.752950,0.314450,0.752290,0.312630,0.747880,0.316480,0.747290,0.341080,0.746080,0.340880,0.746740,0.338760,0.745380,0.338300,0.747630,0.336410,0.747400,0.335010,0.744410,0.331450,0.746720,0.325710,0.746020,0.324520,0.745140,0.332250,0.747420,0.326910,0.749700,0.321560,0.749030,0.319970,0.745260,0.335280,0.747410,0.330960,0.749560,0.326640,0.762760,0.310980,0.763220,0.312600,0.758800,0.312570,0.759660,0.313900,0.762210,0.309830,0.758170,0.311550,0.756940,0.318630,0.757930,0.319900,0.753360,0.322030,0.754470,0.323240,0.751530,0.321800,0.750820,0.325100,0.751390,0.326870,0.752860,0.327810,0.755590,0.317850,0.754250,0.317070,0.753600,0.315760,0.745400,0.322100,0.744120,0.335030,0.743820,0.338600,0.744790,0.341190,0.745750,0.343770,0.746690,0.351830,0.747880,0.350640,0.745660,0.347560,0.744430,0.348350,0.749070,0.349450,0.746890,0.346760,0.751970,0.360460,0.752820,0.358620,0.750350,0.354630,0.749330,0.356150,0.751370,0.353110,0.747830,0.346160,0.749910,0.348550,0.752210,0.351930,0.757320,0.369910,0.758120,0.367860,0.755470,0.363240,0.754640,0.365190,0.754780,0.386010,0.757580,0.381820,0.754630,0.381280,0.757500,0.386080,0.760520,0.382360,0.763550,0.378630,0.760370,0.377630,0.757200,0.376630,0.763490,0.388640,0.760490,0.387360,0.756410,0.388580,0.758040,0.391140,0.759090,0.424880,0.756840,0.425960,0.755590,0.418270,0.754790,0.420330,0.751040,0.427270,0.752920,0.423800,0.784670,0.360190,0.783870,0.376770,0.778150,0.389810,0.778830,0.390360,0.758930,0.393570,0.765040,0.390300,0.752810,0.396840,0.771770,0.377060,0.767630,0.382850,0.769220,0.383560,0.773400,0.376810,0.763800,0.352300,0.765050,0.351170,0.762550,0.353420,0.765050,0.357040,0.766530,0.355840,0.768020,0.354630,0.771740,0.363230,0.769290,0.364540,0.768470,0.371200,0.771750,0.370150,0.766840,0.365850,0.765190,0.372240,0.767660,0.377850,0.761270,0.354710,0.759980,0.355990,0.762030,0.359950,0.763540,0.358500,0.758700,0.356650,0.760750,0.360350,0.760640,0.363870,0.762090,0.364470,0.760540,0.367400,0.762150,0.368980,0.764010,0.362960,0.765940,0.361450,0.764490,0.367420,0.767910,0.360190,0.769880,0.358930,0.755000,0.339820,0.753400,0.337330,0.762280,0.345840,0.758640,0.342830,0.765130,0.348710,0.767980,0.351580,0.770210,0.355740,0.772440,0.359890,0.772920,0.368350,0.764070,0.382610,0.762430,0.372530,0.759670,0.372810,0.758900,0.370340,0.757260,0.373270,0.753740,0.368470,0.752850,0.371760,0.750230,0.363670,0.748500,0.366880,0.721260,0.425850,0.723470,0.426670,0.723230,0.422890,0.720710,0.420480,0.725680,0.427480,0.725750,0.425310,0.725820,0.423130,0.722990,0.419120,0.720160,0.415100,0.727650,0.421320,0.726000,0.417260,0.729300,0.425380,0.732790,0.427620,0.732310,0.423520,0.731840,0.419420,0.728830,0.428560,0.728360,0.431740,0.731050,0.436000,0.731920,0.431810,0.735430,0.435010,0.736780,0.431160,0.734090,0.438860,0.737130,0.441720,0.738950,0.438210,0.740780,0.434700,0.737950,0.426500,0.739110,0.421840,0.743580,0.429480,0.736870,0.412210,0.737990,0.417030,0.730800,0.410520,0.731320,0.414970,0.718380,0.405230,0.719270,0.410170,0.725290,0.412570,0.724590,0.407880,0.715470,0.403200,0.715660,0.407130,0.712560,0.401160,0.712050,0.404090,0.711540,0.407020,0.715850,0.411060,0.711680,0.420250,0.716190,0.420370,0.711820,0.433480,0.716540,0.429670,0.736370,0.394110,0.739370,0.393280,0.742100,0.391240,0.739240,0.391700,0.744820,0.389190,0.742110,0.389290,0.747460,0.386830,0.745130,0.386150,0.750110,0.384470,0.748150,0.383010,0.751480,0.378120,0.748320,0.374950,0.709620,0.411430,0.708590,0.421390,0.710640,0.401460,0.709750,0.395900,0.707560,0.402600,0.705370,0.409290,0.727190,0.365500,0.725430,0.365630,0.722200,0.370770,0.723650,0.371380,0.723680,0.365760,0.720760,0.370160,0.717850,0.374550,0.718980,0.375910,0.720110,0.377260,0.723970,0.361450,0.720910,0.368000,0.721830,0.367260,0.723820,0.363610,0.728530,0.358920,0.729780,0.354180,0.724270,0.356540,0.733100,0.356380,0.735290,0.351820,0.737480,0.347260,0.731030,0.349450,0.724580,0.351630,0.741930,0.355710,0.741280,0.359140,0.743820,0.362030,0.745210,0.361300,0.740640,0.362560,0.742420,0.362750,0.744210,0.362940,0.746350,0.364910,0.747270,0.358720,0.744310,0.353770,0.742070,0.349920,0.739700,0.351490,0.739830,0.346060,0.732740,0.368040,0.733460,0.369030,0.737370,0.364090,0.737330,0.361880,0.734190,0.370020,0.737410,0.366290,0.736270,0.358160,0.733270,0.362490,0.735300,0.362190,0.739100,0.356940,0.730270,0.366820,0.731500,0.367430,0.728730,0.366160,0.731700,0.361720,0.730140,0.360940,0.734680,0.357270,0.737190,0.354380,0.726980,0.362280,0.725030,0.372210,0.726420,0.373040,0.721340,0.378260,0.722580,0.379250,0.722240,0.391290,0.721030,0.391250,0.722910,0.393750,0.724550,0.393330,0.719820,0.391210,0.721280,0.394160,0.722750,0.397100,0.724800,0.396240,0.726860,0.395370,0.724730,0.379600,0.725720,0.379580,0.729590,0.374310,0.728730,0.373820,0.726720,0.379560,0.730450,0.374790,0.727580,0.373430,0.723650,0.379430,0.722060,0.382790,0.723170,0.383060,0.720940,0.382520,0.719310,0.385790,0.720460,0.386160,0.721620,0.386520,0.722860,0.386370,0.724290,0.382980,0.724100,0.386220,0.725410,0.382890,0.721940,0.388810,0.723170,0.388760,0.720720,0.388870,0.737170,0.395530,0.734960,0.397780,0.733650,0.396300,0.730940,0.398490,0.726840,0.397800,0.729230,0.396270,0.731610,0.394740,0.727560,0.403240,0.731320,0.403050,0.733140,0.400410,0.729250,0.400870,0.735080,0.402850,0.737030,0.399960,0.729180,0.406880,0.723730,0.404340,0.722880,0.400790,0.718210,0.398340,0.718290,0.401790,0.740450,0.400010,0.738400,0.403830,0.741720,0.404810,0.743870,0.400070,0.740780,0.409840,0.736260,0.407670,0.744690,0.407460,0.749660,0.405150,0.747380,0.402420,0.748340,0.398450,0.733790,0.405360,0.724860,0.399300,0.720480,0.397720,0.711520,0.399240,0.712400,0.397020,0.712250,0.392880,0.711000,0.394390,0.715350,0.399410,0.715230,0.395610,0.713640,0.389640,0.715030,0.382100,0.713620,0.383730,0.715040,0.386400,0.716440,0.380480,0.716420,0.374560,0.714990,0.374570,0.718330,0.384880,0.717240,0.386510,0.718280,0.387830,0.717360,0.383970,0.716200,0.385190,0.716150,0.388130,0.717260,0.389860,0.717730,0.394100,0.715690,0.391870,0.719510,0.394130,0.718540,0.390540,0.719500,0.388350,0.718730,0.380620,0.719840,0.381570,0.717590,0.380550,0.720340,0.365550,0.719780,0.363100,0.711520,0.377270,0.713250,0.375920,0.716020,0.365230,0.712260,0.367360,0.718790,0.354540,0.713000,0.357440,0.712120,0.385160,0.710630,0.386590,0.709910,0.384980,0.709180,0.383370,0.708120,0.455540,0.709970,0.444510,0.705450,0.426340,0.702300,0.431290,0.700930,0.408160,0.696490,0.407030,0.798730,0.406370,0.793410,0.414180,0.795900,0.417620,0.805160,0.408000,0.788090,0.421990,0.786650,0.427250,0.785220,0.432500,0.798400,0.421060,0.811590,0.409620,0.775690,0.437250,0.774020,0.441750,0.777120,0.440920,0.780450,0.434880,0.772360,0.446250,0.773780,0.446970,0.775210,0.447680,0.780210,0.440090,0.782510,0.429340,0.784570,0.423800,0.781060,0.425600,0.778370,0.431430,0.789750,0.415360,0.786100,0.416540,0.794930,0.406930,0.791140,0.407480,0.773720,0.430790,0.777390,0.428200,0.782970,0.418040,0.779850,0.419540,0.788560,0.407880,0.764720,0.445670,0.770200,0.441460,0.773790,0.434830,0.769220,0.438230,0.752950,0.456550,0.752120,0.459230,0.756060,0.458830,0.758180,0.455310,0.751300,0.461900,0.753940,0.462340,0.756590,0.462780,0.760000,0.458430,0.763420,0.454070,0.760250,0.448830,0.759210,0.452070,0.764070,0.449870,0.755780,0.451990,0.754360,0.454270,0.770630,0.452390,0.769120,0.456280,0.777230,0.450370,0.766050,0.457100,0.761020,0.462180,0.755990,0.467250,0.767620,0.460160,0.779250,0.453060,0.768900,0.466850,0.784180,0.460510,0.753620,0.473190,0.764730,0.455590,0.760510,0.460300,0.756290,0.465020,0.751820,0.463740,0.747360,0.462470,0.743430,0.463030,0.749710,0.465140,0.747730,0.459550,0.743330,0.459860,0.748090,0.456620,0.743240,0.456690,0.750870,0.454250,0.753650,0.451870,0.751520,0.451740,0.747380,0.454220,0.768900,0.433160,0.771310,0.431980,0.777710,0.420300,0.775580,0.421070,0.757570,0.443500,0.758910,0.444460,0.763100,0.438710,0.761630,0.438130,0.760260,0.445420,0.764580,0.439290,0.767300,0.432960,0.765700,0.432750,0.766900,0.438760,0.762490,0.445550,0.774030,0.420900,0.772480,0.420720,0.780770,0.408830,0.779270,0.408690,0.786670,0.394020,0.785340,0.393650,0.792580,0.379200,0.791420,0.378600,0.792890,0.361720,0.791610,0.361020,0.790190,0.360790,0.789900,0.378280,0.783910,0.393200,0.782490,0.392750,0.776590,0.407530,0.777930,0.408110,0.763580,0.431140,0.762750,0.430020,0.759300,0.434310,0.759800,0.435980,0.755850,0.438590,0.756020,0.440820,0.781370,0.392070,0.780260,0.391400,0.773910,0.405720,0.775250,0.406630,0.779550,0.390880,0.773340,0.404740,0.767440,0.416080,0.767910,0.417310,0.769000,0.418330,0.770080,0.419340,0.771280,0.420030,0.764640,0.431950,0.760710,0.437060,0.756790,0.442160,0.738090,0.444720,0.740080,0.441490,0.739050,0.447720,0.741210,0.444770,0.743370,0.441810,0.742070,0.438260,0.745620,0.452770,0.741160,0.454740,0.750090,0.450810,0.748670,0.449870,0.743870,0.451330,0.739080,0.452780,0.728860,0.441800,0.725060,0.433830,0.721970,0.439540,0.727410,0.449420,0.718890,0.445260,0.725970,0.457030,0.734020,0.441810,0.733950,0.444760,0.729950,0.438900,0.726710,0.432790,0.748350,0.439260,0.752020,0.437810,0.751530,0.432540,0.747370,0.431760,0.744720,0.435010,0.745860,0.440540,0.751970,0.440670,0.748090,0.442740,0.747830,0.446220,0.751920,0.443520,0.744650,0.443760,0.743440,0.446970,0.743650,0.449150,0.739060,0.450250,0.748250,0.448050,0.752520,0.445110,0.753120,0.446690,0.754500,0.447640,0.755890,0.448580,0.758070,0.448710,0.767890,0.450160,0.769040,0.445810,0.769260,0.451280,0.787810,0.435720,0.795420,0.431340,0.819430,0.410260,0.801800,0.435390,0.801300,0.316290,0.803330,0.325110,0.806620,0.323000,0.802970,0.307080,0.805360,0.333930,0.810260,0.338920,0.815170,0.343900,0.809910,0.320880,0.804650,0.297860,0.805770,0.376800,0.802250,0.391590,0.807810,0.384180,0.810470,0.360350,0.813380,0.376760,0.822220,0.375530,0.825010,0.340790,0.817610,0.315040,0.810210,0.289300,0.801710,0.352900,0.803500,0.354260,0.803310,0.343150,0.801300,0.341530,0.805290,0.355610,0.805320,0.344770,0.803130,0.332040,0.800900,0.330150,0.798510,0.381840,0.799110,0.366150,0.799980,0.382590,0.800840,0.367750,0.799720,0.350450,0.793530,0.394860,0.795560,0.395040,0.802870,0.379700,0.798900,0.393310,0.805530,0.366210,0.803180,0.366980,0.807890,0.352560,0.796610,0.309410,0.794530,0.309480,0.799440,0.316440,0.791920,0.302520,0.789630,0.302520,0.787340,0.302520,0.792460,0.309550,0.797590,0.316580,0.795660,0.335730,0.797240,0.336970,0.796750,0.325950,0.795150,0.324930,0.799270,0.339250,0.798820,0.328050,0.791110,0.313310,0.792630,0.313810,0.788060,0.308540,0.786750,0.308500,0.794150,0.314300,0.789370,0.308580,0.789770,0.313330,0.785530,0.308830,0.790980,0.318510,0.792330,0.318610,0.793890,0.319370,0.795450,0.320130,0.795870,0.315440,0.790910,0.309070,0.785960,0.302690,0.797340,0.321750,0.799240,0.323370,0.801280,0.324240,0.783340,0.288450,0.787630,0.295490,0.795300,0.301280,0.793990,0.293160,0.791120,0.284920,0.788530,0.286100,0.777600,0.271970,0.780470,0.280210,0.728950,0.338120,0.724640,0.337190,0.720340,0.336260,0.737520,0.339420,0.733230,0.338770,0.739180,0.339940,0.738540,0.333810,0.740010,0.327610,0.763190,0.286180,0.767870,0.288810,0.773300,0.287040,0.768660,0.284140,0.772550,0.291430,0.777940,0.289940,0.778730,0.285270,0.774130,0.282090,0.779940,0.296980,0.777920,0.297990,0.769880,0.293280,0.783780,0.296230,0.759650,0.296870,0.759290,0.298310,0.752090,0.298610,0.752080,0.300280,0.763760,0.292840,0.757640,0.292400,0.755360,0.283860,0.765610,0.280450,0.762570,0.276750,0.775860,0.277030,0.704450,0.379450,0.699720,0.375530,0.707980,0.350730,0.702960,0.344020,0.714470,0.328260,0.708610,0.320250,0.737930,0.457390,0.734700,0.460030,0.732520,0.454910,0.733240,0.449840,0.724740,0.466380,0.717350,0.455450,0.715810,0.465630,0.736040,0.468730,0.747340,0.471080,0.750220,0.469810,0.760480,0.267720,0.778100,0.265110,0.794150,0.277200,0.778350,0.280840,0.747900,0.303580,0.746950,0.302890,0.749810,0.290070,0.747140,0.295770,0.754270,0.288780,0.252440,0.281530,0.262360,0.298310,0.268060,0.288060,0.257110,0.270340,0.272290,0.315080,0.279000,0.305780,0.285720,0.296480,0.273750,0.277810,0.258170,0.307160,0.258670,0.312590,0.261600,0.320340,0.262410,0.315880,0.259170,0.318020,0.260790,0.324800,0.262410,0.331580,0.264530,0.328090,0.266660,0.324600,0.255300,0.294350,0.262390,0.307100,0.269470,0.319840,0.219000,0.322010,0.218110,0.326750,0.218890,0.327440,0.219840,0.322680,0.217220,0.331480,0.217940,0.332200,0.216870,0.338310,0.216240,0.337650,0.213750,0.343410,0.214510,0.343620,0.215500,0.337160,0.214760,0.336660,0.216490,0.330700,0.215770,0.329910,0.208180,0.343430,0.209500,0.343290,0.209910,0.333660,0.208650,0.333440,0.210830,0.343140,0.211180,0.333880,0.211530,0.324610,0.210320,0.324030,0.209120,0.323450,0.212720,0.325950,0.213790,0.320930,0.212650,0.319580,0.213910,0.327290,0.214930,0.322280,0.215950,0.317270,0.214860,0.315910,0.213770,0.314550,0.215080,0.376960,0.214410,0.360190,0.213730,0.360170,0.214220,0.377020,0.213250,0.343320,0.212750,0.343220,0.213050,0.360150,0.213360,0.377070,0.212130,0.360350,0.212470,0.377520,0.211790,0.343180,0.211200,0.360550,0.211580,0.377960,0.214040,0.335960,0.213330,0.335260,0.214840,0.328600,0.212250,0.334570,0.211490,0.318990,0.210330,0.318400,0.212660,0.313950,0.211550,0.313350,0.216590,0.310080,0.215660,0.309160,0.217510,0.311000,0.221260,0.307450,0.220520,0.306210,0.219780,0.304970,0.218370,0.312370,0.219230,0.313740,0.222520,0.310210,0.221890,0.308830,0.223310,0.315300,0.223870,0.315990,0.227950,0.315280,0.228230,0.314250,0.232030,0.314570,0.233150,0.313200,0.233200,0.311290,0.228100,0.312740,0.233260,0.309380,0.227970,0.311220,0.222680,0.313050,0.222990,0.314180,0.220120,0.316750,0.220630,0.317710,0.217560,0.320450,0.218280,0.321230,0.221150,0.318660,0.222600,0.311630,0.228160,0.309870,0.228350,0.308530,0.233720,0.308110,0.234190,0.306840,0.216750,0.318860,0.219670,0.315250,0.215790,0.323730,0.216660,0.325180,0.217380,0.325970,0.221860,0.319340,0.205360,0.345040,0.206770,0.344240,0.207270,0.333960,0.205890,0.334480,0.207770,0.323680,0.206430,0.323910,0.202250,0.347990,0.202590,0.364540,0.204190,0.363480,0.203800,0.346520,0.202930,0.381090,0.204580,0.380450,0.206240,0.379800,0.205800,0.362420,0.208460,0.394690,0.210220,0.394540,0.214000,0.408280,0.215850,0.408630,0.217710,0.408970,0.211970,0.394390,0.238810,0.425930,0.238630,0.423800,0.233090,0.413330,0.233010,0.414850,0.227550,0.402850,0.227210,0.403760,0.234180,0.297540,0.225880,0.300620,0.226550,0.301510,0.234430,0.298690,0.217580,0.303690,0.218680,0.304330,0.227230,0.302410,0.234680,0.299840,0.233910,0.316240,0.235430,0.315550,0.239450,0.315220,0.236300,0.314210,0.236770,0.315440,0.238580,0.316560,0.244280,0.430280,0.241540,0.428110,0.241360,0.430370,0.244280,0.433320,0.238430,0.427420,0.238060,0.428900,0.241170,0.432630,0.244290,0.436350,0.246810,0.412230,0.248040,0.407880,0.245580,0.416580,0.248370,0.419020,0.250340,0.414570,0.252320,0.410110,0.233470,0.296340,0.224970,0.299810,0.232760,0.295130,0.224070,0.298990,0.215390,0.302850,0.216480,0.303270,0.257040,0.413890,0.254680,0.412000,0.252830,0.416820,0.255310,0.419080,0.250980,0.421640,0.253590,0.424260,0.252580,0.314570,0.255200,0.319690,0.255820,0.316800,0.253160,0.312190,0.257820,0.324800,0.258490,0.321410,0.256450,0.313910,0.253740,0.309800,0.249460,0.336630,0.250010,0.334170,0.248960,0.333790,0.248160,0.334830,0.250560,0.331710,0.248710,0.332370,0.250660,0.337930,0.250630,0.335860,0.251870,0.339220,0.251210,0.335470,0.247390,0.393640,0.250670,0.394480,0.250420,0.391000,0.247650,0.389790,0.253950,0.395320,0.253190,0.392200,0.252440,0.389080,0.250170,0.387510,0.247910,0.385930,0.256240,0.306870,0.256350,0.310390,0.254320,0.306570,0.254030,0.308190,0.260990,0.397060,0.259290,0.394760,0.256240,0.393480,0.257470,0.396190,0.257600,0.392450,0.255020,0.390770,0.244610,0.353850,0.242560,0.357300,0.243120,0.359300,0.245460,0.355310,0.240510,0.360740,0.240780,0.363280,0.241050,0.365810,0.243680,0.361290,0.246310,0.356770,0.248060,0.341570,0.247060,0.341070,0.242980,0.344910,0.243990,0.345690,0.246070,0.340560,0.241980,0.344140,0.237900,0.347710,0.238910,0.348760,0.239920,0.349800,0.247760,0.338600,0.247860,0.339590,0.248760,0.339100,0.249790,0.339140,0.249960,0.340400,0.242040,0.352030,0.244790,0.348940,0.244390,0.347320,0.240980,0.350920,0.247550,0.345850,0.247800,0.343710,0.249320,0.344600,0.249640,0.342500,0.251100,0.343340,0.251480,0.341280,0.246920,0.350750,0.245850,0.349850,0.243320,0.352940,0.249230,0.347650,0.248390,0.346750,0.253190,0.343460,0.252140,0.343400,0.250260,0.345080,0.251210,0.345560,0.260470,0.336030,0.259090,0.337470,0.257810,0.340970,0.259130,0.340450,0.257710,0.338900,0.256480,0.341490,0.255260,0.344070,0.256530,0.344470,0.257800,0.344860,0.257050,0.327730,0.258070,0.332600,0.259140,0.330420,0.256290,0.330650,0.257000,0.334780,0.250470,0.305500,0.249840,0.306740,0.251110,0.304260,0.247910,0.301950,0.246920,0.302810,0.245940,0.303670,0.249090,0.308770,0.248340,0.310800,0.245020,0.305350,0.244110,0.307020,0.240670,0.300750,0.240310,0.301760,0.241040,0.299750,0.238310,0.308680,0.238840,0.307000,0.234400,0.305220,0.242440,0.310520,0.243270,0.308770,0.239360,0.305310,0.234620,0.303590,0.228140,0.307030,0.227940,0.305520,0.227580,0.303970,0.234650,0.301720,0.239830,0.303530,0.247680,0.312630,0.247030,0.314450,0.251620,0.318380,0.252100,0.316480,0.252690,0.341080,0.253230,0.338760,0.253890,0.340880,0.254600,0.338300,0.252340,0.336410,0.252580,0.335010,0.250280,0.321560,0.252560,0.326910,0.253250,0.325710,0.250950,0.319970,0.254840,0.332250,0.255560,0.331450,0.253950,0.324520,0.252570,0.330960,0.250420,0.326640,0.254720,0.335280,0.240310,0.313900,0.236760,0.312600,0.241180,0.312570,0.237220,0.310980,0.237760,0.309830,0.241810,0.311550,0.245510,0.323240,0.242040,0.319900,0.246620,0.322030,0.243030,0.318630,0.248450,0.321800,0.249150,0.325100,0.248590,0.326870,0.247110,0.327810,0.244380,0.317850,0.245730,0.317070,0.246380,0.315760,0.254570,0.322100,0.255860,0.335030,0.256150,0.338600,0.255190,0.341190,0.254220,0.343770,0.253080,0.346760,0.254310,0.347560,0.250910,0.349450,0.252100,0.350640,0.253290,0.351830,0.255540,0.348350,0.248610,0.353110,0.249630,0.354630,0.247160,0.358620,0.248010,0.360460,0.250650,0.356150,0.252140,0.346160,0.250070,0.348550,0.247760,0.351930,0.244500,0.363240,0.241850,0.367860,0.242660,0.369910,0.245330,0.365190,0.236430,0.378630,0.239450,0.382360,0.242400,0.381820,0.239600,0.377630,0.242480,0.386080,0.245190,0.386010,0.245340,0.381280,0.242780,0.376630,0.243560,0.388580,0.239480,0.387360,0.236490,0.388640,0.241940,0.391140,0.240880,0.424880,0.243140,0.425960,0.244380,0.418270,0.245180,0.420330,0.247060,0.423800,0.248930,0.427270,0.216110,0.376770,0.215310,0.360190,0.221140,0.390360,0.221830,0.389810,0.247160,0.396840,0.241050,0.393570,0.234930,0.390300,0.230750,0.383560,0.232350,0.382850,0.228210,0.377060,0.226580,0.376810,0.234930,0.357040,0.237420,0.353420,0.236170,0.352300,0.233440,0.355840,0.234930,0.351170,0.231960,0.354630,0.234780,0.372240,0.231500,0.371200,0.232320,0.377850,0.233140,0.365850,0.230690,0.364540,0.228240,0.363230,0.228220,0.370150,0.237950,0.359950,0.239990,0.355990,0.238710,0.354710,0.236440,0.358500,0.241270,0.356650,0.239230,0.360350,0.239330,0.363870,0.239440,0.367400,0.237890,0.364470,0.237830,0.368980,0.235960,0.362960,0.235480,0.367420,0.234030,0.361450,0.232060,0.360190,0.230100,0.358930,0.246570,0.337330,0.244980,0.339820,0.241340,0.342830,0.237700,0.345840,0.234850,0.348710,0.232000,0.351580,0.229770,0.355740,0.227540,0.359890,0.227060,0.368350,0.235900,0.382610,0.240300,0.372810,0.237540,0.372530,0.242720,0.373270,0.241080,0.370340,0.246230,0.368470,0.249740,0.363670,0.247130,0.371760,0.251480,0.366880,0.274160,0.423130,0.274230,0.425310,0.276750,0.422890,0.276990,0.419120,0.274300,0.427480,0.276510,0.426670,0.278720,0.425850,0.279270,0.420480,0.279820,0.415100,0.267190,0.427620,0.270670,0.425380,0.272320,0.421320,0.267660,0.423520,0.273980,0.417260,0.268140,0.419420,0.268930,0.436000,0.271610,0.431740,0.271140,0.428560,0.268060,0.431810,0.262850,0.441720,0.265890,0.438860,0.264540,0.435010,0.261020,0.438210,0.263190,0.431160,0.259200,0.434700,0.262030,0.426500,0.256390,0.429480,0.260860,0.421840,0.268660,0.414970,0.261980,0.417030,0.269180,0.410520,0.263110,0.412210,0.274680,0.412570,0.280710,0.410170,0.281600,0.405230,0.275390,0.407880,0.288440,0.407020,0.287930,0.404090,0.284320,0.407130,0.284130,0.411060,0.287420,0.401160,0.284510,0.403200,0.283440,0.429670,0.283780,0.420370,0.288160,0.433480,0.288300,0.420250,0.257880,0.391240,0.255150,0.389190,0.260600,0.393280,0.263610,0.394110,0.260740,0.391700,0.257870,0.389290,0.252510,0.386830,0.249870,0.384470,0.254850,0.386150,0.251830,0.383010,0.248500,0.378120,0.251650,0.374950,0.290230,0.395900,0.289330,0.401460,0.290360,0.411430,0.292420,0.402600,0.291380,0.421390,0.294610,0.409290,0.282130,0.374550,0.279210,0.370160,0.277770,0.370770,0.281000,0.375910,0.276300,0.365760,0.274540,0.365630,0.272790,0.365500,0.276330,0.371380,0.279870,0.377260,0.279070,0.368000,0.278140,0.367260,0.276010,0.361450,0.276150,0.363610,0.262500,0.347260,0.264690,0.351820,0.270190,0.354180,0.268950,0.349450,0.266880,0.356380,0.271440,0.358920,0.275700,0.356540,0.275400,0.351630,0.255770,0.362940,0.257550,0.362750,0.256160,0.362030,0.253620,0.364910,0.259340,0.362560,0.258690,0.359140,0.258050,0.355710,0.254760,0.361300,0.252700,0.358720,0.255670,0.353770,0.257910,0.349920,0.260150,0.346060,0.260270,0.351490,0.262560,0.366290,0.262600,0.364090,0.265790,0.370020,0.266510,0.369030,0.267240,0.368040,0.262640,0.361880,0.268470,0.367430,0.264670,0.362190,0.269710,0.366820,0.266710,0.362490,0.263710,0.358160,0.260880,0.356940,0.268270,0.361720,0.265290,0.357270,0.271250,0.366160,0.269830,0.360940,0.262780,0.354380,0.272990,0.362280,0.274940,0.372210,0.278630,0.378260,0.273550,0.373040,0.277400,0.379250,0.277230,0.397100,0.278690,0.394160,0.277060,0.393750,0.275170,0.396240,0.280160,0.391210,0.278950,0.391250,0.277740,0.391290,0.275430,0.393330,0.273120,0.395370,0.269520,0.374790,0.270380,0.374310,0.273260,0.379560,0.274250,0.379580,0.275250,0.379600,0.271240,0.373820,0.276320,0.379430,0.272400,0.373430,0.280670,0.385790,0.279030,0.382520,0.277920,0.382790,0.279510,0.386160,0.276800,0.383060,0.278360,0.386520,0.274570,0.382890,0.275680,0.382980,0.275880,0.386220,0.277120,0.386370,0.279260,0.388870,0.278030,0.388810,0.276810,0.388760,0.262810,0.395530,0.266320,0.396300,0.265010,0.397780,0.269040,0.398490,0.270750,0.396270,0.268360,0.394740,0.273130,0.397800,0.262940,0.399960,0.266830,0.400410,0.264900,0.402850,0.268660,0.403050,0.272420,0.403240,0.270730,0.400870,0.281770,0.398340,0.277090,0.400790,0.276240,0.404340,0.281680,0.401790,0.270800,0.406880,0.258260,0.404810,0.261580,0.403830,0.259520,0.400010,0.256100,0.400070,0.259200,0.409840,0.255290,0.407460,0.263720,0.407670,0.250320,0.405150,0.252600,0.402420,0.251630,0.398450,0.266190,0.405360,0.275110,0.399300,0.279500,0.397720,0.287730,0.392880,0.287570,0.397020,0.288450,0.399240,0.288980,0.394390,0.284630,0.399410,0.284750,0.395610,0.283530,0.380480,0.284940,0.382100,0.283560,0.374560,0.284940,0.386400,0.286330,0.389640,0.286360,0.383730,0.284990,0.374570,0.283780,0.385190,0.282730,0.386510,0.283830,0.388130,0.282620,0.383970,0.281640,0.384880,0.281690,0.387830,0.282720,0.389860,0.284290,0.391870,0.282240,0.394100,0.281440,0.390540,0.280470,0.394130,0.280470,0.388350,0.280140,0.381570,0.281240,0.380620,0.282390,0.380550,0.279630,0.365550,0.280190,0.363100,0.283950,0.365230,0.281190,0.354540,0.286720,0.375920,0.288460,0.377270,0.287720,0.367360,0.286980,0.357440,0.289340,0.386590,0.287850,0.385160,0.290070,0.384980,0.290790,0.383370,0.294530,0.426340,0.299050,0.408160,0.290010,0.444510,0.291860,0.455540,0.297670,0.431290,0.303490,0.407030,0.214760,0.432500,0.213320,0.427250,0.204070,0.417620,0.201570,0.421060,0.211890,0.421990,0.206570,0.414180,0.201250,0.406370,0.194820,0.408000,0.188390,0.409620,0.224770,0.447680,0.226190,0.446970,0.222860,0.440920,0.219760,0.440090,0.227620,0.446250,0.225950,0.441750,0.224290,0.437250,0.219520,0.434880,0.218920,0.425600,0.215400,0.423800,0.217460,0.429340,0.221600,0.431430,0.210220,0.415360,0.205040,0.406930,0.213880,0.416540,0.208840,0.407480,0.217000,0.418040,0.211420,0.407880,0.222590,0.428200,0.226260,0.430790,0.220130,0.419540,0.226180,0.434830,0.229770,0.441460,0.235260,0.445670,0.230760,0.438230,0.243390,0.462780,0.246030,0.462340,0.243910,0.458830,0.239970,0.458430,0.248680,0.461900,0.247850,0.459230,0.247030,0.456550,0.241790,0.455310,0.236560,0.454070,0.245610,0.454270,0.240760,0.452070,0.244200,0.451990,0.239730,0.448830,0.235910,0.449870,0.243990,0.467250,0.238960,0.462180,0.230850,0.456280,0.232360,0.460160,0.233930,0.457100,0.229350,0.452390,0.222750,0.450370,0.220730,0.453060,0.246360,0.473190,0.231080,0.466850,0.215800,0.460510,0.239460,0.460300,0.243690,0.465020,0.235240,0.455590,0.256550,0.463030,0.252610,0.462470,0.248150,0.463740,0.250270,0.465140,0.252250,0.459550,0.251880,0.456620,0.256640,0.459860,0.256740,0.456690,0.248460,0.451740,0.246330,0.451870,0.249100,0.454250,0.252600,0.454220,0.222260,0.420300,0.228670,0.431980,0.231080,0.433160,0.224390,0.421070,0.235400,0.439290,0.236870,0.438710,0.232680,0.432960,0.239720,0.445420,0.241060,0.444460,0.242410,0.443500,0.238340,0.438130,0.234280,0.432750,0.233080,0.438760,0.237490,0.445550,0.225940,0.420900,0.219210,0.408830,0.227490,0.420720,0.220710,0.408690,0.213300,0.394020,0.207400,0.379200,0.214630,0.393650,0.208560,0.378600,0.207080,0.361720,0.208370,0.361020,0.210070,0.378280,0.209780,0.360790,0.223390,0.407530,0.217480,0.392750,0.216060,0.393200,0.222050,0.408110,0.240670,0.434310,0.244120,0.438590,0.237230,0.430020,0.236400,0.431140,0.240180,0.435980,0.243960,0.440820,0.226070,0.405720,0.219710,0.391400,0.218600,0.392070,0.224730,0.406630,0.220430,0.390880,0.226640,0.404740,0.232530,0.416080,0.232060,0.417310,0.230980,0.418330,0.229890,0.419340,0.228690,0.420030,0.235340,0.431950,0.243180,0.442160,0.239260,0.437060,0.256610,0.441810,0.258770,0.444770,0.259890,0.441490,0.257900,0.438260,0.260930,0.447720,0.261890,0.444720,0.251310,0.449870,0.249880,0.450810,0.254350,0.452770,0.256100,0.451330,0.258820,0.454740,0.260900,0.452780,0.278000,0.439540,0.281080,0.445260,0.274920,0.433830,0.271120,0.441800,0.272560,0.449420,0.274010,0.457030,0.265950,0.441810,0.270020,0.438900,0.266020,0.444760,0.273260,0.432790,0.248440,0.432540,0.247960,0.437810,0.251630,0.439260,0.252610,0.431760,0.254120,0.440540,0.255250,0.435010,0.252150,0.446220,0.251890,0.442740,0.248000,0.440670,0.248050,0.443520,0.255330,0.443760,0.256540,0.446970,0.251730,0.448050,0.256320,0.449150,0.260910,0.450250,0.247450,0.445110,0.246860,0.446690,0.244090,0.448580,0.245470,0.447640,0.241910,0.448710,0.230930,0.445810,0.232090,0.450160,0.230720,0.451280,0.212160,0.435720,0.204560,0.431340,0.198170,0.435390,0.180540,0.410260,0.184810,0.343900,0.189710,0.338920,0.193360,0.323000,0.190070,0.320880,0.194620,0.333930,0.196650,0.325110,0.198680,0.316290,0.197000,0.307080,0.195330,0.297860,0.192160,0.384180,0.186600,0.376760,0.197730,0.391590,0.194210,0.376800,0.189510,0.360350,0.177750,0.375530,0.174960,0.340790,0.182360,0.315040,0.189760,0.289300,0.194650,0.344770,0.196660,0.343150,0.196850,0.332040,0.194690,0.355610,0.196480,0.354260,0.198270,0.352900,0.198670,0.341530,0.199080,0.330150,0.199130,0.367750,0.200860,0.366150,0.200260,0.350450,0.200000,0.382590,0.201460,0.381840,0.204420,0.395040,0.206440,0.394860,0.201070,0.393310,0.197100,0.379700,0.196790,0.366980,0.194450,0.366210,0.192080,0.352560,0.212640,0.302520,0.210350,0.302520,0.205440,0.309480,0.207510,0.309550,0.208060,0.302520,0.203370,0.309410,0.200530,0.316440,0.202390,0.316580,0.203230,0.325950,0.202740,0.336970,0.204310,0.335730,0.204830,0.324930,0.200700,0.339250,0.201150,0.328050,0.210610,0.308580,0.211910,0.308540,0.205830,0.314300,0.207350,0.313810,0.208870,0.313310,0.213220,0.308500,0.214440,0.308830,0.210210,0.313330,0.208990,0.318510,0.207650,0.318610,0.204530,0.320130,0.206090,0.319370,0.209060,0.309070,0.214010,0.302690,0.204110,0.315440,0.200730,0.323370,0.202630,0.321750,0.198690,0.324240,0.204670,0.301280,0.212350,0.295490,0.216640,0.288450,0.205980,0.293160,0.222380,0.271970,0.208850,0.284920,0.211450,0.286100,0.219510,0.280210,0.275330,0.337190,0.279630,0.336260,0.271030,0.338120,0.266740,0.338770,0.262450,0.339420,0.261440,0.333810,0.260790,0.339940,0.259960,0.327610,0.222030,0.289940,0.226670,0.287040,0.221240,0.285270,0.227430,0.291430,0.232110,0.288810,0.236790,0.286180,0.231320,0.284140,0.225850,0.282090,0.230090,0.293280,0.222050,0.297990,0.220030,0.296980,0.216190,0.296230,0.247900,0.300280,0.240680,0.298310,0.247890,0.298610,0.240320,0.296870,0.242340,0.292400,0.236210,0.292840,0.234360,0.280450,0.224110,0.277030,0.244610,0.283860,0.237410,0.276750,0.295520,0.379450,0.292000,0.350730,0.300250,0.375530,0.297020,0.344020,0.285500,0.328260,0.291370,0.320250,0.262050,0.457390,0.267450,0.454910,0.265280,0.460030,0.266740,0.449840,0.282620,0.455450,0.275240,0.466380,0.284160,0.465630,0.263940,0.468730,0.252640,0.471080,0.249750,0.469810,0.221880,0.265110,0.239490,0.267720,0.205820,0.277200,0.221620,0.280840,0.252070,0.303580,0.253030,0.302890,0.250160,0.290070,0.252830,0.295770,0.245700,0.288780,0.579410,0.302890,0.574860,0.302900,0.575010,0.304080,0.579650,0.304120,0.570320,0.302900,0.570370,0.304050,0.570430,0.305190,0.575160,0.305270,0.579900,0.305340,0.548670,0.302100,0.551140,0.302740,0.551320,0.301830,0.548800,0.301360,0.553610,0.303380,0.553850,0.302310,0.554090,0.301230,0.551510,0.300920,0.548940,0.300610,0.561320,0.304350,0.557460,0.303870,0.557210,0.305220,0.561160,0.305810,0.553260,0.304620,0.552910,0.305850,0.556960,0.306560,0.561010,0.307270,0.548410,0.302910,0.550830,0.303770,0.548160,0.303720,0.550530,0.304790,0.552450,0.306880,0.556650,0.307780,0.552000,0.307910,0.556340,0.308990,0.560690,0.310060,0.560850,0.308670,0.547980,0.304480,0.550210,0.305680,0.547800,0.305240,0.549900,0.306580,0.543820,0.303910,0.545810,0.304580,0.546590,0.304290,0.545990,0.303820,0.555860,0.310630,0.560420,0.311990,0.551310,0.309260,0.550630,0.310600,0.555390,0.312260,0.560150,0.313920,0.591380,0.306120,0.594360,0.304240,0.593720,0.303090,0.590680,0.304800,0.597350,0.302360,0.596770,0.301370,0.596200,0.300370,0.593090,0.301930,0.589980,0.303480,0.599630,0.302590,0.598490,0.302480,0.595300,0.305020,0.596250,0.305790,0.592120,0.307550,0.592870,0.308980,0.585450,0.305920,0.585960,0.307420,0.584940,0.304410,0.580220,0.307030,0.580550,0.308720,0.575340,0.306920,0.570460,0.306800,0.570490,0.308400,0.575520,0.308560,0.565810,0.306310,0.565750,0.307840,0.565870,0.304770,0.570580,0.311560,0.570530,0.309980,0.565690,0.309330,0.565630,0.310810,0.575740,0.310190,0.580960,0.310390,0.575970,0.311810,0.581370,0.312050,0.586540,0.308970,0.587120,0.310520,0.597480,0.306640,0.601190,0.302560,0.593780,0.310710,0.594690,0.312430,0.598720,0.307480,0.602750,0.302530,0.587860,0.312420,0.581950,0.314120,0.582530,0.316190,0.588610,0.314310,0.576290,0.313940,0.570640,0.313760,0.570710,0.315960,0.576620,0.316080,0.565530,0.312880,0.565430,0.314940,0.561390,0.303200,0.557620,0.302760,0.561470,0.302050,0.557780,0.301640,0.565880,0.303630,0.565890,0.302480,0.584500,0.303260,0.584060,0.302110,0.589340,0.302410,0.588710,0.301330,0.592200,0.301000,0.591310,0.300070,0.595050,0.299590,0.593910,0.298800,0.599520,0.296110,0.597860,0.298240,0.598170,0.300360,0.599570,0.299350,0.604580,0.294600,0.602050,0.295360,0.601620,0.298960,0.603660,0.298570,0.596850,0.295720,0.595380,0.297260,0.596620,0.297750,0.598180,0.295920,0.545960,0.302800,0.543510,0.302690,0.545940,0.301790,0.543210,0.301470,0.546630,0.300340,0.546280,0.301060,0.544320,0.300060,0.543760,0.300770,0.543110,0.298390,0.542300,0.298890,0.541900,0.296710,0.540840,0.297010,0.539780,0.297310,0.541490,0.299390,0.537780,0.297310,0.538380,0.299020,0.539940,0.299210,0.538780,0.297310,0.538990,0.300720,0.541100,0.301100,0.545630,0.308190,0.548130,0.309400,0.549010,0.307990,0.546710,0.306720,0.541910,0.305130,0.543770,0.306660,0.544790,0.305620,0.542860,0.304520,0.540450,0.302930,0.541980,0.302810,0.429550,0.305190,0.429600,0.304050,0.424960,0.304080,0.424810,0.305270,0.429660,0.302900,0.425110,0.302900,0.420570,0.302890,0.420320,0.304120,0.420080,0.305340,0.445890,0.301230,0.446130,0.302310,0.448650,0.301830,0.448460,0.300920,0.446370,0.303380,0.448840,0.302740,0.451310,0.302100,0.451170,0.301360,0.451040,0.300610,0.447070,0.305850,0.446720,0.304620,0.442760,0.305220,0.443020,0.306560,0.442510,0.303870,0.438660,0.304350,0.438810,0.305810,0.438970,0.307270,0.449440,0.304790,0.449140,0.303770,0.451820,0.303720,0.451560,0.302910,0.439290,0.310060,0.443630,0.308990,0.443320,0.307780,0.439130,0.308670,0.447980,0.307910,0.447520,0.306880,0.450080,0.306580,0.449760,0.305680,0.452180,0.305240,0.452000,0.304480,0.454170,0.304580,0.453380,0.304290,0.456160,0.303910,0.453990,0.303820,0.449350,0.310600,0.448660,0.309260,0.444110,0.310630,0.444590,0.312260,0.439560,0.311990,0.439830,0.313920,0.403780,0.300370,0.403200,0.301370,0.406250,0.303090,0.406890,0.301930,0.402630,0.302360,0.405610,0.304240,0.408600,0.306120,0.409300,0.304800,0.410000,0.303480,0.404670,0.305020,0.407850,0.307550,0.401490,0.302480,0.400350,0.302590,0.403730,0.305790,0.407110,0.308980,0.415040,0.304410,0.414520,0.305920,0.419750,0.307030,0.414010,0.307420,0.419430,0.308720,0.429490,0.308400,0.429520,0.306800,0.424630,0.306920,0.424460,0.308560,0.434100,0.304770,0.434160,0.306310,0.434230,0.307840,0.434280,0.309330,0.429440,0.309980,0.429400,0.311560,0.434340,0.310810,0.424230,0.310190,0.424000,0.311810,0.419020,0.310390,0.418610,0.312050,0.413430,0.308970,0.412860,0.310520,0.405290,0.312430,0.406200,0.310710,0.402490,0.306640,0.401260,0.307480,0.398790,0.302560,0.397230,0.302530,0.417450,0.316190,0.418030,0.314120,0.412110,0.312420,0.411370,0.314310,0.429270,0.315960,0.429330,0.313760,0.423680,0.313940,0.423360,0.316080,0.434440,0.312880,0.434550,0.314940,0.442200,0.301640,0.442350,0.302760,0.438510,0.302050,0.438580,0.303200,0.434080,0.302480,0.434090,0.303630,0.415480,0.303260,0.410630,0.302410,0.415920,0.302110,0.411270,0.301330,0.407780,0.301000,0.404920,0.299590,0.408670,0.300070,0.406070,0.298800,0.401800,0.300360,0.402120,0.298240,0.400460,0.296110,0.400400,0.299350,0.398360,0.298960,0.397930,0.295360,0.395400,0.294600,0.396310,0.298570,0.403360,0.297750,0.404600,0.297260,0.403130,0.295720,0.401790,0.295920,0.454010,0.302800,0.454040,0.301790,0.456460,0.302690,0.456770,0.301470,0.456210,0.300770,0.453690,0.301060,0.455660,0.300060,0.453350,0.300340,0.460200,0.297310,0.459140,0.297010,0.457670,0.298890,0.458480,0.299390,0.458080,0.296710,0.456870,0.298390,0.458880,0.301100,0.460030,0.299210,0.460990,0.300720,0.461590,0.299020,0.462190,0.297310,0.461190,0.297310,0.450960,0.307990,0.451850,0.309400,0.454350,0.308190,0.453260,0.306720,0.455190,0.305620,0.456210,0.306660,0.458070,0.305130,0.457110,0.304520,0.457990,0.302810,0.459530,0.302930,0.544630,0.463380,0.545950,0.463810,0.546660,0.463100,0.545340,0.462870,0.547990,0.463320,0.548710,0.462410,0.547380,0.462380,0.546050,0.462350,0.540130,0.466020,0.543700,0.465130,0.542790,0.464460,0.539620,0.465110,0.547280,0.464230,0.541870,0.463790,0.539120,0.464190,0.549820,0.463870,0.551650,0.464420,0.552250,0.462920,0.550480,0.462670,0.555750,0.463460,0.554000,0.463190,0.553630,0.465110,0.555610,0.465790,0.551050,0.465920,0.553260,0.467020,0.555470,0.468110,0.532760,0.472280,0.531930,0.469930,0.526080,0.471160,0.526830,0.473680,0.531110,0.467580,0.525330,0.468640,0.519550,0.469690,0.520230,0.472380,0.520910,0.475070,0.546550,0.472990,0.551010,0.470550,0.548930,0.469110,0.544600,0.471210,0.546850,0.467670,0.542660,0.469420,0.545280,0.466400,0.541390,0.467720,0.549160,0.465080,0.534860,0.477000,0.540700,0.475000,0.539200,0.472930,0.533810,0.474640,0.537710,0.470850,0.536660,0.468830,0.535620,0.466800,0.527820,0.476180,0.528820,0.478670,0.521840,0.477710,0.522780,0.480340,0.510040,0.471100,0.514790,0.470400,0.514330,0.468190,0.509830,0.468830,0.518830,0.467550,0.518120,0.465400,0.513870,0.465980,0.509620,0.466550,0.510440,0.476830,0.510240,0.473970,0.505110,0.474200,0.505210,0.477130,0.505010,0.471260,0.499990,0.471420,0.499990,0.474420,0.499990,0.477420,0.511260,0.482000,0.510850,0.479420,0.505420,0.479710,0.505620,0.482280,0.499990,0.479990,0.499990,0.482560,0.516340,0.478560,0.517020,0.481170,0.515670,0.475950,0.515230,0.473180,0.504910,0.468960,0.499990,0.469090,0.504800,0.466660,0.499990,0.466760,0.535050,0.465620,0.530480,0.466120,0.534490,0.464430,0.529860,0.464660,0.524660,0.466840,0.523990,0.465030,0.451270,0.462410,0.451980,0.463320,0.453310,0.463100,0.452600,0.462380,0.452700,0.464230,0.454020,0.463810,0.455350,0.463380,0.454640,0.462870,0.453930,0.462350,0.457190,0.464460,0.458100,0.463790,0.456270,0.465130,0.459850,0.466020,0.460350,0.465110,0.460860,0.464190,0.447730,0.462920,0.448330,0.464420,0.450150,0.463870,0.449500,0.462670,0.448930,0.465920,0.450810,0.465080,0.446350,0.465110,0.446720,0.467020,0.445980,0.463190,0.444230,0.463460,0.444370,0.465790,0.444510,0.468110,0.480430,0.469690,0.474650,0.468640,0.473890,0.471160,0.479750,0.472380,0.468870,0.467580,0.468040,0.469930,0.467220,0.472280,0.473140,0.473680,0.479070,0.475070,0.451040,0.469110,0.453120,0.467670,0.448970,0.470550,0.453430,0.472990,0.455370,0.471210,0.457320,0.469420,0.454700,0.466400,0.458580,0.467720,0.460770,0.472930,0.462270,0.470850,0.459270,0.475000,0.465120,0.477000,0.466170,0.474640,0.463310,0.468830,0.464360,0.466800,0.472150,0.476180,0.478130,0.477710,0.471160,0.478670,0.477200,0.480340,0.481860,0.465400,0.481140,0.467550,0.485640,0.468190,0.486110,0.465980,0.485180,0.470400,0.489940,0.471100,0.490150,0.468830,0.490360,0.466550,0.494960,0.471260,0.494860,0.474200,0.489740,0.473970,0.489540,0.476830,0.494760,0.477130,0.494560,0.479710,0.489130,0.479420,0.488720,0.482000,0.494350,0.482280,0.484300,0.475950,0.483630,0.478560,0.482960,0.481170,0.484740,0.473180,0.495070,0.468960,0.495170,0.466660,0.464920,0.465620,0.465490,0.464430,0.469490,0.466120,0.470120,0.464660,0.475320,0.466840,0.475990,0.465030,0.514240,0.464810,0.514070,0.463780,0.510760,0.464200,0.510880,0.465290,0.513910,0.462750,0.510650,0.463100,0.507390,0.463450,0.507460,0.464610,0.507530,0.465760,0.503720,0.464830,0.503760,0.465910,0.503690,0.463750,0.499990,0.464040,0.499990,0.465050,0.499990,0.466050,0.507500,0.461200,0.503740,0.461460,0.507610,0.458950,0.503800,0.459170,0.499990,0.459380,0.499990,0.461710,0.514000,0.460610,0.510750,0.460910,0.514100,0.458470,0.510850,0.458710,0.547920,0.461520,0.546700,0.461700,0.549130,0.461340,0.546020,0.459760,0.545360,0.460380,0.544700,0.460990,0.547690,0.457960,0.546850,0.458860,0.550420,0.461030,0.551720,0.460710,0.523000,0.458080,0.529530,0.458290,0.529750,0.455740,0.523200,0.455020,0.536060,0.458500,0.536300,0.456460,0.536550,0.454410,0.529970,0.453190,0.523400,0.451960,0.522540,0.463760,0.522640,0.462790,0.518360,0.463290,0.518390,0.464290,0.522750,0.461810,0.518330,0.462280,0.518440,0.460280,0.522870,0.459950,0.518550,0.458280,0.528980,0.462500,0.529150,0.461550,0.528800,0.463450,0.535070,0.463130,0.535310,0.462210,0.535560,0.461290,0.545810,0.461950,0.544910,0.462200,0.544240,0.461520,0.543780,0.462050,0.540130,0.461140,0.539770,0.461870,0.539420,0.462590,0.529340,0.459920,0.535810,0.459900,0.541040,0.459130,0.540580,0.460140,0.541580,0.457660,0.542120,0.456190,0.518700,0.454860,0.514200,0.454700,0.518850,0.451440,0.514300,0.450920,0.510990,0.451190,0.510920,0.454950,0.507690,0.451460,0.507650,0.455210,0.503840,0.451830,0.503820,0.455500,0.499990,0.452200,0.499990,0.455790,0.492590,0.463450,0.489330,0.463100,0.489210,0.464200,0.492520,0.464610,0.486070,0.462750,0.485900,0.463780,0.485740,0.464810,0.489090,0.465290,0.492450,0.465760,0.496290,0.463750,0.496250,0.464830,0.496220,0.465910,0.496180,0.459170,0.496230,0.461460,0.492370,0.458950,0.492480,0.461200,0.489120,0.458710,0.489220,0.460910,0.485880,0.458470,0.485970,0.460610,0.453960,0.459760,0.450840,0.461340,0.452060,0.461520,0.454620,0.460380,0.453270,0.461700,0.455280,0.460990,0.449550,0.461030,0.453120,0.458860,0.452290,0.457960,0.448260,0.460710,0.463430,0.454410,0.463670,0.456460,0.470220,0.455740,0.470000,0.453190,0.463920,0.458500,0.470450,0.458290,0.476980,0.458080,0.476780,0.455020,0.476580,0.451960,0.481650,0.462280,0.481620,0.463290,0.477230,0.461810,0.477330,0.462790,0.477440,0.463760,0.481590,0.464290,0.477100,0.459950,0.481540,0.460280,0.481430,0.458280,0.464910,0.463130,0.471170,0.463450,0.471000,0.462500,0.464660,0.462210,0.470820,0.461550,0.464420,0.461290,0.454170,0.461950,0.455740,0.461520,0.455060,0.462200,0.456200,0.462050,0.460200,0.461870,0.460550,0.462590,0.459850,0.461140,0.464170,0.459900,0.470630,0.459920,0.459390,0.460140,0.458940,0.459130,0.458400,0.457660,0.457860,0.456190,0.481280,0.454860,0.481130,0.451440,0.485780,0.454700,0.485680,0.450920,0.492330,0.455210,0.489050,0.454950,0.492290,0.451460,0.488980,0.451190,0.496160,0.455500,0.496140,0.451830,0.672720,0.201090,0.698160,0.222940,0.647290,0.179240,0.638400,0.195750,0.665700,0.224970,0.693000,0.254180,0.703630,0.275330,0.712190,0.250380,0.548720,0.315810,0.553930,0.317470,0.554660,0.314870,0.549670,0.313210,0.559140,0.319120,0.559640,0.316520,0.598420,0.317430,0.603120,0.313060,0.600920,0.310270,0.596550,0.314930,0.607820,0.308690,0.605280,0.305610,0.584180,0.322250,0.591300,0.319840,0.589950,0.317080,0.583350,0.319220,0.570940,0.321930,0.577560,0.322090,0.577090,0.319090,0.570820,0.318950,0.565040,0.320530,0.565230,0.317740,0.610240,0.301500,0.606950,0.300030,0.612660,0.294300,0.608620,0.294450,0.534220,0.289300,0.533710,0.293420,0.535810,0.294190,0.536120,0.290950,0.533210,0.297530,0.535490,0.297420,0.537900,0.294960,0.538030,0.292600,0.534120,0.300220,0.536250,0.299620,0.535030,0.302900,0.537010,0.301810,0.543070,0.311220,0.545890,0.313520,0.547010,0.311460,0.544350,0.309710,0.537350,0.307480,0.540210,0.309350,0.541990,0.308010,0.539630,0.306310,0.536190,0.305190,0.538320,0.304060,0.581310,0.249630,0.567110,0.250630,0.566060,0.261800,0.578850,0.260810,0.552910,0.251620,0.553280,0.262780,0.553650,0.273930,0.565020,0.272960,0.576390,0.271990,0.600690,0.256550,0.591000,0.253090,0.587520,0.263340,0.596190,0.265860,0.584040,0.273580,0.591700,0.275160,0.611640,0.285250,0.607670,0.287500,0.610630,0.276200,0.606730,0.280540,0.602830,0.284870,0.603700,0.289740,0.605660,0.266380,0.601460,0.273200,0.597260,0.280020,0.544670,0.263730,0.546110,0.270800,0.536440,0.275830,0.538950,0.278820,0.541460,0.281810,0.547550,0.277870,0.535330,0.282570,0.537530,0.284890,0.539740,0.287210,0.543470,0.284730,0.542460,0.283270,0.540980,0.286380,0.540750,0.288670,0.548680,0.281510,0.548110,0.279690,0.553890,0.278290,0.553770,0.276110,0.565140,0.277130,0.565080,0.275050,0.576390,0.275970,0.576390,0.273980,0.584040,0.277560,0.584040,0.275570,0.591700,0.279140,0.591700,0.277150,0.599790,0.286770,0.601310,0.285820,0.596500,0.281490,0.595740,0.282960,0.602180,0.290690,0.602400,0.288750,0.663630,0.348560,0.655220,0.332710,0.647280,0.348050,0.654410,0.366330,0.646820,0.316850,0.640150,0.329770,0.633490,0.342690,0.639340,0.363390,0.645200,0.384090,0.629100,0.371970,0.634200,0.394250,0.624010,0.349690,0.614530,0.356680,0.618870,0.380550,0.623210,0.404410,0.605440,0.360120,0.608450,0.385010,0.596360,0.363550,0.598040,0.389470,0.599720,0.415380,0.611460,0.409900,0.549230,0.422510,0.558230,0.437720,0.561930,0.434830,0.553160,0.419350,0.567230,0.452920,0.570700,0.450300,0.574180,0.447670,0.565630,0.431930,0.557090,0.416190,0.545690,0.393450,0.543540,0.397720,0.548350,0.408540,0.551390,0.404820,0.541390,0.401980,0.545310,0.412250,0.532030,0.376980,0.530320,0.378450,0.530470,0.383700,0.532520,0.381920,0.528620,0.379920,0.528420,0.385470,0.528230,0.391020,0.530620,0.388940,0.533010,0.386850,0.534880,0.391960,0.533940,0.389410,0.531560,0.392860,0.532500,0.396790,0.529170,0.396320,0.530120,0.401610,0.533060,0.404950,0.531590,0.403280,0.526420,0.406810,0.527450,0.408530,0.525390,0.405090,0.520660,0.408560,0.521250,0.410330,0.521840,0.412100,0.527210,0.401930,0.523300,0.404480,0.524310,0.402240,0.521210,0.403870,0.518120,0.405490,0.519390,0.407030,0.523920,0.395530,0.524110,0.398890,0.526640,0.397600,0.526070,0.393280,0.509650,0.333370,0.513490,0.336030,0.513540,0.325580,0.509560,0.321630,0.517340,0.338690,0.517520,0.329530,0.517710,0.320370,0.513590,0.315130,0.509470,0.309880,0.511990,0.422370,0.509470,0.422870,0.509900,0.427700,0.512540,0.427160,0.506950,0.423370,0.507270,0.428230,0.507590,0.433080,0.510340,0.432520,0.513090,0.431950,0.521910,0.384490,0.521050,0.386910,0.523560,0.390100,0.525070,0.387760,0.520190,0.389330,0.522050,0.392430,0.515450,0.388620,0.517820,0.388980,0.518200,0.386440,0.515350,0.385970,0.518580,0.383910,0.515260,0.383320,0.503630,0.427910,0.503790,0.432760,0.503470,0.423070,0.499990,0.422760,0.499990,0.427600,0.499990,0.432430,0.499990,0.411230,0.499990,0.412350,0.503480,0.412380,0.503450,0.411010,0.499990,0.413460,0.503510,0.413740,0.507030,0.414020,0.506970,0.412400,0.506910,0.410780,0.506380,0.409380,0.503180,0.409660,0.505860,0.407970,0.502920,0.408320,0.499990,0.408660,0.499990,0.409950,0.534520,0.418540,0.535500,0.426830,0.542490,0.429660,0.541870,0.420530,0.536490,0.435110,0.543120,0.438800,0.549750,0.442480,0.549490,0.432500,0.537730,0.405890,0.539800,0.413210,0.534080,0.409800,0.534300,0.414170,0.522260,0.420520,0.522810,0.425990,0.529150,0.426410,0.528390,0.419530,0.523360,0.431460,0.529920,0.433290,0.528170,0.412620,0.528280,0.416080,0.522270,0.415430,0.522260,0.417980,0.527810,0.410570,0.533570,0.407380,0.522050,0.413770,0.511970,0.419810,0.509460,0.420210,0.511950,0.417250,0.509450,0.417540,0.506960,0.417820,0.506950,0.420600,0.512310,0.413730,0.509670,0.413880,0.509560,0.415710,0.512130,0.415490,0.506990,0.415920,0.516980,0.411070,0.517070,0.412920,0.516880,0.409230,0.513110,0.409890,0.512710,0.411810,0.516240,0.407480,0.515610,0.405720,0.513100,0.405950,0.513100,0.407920,0.510970,0.408160,0.510010,0.410340,0.511940,0.405980,0.510780,0.406010,0.508840,0.408400,0.509840,0.412110,0.517090,0.414630,0.517110,0.416340,0.517110,0.418900,0.517120,0.421450,0.517670,0.426580,0.518220,0.431710,0.503800,0.438890,0.507610,0.438880,0.499990,0.438900,0.499990,0.445370,0.503810,0.445020,0.507630,0.444670,0.510570,0.438320,0.513530,0.437750,0.510800,0.444110,0.513980,0.443550,0.503820,0.448430,0.507660,0.448070,0.499990,0.448790,0.510900,0.447650,0.514140,0.447240,0.523520,0.448450,0.518830,0.447840,0.523650,0.444930,0.518810,0.444240,0.518520,0.437980,0.523500,0.438200,0.530100,0.440030,0.530280,0.446760,0.536910,0.448590,0.536700,0.441850,0.543070,0.451070,0.543090,0.444930,0.549240,0.453540,0.549490,0.448010,0.556670,0.450500,0.557450,0.444110,0.563600,0.458520,0.565410,0.455720,0.554570,0.457970,0.555620,0.454240,0.559910,0.462390,0.561750,0.460460,0.553140,0.459340,0.548460,0.455750,0.557830,0.462930,0.542590,0.453630,0.536730,0.451500,0.530120,0.449980,0.499990,0.403320,0.499990,0.404610,0.502860,0.404110,0.502880,0.402730,0.499990,0.405890,0.502840,0.405480,0.505700,0.405070,0.505730,0.403610,0.505770,0.402140,0.505780,0.406520,0.502880,0.406900,0.499990,0.407280,0.510490,0.405130,0.508430,0.407260,0.510200,0.404250,0.508030,0.406110,0.510190,0.403030,0.507980,0.404780,0.510180,0.401800,0.507940,0.403440,0.510210,0.399990,0.507970,0.401800,0.510240,0.398170,0.508000,0.400160,0.510400,0.388890,0.510660,0.391020,0.513010,0.388500,0.512830,0.386110,0.510930,0.393150,0.513190,0.390890,0.505950,0.398210,0.508440,0.395680,0.508560,0.392650,0.506450,0.394270,0.508680,0.389610,0.506960,0.390330,0.508220,0.397920,0.505860,0.400180,0.510580,0.395660,0.502920,0.400870,0.499990,0.401550,0.502970,0.399000,0.499990,0.399780,0.503220,0.395090,0.499990,0.395910,0.503470,0.391180,0.499990,0.392030,0.504190,0.386270,0.499990,0.386850,0.508390,0.385690,0.509820,0.381040,0.504900,0.381350,0.499990,0.381660,0.510610,0.385900,0.512540,0.382180,0.511530,0.370280,0.510670,0.375660,0.513660,0.376750,0.514790,0.371320,0.516660,0.377840,0.518060,0.372360,0.511590,0.360150,0.511340,0.356550,0.505660,0.356200,0.505790,0.359740,0.511100,0.352940,0.505540,0.352650,0.499990,0.352360,0.499990,0.355840,0.499990,0.359320,0.505770,0.364950,0.511560,0.365220,0.499990,0.364680,0.499990,0.370040,0.505760,0.370160,0.505330,0.375760,0.499990,0.375850,0.503470,0.420200,0.503470,0.417340,0.499990,0.416850,0.499990,0.419810,0.503490,0.415540,0.499990,0.415160,0.629680,0.163470,0.612060,0.147690,0.606460,0.163450,0.622430,0.179600,0.699870,0.302200,0.696110,0.329060,0.691130,0.284140,0.689260,0.314090,0.677360,0.297890,0.674610,0.336400,0.684690,0.357680,0.665460,0.281680,0.664540,0.315120,0.671870,0.374920,0.680120,0.401270,0.692200,0.366610,0.688300,0.404150,0.651930,0.238720,0.671530,0.261430,0.627800,0.296530,0.623040,0.307830,0.631600,0.318800,0.637310,0.306690,0.618290,0.319120,0.625890,0.330910,0.619020,0.283080,0.617810,0.270730,0.620230,0.295420,0.626400,0.280900,0.625000,0.265260,0.616640,0.304660,0.613050,0.313910,0.536150,0.335300,0.536850,0.328530,0.532440,0.325210,0.531300,0.331940,0.537550,0.321760,0.533590,0.318480,0.529630,0.315190,0.528040,0.321880,0.526460,0.328570,0.521980,0.341640,0.522030,0.333060,0.526630,0.344590,0.526540,0.336580,0.522080,0.324470,0.517470,0.349870,0.521860,0.352610,0.521920,0.347130,0.517400,0.344280,0.526260,0.355340,0.526440,0.349970,0.526270,0.362810,0.526260,0.359080,0.522100,0.356200,0.522330,0.359790,0.517930,0.353320,0.518400,0.356760,0.534300,0.386470,0.534660,0.383530,0.536090,0.391020,0.537300,0.390070,0.533840,0.397150,0.535180,0.397510,0.536450,0.401700,0.539340,0.396030,0.539110,0.379520,0.538200,0.384800,0.540870,0.391260,0.542400,0.386490,0.533020,0.369200,0.532520,0.373090,0.535360,0.378950,0.536060,0.374360,0.535400,0.350620,0.534600,0.355900,0.539290,0.360370,0.540840,0.354650,0.533810,0.361170,0.537750,0.366090,0.541700,0.371010,0.543990,0.364840,0.546280,0.358670,0.533410,0.365190,0.536910,0.370230,0.540400,0.375270,0.524250,0.376090,0.526430,0.378010,0.527680,0.375600,0.525050,0.372750,0.528940,0.373190,0.525850,0.369400,0.523080,0.380290,0.519870,0.379070,0.521150,0.374230,0.525750,0.382880,0.526060,0.366110,0.522330,0.363170,0.522340,0.366560,0.518610,0.360240,0.518830,0.363710,0.514980,0.358390,0.515210,0.361930,0.514750,0.354850,0.518440,0.368040,0.515000,0.366630,0.521740,0.370390,0.529640,0.366010,0.529290,0.369600,0.529840,0.362130,0.530030,0.358260,0.530520,0.352930,0.531010,0.347610,0.531160,0.339770,0.535770,0.342960,0.548170,0.341840,0.548310,0.334430,0.542580,0.331480,0.542160,0.338570,0.548460,0.327020,0.543000,0.324390,0.541500,0.346610,0.547220,0.350260,0.544280,0.382040,0.546170,0.377600,0.548160,0.388820,0.550640,0.384180,0.549110,0.370350,0.552060,0.363090,0.554240,0.375850,0.557850,0.367510,0.554620,0.400260,0.557860,0.395690,0.561090,0.411690,0.565090,0.407190,0.569990,0.427840,0.574350,0.423750,0.578900,0.443990,0.583620,0.440310,0.575480,0.385250,0.570280,0.396220,0.580970,0.412040,0.587600,0.400320,0.591670,0.427850,0.566660,0.376380,0.562260,0.386040,0.577190,0.357980,0.568960,0.353350,0.567810,0.364870,0.576330,0.371620,0.560740,0.348710,0.559290,0.358110,0.586770,0.360770,0.587180,0.380540,0.589940,0.337360,0.582270,0.336980,0.584520,0.348880,0.593150,0.350460,0.574600,0.336600,0.575890,0.347290,0.567530,0.334130,0.568250,0.343740,0.560470,0.331650,0.560600,0.340180,0.554450,0.345280,0.553260,0.354190,0.554460,0.329340,0.554460,0.337310,0.554190,0.323400,0.559800,0.325390,0.548590,0.321420,0.604840,0.331740,0.597390,0.334550,0.601410,0.347340,0.609680,0.344210,0.617780,0.337560,0.611560,0.325430,0.607340,0.319250,0.601630,0.324590,0.594340,0.327200,0.587060,0.329810,0.566280,0.327330,0.572770,0.329270,0.579910,0.329540,0.544450,0.318960,0.540310,0.316490,0.536900,0.313920,0.533490,0.311340,0.510710,0.349220,0.505350,0.348910,0.510320,0.345490,0.505150,0.345170,0.499990,0.344840,0.499990,0.348600,0.514320,0.351270,0.513890,0.347680,0.513690,0.341860,0.509980,0.339430,0.504980,0.338940,0.504820,0.332710,0.499990,0.332050,0.499990,0.338450,0.499990,0.309740,0.499990,0.320900,0.504770,0.321260,0.504730,0.309810,0.499990,0.287080,0.505080,0.287020,0.506030,0.277270,0.499990,0.277090,0.510170,0.286950,0.512070,0.277440,0.513970,0.267920,0.506980,0.267510,0.499990,0.267100,0.504900,0.298420,0.509820,0.298420,0.499990,0.298410,0.524880,0.270990,0.522230,0.278960,0.528780,0.280770,0.530660,0.273410,0.519590,0.286930,0.526900,0.288120,0.520310,0.313950,0.517180,0.309110,0.522910,0.307530,0.520770,0.303080,0.518640,0.298630,0.514050,0.304260,0.524170,0.317920,0.526270,0.311360,0.531230,0.308280,0.528970,0.305220,0.527440,0.301650,0.525920,0.298080,0.526410,0.293100,0.519110,0.292780,0.514460,0.295600,0.514880,0.286940,0.517150,0.278200,0.519420,0.269460,0.516970,0.247220,0.515470,0.257570,0.521990,0.258590,0.524560,0.247710,0.528510,0.259600,0.532150,0.248200,0.499990,0.170150,0.499990,0.194650,0.510910,0.194800,0.512410,0.170860,0.499990,0.219140,0.509410,0.218730,0.518830,0.218320,0.521830,0.194950,0.524840,0.171570,0.499990,0.233170,0.508940,0.232970,0.499990,0.247190,0.508480,0.247210,0.517900,0.232770,0.532290,0.195790,0.536160,0.173530,0.528420,0.218040,0.538010,0.217760,0.542740,0.196620,0.547480,0.175480,0.560150,0.219200,0.549080,0.218480,0.545800,0.234200,0.556530,0.235410,0.535080,0.232980,0.542530,0.249910,0.536590,0.261660,0.583430,0.236270,0.569980,0.235840,0.585560,0.222900,0.572850,0.221050,0.577670,0.204440,0.565460,0.200670,0.589880,0.208200,0.594210,0.193490,0.582490,0.187820,0.570770,0.182140,0.600330,0.178470,0.614670,0.192420,0.606910,0.205240,0.619620,0.216980,0.629010,0.206370,0.594530,0.241410,0.605630,0.246540,0.610570,0.236530,0.598060,0.229720,0.611720,0.258640,0.617780,0.250900,0.630580,0.242740,0.641250,0.240730,0.641540,0.268490,0.653500,0.275090,0.635290,0.286790,0.633270,0.266880,0.644180,0.292670,0.654360,0.303900,0.624180,0.246820,0.615090,0.226760,0.602490,0.217480,0.514620,0.144820,0.499990,0.143650,0.529250,0.145980,0.533660,0.120390,0.516820,0.118770,0.499990,0.117140,0.541670,0.149230,0.554100,0.152480,0.560720,0.129470,0.547190,0.124930,0.499990,0.098800,0.518670,0.100410,0.537350,0.102030,0.551480,0.107000,0.565610,0.111970,0.582790,0.143640,0.594620,0.153550,0.599850,0.137450,0.587640,0.127200,0.571750,0.136560,0.576620,0.119590,0.588550,0.170680,0.576780,0.162890,0.559120,0.178810,0.565440,0.157690,0.554100,0.198650,0.526490,0.232880,0.499990,0.257150,0.507730,0.257360,0.361580,0.195750,0.352680,0.179240,0.327250,0.201090,0.334280,0.224970,0.301820,0.222940,0.306980,0.254180,0.287780,0.250380,0.296350,0.275330,0.440330,0.316520,0.445320,0.314870,0.440840,0.319120,0.446050,0.317470,0.451260,0.315810,0.450300,0.313210,0.394690,0.305610,0.399050,0.310270,0.392160,0.308690,0.396850,0.313060,0.401550,0.317430,0.403420,0.314930,0.410020,0.317080,0.408670,0.319840,0.415790,0.322250,0.416620,0.319220,0.422880,0.319090,0.422410,0.322090,0.429030,0.321930,0.429150,0.318950,0.434740,0.317740,0.434930,0.320530,0.391360,0.294450,0.393020,0.300030,0.387320,0.294300,0.389740,0.301500,0.464480,0.297420,0.464160,0.294190,0.462060,0.294960,0.466770,0.297530,0.466260,0.293420,0.465760,0.289300,0.463850,0.290950,0.461940,0.292600,0.462970,0.301810,0.463720,0.299620,0.464950,0.302900,0.465860,0.300220,0.452960,0.311460,0.454080,0.313520,0.456910,0.311220,0.455630,0.309710,0.457990,0.308010,0.459770,0.309350,0.462630,0.307480,0.460350,0.306310,0.461660,0.304060,0.463790,0.305190,0.446330,0.273930,0.446700,0.262780,0.433910,0.261800,0.434960,0.272960,0.447070,0.251620,0.432860,0.250630,0.418660,0.249630,0.421120,0.260810,0.423590,0.271990,0.412450,0.263340,0.415930,0.273580,0.408970,0.253090,0.399290,0.256550,0.403780,0.265860,0.408280,0.275160,0.397150,0.284870,0.393250,0.280540,0.392300,0.287500,0.396270,0.289740,0.389350,0.276200,0.388330,0.285250,0.398510,0.273200,0.402710,0.280020,0.394320,0.266380,0.458520,0.281810,0.461030,0.278820,0.453860,0.270800,0.452420,0.277870,0.463540,0.275830,0.455300,0.263730,0.462440,0.284890,0.460230,0.287210,0.464650,0.282570,0.457510,0.283270,0.458990,0.286380,0.456510,0.284730,0.459220,0.288670,0.446200,0.276110,0.451860,0.279690,0.446080,0.278290,0.451290,0.281510,0.423590,0.273980,0.434890,0.275050,0.423590,0.275970,0.434830,0.277130,0.408280,0.277150,0.415930,0.275570,0.408280,0.279140,0.415930,0.277560,0.403470,0.281490,0.398670,0.285820,0.400190,0.286770,0.404230,0.282960,0.397790,0.290690,0.397580,0.288750,0.366490,0.342690,0.359820,0.329770,0.352690,0.348050,0.360630,0.363390,0.353160,0.316850,0.344750,0.332710,0.336350,0.348560,0.345560,0.366330,0.354780,0.384090,0.385450,0.356680,0.375970,0.349690,0.370870,0.371970,0.381110,0.380550,0.365770,0.394250,0.376770,0.404410,0.400260,0.415380,0.401940,0.389470,0.391520,0.385010,0.388510,0.409900,0.403620,0.363550,0.394530,0.360120,0.425800,0.447670,0.429270,0.450300,0.438040,0.434830,0.434340,0.431930,0.432750,0.452920,0.441750,0.437720,0.450750,0.422510,0.446820,0.419350,0.442890,0.416190,0.454670,0.412250,0.451630,0.408540,0.458590,0.401980,0.456440,0.397720,0.454290,0.393450,0.448590,0.404820,0.471750,0.391020,0.471550,0.385470,0.469500,0.383700,0.469360,0.388940,0.471360,0.379920,0.469650,0.378450,0.467950,0.376980,0.467460,0.381920,0.466970,0.386850,0.468420,0.392860,0.470800,0.396320,0.466030,0.389410,0.465100,0.391960,0.467480,0.396790,0.469860,0.401610,0.479320,0.408560,0.474590,0.405090,0.473560,0.406810,0.478730,0.410330,0.468390,0.403280,0.466920,0.404950,0.472530,0.408530,0.478140,0.412100,0.481860,0.405490,0.478760,0.403870,0.476670,0.404480,0.480590,0.407030,0.475670,0.402240,0.472760,0.401930,0.473330,0.397600,0.475860,0.398890,0.476060,0.395530,0.473900,0.393280,0.482270,0.320370,0.482450,0.329530,0.486430,0.325580,0.486390,0.315130,0.482640,0.338690,0.486480,0.336030,0.490330,0.333370,0.490420,0.321630,0.490510,0.309880,0.492390,0.433080,0.492710,0.428230,0.490070,0.427700,0.489640,0.432520,0.493030,0.423370,0.490510,0.422870,0.487990,0.422370,0.487440,0.427160,0.486890,0.431950,0.477920,0.392430,0.476410,0.390100,0.479790,0.389330,0.478930,0.386910,0.478070,0.384490,0.474910,0.387760,0.481770,0.386440,0.481390,0.383910,0.482160,0.388980,0.484530,0.388620,0.484620,0.385970,0.484720,0.383320,0.496510,0.423070,0.496350,0.427910,0.496190,0.432760,0.492950,0.414020,0.496470,0.413740,0.496500,0.412380,0.493010,0.412400,0.496530,0.411010,0.493070,0.410780,0.497050,0.408320,0.496790,0.409660,0.494120,0.407970,0.493590,0.409380,0.450230,0.442480,0.456860,0.438800,0.457480,0.429660,0.450490,0.432500,0.463490,0.435110,0.464470,0.426830,0.465460,0.418540,0.458100,0.420530,0.465680,0.414170,0.460170,0.413210,0.465900,0.409800,0.462240,0.405890,0.470050,0.433290,0.470820,0.426410,0.476620,0.431460,0.477170,0.425990,0.477720,0.420520,0.471590,0.419530,0.477710,0.417980,0.471690,0.416080,0.477710,0.415430,0.471800,0.412620,0.477920,0.413770,0.472160,0.410570,0.466410,0.407380,0.493020,0.417820,0.490520,0.417540,0.490510,0.420210,0.493020,0.420600,0.488030,0.417250,0.488010,0.419810,0.492980,0.415920,0.490410,0.415710,0.490310,0.413880,0.487670,0.413730,0.487850,0.415490,0.486870,0.409890,0.483090,0.409230,0.483000,0.411070,0.487270,0.411810,0.482900,0.412920,0.486880,0.405950,0.484370,0.405720,0.483730,0.407480,0.486870,0.407920,0.489200,0.406010,0.488040,0.405980,0.489000,0.408160,0.491130,0.408400,0.489970,0.410340,0.490140,0.412110,0.482880,0.414630,0.482870,0.416340,0.482860,0.418900,0.482850,0.421450,0.482300,0.426580,0.481750,0.431710,0.496180,0.438890,0.496170,0.445020,0.492370,0.438880,0.492350,0.444670,0.489400,0.438320,0.489170,0.444110,0.486440,0.437750,0.486000,0.443550,0.496150,0.448430,0.492320,0.448070,0.489080,0.447650,0.485840,0.447240,0.481160,0.444240,0.481140,0.447840,0.476330,0.444930,0.476450,0.448450,0.481460,0.437980,0.476470,0.438200,0.463070,0.448590,0.469700,0.446760,0.469870,0.440030,0.463280,0.441850,0.450480,0.448010,0.456880,0.444930,0.450740,0.453540,0.456900,0.451070,0.434560,0.455720,0.442520,0.444110,0.436380,0.458520,0.443300,0.450500,0.438220,0.460460,0.444350,0.454240,0.440070,0.462390,0.445400,0.457970,0.442150,0.462930,0.446830,0.459340,0.451510,0.455750,0.457380,0.453630,0.463250,0.451500,0.469850,0.449980,0.494280,0.405070,0.497130,0.405480,0.497110,0.404110,0.494240,0.403610,0.497100,0.402730,0.494210,0.402140,0.497090,0.406900,0.494200,0.406520,0.491950,0.406110,0.491540,0.407260,0.489780,0.404250,0.489490,0.405130,0.492040,0.403440,0.491990,0.404780,0.489800,0.401800,0.489790,0.403030,0.491970,0.400160,0.492000,0.401800,0.489740,0.398170,0.489770,0.399990,0.486790,0.390890,0.486970,0.388500,0.489050,0.393150,0.489310,0.391020,0.489580,0.388890,0.487150,0.386110,0.491420,0.392650,0.491300,0.389610,0.491540,0.395680,0.494030,0.398210,0.493520,0.394270,0.493020,0.390330,0.489390,0.395660,0.491750,0.397920,0.494120,0.400180,0.497050,0.400870,0.497010,0.399000,0.496750,0.395090,0.496500,0.391180,0.490160,0.381040,0.491590,0.385690,0.495790,0.386270,0.495070,0.381350,0.489370,0.385900,0.487440,0.382180,0.486310,0.376750,0.483320,0.377840,0.489300,0.375660,0.488450,0.370280,0.485180,0.371320,0.481920,0.372360,0.494430,0.352650,0.494310,0.356200,0.488880,0.352940,0.488630,0.356550,0.488390,0.360150,0.494190,0.359740,0.494200,0.364950,0.494220,0.370160,0.488420,0.365220,0.494640,0.375760,0.496500,0.417340,0.496500,0.420200,0.496480,0.415540,0.393520,0.163450,0.387910,0.147690,0.370300,0.163470,0.377550,0.179600,0.300110,0.302200,0.308850,0.284140,0.303870,0.329060,0.310720,0.314090,0.335430,0.315120,0.325360,0.336400,0.328100,0.374920,0.334520,0.281680,0.322620,0.297890,0.315290,0.357680,0.319860,0.401270,0.307770,0.366610,0.311670,0.404150,0.328450,0.261430,0.348050,0.238720,0.374090,0.330910,0.368380,0.318800,0.381690,0.319120,0.376930,0.307830,0.372180,0.296530,0.362670,0.306690,0.379750,0.295420,0.380950,0.283080,0.373580,0.280900,0.382160,0.270730,0.374980,0.265260,0.383330,0.304660,0.386920,0.313910,0.470350,0.315190,0.466390,0.318480,0.467530,0.325210,0.471930,0.321880,0.462430,0.321760,0.463130,0.328530,0.463830,0.335300,0.468670,0.331940,0.473520,0.328570,0.473430,0.336580,0.477940,0.333060,0.477890,0.324470,0.473350,0.344590,0.477990,0.341640,0.473530,0.349970,0.478050,0.347130,0.473720,0.355340,0.478110,0.352610,0.482510,0.349870,0.482570,0.344280,0.477880,0.356200,0.482040,0.353320,0.473710,0.359080,0.473710,0.362810,0.477640,0.359790,0.481580,0.356760,0.465670,0.386470,0.463890,0.391020,0.465310,0.383530,0.462680,0.390070,0.466140,0.397150,0.464800,0.397510,0.463520,0.401700,0.460630,0.396030,0.459100,0.391260,0.461770,0.384800,0.460870,0.379520,0.457580,0.386490,0.464610,0.378950,0.467450,0.373090,0.466960,0.369200,0.463910,0.374360,0.458280,0.371010,0.462220,0.366090,0.460680,0.360370,0.455990,0.364840,0.466170,0.361170,0.465370,0.355900,0.464580,0.350620,0.459140,0.354650,0.453700,0.358670,0.463070,0.370230,0.459570,0.375270,0.466560,0.365190,0.472290,0.375600,0.471040,0.373190,0.473540,0.378010,0.475730,0.376090,0.474930,0.372750,0.474130,0.369400,0.478820,0.374230,0.480110,0.379070,0.476900,0.380290,0.474220,0.382880,0.477640,0.363170,0.481360,0.360240,0.473920,0.366110,0.477640,0.366560,0.481150,0.363710,0.485230,0.354850,0.485000,0.358390,0.484770,0.361930,0.484970,0.366630,0.481530,0.368040,0.478230,0.370390,0.470680,0.369600,0.470330,0.366010,0.470140,0.362130,0.469940,0.358260,0.469450,0.352930,0.468960,0.347610,0.464200,0.342960,0.468820,0.339770,0.456970,0.324390,0.457390,0.331480,0.451520,0.327020,0.451660,0.334430,0.451810,0.341840,0.457820,0.338570,0.458480,0.346610,0.452750,0.350260,0.455690,0.382040,0.451810,0.388820,0.453810,0.377600,0.449340,0.384180,0.450860,0.370350,0.445730,0.375850,0.447910,0.363090,0.442130,0.367510,0.445350,0.400260,0.438890,0.411690,0.442110,0.395690,0.434890,0.407190,0.429980,0.427840,0.421080,0.443990,0.425620,0.423750,0.416360,0.440310,0.419000,0.412040,0.408310,0.427850,0.429690,0.396220,0.424500,0.385250,0.412380,0.400320,0.437710,0.386040,0.433310,0.376380,0.440680,0.358110,0.432160,0.364870,0.439240,0.348710,0.431010,0.353350,0.422790,0.357980,0.423640,0.371620,0.412790,0.380540,0.413200,0.360770,0.424080,0.347290,0.415450,0.348880,0.425380,0.336600,0.417710,0.336980,0.410040,0.337360,0.406830,0.350460,0.439370,0.340180,0.431730,0.343740,0.439510,0.331650,0.432440,0.334130,0.446720,0.354190,0.445520,0.345280,0.445520,0.337310,0.445510,0.329340,0.451390,0.321420,0.445780,0.323400,0.440170,0.325390,0.398560,0.347340,0.402590,0.334550,0.395140,0.331740,0.390290,0.344210,0.388410,0.325430,0.382190,0.337560,0.392630,0.319250,0.398340,0.324590,0.412910,0.329810,0.405630,0.327200,0.433690,0.327330,0.427200,0.329270,0.420060,0.329540,0.455530,0.318960,0.459670,0.316490,0.463080,0.313920,0.466490,0.311340,0.494820,0.345170,0.494630,0.348910,0.489660,0.345490,0.489270,0.349220,0.486080,0.347680,0.485650,0.351270,0.486280,0.341860,0.489990,0.339430,0.495160,0.332710,0.494990,0.338940,0.495200,0.321260,0.495250,0.309810,0.486010,0.267920,0.487910,0.277440,0.493950,0.277270,0.493000,0.267510,0.489810,0.286950,0.494900,0.287020,0.495070,0.298420,0.490160,0.298420,0.473070,0.288120,0.471190,0.280770,0.480390,0.286930,0.477740,0.278960,0.475100,0.270990,0.469320,0.273410,0.481340,0.298630,0.479200,0.303080,0.482790,0.309110,0.485920,0.304260,0.477070,0.307530,0.479670,0.313950,0.473710,0.311360,0.475800,0.317920,0.468750,0.308280,0.471010,0.305220,0.472530,0.301650,0.474050,0.298080,0.473560,0.293100,0.480860,0.292780,0.485100,0.286940,0.485510,0.295600,0.482820,0.278200,0.480550,0.269460,0.477980,0.258590,0.471460,0.259600,0.484510,0.257570,0.483010,0.247220,0.475420,0.247710,0.467830,0.248200,0.481150,0.218320,0.490570,0.218730,0.489060,0.194800,0.478140,0.194950,0.487560,0.170860,0.475140,0.171570,0.491500,0.247210,0.491030,0.232970,0.482080,0.232770,0.461970,0.217760,0.471560,0.218040,0.467690,0.195790,0.457230,0.196620,0.463820,0.173530,0.452500,0.175480,0.464900,0.232980,0.454170,0.234200,0.457450,0.249910,0.450900,0.218480,0.439830,0.219200,0.443450,0.235410,0.463380,0.261660,0.427120,0.221050,0.429990,0.235840,0.414420,0.222900,0.416540,0.236270,0.405770,0.193490,0.410090,0.208200,0.422300,0.204440,0.417490,0.187820,0.434520,0.200670,0.429210,0.182140,0.380360,0.216980,0.393060,0.205240,0.385300,0.192420,0.370970,0.206370,0.399640,0.178470,0.389410,0.236530,0.394350,0.246540,0.405440,0.241410,0.401910,0.229720,0.388250,0.258640,0.382190,0.250900,0.346480,0.275090,0.358720,0.240730,0.358440,0.268490,0.369400,0.242740,0.364690,0.286790,0.355800,0.292670,0.366710,0.266880,0.345610,0.303900,0.375790,0.246820,0.384880,0.226760,0.397490,0.217480,0.466320,0.120390,0.470730,0.145980,0.485360,0.144820,0.483150,0.118770,0.439260,0.129470,0.445880,0.152480,0.458300,0.149230,0.452790,0.124930,0.481310,0.100410,0.462630,0.102030,0.434370,0.111970,0.448500,0.107000,0.400120,0.137450,0.405350,0.153550,0.417190,0.143640,0.412330,0.127200,0.423350,0.119590,0.428220,0.136560,0.411420,0.170680,0.423200,0.162890,0.434540,0.157690,0.440850,0.178810,0.445870,0.198650,0.473490,0.232880,0.492250,0.257360,0.586760,0.473700,0.583330,0.489910,0.590470,0.494170,0.595300,0.473540,0.579910,0.506120,0.585640,0.514800,0.591380,0.523480,0.597610,0.498430,0.603840,0.473370,0.572150,0.461510,0.575630,0.460440,0.568680,0.462570,0.570140,0.472220,0.573610,0.472720,0.577080,0.473210,0.660200,0.515230,0.646250,0.532410,0.640760,0.567480,0.657220,0.549520,0.632310,0.549580,0.624310,0.585440,0.605610,0.507110,0.615730,0.476690,0.595500,0.537530,0.599620,0.551580,0.613620,0.515790,0.627630,0.480000,0.643930,0.497440,0.629970,0.514790,0.657890,0.480080,0.655590,0.444930,0.641610,0.462470,0.650390,0.414510,0.637900,0.428360,0.625420,0.442210,0.613600,0.443290,0.601780,0.444380,0.599770,0.572550,0.614870,0.543670,0.599930,0.593520,0.616120,0.571550,0.607170,0.605110,0.590040,0.624770,0.560300,0.465930,0.562340,0.465280,0.560690,0.469470,0.562930,0.470100,0.565180,0.470720,0.564390,0.464620,0.566530,0.463600,0.567660,0.471470,0.557950,0.465860,0.558080,0.468790,0.573890,0.484350,0.578610,0.487130,0.581920,0.473460,0.570700,0.495480,0.575300,0.500800,0.566440,0.481240,0.570160,0.482790,0.562750,0.490250,0.566720,0.492870,0.499990,0.594180,0.511120,0.592970,0.511270,0.581330,0.499990,0.582480,0.522260,0.591760,0.522550,0.580180,0.522840,0.568600,0.511410,0.569690,0.499990,0.570770,0.499990,0.604600,0.510090,0.603690,0.499990,0.615020,0.509060,0.614400,0.518130,0.613770,0.520190,0.602770,0.533820,0.587530,0.534030,0.575660,0.545380,0.583300,0.545510,0.571130,0.545640,0.558960,0.534240,0.563780,0.531420,0.599130,0.529020,0.610730,0.539910,0.607690,0.542640,0.595500,0.580320,0.543480,0.581980,0.557390,0.569260,0.563480,0.568460,0.577250,0.567660,0.591020,0.583640,0.571300,0.572490,0.522480,0.576400,0.532980,0.565070,0.538840,0.567160,0.551160,0.555550,0.586380,0.557320,0.573390,0.553780,0.599360,0.555350,0.548900,0.556330,0.561150,0.563730,0.506100,0.568110,0.514290,0.556770,0.516720,0.560920,0.527780,0.556270,0.497310,0.560000,0.501710,0.549800,0.504360,0.553280,0.510540,0.542260,0.508540,0.545630,0.516550,0.534730,0.512720,0.537990,0.522560,0.541250,0.532400,0.549010,0.524560,0.553410,0.471940,0.555810,0.473320,0.548740,0.475080,0.550930,0.477170,0.560750,0.477500,0.563600,0.479370,0.556330,0.484280,0.559540,0.487270,0.558280,0.475410,0.553630,0.480730,0.553050,0.493040,0.549840,0.488780,0.543350,0.493270,0.546570,0.498820,0.547110,0.484430,0.544380,0.480070,0.537830,0.482970,0.540590,0.488120,0.542540,0.477540,0.536340,0.479990,0.530150,0.481810,0.531480,0.484940,0.523950,0.483620,0.525130,0.486900,0.533700,0.490120,0.535930,0.495310,0.526820,0.492120,0.528520,0.497340,0.539100,0.501930,0.531620,0.505030,0.521680,0.498160,0.524150,0.506360,0.514840,0.498970,0.516680,0.507690,0.518530,0.516400,0.526630,0.514560,0.529210,0.525670,0.531790,0.536780,0.520430,0.528780,0.522340,0.541160,0.552180,0.536730,0.543440,0.545680,0.533010,0.550280,0.522590,0.554880,0.511290,0.556030,0.511160,0.542380,0.499990,0.543590,0.499990,0.557180,0.510210,0.529700,0.509260,0.517020,0.499990,0.517630,0.499990,0.530610,0.507410,0.499260,0.508330,0.508140,0.499990,0.499540,0.499990,0.508590,0.512850,0.489240,0.513840,0.494110,0.520330,0.493120,0.518990,0.488070,0.518000,0.484620,0.512050,0.485620,0.506020,0.485920,0.499990,0.486210,0.499990,0.489850,0.506420,0.489550,0.506910,0.494400,0.499990,0.494700,0.704590,0.478780,0.696980,0.466580,0.685840,0.477620,0.693370,0.491920,0.675290,0.520720,0.673020,0.496430,0.661130,0.394720,0.667850,0.423100,0.670430,0.459770,0.682980,0.439450,0.692640,0.435370,0.580410,0.458730,0.585190,0.457010,0.593480,0.450690,0.529240,0.629820,0.534570,0.618760,0.521810,0.620680,0.514610,0.630620,0.509060,0.622590,0.499990,0.631410,0.506030,0.620070,0.499990,0.623220,0.499990,0.658010,0.499990,0.672680,0.523150,0.662220,0.525000,0.645300,0.546320,0.651750,0.550020,0.632590,0.568180,0.638260,0.574970,0.613060,0.579300,0.592180,0.558840,0.611810,0.546700,0.615280,0.539630,0.631210,0.519810,0.637960,0.499990,0.644710,0.408600,0.523480,0.414330,0.514800,0.409500,0.494170,0.402370,0.498430,0.420070,0.506120,0.416640,0.489910,0.413220,0.473700,0.404680,0.473540,0.396140,0.473370,0.429840,0.472220,0.431290,0.462570,0.427820,0.461510,0.426370,0.472720,0.424350,0.460440,0.422900,0.473210,0.375670,0.585440,0.359210,0.567480,0.367670,0.549580,0.353720,0.532410,0.339780,0.515230,0.342760,0.549520,0.400360,0.551580,0.404480,0.537530,0.394360,0.507110,0.386350,0.515790,0.384240,0.476690,0.372350,0.480000,0.344390,0.444930,0.342080,0.480080,0.356040,0.497440,0.358370,0.462470,0.370010,0.514790,0.362070,0.428360,0.374560,0.442210,0.349580,0.414510,0.398200,0.444380,0.386380,0.443290,0.383860,0.571550,0.385100,0.543670,0.400050,0.593520,0.400200,0.572550,0.409930,0.624770,0.392800,0.605110,0.434800,0.470720,0.437040,0.470100,0.437630,0.465280,0.435590,0.464620,0.439290,0.469470,0.439680,0.465930,0.432320,0.471470,0.433440,0.463600,0.442020,0.465860,0.441900,0.468790,0.424670,0.500800,0.421360,0.487130,0.429280,0.495480,0.426090,0.484350,0.418060,0.473460,0.433250,0.492870,0.429810,0.482790,0.437230,0.490250,0.433530,0.481240,0.477140,0.568600,0.477430,0.580180,0.488710,0.581330,0.488560,0.569690,0.477720,0.591760,0.488850,0.592970,0.481850,0.613770,0.490920,0.614400,0.489880,0.603690,0.479780,0.602770,0.454340,0.558960,0.454470,0.571130,0.465950,0.575660,0.465740,0.563780,0.454600,0.583300,0.466160,0.587530,0.460070,0.607690,0.470960,0.610730,0.468560,0.599130,0.457330,0.595500,0.432320,0.591020,0.431520,0.577250,0.418000,0.557390,0.416340,0.571300,0.430720,0.563480,0.419660,0.543480,0.432810,0.551160,0.423570,0.532980,0.434910,0.538840,0.427490,0.522480,0.446190,0.599360,0.444420,0.586380,0.442660,0.573390,0.443640,0.561150,0.444620,0.548900,0.439060,0.527780,0.431860,0.514290,0.443210,0.516720,0.436240,0.506100,0.446690,0.510540,0.439970,0.501710,0.450180,0.504360,0.443700,0.497310,0.458730,0.532400,0.461990,0.522560,0.454340,0.516550,0.450970,0.524560,0.465250,0.512720,0.457710,0.508540,0.446570,0.471940,0.451240,0.475080,0.444170,0.473320,0.449050,0.477170,0.440440,0.487270,0.436380,0.479370,0.443650,0.484280,0.439220,0.477500,0.441690,0.475410,0.446350,0.480730,0.456630,0.493270,0.450140,0.488780,0.446920,0.493040,0.453400,0.498820,0.462150,0.482970,0.455600,0.480070,0.452870,0.484430,0.459390,0.488120,0.457430,0.477540,0.463630,0.479990,0.469830,0.481810,0.476020,0.483620,0.468500,0.484940,0.474850,0.486900,0.466270,0.490120,0.473150,0.492120,0.464040,0.495310,0.471460,0.497340,0.460880,0.501930,0.468350,0.505030,0.481450,0.516400,0.483290,0.507690,0.475820,0.506360,0.473350,0.514560,0.485140,0.498970,0.478300,0.498160,0.470760,0.525670,0.479540,0.528780,0.468180,0.536780,0.477640,0.541160,0.456530,0.545680,0.447790,0.536730,0.466960,0.550280,0.477390,0.554880,0.488810,0.542380,0.488690,0.556030,0.490720,0.517020,0.489760,0.529700,0.491640,0.508140,0.492560,0.499260,0.479640,0.493120,0.486130,0.494110,0.487130,0.489240,0.480990,0.488070,0.481970,0.484620,0.487920,0.485620,0.493950,0.485920,0.493560,0.489550,0.493060,0.494400,0.314140,0.477620,0.303000,0.466580,0.295380,0.478780,0.306610,0.491920,0.326960,0.496430,0.324680,0.520720,0.338840,0.394720,0.332120,0.423100,0.317000,0.439450,0.329540,0.459770,0.307330,0.435370,0.419570,0.458730,0.414790,0.457010,0.406490,0.450690,0.478160,0.620680,0.490920,0.622590,0.465400,0.618760,0.470740,0.629820,0.485360,0.630620,0.493940,0.620070,0.476820,0.662220,0.453650,0.651750,0.474970,0.645300,0.449960,0.632590,0.431790,0.638260,0.425000,0.613060,0.441140,0.611810,0.420670,0.592180,0.460350,0.631210,0.453270,0.615280,0.480170,0.637960,0.967830,0.012880,0.967790,0.013630,0.960670,0.014210,0.960670,0.013420,0.967750,0.014380,0.960680,0.015000,0.953620,0.015620,0.953560,0.014790,0.953510,0.013950,0.949720,0.019270,0.949470,0.018390,0.945830,0.022920,0.945390,0.022000,0.944950,0.021070,0.949230,0.017510,0.944770,0.027620,0.944250,0.026770,0.943710,0.032310,0.943110,0.031530,0.942510,0.030750,0.943730,0.025910,0.945030,0.035850,0.944540,0.035500,0.946350,0.039390,0.945980,0.039470,0.945610,0.039550,0.944060,0.035150,0.948790,0.041980,0.948540,0.042270,0.949050,0.041690,0.951750,0.043990,0.951610,0.044490,0.951480,0.044990,0.956150,0.045800,0.956210,0.046220,0.956090,0.045370,0.960440,0.046750,0.960690,0.047100,0.960940,0.047440,0.970290,0.045220,0.970400,0.045750,0.965540,0.046420,0.965360,0.045990,0.970520,0.046270,0.965730,0.046860,0.976170,0.042170,0.976150,0.042710,0.973280,0.044230,0.973230,0.043700,0.976140,0.043250,0.973330,0.044760,0.977990,0.039990,0.977900,0.040340,0.979810,0.037800,0.979650,0.037970,0.979500,0.038130,0.977820,0.040690,0.980260,0.025850,0.980730,0.026070,0.979190,0.022840,0.978740,0.022550,0.981200,0.026290,0.979650,0.023140,0.978110,0.019980,0.977660,0.019610,0.977220,0.019240,0.981000,0.032420,0.981420,0.032610,0.981070,0.029340,0.980630,0.029140,0.981850,0.032790,0.981520,0.029540,0.980830,0.035300,0.980540,0.035290,0.980250,0.035280,0.972520,0.016060,0.972720,0.016620,0.972930,0.017180,0.943980,0.030550,0.945080,0.026250,0.945460,0.030340,0.946430,0.026580,0.947400,0.022820,0.946170,0.021950,0.948430,0.030670,0.949750,0.027710,0.951400,0.031000,0.953070,0.028830,0.954740,0.026650,0.951070,0.024740,0.955420,0.035980,0.953410,0.033490,0.950100,0.033820,0.951780,0.036960,0.946800,0.034140,0.948150,0.037930,0.946880,0.038740,0.945430,0.034650,0.952110,0.043670,0.949490,0.041210,0.952740,0.042340,0.950440,0.040140,0.953490,0.040720,0.952630,0.038840,0.954240,0.039090,0.954830,0.037540,0.956530,0.039630,0.957740,0.038600,0.958830,0.040170,0.960650,0.039660,0.962480,0.039150,0.958950,0.037570,0.960500,0.044160,0.959660,0.042170,0.956570,0.041440,0.956620,0.043250,0.956410,0.044740,0.960720,0.045800,0.969400,0.044800,0.965060,0.045300,0.968280,0.043320,0.964390,0.043740,0.962520,0.041700,0.965380,0.041240,0.972650,0.041000,0.968890,0.039410,0.967130,0.040320,0.970460,0.042160,0.965140,0.037810,0.963810,0.038480,0.974390,0.042130,0.971890,0.043460,0.950120,0.018800,0.951010,0.020080,0.954630,0.017340,0.954070,0.015650,0.960430,0.015230,0.960200,0.017040,0.965780,0.016740,0.966800,0.014810,0.971010,0.017610,0.969510,0.019150,0.973240,0.021550,0.975230,0.020400,0.976390,0.032030,0.975820,0.034430,0.978030,0.034850,0.978690,0.032230,0.975260,0.036820,0.977380,0.037480,0.964500,0.031810,0.965560,0.033580,0.970690,0.034010,0.970440,0.031920,0.966620,0.035350,0.970940,0.036090,0.961020,0.035670,0.962180,0.034380,0.959960,0.033900,0.965880,0.036580,0.969910,0.037750,0.973950,0.038910,0.975880,0.039800,0.962390,0.036380,0.960280,0.036900,0.957100,0.032930,0.957950,0.031410,0.959620,0.029230,0.956880,0.029820,0.965630,0.029990,0.962000,0.028880,0.966770,0.028160,0.960750,0.027410,0.975750,0.026690,0.971260,0.027430,0.970850,0.029680,0.976070,0.029360,0.978350,0.029250,0.978000,0.026270,0.965140,0.025110,0.965950,0.026640,0.970220,0.025380,0.969190,0.023330,0.974490,0.024120,0.976610,0.023340,0.963980,0.019320,0.966580,0.021330,0.962180,0.021900,0.963660,0.023510,0.962210,0.026640,0.959940,0.025880,0.955260,0.019760,0.959620,0.019540,0.955890,0.022170,0.959030,0.022040,0.959480,0.023960,0.955310,0.024410,0.953160,0.022250,0.961010,0.037650,0.547710,0.298440,0.546160,0.298410,0.546540,0.298820,0.548540,0.298900,0.544620,0.298380,0.544550,0.298730,0.544480,0.299080,0.546920,0.299220,0.549370,0.299360,0.544400,0.299570,0.543360,0.298090,0.543620,0.297800,0.542770,0.296510,0.542330,0.296610,0.565930,0.301560,0.561540,0.301110,0.570320,0.302010,0.570320,0.301120,0.565970,0.300650,0.561620,0.300170,0.558080,0.299870,0.557930,0.300760,0.554550,0.299560,0.554320,0.300400,0.551960,0.299460,0.551730,0.300190,0.549150,0.299990,0.554860,0.297650,0.554700,0.298610,0.558160,0.298820,0.558240,0.297780,0.561620,0.299040,0.561620,0.297900,0.565920,0.299460,0.570230,0.299880,0.570150,0.298640,0.565880,0.298270,0.594140,0.293670,0.594850,0.293060,0.592200,0.292590,0.591690,0.293490,0.595570,0.292440,0.592710,0.291680,0.589860,0.290920,0.589550,0.292120,0.589250,0.293310,0.593030,0.295530,0.593900,0.295540,0.593670,0.294890,0.592890,0.295170,0.594770,0.295550,0.594450,0.294610,0.593440,0.294240,0.592750,0.294810,0.592180,0.297560,0.593470,0.296560,0.592520,0.296260,0.591140,0.296980,0.591570,0.295960,0.590110,0.296390,0.587620,0.299650,0.589900,0.298610,0.588990,0.297800,0.586840,0.298630,0.588080,0.297000,0.586060,0.297600,0.574780,0.302010,0.579240,0.302000,0.579070,0.301100,0.574690,0.301110,0.583340,0.300380,0.582810,0.299270,0.578780,0.299920,0.582270,0.298170,0.578490,0.298730,0.574500,0.299900,0.574320,0.298690,0.583700,0.301250,0.588160,0.300490,0.590600,0.299340,0.593040,0.298180,0.594420,0.296910,0.595810,0.295640,0.595330,0.294350,0.596210,0.294080,0.542620,0.295220,0.542190,0.295110,0.543050,0.295340,0.543340,0.294160,0.542910,0.293830,0.542490,0.293500,0.543820,0.297620,0.543090,0.296510,0.544010,0.297450,0.543410,0.296510,0.544980,0.297990,0.544550,0.297300,0.545340,0.297600,0.545100,0.297150,0.544860,0.296700,0.544130,0.296610,0.543360,0.295510,0.543660,0.295680,0.543920,0.294840,0.543630,0.294500,0.544940,0.296360,0.544300,0.296020,0.545020,0.296010,0.544470,0.295430,0.546840,0.297670,0.546090,0.297640,0.546120,0.298030,0.547270,0.298060,0.548050,0.297220,0.547440,0.297450,0.547990,0.297740,0.548710,0.297430,0.548540,0.298040,0.549370,0.297630,0.545940,0.297170,0.545790,0.296700,0.546780,0.297180,0.546720,0.296690,0.546520,0.295740,0.545770,0.295880,0.545780,0.296290,0.546620,0.296220,0.546080,0.291680,0.546210,0.292470,0.550510,0.292490,0.550340,0.291420,0.546340,0.293250,0.550690,0.293550,0.555040,0.293850,0.554820,0.292510,0.554600,0.291160,0.565510,0.292410,0.565420,0.290980,0.565590,0.293830,0.576150,0.293810,0.576200,0.292310,0.576250,0.290800,0.582870,0.292210,0.582700,0.293560,0.583050,0.290860,0.591180,0.294310,0.590670,0.295120,0.588920,0.294370,0.588590,0.295420,0.582530,0.294720,0.582360,0.295880,0.576140,0.295080,0.576140,0.296340,0.565650,0.294780,0.555150,0.294490,0.555270,0.295120,0.565700,0.295730,0.550830,0.294070,0.546510,0.293650,0.546680,0.294050,0.550970,0.294590,0.545070,0.294080,0.544840,0.293710,0.545300,0.294450,0.544280,0.292590,0.544560,0.293150,0.549500,0.295900,0.549500,0.295850,0.549470,0.295830,0.549470,0.295880,0.549510,0.295790,0.549480,0.295780,0.549450,0.295770,0.549440,0.295810,0.549440,0.295850,0.549360,0.295970,0.549400,0.295980,0.549380,0.295940,0.549340,0.295930,0.549440,0.295980,0.549410,0.295940,0.549390,0.295900,0.549360,0.295900,0.549330,0.295890,0.549240,0.295960,0.549300,0.295970,0.549290,0.295930,0.549240,0.295920,0.549280,0.295890,0.549240,0.295880,0.549110,0.295950,0.549170,0.295960,0.549180,0.295920,0.549120,0.295910,0.549190,0.295880,0.549140,0.295870,0.549060,0.295830,0.549030,0.295860,0.549080,0.295890,0.549100,0.295850,0.549010,0.295880,0.549060,0.295920,0.549480,0.295970,0.549490,0.295940,0.549460,0.295910,0.549450,0.295930,0.549430,0.295870,0.549420,0.295890,0.549460,0.295980,0.549430,0.295940,0.549400,0.295900,0.549010,0.295700,0.548970,0.295700,0.548970,0.295740,0.549010,0.295740,0.548940,0.295690,0.548940,0.295730,0.548940,0.295770,0.548970,0.295770,0.549010,0.295770,0.549150,0.295560,0.549130,0.295530,0.549070,0.295570,0.549090,0.295600,0.549120,0.295490,0.549050,0.295540,0.548980,0.295590,0.549010,0.295610,0.549040,0.295630,0.549300,0.295570,0.549300,0.295540,0.549220,0.295530,0.549220,0.295570,0.549310,0.295500,0.549210,0.295500,0.549470,0.295660,0.549390,0.295580,0.549370,0.295600,0.549440,0.295670,0.549360,0.295620,0.549420,0.295670,0.549490,0.295730,0.549460,0.295730,0.549430,0.295720,0.549420,0.295790,0.549420,0.295830,0.549420,0.295760,0.549400,0.295740,0.549400,0.295770,0.549400,0.295800,0.549340,0.295870,0.549320,0.295860,0.549370,0.295870,0.549360,0.295840,0.549330,0.295840,0.549310,0.295830,0.549280,0.295860,0.549240,0.295860,0.549270,0.295830,0.549240,0.295830,0.549190,0.295850,0.549150,0.295850,0.549200,0.295830,0.549160,0.295820,0.549100,0.295790,0.549080,0.295810,0.549110,0.295830,0.549130,0.295810,0.549410,0.295860,0.549400,0.295860,0.549410,0.295840,0.549390,0.295830,0.549390,0.295870,0.549370,0.295840,0.549060,0.295700,0.549030,0.295700,0.549030,0.295730,0.549060,0.295730,0.549030,0.295760,0.549060,0.295750,0.549160,0.295600,0.549150,0.295580,0.549110,0.295610,0.549120,0.295630,0.549060,0.295640,0.549090,0.295650,0.549280,0.295600,0.549290,0.295590,0.549220,0.295590,0.549220,0.295600,0.549340,0.295630,0.549400,0.295670,0.549330,0.295640,0.549380,0.295670,0.549410,0.295720,0.549390,0.295710,0.549020,0.295670,0.548980,0.295670,0.548980,0.295680,0.549010,0.295690,0.548950,0.295660,0.548940,0.295680,0.549030,0.295690,0.549040,0.295680,0.549040,0.295690,0.549070,0.295680,0.546410,0.295210,0.545440,0.295320,0.546310,0.294680,0.545110,0.294760,0.545630,0.294530,0.546490,0.294370,0.546750,0.294750,0.546730,0.294520,0.547200,0.294820,0.546940,0.294440,0.548990,0.295660,0.549030,0.295660,0.548960,0.295650,0.549000,0.295640,0.548970,0.295620,0.549030,0.295650,0.549050,0.295670,0.549040,0.295670,0.549050,0.295660,0.549080,0.295660,0.549070,0.295670,0.547350,0.297030,0.547270,0.296610,0.547930,0.296870,0.547820,0.296520,0.547570,0.295490,0.547040,0.295620,0.547150,0.296110,0.547690,0.296010,0.546900,0.295190,0.547380,0.295160,0.548200,0.295880,0.548030,0.295290,0.548370,0.296470,0.548930,0.296410,0.548710,0.295750,0.548490,0.295080,0.548540,0.296950,0.549150,0.297020,0.547750,0.295130,0.547840,0.294950,0.546770,0.299780,0.552690,0.297640,0.552320,0.298550,0.550530,0.297630,0.549950,0.298500,0.549950,0.297630,0.549240,0.298270,0.548940,0.295790,0.548980,0.295780,0.548950,0.295800,0.548980,0.295790,0.549020,0.295780,0.549010,0.295780,0.548980,0.295840,0.549010,0.295830,0.549040,0.295810,0.549030,0.295770,0.549040,0.295770,0.549080,0.295780,0.549060,0.295790,0.549070,0.295760,0.732820,0.969210,0.736750,0.969210,0.736250,0.953740,0.732640,0.953730,0.740680,0.969210,0.739870,0.953740,0.739060,0.938260,0.735760,0.938260,0.732470,0.938250,0.744420,0.969210,0.743470,0.953720,0.748170,0.969200,0.747080,0.953690,0.745990,0.938180,0.742520,0.938220,0.751760,0.969200,0.750790,0.953600,0.755350,0.969190,0.754500,0.953510,0.753650,0.937830,0.749820,0.938010,0.758060,0.969190,0.757300,0.953460,0.760770,0.969180,0.760100,0.953410,0.759430,0.937640,0.756540,0.937740,0.765150,0.969170,0.764930,0.953360,0.762510,0.953390,0.762960,0.969180,0.764710,0.937540,0.762070,0.937590,0.767570,0.969170,0.767690,0.953330,0.769990,0.969170,0.770450,0.953310,0.770920,0.937440,0.767810,0.937490,0.764190,0.920780,0.761840,0.920780,0.761950,0.929190,0.764450,0.929160,0.759490,0.920780,0.759460,0.929210,0.770320,0.929110,0.767380,0.929140,0.769720,0.920780,0.766950,0.920780,0.760950,0.981400,0.762990,0.981390,0.762970,0.975290,0.760860,0.975290,0.765040,0.981380,0.765090,0.975280,0.755860,0.981430,0.758400,0.981420,0.758230,0.975300,0.755600,0.975310,0.756670,0.929260,0.753890,0.929310,0.756810,0.920780,0.754140,0.920780,0.750340,0.920780,0.750080,0.929400,0.746540,0.920780,0.746260,0.929480,0.754990,0.914220,0.760040,0.913840,0.761260,0.910260,0.751250,0.907730,0.765100,0.913460,0.771270,0.912800,0.777450,0.912130,0.762480,0.906680,0.747520,0.901230,0.781470,0.909800,0.775600,0.905210,0.785490,0.907460,0.788730,0.903730,0.791970,0.900000,0.769740,0.900620,0.749290,0.981460,0.752570,0.981450,0.752160,0.975320,0.748730,0.975330,0.749180,0.988990,0.752340,0.988990,0.752460,0.985220,0.749230,0.985230,0.755510,0.988990,0.755680,0.985210,0.757710,0.988990,0.758050,0.985210,0.759910,0.988990,0.760430,0.985200,0.740940,0.988990,0.745060,0.988990,0.745270,0.985230,0.741310,0.985230,0.745480,0.981470,0.741680,0.981470,0.733570,0.981480,0.734110,0.985240,0.737710,0.985240,0.737620,0.981480,0.734660,0.988990,0.737800,0.988990,0.737180,0.975350,0.733190,0.975350,0.741180,0.975340,0.744950,0.975340,0.742730,0.929500,0.742950,0.920780,0.739360,0.920780,0.739210,0.929520,0.736100,0.929520,0.736430,0.920780,0.733510,0.920780,0.732990,0.929520,0.748170,0.914260,0.751580,0.914240,0.750220,0.909910,0.747840,0.907750,0.802940,0.920780,0.800790,0.920780,0.801930,0.929530,0.804220,0.929530,0.798640,0.920780,0.799650,0.929530,0.800660,0.938270,0.803080,0.938280,0.805500,0.938280,0.747520,0.887380,0.750180,0.878640,0.749170,0.875870,0.747330,0.878860,0.752840,0.869890,0.749990,0.870120,0.747150,0.870340,0.797730,0.988990,0.801100,0.988990,0.801740,0.985260,0.798290,0.985260,0.804480,0.988990,0.805190,0.985260,0.805900,0.981520,0.802370,0.981520,0.798850,0.981520,0.798900,0.969220,0.798870,0.975370,0.802230,0.975370,0.802090,0.969220,0.805590,0.975370,0.805280,0.969220,0.799780,0.953750,0.802580,0.953750,0.805390,0.953750,0.769640,0.981370,0.769620,0.985180,0.772390,0.985200,0.772240,0.981400,0.769610,0.988990,0.772540,0.988990,0.775470,0.988990,0.775160,0.985210,0.774850,0.981430,0.777660,0.985220,0.777550,0.981440,0.777770,0.988990,0.780080,0.988990,0.780160,0.985220,0.780250,0.981450,0.791990,0.894410,0.769750,0.894360,0.792010,0.888820,0.769760,0.888100,0.747520,0.894310,0.755650,0.878390,0.754710,0.875560,0.763780,0.869390,0.758310,0.869640,0.795540,0.920780,0.796600,0.929520,0.792440,0.920780,0.793560,0.929510,0.794690,0.938230,0.797670,0.938250,0.793190,0.953720,0.796480,0.953740,0.791700,0.969210,0.795300,0.969220,0.791200,0.981510,0.795020,0.981520,0.795160,0.975370,0.791450,0.975360,0.790740,0.988990,0.794230,0.988990,0.794630,0.985260,0.790970,0.985250,0.785410,0.988990,0.788070,0.988990,0.788260,0.985250,0.785550,0.985240,0.788440,0.981500,0.785690,0.981490,0.782850,0.985230,0.782740,0.988990,0.782970,0.981470,0.780490,0.969190,0.780370,0.975320,0.783140,0.975340,0.783310,0.969200,0.785910,0.975350,0.786130,0.969210,0.788680,0.975360,0.788910,0.969210,0.783490,0.937790,0.781990,0.953490,0.784780,0.953560,0.786260,0.937920,0.787580,0.953630,0.789040,0.938050,0.790390,0.953680,0.791860,0.938140,0.787820,0.929420,0.785110,0.929350,0.786610,0.920780,0.783960,0.920780,0.781320,0.920780,0.782400,0.929290,0.790690,0.929460,0.789520,0.920780,0.781050,0.875070,0.777610,0.873080,0.766630,0.875730,0.764280,0.881230,0.774170,0.871080,0.768970,0.870240,0.775330,0.920780,0.776190,0.929190,0.779290,0.929240,0.778320,0.920780,0.777050,0.937590,0.780270,0.937690,0.773250,0.929150,0.773980,0.937520,0.772520,0.920780,0.790600,0.884510,0.777440,0.882870,0.789190,0.880200,0.785120,0.877640,0.775980,0.953390,0.778980,0.953440,0.774910,0.969190,0.777700,0.969190,0.774880,0.975310,0.777620,0.975320,0.769810,0.975270,0.772340,0.975290,0.772450,0.969180,0.762150,0.988990,0.762570,0.985190,0.764390,0.988990,0.764710,0.985190,0.767170,0.985190,0.767340,0.981380,0.767000,0.988990,0.767450,0.975280,0.773210,0.953350,0.504770,0.466510,0.499990,0.466630,0.509550,0.466390,0.509480,0.466220,0.504730,0.466360,0.499990,0.466500,0.513810,0.465830,0.513760,0.465680,0.518080,0.465270,0.518050,0.465140,0.523970,0.464890,0.523950,0.464740,0.529860,0.464500,0.529860,0.464330,0.534350,0.464280,0.538850,0.464060,0.538580,0.463930,0.534220,0.464130,0.541570,0.463660,0.544290,0.463250,0.543950,0.463120,0.541260,0.463530,0.544880,0.462870,0.545470,0.462490,0.544900,0.462620,0.544420,0.462870,0.544540,0.462360,0.543610,0.462220,0.543440,0.462390,0.544170,0.462510,0.539350,0.462780,0.535100,0.463340,0.535130,0.463540,0.539280,0.462970,0.528800,0.463700,0.528800,0.463960,0.522500,0.464070,0.522470,0.464370,0.518430,0.464530,0.514370,0.464980,0.514500,0.465150,0.518480,0.464760,0.510950,0.465430,0.507530,0.465870,0.507530,0.465970,0.511010,0.465560,0.503760,0.466000,0.503760,0.466080,0.499990,0.466120,0.499990,0.466190,0.046360,0.015620,0.039290,0.015000,0.039300,0.014210,0.046410,0.014790,0.032230,0.014380,0.032190,0.013630,0.032150,0.012880,0.039310,0.013420,0.046470,0.013950,0.055030,0.021070,0.054590,0.022000,0.050500,0.018390,0.050750,0.017510,0.054150,0.022920,0.050250,0.019270,0.057470,0.030750,0.056870,0.031530,0.055730,0.026770,0.056250,0.025910,0.056270,0.032310,0.055210,0.027620,0.054360,0.039550,0.053990,0.039470,0.055430,0.035500,0.055910,0.035150,0.053630,0.039390,0.054950,0.035850,0.048230,0.043990,0.050930,0.041690,0.051180,0.041980,0.048360,0.044490,0.051430,0.042270,0.048500,0.044990,0.039540,0.046750,0.043880,0.045370,0.043820,0.045800,0.039290,0.047100,0.043770,0.046220,0.039040,0.047440,0.034250,0.046860,0.034430,0.046420,0.029460,0.046270,0.029570,0.045750,0.029680,0.045220,0.034610,0.045990,0.026650,0.044760,0.026690,0.044230,0.023840,0.043250,0.023820,0.042710,0.023810,0.042170,0.026740,0.043700,0.020480,0.038130,0.020320,0.037970,0.022070,0.040340,0.022160,0.040690,0.020170,0.037800,0.021990,0.039990,0.021860,0.019980,0.020320,0.023140,0.020770,0.022840,0.022310,0.019610,0.018780,0.026290,0.019240,0.026070,0.019710,0.025850,0.021230,0.022550,0.022760,0.019240,0.018450,0.029540,0.018890,0.029340,0.018120,0.032790,0.018550,0.032610,0.018980,0.032420,0.019340,0.029140,0.019430,0.035290,0.019730,0.035280,0.019140,0.035300,0.027250,0.016620,0.027040,0.017180,0.027450,0.016060,0.052580,0.022820,0.053550,0.026580,0.054900,0.026250,0.053800,0.021950,0.054520,0.030340,0.055990,0.030550,0.045230,0.026650,0.046900,0.028830,0.050220,0.027710,0.048900,0.024740,0.048580,0.031000,0.051550,0.030670,0.049870,0.033820,0.053170,0.034140,0.046570,0.033490,0.044560,0.035980,0.048190,0.036960,0.051820,0.037930,0.054540,0.034650,0.053090,0.038740,0.049530,0.040140,0.050480,0.041210,0.047240,0.042340,0.047870,0.043670,0.045150,0.037540,0.047340,0.038840,0.045740,0.039090,0.046490,0.040720,0.037500,0.039150,0.039320,0.039660,0.042230,0.038600,0.041030,0.037570,0.041150,0.040170,0.043440,0.039630,0.043400,0.041440,0.040310,0.042170,0.039470,0.044160,0.043350,0.043250,0.043560,0.044740,0.039250,0.045800,0.035580,0.043740,0.034910,0.045300,0.031690,0.043320,0.030570,0.044800,0.037450,0.041700,0.034590,0.041240,0.036170,0.038480,0.032840,0.040320,0.034840,0.037810,0.031080,0.039410,0.027330,0.041000,0.029510,0.042160,0.028080,0.043460,0.025580,0.042130,0.045350,0.017340,0.048960,0.020080,0.049850,0.018800,0.045910,0.015650,0.034200,0.016740,0.039770,0.017040,0.039540,0.015230,0.033170,0.014810,0.026730,0.021550,0.030460,0.019150,0.028960,0.017610,0.024740,0.020400,0.022600,0.037480,0.021940,0.034850,0.024720,0.036820,0.024150,0.034430,0.023590,0.032030,0.021280,0.032230,0.029030,0.036090,0.029280,0.034010,0.033350,0.035350,0.034410,0.033580,0.035480,0.031810,0.029530,0.031920,0.038950,0.035670,0.037790,0.034380,0.040020,0.033900,0.030060,0.037750,0.026020,0.038910,0.034090,0.036580,0.024090,0.039800,0.037580,0.036380,0.039700,0.036900,0.042870,0.032930,0.042030,0.031410,0.040350,0.029230,0.043090,0.029820,0.033200,0.028160,0.034340,0.029990,0.037970,0.028880,0.039210,0.027410,0.029120,0.029680,0.028710,0.027430,0.024230,0.026690,0.023910,0.029360,0.021620,0.029250,0.021970,0.026270,0.029750,0.025380,0.025480,0.024120,0.034020,0.026640,0.034840,0.025110,0.030780,0.023330,0.023350,0.023340,0.036320,0.023510,0.033390,0.021330,0.037800,0.021900,0.036000,0.019320,0.037750,0.026640,0.040030,0.025880,0.040940,0.022040,0.040350,0.019540,0.044080,0.022170,0.044710,0.019760,0.040480,0.023960,0.044650,0.024410,0.046810,0.022250,0.038960,0.037650,0.455500,0.299080,0.455430,0.298730,0.453430,0.298820,0.453050,0.299220,0.453810,0.298410,0.452270,0.298440,0.451440,0.298900,0.450610,0.299360,0.457210,0.296510,0.456350,0.297800,0.456610,0.298090,0.457640,0.296610,0.455580,0.299570,0.429660,0.301120,0.429660,0.302010,0.434040,0.301560,0.434010,0.300650,0.438430,0.301110,0.438360,0.300170,0.445660,0.300400,0.442040,0.300760,0.445430,0.299560,0.441890,0.299870,0.450820,0.299990,0.448240,0.300190,0.448020,0.299460,0.441810,0.298820,0.438360,0.299040,0.445270,0.298610,0.445120,0.297650,0.441740,0.297780,0.438360,0.297900,0.429830,0.298640,0.429740,0.299880,0.434050,0.299460,0.434090,0.298270,0.410120,0.290920,0.407260,0.291680,0.407770,0.292590,0.410420,0.292120,0.404410,0.292440,0.405120,0.293060,0.405840,0.293670,0.408280,0.293490,0.410730,0.293310,0.405520,0.294610,0.406300,0.294890,0.406530,0.294240,0.405210,0.295550,0.406080,0.295540,0.406950,0.295530,0.407090,0.295170,0.407230,0.294810,0.407450,0.296260,0.408410,0.295960,0.406500,0.296560,0.407800,0.297560,0.408830,0.296980,0.409870,0.296390,0.410980,0.297800,0.411890,0.297000,0.410080,0.298610,0.412360,0.299650,0.413140,0.298630,0.413920,0.297600,0.420910,0.301100,0.420740,0.302000,0.425200,0.302010,0.425280,0.301110,0.417170,0.299270,0.417700,0.298170,0.416630,0.300380,0.421200,0.299920,0.421490,0.298730,0.425470,0.299900,0.425660,0.298690,0.411810,0.300490,0.416270,0.301250,0.406930,0.298180,0.409370,0.299340,0.404170,0.295640,0.405550,0.296910,0.403770,0.294080,0.404640,0.294350,0.456640,0.294160,0.456920,0.295340,0.457350,0.295220,0.457060,0.293830,0.457780,0.295110,0.457490,0.293500,0.455360,0.298380,0.456160,0.297620,0.455960,0.297450,0.456890,0.296510,0.456570,0.296510,0.455120,0.296700,0.454880,0.297150,0.455420,0.297300,0.455840,0.296610,0.454640,0.297600,0.455000,0.297990,0.456060,0.294840,0.456310,0.295680,0.456620,0.295510,0.456350,0.294500,0.455510,0.295430,0.455670,0.296020,0.454960,0.296010,0.455040,0.296360,0.453850,0.298030,0.453890,0.297640,0.453140,0.297670,0.452700,0.298060,0.451980,0.297740,0.451440,0.298040,0.452530,0.297450,0.451930,0.297220,0.451270,0.297430,0.450610,0.297630,0.454040,0.297170,0.453200,0.297180,0.454190,0.296700,0.453260,0.296690,0.454200,0.296290,0.454210,0.295880,0.453460,0.295740,0.453360,0.296220,0.444940,0.293850,0.449290,0.293550,0.449460,0.292490,0.445160,0.292510,0.453640,0.293250,0.453770,0.292470,0.453900,0.291680,0.449640,0.291420,0.445380,0.291160,0.423830,0.293810,0.434380,0.293830,0.434470,0.292410,0.423780,0.292310,0.434550,0.290980,0.423730,0.290800,0.416920,0.290860,0.417100,0.292210,0.417280,0.293560,0.408790,0.294310,0.411060,0.294370,0.409310,0.295120,0.411390,0.295420,0.417440,0.294720,0.423830,0.295080,0.417610,0.295880,0.423840,0.296340,0.444710,0.295120,0.444820,0.294490,0.434330,0.294780,0.434270,0.295730,0.453300,0.294050,0.453470,0.293650,0.449140,0.294070,0.449000,0.294590,0.454680,0.294450,0.454910,0.294080,0.455140,0.293710,0.455410,0.293150,0.455690,0.292590,0.450530,0.295770,0.450500,0.295780,0.450500,0.295830,0.450530,0.295810,0.450470,0.295790,0.450470,0.295850,0.450480,0.295900,0.450510,0.295880,0.450540,0.295850,0.450590,0.295900,0.450560,0.295940,0.450600,0.295940,0.450620,0.295900,0.450540,0.295980,0.450580,0.295980,0.450620,0.295970,0.450630,0.295930,0.450650,0.295890,0.450680,0.295930,0.450690,0.295890,0.450680,0.295970,0.450740,0.295960,0.450740,0.295920,0.450740,0.295880,0.450790,0.295920,0.450790,0.295880,0.450800,0.295960,0.450870,0.295950,0.450850,0.295910,0.450840,0.295870,0.450920,0.295920,0.450900,0.295890,0.450970,0.295880,0.450940,0.295860,0.450920,0.295830,0.450880,0.295850,0.450520,0.295910,0.450550,0.295870,0.450490,0.295940,0.450500,0.295970,0.450530,0.295930,0.450560,0.295890,0.450540,0.295940,0.450570,0.295900,0.450520,0.295980,0.451040,0.295770,0.451040,0.295730,0.451000,0.295740,0.451000,0.295770,0.451040,0.295690,0.451000,0.295700,0.450970,0.295700,0.450970,0.295740,0.450970,0.295770,0.451000,0.295590,0.450930,0.295540,0.450900,0.295570,0.450970,0.295610,0.450860,0.295490,0.450840,0.295530,0.450830,0.295560,0.450880,0.295600,0.450940,0.295630,0.450760,0.295500,0.450760,0.295530,0.450670,0.295500,0.450670,0.295540,0.450680,0.295570,0.450750,0.295570,0.450600,0.295600,0.450620,0.295620,0.450590,0.295580,0.450510,0.295660,0.450530,0.295670,0.450560,0.295670,0.450510,0.295730,0.450540,0.295720,0.450490,0.295730,0.450580,0.295740,0.450550,0.295760,0.450550,0.295790,0.450580,0.295770,0.450560,0.295830,0.450580,0.295800,0.450620,0.295840,0.450600,0.295870,0.450630,0.295870,0.450640,0.295840,0.450660,0.295860,0.450670,0.295830,0.450700,0.295860,0.450700,0.295830,0.450740,0.295860,0.450740,0.295830,0.450780,0.295850,0.450780,0.295830,0.450830,0.295850,0.450820,0.295820,0.450860,0.295830,0.450900,0.295810,0.450880,0.295790,0.450850,0.295810,0.450560,0.295860,0.450560,0.295840,0.450570,0.295860,0.450590,0.295830,0.450590,0.295870,0.450600,0.295840,0.450940,0.295730,0.450940,0.295760,0.450940,0.295700,0.450920,0.295700,0.450920,0.295730,0.450920,0.295750,0.450870,0.295610,0.450910,0.295640,0.450820,0.295580,0.450820,0.295600,0.450850,0.295630,0.450890,0.295650,0.450750,0.295590,0.450690,0.295590,0.450700,0.295600,0.450760,0.295600,0.450630,0.295630,0.450650,0.295640,0.450580,0.295670,0.450600,0.295670,0.450560,0.295720,0.450590,0.295710,0.451030,0.295680,0.451000,0.295680,0.451030,0.295660,0.450990,0.295670,0.450960,0.295670,0.450960,0.295690,0.450940,0.295690,0.450930,0.295680,0.450910,0.295680,0.454860,0.294760,0.454530,0.295320,0.453670,0.294680,0.453560,0.295210,0.454340,0.294530,0.453480,0.294370,0.452780,0.294820,0.453220,0.294750,0.453250,0.294520,0.453040,0.294440,0.450950,0.295660,0.450950,0.295670,0.450990,0.295660,0.450980,0.295660,0.451020,0.295660,0.451020,0.295650,0.450940,0.295650,0.450970,0.295640,0.451010,0.295620,0.450930,0.295670,0.450940,0.295670,0.450920,0.295660,0.450900,0.295660,0.450910,0.295670,0.452620,0.297030,0.452040,0.296870,0.452710,0.296610,0.452160,0.296520,0.452820,0.296110,0.452930,0.295620,0.452410,0.295490,0.452280,0.296010,0.453080,0.295190,0.452590,0.295160,0.451050,0.296410,0.451600,0.296470,0.451770,0.295880,0.451270,0.295750,0.451950,0.295290,0.451490,0.295080,0.451430,0.296950,0.450830,0.297020,0.452220,0.295130,0.452130,0.294950,0.453200,0.299780,0.450030,0.298500,0.447650,0.298550,0.449450,0.297630,0.447280,0.297640,0.450730,0.298270,0.450030,0.297630,0.450960,0.295780,0.450990,0.295790,0.451000,0.295780,0.451030,0.295800,0.451030,0.295790,0.450970,0.295830,0.450940,0.295810,0.451000,0.295840,0.450950,0.295770,0.450940,0.295770,0.450930,0.295770,0.450910,0.295790,0.450910,0.295760,0.450890,0.295780,0.260920,0.938260,0.260100,0.953740,0.263710,0.953740,0.264210,0.938260,0.259290,0.969210,0.263220,0.969210,0.267150,0.969210,0.267320,0.953730,0.267500,0.938250,0.253990,0.938180,0.252890,0.953690,0.256500,0.953720,0.257450,0.938220,0.251800,0.969200,0.255540,0.969210,0.246320,0.937830,0.245470,0.953510,0.249180,0.953600,0.250150,0.938010,0.244630,0.969190,0.248210,0.969200,0.240540,0.937640,0.239870,0.953410,0.242670,0.953460,0.243430,0.937740,0.239210,0.969180,0.241920,0.969190,0.237900,0.937590,0.237460,0.953390,0.235270,0.937540,0.235050,0.953360,0.234830,0.969170,0.237020,0.969180,0.229060,0.937440,0.229520,0.953310,0.232280,0.953330,0.232160,0.937490,0.229990,0.969170,0.232410,0.969170,0.240510,0.929210,0.238020,0.929190,0.240490,0.920780,0.238140,0.920780,0.235790,0.920780,0.235530,0.929160,0.233020,0.920780,0.232590,0.929140,0.230260,0.920780,0.229660,0.929110,0.234880,0.975280,0.237000,0.975290,0.234940,0.981380,0.236980,0.981390,0.239030,0.981400,0.239120,0.975290,0.241740,0.975300,0.241570,0.981420,0.244110,0.981430,0.244370,0.975310,0.243290,0.929260,0.243160,0.920780,0.246070,0.929310,0.245830,0.920780,0.253710,0.929480,0.249890,0.929400,0.253440,0.920780,0.249630,0.920780,0.222530,0.912130,0.228700,0.912800,0.238710,0.910260,0.237490,0.906680,0.234870,0.913460,0.239930,0.913840,0.244990,0.914220,0.248720,0.907730,0.252450,0.901230,0.208000,0.900000,0.211240,0.903730,0.224360,0.905210,0.230220,0.900620,0.214490,0.907460,0.218510,0.909800,0.247800,0.975320,0.247400,0.981450,0.250690,0.981460,0.251240,0.975330,0.244280,0.985210,0.247510,0.985220,0.244460,0.988990,0.247630,0.988990,0.250800,0.988990,0.250740,0.985230,0.239540,0.985200,0.241910,0.985210,0.240060,0.988990,0.242260,0.988990,0.254700,0.985230,0.254490,0.981470,0.254920,0.988990,0.259040,0.988990,0.258670,0.985230,0.258300,0.981470,0.262170,0.988990,0.262260,0.985240,0.265310,0.988990,0.265860,0.985240,0.266410,0.981480,0.262350,0.981480,0.258790,0.975340,0.262780,0.975350,0.266780,0.975350,0.255020,0.975340,0.260620,0.920780,0.257030,0.920780,0.257240,0.929500,0.260770,0.929520,0.266470,0.920780,0.263540,0.920780,0.263870,0.929520,0.266980,0.929520,0.248400,0.914240,0.249750,0.909910,0.251810,0.914260,0.252130,0.907750,0.199320,0.938270,0.200330,0.929530,0.198040,0.929530,0.196900,0.938280,0.201340,0.920780,0.199190,0.920780,0.197040,0.920780,0.195760,0.929530,0.194480,0.938280,0.247130,0.869890,0.249790,0.878640,0.250800,0.875870,0.249980,0.870120,0.252450,0.887380,0.252640,0.878860,0.252830,0.870340,0.194080,0.981520,0.194780,0.985260,0.198230,0.985260,0.197600,0.981520,0.195490,0.988990,0.198870,0.988990,0.202250,0.988990,0.201690,0.985260,0.201130,0.981520,0.197740,0.975370,0.194390,0.975370,0.201100,0.975370,0.201080,0.969220,0.197890,0.969220,0.194700,0.969220,0.197390,0.953750,0.194590,0.953750,0.200200,0.953750,0.224500,0.988990,0.227430,0.988990,0.227580,0.985200,0.224810,0.985210,0.230370,0.988990,0.230350,0.985180,0.230330,0.981370,0.227720,0.981400,0.225120,0.981430,0.219900,0.988990,0.222200,0.988990,0.222310,0.985220,0.219810,0.985220,0.222420,0.981440,0.219720,0.981450,0.230210,0.888100,0.230210,0.894360,0.252450,0.894310,0.207970,0.888820,0.207980,0.894410,0.236190,0.869390,0.244320,0.878390,0.245250,0.875560,0.241660,0.869640,0.205290,0.938230,0.206410,0.929510,0.203370,0.929520,0.202300,0.938250,0.207540,0.920780,0.204440,0.920780,0.204670,0.969220,0.203490,0.953740,0.208270,0.969210,0.206780,0.953720,0.204810,0.975370,0.204950,0.981520,0.208780,0.981510,0.208520,0.975360,0.205350,0.985260,0.205740,0.988990,0.209240,0.988990,0.209010,0.985250,0.211710,0.985250,0.211530,0.981500,0.211900,0.988990,0.214560,0.988990,0.214420,0.985240,0.214290,0.981490,0.217000,0.981470,0.217110,0.985230,0.217230,0.988990,0.216830,0.975340,0.214070,0.975350,0.219600,0.975320,0.219480,0.969190,0.216660,0.969200,0.213850,0.969210,0.211290,0.975360,0.211060,0.969210,0.215190,0.953560,0.212390,0.953630,0.217980,0.953490,0.216490,0.937790,0.213710,0.937920,0.210940,0.938050,0.209580,0.953680,0.208110,0.938140,0.218650,0.920780,0.216000,0.920780,0.214860,0.929350,0.217570,0.929290,0.213360,0.920780,0.212150,0.929420,0.209280,0.929460,0.210450,0.920780,0.231000,0.870240,0.233340,0.875730,0.225810,0.871080,0.222360,0.873080,0.218920,0.875070,0.235680,0.881230,0.219710,0.937690,0.220680,0.929240,0.222930,0.937590,0.223790,0.929190,0.224650,0.920780,0.221650,0.920780,0.227450,0.920780,0.226720,0.929150,0.225990,0.937520,0.214850,0.877640,0.222530,0.882870,0.210790,0.880200,0.209380,0.884510,0.222270,0.969190,0.220990,0.953440,0.225070,0.969190,0.224000,0.953390,0.222340,0.975320,0.225090,0.975310,0.227620,0.975290,0.230160,0.975270,0.227530,0.969180,0.235260,0.985190,0.237400,0.985190,0.235580,0.988990,0.237820,0.988990,0.232970,0.988990,0.232800,0.985190,0.232630,0.981380,0.232520,0.975280,0.226760,0.953350,0.490500,0.466220,0.490430,0.466390,0.495210,0.466510,0.495240,0.466360,0.486160,0.465830,0.481890,0.465270,0.486210,0.465680,0.481930,0.465140,0.476000,0.464890,0.470120,0.464500,0.476020,0.464740,0.470120,0.464330,0.461400,0.463930,0.461130,0.464060,0.465620,0.464280,0.465760,0.464130,0.456030,0.463120,0.455690,0.463250,0.458410,0.463660,0.458710,0.463530,0.455080,0.462620,0.454500,0.462490,0.455090,0.462870,0.455550,0.462870,0.456540,0.462390,0.456370,0.462220,0.455430,0.462360,0.455810,0.462510,0.464850,0.463540,0.464880,0.463340,0.460620,0.462780,0.460690,0.462970,0.471170,0.463700,0.477470,0.464070,0.471180,0.463960,0.477510,0.464370,0.485480,0.465150,0.485610,0.464980,0.481540,0.464530,0.481490,0.464760,0.492450,0.465970,0.492450,0.465870,0.489030,0.465430,0.488960,0.465560,0.496220,0.466000,0.496220,0.466080,0.734140,0.371460,0.735440,0.370880,0.736120,0.369870,0.734090,0.372900,0.736070,0.371310,0.738060,0.369710,0.742880,0.366260,0.740990,0.366490,0.741080,0.368490,0.743570,0.368760,0.739110,0.366710,0.738580,0.368210,0.741160,0.370490,0.744270,0.371260,0.736650,0.368370,0.737980,0.366430,0.739870,0.364640,0.737120,0.368820,0.741710,0.364620,0.743540,0.364600,0.744960,0.366840,0.746380,0.369070,0.738330,0.385470,0.739890,0.383660,0.739440,0.382340,0.738050,0.384020,0.741460,0.381850,0.740840,0.380650,0.740220,0.379440,0.738990,0.381010,0.737770,0.382570,0.732340,0.381880,0.732050,0.383230,0.733140,0.383360,0.733830,0.381860,0.731770,0.384580,0.732450,0.384850,0.733130,0.385120,0.734220,0.383480,0.735320,0.381840,0.742550,0.374290,0.741660,0.374910,0.741250,0.377780,0.742000,0.378070,0.740780,0.375520,0.740500,0.377480,0.743410,0.372780,0.742980,0.377740,0.743960,0.377410,0.742550,0.382710,0.743650,0.383560,0.739210,0.372320,0.740880,0.373310,0.741020,0.371900,0.738630,0.371020,0.738610,0.375390,0.739690,0.375460,0.740280,0.374380,0.738910,0.373860,0.739160,0.377400,0.737820,0.377320,0.737030,0.379240,0.738620,0.379340,0.737600,0.375190,0.736590,0.377010,0.736590,0.374980,0.735360,0.376690,0.734130,0.378400,0.735580,0.378820,0.734700,0.380340,0.736170,0.380540,0.733230,0.380140,0.737580,0.380780,0.736540,0.382210,0.728880,0.390260,0.730890,0.390110,0.731790,0.388930,0.730020,0.389160,0.732900,0.389960,0.733570,0.388700,0.734240,0.387430,0.732700,0.387750,0.731160,0.388060,0.725630,0.390480,0.727250,0.390370,0.728720,0.389040,0.727430,0.388920,0.730200,0.387710,0.729240,0.387360,0.729410,0.390860,0.731570,0.391350,0.727930,0.391610,0.730240,0.392730,0.728550,0.394050,0.726240,0.392470,0.723930,0.390890,0.746140,0.376180,0.745900,0.383290,0.738960,0.388070,0.741300,0.385820,0.740600,0.384740,0.738640,0.386770,0.743210,0.385990,0.740530,0.388680,0.733890,0.392880,0.736170,0.391010,0.735930,0.389020,0.736050,0.390020,0.736100,0.387740,0.736280,0.386450,0.736350,0.385170,0.734660,0.386320,0.736420,0.383890,0.735080,0.385200,0.734100,0.385160,0.735320,0.383690,0.733400,0.386460,0.732140,0.386590,0.730500,0.385970,0.731320,0.386280,0.730760,0.384360,0.729470,0.385490,0.731020,0.382750,0.729700,0.383610,0.733000,0.378350,0.732010,0.380550,0.731880,0.378290,0.730790,0.380950,0.729060,0.379210,0.731570,0.376060,0.731010,0.375430,0.727890,0.379390,0.726970,0.385070,0.725530,0.385650,0.724730,0.388270,0.726300,0.387780,0.727880,0.386630,0.728330,0.384340,0.729400,0.381550,0.730470,0.378750,0.728010,0.382140,0.734690,0.376310,0.736380,0.374270,0.736170,0.373550,0.734020,0.375920,0.737640,0.374060,0.737690,0.372940,0.735130,0.373230,0.736880,0.372120,0.732800,0.375990,0.726710,0.382520,0.265890,0.372900,0.265840,0.371460,0.264530,0.370880,0.263900,0.371310,0.263850,0.369870,0.261920,0.369710,0.261390,0.368210,0.258900,0.368490,0.258810,0.370490,0.260870,0.366710,0.258980,0.366490,0.257100,0.366260,0.256400,0.368760,0.255710,0.371260,0.263330,0.368370,0.262000,0.366430,0.260100,0.364640,0.262860,0.368820,0.258270,0.364620,0.256430,0.364600,0.255010,0.366840,0.253590,0.369070,0.259760,0.379440,0.259140,0.380650,0.260530,0.382340,0.260980,0.381010,0.258520,0.381850,0.260080,0.383660,0.261650,0.385470,0.261930,0.384020,0.262210,0.382570,0.266850,0.385120,0.267530,0.384850,0.266840,0.383360,0.265750,0.383480,0.268210,0.384580,0.267920,0.383230,0.267640,0.381880,0.266150,0.381860,0.264660,0.381840,0.259480,0.377480,0.258720,0.377780,0.259200,0.375520,0.258310,0.374910,0.257430,0.374290,0.257970,0.378070,0.256990,0.377740,0.257420,0.382710,0.256570,0.372780,0.256020,0.377410,0.256330,0.383560,0.258950,0.371900,0.259100,0.373310,0.260770,0.372320,0.261340,0.371020,0.259690,0.374380,0.260280,0.375460,0.261370,0.375390,0.261070,0.373860,0.262950,0.379240,0.262160,0.377320,0.260820,0.377400,0.261350,0.379340,0.265850,0.378400,0.264620,0.376690,0.263390,0.377010,0.264400,0.378820,0.263390,0.374980,0.262380,0.375190,0.266740,0.380140,0.265270,0.380340,0.263800,0.380540,0.262390,0.380780,0.263430,0.382210,0.265740,0.387430,0.266410,0.388700,0.268180,0.388930,0.267280,0.387750,0.267080,0.389960,0.269090,0.390110,0.271100,0.390260,0.269960,0.389160,0.268820,0.388060,0.271250,0.389040,0.269780,0.387710,0.272720,0.390370,0.274350,0.390480,0.272540,0.388920,0.270740,0.387360,0.270560,0.390860,0.272040,0.391610,0.268410,0.391350,0.269740,0.392730,0.273730,0.392470,0.276040,0.390890,0.271430,0.394050,0.253830,0.376180,0.254080,0.383290,0.259380,0.384740,0.258670,0.385820,0.261020,0.388070,0.261330,0.386770,0.259440,0.388680,0.256760,0.385990,0.266080,0.392880,0.263800,0.391010,0.263920,0.390020,0.264050,0.389020,0.263870,0.387740,0.263690,0.386450,0.263620,0.385170,0.263550,0.383890,0.265320,0.386320,0.264900,0.385200,0.264650,0.383690,0.265870,0.385160,0.266570,0.386460,0.267830,0.386590,0.268650,0.386280,0.269470,0.385970,0.269210,0.384360,0.268960,0.382750,0.270510,0.385490,0.270280,0.383610,0.269190,0.380950,0.267960,0.380550,0.268100,0.378290,0.266970,0.378350,0.268960,0.375430,0.268400,0.376060,0.270920,0.379210,0.272090,0.379390,0.275240,0.388270,0.274440,0.385650,0.273010,0.385070,0.273680,0.387780,0.272090,0.386630,0.271640,0.384340,0.269510,0.378750,0.270570,0.381550,0.271960,0.382140,0.263810,0.373550,0.263600,0.374270,0.265280,0.376310,0.265950,0.375920,0.262330,0.374060,0.262290,0.372940,0.263090,0.372120,0.264850,0.373230,0.267180,0.375990,0.273260,0.382520,0.553650,0.281540,0.553890,0.284660,0.565170,0.284210,0.565100,0.281060,0.554140,0.287770,0.565240,0.287360,0.576340,0.286950,0.576440,0.283760,0.576550,0.280570,0.583410,0.287380,0.583680,0.284530,0.590480,0.287810,0.590920,0.285290,0.591370,0.282770,0.583960,0.281670,0.597050,0.290500,0.598280,0.293310,0.599910,0.292380,0.597770,0.289410,0.601540,0.291460,0.598500,0.288310,0.593760,0.289160,0.594350,0.287350,0.594930,0.285540,0.596310,0.291470,0.597240,0.293700,0.590170,0.289370,0.593240,0.290420,0.576290,0.288880,0.583230,0.289120,0.554370,0.289470,0.565330,0.289170,0.541050,0.295030,0.539900,0.294960,0.541260,0.293050,0.540030,0.292600,0.544600,0.289380,0.542310,0.290990,0.543300,0.291790,0.545340,0.290530,0.549850,0.290000,0.549370,0.288580,0.548910,0.284120,0.549140,0.286350,0.544180,0.286700,0.544390,0.288040,0.538900,0.294960,0.539030,0.292600,0.541100,0.289650,0.541710,0.290320,0.548790,0.282820,0.553770,0.279920,0.543820,0.285720,0.541890,0.288010,0.565120,0.279100,0.576470,0.278270,0.584000,0.279620,0.591530,0.280960,0.595340,0.284250,0.599140,0.287540,0.600950,0.289900,0.423640,0.286950,0.434740,0.287360,0.434810,0.284210,0.423530,0.283760,0.445840,0.287770,0.446080,0.284660,0.446330,0.281540,0.434880,0.281060,0.423430,0.280570,0.408600,0.282770,0.409050,0.285290,0.416290,0.284530,0.416010,0.281670,0.409500,0.287810,0.416570,0.287380,0.400060,0.292380,0.398430,0.291460,0.401690,0.293310,0.402930,0.290500,0.402200,0.289410,0.401470,0.288310,0.405620,0.287350,0.405030,0.285540,0.406210,0.289160,0.402730,0.293700,0.403670,0.291470,0.406740,0.290420,0.409810,0.289370,0.416740,0.289120,0.423680,0.288880,0.434640,0.289170,0.445610,0.289470,0.458930,0.295030,0.458720,0.293050,0.460070,0.294960,0.459950,0.292600,0.456680,0.291790,0.457660,0.290990,0.455380,0.289380,0.454640,0.290530,0.450120,0.290000,0.450610,0.288580,0.455580,0.288040,0.450830,0.286350,0.455790,0.286700,0.451060,0.284120,0.461070,0.294960,0.460940,0.292600,0.458260,0.290320,0.458860,0.289650,0.456150,0.285720,0.451170,0.282820,0.446200,0.279920,0.458080,0.288010,0.434850,0.279100,0.423510,0.278270,0.415970,0.279620,0.408440,0.280960,0.404630,0.284250,0.400830,0.287540,0.399020,0.289900,0.521090,0.395220,0.521380,0.397880,0.522740,0.398380,0.522500,0.395380,0.521670,0.400530,0.522990,0.401390,0.520530,0.402850,0.519850,0.401830,0.518040,0.403120,0.518080,0.404310,0.511000,0.397300,0.511790,0.394600,0.511420,0.398930,0.512660,0.396050,0.512850,0.403730,0.512020,0.403420,0.513670,0.404040,0.514250,0.402130,0.513760,0.401480,0.513270,0.400820,0.515870,0.404180,0.516140,0.402630,0.518560,0.391850,0.519820,0.393540,0.520940,0.392990,0.519370,0.390590,0.515480,0.391910,0.517020,0.391880,0.517420,0.390430,0.515460,0.390270,0.512670,0.399290,0.511430,0.401770,0.511730,0.402600,0.512970,0.400060,0.511420,0.400350,0.512660,0.397670,0.514070,0.393980,0.513630,0.392440,0.515930,0.399240,0.516630,0.399430,0.516720,0.398940,0.516210,0.398800,0.517340,0.399610,0.517240,0.399070,0.517150,0.398530,0.516820,0.398440,0.516490,0.398350,0.516700,0.396570,0.516540,0.396020,0.516160,0.396580,0.516450,0.396930,0.516390,0.395460,0.515860,0.396230,0.515340,0.396990,0.515770,0.397140,0.516210,0.397290,0.518470,0.396690,0.518000,0.396070,0.517730,0.396460,0.518070,0.396920,0.517530,0.395440,0.517380,0.396000,0.517240,0.396560,0.517460,0.396860,0.517680,0.397150,0.516960,0.396010,0.516970,0.396570,0.516960,0.395450,0.517730,0.398720,0.517460,0.398300,0.518010,0.399130,0.518680,0.398650,0.518230,0.398360,0.517780,0.398070,0.518570,0.397670,0.518150,0.397640,0.517730,0.397610,0.515570,0.398760,0.515750,0.399000,0.516070,0.398620,0.515940,0.398440,0.516400,0.398240,0.516320,0.398120,0.515350,0.398190,0.515460,0.398480,0.515860,0.398240,0.515780,0.398030,0.516260,0.397990,0.516210,0.397860,0.515770,0.397590,0.516210,0.397580,0.515340,0.397590,0.516950,0.396900,0.516940,0.397220,0.516990,0.397970,0.516970,0.397600,0.516700,0.398100,0.517130,0.398210,0.517140,0.398320,0.517560,0.400770,0.518600,0.400030,0.517780,0.401930,0.519200,0.400920,0.520630,0.399900,0.519650,0.399280,0.517910,0.402530,0.519530,0.401370,0.521150,0.400220,0.515370,0.400200,0.516460,0.400490,0.514810,0.401150,0.516290,0.401540,0.514530,0.401640,0.516220,0.402090,0.514800,0.399450,0.515080,0.399820,0.514040,0.400130,0.514420,0.400640,0.513650,0.400480,0.514090,0.401060,0.514460,0.398560,0.514630,0.399010,0.513570,0.398930,0.513800,0.399530,0.513120,0.399110,0.513380,0.399800,0.514450,0.396690,0.514450,0.397630,0.513560,0.396380,0.513560,0.397660,0.513110,0.396220,0.513110,0.397670,0.516080,0.394300,0.515260,0.395490,0.515770,0.393130,0.514660,0.394760,0.515620,0.392520,0.514360,0.394370,0.517860,0.394270,0.516970,0.394280,0.518190,0.393090,0.516980,0.393110,0.518370,0.392470,0.517000,0.392500,0.519320,0.396210,0.518590,0.395240,0.520180,0.395730,0.519180,0.394410,0.520630,0.395480,0.519500,0.393980,0.519490,0.397750,0.520400,0.397820,0.520890,0.397850,0.476990,0.401390,0.477230,0.398380,0.478310,0.400530,0.478600,0.397880,0.478890,0.395220,0.477470,0.395380,0.481940,0.403120,0.480120,0.401830,0.479440,0.402850,0.481900,0.404310,0.488970,0.397300,0.488560,0.398930,0.488180,0.394600,0.487320,0.396050,0.485730,0.402130,0.486300,0.404040,0.487130,0.403730,0.486220,0.401480,0.487950,0.403420,0.486710,0.400820,0.484100,0.404180,0.483830,0.402630,0.479040,0.392990,0.480150,0.393540,0.481420,0.391850,0.480600,0.390590,0.482560,0.390430,0.482960,0.391880,0.484500,0.391910,0.484510,0.390270,0.488250,0.402600,0.488540,0.401770,0.487310,0.399290,0.487010,0.400060,0.488550,0.400350,0.487310,0.397670,0.486350,0.392440,0.485910,0.393980,0.482830,0.398530,0.482730,0.399070,0.483250,0.398940,0.483160,0.398440,0.482640,0.399610,0.483340,0.399430,0.484050,0.399240,0.483770,0.398800,0.483490,0.398350,0.484640,0.396990,0.484110,0.396230,0.483820,0.396580,0.484200,0.397140,0.483590,0.395460,0.483430,0.396020,0.483280,0.396570,0.483520,0.396930,0.483770,0.397290,0.482740,0.396560,0.482590,0.396000,0.482250,0.396460,0.482520,0.396860,0.482450,0.395440,0.481980,0.396070,0.481510,0.396690,0.481900,0.396920,0.482300,0.397150,0.483020,0.395450,0.483010,0.396010,0.483010,0.396570,0.481300,0.398650,0.481970,0.399130,0.482240,0.398720,0.481750,0.398360,0.482510,0.398300,0.482200,0.398070,0.481820,0.397640,0.482250,0.397610,0.481400,0.397670,0.483900,0.398620,0.483570,0.398240,0.484230,0.399000,0.484410,0.398760,0.484030,0.398440,0.483660,0.398120,0.484110,0.398240,0.483710,0.397990,0.484520,0.398480,0.484630,0.398190,0.484200,0.398030,0.483770,0.397860,0.484630,0.397590,0.484200,0.397590,0.483770,0.397580,0.483020,0.396900,0.483030,0.397220,0.483010,0.397600,0.482980,0.397970,0.482840,0.398210,0.483280,0.398100,0.482840,0.398320,0.479350,0.399900,0.480770,0.400920,0.481370,0.400030,0.480320,0.399280,0.482200,0.401930,0.482420,0.400770,0.480450,0.401370,0.478830,0.400220,0.482070,0.402530,0.483680,0.401540,0.483510,0.400490,0.485170,0.401150,0.484610,0.400200,0.483760,0.402090,0.485450,0.401640,0.485550,0.400640,0.484890,0.399820,0.485940,0.400130,0.485170,0.399450,0.485880,0.401060,0.486320,0.400480,0.486170,0.399530,0.485340,0.399010,0.486410,0.398930,0.485520,0.398560,0.486590,0.399800,0.486860,0.399110,0.486410,0.397660,0.485520,0.397630,0.486420,0.396380,0.485530,0.396690,0.486860,0.397670,0.486870,0.396220,0.485310,0.394760,0.484710,0.395490,0.484210,0.393130,0.483900,0.394300,0.485610,0.394370,0.484350,0.392520,0.483000,0.393110,0.483010,0.394280,0.481790,0.393090,0.482120,0.394270,0.482980,0.392500,0.481600,0.392470,0.480790,0.394410,0.481380,0.395240,0.479800,0.395730,0.480650,0.396210,0.480470,0.393980,0.479340,0.395480,0.479570,0.397820,0.480490,0.397750,0.479080,0.397850]], - 'faces': [43,0,1,2,3,0,3,2,7,8,0,1,2,3,43,1,4,5,2,0,3,2,7,8,1,4,5,2,43,2,5,6,7,0,3,2,7,8,2,5,6,7,43,3,2,7,8,0,3,2,7,8,3,2,7,8,43,9,10,11,12,0,3,2,7,8,9,10,11,12,43,10,13,14,11,0,3,2,7,8,10,13,14,11,43,11,14,15,16,0,3,2,7,8,11,14,15,16,43,12,11,16,17,0,3,2,7,8,12,11,16,17,43,18,19,20,21,0,3,2,7,8,18,19,20,21,43,19,22,23,20,0,3,2,7,8,19,22,23,20,43,20,23,24,25,0,3,2,7,8,20,23,24,25,43,21,20,25,26,0,3,2,7,8,21,20,25,26,43,15,14,27,28,0,3,2,7,8,15,14,27,28,43,14,13,29,27,0,3,2,7,8,14,13,29,27,43,27,29,30,31,0,3,2,7,8,27,29,30,31,43,28,27,31,26,0,3,2,7,8,28,27,31,26,43,26,31,32,21,0,3,2,7,8,26,31,32,21,43,31,30,33,32,0,3,2,7,8,31,30,33,32,43,32,33,34,35,0,3,2,7,8,32,33,34,35,43,21,32,35,18,0,3,2,7,8,21,32,35,18,43,36,37,38,39,0,3,2,7,8,36,37,38,39,43,37,15,28,38,0,3,2,7,8,37,15,28,38,43,38,28,26,25,0,3,2,7,8,38,28,26,25,43,39,38,25,24,0,3,2,7,8,39,38,25,24,43,40,41,42,43,0,3,2,7,8,40,41,42,43,43,41,36,39,42,0,3,2,7,8,41,36,39,42,43,42,39,24,44,0,3,2,7,8,42,39,24,44,43,43,42,44,45,0,3,2,7,8,43,42,44,45,43,46,47,48,49,0,3,2,7,8,46,47,48,49,43,47,40,43,48,0,3,2,7,8,47,40,43,48,43,48,43,45,50,0,3,2,7,8,48,43,45,50,43,49,48,50,51,0,3,2,7,8,49,48,50,51,43,52,53,54,55,0,3,2,7,8,52,53,54,55,43,53,56,57,54,0,3,2,7,8,53,56,57,54,43,54,57,58,59,0,3,2,7,8,54,57,58,59,43,55,54,59,60,0,3,2,7,8,55,54,59,60,43,52,55,61,62,0,3,2,7,8,52,55,61,62,43,55,60,63,61,0,3,2,7,8,55,60,63,61,43,61,63,40,47,0,3,2,7,8,61,63,40,47,43,62,61,47,46,0,3,2,7,8,62,61,47,46,43,64,65,66,67,0,3,2,7,8,64,65,66,67,43,65,68,69,66,0,3,2,7,8,65,68,69,66,43,66,69,70,71,0,3,2,7,8,66,69,70,71,43,67,66,71,72,0,3,2,7,8,67,66,71,72,43,73,74,75,76,0,3,2,7,8,73,74,75,76,43,74,77,78,75,0,3,2,7,8,74,77,78,75,43,75,78,79,80,0,3,2,7,8,75,78,79,80,43,76,75,80,81,0,3,2,7,8,76,75,80,81,43,77,82,83,78,0,3,2,7,8,77,82,83,78,43,82,6,84,83,0,3,2,7,8,82,6,84,83,43,83,84,85,86,0,3,2,7,8,83,84,85,86,43,78,83,86,79,0,3,2,7,8,78,83,86,79,43,79,86,87,88,0,3,2,7,8,79,86,87,88,43,86,85,89,87,0,3,2,7,8,86,85,89,87,43,87,89,90,91,0,3,2,7,8,87,89,90,91,43,88,87,91,92,0,3,2,7,8,88,87,91,92,43,81,80,93,94,0,3,2,7,8,81,80,93,94,43,80,79,88,93,0,3,2,7,8,80,79,88,93,43,93,88,92,95,0,3,2,7,8,93,88,92,95,43,94,93,95,64,0,3,2,7,8,94,93,95,64,43,96,97,98,99,0,3,2,7,8,96,97,98,99,43,97,73,76,98,0,3,2,7,8,97,73,76,98,43,98,76,81,100,0,3,2,7,8,98,76,81,100,43,99,98,100,101,0,3,2,7,8,99,98,100,101,43,81,94,102,100,0,3,2,7,8,81,94,102,100,43,94,64,67,102,0,3,2,7,8,94,64,67,102,43,102,67,72,103,0,3,2,7,8,102,67,72,103,43,100,102,103,101,0,3,2,7,8,100,102,103,101,43,68,65,104,105,0,3,2,7,8,68,65,104,105,43,65,64,95,104,0,3,2,7,8,65,64,95,104,43,104,95,92,106,0,3,2,7,8,104,95,92,106,43,105,104,106,107,0,3,2,7,8,105,104,106,107,43,92,91,108,106,0,3,2,7,8,92,91,108,106,43,91,90,109,108,0,3,2,7,8,91,90,109,108,43,108,109,110,111,0,3,2,7,8,108,109,110,111,43,106,108,111,107,0,3,2,7,8,106,108,111,107,43,110,112,113,111,0,3,2,7,8,110,112,113,111,43,112,114,115,113,0,3,2,7,8,112,114,115,113,43,113,115,116,117,0,3,2,7,8,113,115,116,117,43,111,113,117,107,0,3,2,7,8,111,113,117,107,43,118,119,120,121,0,3,2,7,8,118,119,120,121,43,119,114,122,120,0,3,2,7,8,119,114,122,120,43,120,122,123,124,0,3,2,7,8,120,122,123,124,43,121,120,124,125,0,3,2,7,8,121,120,124,125,43,126,127,128,129,0,3,2,7,8,126,127,128,129,43,127,116,115,128,0,3,2,7,8,127,116,115,128,43,128,115,114,119,0,3,2,7,8,128,115,114,119,43,129,128,119,118,0,3,2,7,8,129,128,119,118,43,130,131,132,133,0,3,2,7,8,130,131,132,133,43,131,126,129,132,0,3,2,7,8,131,126,129,132,43,132,129,118,134,0,3,2,7,8,132,129,118,134,43,133,132,134,135,0,3,2,7,8,133,132,134,135,43,136,137,138,139,0,3,2,7,8,136,137,138,139,43,137,140,141,138,0,3,2,7,8,137,140,141,138,43,138,141,142,143,0,3,2,7,8,138,141,142,143,43,139,138,143,135,0,3,2,7,8,139,138,143,135,43,9,144,145,146,0,3,2,7,8,9,144,145,146,43,144,147,148,145,0,3,2,7,8,144,147,148,145,43,145,148,149,150,0,3,2,7,8,145,148,149,150,43,146,145,150,151,0,3,2,7,8,146,145,150,151,43,151,152,153,154,0,3,2,7,8,151,152,153,154,43,152,155,156,153,0,3,2,7,8,152,155,156,153,43,153,156,142,141,0,3,2,7,8,153,156,142,141,43,154,153,141,140,0,3,2,7,8,154,153,141,140,43,34,33,157,158,0,3,2,7,8,34,33,157,158,43,33,30,159,157,0,3,2,7,8,33,30,159,157,43,157,159,151,154,0,3,2,7,8,157,159,151,154,43,158,157,154,140,0,3,2,7,8,158,157,154,140,43,30,29,160,159,0,3,2,7,8,30,29,160,159,43,29,13,10,160,0,3,2,7,8,29,13,10,160,43,160,10,9,146,0,3,2,7,8,160,10,9,146,43,159,160,146,151,0,3,2,7,8,159,160,146,151,43,155,152,161,162,0,3,2,7,8,155,152,161,162,43,152,151,150,161,0,3,2,7,8,152,151,150,161,43,162,161,150,149,0,3,2,7,8,162,161,150,149,43,163,164,165,166,0,3,2,7,8,163,164,165,166,43,164,167,168,165,0,3,2,7,8,164,167,168,165,43,165,168,136,139,0,3,2,7,8,165,168,136,139,43,166,165,139,135,0,3,2,7,8,166,165,139,135,43,169,170,171,172,0,3,2,7,8,169,170,171,172,43,170,173,174,171,0,3,2,7,8,170,173,174,171,43,171,174,167,164,0,3,2,7,8,171,174,167,164,43,172,171,164,163,0,3,2,7,8,172,171,164,163,43,175,176,177,178,0,3,2,7,8,175,176,177,178,43,176,173,170,177,0,3,2,7,8,176,173,170,177,43,177,170,169,179,0,3,2,7,8,177,170,169,179,43,178,177,179,180,0,3,2,7,8,178,177,179,180,43,181,182,183,184,0,3,2,7,8,181,182,183,184,43,182,185,186,183,0,3,2,7,8,182,185,186,183,43,183,186,187,188,0,3,2,7,8,183,186,187,188,43,184,183,188,189,0,3,2,7,8,184,183,188,189,43,190,191,192,193,0,3,2,7,8,190,191,192,193,43,191,194,195,192,0,3,2,7,8,191,194,195,192,43,192,195,181,184,0,3,2,7,8,192,195,181,184,43,193,192,184,189,0,3,2,7,8,193,192,184,189,43,51,50,196,197,0,3,2,7,8,51,50,196,197,43,50,45,198,196,0,3,2,7,8,50,45,198,196,43,196,198,194,191,0,3,2,7,8,196,198,194,191,43,197,196,191,190,0,3,2,7,8,197,196,191,190,43,24,23,199,44,0,3,2,7,8,24,23,199,44,43,23,22,200,199,0,3,2,7,8,23,22,200,199,43,199,200,194,198,0,3,2,7,8,199,200,194,198,43,44,199,198,45,0,3,2,7,8,44,199,198,45,43,194,200,201,195,0,3,2,7,8,194,200,201,195,43,200,22,19,201,0,3,2,7,8,200,22,19,201,43,201,19,18,202,0,3,2,7,8,201,19,18,202,43,195,201,202,181,0,3,2,7,8,195,201,202,181,43,203,204,205,206,0,3,2,7,8,203,204,205,206,43,204,207,208,205,0,3,2,7,8,204,207,208,205,43,205,208,173,176,0,3,2,7,8,205,208,173,176,43,206,205,176,175,0,3,2,7,8,206,205,176,175,43,209,210,211,212,0,3,2,7,8,209,210,211,212,43,210,207,204,211,0,3,2,7,8,210,207,204,211,43,211,204,203,213,0,3,2,7,8,211,204,203,213,43,212,211,213,185,0,3,2,7,8,212,211,213,185,43,207,214,215,208,0,3,2,7,8,207,214,215,208,43,214,216,217,215,0,3,2,7,8,214,216,217,215,43,215,217,167,174,0,3,2,7,8,215,217,167,174,43,208,215,174,173,0,3,2,7,8,208,215,174,173,43,34,218,219,35,0,3,2,7,8,34,218,219,35,43,218,220,221,219,0,3,2,7,8,218,220,221,219,43,219,221,209,222,0,3,2,7,8,219,221,209,222,43,35,219,222,18,0,3,2,7,8,35,219,222,18,43,136,223,224,137,0,3,2,7,8,136,223,224,137,43,223,220,218,224,0,3,2,7,8,223,220,218,224,43,224,218,34,158,0,3,2,7,8,224,218,34,158,43,137,224,158,140,0,3,2,7,8,137,224,158,140,43,167,217,225,168,0,3,2,7,8,167,217,225,168,43,217,216,226,225,0,3,2,7,8,217,216,226,225,43,225,226,220,223,0,3,2,7,8,225,226,220,223,43,168,225,223,136,0,3,2,7,8,168,225,223,136,43,220,226,227,221,0,3,2,7,8,220,226,227,221,43,226,216,214,227,0,3,2,7,8,226,216,214,227,43,227,214,207,210,0,3,2,7,8,227,214,207,210,43,221,227,210,209,0,3,2,7,8,221,227,210,209,43,209,212,228,222,0,3,2,7,8,209,212,228,222,43,212,185,182,228,0,3,2,7,8,212,185,182,228,43,228,182,181,202,0,3,2,7,8,228,182,181,202,43,222,228,202,18,0,3,2,7,8,222,228,202,18,43,185,213,229,186,0,3,2,7,8,185,213,229,186,43,213,203,230,229,0,3,2,7,8,213,203,230,229,43,229,230,231,232,0,3,2,7,8,229,230,231,232,43,186,229,232,187,0,3,2,7,8,186,229,232,187,43,203,206,233,230,0,3,2,7,8,203,206,233,230,43,206,175,234,233,0,3,2,7,8,206,175,234,233,43,233,234,235,236,0,3,2,7,8,233,234,235,236,43,230,233,236,231,0,3,2,7,8,230,233,236,231,43,237,238,239,240,0,3,2,7,8,237,238,239,240,43,238,241,242,239,0,3,2,7,8,238,241,242,239,43,239,242,243,244,0,3,2,7,8,239,242,243,244,43,240,239,244,180,0,3,2,7,8,240,239,244,180,43,180,244,245,178,0,3,2,7,8,180,244,245,178,43,244,243,246,245,0,3,2,7,8,244,243,246,245,43,245,246,235,234,0,3,2,7,8,245,246,235,234,43,178,245,234,175,0,3,2,7,8,178,245,234,175,43,247,248,249,250,0,3,2,7,8,247,248,249,250,43,248,237,240,249,0,3,2,7,8,248,237,240,249,43,249,240,180,179,0,3,2,7,8,249,240,180,179,43,250,249,179,169,0,3,2,7,8,250,249,179,169,43,125,251,252,253,0,3,2,7,8,125,251,252,253,43,251,247,250,252,0,3,2,7,8,251,247,250,252,43,252,250,169,172,0,3,2,7,8,252,250,169,172,43,253,252,172,163,0,3,2,7,8,253,252,172,163,43,118,121,254,134,0,3,2,7,8,118,121,254,134,43,121,125,253,254,0,3,2,7,8,121,125,253,254,43,254,253,163,166,0,3,2,7,8,254,253,163,166,43,134,254,166,135,0,3,2,7,8,134,254,166,135,43,123,255,256,124,0,3,2,7,8,123,255,256,124,43,255,257,258,256,0,3,2,7,8,255,257,258,256,43,256,258,247,251,0,3,2,7,8,256,258,247,251,43,124,256,251,125,0,3,2,7,8,124,256,251,125,43,259,260,261,262,0,3,2,7,8,259,260,261,262,43,260,263,264,261,0,3,2,7,8,260,263,264,261,43,261,264,265,266,0,3,2,7,8,261,264,265,266,43,262,261,266,267,0,3,2,7,8,262,261,266,267,43,265,268,269,266,0,3,2,7,8,265,268,269,266,43,268,270,271,269,0,3,2,7,8,268,270,271,269,43,269,271,272,273,0,3,2,7,8,269,271,272,273,43,266,269,273,267,0,3,2,7,8,266,269,273,267,43,274,275,276,277,0,3,2,7,8,274,275,276,277,43,275,278,279,276,0,3,2,7,8,275,278,279,276,43,276,279,280,281,0,3,2,7,8,276,279,280,281,43,277,276,281,282,0,3,2,7,8,277,276,281,282,43,280,279,283,284,0,3,2,7,8,280,279,283,284,43,279,278,285,283,0,3,2,7,8,279,278,285,283,43,283,285,286,287,0,3,2,7,8,283,285,286,287,43,284,283,287,272,0,3,2,7,8,284,283,287,272,43,288,289,290,291,0,3,2,7,8,288,289,290,291,43,289,292,293,290,0,3,2,7,8,289,292,293,290,43,290,293,294,295,0,3,2,7,8,290,293,294,295,43,291,290,295,296,0,3,2,7,8,291,290,295,296,43,297,298,299,300,0,3,2,7,8,297,298,299,300,43,298,301,302,299,0,3,2,7,8,298,301,302,299,43,299,302,303,304,0,3,2,7,8,299,302,303,304,43,300,299,304,305,0,3,2,7,8,300,299,304,305,43,306,307,308,309,0,3,2,7,8,306,307,308,309,43,307,288,310,308,0,3,2,7,8,307,288,310,308,43,308,310,297,300,0,3,2,7,8,308,310,297,300,43,309,308,300,305,0,3,2,7,8,309,308,300,305,43,286,311,312,313,0,3,2,7,8,286,311,312,313,43,311,297,310,312,0,3,2,7,8,311,297,310,312,43,312,310,288,291,0,3,2,7,8,312,310,288,291,43,313,312,291,296,0,3,2,7,8,313,312,291,296,43,306,314,315,307,0,3,2,7,8,306,314,315,307,43,314,316,317,315,0,3,2,7,8,314,316,317,315,43,315,317,292,289,0,3,2,7,8,315,317,292,289,43,307,315,289,288,0,3,2,7,8,307,315,289,288,43,296,295,318,319,0,3,2,7,8,296,295,318,319,43,295,294,320,318,0,3,2,7,8,295,294,320,318,43,318,320,321,322,0,3,2,7,8,318,320,321,322,43,319,318,322,267,0,3,2,7,8,319,318,322,267,43,272,287,323,273,0,3,2,7,8,272,287,323,273,43,287,286,313,323,0,3,2,7,8,287,286,313,323,43,323,313,296,319,0,3,2,7,8,323,313,296,319,43,273,323,319,267,0,3,2,7,8,273,323,319,267,43,278,324,325,285,0,3,2,7,8,278,324,325,285,43,324,301,298,325,0,3,2,7,8,324,301,298,325,43,325,298,297,311,0,3,2,7,8,325,298,297,311,43,285,325,311,286,0,3,2,7,8,285,325,311,286,43,303,302,326,327,0,3,2,7,8,303,302,326,327,43,302,301,324,326,0,3,2,7,8,302,301,324,326,43,326,324,278,275,0,3,2,7,8,326,324,278,275,43,327,326,275,274,0,3,2,7,8,327,326,275,274,43,305,304,328,329,0,3,2,7,8,305,304,328,329,43,304,303,330,328,0,3,2,7,8,304,303,330,328,43,328,330,331,332,0,3,2,7,8,328,330,331,332,43,329,328,332,333,0,3,2,7,8,329,328,332,333,43,303,327,334,330,0,3,2,7,8,303,327,334,330,43,327,274,335,334,0,3,2,7,8,327,274,335,334,43,334,335,336,337,0,3,2,7,8,334,335,336,337,43,330,334,337,331,0,3,2,7,8,330,334,337,331,43,282,338,339,277,0,3,2,7,8,282,338,339,277,43,338,340,341,339,0,3,2,7,8,338,340,341,339,43,339,341,336,335,0,3,2,7,8,339,341,336,335,43,277,339,335,274,0,3,2,7,8,277,339,335,274,43,342,343,344,345,0,3,2,7,8,342,343,344,345,43,343,346,347,344,0,3,2,7,8,343,346,347,344,43,344,347,348,349,0,3,2,7,8,344,347,348,349,43,345,344,349,350,0,3,2,7,8,345,344,349,350,43,336,341,351,352,0,3,2,7,8,336,341,351,352,43,341,340,353,351,0,3,2,7,8,341,340,353,351,43,351,353,354,355,0,3,2,7,8,351,353,354,355,43,352,351,355,356,0,3,2,7,8,352,351,355,356,43,357,358,359,360,0,3,2,7,8,357,358,359,360,43,358,361,362,359,0,3,2,7,8,358,361,362,359,43,359,362,363,364,0,3,2,7,8,359,362,363,364,43,360,359,364,365,0,3,2,7,8,360,359,364,365,43,366,367,368,369,0,3,2,7,8,366,367,368,369,43,367,370,371,368,0,3,2,7,8,367,370,371,368,43,368,371,372,373,0,3,2,7,8,368,371,372,373,43,369,368,373,374,0,3,2,7,8,369,368,373,374,43,375,376,377,378,0,3,2,7,8,375,376,377,378,43,376,379,380,377,0,3,2,7,8,376,379,380,377,43,377,380,374,373,0,3,2,7,8,377,380,374,373,43,378,377,373,372,0,3,2,7,8,378,377,373,372,43,381,382,383,384,0,3,2,7,8,381,382,383,384,43,382,0,3,383,0,3,2,7,8,382,0,3,383,43,383,3,8,385,0,3,2,7,8,383,3,8,385,43,384,383,385,342,0,3,2,7,8,384,383,385,342,43,386,387,388,389,0,3,2,7,8,386,387,388,389,43,387,390,391,388,0,3,2,7,8,387,390,391,388,43,388,391,392,393,0,3,2,7,8,388,391,392,393,43,389,388,393,363,0,3,2,7,8,389,388,393,363,43,259,262,394,395,0,3,2,7,8,259,262,394,395,43,262,267,322,394,0,3,2,7,8,262,267,322,394,43,394,322,321,396,0,3,2,7,8,394,322,321,396,43,395,394,396,397,0,3,2,7,8,395,394,396,397,43,398,399,400,401,0,3,2,7,8,398,399,400,401,43,399,259,395,400,0,3,2,7,8,399,259,395,400,43,400,395,397,402,0,3,2,7,8,400,395,397,402,43,401,400,402,403,0,3,2,7,8,401,400,402,403,43,404,405,406,407,0,3,2,7,8,404,405,406,407,43,405,408,409,406,0,3,2,7,8,405,408,409,406,43,406,409,365,364,0,3,2,7,8,406,409,365,364,43,407,406,364,363,0,3,2,7,8,407,406,364,363,43,403,410,411,401,0,3,2,7,8,403,410,411,401,43,410,412,413,411,0,3,2,7,8,410,412,413,411,43,411,413,414,415,0,3,2,7,8,411,413,414,415,43,401,411,415,398,0,3,2,7,8,401,411,415,398,43,412,416,417,413,0,3,2,7,8,412,416,417,413,43,416,418,419,417,0,3,2,7,8,416,418,419,417,43,417,419,420,421,0,3,2,7,8,417,419,420,421,43,413,417,421,414,0,3,2,7,8,413,417,421,414,43,414,421,422,423,0,3,2,7,8,414,421,422,423,43,421,420,424,422,0,3,2,7,8,421,420,424,422,43,422,424,425,426,0,3,2,7,8,422,424,425,426,43,423,422,426,408,0,3,2,7,8,423,422,426,408,43,398,415,427,428,0,3,2,7,8,398,415,427,428,43,415,414,423,427,0,3,2,7,8,415,414,423,427,43,427,423,408,405,0,3,2,7,8,427,423,408,405,43,428,427,405,404,0,3,2,7,8,428,427,405,404,43,404,429,430,428,0,3,2,7,8,404,429,430,428,43,429,431,432,430,0,3,2,7,8,429,431,432,430,43,430,432,259,399,0,3,2,7,8,430,432,259,399,43,428,430,399,398,0,3,2,7,8,428,430,399,398,43,433,434,435,436,0,3,2,7,8,433,434,435,436,43,434,437,438,435,0,3,2,7,8,434,437,438,435,43,435,438,439,440,0,3,2,7,8,435,438,439,440,43,436,435,440,350,0,3,2,7,8,436,435,440,350,43,280,441,442,281,0,3,2,7,8,280,441,442,281,43,441,437,434,442,0,3,2,7,8,441,437,434,442,43,442,434,433,443,0,3,2,7,8,442,434,433,443,43,281,442,443,282,0,3,2,7,8,281,442,443,282,43,270,444,445,271,0,3,2,7,8,270,444,445,271,43,444,437,441,445,0,3,2,7,8,444,437,441,445,43,445,441,280,284,0,3,2,7,8,445,441,280,284,43,271,445,284,272,0,3,2,7,8,271,445,284,272,43,270,268,446,447,0,3,2,7,8,270,268,446,447,43,268,265,264,446,0,3,2,7,8,268,265,264,446,43,446,264,263,448,0,3,2,7,8,446,264,263,448,43,447,446,448,449,0,3,2,7,8,447,446,448,449,43,449,448,450,451,0,3,2,7,8,449,448,450,451,43,448,263,260,450,0,3,2,7,8,448,263,260,450,43,450,260,259,432,0,3,2,7,8,450,260,259,432,43,451,450,432,431,0,3,2,7,8,451,450,432,431,43,437,444,452,438,0,3,2,7,8,437,444,452,438,43,444,270,447,452,0,3,2,7,8,444,270,447,452,43,452,447,449,453,0,3,2,7,8,452,447,449,453,43,438,452,453,439,0,3,2,7,8,438,452,453,439,43,439,453,454,455,0,3,2,7,8,439,453,454,455,43,453,449,451,454,0,3,2,7,8,453,449,451,454,43,454,451,431,456,0,3,2,7,8,454,451,431,456,43,455,454,456,392,0,3,2,7,8,455,454,456,392,43,392,456,457,393,0,3,2,7,8,392,456,457,393,43,456,431,429,457,0,3,2,7,8,456,431,429,457,43,457,429,404,407,0,3,2,7,8,457,429,404,407,43,393,457,407,363,0,3,2,7,8,393,457,407,363,43,439,455,458,440,0,3,2,7,8,439,455,458,440,43,455,392,391,458,0,3,2,7,8,455,392,391,458,43,458,391,390,459,0,3,2,7,8,458,391,390,459,43,440,458,459,350,0,3,2,7,8,440,458,459,350,43,390,460,461,459,0,3,2,7,8,390,460,461,459,43,460,381,384,461,0,3,2,7,8,460,381,384,461,43,461,384,342,345,0,3,2,7,8,461,384,342,345,43,459,461,345,350,0,3,2,7,8,459,461,345,350,43,375,462,463,376,0,3,2,7,8,375,462,463,376,43,462,0,382,463,0,3,2,7,8,462,0,382,463,43,463,382,381,464,0,3,2,7,8,463,382,381,464,43,376,463,464,379,0,3,2,7,8,376,463,464,379,43,390,387,465,460,0,3,2,7,8,390,387,465,460,43,387,386,466,465,0,3,2,7,8,387,386,466,465,43,465,466,379,464,0,3,2,7,8,465,466,379,464,43,460,465,464,381,0,3,2,7,8,460,465,464,381,43,379,466,467,380,0,3,2,7,8,379,466,467,380,43,466,386,389,467,0,3,2,7,8,466,386,389,467,43,467,389,363,468,0,3,2,7,8,467,389,363,468,43,380,467,468,374,0,3,2,7,8,380,467,468,374,43,363,362,469,468,0,3,2,7,8,363,362,469,468,43,362,361,470,469,0,3,2,7,8,362,361,470,469,43,469,470,366,369,0,3,2,7,8,469,470,366,369,43,468,469,369,374,0,3,2,7,8,468,469,369,374,43,366,470,471,472,0,3,2,7,8,366,470,471,472,43,470,361,358,471,0,3,2,7,8,470,361,358,471,43,471,358,357,473,0,3,2,7,8,471,358,357,473,43,472,471,473,474,0,3,2,7,8,472,471,473,474,43,475,476,477,478,0,3,2,7,8,475,476,477,478,43,476,474,473,477,0,3,2,7,8,476,474,473,477,43,477,473,357,479,0,3,2,7,8,477,473,357,479,43,478,477,479,480,0,3,2,7,8,478,477,479,480,43,481,482,483,484,0,3,2,7,8,481,482,483,484,43,482,366,472,483,0,3,2,7,8,482,366,472,483,43,484,483,472,474,0,3,2,7,8,484,483,472,474,43,485,486,487,488,0,3,2,7,8,485,486,487,488,43,486,489,490,487,0,3,2,7,8,486,489,490,487,43,487,490,481,491,0,3,2,7,8,487,490,481,491,43,488,487,491,492,0,3,2,7,8,488,487,491,492,43,492,491,493,494,0,3,2,7,8,492,491,493,494,43,491,481,484,493,0,3,2,7,8,491,481,484,493,43,493,484,474,476,0,3,2,7,8,493,484,474,476,43,494,493,476,475,0,3,2,7,8,494,493,476,475,43,408,426,495,409,0,3,2,7,8,408,426,495,409,43,426,425,496,495,0,3,2,7,8,426,425,496,495,43,495,496,497,498,0,3,2,7,8,495,496,497,498,43,409,495,498,365,0,3,2,7,8,409,495,498,365,43,357,360,499,479,0,3,2,7,8,357,360,499,479,43,360,365,498,499,0,3,2,7,8,360,365,498,499,43,499,498,497,500,0,3,2,7,8,499,498,497,500,43,479,499,500,480,0,3,2,7,8,479,499,500,480,43,489,486,501,502,0,3,2,7,8,489,486,501,502,43,486,485,503,501,0,3,2,7,8,486,485,503,501,43,501,503,504,505,0,3,2,7,8,501,503,504,505,43,502,501,505,506,0,3,2,7,8,502,501,505,506,43,507,508,509,510,0,3,2,7,8,507,508,509,510,43,508,489,502,509,0,3,2,7,8,508,489,502,509,43,509,502,506,511,0,3,2,7,8,509,502,506,511,43,510,509,511,512,0,3,2,7,8,510,509,511,512,43,366,482,513,514,0,3,2,7,8,366,482,513,514,43,482,481,490,513,0,3,2,7,8,482,481,490,513,43,513,490,489,508,0,3,2,7,8,513,490,489,508,43,514,513,508,507,0,3,2,7,8,514,513,508,507,43,515,516,517,518,0,3,2,7,8,515,516,517,518,43,516,370,367,517,0,3,2,7,8,516,370,367,517,43,517,367,366,514,0,3,2,7,8,517,367,366,514,43,518,517,514,507,0,3,2,7,8,518,517,514,507,43,519,520,521,522,0,3,2,7,8,519,520,521,522,43,520,523,524,521,0,3,2,7,8,520,523,524,521,43,521,524,525,526,0,3,2,7,8,521,524,525,526,43,522,521,526,527,0,3,2,7,8,522,521,526,527,43,528,529,530,531,0,3,2,7,8,528,529,530,531,43,529,532,533,530,0,3,2,7,8,529,532,533,530,43,530,533,523,520,0,3,2,7,8,530,533,523,520,43,531,530,520,519,0,3,2,7,8,531,530,520,519,43,528,531,534,535,0,3,2,7,8,528,531,534,535,43,531,519,536,534,0,3,2,7,8,531,519,536,534,43,534,536,537,538,0,3,2,7,8,534,536,537,538,43,535,534,538,356,0,3,2,7,8,535,534,538,356,43,532,529,539,540,0,3,2,7,8,532,529,539,540,43,529,528,541,539,0,3,2,7,8,529,528,541,539,43,540,539,541,542,0,3,2,7,8,540,539,541,542,43,356,355,543,535,0,3,2,7,8,356,355,543,535,43,355,354,544,543,0,3,2,7,8,355,354,544,543,43,543,544,542,541,0,3,2,7,8,543,544,542,541,43,535,543,541,528,0,3,2,7,8,535,543,541,528,43,545,546,547,548,0,3,2,7,8,545,546,547,548,43,546,549,550,547,0,3,2,7,8,546,549,550,547,43,547,550,73,97,0,3,2,7,8,547,550,73,97,43,548,547,97,96,0,3,2,7,8,548,547,97,96,43,342,385,551,343,0,3,2,7,8,342,385,551,343,43,385,8,552,551,0,3,2,7,8,385,8,552,551,43,551,552,553,554,0,3,2,7,8,551,552,553,554,43,343,551,554,346,0,3,2,7,8,343,551,554,346,43,553,552,555,556,0,3,2,7,8,553,552,555,556,43,552,8,7,555,0,3,2,7,8,552,8,7,555,43,555,7,6,82,0,3,2,7,8,555,7,6,82,43,556,555,82,77,0,3,2,7,8,556,555,82,77,43,549,557,558,550,0,3,2,7,8,549,557,558,550,43,557,553,556,558,0,3,2,7,8,557,553,556,558,43,558,556,77,74,0,3,2,7,8,558,556,77,74,43,550,558,74,73,0,3,2,7,8,550,558,74,73,43,559,560,561,562,0,3,2,7,8,559,560,561,562,43,560,346,554,561,0,3,2,7,8,560,346,554,561,43,561,554,553,557,0,3,2,7,8,561,554,553,557,43,562,561,557,549,0,3,2,7,8,562,561,557,549,43,563,564,565,566,0,3,2,7,8,563,564,565,566,43,564,559,562,565,0,3,2,7,8,564,559,562,565,43,565,562,549,546,0,3,2,7,8,565,562,549,546,43,566,565,546,545,0,3,2,7,8,566,565,546,545,43,563,566,567,568,0,3,2,7,8,563,566,567,568,43,566,545,569,567,0,3,2,7,8,566,545,569,567,43,567,569,570,571,0,3,2,7,8,567,569,570,571,43,568,567,571,542,0,3,2,7,8,568,567,571,542,43,559,572,573,560,0,3,2,7,8,559,572,573,560,43,572,574,575,573,0,3,2,7,8,572,574,575,573,43,573,575,348,347,0,3,2,7,8,573,575,348,347,43,560,573,347,346,0,3,2,7,8,560,573,347,346,43,350,349,576,436,0,3,2,7,8,350,349,576,436,43,349,348,577,576,0,3,2,7,8,349,348,577,576,43,576,577,578,579,0,3,2,7,8,576,577,578,579,43,436,576,579,433,0,3,2,7,8,436,576,579,433,43,340,580,581,353,0,3,2,7,8,340,580,581,353,43,580,578,582,581,0,3,2,7,8,580,578,582,581,43,581,582,583,584,0,3,2,7,8,581,582,583,584,43,353,581,584,354,0,3,2,7,8,353,581,584,354,43,433,579,585,443,0,3,2,7,8,433,579,585,443,43,579,578,580,585,0,3,2,7,8,579,578,580,585,43,585,580,340,338,0,3,2,7,8,585,580,340,338,43,443,585,338,282,0,3,2,7,8,443,585,338,282,43,348,575,586,577,0,3,2,7,8,348,575,586,577,43,575,574,587,586,0,3,2,7,8,575,574,587,586,43,586,587,583,582,0,3,2,7,8,586,587,583,582,43,577,586,582,578,0,3,2,7,8,577,586,582,578,43,583,587,588,589,0,3,2,7,8,583,587,588,589,43,587,574,572,588,0,3,2,7,8,587,574,572,588,43,588,572,559,564,0,3,2,7,8,588,572,559,564,43,589,588,564,563,0,3,2,7,8,589,588,564,563,43,354,584,590,544,0,3,2,7,8,354,584,590,544,43,584,583,589,590,0,3,2,7,8,584,583,589,590,43,590,589,563,568,0,3,2,7,8,590,589,563,568,43,544,590,568,542,0,3,2,7,8,544,590,568,542,43,591,592,593,594,0,3,2,7,8,591,592,593,594,43,592,532,540,593,0,3,2,7,8,592,532,540,593,43,593,540,542,571,0,3,2,7,8,593,540,542,571,43,594,593,571,570,0,3,2,7,8,594,593,571,570,43,595,596,597,598,0,3,2,7,8,595,596,597,598,43,596,599,600,597,0,3,2,7,8,596,599,600,597,43,597,600,601,602,0,3,2,7,8,597,600,601,602,43,598,597,602,603,0,3,2,7,8,598,597,602,603,43,604,605,606,607,0,3,2,7,8,604,605,606,607,43,605,599,596,606,0,3,2,7,8,605,599,596,606,43,606,596,595,608,0,3,2,7,8,606,596,595,608,43,607,606,608,609,0,3,2,7,8,607,606,608,609,43,601,600,610,611,0,3,2,7,8,601,600,610,611,43,600,599,605,610,0,3,2,7,8,600,599,605,610,43,610,605,604,612,0,3,2,7,8,610,605,604,612,43,611,610,612,613,0,3,2,7,8,611,610,612,613,43,614,615,616,617,0,3,2,7,8,614,615,616,617,43,615,618,619,616,0,3,2,7,8,615,618,619,616,43,616,619,591,620,0,3,2,7,8,616,619,591,620,43,617,616,620,621,0,3,2,7,8,617,616,620,621,43,622,623,624,625,0,3,2,7,8,622,623,624,625,43,623,570,569,624,0,3,2,7,8,623,570,569,624,43,624,569,545,548,0,3,2,7,8,624,569,545,548,43,625,624,548,96,0,3,2,7,8,625,624,548,96,43,626,627,628,629,0,3,2,7,8,626,627,628,629,43,627,622,625,628,0,3,2,7,8,627,622,625,628,43,628,625,96,99,0,3,2,7,8,628,625,96,99,43,629,628,99,101,0,3,2,7,8,629,628,99,101,43,621,620,630,631,0,3,2,7,8,621,620,630,631,43,620,591,594,630,0,3,2,7,8,620,591,594,630,43,630,594,570,623,0,3,2,7,8,630,594,570,623,43,631,630,623,622,0,3,2,7,8,631,630,623,622,43,603,632,633,634,0,3,2,7,8,603,632,633,634,43,632,621,631,633,0,3,2,7,8,632,621,631,633,43,633,631,622,627,0,3,2,7,8,633,631,622,627,43,634,633,627,626,0,3,2,7,8,634,633,627,626,43,601,635,636,602,0,3,2,7,8,601,635,636,602,43,635,614,617,636,0,3,2,7,8,635,614,617,636,43,636,617,621,632,0,3,2,7,8,636,617,621,632,43,602,636,632,603,0,3,2,7,8,602,636,632,603,43,601,611,637,635,0,3,2,7,8,601,611,637,635,43,611,613,638,637,0,3,2,7,8,611,613,638,637,43,637,638,639,640,0,3,2,7,8,637,638,639,640,43,635,637,640,614,0,3,2,7,8,635,637,640,614,43,639,641,642,640,0,3,2,7,8,639,641,642,640,43,641,643,644,642,0,3,2,7,8,641,643,644,642,43,642,644,618,615,0,3,2,7,8,642,644,618,615,43,640,642,615,614,0,3,2,7,8,640,642,615,614,43,523,533,645,646,0,3,2,7,8,523,533,645,646,43,533,532,592,645,0,3,2,7,8,533,532,592,645,43,645,592,591,619,0,3,2,7,8,645,592,591,619,43,646,645,619,618,0,3,2,7,8,646,645,619,618,43,643,647,648,644,0,3,2,7,8,643,647,648,644,43,647,525,524,648,0,3,2,7,8,647,525,524,648,43,648,524,523,646,0,3,2,7,8,648,524,523,646,43,644,648,646,618,0,3,2,7,8,644,648,646,618,43,519,522,649,536,0,3,2,7,8,519,522,649,536,43,522,527,650,649,0,3,2,7,8,522,527,650,649,43,649,650,651,652,0,3,2,7,8,649,650,651,652,43,536,649,652,537,0,3,2,7,8,536,649,652,537,43,537,652,653,654,0,3,2,7,8,537,652,653,654,43,652,651,655,653,0,3,2,7,8,652,651,655,653,43,653,655,656,657,0,3,2,7,8,653,655,656,657,43,654,653,657,658,0,3,2,7,8,654,653,657,658,43,356,538,659,660,0,3,2,7,8,356,538,659,660,43,538,537,654,659,0,3,2,7,8,538,537,654,659,43,659,654,658,661,0,3,2,7,8,659,654,658,661,43,660,659,661,662,0,3,2,7,8,660,659,661,662,43,333,332,663,664,0,3,2,7,8,333,332,663,664,43,332,331,665,663,0,3,2,7,8,332,331,665,663,43,663,665,662,666,0,3,2,7,8,663,665,662,666,43,664,663,666,667,0,3,2,7,8,664,663,666,667,43,331,337,668,665,0,3,2,7,8,331,337,668,665,43,337,336,352,668,0,3,2,7,8,337,336,352,668,43,668,352,356,660,0,3,2,7,8,668,352,356,660,43,665,668,660,662,0,3,2,7,8,665,668,660,662,43,667,666,669,670,0,3,2,7,8,667,666,669,670,43,666,662,661,669,0,3,2,7,8,666,662,661,669,43,669,661,658,671,0,3,2,7,8,669,661,658,671,43,670,669,671,672,0,3,2,7,8,670,669,671,672,43,672,671,673,674,0,3,2,7,8,672,671,673,674,43,671,658,657,673,0,3,2,7,8,671,658,657,673,43,673,657,656,675,0,3,2,7,8,673,657,656,675,43,674,673,675,676,0,3,2,7,8,674,673,675,676,43,677,678,679,680,0,3,2,7,8,677,678,679,680,43,678,147,144,679,0,3,2,7,8,678,147,144,679,43,679,144,9,12,0,3,2,7,8,679,144,9,12,43,680,679,12,17,0,3,2,7,8,680,679,12,17,43,60,681,682,63,0,3,2,7,8,60,681,682,63,43,681,683,684,682,0,3,2,7,8,681,683,684,682,43,682,684,36,41,0,3,2,7,8,682,684,36,41,43,63,682,41,40,0,3,2,7,8,63,682,41,40,43,58,685,686,59,0,3,2,7,8,58,685,686,59,43,685,687,688,686,0,3,2,7,8,685,687,688,686,43,686,688,683,681,0,3,2,7,8,686,688,683,681,43,59,686,681,60,0,3,2,7,8,59,686,681,60,43,683,689,690,684,0,3,2,7,8,683,689,690,684,43,689,17,16,690,0,3,2,7,8,689,17,16,690,43,690,16,15,37,0,3,2,7,8,690,16,15,37,43,684,690,37,36,0,3,2,7,8,684,690,37,36,43,687,691,692,688,0,3,2,7,8,687,691,692,688,43,691,677,680,692,0,3,2,7,8,691,677,680,692,43,692,680,17,689,0,3,2,7,8,692,680,17,689,43,688,692,689,683,0,3,2,7,8,688,692,689,683,43,693,694,695,696,0,3,2,7,8,693,694,695,696,43,694,697,698,695,0,3,2,7,8,694,697,698,695,43,695,698,699,700,0,3,2,7,8,695,698,699,700,43,696,695,700,701,0,3,2,7,8,696,695,700,701,43,702,703,704,705,0,3,2,7,8,702,703,704,705,43,703,706,707,704,0,3,2,7,8,703,706,707,704,43,704,707,257,255,0,3,2,7,8,704,707,257,255,43,705,704,255,123,0,3,2,7,8,705,704,255,123,43,110,708,709,112,0,3,2,7,8,110,708,709,112,43,708,702,705,709,0,3,2,7,8,708,702,705,709,43,709,705,123,122,0,3,2,7,8,709,705,123,122,43,112,709,122,114,0,3,2,7,8,112,709,122,114,43,90,710,711,109,0,3,2,7,8,90,710,711,109,43,710,712,713,711,0,3,2,7,8,710,712,713,711,43,711,713,702,708,0,3,2,7,8,711,713,702,708,43,109,711,708,110,0,3,2,7,8,109,711,708,110,43,712,714,715,713,0,3,2,7,8,712,714,715,713,43,714,701,716,715,0,3,2,7,8,714,701,716,715,43,715,716,706,703,0,3,2,7,8,715,716,706,703,43,713,715,703,702,0,3,2,7,8,713,715,703,702,43,6,5,717,84,0,3,2,7,8,6,5,717,84,43,5,4,718,717,0,3,2,7,8,5,4,718,717,43,717,718,719,720,0,3,2,7,8,717,718,719,720,43,84,717,720,85,0,3,2,7,8,84,717,720,85,43,719,718,721,722,0,3,2,7,8,719,718,721,722,43,718,4,1,721,0,3,2,7,8,718,4,1,721,43,0,462,721,1,0,3,2,7,8,0,462,721,1,43,722,721,462,375,0,3,2,7,8,722,721,462,375,43,719,722,723,724,0,3,2,7,8,719,722,723,724,43,722,375,378,723,0,3,2,7,8,722,375,378,723,43,723,378,372,725,0,3,2,7,8,723,378,372,725,43,724,723,725,693,0,3,2,7,8,724,723,725,693,43,90,89,726,710,0,3,2,7,8,90,89,726,710,43,89,85,720,726,0,3,2,7,8,89,85,720,726,43,726,720,719,727,0,3,2,7,8,726,720,719,727,43,710,726,727,712,0,3,2,7,8,710,726,727,712,43,693,696,728,724,0,3,2,7,8,693,696,728,724,43,696,701,714,728,0,3,2,7,8,696,701,714,728,43,728,714,712,727,0,3,2,7,8,728,714,712,727,43,724,728,727,719,0,3,2,7,8,724,728,727,719,43,257,729,730,258,0,3,2,7,8,257,729,730,258,43,729,731,732,730,0,3,2,7,8,729,731,732,730,43,730,732,237,248,0,3,2,7,8,730,732,237,248,43,258,730,248,247,0,3,2,7,8,258,730,248,247,43,706,733,734,707,0,3,2,7,8,706,733,734,707,43,733,735,736,734,0,3,2,7,8,733,735,736,734,43,734,736,731,729,0,3,2,7,8,734,736,731,729,43,707,734,729,257,0,3,2,7,8,707,734,729,257,43,731,737,738,732,0,3,2,7,8,731,737,738,732,43,737,739,740,738,0,3,2,7,8,737,739,740,738,43,738,740,241,238,0,3,2,7,8,738,740,241,238,43,732,738,238,237,0,3,2,7,8,732,738,238,237,43,699,741,742,743,0,3,2,7,8,699,741,742,743,43,741,744,745,742,0,3,2,7,8,741,744,745,742,43,742,745,746,747,0,3,2,7,8,742,745,746,747,43,743,742,747,735,0,3,2,7,8,743,742,747,735,43,735,747,748,736,0,3,2,7,8,735,747,748,736,43,747,746,749,748,0,3,2,7,8,747,746,749,748,43,748,749,739,737,0,3,2,7,8,748,749,739,737,43,736,748,737,731,0,3,2,7,8,736,748,737,731,43,701,700,750,716,0,3,2,7,8,701,700,750,716,43,700,699,743,750,0,3,2,7,8,700,699,743,750,43,750,743,735,733,0,3,2,7,8,750,743,735,733,43,716,750,733,706,0,3,2,7,8,716,750,733,706,43,372,371,751,752,0,3,2,7,8,372,371,751,752,43,371,370,516,751,0,3,2,7,8,371,370,516,751,43,751,516,515,753,0,3,2,7,8,751,516,515,753,43,752,751,753,754,0,3,2,7,8,752,751,753,754,43,754,755,756,757,0,3,2,7,8,754,755,756,757,43,755,758,759,756,0,3,2,7,8,755,758,759,756,43,756,759,760,761,0,3,2,7,8,756,759,760,761,43,757,756,761,697,0,3,2,7,8,757,756,761,697,43,754,757,762,752,0,3,2,7,8,754,757,762,752,43,757,697,694,762,0,3,2,7,8,757,697,694,762,43,762,694,693,725,0,3,2,7,8,762,694,693,725,43,752,762,725,372,0,3,2,7,8,752,762,725,372,43,763,764,765,766,0,3,2,7,8,763,764,765,766,43,764,515,518,765,0,3,2,7,8,764,515,518,765,43,765,518,507,510,0,3,2,7,8,765,518,507,510,43,766,765,510,512,0,3,2,7,8,766,765,510,512,43,754,753,767,755,0,3,2,7,8,754,753,767,755,43,753,515,764,767,0,3,2,7,8,753,515,764,767,43,767,764,763,768,0,3,2,7,8,767,764,763,768,43,755,767,768,758,0,3,2,7,8,755,767,768,758,43,697,761,769,698,0,3,2,7,8,697,761,769,698,43,761,760,770,769,0,3,2,7,8,761,760,770,769,43,769,770,744,741,0,3,2,7,8,769,770,744,741,43,698,769,741,699,0,3,2,7,8,698,769,741,699,43,771,772,773,774,0,3,2,7,8,771,772,773,774,43,772,775,776,773,0,3,2,7,8,772,775,776,773,43,773,776,142,156,0,3,2,7,8,773,776,142,156,43,774,773,156,155,0,3,2,7,8,774,773,156,155,43,142,776,777,143,0,3,2,7,8,142,776,777,143,43,776,775,778,777,0,3,2,7,8,776,775,778,777,43,777,778,130,133,0,3,2,7,8,777,778,130,133,43,143,777,133,135,0,3,2,7,8,143,777,133,135,43,779,780,781,782,0,3,2,7,8,779,780,781,782,43,780,783,784,781,0,3,2,7,8,780,783,784,781,43,781,784,785,786,0,3,2,7,8,781,784,785,786,43,782,781,786,787,0,3,2,7,8,782,781,786,787,43,788,789,790,791,0,3,2,7,8,788,789,790,791,43,789,792,793,790,0,3,2,7,8,789,792,793,790,43,790,793,794,795,0,3,2,7,8,790,793,794,795,43,791,790,795,796,0,3,2,7,8,791,790,795,796,43,797,798,799,800,0,3,2,7,8,797,798,799,800,43,798,801,802,799,0,3,2,7,8,798,801,802,799,43,799,802,803,804,0,3,2,7,8,799,802,803,804,43,800,799,804,805,0,3,2,7,8,800,799,804,805,43,806,807,808,809,0,3,2,7,8,806,807,808,809,43,807,792,789,808,0,3,2,7,8,807,792,789,808,43,808,789,788,810,0,3,2,7,8,808,789,788,810,43,809,808,810,805,0,3,2,7,8,809,808,810,805,43,811,812,813,814,0,3,2,7,8,811,812,813,814,43,812,806,809,813,0,3,2,7,8,812,806,809,813,43,813,809,805,804,0,3,2,7,8,813,809,805,804,43,814,813,804,803,0,3,2,7,8,814,813,804,803,43,805,810,815,800,0,3,2,7,8,805,810,815,800,43,810,788,816,815,0,3,2,7,8,810,788,816,815,43,815,816,817,818,0,3,2,7,8,815,816,817,818,43,800,815,818,797,0,3,2,7,8,800,815,818,797,43,797,818,819,820,0,3,2,7,8,797,818,819,820,43,818,817,821,819,0,3,2,7,8,818,817,821,819,43,819,821,822,823,0,3,2,7,8,819,821,822,823,43,820,819,823,824,0,3,2,7,8,820,819,823,824,43,824,823,825,826,0,3,2,7,8,824,823,825,826,43,823,822,827,825,0,3,2,7,8,823,822,827,825,43,825,827,46,49,0,3,2,7,8,825,827,46,49,43,826,825,49,51,0,3,2,7,8,826,825,49,51,43,828,829,830,831,0,3,2,7,8,828,829,830,831,43,829,56,53,830,0,3,2,7,8,829,56,53,830,43,830,53,52,832,0,3,2,7,8,830,53,52,832,43,831,830,832,833,0,3,2,7,8,831,830,832,833,43,822,834,835,827,0,3,2,7,8,822,834,835,827,43,834,833,832,835,0,3,2,7,8,834,833,832,835,43,835,832,52,62,0,3,2,7,8,835,832,52,62,43,827,835,62,46,0,3,2,7,8,827,835,62,46,43,836,837,838,839,0,3,2,7,8,836,837,838,839,43,837,840,841,838,0,3,2,7,8,837,840,841,838,43,838,841,842,843,0,3,2,7,8,838,841,842,843,43,839,838,843,844,0,3,2,7,8,839,838,843,844,43,845,846,847,848,0,3,2,7,8,845,846,847,848,43,846,849,850,847,0,3,2,7,8,846,849,850,847,43,847,850,851,852,0,3,2,7,8,847,850,851,852,43,848,847,852,853,0,3,2,7,8,848,847,852,853,43,854,855,856,857,0,3,2,7,8,854,855,856,857,43,855,779,858,856,0,3,2,7,8,855,779,858,856,43,856,858,849,846,0,3,2,7,8,856,858,849,846,43,857,856,846,845,0,3,2,7,8,857,856,846,845,43,859,860,861,862,0,3,2,7,8,859,860,861,862,43,860,854,857,861,0,3,2,7,8,860,854,857,861,43,861,857,845,863,0,3,2,7,8,861,857,845,863,43,862,861,863,864,0,3,2,7,8,862,861,863,864,43,864,863,865,866,0,3,2,7,8,864,863,865,866,43,863,845,848,865,0,3,2,7,8,863,845,848,865,43,865,848,853,867,0,3,2,7,8,865,848,853,867,43,866,865,867,842,0,3,2,7,8,866,865,867,842,43,853,852,868,869,0,3,2,7,8,853,852,868,869,43,852,851,870,868,0,3,2,7,8,852,851,870,868,43,868,870,871,872,0,3,2,7,8,868,870,871,872,43,869,868,872,873,0,3,2,7,8,869,868,872,873,43,844,843,874,875,0,3,2,7,8,844,843,874,875,43,843,842,867,874,0,3,2,7,8,843,842,867,874,43,874,867,853,869,0,3,2,7,8,874,867,853,869,43,875,874,869,873,0,3,2,7,8,875,874,869,873,43,864,866,876,877,0,3,2,7,8,864,866,876,877,43,866,842,841,876,0,3,2,7,8,866,842,841,876,43,876,841,840,878,0,3,2,7,8,876,841,840,878,43,877,876,878,879,0,3,2,7,8,877,876,878,879,43,880,881,882,883,0,3,2,7,8,880,881,882,883,43,881,859,862,882,0,3,2,7,8,881,859,862,882,43,882,862,864,877,0,3,2,7,8,882,862,864,877,43,883,882,877,879,0,3,2,7,8,883,882,877,879,43,884,885,886,887,0,3,2,7,8,884,885,886,887,43,885,888,889,886,0,3,2,7,8,885,888,889,886,43,886,889,880,883,0,3,2,7,8,886,889,880,883,43,887,886,883,879,0,3,2,7,8,887,886,883,879,43,890,891,892,893,0,3,2,7,8,890,891,892,893,43,891,888,894,892,0,3,2,7,8,891,888,894,892,43,892,894,895,896,0,3,2,7,8,892,894,895,896,43,893,892,896,897,0,3,2,7,8,893,892,896,897,43,888,885,898,894,0,3,2,7,8,888,885,898,894,43,885,884,899,898,0,3,2,7,8,885,884,899,898,43,898,899,900,901,0,3,2,7,8,898,899,900,901,43,894,898,901,895,0,3,2,7,8,894,898,901,895,43,895,901,902,903,0,3,2,7,8,895,901,902,903,43,901,900,904,902,0,3,2,7,8,901,900,904,902,43,902,904,905,906,0,3,2,7,8,902,904,905,906,43,903,902,906,907,0,3,2,7,8,903,902,906,907,43,908,909,910,911,0,3,2,7,8,908,909,910,911,43,909,912,913,910,0,3,2,7,8,909,912,913,910,43,910,913,914,915,0,3,2,7,8,910,913,914,915,43,911,910,915,907,0,3,2,7,8,911,910,915,907,43,916,917,918,919,0,3,2,7,8,916,917,918,919,43,917,920,921,918,0,3,2,7,8,917,920,921,918,43,918,921,794,922,0,3,2,7,8,918,921,794,922,43,919,918,922,923,0,3,2,7,8,919,918,922,923,43,908,924,925,909,0,3,2,7,8,908,924,925,909,43,924,926,927,925,0,3,2,7,8,924,926,927,925,43,925,927,923,928,0,3,2,7,8,925,927,923,928,43,909,925,928,912,0,3,2,7,8,909,925,928,912,43,923,929,930,928,0,3,2,7,8,923,929,930,928,43,929,806,812,930,0,3,2,7,8,929,806,812,930,43,930,812,811,931,0,3,2,7,8,930,812,811,931,43,928,930,931,912,0,3,2,7,8,928,930,931,912,43,794,793,932,922,0,3,2,7,8,794,793,932,922,43,793,792,807,932,0,3,2,7,8,793,792,807,932,43,932,807,806,929,0,3,2,7,8,932,807,806,929,43,922,932,929,923,0,3,2,7,8,922,932,929,923,43,923,927,933,919,0,3,2,7,8,923,927,933,919,43,927,926,934,933,0,3,2,7,8,927,926,934,933,43,919,933,934,916,0,3,2,7,8,919,933,934,916,43,914,935,936,915,0,3,2,7,8,914,935,936,915,43,935,937,938,936,0,3,2,7,8,935,937,938,936,43,936,938,939,940,0,3,2,7,8,936,938,939,940,43,915,936,940,907,0,3,2,7,8,915,936,940,907,43,937,941,942,938,0,3,2,7,8,937,941,942,938,43,941,943,944,942,0,3,2,7,8,941,943,944,942,43,942,944,945,946,0,3,2,7,8,942,944,945,946,43,938,942,946,939,0,3,2,7,8,938,942,946,939,43,945,944,947,948,0,3,2,7,8,945,944,947,948,43,944,943,949,947,0,3,2,7,8,944,943,949,947,43,947,949,950,951,0,3,2,7,8,947,949,950,951,43,948,947,951,952,0,3,2,7,8,948,947,951,952,43,187,953,954,188,0,3,2,7,8,187,953,954,188,43,953,955,956,954,0,3,2,7,8,953,955,956,954,43,954,956,957,958,0,3,2,7,8,954,956,957,958,43,188,954,958,189,0,3,2,7,8,188,954,958,189,43,957,959,960,958,0,3,2,7,8,957,959,960,958,43,959,961,962,960,0,3,2,7,8,959,961,962,960,43,960,962,190,193,0,3,2,7,8,960,962,190,193,43,958,960,193,189,0,3,2,7,8,958,960,193,189,43,961,963,964,962,0,3,2,7,8,961,963,964,962,43,963,824,826,964,0,3,2,7,8,963,824,826,964,43,964,826,51,197,0,3,2,7,8,964,826,51,197,43,962,964,197,190,0,3,2,7,8,962,964,197,190,43,961,965,966,963,0,3,2,7,8,961,965,966,963,43,965,801,798,966,0,3,2,7,8,965,801,798,966,43,966,798,797,820,0,3,2,7,8,966,798,797,820,43,963,966,820,824,0,3,2,7,8,963,966,820,824,43,803,802,967,968,0,3,2,7,8,803,802,967,968,43,802,801,965,967,0,3,2,7,8,802,801,965,967,43,967,965,961,959,0,3,2,7,8,967,965,961,959,43,968,967,959,957,0,3,2,7,8,968,967,959,957,43,943,969,970,949,0,3,2,7,8,943,969,970,949,43,969,971,972,970,0,3,2,7,8,969,971,972,970,43,970,972,973,974,0,3,2,7,8,970,972,973,974,43,949,970,974,950,0,3,2,7,8,949,970,974,950,43,973,972,975,976,0,3,2,7,8,973,972,975,976,43,972,971,977,975,0,3,2,7,8,972,971,977,975,43,975,977,978,979,0,3,2,7,8,975,977,978,979,43,976,975,979,955,0,3,2,7,8,976,975,979,955,43,937,980,981,941,0,3,2,7,8,937,980,981,941,43,980,982,983,981,0,3,2,7,8,980,982,983,981,43,981,983,971,969,0,3,2,7,8,981,983,971,969,43,941,981,969,943,0,3,2,7,8,941,981,969,943,43,978,984,985,986,0,3,2,7,8,978,984,985,986,43,984,987,988,985,0,3,2,7,8,984,987,988,985,43,985,988,811,814,0,3,2,7,8,985,988,811,814,43,986,985,814,803,0,3,2,7,8,986,985,814,803,43,811,988,989,931,0,3,2,7,8,811,988,989,931,43,988,987,990,989,0,3,2,7,8,988,987,990,989,43,989,990,914,913,0,3,2,7,8,989,990,914,913,43,931,989,913,912,0,3,2,7,8,931,989,913,912,43,987,991,992,990,0,3,2,7,8,987,991,992,990,43,991,982,980,992,0,3,2,7,8,991,982,980,992,43,992,980,937,935,0,3,2,7,8,992,980,937,935,43,990,992,935,914,0,3,2,7,8,990,992,935,914,43,971,983,993,977,0,3,2,7,8,971,983,993,977,43,983,982,991,993,0,3,2,7,8,983,982,991,993,43,993,991,987,984,0,3,2,7,8,993,991,987,984,43,977,993,984,978,0,3,2,7,8,977,993,984,978,43,957,956,994,968,0,3,2,7,8,957,956,994,968,43,956,955,979,994,0,3,2,7,8,956,955,979,994,43,994,979,978,986,0,3,2,7,8,994,979,978,986,43,968,994,986,803,0,3,2,7,8,968,994,986,803,43,231,995,996,232,0,3,2,7,8,231,995,996,232,43,995,973,976,996,0,3,2,7,8,995,973,976,996,43,996,976,955,953,0,3,2,7,8,996,976,955,953,43,232,996,953,187,0,3,2,7,8,232,996,953,187,43,235,997,998,236,0,3,2,7,8,235,997,998,236,43,997,950,974,998,0,3,2,7,8,997,950,974,998,43,998,974,973,995,0,3,2,7,8,998,974,973,995,43,236,998,995,231,0,3,2,7,8,236,998,995,231,43,243,242,999,1000,0,3,2,7,8,243,242,999,1000,43,242,241,1001,999,0,3,2,7,8,242,241,1001,999,43,999,1001,1002,1003,0,3,2,7,8,999,1001,1002,1003,43,1000,999,1003,952,0,3,2,7,8,1000,999,1003,952,43,235,246,1004,997,0,3,2,7,8,235,246,1004,997,43,246,243,1000,1004,0,3,2,7,8,246,243,1000,1004,43,1004,1000,952,951,0,3,2,7,8,1004,1000,952,951,43,997,1004,951,950,0,3,2,7,8,997,1004,951,950,43,952,1003,1005,948,0,3,2,7,8,952,1003,1005,948,43,1003,1002,1006,1005,0,3,2,7,8,1003,1002,1006,1005,43,1005,1006,1007,1008,0,3,2,7,8,1005,1006,1007,1008,43,948,1005,1008,945,0,3,2,7,8,948,1005,1008,945,43,945,1008,1009,946,0,3,2,7,8,945,1008,1009,946,43,1008,1007,1010,1009,0,3,2,7,8,1008,1007,1010,1009,43,1009,1010,897,1011,0,3,2,7,8,1009,1010,897,1011,43,946,1009,1011,939,0,3,2,7,8,946,1009,1011,939,43,939,1011,1012,940,0,3,2,7,8,939,1011,1012,940,43,1011,897,896,1012,0,3,2,7,8,1011,897,896,1012,43,1012,896,895,903,0,3,2,7,8,1012,896,895,903,43,940,1012,903,907,0,3,2,7,8,940,1012,903,907,43,1007,1013,1014,1010,0,3,2,7,8,1007,1013,1014,1010,43,1013,1015,1016,1014,0,3,2,7,8,1013,1015,1016,1014,43,1014,1016,890,893,0,3,2,7,8,1014,1016,890,893,43,1010,1014,893,897,0,3,2,7,8,1010,1014,893,897,43,1017,1018,1019,1020,0,3,2,7,8,1017,1018,1019,1020,43,1018,1021,1022,1019,0,3,2,7,8,1018,1021,1022,1019,43,1019,1022,1023,1024,0,3,2,7,8,1019,1022,1023,1024,43,1020,1019,1024,1025,0,3,2,7,8,1020,1019,1024,1025,43,1026,1027,1028,1029,0,3,2,7,8,1026,1027,1028,1029,43,1027,1030,1031,1028,0,3,2,7,8,1027,1030,1031,1028,43,1028,1031,1017,1020,0,3,2,7,8,1028,1031,1017,1020,43,1029,1028,1020,1025,0,3,2,7,8,1029,1028,1020,1025,43,1032,1033,1034,1035,0,3,2,7,8,1032,1033,1034,1035,43,1033,1036,1037,1034,0,3,2,7,8,1033,1036,1037,1034,43,1034,1037,1038,1039,0,3,2,7,8,1034,1037,1038,1039,43,1035,1034,1039,1040,0,3,2,7,8,1035,1034,1039,1040,43,1041,1042,1043,1044,0,3,2,7,8,1041,1042,1043,1044,43,1042,1036,1033,1043,0,3,2,7,8,1042,1036,1033,1043,43,1043,1033,1032,1045,0,3,2,7,8,1043,1033,1032,1045,43,1044,1043,1045,1026,0,3,2,7,8,1044,1043,1045,1026,43,1046,1047,1048,1049,0,3,2,7,8,1046,1047,1048,1049,43,1047,1050,1051,1048,0,3,2,7,8,1047,1050,1051,1048,43,1048,1051,1052,1053,0,3,2,7,8,1048,1051,1052,1053,43,1049,1048,1053,1054,0,3,2,7,8,1049,1048,1053,1054,43,1055,1056,1057,1058,0,3,2,7,8,1055,1056,1057,1058,43,1056,1059,1060,1057,0,3,2,7,8,1056,1059,1060,1057,43,1057,1060,1061,1062,0,3,2,7,8,1057,1060,1061,1062,43,1058,1057,1062,1063,0,3,2,7,8,1058,1057,1062,1063,43,1061,1064,1065,1062,0,3,2,7,8,1061,1064,1065,1062,43,1064,1052,1066,1065,0,3,2,7,8,1064,1052,1066,1065,43,1065,1066,1067,1068,0,3,2,7,8,1065,1066,1067,1068,43,1062,1065,1068,1063,0,3,2,7,8,1062,1065,1068,1063,43,1052,1064,1069,1053,0,3,2,7,8,1052,1064,1069,1053,43,1064,1061,1070,1069,0,3,2,7,8,1064,1061,1070,1069,43,1069,1070,1041,1071,0,3,2,7,8,1069,1070,1041,1071,43,1053,1069,1071,1054,0,3,2,7,8,1053,1069,1071,1054,43,1050,1072,1073,1051,0,3,2,7,8,1050,1072,1073,1051,43,1072,1074,1075,1073,0,3,2,7,8,1072,1074,1075,1073,43,1073,1075,1067,1066,0,3,2,7,8,1073,1075,1067,1066,43,1051,1073,1066,1052,0,3,2,7,8,1051,1073,1066,1052,43,1076,1077,1078,1079,0,3,2,7,8,1076,1077,1078,1079,43,1077,1046,1049,1078,0,3,2,7,8,1077,1046,1049,1078,43,1078,1049,1054,1080,0,3,2,7,8,1078,1049,1054,1080,43,1079,1078,1080,1025,0,3,2,7,8,1079,1078,1080,1025,43,1054,1071,1081,1080,0,3,2,7,8,1054,1071,1081,1080,43,1071,1041,1044,1081,0,3,2,7,8,1071,1041,1044,1081,43,1081,1044,1026,1029,0,3,2,7,8,1081,1044,1026,1029,43,1080,1081,1029,1025,0,3,2,7,8,1080,1081,1029,1025,43,1061,1060,1082,1070,0,3,2,7,8,1061,1060,1082,1070,43,1060,1059,1083,1082,0,3,2,7,8,1060,1059,1083,1082,43,1082,1083,1036,1042,0,3,2,7,8,1082,1083,1036,1042,43,1070,1082,1042,1041,0,3,2,7,8,1070,1082,1042,1041,43,1036,1083,1084,1037,0,3,2,7,8,1036,1083,1084,1037,43,1083,1059,1056,1084,0,3,2,7,8,1083,1059,1056,1084,43,1084,1056,1055,1085,0,3,2,7,8,1084,1056,1055,1085,43,1037,1084,1085,1038,0,3,2,7,8,1037,1084,1085,1038,43,1086,1087,1088,1089,0,3,2,7,8,1086,1087,1088,1089,43,1087,1055,1058,1088,0,3,2,7,8,1087,1055,1058,1088,43,1088,1058,1063,1090,0,3,2,7,8,1088,1058,1063,1090,43,1089,1088,1090,1091,0,3,2,7,8,1089,1088,1090,1091,43,1092,1093,1094,1095,0,3,2,7,8,1092,1093,1094,1095,43,1093,1038,1085,1094,0,3,2,7,8,1093,1038,1085,1094,43,1094,1085,1055,1087,0,3,2,7,8,1094,1085,1055,1087,43,1095,1094,1087,1086,0,3,2,7,8,1095,1094,1087,1086,43,1092,1096,1097,1093,0,3,2,7,8,1092,1096,1097,1093,43,1096,1098,1099,1097,0,3,2,7,8,1096,1098,1099,1097,43,1097,1099,1040,1039,0,3,2,7,8,1097,1099,1040,1039,43,1093,1097,1039,1038,0,3,2,7,8,1093,1097,1039,1038,43,1100,1101,1102,1103,0,3,2,7,8,1100,1101,1102,1103,43,1101,1104,1105,1102,0,3,2,7,8,1101,1104,1105,1102,43,1102,1105,1106,1107,0,3,2,7,8,1102,1105,1106,1107,43,1103,1102,1107,1108,0,3,2,7,8,1103,1102,1107,1108,43,1109,1110,1111,1112,0,3,2,7,8,1109,1110,1111,1112,43,1110,1098,1096,1111,0,3,2,7,8,1110,1098,1096,1111,43,1111,1096,1092,1113,0,3,2,7,8,1111,1096,1092,1113,43,1112,1111,1113,1114,0,3,2,7,8,1112,1111,1113,1114,43,1115,1116,1117,1118,0,3,2,7,8,1115,1116,1117,1118,43,1116,1119,1120,1117,0,3,2,7,8,1116,1119,1120,1117,43,1117,1120,1121,1122,0,3,2,7,8,1117,1120,1121,1122,43,1118,1117,1122,1123,0,3,2,7,8,1118,1117,1122,1123,43,1124,1125,1126,1127,0,3,2,7,8,1124,1125,1126,1127,43,1125,1128,1129,1126,0,3,2,7,8,1125,1128,1129,1126,43,1126,1129,1130,1131,0,3,2,7,8,1126,1129,1130,1131,43,1127,1126,1131,1132,0,3,2,7,8,1127,1126,1131,1132,43,1132,1133,1134,1127,0,3,2,7,8,1132,1133,1134,1127,43,1133,1135,1136,1134,0,3,2,7,8,1133,1135,1136,1134,43,1134,1136,1137,1138,0,3,2,7,8,1134,1136,1137,1138,43,1127,1134,1138,1124,0,3,2,7,8,1127,1134,1138,1124,43,787,786,1139,1140,0,3,2,7,8,787,786,1139,1140,43,786,785,1141,1139,0,3,2,7,8,786,785,1141,1139,43,1139,1141,1142,1143,0,3,2,7,8,1139,1141,1142,1143,43,1140,1139,1143,1106,0,3,2,7,8,1140,1139,1143,1106,43,1144,1145,1146,1147,0,3,2,7,8,1144,1145,1146,1147,43,1145,1148,1149,1146,0,3,2,7,8,1145,1148,1149,1146,43,1146,1149,1150,1151,0,3,2,7,8,1146,1149,1150,1151,43,1147,1146,1151,1115,0,3,2,7,8,1147,1146,1151,1115,43,1076,1079,1152,1153,0,3,2,7,8,1076,1079,1152,1153,43,1079,1025,1024,1152,0,3,2,7,8,1079,1025,1024,1152,43,1152,1024,1023,1154,0,3,2,7,8,1152,1024,1023,1154,43,1153,1152,1154,1155,0,3,2,7,8,1153,1152,1154,1155,43,1155,1154,1156,1157,0,3,2,7,8,1155,1154,1156,1157,43,1154,1023,1158,1156,0,3,2,7,8,1154,1023,1158,1156,43,1156,1158,1159,1160,0,3,2,7,8,1156,1158,1159,1160,43,1157,1156,1160,1161,0,3,2,7,8,1157,1156,1160,1161,43,1123,1162,1163,1118,0,3,2,7,8,1123,1162,1163,1118,43,1162,1164,1165,1163,0,3,2,7,8,1162,1164,1165,1163,43,1163,1165,1166,1167,0,3,2,7,8,1163,1165,1166,1167,43,1118,1163,1167,1115,0,3,2,7,8,1118,1163,1167,1115,43,1168,1169,1170,1171,0,3,2,7,8,1168,1169,1170,1171,43,1169,1172,1173,1170,0,3,2,7,8,1169,1172,1173,1170,43,1170,1173,1161,1160,0,3,2,7,8,1170,1173,1161,1160,43,1171,1170,1160,1159,0,3,2,7,8,1171,1170,1160,1159,43,1174,1175,1176,1177,0,3,2,7,8,1174,1175,1176,1177,43,1175,1178,1179,1176,0,3,2,7,8,1175,1178,1179,1176,43,1176,1179,1172,1169,0,3,2,7,8,1176,1179,1172,1169,43,1177,1176,1169,1168,0,3,2,7,8,1177,1176,1169,1168,43,1180,1181,1182,1183,0,3,2,7,8,1180,1181,1182,1183,43,1181,1174,1177,1182,0,3,2,7,8,1181,1174,1177,1182,43,1182,1177,1168,1184,0,3,2,7,8,1182,1177,1168,1184,43,1183,1182,1184,1164,0,3,2,7,8,1183,1182,1184,1164,43,1164,1184,1185,1165,0,3,2,7,8,1164,1184,1185,1165,43,1184,1168,1171,1185,0,3,2,7,8,1184,1168,1171,1185,43,1185,1171,1159,1186,0,3,2,7,8,1185,1171,1159,1186,43,1165,1185,1186,1166,0,3,2,7,8,1165,1185,1186,1166,43,1023,1187,1188,1158,0,3,2,7,8,1023,1187,1188,1158,43,1187,1189,1190,1188,0,3,2,7,8,1187,1189,1190,1188,43,1188,1190,1166,1186,0,3,2,7,8,1188,1190,1166,1186,43,1158,1188,1186,1159,0,3,2,7,8,1158,1188,1186,1159,43,1191,1192,1193,1194,0,3,2,7,8,1191,1192,1193,1194,43,1192,1195,1196,1193,0,3,2,7,8,1192,1195,1196,1193,43,1193,1196,1197,1198,0,3,2,7,8,1193,1196,1197,1198,43,1194,1193,1198,1108,0,3,2,7,8,1194,1193,1198,1108,43,1197,1196,1199,1200,0,3,2,7,8,1197,1196,1199,1200,43,1196,1195,1201,1199,0,3,2,7,8,1196,1195,1201,1199,43,1199,1201,1032,1035,0,3,2,7,8,1199,1201,1032,1035,43,1200,1199,1035,1040,0,3,2,7,8,1200,1199,1035,1040,43,1032,1201,1202,1045,0,3,2,7,8,1032,1201,1202,1045,43,1201,1195,1203,1202,0,3,2,7,8,1201,1195,1203,1202,43,1202,1203,1030,1027,0,3,2,7,8,1202,1203,1030,1027,43,1045,1202,1027,1026,0,3,2,7,8,1045,1202,1027,1026,43,1021,1018,1204,1205,0,3,2,7,8,1021,1018,1204,1205,43,1018,1017,1031,1204,0,3,2,7,8,1018,1017,1031,1204,43,1204,1031,1030,1206,0,3,2,7,8,1204,1031,1030,1206,43,1205,1204,1206,1207,0,3,2,7,8,1205,1204,1206,1207,43,1023,1022,1208,1187,0,3,2,7,8,1023,1022,1208,1187,43,1022,1021,1205,1208,0,3,2,7,8,1022,1021,1205,1208,43,1208,1205,1207,1209,0,3,2,7,8,1208,1205,1207,1209,43,1187,1208,1209,1189,0,3,2,7,8,1187,1208,1209,1189,43,1207,1206,1210,1211,0,3,2,7,8,1207,1206,1210,1211,43,1206,1030,1203,1210,0,3,2,7,8,1206,1030,1203,1210,43,1210,1203,1195,1192,0,3,2,7,8,1210,1203,1195,1192,43,1211,1210,1192,1191,0,3,2,7,8,1211,1210,1192,1191,43,1189,1209,1212,1213,0,3,2,7,8,1189,1209,1212,1213,43,1209,1207,1211,1212,0,3,2,7,8,1209,1207,1211,1212,43,1212,1211,1191,1214,0,3,2,7,8,1212,1211,1191,1214,43,1213,1212,1214,1144,0,3,2,7,8,1213,1212,1214,1144,43,1166,1190,1215,1167,0,3,2,7,8,1166,1190,1215,1167,43,1190,1189,1213,1215,0,3,2,7,8,1190,1189,1213,1215,43,1215,1213,1144,1147,0,3,2,7,8,1215,1213,1144,1147,43,1167,1215,1147,1115,0,3,2,7,8,1167,1215,1147,1115,43,1148,1145,1216,1217,0,3,2,7,8,1148,1145,1216,1217,43,1145,1144,1214,1216,0,3,2,7,8,1145,1144,1214,1216,43,1216,1214,1191,1194,0,3,2,7,8,1216,1214,1191,1194,43,1217,1216,1194,1108,0,3,2,7,8,1217,1216,1194,1108,43,1106,1143,1218,1107,0,3,2,7,8,1106,1143,1218,1107,43,1143,1142,1219,1218,0,3,2,7,8,1143,1142,1219,1218,43,1218,1219,1148,1217,0,3,2,7,8,1218,1219,1148,1217,43,1107,1218,1217,1108,0,3,2,7,8,1107,1218,1217,1108,43,1142,1141,1220,1221,0,3,2,7,8,1142,1141,1220,1221,43,1141,785,1222,1220,0,3,2,7,8,1141,785,1222,1220,43,1220,1222,1137,1136,0,3,2,7,8,1220,1222,1137,1136,43,1221,1220,1136,1135,0,3,2,7,8,1221,1220,1136,1135,43,1135,1223,1224,1221,0,3,2,7,8,1135,1223,1224,1221,43,1223,1150,1149,1224,0,3,2,7,8,1223,1150,1149,1224,43,1224,1149,1148,1219,0,3,2,7,8,1224,1149,1148,1219,43,1221,1224,1219,1142,0,3,2,7,8,1221,1224,1219,1142,43,1115,1151,1225,1226,0,3,2,7,8,1115,1151,1225,1226,43,1151,1150,1223,1225,0,3,2,7,8,1151,1150,1223,1225,43,1225,1223,1135,1133,0,3,2,7,8,1225,1223,1135,1133,43,1226,1225,1133,1132,0,3,2,7,8,1226,1225,1133,1132,43,1130,1227,1228,1131,0,3,2,7,8,1130,1227,1228,1131,43,1227,1119,1116,1228,0,3,2,7,8,1227,1119,1116,1228,43,1228,1116,1115,1226,0,3,2,7,8,1228,1116,1115,1226,43,1131,1228,1226,1132,0,3,2,7,8,1131,1228,1226,1132,43,1121,1120,1229,1230,0,3,2,7,8,1121,1120,1229,1230,43,1120,1119,1227,1229,0,3,2,7,8,1120,1119,1227,1229,43,1229,1227,1130,1231,0,3,2,7,8,1229,1227,1130,1231,43,1230,1229,1231,1232,0,3,2,7,8,1230,1229,1231,1232,43,1121,1230,1233,1234,0,3,2,7,8,1121,1230,1233,1234,43,1230,1232,1235,1233,0,3,2,7,8,1230,1232,1235,1233,43,1233,1235,1236,1237,0,3,2,7,8,1233,1235,1236,1237,43,1234,1233,1237,1238,0,3,2,7,8,1234,1233,1237,1238,43,1130,1239,1240,1231,0,3,2,7,8,1130,1239,1240,1231,43,1239,1241,1242,1240,0,3,2,7,8,1239,1241,1242,1240,43,1231,1240,1242,1232,0,3,2,7,8,1231,1240,1242,1232,43,1241,1243,1244,1245,0,3,2,7,8,1241,1243,1244,1245,43,1243,1246,1247,1244,0,3,2,7,8,1243,1246,1247,1244,43,1244,1247,1248,1249,0,3,2,7,8,1244,1247,1248,1249,43,1245,1244,1249,1250,0,3,2,7,8,1245,1244,1249,1250,43,1232,1242,1251,1235,0,3,2,7,8,1232,1242,1251,1235,43,1242,1241,1245,1251,0,3,2,7,8,1242,1241,1245,1251,43,1251,1245,1250,1252,0,3,2,7,8,1251,1245,1250,1252,43,1235,1251,1252,1236,0,3,2,7,8,1235,1251,1252,1236,43,1253,1254,1255,1256,0,3,2,7,8,1253,1254,1255,1256,43,1254,1180,1183,1255,0,3,2,7,8,1254,1180,1183,1255,43,1255,1183,1164,1162,0,3,2,7,8,1255,1183,1164,1162,43,1256,1255,1162,1123,0,3,2,7,8,1256,1255,1162,1123,43,1253,1256,1257,1258,0,3,2,7,8,1253,1256,1257,1258,43,1256,1123,1122,1257,0,3,2,7,8,1256,1123,1122,1257,43,1257,1122,1121,1234,0,3,2,7,8,1257,1122,1121,1234,43,1258,1257,1234,1238,0,3,2,7,8,1258,1257,1234,1238,43,504,1259,1260,505,0,3,2,7,8,504,1259,1260,505,43,1259,1248,1247,1260,0,3,2,7,8,1259,1248,1247,1260,43,1260,1247,1246,1261,0,3,2,7,8,1260,1247,1246,1261,43,505,1260,1261,506,0,3,2,7,8,505,1260,1261,506,43,506,1261,1262,511,0,3,2,7,8,506,1261,1262,511,43,1261,1246,1263,1262,0,3,2,7,8,1261,1246,1263,1262,43,1262,1263,1264,1265,0,3,2,7,8,1262,1263,1264,1265,43,511,1262,1265,512,0,3,2,7,8,511,1262,1265,512,43,1246,1243,1266,1263,0,3,2,7,8,1246,1243,1266,1263,43,1243,1241,1239,1266,0,3,2,7,8,1243,1241,1239,1266,43,1266,1239,1130,1267,0,3,2,7,8,1266,1239,1130,1267,43,1263,1266,1267,1264,0,3,2,7,8,1263,1266,1267,1264,43,1130,1129,1268,1267,0,3,2,7,8,1130,1129,1268,1267,43,1129,1128,1269,1268,0,3,2,7,8,1129,1128,1269,1268,43,1268,1269,1270,1271,0,3,2,7,8,1268,1269,1270,1271,43,1267,1268,1271,1264,0,3,2,7,8,1267,1268,1271,1264,43,525,1272,1273,526,0,3,2,7,8,525,1272,1273,526,43,1272,1274,1275,1273,0,3,2,7,8,1272,1274,1275,1273,43,1273,1275,1276,1277,0,3,2,7,8,1273,1275,1276,1277,43,526,1273,1277,527,0,3,2,7,8,526,1273,1277,527,43,1274,1278,1279,1275,0,3,2,7,8,1274,1278,1279,1275,43,1278,1280,1281,1279,0,3,2,7,8,1278,1280,1281,1279,43,1279,1281,1282,1283,0,3,2,7,8,1279,1281,1282,1283,43,1275,1279,1283,1276,0,3,2,7,8,1275,1279,1283,1276,43,1284,1285,1286,1287,0,3,2,7,8,1284,1285,1286,1287,43,1285,1276,1283,1286,0,3,2,7,8,1285,1276,1283,1286,43,1286,1283,1282,1288,0,3,2,7,8,1286,1283,1282,1288,43,1287,1286,1288,1114,0,3,2,7,8,1287,1286,1288,1114,43,1282,1281,1289,1290,0,3,2,7,8,1282,1281,1289,1290,43,1281,1280,1291,1289,0,3,2,7,8,1281,1280,1291,1289,43,1290,1289,1291,1292,0,3,2,7,8,1290,1289,1291,1292,43,1292,1293,1294,1290,0,3,2,7,8,1292,1293,1294,1290,43,1293,1109,1112,1294,0,3,2,7,8,1293,1109,1112,1294,43,1294,1112,1114,1288,0,3,2,7,8,1294,1112,1114,1288,43,1290,1294,1288,1282,0,3,2,7,8,1290,1294,1288,1282,43,851,1295,1296,870,0,3,2,7,8,851,1295,1296,870,43,1295,1297,1298,1296,0,3,2,7,8,1295,1297,1298,1296,43,1296,1298,1299,1300,0,3,2,7,8,1296,1298,1299,1300,43,870,1296,1300,871,0,3,2,7,8,870,1296,1300,871,43,1301,1302,1303,1304,0,3,2,7,8,1301,1302,1303,1304,43,1302,787,1140,1303,0,3,2,7,8,1302,787,1140,1303,43,1303,1140,1106,1105,0,3,2,7,8,1303,1140,1106,1105,43,1304,1303,1105,1104,0,3,2,7,8,1304,1303,1105,1104,43,779,782,1305,858,0,3,2,7,8,779,782,1305,858,43,782,787,1302,1305,0,3,2,7,8,782,787,1302,1305,43,1305,1302,1301,1306,0,3,2,7,8,1305,1302,1301,1306,43,858,1305,1306,849,0,3,2,7,8,858,1305,1306,849,43,849,1306,1307,850,0,3,2,7,8,849,1306,1307,850,43,1306,1301,1308,1307,0,3,2,7,8,1306,1301,1308,1307,43,1307,1308,1297,1295,0,3,2,7,8,1307,1308,1297,1295,43,850,1307,1295,851,0,3,2,7,8,850,1307,1295,851,43,1301,1304,1309,1308,0,3,2,7,8,1301,1304,1309,1308,43,1304,1104,1310,1309,0,3,2,7,8,1304,1104,1310,1309,43,1309,1310,1311,1312,0,3,2,7,8,1309,1310,1311,1312,43,1308,1309,1312,1297,0,3,2,7,8,1308,1309,1312,1297,43,1297,1312,1313,1298,0,3,2,7,8,1297,1312,1313,1298,43,1312,1311,1314,1313,0,3,2,7,8,1312,1311,1314,1313,43,1313,1314,1315,1316,0,3,2,7,8,1313,1314,1315,1316,43,1298,1313,1316,1299,0,3,2,7,8,1298,1313,1316,1299,43,1317,1318,1319,1320,0,3,2,7,8,1317,1318,1319,1320,43,1318,1299,1316,1319,0,3,2,7,8,1318,1299,1316,1319,43,1319,1316,1315,1321,0,3,2,7,8,1319,1316,1315,1321,43,1320,1319,1321,1292,0,3,2,7,8,1320,1319,1321,1292,43,1100,1322,1323,1101,0,3,2,7,8,1100,1322,1323,1101,43,1322,1324,1325,1323,0,3,2,7,8,1322,1324,1325,1323,43,1323,1325,1311,1310,0,3,2,7,8,1323,1325,1311,1310,43,1101,1323,1310,1104,0,3,2,7,8,1101,1323,1310,1104,43,1326,1327,1328,1329,0,3,2,7,8,1326,1327,1328,1329,43,1327,1100,1103,1328,0,3,2,7,8,1327,1100,1103,1328,43,1328,1103,1108,1198,0,3,2,7,8,1328,1103,1108,1198,43,1329,1328,1198,1197,0,3,2,7,8,1329,1328,1198,1197,43,1330,1331,1332,1333,0,3,2,7,8,1330,1331,1332,1333,43,1331,1326,1334,1332,0,3,2,7,8,1331,1326,1334,1332,43,1332,1334,1098,1110,0,3,2,7,8,1332,1334,1098,1110,43,1333,1332,1110,1109,0,3,2,7,8,1333,1332,1110,1109,43,1098,1334,1335,1099,0,3,2,7,8,1098,1334,1335,1099,43,1334,1326,1329,1335,0,3,2,7,8,1334,1326,1329,1335,43,1335,1329,1197,1200,0,3,2,7,8,1335,1329,1197,1200,43,1099,1335,1200,1040,0,3,2,7,8,1099,1335,1200,1040,43,1330,1336,1337,1331,0,3,2,7,8,1330,1336,1337,1331,43,1336,1324,1322,1337,0,3,2,7,8,1336,1324,1322,1337,43,1337,1322,1100,1327,0,3,2,7,8,1337,1322,1100,1327,43,1331,1337,1327,1326,0,3,2,7,8,1331,1337,1327,1326,43,1311,1325,1338,1314,0,3,2,7,8,1311,1325,1338,1314,43,1325,1324,1336,1338,0,3,2,7,8,1325,1324,1336,1338,43,1338,1336,1330,1339,0,3,2,7,8,1338,1336,1330,1339,43,1314,1338,1339,1315,0,3,2,7,8,1314,1338,1339,1315,43,1315,1339,1340,1321,0,3,2,7,8,1315,1339,1340,1321,43,1339,1330,1333,1340,0,3,2,7,8,1339,1330,1333,1340,43,1340,1333,1109,1293,0,3,2,7,8,1340,1333,1109,1293,43,1321,1340,1293,1292,0,3,2,7,8,1321,1340,1293,1292,43,1292,1291,1341,1320,0,3,2,7,8,1292,1291,1341,1320,43,1291,1280,1342,1341,0,3,2,7,8,1291,1280,1342,1341,43,1341,1342,1343,1344,0,3,2,7,8,1341,1342,1343,1344,43,1320,1341,1344,1317,0,3,2,7,8,1320,1341,1344,1317,43,1345,1346,1347,1348,0,3,2,7,8,1345,1346,1347,1348,43,1346,1349,1350,1347,0,3,2,7,8,1346,1349,1350,1347,43,1347,1350,1351,1352,0,3,2,7,8,1347,1350,1351,1352,43,1348,1347,1352,1353,0,3,2,7,8,1348,1347,1352,1353,43,1351,1350,1354,1355,0,3,2,7,8,1351,1350,1354,1355,43,1350,1349,1356,1354,0,3,2,7,8,1350,1349,1356,1354,43,1354,1356,604,607,0,3,2,7,8,1354,1356,604,607,43,1355,1354,607,609,0,3,2,7,8,1355,1354,607,609,43,604,1356,1357,612,0,3,2,7,8,604,1356,1357,612,43,1356,1349,1346,1357,0,3,2,7,8,1356,1349,1346,1357,43,1357,1346,1345,1358,0,3,2,7,8,1357,1346,1345,1358,43,612,1357,1358,613,0,3,2,7,8,612,1357,1358,613,43,1343,1359,1360,1361,0,3,2,7,8,1343,1359,1360,1361,43,1359,1362,1363,1360,0,3,2,7,8,1359,1362,1363,1360,43,1360,1363,1364,1365,0,3,2,7,8,1360,1363,1364,1365,43,1361,1360,1365,1366,0,3,2,7,8,1361,1360,1365,1366,43,1299,1318,1367,1300,0,3,2,7,8,1299,1318,1367,1300,43,1318,1317,1368,1367,0,3,2,7,8,1318,1317,1368,1367,43,1367,1368,1369,1370,0,3,2,7,8,1367,1368,1369,1370,43,1300,1367,1370,871,0,3,2,7,8,1300,1367,1370,871,43,871,1370,1371,872,0,3,2,7,8,871,1370,1371,872,43,1370,1369,1372,1371,0,3,2,7,8,1370,1369,1372,1371,43,1371,1372,1373,1374,0,3,2,7,8,1371,1372,1373,1374,43,872,1371,1374,873,0,3,2,7,8,872,1371,1374,873,43,1317,1344,1375,1368,0,3,2,7,8,1317,1344,1375,1368,43,1344,1343,1361,1375,0,3,2,7,8,1344,1343,1361,1375,43,1375,1361,1366,1376,0,3,2,7,8,1375,1361,1366,1376,43,1368,1375,1376,1369,0,3,2,7,8,1368,1375,1376,1369,43,1369,1376,1377,1372,0,3,2,7,8,1369,1376,1377,1372,43,1376,1366,1378,1377,0,3,2,7,8,1376,1366,1378,1377,43,1377,1378,1353,1379,0,3,2,7,8,1377,1378,1353,1379,43,1372,1377,1379,1373,0,3,2,7,8,1372,1377,1379,1373,43,1366,1365,1380,1378,0,3,2,7,8,1366,1365,1380,1378,43,1365,1364,1381,1380,0,3,2,7,8,1365,1364,1381,1380,43,1380,1381,1345,1348,0,3,2,7,8,1380,1381,1345,1348,43,1378,1380,1348,1353,0,3,2,7,8,1378,1380,1348,1353,43,639,638,1382,1383,0,3,2,7,8,639,638,1382,1383,43,638,613,1358,1382,0,3,2,7,8,638,613,1358,1382,43,1382,1358,1345,1381,0,3,2,7,8,1382,1358,1345,1381,43,1383,1382,1381,1364,0,3,2,7,8,1383,1382,1381,1364,43,1362,1384,1385,1363,0,3,2,7,8,1362,1384,1385,1363,43,1384,643,641,1385,0,3,2,7,8,1384,643,641,1385,43,1385,641,639,1383,0,3,2,7,8,1385,641,639,1383,43,1363,1385,1383,1364,0,3,2,7,8,1363,1385,1383,1364,43,1343,1342,1386,1359,0,3,2,7,8,1343,1342,1386,1359,43,1342,1280,1278,1386,0,3,2,7,8,1342,1280,1278,1386,43,1386,1278,1274,1387,0,3,2,7,8,1386,1278,1274,1387,43,1359,1386,1387,1362,0,3,2,7,8,1359,1386,1387,1362,43,1274,1272,1388,1387,0,3,2,7,8,1274,1272,1388,1387,43,1272,525,647,1388,0,3,2,7,8,1272,525,647,1388,43,1388,647,643,1384,0,3,2,7,8,1388,647,643,1384,43,1387,1388,1384,1362,0,3,2,7,8,1387,1388,1384,1362,43,651,650,1389,1390,0,3,2,7,8,651,650,1389,1390,43,650,527,1277,1389,0,3,2,7,8,650,527,1277,1389,43,1389,1277,1276,1285,0,3,2,7,8,1389,1277,1276,1285,43,1390,1389,1285,1284,0,3,2,7,8,1390,1389,1285,1284,43,656,655,1391,1392,0,3,2,7,8,656,655,1391,1392,43,655,651,1390,1391,0,3,2,7,8,655,651,1390,1391,43,1391,1390,1284,1393,0,3,2,7,8,1391,1390,1284,1393,43,1392,1391,1393,1394,0,3,2,7,8,1392,1391,1393,1394,43,1394,1393,1395,1396,0,3,2,7,8,1394,1393,1395,1396,43,1393,1284,1287,1395,0,3,2,7,8,1393,1284,1287,1395,43,1395,1287,1114,1397,0,3,2,7,8,1395,1287,1114,1397,43,1396,1395,1397,1398,0,3,2,7,8,1396,1395,1397,1398,43,1398,1399,1400,1401,0,3,2,7,8,1398,1399,1400,1401,43,1399,1086,1089,1400,0,3,2,7,8,1399,1086,1089,1400,43,1400,1089,1091,1402,0,3,2,7,8,1400,1089,1091,1402,43,1401,1400,1402,1403,0,3,2,7,8,1401,1400,1402,1403,43,1114,1113,1404,1397,0,3,2,7,8,1114,1113,1404,1397,43,1113,1092,1095,1404,0,3,2,7,8,1113,1092,1095,1404,43,1404,1095,1086,1399,0,3,2,7,8,1404,1095,1086,1399,43,1397,1404,1399,1398,0,3,2,7,8,1397,1404,1399,1398,43,1394,1396,1405,1406,0,3,2,7,8,1394,1396,1405,1406,43,1396,1398,1401,1405,0,3,2,7,8,1396,1398,1401,1405,43,1405,1401,1403,1407,0,3,2,7,8,1405,1401,1403,1407,43,1406,1405,1407,1408,0,3,2,7,8,1406,1405,1407,1408,43,656,1392,1409,675,0,3,2,7,8,656,1392,1409,675,43,1392,1394,1406,1409,0,3,2,7,8,1392,1394,1406,1409,43,1409,1406,1408,1410,0,3,2,7,8,1409,1406,1408,1410,43,675,1409,1410,676,0,3,2,7,8,675,1409,1410,676,43,794,921,1411,795,0,3,2,7,8,794,921,1411,795,43,921,920,1412,1411,0,3,2,7,8,921,920,1412,1411,43,1411,1412,1413,1414,0,3,2,7,8,1411,1412,1413,1414,43,795,1411,1414,796,0,3,2,7,8,795,1411,1414,796,43,817,1415,1416,821,0,3,2,7,8,817,1415,1416,821,43,1415,1417,1418,1416,0,3,2,7,8,1415,1417,1418,1416,43,1416,1418,833,834,0,3,2,7,8,1416,1418,833,834,43,821,1416,834,822,0,3,2,7,8,821,1416,834,822,43,1417,1419,1420,1418,0,3,2,7,8,1417,1419,1420,1418,43,1419,1421,1422,1420,0,3,2,7,8,1419,1421,1422,1420,43,1420,1422,828,831,0,3,2,7,8,1420,1422,828,831,43,1418,1420,831,833,0,3,2,7,8,1418,1420,831,833,43,788,791,1423,816,0,3,2,7,8,788,791,1423,816,43,791,796,1424,1423,0,3,2,7,8,791,796,1424,1423,43,1423,1424,1417,1415,0,3,2,7,8,1423,1424,1417,1415,43,816,1423,1415,817,0,3,2,7,8,816,1423,1415,817,43,796,1414,1425,1424,0,3,2,7,8,796,1414,1425,1424,43,1414,1413,1426,1425,0,3,2,7,8,1414,1413,1426,1425,43,1425,1426,1421,1419,0,3,2,7,8,1425,1426,1421,1419,43,1424,1425,1419,1417,0,3,2,7,8,1424,1425,1419,1417,43,1427,1428,1429,1430,0,3,2,7,8,1427,1428,1429,1430,43,1428,1431,1432,1429,0,3,2,7,8,1428,1431,1432,1429,43,1429,1432,1433,1434,0,3,2,7,8,1429,1432,1433,1434,43,1430,1429,1434,1435,0,3,2,7,8,1430,1429,1434,1435,43,1015,1436,1437,1016,0,3,2,7,8,1015,1436,1437,1016,43,1436,1438,1439,1437,0,3,2,7,8,1436,1438,1439,1437,43,1437,1439,1440,1441,0,3,2,7,8,1437,1439,1440,1441,43,1016,1437,1441,890,0,3,2,7,8,1016,1437,1441,890,43,890,1441,1442,891,0,3,2,7,8,890,1441,1442,891,43,1441,1440,1443,1442,0,3,2,7,8,1441,1440,1443,1442,43,1442,1443,880,889,0,3,2,7,8,1442,1443,880,889,43,891,1442,889,888,0,3,2,7,8,891,1442,889,888,43,1440,1444,1445,1443,0,3,2,7,8,1440,1444,1445,1443,43,1444,1446,1447,1445,0,3,2,7,8,1444,1446,1447,1445,43,1445,1447,859,881,0,3,2,7,8,1445,1447,859,881,43,1443,1445,881,880,0,3,2,7,8,1443,1445,881,880,43,1438,1448,1449,1439,0,3,2,7,8,1438,1448,1449,1439,43,1448,1435,1450,1449,0,3,2,7,8,1448,1435,1450,1449,43,1449,1450,1446,1444,0,3,2,7,8,1449,1450,1446,1444,43,1439,1449,1444,1440,0,3,2,7,8,1439,1449,1444,1440,43,1451,1452,1453,1454,0,3,2,7,8,1451,1452,1453,1454,43,1452,783,780,1453,0,3,2,7,8,1452,783,780,1453,43,1453,780,779,855,0,3,2,7,8,1453,780,779,855,43,1454,1453,855,854,0,3,2,7,8,1454,1453,855,854,43,785,784,1455,1222,0,3,2,7,8,785,784,1455,1222,43,784,783,1452,1455,0,3,2,7,8,784,783,1452,1455,43,1455,1452,1451,1456,0,3,2,7,8,1455,1452,1451,1456,43,1222,1455,1456,1137,0,3,2,7,8,1222,1455,1456,1137,43,1124,1138,1457,1458,0,3,2,7,8,1124,1138,1457,1458,43,1138,1137,1456,1457,0,3,2,7,8,1138,1137,1456,1457,43,1457,1456,1451,1459,0,3,2,7,8,1457,1456,1451,1459,43,1458,1457,1459,1433,0,3,2,7,8,1458,1457,1459,1433,43,1451,1454,1460,1461,0,3,2,7,8,1451,1454,1460,1461,43,1454,854,860,1460,0,3,2,7,8,1454,854,860,1460,43,1460,860,859,1447,0,3,2,7,8,1460,860,859,1447,43,1461,1460,1447,1446,0,3,2,7,8,1461,1460,1447,1446,43,1446,1450,1462,1461,0,3,2,7,8,1446,1450,1462,1461,43,1450,1435,1434,1462,0,3,2,7,8,1450,1435,1434,1462,43,1462,1434,1433,1459,0,3,2,7,8,1462,1434,1433,1459,43,1461,1462,1459,1451,0,3,2,7,8,1461,1462,1459,1451,43,1002,1463,1464,1006,0,3,2,7,8,1002,1463,1464,1006,43,1463,1465,1466,1464,0,3,2,7,8,1463,1465,1466,1464,43,1464,1466,1015,1013,0,3,2,7,8,1464,1466,1015,1013,43,1006,1464,1013,1007,0,3,2,7,8,1006,1464,1013,1007,43,1465,1467,1468,1466,0,3,2,7,8,1465,1467,1468,1466,43,1467,1469,1470,1468,0,3,2,7,8,1467,1469,1470,1468,43,1468,1470,1438,1436,0,3,2,7,8,1468,1470,1438,1436,43,1466,1468,1436,1015,0,3,2,7,8,1466,1468,1436,1015,43,241,740,1471,1001,0,3,2,7,8,241,740,1471,1001,43,740,739,1472,1471,0,3,2,7,8,740,739,1472,1471,43,1471,1472,1465,1463,0,3,2,7,8,1471,1472,1465,1463,43,1001,1471,1463,1002,0,3,2,7,8,1001,1471,1463,1002,43,746,745,1473,1474,0,3,2,7,8,746,745,1473,1474,43,745,744,1475,1473,0,3,2,7,8,745,744,1475,1473,43,1473,1475,1427,1476,0,3,2,7,8,1473,1475,1427,1476,43,1474,1473,1476,1469,0,3,2,7,8,1474,1473,1476,1469,43,739,749,1477,1472,0,3,2,7,8,739,749,1477,1472,43,749,746,1474,1477,0,3,2,7,8,749,746,1474,1477,43,1477,1474,1469,1467,0,3,2,7,8,1477,1474,1469,1467,43,1472,1477,1467,1465,0,3,2,7,8,1472,1477,1467,1465,43,1469,1476,1478,1470,0,3,2,7,8,1469,1476,1478,1470,43,1476,1427,1430,1478,0,3,2,7,8,1476,1427,1430,1478,43,1478,1430,1435,1448,0,3,2,7,8,1478,1430,1435,1448,43,1470,1478,1448,1438,0,3,2,7,8,1470,1478,1448,1438,43,1270,1269,1479,1480,0,3,2,7,8,1270,1269,1479,1480,43,1269,1128,1125,1479,0,3,2,7,8,1269,1128,1125,1479,43,1479,1125,1124,1481,0,3,2,7,8,1479,1125,1124,1481,43,1480,1479,1481,1482,0,3,2,7,8,1480,1479,1481,1482,43,760,759,1483,1484,0,3,2,7,8,760,759,1483,1484,43,759,758,1485,1483,0,3,2,7,8,759,758,1485,1483,43,1483,1485,1482,1486,0,3,2,7,8,1483,1485,1482,1486,43,1484,1483,1486,1431,0,3,2,7,8,1484,1483,1486,1431,43,1433,1432,1487,1458,0,3,2,7,8,1433,1432,1487,1458,43,1432,1431,1486,1487,0,3,2,7,8,1432,1431,1486,1487,43,1487,1486,1482,1481,0,3,2,7,8,1487,1486,1482,1481,43,1458,1487,1481,1124,0,3,2,7,8,1458,1487,1481,1124,43,1264,1271,1488,1265,0,3,2,7,8,1264,1271,1488,1265,43,1271,1270,1489,1488,0,3,2,7,8,1271,1270,1489,1488,43,1488,1489,763,766,0,3,2,7,8,1488,1489,763,766,43,1265,1488,766,512,0,3,2,7,8,1265,1488,766,512,43,763,1489,1490,768,0,3,2,7,8,763,1489,1490,768,43,1489,1270,1480,1490,0,3,2,7,8,1489,1270,1480,1490,43,1490,1480,1482,1485,0,3,2,7,8,1490,1480,1482,1485,43,768,1490,1485,758,0,3,2,7,8,768,1490,1485,758,43,744,770,1491,1475,0,3,2,7,8,744,770,1491,1475,43,770,760,1484,1491,0,3,2,7,8,770,760,1484,1491,43,1491,1484,1431,1428,0,3,2,7,8,1491,1484,1431,1428,43,1475,1491,1428,1427,0,3,2,7,8,1475,1491,1428,1427,43,908,1492,1493,924,0,3,2,7,8,908,1492,1493,924,43,1492,1494,1495,1493,0,3,2,7,8,1492,1494,1495,1493,43,1493,1495,1496,1497,0,3,2,7,8,1493,1495,1496,1497,43,924,1493,1497,926,0,3,2,7,8,924,1493,1497,926,43,905,1498,1499,906,0,3,2,7,8,905,1498,1499,906,43,1498,1494,1492,1499,0,3,2,7,8,1498,1494,1492,1499,43,1499,1492,908,911,0,3,2,7,8,1499,1492,908,911,43,906,1499,911,907,0,3,2,7,8,906,1499,911,907,43,1500,1501,1502,1503,0,3,2,7,8,1500,1501,1502,1503,43,1501,1504,1505,1502,0,3,2,7,8,1501,1504,1505,1502,43,1502,1505,1506,1507,0,3,2,7,8,1502,1505,1506,1507,43,1503,1502,1507,1508,0,3,2,7,8,1503,1502,1507,1508,43,1509,1510,1511,1512,0,3,2,7,8,1509,1510,1511,1512,43,1510,1513,1514,1511,0,3,2,7,8,1510,1513,1514,1511,43,1511,1514,1515,1516,0,3,2,7,8,1511,1514,1515,1516,43,1512,1511,1516,1517,0,3,2,7,8,1512,1511,1516,1517,43,1506,1518,1519,1520,0,3,2,7,8,1506,1518,1519,1520,43,1518,1517,1516,1519,0,3,2,7,8,1518,1517,1516,1519,43,1519,1516,1515,1521,0,3,2,7,8,1519,1516,1515,1521,43,1520,1519,1521,1522,0,3,2,7,8,1520,1519,1521,1522,43,1515,1514,1523,1524,0,3,2,7,8,1515,1514,1523,1524,43,1514,1513,1525,1523,0,3,2,7,8,1514,1513,1525,1523,43,1523,1525,1526,1527,0,3,2,7,8,1523,1525,1526,1527,43,1524,1523,1527,1528,0,3,2,7,8,1524,1523,1527,1528,43,1529,1530,1531,1532,0,3,2,7,8,1529,1530,1531,1532,43,1530,1533,1534,1531,0,3,2,7,8,1530,1533,1534,1531,43,1531,1534,1535,1536,0,3,2,7,8,1531,1534,1535,1536,43,1532,1531,1536,1537,0,3,2,7,8,1532,1531,1536,1537,43,1535,1538,1539,1536,0,3,2,7,8,1535,1538,1539,1536,43,1538,1528,1527,1539,0,3,2,7,8,1538,1528,1527,1539,43,1539,1527,1526,1540,0,3,2,7,8,1539,1527,1526,1540,43,1536,1539,1540,1537,0,3,2,7,8,1536,1539,1540,1537,43,1528,1538,1541,1542,0,3,2,7,8,1528,1538,1541,1542,43,1538,1535,1543,1541,0,3,2,7,8,1538,1535,1543,1541,43,1542,1541,1543,1544,0,3,2,7,8,1542,1541,1543,1544,43,1522,1521,1545,1546,0,3,2,7,8,1522,1521,1545,1546,43,1521,1515,1524,1545,0,3,2,7,8,1521,1515,1524,1545,43,1545,1524,1528,1542,0,3,2,7,8,1545,1524,1528,1542,43,1546,1545,1542,1544,0,3,2,7,8,1546,1545,1542,1544,43,1508,1507,1547,1548,0,3,2,7,8,1508,1507,1547,1548,43,1507,1506,1520,1547,0,3,2,7,8,1507,1506,1520,1547,43,1547,1520,1522,1549,0,3,2,7,8,1547,1520,1522,1549,43,1548,1547,1549,1550,0,3,2,7,8,1548,1547,1549,1550,43,1551,1552,1553,1554,0,3,2,7,8,1551,1552,1553,1554,43,1552,1550,1549,1553,0,3,2,7,8,1552,1550,1549,1553,43,1553,1549,1522,1546,0,3,2,7,8,1553,1549,1522,1546,43,1554,1553,1546,1544,0,3,2,7,8,1554,1553,1546,1544,43,1555,1556,1557,1558,0,3,2,7,8,1555,1556,1557,1558,43,1556,1559,1560,1557,0,3,2,7,8,1556,1559,1560,1557,43,1557,1560,1561,1562,0,3,2,7,8,1557,1560,1561,1562,43,1558,1557,1562,1563,0,3,2,7,8,1558,1557,1562,1563,43,1564,1565,1566,1567,0,3,2,7,8,1564,1565,1566,1567,43,1565,1555,1558,1566,0,3,2,7,8,1565,1555,1558,1566,43,1566,1558,1563,1568,0,3,2,7,8,1566,1558,1563,1568,43,1567,1566,1568,1569,0,3,2,7,8,1567,1566,1568,1569,43,1570,1571,1572,1573,0,3,2,7,8,1570,1571,1572,1573,43,1571,1574,1575,1572,0,3,2,7,8,1571,1574,1575,1572,43,1572,1575,1576,1577,0,3,2,7,8,1572,1575,1576,1577,43,1573,1572,1577,1578,0,3,2,7,8,1573,1572,1577,1578,43,1579,1580,1581,1582,0,3,2,7,8,1579,1580,1581,1582,43,1580,1570,1573,1581,0,3,2,7,8,1580,1570,1573,1581,43,1581,1573,1578,1583,0,3,2,7,8,1581,1573,1578,1583,43,1582,1581,1583,1584,0,3,2,7,8,1582,1581,1583,1584,43,1585,1586,1587,1588,0,3,2,7,8,1585,1586,1587,1588,43,1586,1579,1582,1587,0,3,2,7,8,1586,1579,1582,1587,43,1587,1582,1584,1589,0,3,2,7,8,1587,1582,1584,1589,43,1588,1587,1589,1590,0,3,2,7,8,1588,1587,1589,1590,43,1591,1592,1593,1594,0,3,2,7,8,1591,1592,1593,1594,43,1592,1509,1512,1593,0,3,2,7,8,1592,1509,1512,1593,43,1593,1512,1517,1595,0,3,2,7,8,1593,1512,1517,1595,43,1594,1593,1595,1596,0,3,2,7,8,1594,1593,1595,1596,43,1504,1597,1598,1505,0,3,2,7,8,1504,1597,1598,1505,43,1597,1596,1595,1598,0,3,2,7,8,1597,1596,1595,1598,43,1598,1595,1517,1518,0,3,2,7,8,1598,1595,1517,1518,43,1505,1598,1518,1506,0,3,2,7,8,1505,1598,1518,1506,43,1596,1597,1599,1600,0,3,2,7,8,1596,1597,1599,1600,43,1597,1504,1601,1599,0,3,2,7,8,1597,1504,1601,1599,43,1599,1601,1579,1586,0,3,2,7,8,1599,1601,1579,1586,43,1600,1599,1586,1585,0,3,2,7,8,1600,1599,1586,1585,43,1500,1602,1603,1501,0,3,2,7,8,1500,1602,1603,1501,43,1602,1570,1580,1603,0,3,2,7,8,1602,1570,1580,1603,43,1603,1580,1579,1601,0,3,2,7,8,1603,1580,1579,1601,43,1501,1603,1601,1504,0,3,2,7,8,1501,1603,1601,1504,43,1604,1605,1606,1607,0,3,2,7,8,1604,1605,1606,1607,43,1605,1574,1571,1606,0,3,2,7,8,1605,1574,1571,1606,43,1606,1571,1570,1602,0,3,2,7,8,1606,1571,1570,1602,43,1602,1500,1607,1606,0,3,2,7,8,1602,1500,1607,1606,43,1574,1608,1609,1575,0,3,2,7,8,1574,1608,1609,1575,43,1608,1610,1611,1609,0,3,2,7,8,1608,1610,1611,1609,43,1609,1611,1612,1613,0,3,2,7,8,1609,1611,1612,1613,43,1575,1609,1613,1576,0,3,2,7,8,1575,1609,1613,1576,43,1614,1615,1616,1617,0,3,2,7,8,1614,1615,1616,1617,43,1615,1610,1608,1616,0,3,2,7,8,1615,1610,1608,1616,43,1616,1608,1574,1605,0,3,2,7,8,1616,1608,1574,1605,43,1617,1616,1605,1604,0,3,2,7,8,1617,1616,1605,1604,43,1618,1619,1620,1621,0,3,2,7,8,1618,1619,1620,1621,43,1619,1622,1623,1620,0,3,2,7,8,1619,1622,1623,1620,43,1620,1623,1564,1567,0,3,2,7,8,1620,1623,1564,1567,43,1621,1620,1567,1569,0,3,2,7,8,1621,1620,1567,1569,43,1624,1625,1626,1627,0,3,2,7,8,1624,1625,1626,1627,43,1625,1628,1629,1626,0,3,2,7,8,1625,1628,1629,1626,43,1626,1629,1630,1631,0,3,2,7,8,1626,1629,1630,1631,43,1627,1626,1631,1622,0,3,2,7,8,1627,1626,1631,1622,43,1632,1633,1634,1635,0,3,2,7,8,1632,1633,1634,1635,43,1633,1636,1637,1634,0,3,2,7,8,1633,1636,1637,1634,43,1634,1637,1628,1625,0,3,2,7,8,1634,1637,1628,1625,43,1635,1634,1625,1624,0,3,2,7,8,1635,1634,1625,1624,43,1638,1639,1640,1641,0,3,2,7,8,1638,1639,1640,1641,43,1639,1624,1627,1640,0,3,2,7,8,1639,1624,1627,1640,43,1640,1627,1622,1619,0,3,2,7,8,1640,1627,1622,1619,43,1641,1640,1619,1618,0,3,2,7,8,1641,1640,1619,1618,43,1632,1635,1642,1643,0,3,2,7,8,1632,1635,1642,1643,43,1635,1624,1639,1642,0,3,2,7,8,1635,1624,1639,1642,43,1642,1639,1638,1644,0,3,2,7,8,1642,1639,1638,1644,43,1643,1642,1644,1645,0,3,2,7,8,1643,1642,1644,1645,43,1550,1552,1646,1647,0,3,2,7,8,1550,1552,1646,1647,43,1552,1551,1648,1646,0,3,2,7,8,1552,1551,1648,1646,43,1646,1648,1649,1650,0,3,2,7,8,1646,1648,1649,1650,43,1647,1646,1650,1651,0,3,2,7,8,1647,1646,1650,1651,43,1651,1652,1653,1647,0,3,2,7,8,1651,1652,1653,1647,43,1652,1654,1655,1653,0,3,2,7,8,1652,1654,1655,1653,43,1653,1655,1508,1548,0,3,2,7,8,1653,1655,1508,1548,43,1647,1653,1548,1550,0,3,2,7,8,1647,1653,1548,1550,43,1614,1617,1656,1657,0,3,2,7,8,1614,1617,1656,1657,43,1617,1604,1658,1656,0,3,2,7,8,1617,1604,1658,1656,43,1656,1658,1654,1659,0,3,2,7,8,1656,1658,1654,1659,43,1657,1656,1659,1660,0,3,2,7,8,1657,1656,1659,1660,43,1654,1658,1661,1655,0,3,2,7,8,1654,1658,1661,1655,43,1658,1604,1607,1661,0,3,2,7,8,1658,1604,1607,1661,43,1500,1503,1661,1607,0,3,2,7,8,1500,1503,1661,1607,43,1655,1661,1503,1508,0,3,2,7,8,1655,1661,1503,1508,43,1651,1662,1663,1652,0,3,2,7,8,1651,1662,1663,1652,43,1662,1664,1665,1663,0,3,2,7,8,1662,1664,1665,1663,43,1663,1665,1660,1659,0,3,2,7,8,1663,1665,1660,1659,43,1652,1663,1659,1654,0,3,2,7,8,1652,1663,1659,1654,43,1649,1666,1667,1650,0,3,2,7,8,1649,1666,1667,1650,43,1666,1668,1669,1667,0,3,2,7,8,1666,1668,1669,1667,43,1667,1669,1664,1662,0,3,2,7,8,1667,1669,1664,1662,43,1650,1667,1662,1651,0,3,2,7,8,1650,1667,1662,1651,43,1628,1637,1670,1671,0,3,2,7,8,1628,1637,1670,1671,43,1637,1636,1672,1670,0,3,2,7,8,1637,1636,1672,1670,43,1670,1672,1673,1674,0,3,2,7,8,1670,1672,1673,1674,43,1671,1670,1674,1675,0,3,2,7,8,1671,1670,1674,1675,43,1675,1676,1677,1671,0,3,2,7,8,1675,1676,1677,1671,43,1676,1678,1679,1677,0,3,2,7,8,1676,1678,1679,1677,43,1677,1679,1630,1629,0,3,2,7,8,1677,1679,1630,1629,43,1671,1677,1629,1628,0,3,2,7,8,1671,1677,1629,1628,43,1678,1676,1680,1681,0,3,2,7,8,1678,1676,1680,1681,43,1676,1675,1682,1680,0,3,2,7,8,1676,1675,1682,1680,43,1680,1682,1668,1683,0,3,2,7,8,1680,1682,1668,1683,43,1681,1680,1683,1684,0,3,2,7,8,1681,1680,1683,1684,43,1555,1565,1685,1556,0,3,2,7,8,1555,1565,1685,1556,43,1565,1564,1686,1685,0,3,2,7,8,1565,1564,1686,1685,43,1685,1686,1687,1688,0,3,2,7,8,1685,1686,1687,1688,43,1556,1685,1688,1559,0,3,2,7,8,1556,1685,1688,1559,43,1564,1623,1689,1686,0,3,2,7,8,1564,1623,1689,1686,43,1623,1622,1631,1689,0,3,2,7,8,1623,1622,1631,1689,43,1689,1631,1630,1690,0,3,2,7,8,1689,1631,1630,1690,43,1686,1689,1690,1687,0,3,2,7,8,1686,1689,1690,1687,43,1630,1679,1691,1690,0,3,2,7,8,1630,1679,1691,1690,43,1679,1678,1681,1691,0,3,2,7,8,1679,1678,1681,1691,43,1691,1681,1684,1692,0,3,2,7,8,1691,1681,1684,1692,43,1690,1691,1692,1687,0,3,2,7,8,1690,1691,1692,1687,43,1544,1543,1693,1694,0,3,2,7,8,1544,1543,1693,1694,43,1543,1535,1534,1693,0,3,2,7,8,1543,1535,1534,1693,43,1693,1534,1533,1695,0,3,2,7,8,1693,1534,1533,1695,43,1694,1693,1695,1696,0,3,2,7,8,1694,1693,1695,1696,43,1533,1530,1697,1695,0,3,2,7,8,1533,1530,1697,1695,43,1530,1529,1698,1697,0,3,2,7,8,1530,1529,1698,1697,43,1697,1698,1699,1700,0,3,2,7,8,1697,1698,1699,1700,43,1695,1697,1700,1696,0,3,2,7,8,1695,1697,1700,1696,43,1699,1701,1702,1700,0,3,2,7,8,1699,1701,1702,1700,43,1701,1561,1560,1702,0,3,2,7,8,1701,1561,1560,1702,43,1702,1560,1559,1703,0,3,2,7,8,1702,1560,1559,1703,43,1700,1702,1703,1696,0,3,2,7,8,1700,1702,1703,1696,43,1649,1648,1704,1705,0,3,2,7,8,1649,1648,1704,1705,43,1648,1551,1554,1704,0,3,2,7,8,1648,1551,1554,1704,43,1704,1554,1544,1694,0,3,2,7,8,1704,1554,1544,1694,43,1705,1704,1694,1696,0,3,2,7,8,1705,1704,1694,1696,43,1559,1688,1706,1703,0,3,2,7,8,1559,1688,1706,1703,43,1688,1687,1692,1706,0,3,2,7,8,1688,1687,1692,1706,43,1706,1692,1684,1707,0,3,2,7,8,1706,1692,1684,1707,43,1703,1706,1707,1696,0,3,2,7,8,1703,1706,1707,1696,43,1684,1683,1708,1707,0,3,2,7,8,1684,1683,1708,1707,43,1683,1668,1666,1708,0,3,2,7,8,1683,1668,1666,1708,43,1708,1666,1649,1705,0,3,2,7,8,1708,1666,1649,1705,43,1707,1708,1705,1696,0,3,2,7,8,1707,1708,1705,1696,43,1675,1674,1709,1682,0,3,2,7,8,1675,1674,1709,1682,43,1674,1673,1710,1709,0,3,2,7,8,1674,1673,1710,1709,43,1709,1710,1664,1669,0,3,2,7,8,1709,1710,1664,1669,43,1682,1709,1669,1668,0,3,2,7,8,1682,1709,1669,1668,43,1673,1672,1711,1710,0,3,2,7,8,1673,1672,1711,1710,43,1672,1636,1633,1711,0,3,2,7,8,1672,1636,1633,1711,43,1711,1633,1632,1712,0,3,2,7,8,1711,1633,1632,1712,43,1710,1711,1712,1664,0,3,2,7,8,1710,1711,1712,1664,43,1664,1712,1713,1665,0,3,2,7,8,1664,1712,1713,1665,43,1712,1632,1643,1713,0,3,2,7,8,1712,1632,1643,1713,43,1713,1643,1645,1714,0,3,2,7,8,1713,1643,1645,1714,43,1665,1713,1714,1660,0,3,2,7,8,1665,1713,1714,1660,43,1715,1716,1717,1718,0,3,2,7,8,1715,1716,1717,1718,43,1716,1719,1720,1717,0,3,2,7,8,1716,1719,1720,1717,43,1717,1720,1721,1722,0,3,2,7,8,1717,1720,1721,1722,43,1718,1717,1722,1723,0,3,2,7,8,1718,1717,1722,1723,43,1724,1725,1726,1727,0,3,2,7,8,1724,1725,1726,1727,43,1725,1728,1729,1726,0,3,2,7,8,1725,1728,1729,1726,43,1726,1729,1730,1731,0,3,2,7,8,1726,1729,1730,1731,43,1727,1726,1731,1732,0,3,2,7,8,1727,1726,1731,1732,43,1724,1727,1733,1734,0,3,2,7,8,1724,1727,1733,1734,43,1727,1732,1735,1733,0,3,2,7,8,1727,1732,1735,1733,43,1733,1735,1715,1736,0,3,2,7,8,1733,1735,1715,1736,43,1734,1733,1736,1737,0,3,2,7,8,1734,1733,1736,1737,43,1738,1739,1740,1741,0,3,2,7,8,1738,1739,1740,1741,43,1739,1728,1725,1740,0,3,2,7,8,1739,1728,1725,1740,43,1740,1725,1724,1742,0,3,2,7,8,1740,1725,1724,1742,43,1741,1740,1742,1743,0,3,2,7,8,1741,1740,1742,1743,43,1744,1745,1746,1747,0,3,2,7,8,1744,1745,1746,1747,43,1745,1748,1749,1746,0,3,2,7,8,1745,1748,1749,1746,43,1746,1749,1750,1751,0,3,2,7,8,1746,1749,1750,1751,43,1747,1746,1751,1752,0,3,2,7,8,1747,1746,1751,1752,43,1738,1741,1753,1754,0,3,2,7,8,1738,1741,1753,1754,43,1741,1743,1755,1753,0,3,2,7,8,1741,1743,1755,1753,43,1753,1755,1744,1747,0,3,2,7,8,1753,1755,1744,1747,43,1754,1753,1747,1752,0,3,2,7,8,1754,1753,1747,1752,43,1744,1755,1756,1757,0,3,2,7,8,1744,1755,1756,1757,43,1755,1743,1758,1756,0,3,2,7,8,1755,1743,1758,1756,43,1757,1756,1758,1759,0,3,2,7,8,1757,1756,1758,1759,43,1743,1742,1760,1758,0,3,2,7,8,1743,1742,1760,1758,43,1742,1724,1734,1760,0,3,2,7,8,1742,1724,1734,1760,43,1760,1734,1737,1761,0,3,2,7,8,1760,1734,1737,1761,43,1758,1760,1761,1759,0,3,2,7,8,1758,1760,1761,1759,43,1737,1736,1762,1763,0,3,2,7,8,1737,1736,1762,1763,43,1736,1715,1718,1762,0,3,2,7,8,1736,1715,1718,1762,43,1762,1718,1723,1764,0,3,2,7,8,1762,1718,1723,1764,43,1763,1762,1764,1765,0,3,2,7,8,1763,1762,1764,1765,43,1737,1763,1766,1761,0,3,2,7,8,1737,1763,1766,1761,43,1763,1765,1767,1766,0,3,2,7,8,1763,1765,1767,1766,43,1766,1767,1768,1769,0,3,2,7,8,1766,1767,1768,1769,43,1761,1766,1769,1759,0,3,2,7,8,1761,1766,1769,1759,43,1770,1771,1772,1773,0,3,2,7,8,1770,1771,1772,1773,43,1771,1774,1775,1772,0,3,2,7,8,1771,1774,1775,1772,43,1772,1775,1776,1777,0,3,2,7,8,1772,1775,1776,1777,43,1773,1772,1777,1778,0,3,2,7,8,1773,1772,1777,1778,43,1778,1777,1779,1780,0,3,2,7,8,1778,1777,1779,1780,43,1777,1776,1781,1779,0,3,2,7,8,1777,1776,1781,1779,43,1779,1781,1782,1783,0,3,2,7,8,1779,1781,1782,1783,43,1780,1779,1783,1784,0,3,2,7,8,1780,1779,1783,1784,43,1785,1786,1787,1788,0,3,2,7,8,1785,1786,1787,1788,43,1786,1789,1790,1787,0,3,2,7,8,1786,1789,1790,1787,43,1787,1790,1791,1792,0,3,2,7,8,1787,1790,1791,1792,43,1788,1787,1792,1793,0,3,2,7,8,1788,1787,1792,1793,43,1793,1792,1794,1795,0,3,2,7,8,1793,1792,1794,1795,43,1792,1791,1796,1794,0,3,2,7,8,1792,1791,1796,1794,43,1794,1796,1797,1798,0,3,2,7,8,1794,1796,1797,1798,43,1795,1794,1798,1799,0,3,2,7,8,1795,1794,1798,1799,43,1799,1798,1800,1801,0,3,2,7,8,1799,1798,1800,1801,43,1798,1797,1802,1800,0,3,2,7,8,1798,1797,1802,1800,43,1800,1802,1803,1804,0,3,2,7,8,1800,1802,1803,1804,43,1801,1800,1804,1805,0,3,2,7,8,1801,1800,1804,1805,43,1732,1731,1806,1807,0,3,2,7,8,1732,1731,1806,1807,43,1806,1731,1808,1809,0,3,2,7,8,1806,1731,1808,1809,43,1807,1806,1809,1810,0,3,2,7,8,1807,1806,1809,1810,43,1732,1807,1811,1735,0,3,2,7,8,1732,1807,1811,1735,43,1807,1810,1812,1811,0,3,2,7,8,1807,1810,1812,1811,43,1811,1812,1719,1716,0,3,2,7,8,1811,1812,1719,1716,43,1735,1811,1716,1715,0,3,2,7,8,1735,1811,1716,1715,43,1797,1813,1814,1802,0,3,2,7,8,1797,1813,1814,1802,43,1813,1719,1812,1814,0,3,2,7,8,1813,1719,1812,1814,43,1814,1812,1810,1815,0,3,2,7,8,1814,1812,1810,1815,43,1802,1814,1815,1803,0,3,2,7,8,1802,1814,1815,1803,43,1797,1796,1816,1813,0,3,2,7,8,1797,1796,1816,1813,43,1796,1791,1817,1816,0,3,2,7,8,1796,1791,1817,1816,43,1816,1817,1721,1720,0,3,2,7,8,1816,1817,1721,1720,43,1813,1816,1720,1719,0,3,2,7,8,1813,1816,1720,1719,43,1791,1790,1818,1817,0,3,2,7,8,1791,1790,1818,1817,43,1790,1789,1819,1818,0,3,2,7,8,1790,1789,1819,1818,43,1818,1819,1820,1821,0,3,2,7,8,1818,1819,1820,1821,43,1817,1818,1821,1721,0,3,2,7,8,1817,1818,1821,1721,43,1822,1823,1824,1825,0,3,2,7,8,1822,1823,1824,1825,43,1823,1826,1827,1824,0,3,2,7,8,1823,1826,1827,1824,43,1824,1827,1789,1786,0,3,2,7,8,1824,1827,1789,1786,43,1825,1824,1786,1785,0,3,2,7,8,1825,1824,1786,1785,43,1789,1827,1828,1819,0,3,2,7,8,1789,1827,1828,1819,43,1827,1826,1829,1828,0,3,2,7,8,1827,1826,1829,1828,43,1828,1829,1830,1831,0,3,2,7,8,1828,1829,1830,1831,43,1819,1828,1831,1820,0,3,2,7,8,1819,1828,1831,1820,43,1782,1832,1833,1783,0,3,2,7,8,1782,1832,1833,1783,43,1832,1834,1835,1833,0,3,2,7,8,1832,1834,1835,1833,43,1833,1835,1836,1837,0,3,2,7,8,1833,1835,1836,1837,43,1783,1833,1837,1784,0,3,2,7,8,1783,1833,1837,1784,43,1838,1839,1840,1841,0,3,2,7,8,1838,1839,1840,1841,43,1839,1842,1843,1840,0,3,2,7,8,1839,1842,1843,1840,43,1840,1843,1844,1845,0,3,2,7,8,1840,1843,1844,1845,43,1841,1840,1845,1834,0,3,2,7,8,1841,1840,1845,1834,43,1842,1846,1847,1843,0,3,2,7,8,1842,1846,1847,1843,43,1846,1848,1849,1847,0,3,2,7,8,1846,1848,1849,1847,43,1847,1849,1850,1851,0,3,2,7,8,1847,1849,1850,1851,43,1843,1847,1851,1844,0,3,2,7,8,1843,1847,1851,1844,43,1834,1845,1852,1835,0,3,2,7,8,1834,1845,1852,1835,43,1845,1844,1853,1852,0,3,2,7,8,1845,1844,1853,1852,43,1852,1853,1854,1855,0,3,2,7,8,1852,1853,1854,1855,43,1835,1852,1855,1836,0,3,2,7,8,1835,1852,1855,1836,43,1854,1853,1856,1857,0,3,2,7,8,1854,1853,1856,1857,43,1853,1844,1851,1856,0,3,2,7,8,1853,1844,1851,1856,43,1856,1851,1850,1858,0,3,2,7,8,1856,1851,1850,1858,43,1857,1856,1858,1859,0,3,2,7,8,1857,1856,1858,1859,43,1860,1861,1862,1863,0,3,2,7,8,1860,1861,1862,1863,43,1861,1768,1767,1862,0,3,2,7,8,1861,1768,1767,1862,43,1862,1767,1765,1864,0,3,2,7,8,1862,1767,1765,1864,43,1863,1862,1864,1865,0,3,2,7,8,1863,1862,1864,1865,43,1723,1866,1867,1764,0,3,2,7,8,1723,1866,1867,1764,43,1866,1868,1869,1867,0,3,2,7,8,1866,1868,1869,1867,43,1867,1869,1865,1864,0,3,2,7,8,1867,1869,1865,1864,43,1764,1867,1864,1765,0,3,2,7,8,1764,1867,1864,1765,43,1868,1870,1871,1872,0,3,2,7,8,1868,1870,1871,1872,43,1870,1820,1831,1871,0,3,2,7,8,1870,1820,1831,1871,43,1871,1831,1830,1873,0,3,2,7,8,1871,1831,1830,1873,43,1872,1871,1873,1874,0,3,2,7,8,1872,1871,1873,1874,43,1721,1821,1875,1722,0,3,2,7,8,1721,1821,1875,1722,43,1821,1820,1870,1875,0,3,2,7,8,1821,1820,1870,1875,43,1875,1870,1868,1866,0,3,2,7,8,1875,1870,1868,1866,43,1722,1875,1866,1723,0,3,2,7,8,1722,1875,1866,1723,43,1874,1876,1877,1872,0,3,2,7,8,1874,1876,1877,1872,43,1876,1878,1879,1877,0,3,2,7,8,1876,1878,1879,1877,43,1877,1879,1865,1869,0,3,2,7,8,1877,1879,1865,1869,43,1872,1877,1869,1868,0,3,2,7,8,1872,1877,1869,1868,43,1878,1880,1881,1879,0,3,2,7,8,1878,1880,1881,1879,43,1880,1882,1883,1881,0,3,2,7,8,1880,1882,1883,1881,43,1881,1883,1860,1863,0,3,2,7,8,1881,1883,1860,1863,43,1879,1881,1863,1865,0,3,2,7,8,1879,1881,1863,1865,43,1884,1885,1886,1887,0,3,2,7,8,1884,1885,1886,1887,43,1885,1848,1846,1886,0,3,2,7,8,1885,1848,1846,1886,43,1886,1846,1842,1888,0,3,2,7,8,1886,1846,1842,1888,43,1887,1886,1888,1889,0,3,2,7,8,1887,1886,1888,1889,43,1838,1890,1891,1839,0,3,2,7,8,1838,1890,1891,1839,43,1890,1892,1893,1891,0,3,2,7,8,1890,1892,1893,1891,43,1891,1893,1889,1888,0,3,2,7,8,1891,1893,1889,1888,43,1839,1891,1888,1842,0,3,2,7,8,1839,1891,1888,1842,43,1882,1894,1895,1896,0,3,2,7,8,1882,1894,1895,1896,43,1894,1889,1893,1895,0,3,2,7,8,1894,1889,1893,1895,43,1895,1893,1892,1897,0,3,2,7,8,1895,1893,1892,1897,43,1896,1895,1897,1898,0,3,2,7,8,1896,1895,1897,1898,43,1899,1900,1901,1902,0,3,2,7,8,1899,1900,1901,1902,43,1900,1782,1781,1901,0,3,2,7,8,1900,1782,1781,1901,43,1901,1781,1776,1775,0,3,2,7,8,1901,1781,1776,1775,43,1902,1901,1775,1774,0,3,2,7,8,1902,1901,1775,1774,43,1838,1841,1903,1904,0,3,2,7,8,1838,1841,1903,1904,43,1841,1834,1832,1903,0,3,2,7,8,1841,1834,1832,1903,43,1903,1832,1782,1900,0,3,2,7,8,1903,1832,1782,1900,43,1904,1903,1900,1899,0,3,2,7,8,1904,1903,1900,1899,43,1898,1897,1905,1906,0,3,2,7,8,1898,1897,1905,1906,43,1897,1892,1890,1905,0,3,2,7,8,1897,1892,1890,1905,43,1905,1890,1838,1904,0,3,2,7,8,1905,1890,1838,1904,43,1906,1905,1904,1899,0,3,2,7,8,1906,1905,1904,1899,43,1748,1745,1907,1908,0,3,2,7,8,1748,1745,1907,1908,43,1745,1744,1757,1907,0,3,2,7,8,1745,1744,1757,1907,43,1907,1757,1759,1909,0,3,2,7,8,1907,1757,1759,1909,43,1908,1907,1909,1910,0,3,2,7,8,1908,1907,1909,1910,43,1911,1912,1913,1914,0,3,2,7,8,1911,1912,1913,1914,43,1912,1750,1749,1913,0,3,2,7,8,1912,1750,1749,1913,43,1913,1749,1748,1908,0,3,2,7,8,1913,1749,1748,1908,43,1914,1913,1908,1910,0,3,2,7,8,1914,1913,1908,1910,43,1774,1771,1915,1916,0,3,2,7,8,1774,1771,1915,1916,43,1771,1770,1917,1915,0,3,2,7,8,1771,1770,1917,1915,43,1915,1917,1911,1914,0,3,2,7,8,1915,1917,1911,1914,43,1916,1915,1914,1910,0,3,2,7,8,1916,1915,1914,1910,43,1759,1769,1918,1909,0,3,2,7,8,1759,1769,1918,1909,43,1769,1768,1861,1918,0,3,2,7,8,1769,1768,1861,1918,43,1918,1861,1860,1919,0,3,2,7,8,1918,1861,1860,1919,43,1909,1918,1919,1910,0,3,2,7,8,1909,1918,1919,1910,43,1898,1906,1920,1921,0,3,2,7,8,1898,1906,1920,1921,43,1906,1899,1902,1920,0,3,2,7,8,1906,1899,1902,1920,43,1920,1902,1774,1916,0,3,2,7,8,1920,1902,1774,1916,43,1921,1920,1916,1910,0,3,2,7,8,1921,1920,1916,1910,43,1860,1883,1922,1919,0,3,2,7,8,1860,1883,1922,1919,43,1883,1882,1896,1922,0,3,2,7,8,1883,1882,1896,1922,43,1922,1896,1898,1921,0,3,2,7,8,1922,1896,1898,1921,43,1919,1922,1921,1910,0,3,2,7,8,1919,1922,1921,1910,43,1878,1923,1924,1880,0,3,2,7,8,1878,1923,1924,1880,43,1923,1884,1887,1924,0,3,2,7,8,1923,1884,1887,1924,43,1924,1887,1889,1894,0,3,2,7,8,1924,1887,1889,1894,43,1880,1924,1894,1882,0,3,2,7,8,1880,1924,1894,1882,43,1850,1849,1925,1926,0,3,2,7,8,1850,1849,1925,1926,43,1849,1848,1885,1925,0,3,2,7,8,1849,1848,1885,1925,43,1925,1885,1884,1923,0,3,2,7,8,1925,1885,1884,1923,43,1926,1925,1923,1878,0,3,2,7,8,1926,1925,1923,1878,43,1859,1858,1927,1928,0,3,2,7,8,1859,1858,1927,1928,43,1858,1850,1926,1927,0,3,2,7,8,1858,1850,1926,1927,43,1927,1926,1878,1876,0,3,2,7,8,1927,1926,1878,1876,43,1928,1927,1876,1874,0,3,2,7,8,1928,1927,1876,1874,43,1929,1930,1931,1932,0,3,2,7,8,1929,1930,1931,1932,43,1930,1933,1934,1931,0,3,2,7,8,1930,1933,1934,1931,43,1932,1931,1934,1935,0,3,2,7,8,1932,1931,1934,1935,43,1936,1937,1938,1939,0,3,2,7,8,1936,1937,1938,1939,43,1937,1940,1941,1938,0,3,2,7,8,1937,1940,1941,1938,43,1938,1941,1942,1943,0,3,2,7,8,1938,1941,1942,1943,43,1939,1938,1943,1944,0,3,2,7,8,1939,1938,1943,1944,43,412,1945,1946,416,0,3,2,7,8,412,1945,1946,416,43,1945,1936,1939,1946,0,3,2,7,8,1945,1936,1939,1946,43,1946,1939,1944,1947,0,3,2,7,8,1946,1939,1944,1947,43,416,1946,1947,418,0,3,2,7,8,416,1946,1947,418,43,403,1948,1949,410,0,3,2,7,8,403,1948,1949,410,43,1948,1933,1950,1949,0,3,2,7,8,1948,1933,1950,1949,43,1949,1950,1936,1945,0,3,2,7,8,1949,1950,1936,1945,43,410,1949,1945,412,0,3,2,7,8,410,1949,1945,412,43,1933,1930,1951,1950,0,3,2,7,8,1933,1930,1951,1950,43,1930,1929,1952,1951,0,3,2,7,8,1930,1929,1952,1951,43,1951,1952,1940,1937,0,3,2,7,8,1951,1952,1940,1937,43,1950,1951,1937,1936,0,3,2,7,8,1950,1951,1937,1936,43,1942,1953,1954,1955,0,3,2,7,8,1942,1953,1954,1955,43,1953,292,317,1954,0,3,2,7,8,1953,292,317,1954,43,1954,317,316,1956,0,3,2,7,8,1954,317,316,1956,43,1955,1954,1956,1957,0,3,2,7,8,1955,1954,1956,1957,43,1942,1941,1958,1953,0,3,2,7,8,1942,1941,1958,1953,43,1941,1940,1959,1958,0,3,2,7,8,1941,1940,1959,1958,43,1958,1959,294,293,0,3,2,7,8,1958,1959,294,293,43,1953,1958,293,292,0,3,2,7,8,1953,1958,293,292,43,1940,1952,1960,1959,0,3,2,7,8,1940,1952,1960,1959,43,1952,1929,1961,1960,0,3,2,7,8,1952,1929,1961,1960,43,1960,1961,321,320,0,3,2,7,8,1960,1961,321,320,43,1959,1960,320,294,0,3,2,7,8,1959,1960,320,294,43,1929,1932,1962,1961,0,3,2,7,8,1929,1932,1962,1961,43,1932,1935,1963,1962,0,3,2,7,8,1932,1935,1963,1962,43,1962,1963,397,396,0,3,2,7,8,1962,1963,397,396,43,1961,1962,396,321,0,3,2,7,8,1961,1962,396,321,43,397,1963,1964,402,0,3,2,7,8,397,1963,1964,402,43,1963,1935,1934,1964,0,3,2,7,8,1963,1935,1934,1964,43,1964,1934,1933,1948,0,3,2,7,8,1964,1934,1933,1948,43,402,1964,1948,403,0,3,2,7,8,402,1964,1948,403,43,1965,1966,1967,1968,0,3,2,7,8,1965,1966,1967,1968,43,1966,1969,1970,1967,0,3,2,7,8,1966,1969,1970,1967,43,1967,1970,1971,1972,0,3,2,7,8,1967,1970,1971,1972,43,1968,1967,1972,1973,0,3,2,7,8,1968,1967,1972,1973,43,492,494,1974,1975,0,3,2,7,8,492,494,1974,1975,43,494,475,1976,1974,0,3,2,7,8,494,475,1976,1974,43,1974,1976,1977,1978,0,3,2,7,8,1974,1976,1977,1978,43,1975,1974,1978,1979,0,3,2,7,8,1975,1974,1978,1979,43,485,488,1980,1981,0,3,2,7,8,485,488,1980,1981,43,488,492,1975,1980,0,3,2,7,8,488,492,1975,1980,43,1980,1975,1979,1982,0,3,2,7,8,1980,1975,1979,1982,43,1981,1980,1982,1969,0,3,2,7,8,1981,1980,1982,1969,43,480,1983,1984,478,0,3,2,7,8,480,1983,1984,478,43,1983,1985,1986,1984,0,3,2,7,8,1983,1985,1986,1984,43,1984,1986,1977,1976,0,3,2,7,8,1984,1986,1977,1976,43,478,1984,1976,475,0,3,2,7,8,478,1984,1976,475,43,1987,1988,1989,1990,0,3,2,7,8,1987,1988,1989,1990,43,1988,305,329,1989,0,3,2,7,8,1988,305,329,1989,43,1989,329,333,1991,0,3,2,7,8,1989,329,333,1991,43,1990,1989,1991,1992,0,3,2,7,8,1990,1989,1991,1992,43,333,664,1993,1991,0,3,2,7,8,333,664,1993,1991,43,664,667,1994,1993,0,3,2,7,8,664,667,1994,1993,43,1993,1994,1995,1996,0,3,2,7,8,1993,1994,1995,1996,43,1991,1993,1996,1992,0,3,2,7,8,1991,1993,1996,1992,43,1997,1998,1999,2000,0,3,2,7,8,1997,1998,1999,2000,43,1998,1985,1983,1999,0,3,2,7,8,1998,1985,1983,1999,43,1999,1983,480,500,0,3,2,7,8,1999,1983,480,500,43,2000,1999,500,497,0,3,2,7,8,2000,1999,500,497,43,497,496,2001,2000,0,3,2,7,8,497,496,2001,2000,43,496,425,2002,2001,0,3,2,7,8,496,425,2002,2001,43,2001,2002,2003,2004,0,3,2,7,8,2001,2002,2003,2004,43,2000,2001,2004,1997,0,3,2,7,8,2000,2001,2004,1997,43,1957,1956,2005,2006,0,3,2,7,8,1957,1956,2005,2006,43,1956,316,314,2005,0,3,2,7,8,1956,316,314,2005,43,2005,314,306,2007,0,3,2,7,8,2005,314,306,2007,43,2006,2005,2007,2008,0,3,2,7,8,2006,2005,2007,2008,43,1987,2009,2010,1988,0,3,2,7,8,1987,2009,2010,1988,43,2009,2008,2007,2010,0,3,2,7,8,2009,2008,2007,2010,43,2010,2007,306,309,0,3,2,7,8,2010,2007,306,309,43,1988,2010,309,305,0,3,2,7,8,1988,2010,309,305,43,425,424,2011,2002,0,3,2,7,8,425,424,2011,2002,43,424,420,2012,2011,0,3,2,7,8,424,420,2012,2011,43,2011,2012,2013,2014,0,3,2,7,8,2011,2012,2013,2014,43,2002,2011,2014,2003,0,3,2,7,8,2002,2011,2014,2003,43,420,419,2015,2012,0,3,2,7,8,420,419,2015,2012,43,419,418,1947,2015,0,3,2,7,8,419,418,1947,2015,43,2015,1947,1944,2016,0,3,2,7,8,2015,1947,1944,2016,43,2012,2015,2016,2013,0,3,2,7,8,2012,2015,2016,2013,43,2013,2016,2017,2018,0,3,2,7,8,2013,2016,2017,2018,43,2016,1944,1943,2017,0,3,2,7,8,2016,1944,1943,2017,43,2017,1943,1942,1955,0,3,2,7,8,2017,1943,1942,1955,43,2018,2017,1955,1957,0,3,2,7,8,2018,2017,1955,1957,43,2003,2014,2019,2020,0,3,2,7,8,2003,2014,2019,2020,43,2014,2013,2018,2019,0,3,2,7,8,2014,2013,2018,2019,43,2019,2018,1957,2006,0,3,2,7,8,2019,2018,1957,2006,43,2020,2019,2006,2008,0,3,2,7,8,2020,2019,2006,2008,43,2003,2020,2021,2004,0,3,2,7,8,2003,2020,2021,2004,43,2020,2008,2009,2021,0,3,2,7,8,2020,2008,2009,2021,43,2021,2009,1987,2022,0,3,2,7,8,2021,2009,1987,2022,43,2004,2021,2022,1997,0,3,2,7,8,2004,2021,2022,1997,43,1992,2023,2024,1990,0,3,2,7,8,1992,2023,2024,1990,43,2023,1985,1998,2024,0,3,2,7,8,2023,1985,1998,2024,43,2024,1998,1997,2022,0,3,2,7,8,2024,1998,1997,2022,43,1990,2024,2022,1987,0,3,2,7,8,1990,2024,2022,1987,43,1977,1986,2025,2026,0,3,2,7,8,1977,1986,2025,2026,43,1986,1985,2023,2025,0,3,2,7,8,1986,1985,2023,2025,43,2026,2025,2023,1992,0,3,2,7,8,2026,2025,2023,1992,43,1979,1978,2027,2028,0,3,2,7,8,1979,1978,2027,2028,43,1978,1977,2026,2027,0,3,2,7,8,1978,1977,2026,2027,43,2027,2026,1992,1996,0,3,2,7,8,2027,2026,1992,1996,43,2028,2027,1996,1995,0,3,2,7,8,2028,2027,1996,1995,43,1971,1970,2029,2030,0,3,2,7,8,1971,1970,2029,2030,43,1970,1969,1982,2029,0,3,2,7,8,1970,1969,1982,2029,43,2029,1982,1979,2028,0,3,2,7,8,2029,1982,1979,2028,43,2030,2029,2028,1995,0,3,2,7,8,2030,2029,2028,1995,43,1973,1972,2031,2032,0,3,2,7,8,1973,1972,2031,2032,43,1972,1971,2033,2031,0,3,2,7,8,1972,1971,2033,2031,43,2031,2033,672,674,0,3,2,7,8,2031,2033,672,674,43,2032,2031,674,676,0,3,2,7,8,2032,2031,674,676,43,672,2033,2034,670,0,3,2,7,8,672,2033,2034,670,43,2033,1971,2030,2034,0,3,2,7,8,2033,1971,2030,2034,43,2034,2030,1995,1994,0,3,2,7,8,2034,2030,1995,1994,43,670,2034,1994,667,0,3,2,7,8,670,2034,1994,667,43,1965,2035,2036,1966,0,3,2,7,8,1965,2035,2036,1966,43,2035,504,503,2036,0,3,2,7,8,2035,504,503,2036,43,2036,503,485,1981,0,3,2,7,8,2036,503,485,1981,43,1966,2036,1981,1969,0,3,2,7,8,1966,2036,1981,1969,43,2037,2038,2039,2040,0,3,2,7,8,2037,2038,2039,2040,43,2038,2041,2042,2039,0,3,2,7,8,2038,2041,2042,2039,43,2040,2039,2042,2043,0,3,2,7,8,2040,2039,2042,2043,43,2044,2045,2046,2047,0,3,2,7,8,2044,2045,2046,2047,43,2045,2048,2049,2046,0,3,2,7,8,2045,2048,2049,2046,43,2046,2049,2050,2051,0,3,2,7,8,2046,2049,2050,2051,43,2047,2046,2051,2052,0,3,2,7,8,2047,2046,2051,2052,43,2052,2051,2053,2054,0,3,2,7,8,2052,2051,2053,2054,43,2051,2050,2055,2053,0,3,2,7,8,2051,2050,2055,2053,43,2053,2055,1172,1179,0,3,2,7,8,2053,2055,1172,1179,43,2054,2053,1179,1178,0,3,2,7,8,2054,2053,1179,1178,43,2050,2056,2057,2055,0,3,2,7,8,2050,2056,2057,2055,43,2056,2037,2058,2057,0,3,2,7,8,2056,2037,2058,2057,43,2057,2058,1161,1173,0,3,2,7,8,2057,2058,1161,1173,43,2055,2057,1173,1172,0,3,2,7,8,2055,2057,1173,1172,43,2048,2059,2060,2049,0,3,2,7,8,2048,2059,2060,2049,43,2059,2041,2038,2060,0,3,2,7,8,2059,2041,2038,2060,43,2060,2038,2037,2056,0,3,2,7,8,2060,2038,2037,2056,43,2049,2060,2056,2050,0,3,2,7,8,2049,2060,2056,2050,43,1074,1072,2061,2062,0,3,2,7,8,1074,1072,2061,2062,43,1072,1050,2063,2061,0,3,2,7,8,1072,1050,2063,2061,43,2061,2063,2044,2064,0,3,2,7,8,2061,2063,2044,2064,43,2062,2061,2064,2065,0,3,2,7,8,2062,2061,2064,2065,43,1046,2066,2067,1047,0,3,2,7,8,1046,2066,2067,1047,43,2066,2048,2045,2067,0,3,2,7,8,2066,2048,2045,2067,43,2067,2045,2044,2063,0,3,2,7,8,2067,2045,2044,2063,43,1047,2067,2063,1050,0,3,2,7,8,1047,2067,2063,1050,43,1076,2068,2069,1077,0,3,2,7,8,1076,2068,2069,1077,43,2068,2041,2059,2069,0,3,2,7,8,2068,2041,2059,2069,43,2069,2059,2048,2066,0,3,2,7,8,2069,2059,2048,2066,43,1077,2069,2066,1046,0,3,2,7,8,1077,2069,2066,1046,43,1155,2070,2071,1153,0,3,2,7,8,1155,2070,2071,1153,43,2070,2043,2042,2071,0,3,2,7,8,2070,2043,2042,2071,43,2071,2042,2041,2068,0,3,2,7,8,2071,2042,2041,2068,43,1153,2071,2068,1076,0,3,2,7,8,1153,2071,2068,1076,43,2037,2040,2072,2058,0,3,2,7,8,2037,2040,2072,2058,43,2040,2043,2070,2072,0,3,2,7,8,2040,2043,2070,2072,43,2072,2070,1155,1157,0,3,2,7,8,2072,2070,1155,1157,43,2058,2072,1157,1161,0,3,2,7,8,2058,2072,1157,1161,43,2073,2074,2075,2076,0,3,2,7,8,2073,2074,2075,2076,43,2074,2077,2078,2075,0,3,2,7,8,2074,2077,2078,2075,43,2075,2078,1965,1968,0,3,2,7,8,2075,2078,1965,1968,43,2076,2075,1968,1973,0,3,2,7,8,2076,2075,1968,1973,43,2079,2080,2081,2082,0,3,2,7,8,2079,2080,2081,2082,43,2080,1236,1252,2081,0,3,2,7,8,2080,1236,1252,2081,43,2081,1252,1250,2083,0,3,2,7,8,2081,1252,1250,2083,43,2082,2081,2083,2084,0,3,2,7,8,2082,2081,2083,2084,43,2084,2083,2085,2086,0,3,2,7,8,2084,2083,2085,2086,43,2083,1250,1249,2085,0,3,2,7,8,2083,1250,1249,2085,43,2085,1249,1248,2087,0,3,2,7,8,2085,1249,1248,2087,43,2086,2085,2087,2077,0,3,2,7,8,2086,2085,2087,2077,43,2079,2088,2089,2080,0,3,2,7,8,2079,2088,2089,2080,43,2088,2090,2091,2089,0,3,2,7,8,2088,2090,2091,2089,43,2089,2091,1238,1237,0,3,2,7,8,2089,2091,1238,1237,43,2080,2089,1237,1236,0,3,2,7,8,2080,2089,1237,1236,43,1091,1090,2092,2093,0,3,2,7,8,1091,1090,2092,2093,43,1090,1063,2094,2092,0,3,2,7,8,1090,1063,2094,2092,43,2092,2094,2095,2096,0,3,2,7,8,2092,2094,2095,2096,43,2093,2092,2096,2097,0,3,2,7,8,2093,2092,2096,2097,43,2098,2099,2100,2101,0,3,2,7,8,2098,2099,2100,2101,43,2099,1403,1402,2100,0,3,2,7,8,2099,1403,1402,2100,43,2100,1402,1091,2093,0,3,2,7,8,2100,1402,1091,2093,43,2101,2100,2093,2097,0,3,2,7,8,2101,2100,2093,2097,43,1238,2091,2102,1258,0,3,2,7,8,1238,2091,2102,1258,43,2091,2090,2103,2102,0,3,2,7,8,2091,2090,2103,2102,43,2102,2103,2104,2105,0,3,2,7,8,2102,2103,2104,2105,43,1258,2102,2105,1253,0,3,2,7,8,1258,2102,2105,1253,43,2106,2107,2108,2109,0,3,2,7,8,2106,2107,2108,2109,43,2107,1180,1254,2108,0,3,2,7,8,2107,1180,1254,2108,43,2108,1254,1253,2105,0,3,2,7,8,2108,1254,1253,2105,43,2109,2108,2105,2104,0,3,2,7,8,2109,2108,2105,2104,43,1067,1075,2110,2111,0,3,2,7,8,1067,1075,2110,2111,43,1075,1074,2062,2110,0,3,2,7,8,1075,1074,2062,2110,43,2110,2062,2065,2112,0,3,2,7,8,2110,2062,2065,2112,43,2111,2110,2112,2113,0,3,2,7,8,2111,2110,2112,2113,43,1067,2111,2114,1068,0,3,2,7,8,1067,2111,2114,1068,43,2111,2113,2115,2114,0,3,2,7,8,2111,2113,2115,2114,43,2114,2115,2095,2094,0,3,2,7,8,2114,2115,2095,2094,43,1068,2114,2094,1063,0,3,2,7,8,1068,2114,2094,1063,43,2116,2117,2118,2119,0,3,2,7,8,2116,2117,2118,2119,43,2117,1174,1181,2118,0,3,2,7,8,2117,1174,1181,2118,43,2118,1181,1180,2107,0,3,2,7,8,2118,1181,1180,2107,43,2119,2118,2107,2106,0,3,2,7,8,2119,2118,2107,2106,43,2052,2054,2120,2121,0,3,2,7,8,2052,2054,2120,2121,43,2054,1178,1175,2120,0,3,2,7,8,2054,1178,1175,2120,43,2120,1175,1174,2117,0,3,2,7,8,2120,1175,1174,2117,43,2121,2120,2117,2116,0,3,2,7,8,2121,2120,2117,2116,43,2044,2047,2122,2064,0,3,2,7,8,2044,2047,2122,2064,43,2047,2052,2121,2122,0,3,2,7,8,2047,2052,2121,2122,43,2122,2121,2116,2123,0,3,2,7,8,2122,2121,2116,2123,43,2064,2122,2123,2065,0,3,2,7,8,2064,2122,2123,2065,43,2065,2123,2124,2112,0,3,2,7,8,2065,2123,2124,2112,43,2123,2116,2119,2124,0,3,2,7,8,2123,2116,2119,2124,43,2124,2119,2106,2125,0,3,2,7,8,2124,2119,2106,2125,43,2112,2124,2125,2113,0,3,2,7,8,2112,2124,2125,2113,43,2095,2115,2126,2127,0,3,2,7,8,2095,2115,2126,2127,43,2115,2113,2125,2126,0,3,2,7,8,2115,2113,2125,2126,43,2126,2125,2106,2109,0,3,2,7,8,2126,2125,2106,2109,43,2127,2126,2109,2104,0,3,2,7,8,2127,2126,2109,2104,43,2104,2103,2128,2127,0,3,2,7,8,2104,2103,2128,2127,43,2103,2090,2129,2128,0,3,2,7,8,2103,2090,2129,2128,43,2128,2129,2097,2096,0,3,2,7,8,2128,2129,2097,2096,43,2127,2128,2096,2095,0,3,2,7,8,2127,2128,2096,2095,43,2090,2088,2130,2129,0,3,2,7,8,2090,2088,2130,2129,43,2088,2079,2131,2130,0,3,2,7,8,2088,2079,2131,2130,43,2129,2130,2131,2097,0,3,2,7,8,2129,2130,2131,2097,43,2097,2131,2132,2101,0,3,2,7,8,2097,2131,2132,2101,43,2131,2079,2082,2132,0,3,2,7,8,2131,2079,2082,2132,43,2132,2082,2084,2133,0,3,2,7,8,2132,2082,2084,2133,43,2101,2132,2133,2098,0,3,2,7,8,2101,2132,2133,2098,43,2084,2086,2134,2133,0,3,2,7,8,2084,2086,2134,2133,43,2086,2077,2074,2134,0,3,2,7,8,2086,2077,2074,2134,43,2134,2074,2073,2135,0,3,2,7,8,2134,2074,2073,2135,43,2133,2134,2135,2098,0,3,2,7,8,2133,2134,2135,2098,43,1408,2136,2137,1410,0,3,2,7,8,1408,2136,2137,1410,43,2136,2073,2076,2137,0,3,2,7,8,2136,2073,2076,2137,43,2137,2076,1973,2032,0,3,2,7,8,2137,2076,1973,2032,43,1410,2137,2032,676,0,3,2,7,8,1410,2137,2032,676,43,2098,2135,2138,2099,0,3,2,7,8,2098,2135,2138,2099,43,2135,2073,2136,2138,0,3,2,7,8,2135,2073,2136,2138,43,2138,2136,1408,1407,0,3,2,7,8,2138,2136,1408,1407,43,2099,2138,1407,1403,0,3,2,7,8,2099,2138,1407,1403,43,1248,1259,2139,2087,0,3,2,7,8,1248,1259,2139,2087,43,1259,504,2035,2139,0,3,2,7,8,1259,504,2035,2139,43,2139,2035,1965,2078,0,3,2,7,8,2139,2035,1965,2078,43,2087,2139,2078,2077,0,3,2,7,8,2087,2139,2078,2077,43,2140,2141,2142,2143,0,3,2,7,8,2140,2141,2142,2143,43,2141,2144,2145,2142,0,3,2,7,8,2141,2144,2145,2142,43,2142,2145,2146,2147,0,3,2,7,8,2142,2145,2146,2147,43,2143,2142,2147,771,0,3,2,7,8,2143,2142,2147,771,43,2148,2149,2150,2151,0,3,2,7,8,2148,2149,2150,2151,43,2149,2152,2153,2150,0,3,2,7,8,2149,2152,2153,2150,43,2150,2153,2154,2155,0,3,2,7,8,2150,2153,2154,2155,43,2151,2150,2155,2156,0,3,2,7,8,2151,2150,2155,2156,43,2156,2155,2157,2158,0,3,2,7,8,2156,2155,2157,2158,43,2155,2154,2159,2157,0,3,2,7,8,2155,2154,2159,2157,43,2157,2159,2146,2145,0,3,2,7,8,2157,2159,2146,2145,43,2158,2157,2145,2144,0,3,2,7,8,2158,2157,2145,2144,43,1513,2160,2161,1525,0,3,2,7,8,1513,2160,2161,1525,43,2160,2162,2163,2161,0,3,2,7,8,2160,2162,2163,2161,43,2161,2163,2164,2165,0,3,2,7,8,2161,2163,2164,2165,43,1525,2161,2165,1526,0,3,2,7,8,1525,2161,2165,1526,43,2162,2160,2166,2167,0,3,2,7,8,2162,2160,2166,2167,43,2160,1513,1510,2166,0,3,2,7,8,2160,1513,1510,2166,43,2166,1510,1509,1592,0,3,2,7,8,2166,1510,1509,1592,43,2167,2166,1592,1591,0,3,2,7,8,2167,2166,1592,1591,43,2162,2167,2168,2169,0,3,2,7,8,2162,2167,2168,2169,43,2167,1591,2170,2168,0,3,2,7,8,2167,1591,2170,2168,43,2168,2170,2171,2172,0,3,2,7,8,2168,2170,2171,2172,43,2169,2168,2172,2173,0,3,2,7,8,2169,2168,2172,2173,43,2174,2175,2176,2177,0,3,2,7,8,2174,2175,2176,2177,43,2175,2178,2179,2176,0,3,2,7,8,2175,2178,2179,2176,43,2176,2179,2180,2181,0,3,2,7,8,2176,2179,2180,2181,43,2177,2176,2181,2182,0,3,2,7,8,2177,2176,2181,2182,43,2183,2184,2185,2186,0,3,2,7,8,2183,2184,2185,2186,43,2184,2187,2188,2185,0,3,2,7,8,2184,2187,2188,2185,43,2185,2188,2174,2189,0,3,2,7,8,2185,2188,2174,2189,43,2186,2185,2189,2190,0,3,2,7,8,2186,2185,2189,2190,43,2191,2192,2193,2194,0,3,2,7,8,2191,2192,2193,2194,43,2192,2171,2195,2193,0,3,2,7,8,2192,2171,2195,2193,43,2193,2195,2196,2197,0,3,2,7,8,2193,2195,2196,2197,43,2194,2193,2197,2198,0,3,2,7,8,2194,2193,2197,2198,43,2178,2199,2200,2201,0,3,2,7,8,2178,2199,2200,2201,43,2199,2191,2194,2200,0,3,2,7,8,2199,2191,2194,2200,43,2200,2194,2198,2202,0,3,2,7,8,2200,2194,2198,2202,43,2201,2200,2202,2203,0,3,2,7,8,2201,2200,2202,2203,43,2173,2172,2204,2205,0,3,2,7,8,2173,2172,2204,2205,43,2172,2171,2192,2204,0,3,2,7,8,2172,2171,2192,2204,43,2204,2192,2191,2206,0,3,2,7,8,2204,2192,2191,2206,43,2205,2204,2206,2187,0,3,2,7,8,2205,2204,2206,2187,43,2187,2206,2207,2188,0,3,2,7,8,2187,2206,2207,2188,43,2206,2191,2199,2207,0,3,2,7,8,2206,2191,2199,2207,43,2207,2199,2178,2175,0,3,2,7,8,2207,2199,2178,2175,43,2188,2207,2175,2174,0,3,2,7,8,2188,2207,2175,2174,43,2190,2189,2208,2209,0,3,2,7,8,2190,2189,2208,2209,43,2189,2174,2177,2208,0,3,2,7,8,2189,2174,2177,2208,43,2208,2177,2182,2210,0,3,2,7,8,2208,2177,2182,2210,43,2209,2208,2210,2211,0,3,2,7,8,2209,2208,2210,2211,43,2212,2213,2214,2215,0,3,2,7,8,2212,2213,2214,2215,43,2213,2190,2209,2214,0,3,2,7,8,2213,2190,2209,2214,43,2214,2209,2211,2216,0,3,2,7,8,2214,2209,2211,2216,43,2215,2214,2216,2217,0,3,2,7,8,2215,2214,2216,2217,43,2218,2219,2220,2221,0,3,2,7,8,2218,2219,2220,2221,43,2219,2183,2186,2220,0,3,2,7,8,2219,2183,2186,2220,43,2220,2186,2190,2213,0,3,2,7,8,2220,2186,2190,2213,43,2221,2220,2213,2212,0,3,2,7,8,2221,2220,2213,2212,43,1529,1532,2222,2223,0,3,2,7,8,1529,1532,2222,2223,43,1532,1537,2224,2222,0,3,2,7,8,1532,1537,2224,2222,43,2222,2224,2225,2226,0,3,2,7,8,2222,2224,2225,2226,43,2223,2222,2226,2227,0,3,2,7,8,2223,2222,2226,2227,43,2228,2229,2230,2231,0,3,2,7,8,2228,2229,2230,2231,43,2229,2232,2233,2230,0,3,2,7,8,2229,2232,2233,2230,43,2230,2233,2227,2226,0,3,2,7,8,2230,2233,2227,2226,43,2231,2230,2226,2225,0,3,2,7,8,2231,2230,2226,2225,43,2164,2234,2235,2236,0,3,2,7,8,2164,2234,2235,2236,43,2234,2237,2238,2235,0,3,2,7,8,2234,2237,2238,2235,43,2235,2238,2228,2231,0,3,2,7,8,2235,2238,2228,2231,43,2236,2235,2231,2225,0,3,2,7,8,2236,2235,2231,2225,43,2232,2229,2239,2240,0,3,2,7,8,2232,2229,2239,2240,43,2229,2228,2241,2239,0,3,2,7,8,2229,2228,2241,2239,43,2239,2241,2218,2242,0,3,2,7,8,2239,2241,2218,2242,43,2240,2239,2242,2243,0,3,2,7,8,2240,2239,2242,2243,43,2228,2238,2244,2241,0,3,2,7,8,2228,2238,2244,2241,43,2238,2237,2245,2244,0,3,2,7,8,2238,2237,2245,2244,43,2244,2245,2183,2219,0,3,2,7,8,2244,2245,2183,2219,43,2241,2244,2219,2218,0,3,2,7,8,2241,2244,2219,2218,43,2173,2205,2246,2247,0,3,2,7,8,2173,2205,2246,2247,43,2205,2187,2184,2246,0,3,2,7,8,2205,2187,2184,2246,43,2246,2184,2183,2245,0,3,2,7,8,2246,2184,2183,2245,43,2247,2246,2245,2237,0,3,2,7,8,2247,2246,2245,2237,43,2164,2163,2248,2234,0,3,2,7,8,2164,2163,2248,2234,43,2163,2162,2169,2248,0,3,2,7,8,2163,2162,2169,2248,43,2248,2169,2173,2247,0,3,2,7,8,2248,2169,2173,2247,43,2234,2248,2247,2237,0,3,2,7,8,2234,2248,2247,2237,43,1537,1540,2249,2224,0,3,2,7,8,1537,1540,2249,2224,43,1540,1526,2165,2249,0,3,2,7,8,1540,1526,2165,2249,43,2249,2165,2164,2236,0,3,2,7,8,2249,2165,2164,2236,43,2224,2249,2236,2225,0,3,2,7,8,2224,2249,2236,2225,43,2182,2181,2250,2251,0,3,2,7,8,2182,2181,2250,2251,43,2181,2180,2252,2250,0,3,2,7,8,2181,2180,2252,2250,43,2250,2252,2253,2254,0,3,2,7,8,2250,2252,2253,2254,43,2251,2250,2254,2255,0,3,2,7,8,2251,2250,2254,2255,43,2256,2257,2258,2259,0,3,2,7,8,2256,2257,2258,2259,43,2257,2260,2261,2258,0,3,2,7,8,2257,2260,2261,2258,43,2258,2261,2262,2263,0,3,2,7,8,2258,2261,2262,2263,43,2259,2258,2263,2253,0,3,2,7,8,2259,2258,2263,2253,43,2264,2265,2266,2267,0,3,2,7,8,2264,2265,2266,2267,43,2265,2268,2269,2266,0,3,2,7,8,2265,2268,2269,2266,43,2266,2269,2260,2257,0,3,2,7,8,2266,2269,2260,2257,43,2267,2266,2257,2256,0,3,2,7,8,2267,2266,2257,2256,43,1585,1588,2270,2271,0,3,2,7,8,1585,1588,2270,2271,43,1588,1590,2272,2270,0,3,2,7,8,1588,1590,2272,2270,43,2270,2272,2273,2274,0,3,2,7,8,2270,2272,2273,2274,43,2271,2270,2274,2275,0,3,2,7,8,2271,2270,2274,2275,43,2217,2276,2277,2278,0,3,2,7,8,2217,2276,2277,2278,43,2276,2279,2280,2277,0,3,2,7,8,2276,2279,2280,2277,43,2277,2280,2281,2282,0,3,2,7,8,2277,2280,2281,2282,43,2278,2277,2282,2283,0,3,2,7,8,2278,2277,2282,2283,43,1699,1698,2284,1701,0,3,2,7,8,1699,1698,2284,1701,43,1698,1529,2223,2284,0,3,2,7,8,1698,1529,2223,2284,43,2284,2223,2227,2285,0,3,2,7,8,2284,2223,2227,2285,43,1701,2284,2285,1561,0,3,2,7,8,1701,2284,2285,1561,43,2227,2286,2287,2285,0,3,2,7,8,2227,2286,2287,2285,43,2286,2288,2289,2287,0,3,2,7,8,2286,2288,2289,2287,43,2285,2287,2289,1561,0,3,2,7,8,2285,2287,2289,1561,43,2290,2291,2292,2293,0,3,2,7,8,2290,2291,2292,2293,43,2291,2273,2294,2292,0,3,2,7,8,2291,2273,2294,2292,43,2292,2294,2295,2296,0,3,2,7,8,2292,2294,2295,2296,43,2293,2292,2296,2297,0,3,2,7,8,2293,2292,2296,2297,43,2298,2299,2300,2301,0,3,2,7,8,2298,2299,2300,2301,43,2299,1578,1577,2300,0,3,2,7,8,2299,1578,1577,2300,43,2300,1577,1576,2302,0,3,2,7,8,2300,1577,1576,2302,43,2301,2300,2302,2303,0,3,2,7,8,2301,2300,2302,2303,43,2304,2305,2306,2307,0,3,2,7,8,2304,2305,2306,2307,43,2305,2308,2309,2306,0,3,2,7,8,2305,2308,2309,2306,43,2306,2309,2281,2280,0,3,2,7,8,2306,2309,2281,2280,43,2307,2306,2280,2279,0,3,2,7,8,2307,2306,2280,2279,43,2298,2301,2310,2311,0,3,2,7,8,2298,2301,2310,2311,43,2301,2303,2312,2310,0,3,2,7,8,2301,2303,2312,2310,43,2310,2312,2313,2314,0,3,2,7,8,2310,2312,2313,2314,43,2311,2310,2314,2315,0,3,2,7,8,2311,2310,2314,2315,43,2152,2316,2317,2318,0,3,2,7,8,2152,2316,2317,2318,43,2316,2319,2320,2317,0,3,2,7,8,2316,2319,2320,2317,43,2317,2320,2321,2322,0,3,2,7,8,2317,2320,2321,2322,43,2318,2317,2322,2323,0,3,2,7,8,2318,2317,2322,2323,43,2324,2325,2326,2327,0,3,2,7,8,2324,2325,2326,2327,43,2325,2328,2329,2326,0,3,2,7,8,2325,2328,2329,2326,43,2327,2326,2329,1569,0,3,2,7,8,2327,2326,2329,1569,43,2330,2331,2332,2333,0,3,2,7,8,2330,2331,2332,2333,43,2331,2328,2325,2332,0,3,2,7,8,2331,2328,2325,2332,43,2333,2332,2325,2324,0,3,2,7,8,2333,2332,2325,2324,43,2334,2335,2336,2337,0,3,2,7,8,2334,2335,2336,2337,43,2335,2338,2339,2336,0,3,2,7,8,2335,2338,2339,2336,43,2336,2339,2340,2341,0,3,2,7,8,2336,2339,2340,2341,43,2337,2336,2341,2342,0,3,2,7,8,2337,2336,2341,2342,43,2323,2343,2344,2318,0,3,2,7,8,2323,2343,2344,2318,43,2343,2345,2346,2344,0,3,2,7,8,2343,2345,2346,2344,43,2344,2346,2154,2153,0,3,2,7,8,2344,2346,2154,2153,43,2318,2344,2153,2152,0,3,2,7,8,2318,2344,2153,2152,43,2334,2347,2348,2335,0,3,2,7,8,2334,2347,2348,2335,43,2347,2349,2350,2348,0,3,2,7,8,2347,2349,2350,2348,43,2348,2350,2351,2352,0,3,2,7,8,2348,2350,2351,2352,43,2335,2348,2352,2338,0,3,2,7,8,2335,2348,2352,2338,43,2353,2354,2355,2356,0,3,2,7,8,2353,2354,2355,2356,43,2354,2357,2358,2355,0,3,2,7,8,2354,2357,2358,2355,43,2355,2358,2359,2360,0,3,2,7,8,2355,2358,2359,2360,43,2356,2355,2360,2361,0,3,2,7,8,2356,2355,2360,2361,43,2362,2363,2364,2365,0,3,2,7,8,2362,2363,2364,2365,43,2363,2366,2367,2364,0,3,2,7,8,2363,2366,2367,2364,43,2364,2367,2368,2369,0,3,2,7,8,2364,2367,2368,2369,43,2365,2364,2369,2370,0,3,2,7,8,2365,2364,2369,2370,43,2366,2371,2372,2367,0,3,2,7,8,2366,2371,2372,2367,43,2371,2328,2373,2372,0,3,2,7,8,2371,2328,2373,2372,43,2367,2372,2373,2368,0,3,2,7,8,2367,2372,2373,2368,43,2368,2373,2374,2375,0,3,2,7,8,2368,2373,2374,2375,43,2373,2328,2331,2374,0,3,2,7,8,2373,2328,2331,2374,43,2375,2374,2331,2330,0,3,2,7,8,2375,2374,2331,2330,43,2368,2376,2377,2369,0,3,2,7,8,2368,2376,2377,2369,43,2376,2378,2379,2377,0,3,2,7,8,2376,2378,2379,2377,43,2377,2379,2380,2381,0,3,2,7,8,2377,2379,2380,2381,43,2369,2377,2381,2370,0,3,2,7,8,2369,2377,2381,2370,43,2330,2382,2383,2375,0,3,2,7,8,2330,2382,2383,2375,43,2382,2384,2385,2383,0,3,2,7,8,2382,2384,2385,2383,43,2383,2385,2378,2376,0,3,2,7,8,2383,2385,2378,2376,43,2375,2383,2376,2368,0,3,2,7,8,2375,2383,2376,2368,43,2378,2386,2387,2379,0,3,2,7,8,2378,2386,2387,2379,43,2386,2388,2389,2387,0,3,2,7,8,2386,2388,2389,2387,43,2387,2389,2359,2390,0,3,2,7,8,2387,2389,2359,2390,43,2379,2387,2390,2380,0,3,2,7,8,2379,2387,2390,2380,43,2378,2385,2391,2386,0,3,2,7,8,2378,2385,2391,2386,43,2385,2384,2392,2391,0,3,2,7,8,2385,2384,2392,2391,43,2391,2392,2393,2394,0,3,2,7,8,2391,2392,2393,2394,43,2386,2391,2394,2388,0,3,2,7,8,2386,2391,2394,2388,43,2395,2396,2397,2398,0,3,2,7,8,2395,2396,2397,2398,43,2396,2399,2400,2397,0,3,2,7,8,2396,2399,2400,2397,43,2397,2400,2401,2402,0,3,2,7,8,2397,2400,2401,2402,43,2398,2397,2402,2403,0,3,2,7,8,2398,2397,2402,2403,43,2399,2404,2405,2400,0,3,2,7,8,2399,2404,2405,2400,43,2404,2406,2407,2405,0,3,2,7,8,2404,2406,2407,2405,43,2405,2407,2319,2408,0,3,2,7,8,2405,2407,2319,2408,43,2400,2405,2408,2401,0,3,2,7,8,2400,2405,2408,2401,43,2409,2410,2411,2412,0,3,2,7,8,2409,2410,2411,2412,43,2410,2345,2343,2411,0,3,2,7,8,2410,2345,2343,2411,43,2411,2343,2323,2413,0,3,2,7,8,2411,2343,2323,2413,43,2412,2411,2413,2414,0,3,2,7,8,2412,2411,2413,2414,43,2414,2413,2415,2416,0,3,2,7,8,2414,2413,2415,2416,43,2413,2323,2322,2415,0,3,2,7,8,2413,2323,2322,2415,43,2415,2322,2321,2417,0,3,2,7,8,2415,2322,2321,2417,43,2416,2415,2417,2418,0,3,2,7,8,2416,2415,2417,2418,43,2281,2419,2420,2282,0,3,2,7,8,2281,2419,2420,2282,43,2419,2409,2412,2420,0,3,2,7,8,2419,2409,2412,2420,43,2420,2412,2414,2421,0,3,2,7,8,2420,2412,2414,2421,43,2282,2420,2421,2283,0,3,2,7,8,2282,2420,2421,2283,43,2418,2422,2423,2424,0,3,2,7,8,2418,2422,2423,2424,43,2422,2425,2426,2423,0,3,2,7,8,2422,2425,2426,2423,43,2423,2426,2243,2427,0,3,2,7,8,2423,2426,2243,2427,43,2424,2423,2427,2428,0,3,2,7,8,2424,2423,2427,2428,43,2243,2242,2429,2427,0,3,2,7,8,2243,2242,2429,2427,43,2242,2218,2221,2429,0,3,2,7,8,2242,2218,2221,2429,43,2429,2221,2212,2430,0,3,2,7,8,2429,2221,2212,2430,43,2427,2429,2430,2428,0,3,2,7,8,2427,2429,2430,2428,43,2283,2431,2432,2278,0,3,2,7,8,2283,2431,2432,2278,43,2431,2428,2430,2432,0,3,2,7,8,2431,2428,2430,2432,43,2432,2430,2212,2215,0,3,2,7,8,2432,2430,2212,2215,43,2278,2432,2215,2217,0,3,2,7,8,2278,2432,2215,2217,43,2283,2421,2433,2431,0,3,2,7,8,2283,2421,2433,2431,43,2421,2414,2416,2433,0,3,2,7,8,2421,2414,2416,2433,43,2433,2416,2418,2424,0,3,2,7,8,2433,2416,2418,2424,43,2431,2433,2424,2428,0,3,2,7,8,2431,2433,2424,2428,43,2434,2435,2436,2437,0,3,2,7,8,2434,2435,2436,2437,43,2435,2425,2422,2436,0,3,2,7,8,2435,2425,2422,2436,43,2436,2422,2418,2417,0,3,2,7,8,2436,2422,2418,2417,43,2437,2436,2417,2321,0,3,2,7,8,2437,2436,2417,2321,43,2393,2392,2438,2439,0,3,2,7,8,2393,2392,2438,2439,43,2392,2384,2382,2438,0,3,2,7,8,2392,2384,2382,2438,43,2438,2382,2330,2440,0,3,2,7,8,2438,2382,2330,2440,43,2439,2438,2440,2441,0,3,2,7,8,2439,2438,2440,2441,43,2330,2333,2442,2440,0,3,2,7,8,2330,2333,2442,2440,43,2333,2324,2443,2442,0,3,2,7,8,2333,2324,2443,2442,43,2440,2442,2443,2441,0,3,2,7,8,2440,2442,2443,2441,43,2406,2444,2445,2446,0,3,2,7,8,2406,2444,2445,2446,43,2444,2447,2448,2445,0,3,2,7,8,2444,2447,2448,2445,43,2445,2448,2449,2450,0,3,2,7,8,2445,2448,2449,2450,43,2446,2445,2450,2434,0,3,2,7,8,2446,2445,2450,2434,43,2447,2451,2452,2448,0,3,2,7,8,2447,2451,2452,2448,43,2451,2441,2443,2452,0,3,2,7,8,2451,2441,2443,2452,43,2452,2443,2324,2453,0,3,2,7,8,2452,2443,2324,2453,43,2448,2452,2453,2449,0,3,2,7,8,2448,2452,2453,2449,43,2232,2454,2455,2233,0,3,2,7,8,2232,2454,2455,2233,43,2454,2456,2457,2455,0,3,2,7,8,2454,2456,2457,2455,43,2455,2457,2288,2286,0,3,2,7,8,2455,2457,2288,2286,43,2233,2455,2286,2227,0,3,2,7,8,2233,2455,2286,2227,43,2456,2454,2458,2459,0,3,2,7,8,2456,2454,2458,2459,43,2454,2232,2240,2458,0,3,2,7,8,2454,2232,2240,2458,43,2458,2240,2243,2426,0,3,2,7,8,2458,2240,2243,2426,43,2459,2458,2426,2425,0,3,2,7,8,2459,2458,2426,2425,43,2288,2460,2461,2289,0,3,2,7,8,2288,2460,2461,2289,43,2460,2462,2463,2461,0,3,2,7,8,2460,2462,2463,2461,43,2461,2463,1563,1562,0,3,2,7,8,2461,2463,1563,1562,43,2289,2461,1562,1561,0,3,2,7,8,2289,2461,1562,1561,43,2462,2464,2465,2466,0,3,2,7,8,2462,2464,2465,2466,43,2464,2449,2453,2465,0,3,2,7,8,2464,2449,2453,2465,43,2466,2465,2453,2324,0,3,2,7,8,2466,2465,2453,2324,43,1569,1568,2467,2327,0,3,2,7,8,1569,1568,2467,2327,43,1568,1563,2463,2467,0,3,2,7,8,1568,1563,2463,2467,43,2467,2463,2462,2466,0,3,2,7,8,2467,2463,2462,2466,43,2327,2467,2466,2324,0,3,2,7,8,2327,2467,2466,2324,43,2449,2464,2468,2469,0,3,2,7,8,2449,2464,2468,2469,43,2464,2462,2460,2468,0,3,2,7,8,2464,2462,2460,2468,43,2468,2460,2288,2457,0,3,2,7,8,2468,2460,2288,2457,43,2469,2468,2457,2456,0,3,2,7,8,2469,2468,2457,2456,43,2449,2469,2470,2450,0,3,2,7,8,2449,2469,2470,2450,43,2469,2456,2459,2470,0,3,2,7,8,2469,2456,2459,2470,43,2470,2459,2425,2435,0,3,2,7,8,2470,2459,2425,2435,43,2450,2470,2435,2434,0,3,2,7,8,2450,2470,2435,2434,43,2406,2446,2471,2407,0,3,2,7,8,2406,2446,2471,2407,43,2446,2434,2437,2471,0,3,2,7,8,2446,2434,2437,2471,43,2471,2437,2321,2320,0,3,2,7,8,2471,2437,2321,2320,43,2407,2471,2320,2319,0,3,2,7,8,2407,2471,2320,2319,43,2441,2451,2472,2473,0,3,2,7,8,2441,2451,2472,2473,43,2451,2447,2444,2472,0,3,2,7,8,2451,2447,2444,2472,43,2472,2444,2406,2404,0,3,2,7,8,2472,2444,2406,2404,43,2473,2472,2404,2399,0,3,2,7,8,2473,2472,2404,2399,43,2393,2439,2474,2475,0,3,2,7,8,2393,2439,2474,2475,43,2439,2441,2473,2474,0,3,2,7,8,2439,2441,2473,2474,43,2474,2473,2399,2396,0,3,2,7,8,2474,2473,2399,2396,43,2475,2474,2396,2395,0,3,2,7,8,2475,2474,2396,2395,43,2476,2477,2478,2479,0,3,2,7,8,2476,2477,2478,2479,43,2477,2480,2481,2478,0,3,2,7,8,2477,2480,2481,2478,43,2478,2481,2395,2398,0,3,2,7,8,2478,2481,2395,2398,43,2479,2478,2398,2403,0,3,2,7,8,2479,2478,2398,2403,43,2482,2483,2484,2485,0,3,2,7,8,2482,2483,2484,2485,43,2483,2361,2486,2484,0,3,2,7,8,2483,2361,2486,2484,43,2484,2486,2480,2477,0,3,2,7,8,2484,2486,2480,2477,43,2485,2484,2477,2476,0,3,2,7,8,2485,2484,2477,2476,43,2388,2394,2487,2488,0,3,2,7,8,2388,2394,2487,2488,43,2394,2393,2475,2487,0,3,2,7,8,2394,2393,2475,2487,43,2487,2475,2395,2481,0,3,2,7,8,2487,2475,2395,2481,43,2488,2487,2481,2480,0,3,2,7,8,2488,2487,2481,2480,43,2361,2360,2489,2486,0,3,2,7,8,2361,2360,2489,2486,43,2360,2359,2389,2489,0,3,2,7,8,2360,2359,2389,2489,43,2489,2389,2388,2488,0,3,2,7,8,2489,2389,2388,2488,43,2486,2489,2488,2480,0,3,2,7,8,2486,2489,2488,2480,43,2490,2491,2492,2493,0,3,2,7,8,2490,2491,2492,2493,43,2491,2353,2356,2492,0,3,2,7,8,2491,2353,2356,2492,43,2492,2356,2361,2483,0,3,2,7,8,2492,2356,2361,2483,43,2493,2492,2483,2482,0,3,2,7,8,2493,2492,2483,2482,43,2342,2494,2495,2496,0,3,2,7,8,2342,2494,2495,2496,43,2494,2497,2498,2495,0,3,2,7,8,2494,2497,2498,2495,43,2495,2498,2499,2500,0,3,2,7,8,2495,2498,2499,2500,43,2496,2495,2500,2501,0,3,2,7,8,2496,2495,2500,2501,43,2502,2503,2504,2505,0,3,2,7,8,2502,2503,2504,2505,43,2503,2497,2494,2504,0,3,2,7,8,2503,2497,2494,2504,43,2504,2494,2342,2341,0,3,2,7,8,2504,2494,2342,2341,43,2505,2504,2341,2340,0,3,2,7,8,2505,2504,2341,2340,43,2273,2272,2506,2294,0,3,2,7,8,2273,2272,2506,2294,43,2272,1590,1589,2506,0,3,2,7,8,2272,1590,1589,2506,43,2506,1589,1584,2507,0,3,2,7,8,2506,1589,1584,2507,43,2294,2506,2507,2295,0,3,2,7,8,2294,2506,2507,2295,43,1584,1583,2508,2509,0,3,2,7,8,1584,1583,2508,2509,43,1583,1578,2299,2508,0,3,2,7,8,1583,1578,2299,2508,43,2509,2508,2299,2298,0,3,2,7,8,2509,2508,2299,2298,43,2315,2510,2511,2311,0,3,2,7,8,2315,2510,2511,2311,43,2510,2295,2507,2511,0,3,2,7,8,2510,2295,2507,2511,43,2511,2507,1584,2509,0,3,2,7,8,2511,2507,1584,2509,43,2311,2511,2509,2298,0,3,2,7,8,2311,2511,2509,2298,43,1591,1594,2512,2170,0,3,2,7,8,1591,1594,2512,2170,43,1594,1596,2513,2512,0,3,2,7,8,1594,1596,2513,2512,43,2512,2513,2196,2195,0,3,2,7,8,2512,2513,2196,2195,43,2170,2512,2195,2171,0,3,2,7,8,2170,2512,2195,2171,43,1585,2271,2514,1600,0,3,2,7,8,1585,2271,2514,1600,43,2271,2275,2515,2514,0,3,2,7,8,2271,2275,2515,2514,43,2514,2515,2196,2513,0,3,2,7,8,2514,2515,2196,2513,43,1600,2514,2513,1596,0,3,2,7,8,1600,2514,2513,1596,43,2502,2505,2516,2517,0,3,2,7,8,2502,2505,2516,2517,43,2505,2340,2518,2516,0,3,2,7,8,2505,2340,2518,2516,43,2516,2518,1612,1611,0,3,2,7,8,2516,2518,1612,1611,43,2517,2516,1611,1610,0,3,2,7,8,2517,2516,1611,1610,43,2519,2520,2521,2522,0,3,2,7,8,2519,2520,2521,2522,43,2520,2502,2517,2521,0,3,2,7,8,2520,2502,2517,2521,43,2521,2517,1610,1615,0,3,2,7,8,2521,2517,1610,1615,43,2522,2521,1615,1614,0,3,2,7,8,2522,2521,1615,1614,43,2362,2365,2523,2524,0,3,2,7,8,2362,2365,2523,2524,43,2365,2370,2525,2523,0,3,2,7,8,2365,2370,2525,2523,43,2523,2525,2526,2527,0,3,2,7,8,2523,2525,2526,2527,43,2524,2523,2527,2528,0,3,2,7,8,2524,2523,2527,2528,43,2529,2530,2531,2532,0,3,2,7,8,2529,2530,2531,2532,43,2530,2533,2534,2531,0,3,2,7,8,2530,2533,2534,2531,43,2531,2534,2499,2535,0,3,2,7,8,2531,2534,2499,2535,43,2532,2531,2535,2519,0,3,2,7,8,2532,2531,2535,2519,43,2370,2381,2536,2525,0,3,2,7,8,2370,2381,2536,2525,43,2381,2380,2537,2536,0,3,2,7,8,2381,2380,2537,2536,43,2536,2537,2538,2539,0,3,2,7,8,2536,2537,2538,2539,43,2525,2536,2539,2526,0,3,2,7,8,2525,2536,2539,2526,43,2380,2390,2540,2537,0,3,2,7,8,2380,2390,2540,2537,43,2390,2359,2358,2540,0,3,2,7,8,2390,2359,2358,2540,43,2540,2358,2357,2541,0,3,2,7,8,2540,2358,2357,2541,43,2537,2540,2541,2538,0,3,2,7,8,2537,2540,2541,2538,43,2538,2541,2542,2543,0,3,2,7,8,2538,2541,2542,2543,43,2541,2357,2354,2542,0,3,2,7,8,2541,2357,2354,2542,43,2542,2354,2353,2544,0,3,2,7,8,2542,2354,2353,2544,43,2543,2542,2544,2545,0,3,2,7,8,2543,2542,2544,2545,43,2526,2539,2546,2547,0,3,2,7,8,2526,2539,2546,2547,43,2539,2538,2543,2546,0,3,2,7,8,2539,2538,2543,2546,43,2546,2543,2545,2548,0,3,2,7,8,2546,2543,2545,2548,43,2547,2546,2548,2533,0,3,2,7,8,2547,2546,2548,2533,43,2528,2527,2549,2550,0,3,2,7,8,2528,2527,2549,2550,43,2527,2526,2547,2549,0,3,2,7,8,2527,2526,2547,2549,43,2549,2547,2533,2530,0,3,2,7,8,2549,2547,2533,2530,43,2550,2549,2530,2529,0,3,2,7,8,2550,2549,2530,2529,43,2366,2551,2552,2371,0,3,2,7,8,2366,2551,2552,2371,43,2551,1618,1621,2552,0,3,2,7,8,2551,1618,1621,2552,43,2552,1621,1569,2329,0,3,2,7,8,2552,1621,1569,2329,43,2371,2552,2329,2328,0,3,2,7,8,2371,2552,2329,2328,43,2362,2553,2554,2363,0,3,2,7,8,2362,2553,2554,2363,43,2553,1638,1641,2554,0,3,2,7,8,2553,1638,1641,2554,43,2554,1641,1618,2551,0,3,2,7,8,2554,1641,1618,2551,43,2363,2554,2551,2366,0,3,2,7,8,2363,2554,2551,2366,43,1638,2553,2555,1644,0,3,2,7,8,1638,2553,2555,1644,43,2553,2362,2524,2555,0,3,2,7,8,2553,2362,2524,2555,43,2555,2524,2528,2556,0,3,2,7,8,2555,2524,2528,2556,43,1644,2555,2556,1645,0,3,2,7,8,1644,2555,2556,1645,43,1645,2556,2557,1714,0,3,2,7,8,1645,2556,2557,1714,43,2556,2528,2550,2557,0,3,2,7,8,2556,2528,2550,2557,43,2557,2550,2529,2558,0,3,2,7,8,2557,2550,2529,2558,43,1714,2557,2558,1660,0,3,2,7,8,1714,2557,2558,1660,43,2529,2532,2559,2558,0,3,2,7,8,2529,2532,2559,2558,43,2532,2519,2522,2559,0,3,2,7,8,2532,2519,2522,2559,43,2559,2522,1614,1657,0,3,2,7,8,2559,2522,1614,1657,43,2558,2559,1657,1660,0,3,2,7,8,2558,2559,1657,1660,43,2499,2498,2560,2535,0,3,2,7,8,2499,2498,2560,2535,43,2498,2497,2503,2560,0,3,2,7,8,2498,2497,2503,2560,43,2560,2503,2502,2520,0,3,2,7,8,2560,2503,2502,2520,43,2535,2560,2520,2519,0,3,2,7,8,2535,2560,2520,2519,43,2533,2548,2561,2534,0,3,2,7,8,2533,2548,2561,2534,43,2548,2545,2562,2561,0,3,2,7,8,2548,2545,2562,2561,43,2561,2562,2501,2500,0,3,2,7,8,2561,2562,2501,2500,43,2534,2561,2500,2499,0,3,2,7,8,2534,2561,2500,2499,43,2353,2491,2563,2544,0,3,2,7,8,2353,2491,2563,2544,43,2491,2490,2564,2563,0,3,2,7,8,2491,2490,2564,2563,43,2563,2564,2501,2562,0,3,2,7,8,2563,2564,2501,2562,43,2544,2563,2562,2545,0,3,2,7,8,2544,2563,2562,2545,43,2501,2564,2565,2566,0,3,2,7,8,2501,2564,2565,2566,43,2564,2490,2493,2565,0,3,2,7,8,2564,2490,2493,2565,43,2565,2493,2482,2567,0,3,2,7,8,2565,2493,2482,2567,43,2566,2565,2567,2568,0,3,2,7,8,2566,2565,2567,2568,43,2569,2570,2571,2572,0,3,2,7,8,2569,2570,2571,2572,43,2570,2573,2574,2571,0,3,2,7,8,2570,2573,2574,2571,43,2571,2574,2575,2576,0,3,2,7,8,2571,2574,2575,2576,43,2572,2571,2576,2577,0,3,2,7,8,2572,2571,2576,2577,43,2577,2576,2578,2579,0,3,2,7,8,2577,2576,2578,2579,43,2576,2575,2580,2578,0,3,2,7,8,2576,2575,2580,2578,43,2578,2580,2581,2582,0,3,2,7,8,2578,2580,2581,2582,43,2579,2578,2582,2583,0,3,2,7,8,2579,2578,2582,2583,43,2575,2574,2584,2580,0,3,2,7,8,2575,2574,2584,2580,43,2574,2573,2585,2584,0,3,2,7,8,2574,2573,2585,2584,43,2584,2585,2586,2587,0,3,2,7,8,2584,2585,2586,2587,43,2580,2584,2587,2581,0,3,2,7,8,2580,2584,2587,2581,43,2581,2587,2588,2589,0,3,2,7,8,2581,2587,2588,2589,43,2587,2586,2590,2588,0,3,2,7,8,2587,2586,2590,2588,43,2588,2590,2591,2592,0,3,2,7,8,2588,2590,2591,2592,43,2589,2588,2592,2593,0,3,2,7,8,2589,2588,2592,2593,43,2583,2582,2594,2595,0,3,2,7,8,2583,2582,2594,2595,43,2582,2581,2589,2594,0,3,2,7,8,2582,2581,2589,2594,43,2594,2589,2593,2596,0,3,2,7,8,2594,2589,2593,2596,43,2595,2594,2596,2315,0,3,2,7,8,2595,2594,2596,2315,43,2313,2597,2598,2314,0,3,2,7,8,2313,2597,2598,2314,43,2597,2599,2600,2598,0,3,2,7,8,2597,2599,2600,2598,43,2598,2600,2583,2595,0,3,2,7,8,2598,2600,2583,2595,43,2314,2598,2595,2315,0,3,2,7,8,2314,2598,2595,2315,43,2601,2602,2603,2604,0,3,2,7,8,2601,2602,2603,2604,43,2602,2577,2579,2603,0,3,2,7,8,2602,2577,2579,2603,43,2603,2579,2583,2600,0,3,2,7,8,2603,2579,2583,2600,43,2604,2603,2600,2599,0,3,2,7,8,2604,2603,2600,2599,43,2601,2605,2606,2602,0,3,2,7,8,2601,2605,2606,2602,43,2605,2607,2608,2606,0,3,2,7,8,2605,2607,2608,2606,43,2606,2608,2609,2610,0,3,2,7,8,2606,2608,2609,2610,43,2602,2606,2610,2577,0,3,2,7,8,2602,2606,2610,2577,43,2609,2611,2612,2610,0,3,2,7,8,2609,2611,2612,2610,43,2611,2613,2614,2612,0,3,2,7,8,2611,2613,2614,2612,43,2612,2614,2569,2572,0,3,2,7,8,2612,2614,2569,2572,43,2610,2612,2572,2577,0,3,2,7,8,2610,2612,2572,2577,43,2615,2616,2617,2618,0,3,2,7,8,2615,2616,2617,2618,43,2616,2349,2347,2617,0,3,2,7,8,2616,2349,2347,2617,43,2617,2347,2334,2619,0,3,2,7,8,2617,2347,2334,2619,43,2618,2617,2619,2620,0,3,2,7,8,2618,2617,2619,2620,43,2620,2619,2621,2622,0,3,2,7,8,2620,2619,2621,2622,43,2619,2334,2337,2621,0,3,2,7,8,2619,2334,2337,2621,43,2621,2337,2342,2623,0,3,2,7,8,2621,2337,2342,2623,43,2622,2621,2623,2624,0,3,2,7,8,2622,2621,2623,2624,43,2624,2623,2625,2626,0,3,2,7,8,2624,2623,2625,2626,43,2623,2342,2496,2625,0,3,2,7,8,2623,2342,2496,2625,43,2625,2496,2501,2566,0,3,2,7,8,2625,2496,2501,2566,43,2626,2625,2566,2568,0,3,2,7,8,2626,2625,2566,2568,43,2613,2611,2627,2628,0,3,2,7,8,2613,2611,2627,2628,43,2611,2609,2629,2627,0,3,2,7,8,2611,2609,2629,2627,43,2627,2629,2630,2631,0,3,2,7,8,2627,2629,2630,2631,43,2628,2627,2631,2632,0,3,2,7,8,2628,2627,2631,2632,43,2633,2634,2635,2636,0,3,2,7,8,2633,2634,2635,2636,43,2634,2637,2638,2635,0,3,2,7,8,2634,2637,2638,2635,43,2635,2638,2639,2640,0,3,2,7,8,2635,2638,2639,2640,43,2636,2635,2640,2641,0,3,2,7,8,2636,2635,2640,2641,43,2642,2643,2644,2645,0,3,2,7,8,2642,2643,2644,2645,43,2643,2639,2638,2644,0,3,2,7,8,2643,2639,2638,2644,43,2645,2644,2638,2637,0,3,2,7,8,2645,2644,2638,2637,43,2642,2646,2647,2648,0,3,2,7,8,2642,2646,2647,2648,43,2646,2649,2650,2647,0,3,2,7,8,2646,2649,2650,2647,43,2647,2650,2651,2652,0,3,2,7,8,2647,2650,2651,2652,43,2648,2647,2652,2653,0,3,2,7,8,2648,2647,2652,2653,43,2654,2655,2656,2657,0,3,2,7,8,2654,2655,2656,2657,43,2655,2658,2659,2656,0,3,2,7,8,2655,2658,2659,2656,43,2656,2659,2660,2661,0,3,2,7,8,2656,2659,2660,2661,43,2657,2656,2661,2568,0,3,2,7,8,2657,2656,2661,2568,43,2568,2567,2662,2657,0,3,2,7,8,2568,2567,2662,2657,43,2567,2482,2485,2662,0,3,2,7,8,2567,2482,2485,2662,43,2662,2485,2476,2663,0,3,2,7,8,2662,2485,2476,2663,43,2657,2662,2663,2654,0,3,2,7,8,2657,2662,2663,2654,43,2654,2663,2664,2665,0,3,2,7,8,2654,2663,2664,2665,43,2663,2476,2479,2664,0,3,2,7,8,2663,2476,2479,2664,43,2664,2479,2403,2666,0,3,2,7,8,2664,2479,2403,2666,43,2665,2664,2666,2651,0,3,2,7,8,2665,2664,2666,2651,43,2667,2668,2669,2670,0,3,2,7,8,2667,2668,2669,2670,43,2668,2671,2672,2669,0,3,2,7,8,2668,2671,2672,2669,43,2669,2672,2658,2655,0,3,2,7,8,2669,2672,2658,2655,43,2670,2669,2655,2654,0,3,2,7,8,2670,2669,2655,2654,43,2673,2674,2675,2676,0,3,2,7,8,2673,2674,2675,2676,43,2674,2677,2678,2675,0,3,2,7,8,2674,2677,2678,2675,43,2675,2678,2667,2670,0,3,2,7,8,2675,2678,2667,2670,43,2676,2675,2670,2654,0,3,2,7,8,2676,2675,2670,2654,43,2633,2679,2680,2681,0,3,2,7,8,2633,2679,2680,2681,43,2679,2677,2674,2680,0,3,2,7,8,2679,2677,2674,2680,43,2680,2674,2673,2682,0,3,2,7,8,2680,2674,2673,2682,43,2681,2680,2682,2649,0,3,2,7,8,2681,2680,2682,2649,43,2649,2682,2683,2650,0,3,2,7,8,2649,2682,2683,2650,43,2682,2673,2676,2683,0,3,2,7,8,2682,2673,2676,2683,43,2683,2676,2654,2665,0,3,2,7,8,2683,2676,2654,2665,43,2650,2683,2665,2651,0,3,2,7,8,2650,2683,2665,2651,43,2642,2645,2684,2646,0,3,2,7,8,2642,2645,2684,2646,43,2645,2637,2634,2684,0,3,2,7,8,2645,2637,2634,2684,43,2684,2634,2633,2681,0,3,2,7,8,2684,2634,2633,2681,43,2646,2684,2681,2649,0,3,2,7,8,2646,2684,2681,2649,43,2677,2679,2685,2686,0,3,2,7,8,2677,2679,2685,2686,43,2679,2633,2636,2685,0,3,2,7,8,2679,2633,2636,2685,43,2685,2636,2641,2687,0,3,2,7,8,2685,2636,2641,2687,43,2686,2685,2687,2688,0,3,2,7,8,2686,2685,2687,2688,43,2689,2690,2691,2692,0,3,2,7,8,2689,2690,2691,2692,43,2690,2693,2694,2691,0,3,2,7,8,2690,2693,2694,2691,43,2691,2694,2695,2696,0,3,2,7,8,2691,2694,2695,2696,43,2692,2691,2696,2697,0,3,2,7,8,2692,2691,2696,2697,43,2698,2699,2700,2701,0,3,2,7,8,2698,2699,2700,2701,43,2699,2702,2703,2700,0,3,2,7,8,2699,2702,2703,2700,43,2700,2703,2671,2668,0,3,2,7,8,2700,2703,2671,2668,43,2701,2700,2668,2667,0,3,2,7,8,2701,2700,2668,2667,43,2677,2686,2704,2678,0,3,2,7,8,2677,2686,2704,2678,43,2686,2688,2705,2704,0,3,2,7,8,2686,2688,2705,2704,43,2704,2705,2698,2701,0,3,2,7,8,2704,2705,2698,2701,43,2678,2704,2701,2667,0,3,2,7,8,2678,2704,2701,2667,43,2698,2705,2706,2707,0,3,2,7,8,2698,2705,2706,2707,43,2705,2688,2708,2706,0,3,2,7,8,2705,2688,2708,2706,43,2706,2708,2709,2710,0,3,2,7,8,2706,2708,2709,2710,43,2707,2706,2710,2711,0,3,2,7,8,2707,2706,2710,2711,43,2711,2712,2713,2707,0,3,2,7,8,2711,2712,2713,2707,43,2712,2714,2715,2713,0,3,2,7,8,2712,2714,2715,2713,43,2713,2715,2702,2699,0,3,2,7,8,2713,2715,2702,2699,43,2707,2713,2699,2698,0,3,2,7,8,2707,2713,2699,2698,43,2714,2712,2716,2717,0,3,2,7,8,2714,2712,2716,2717,43,2712,2711,2718,2716,0,3,2,7,8,2712,2711,2718,2716,43,2716,2718,2693,2690,0,3,2,7,8,2716,2718,2693,2690,43,2717,2716,2690,2689,0,3,2,7,8,2717,2716,2690,2689,43,2351,2350,2719,2720,0,3,2,7,8,2351,2350,2719,2720,43,2350,2349,2616,2719,0,3,2,7,8,2350,2349,2616,2719,43,2719,2616,2615,2721,0,3,2,7,8,2719,2616,2615,2721,43,2720,2719,2721,2722,0,3,2,7,8,2720,2719,2721,2722,43,2695,2723,2724,2696,0,3,2,7,8,2695,2723,2724,2696,43,2723,2722,2721,2724,0,3,2,7,8,2723,2722,2721,2724,43,2724,2721,2615,2725,0,3,2,7,8,2724,2721,2615,2725,43,2696,2724,2725,2697,0,3,2,7,8,2696,2724,2725,2697,43,2726,2727,2728,2729,0,3,2,7,8,2726,2727,2728,2729,43,2727,2730,2731,2728,0,3,2,7,8,2727,2730,2731,2728,43,2728,2731,2351,2720,0,3,2,7,8,2728,2731,2351,2720,43,2729,2728,2720,2722,0,3,2,7,8,2729,2728,2720,2722,43,2599,2732,2733,2604,0,3,2,7,8,2599,2732,2733,2604,43,2732,2726,2734,2733,0,3,2,7,8,2732,2726,2734,2733,43,2733,2734,2735,2736,0,3,2,7,8,2733,2734,2735,2736,43,2604,2733,2736,2601,0,3,2,7,8,2604,2733,2736,2601,43,2351,2731,2737,2352,0,3,2,7,8,2351,2731,2737,2352,43,2731,2730,2738,2737,0,3,2,7,8,2731,2730,2738,2737,43,2737,2738,2739,2740,0,3,2,7,8,2737,2738,2739,2740,43,2352,2737,2740,2338,0,3,2,7,8,2352,2737,2740,2338,43,2599,2597,2741,2742,0,3,2,7,8,2599,2597,2741,2742,43,2597,2313,2312,2741,0,3,2,7,8,2597,2313,2312,2741,43,2741,2312,2303,2743,0,3,2,7,8,2741,2312,2303,2743,43,2742,2741,2743,2739,0,3,2,7,8,2742,2741,2743,2739,43,2739,2743,2744,2745,0,3,2,7,8,2739,2743,2744,2745,43,2743,2303,2302,2744,0,3,2,7,8,2743,2303,2302,2744,43,2744,2302,1576,1613,0,3,2,7,8,2744,2302,1576,1613,43,2745,2744,1613,1612,0,3,2,7,8,2745,2744,1613,1612,43,2340,2339,2746,2518,0,3,2,7,8,2340,2339,2746,2518,43,2339,2338,2740,2746,0,3,2,7,8,2339,2338,2740,2746,43,2746,2740,2739,2745,0,3,2,7,8,2746,2740,2739,2745,43,2518,2746,2745,1612,0,3,2,7,8,2518,2746,2745,1612,43,2739,2738,2747,2742,0,3,2,7,8,2739,2738,2747,2742,43,2738,2730,2727,2747,0,3,2,7,8,2738,2730,2727,2747,43,2747,2727,2726,2732,0,3,2,7,8,2747,2727,2726,2732,43,2742,2747,2732,2599,0,3,2,7,8,2742,2747,2732,2599,43,2726,2729,2748,2734,0,3,2,7,8,2726,2729,2748,2734,43,2729,2722,2723,2748,0,3,2,7,8,2729,2722,2723,2748,43,2748,2723,2695,2749,0,3,2,7,8,2748,2723,2695,2749,43,2734,2748,2749,2735,0,3,2,7,8,2734,2748,2749,2735,43,2609,2608,2750,2629,0,3,2,7,8,2609,2608,2750,2629,43,2608,2607,2751,2750,0,3,2,7,8,2608,2607,2751,2750,43,2750,2751,2752,2753,0,3,2,7,8,2750,2751,2752,2753,43,2629,2750,2753,2630,0,3,2,7,8,2629,2750,2753,2630,43,2607,2605,2754,2751,0,3,2,7,8,2607,2605,2754,2751,43,2605,2601,2736,2754,0,3,2,7,8,2605,2601,2736,2754,43,2754,2736,2735,2755,0,3,2,7,8,2754,2736,2735,2755,43,2751,2754,2755,2752,0,3,2,7,8,2751,2754,2755,2752,43,2752,2756,2757,2758,0,3,2,7,8,2752,2756,2757,2758,43,2756,2759,2760,2757,0,3,2,7,8,2756,2759,2760,2757,43,2757,2760,2639,2761,0,3,2,7,8,2757,2760,2639,2761,43,2758,2757,2761,2762,0,3,2,7,8,2758,2757,2761,2762,43,2709,2763,2764,2765,0,3,2,7,8,2709,2763,2764,2765,43,2763,2766,2767,2764,0,3,2,7,8,2763,2766,2767,2764,43,2764,2767,2759,2768,0,3,2,7,8,2764,2767,2759,2768,43,2765,2764,2768,2769,0,3,2,7,8,2765,2764,2768,2769,43,2735,2770,2771,2755,0,3,2,7,8,2735,2770,2771,2755,43,2770,2769,2768,2771,0,3,2,7,8,2770,2769,2768,2771,43,2771,2768,2759,2756,0,3,2,7,8,2771,2768,2759,2756,43,2755,2771,2756,2752,0,3,2,7,8,2755,2771,2756,2752,43,2695,2694,2772,2749,0,3,2,7,8,2695,2694,2772,2749,43,2694,2693,2773,2772,0,3,2,7,8,2694,2693,2773,2772,43,2772,2773,2769,2770,0,3,2,7,8,2772,2773,2769,2770,43,2749,2772,2770,2735,0,3,2,7,8,2749,2772,2770,2735,43,2711,2710,2774,2718,0,3,2,7,8,2711,2710,2774,2718,43,2710,2709,2765,2774,0,3,2,7,8,2710,2709,2765,2774,43,2774,2765,2769,2773,0,3,2,7,8,2774,2765,2769,2773,43,2718,2774,2773,2693,0,3,2,7,8,2718,2774,2773,2693,43,2641,2775,2776,2687,0,3,2,7,8,2641,2775,2776,2687,43,2775,2766,2763,2776,0,3,2,7,8,2775,2766,2763,2776,43,2776,2763,2709,2708,0,3,2,7,8,2776,2763,2709,2708,43,2687,2776,2708,2688,0,3,2,7,8,2687,2776,2708,2688,43,2759,2767,2777,2760,0,3,2,7,8,2759,2767,2777,2760,43,2767,2766,2775,2777,0,3,2,7,8,2767,2766,2775,2777,43,2777,2775,2641,2640,0,3,2,7,8,2777,2775,2641,2640,43,2760,2777,2640,2639,0,3,2,7,8,2760,2777,2640,2639,43,2639,2643,2778,2761,0,3,2,7,8,2639,2643,2778,2761,43,2643,2642,2648,2778,0,3,2,7,8,2643,2642,2648,2778,43,2778,2648,2653,2779,0,3,2,7,8,2778,2648,2653,2779,43,2761,2778,2779,2762,0,3,2,7,8,2761,2778,2779,2762,43,2780,2781,2782,2783,0,3,2,7,8,2780,2781,2782,2783,43,2781,2762,2779,2782,0,3,2,7,8,2781,2762,2779,2782,43,2782,2779,2653,2784,0,3,2,7,8,2782,2779,2653,2784,43,2783,2782,2784,2785,0,3,2,7,8,2783,2782,2784,2785,43,2762,2781,2786,2758,0,3,2,7,8,2762,2781,2786,2758,43,2781,2780,2787,2786,0,3,2,7,8,2781,2780,2787,2786,43,2786,2787,2630,2753,0,3,2,7,8,2786,2787,2630,2753,43,2758,2786,2753,2752,0,3,2,7,8,2758,2786,2753,2752,43,2630,2787,2788,2631,0,3,2,7,8,2630,2787,2788,2631,43,2787,2780,2783,2788,0,3,2,7,8,2787,2780,2783,2788,43,2788,2783,2785,2789,0,3,2,7,8,2788,2783,2785,2789,43,2631,2788,2789,2632,0,3,2,7,8,2631,2788,2789,2632,43,2790,2791,2792,2793,0,3,2,7,8,2790,2791,2792,2793,43,2791,2613,2628,2792,0,3,2,7,8,2791,2613,2628,2792,43,2792,2628,2632,2794,0,3,2,7,8,2792,2628,2632,2794,43,2793,2792,2794,2795,0,3,2,7,8,2793,2792,2794,2795,43,2796,2797,2798,2799,0,3,2,7,8,2796,2797,2798,2799,43,2797,2800,2801,2798,0,3,2,7,8,2797,2800,2801,2798,43,2798,2801,2802,2803,0,3,2,7,8,2798,2801,2802,2803,43,2799,2798,2803,2804,0,3,2,7,8,2799,2798,2803,2804,43,2805,2806,2807,2808,0,3,2,7,8,2805,2806,2807,2808,43,2806,2809,2810,2807,0,3,2,7,8,2806,2809,2810,2807,43,2807,2810,2811,2812,0,3,2,7,8,2807,2810,2811,2812,43,2808,2807,2812,2802,0,3,2,7,8,2808,2807,2812,2802,43,2802,2801,2813,2808,0,3,2,7,8,2802,2801,2813,2808,43,2801,2800,2814,2813,0,3,2,7,8,2801,2800,2814,2813,43,2813,2814,2815,2816,0,3,2,7,8,2813,2814,2815,2816,43,2808,2813,2816,2805,0,3,2,7,8,2808,2813,2816,2805,43,2815,2814,2817,2818,0,3,2,7,8,2815,2814,2817,2818,43,2814,2800,2797,2817,0,3,2,7,8,2814,2800,2797,2817,43,2817,2797,2796,2819,0,3,2,7,8,2817,2797,2796,2819,43,2818,2817,2819,2820,0,3,2,7,8,2818,2817,2819,2820,43,2821,2822,2823,2824,0,3,2,7,8,2821,2822,2823,2824,43,2822,2815,2818,2823,0,3,2,7,8,2822,2815,2818,2823,43,2823,2818,2820,2825,0,3,2,7,8,2823,2818,2820,2825,43,2824,2823,2825,2268,0,3,2,7,8,2824,2823,2825,2268,43,2826,2827,2828,2829,0,3,2,7,8,2826,2827,2828,2829,43,2827,2805,2816,2828,0,3,2,7,8,2827,2805,2816,2828,43,2828,2816,2815,2822,0,3,2,7,8,2828,2816,2815,2822,43,2829,2828,2822,2821,0,3,2,7,8,2829,2828,2822,2821,43,2830,2831,2832,2833,0,3,2,7,8,2830,2831,2832,2833,43,2831,2834,2835,2832,0,3,2,7,8,2831,2834,2835,2832,43,2832,2835,2836,2837,0,3,2,7,8,2832,2835,2836,2837,43,2833,2832,2837,2838,0,3,2,7,8,2833,2832,2837,2838,43,2826,2839,2840,2841,0,3,2,7,8,2826,2839,2840,2841,43,2839,2842,2843,2840,0,3,2,7,8,2839,2842,2843,2840,43,2840,2843,2830,2833,0,3,2,7,8,2840,2843,2830,2833,43,2841,2840,2833,2838,0,3,2,7,8,2841,2840,2833,2838,43,2811,2844,2845,2846,0,3,2,7,8,2811,2844,2845,2846,43,2844,2847,2848,2845,0,3,2,7,8,2844,2847,2848,2845,43,2845,2848,2849,2850,0,3,2,7,8,2845,2848,2849,2850,43,2846,2845,2850,2851,0,3,2,7,8,2846,2845,2850,2851,43,2851,2850,2852,2853,0,3,2,7,8,2851,2850,2852,2853,43,2850,2849,2854,2852,0,3,2,7,8,2850,2849,2854,2852,43,2852,2854,68,105,0,3,2,7,8,2852,2854,68,105,43,2853,2852,105,107,0,3,2,7,8,2853,2852,105,107,43,2847,2855,2856,2848,0,3,2,7,8,2847,2855,2856,2848,43,2855,2838,2837,2856,0,3,2,7,8,2855,2838,2837,2856,43,2856,2837,2836,2857,0,3,2,7,8,2856,2837,2836,2857,43,2848,2856,2857,2849,0,3,2,7,8,2848,2856,2857,2849,43,2836,2835,2858,2857,0,3,2,7,8,2836,2835,2858,2857,43,2835,2834,2859,2858,0,3,2,7,8,2835,2834,2859,2858,43,2858,2859,2860,2861,0,3,2,7,8,2858,2859,2860,2861,43,2857,2858,2861,2849,0,3,2,7,8,2857,2858,2861,2849,43,2860,2859,2862,2863,0,3,2,7,8,2860,2859,2862,2863,43,2859,2834,2831,2862,0,3,2,7,8,2859,2834,2831,2862,43,2862,2831,2830,2864,0,3,2,7,8,2862,2831,2830,2864,43,2863,2862,2864,2865,0,3,2,7,8,2863,2862,2864,2865,43,2830,2843,2866,2864,0,3,2,7,8,2830,2843,2866,2864,43,2843,2842,2867,2866,0,3,2,7,8,2843,2842,2867,2866,43,2866,2867,2868,2869,0,3,2,7,8,2866,2867,2868,2869,43,2864,2866,2869,2865,0,3,2,7,8,2864,2866,2869,2865,43,2870,2871,2872,2873,0,3,2,7,8,2870,2871,2872,2873,43,2871,2821,2824,2872,0,3,2,7,8,2871,2821,2824,2872,43,2872,2824,2268,2265,0,3,2,7,8,2872,2824,2268,2265,43,2873,2872,2265,2264,0,3,2,7,8,2873,2872,2265,2264,43,2874,2875,2876,2877,0,3,2,7,8,2874,2875,2876,2877,43,2875,2878,2879,2876,0,3,2,7,8,2875,2878,2879,2876,43,2876,2879,2870,2880,0,3,2,7,8,2876,2879,2870,2880,43,2877,2876,2880,2881,0,3,2,7,8,2877,2876,2880,2881,43,2821,2871,2882,2829,0,3,2,7,8,2821,2871,2882,2829,43,2871,2870,2879,2882,0,3,2,7,8,2871,2870,2879,2882,43,2882,2879,2878,2883,0,3,2,7,8,2882,2879,2878,2883,43,2829,2882,2883,2826,0,3,2,7,8,2829,2882,2883,2826,43,2881,2880,2884,2885,0,3,2,7,8,2881,2880,2884,2885,43,2880,2870,2873,2884,0,3,2,7,8,2880,2870,2873,2884,43,2884,2873,2264,2886,0,3,2,7,8,2884,2873,2264,2886,43,2885,2884,2886,2887,0,3,2,7,8,2885,2884,2886,2887,43,2887,2886,2888,2889,0,3,2,7,8,2887,2886,2888,2889,43,2886,2264,2267,2888,0,3,2,7,8,2886,2264,2267,2888,43,2888,2267,2256,2890,0,3,2,7,8,2888,2267,2256,2890,43,2889,2888,2890,2891,0,3,2,7,8,2889,2888,2890,2891,43,2891,2890,2892,2893,0,3,2,7,8,2891,2890,2892,2893,43,2890,2256,2259,2892,0,3,2,7,8,2890,2256,2259,2892,43,2892,2259,2253,2252,0,3,2,7,8,2892,2259,2253,2252,43,2893,2892,2252,2180,0,3,2,7,8,2893,2892,2252,2180,43,2178,2201,2894,2179,0,3,2,7,8,2178,2201,2894,2179,43,2201,2203,2895,2894,0,3,2,7,8,2201,2203,2895,2894,43,2894,2895,2891,2893,0,3,2,7,8,2894,2895,2891,2893,43,2179,2894,2893,2180,0,3,2,7,8,2179,2894,2893,2180,43,2891,2895,2896,2889,0,3,2,7,8,2891,2895,2896,2889,43,2895,2203,2897,2896,0,3,2,7,8,2895,2203,2897,2896,43,2896,2897,2898,2899,0,3,2,7,8,2896,2897,2898,2899,43,2889,2896,2899,2887,0,3,2,7,8,2889,2896,2899,2887,43,2900,2901,2902,2903,0,3,2,7,8,2900,2901,2902,2903,43,2901,2290,2293,2902,0,3,2,7,8,2901,2290,2293,2902,43,2902,2293,2297,2904,0,3,2,7,8,2902,2293,2297,2904,43,2903,2902,2904,2905,0,3,2,7,8,2903,2902,2904,2905,43,2203,2202,2906,2897,0,3,2,7,8,2203,2202,2906,2897,43,2202,2198,2907,2906,0,3,2,7,8,2202,2198,2907,2906,43,2906,2907,2908,2909,0,3,2,7,8,2906,2907,2908,2909,43,2897,2906,2909,2898,0,3,2,7,8,2897,2906,2909,2898,43,2198,2197,2910,2907,0,3,2,7,8,2198,2197,2910,2907,43,2197,2196,2515,2910,0,3,2,7,8,2197,2196,2515,2910,43,2910,2515,2275,2911,0,3,2,7,8,2910,2515,2275,2911,43,2907,2910,2911,2908,0,3,2,7,8,2907,2910,2911,2908,43,2908,2911,2912,2913,0,3,2,7,8,2908,2911,2912,2913,43,2911,2275,2274,2912,0,3,2,7,8,2911,2275,2274,2912,43,2912,2274,2273,2291,0,3,2,7,8,2912,2274,2273,2291,43,2913,2912,2291,2290,0,3,2,7,8,2913,2912,2291,2290,43,2898,2909,2914,2915,0,3,2,7,8,2898,2909,2914,2915,43,2909,2908,2913,2914,0,3,2,7,8,2909,2908,2913,2914,43,2914,2913,2290,2901,0,3,2,7,8,2914,2913,2290,2901,43,2915,2914,2901,2900,0,3,2,7,8,2915,2914,2901,2900,43,2887,2899,2916,2885,0,3,2,7,8,2887,2899,2916,2885,43,2899,2898,2915,2916,0,3,2,7,8,2899,2898,2915,2916,43,2916,2915,2900,2917,0,3,2,7,8,2916,2915,2900,2917,43,2885,2916,2917,2881,0,3,2,7,8,2885,2916,2917,2881,43,2900,2903,2918,2917,0,3,2,7,8,2900,2903,2918,2917,43,2903,2905,2919,2918,0,3,2,7,8,2903,2905,2919,2918,43,2918,2919,2874,2877,0,3,2,7,8,2918,2919,2874,2877,43,2917,2918,2877,2881,0,3,2,7,8,2917,2918,2877,2881,43,2591,2920,2921,2592,0,3,2,7,8,2591,2920,2921,2592,43,2920,2922,2923,2921,0,3,2,7,8,2920,2922,2923,2921,43,2921,2923,2924,2925,0,3,2,7,8,2921,2923,2924,2925,43,2592,2921,2925,2593,0,3,2,7,8,2592,2921,2925,2593,43,2865,2869,2926,2927,0,3,2,7,8,2865,2869,2926,2927,43,2869,2868,2928,2926,0,3,2,7,8,2869,2868,2928,2926,43,2926,2928,2929,2930,0,3,2,7,8,2926,2928,2929,2930,43,2927,2926,2930,2931,0,3,2,7,8,2927,2926,2930,2931,43,2932,2933,2934,2935,0,3,2,7,8,2932,2933,2934,2935,43,2933,2569,2614,2934,0,3,2,7,8,2933,2569,2614,2934,43,2934,2614,2613,2936,0,3,2,7,8,2934,2614,2613,2936,43,2935,2934,2936,2937,0,3,2,7,8,2935,2934,2936,2937,43,2922,2920,2938,2939,0,3,2,7,8,2922,2920,2938,2939,43,2920,2591,2590,2938,0,3,2,7,8,2920,2591,2590,2938,43,2938,2590,2586,2940,0,3,2,7,8,2938,2590,2586,2940,43,2939,2938,2940,2932,0,3,2,7,8,2939,2938,2940,2932,43,2586,2585,2941,2940,0,3,2,7,8,2586,2585,2941,2940,43,2585,2573,2570,2941,0,3,2,7,8,2585,2573,2570,2941,43,2941,2570,2569,2933,0,3,2,7,8,2941,2570,2569,2933,43,2940,2941,2933,2932,0,3,2,7,8,2940,2941,2933,2932,43,2942,2943,2944,2945,0,3,2,7,8,2942,2943,2944,2945,43,2943,2297,2296,2944,0,3,2,7,8,2943,2297,2296,2944,43,2944,2296,2295,2510,0,3,2,7,8,2944,2296,2295,2510,43,2945,2944,2510,2315,0,3,2,7,8,2945,2944,2510,2315,43,2593,2925,2946,2596,0,3,2,7,8,2593,2925,2946,2596,43,2925,2924,2947,2946,0,3,2,7,8,2925,2924,2947,2946,43,2946,2947,2942,2945,0,3,2,7,8,2946,2947,2942,2945,43,2596,2946,2945,2315,0,3,2,7,8,2596,2946,2945,2315,43,2297,2943,2948,2904,0,3,2,7,8,2297,2943,2948,2904,43,2943,2942,2949,2948,0,3,2,7,8,2943,2942,2949,2948,43,2948,2949,2950,2951,0,3,2,7,8,2948,2949,2950,2951,43,2904,2948,2951,2905,0,3,2,7,8,2904,2948,2951,2905,43,2942,2947,2952,2949,0,3,2,7,8,2942,2947,2952,2949,43,2947,2924,2923,2952,0,3,2,7,8,2947,2924,2923,2952,43,2952,2923,2922,2953,0,3,2,7,8,2952,2923,2922,2953,43,2949,2952,2953,2950,0,3,2,7,8,2949,2952,2953,2950,43,2931,2930,2954,2955,0,3,2,7,8,2931,2930,2954,2955,43,2930,2929,2956,2954,0,3,2,7,8,2930,2929,2956,2954,43,2954,2956,2950,2953,0,3,2,7,8,2954,2956,2950,2953,43,2955,2954,2953,2922,0,3,2,7,8,2955,2954,2953,2922,43,2905,2951,2957,2919,0,3,2,7,8,2905,2951,2957,2919,43,2951,2950,2956,2957,0,3,2,7,8,2951,2950,2956,2957,43,2957,2956,2929,2958,0,3,2,7,8,2957,2956,2929,2958,43,2919,2957,2958,2874,0,3,2,7,8,2919,2957,2958,2874,43,2929,2928,2959,2958,0,3,2,7,8,2929,2928,2959,2958,43,2928,2868,2960,2959,0,3,2,7,8,2928,2868,2960,2959,43,2959,2960,2878,2875,0,3,2,7,8,2959,2960,2878,2875,43,2958,2959,2875,2874,0,3,2,7,8,2958,2959,2875,2874,43,2868,2867,2961,2960,0,3,2,7,8,2868,2867,2961,2960,43,2867,2842,2839,2961,0,3,2,7,8,2867,2842,2839,2961,43,2961,2839,2826,2883,0,3,2,7,8,2961,2839,2826,2883,43,2960,2961,2883,2878,0,3,2,7,8,2960,2961,2883,2878,43,2838,2962,2963,2841,0,3,2,7,8,2838,2962,2963,2841,43,2962,2809,2806,2963,0,3,2,7,8,2962,2809,2806,2963,43,2963,2806,2805,2827,0,3,2,7,8,2963,2806,2805,2827,43,2841,2963,2827,2826,0,3,2,7,8,2841,2963,2827,2826,43,2838,2855,2964,2962,0,3,2,7,8,2838,2855,2964,2962,43,2855,2847,2844,2964,0,3,2,7,8,2855,2847,2844,2964,43,2964,2844,2811,2810,0,3,2,7,8,2964,2844,2811,2810,43,2962,2964,2810,2809,0,3,2,7,8,2962,2964,2810,2809,43,2804,2803,2965,2966,0,3,2,7,8,2804,2803,2965,2966,43,2803,2802,2812,2965,0,3,2,7,8,2803,2802,2812,2965,43,2965,2812,2811,2846,0,3,2,7,8,2965,2812,2811,2846,43,2966,2965,2846,2851,0,3,2,7,8,2966,2965,2846,2851,43,116,2967,2968,117,0,3,2,7,8,116,2967,2968,117,43,2967,2804,2966,2968,0,3,2,7,8,2967,2804,2966,2968,43,2968,2966,2851,2853,0,3,2,7,8,2968,2966,2851,2853,43,117,2968,2853,107,0,3,2,7,8,117,2968,2853,107,43,2969,2970,2971,2972,0,3,2,7,8,2969,2970,2971,2972,43,2970,2973,2974,2971,0,3,2,7,8,2970,2973,2974,2971,43,2971,2974,2975,2976,0,3,2,7,8,2971,2974,2975,2976,43,2972,2971,2976,2977,0,3,2,7,8,2972,2971,2976,2977,43,2978,2979,2980,2981,0,3,2,7,8,2978,2979,2980,2981,43,2979,2796,2799,2980,0,3,2,7,8,2979,2796,2799,2980,43,2980,2799,2804,2982,0,3,2,7,8,2980,2799,2804,2982,43,2981,2980,2982,2975,0,3,2,7,8,2981,2980,2982,2975,43,2975,2982,2983,2984,0,3,2,7,8,2975,2982,2983,2984,43,2982,2804,2967,2983,0,3,2,7,8,2982,2804,2967,2983,43,2983,2967,116,127,0,3,2,7,8,2983,2967,116,127,43,2984,2983,127,126,0,3,2,7,8,2984,2983,127,126,43,2977,2976,2985,2986,0,3,2,7,8,2977,2976,2985,2986,43,2976,2975,2984,2985,0,3,2,7,8,2976,2975,2984,2985,43,2985,2984,126,131,0,3,2,7,8,2985,2984,126,131,43,2986,2985,131,130,0,3,2,7,8,2986,2985,131,130,43,2987,2988,2989,2990,0,3,2,7,8,2987,2988,2989,2990,43,2988,2991,2992,2989,0,3,2,7,8,2988,2991,2992,2989,43,2989,2992,2973,2993,0,3,2,7,8,2989,2992,2973,2993,43,2990,2989,2993,2994,0,3,2,7,8,2990,2989,2993,2994,43,2260,2995,2996,2261,0,3,2,7,8,2260,2995,2996,2261,43,2995,2997,2998,2996,0,3,2,7,8,2995,2997,2998,2996,43,2996,2998,2987,2999,0,3,2,7,8,2996,2998,2987,2999,43,2261,2996,2999,2262,0,3,2,7,8,2261,2996,2999,2262,43,2268,2825,3000,2269,0,3,2,7,8,2268,2825,3000,2269,43,2825,2820,3001,3000,0,3,2,7,8,2825,2820,3001,3000,43,3000,3001,2997,2995,0,3,2,7,8,3000,3001,2997,2995,43,2269,3000,2995,2260,0,3,2,7,8,2269,3000,2995,2260,43,2978,3002,3003,2979,0,3,2,7,8,2978,3002,3003,2979,43,3002,2997,3001,3003,0,3,2,7,8,3002,2997,3001,3003,43,3003,3001,2820,2819,0,3,2,7,8,3003,3001,2820,2819,43,2979,3003,2819,2796,0,3,2,7,8,2979,3003,2819,2796,43,2978,3004,3005,3002,0,3,2,7,8,2978,3004,3005,3002,43,3004,2991,2988,3005,0,3,2,7,8,3004,2991,2988,3005,43,3005,2988,2987,2998,0,3,2,7,8,3005,2988,2987,2998,43,3002,3005,2998,2997,0,3,2,7,8,3002,3005,2998,2997,43,2973,2992,3006,2974,0,3,2,7,8,2973,2992,3006,2974,43,2992,2991,3004,3006,0,3,2,7,8,2992,2991,3004,3006,43,3006,3004,2978,2981,0,3,2,7,8,3006,3004,2978,2981,43,2974,3006,2981,2975,0,3,2,7,8,2974,3006,2981,2975,43,2969,3007,3008,3009,0,3,2,7,8,2969,3007,3008,3009,43,3007,3010,3011,3008,0,3,2,7,8,3007,3010,3011,3008,43,3008,3011,3012,3013,0,3,2,7,8,3008,3011,3012,3013,43,3009,3008,3013,3014,0,3,2,7,8,3009,3008,3013,3014,43,2253,2263,3015,2254,0,3,2,7,8,2253,2263,3015,2254,43,2263,2262,3016,3015,0,3,2,7,8,2263,2262,3016,3015,43,3015,3016,3017,3018,0,3,2,7,8,3015,3016,3017,3018,43,2254,3015,3018,2255,0,3,2,7,8,2254,3015,3018,2255,43,2262,2999,3019,3016,0,3,2,7,8,2262,2999,3019,3016,43,2999,2987,2990,3019,0,3,2,7,8,2999,2987,2990,3019,43,3019,2990,2994,3020,0,3,2,7,8,3019,2990,2994,3020,43,3016,3019,3020,3017,0,3,2,7,8,3016,3019,3020,3017,43,3021,3022,3023,3024,0,3,2,7,8,3021,3022,3023,3024,43,3022,3025,3026,3023,0,3,2,7,8,3022,3025,3026,3023,43,3023,3026,2304,2307,0,3,2,7,8,3023,3026,2304,2307,43,3024,3023,2307,2279,0,3,2,7,8,3024,3023,2307,2279,43,2211,3027,3028,2216,0,3,2,7,8,2211,3027,3028,2216,43,3027,3021,3024,3028,0,3,2,7,8,3027,3021,3024,3028,43,3028,3024,2279,2276,0,3,2,7,8,3028,3024,2279,2276,43,2216,3028,2276,2217,0,3,2,7,8,2216,3028,2276,2217,43,2211,2210,3029,3027,0,3,2,7,8,2211,2210,3029,3027,43,2210,2182,2251,3029,0,3,2,7,8,2210,2182,2251,3029,43,3029,2251,2255,3030,0,3,2,7,8,3029,2251,2255,3030,43,3027,3029,3030,3021,0,3,2,7,8,3027,3029,3030,3021,43,2255,3018,3031,3030,0,3,2,7,8,2255,3018,3031,3030,43,3018,3017,3032,3031,0,3,2,7,8,3018,3017,3032,3031,43,3031,3032,3025,3022,0,3,2,7,8,3031,3032,3025,3022,43,3030,3031,3022,3021,0,3,2,7,8,3030,3031,3022,3021,43,3025,3033,3034,3026,0,3,2,7,8,3025,3033,3034,3026,43,3033,3014,3013,3034,0,3,2,7,8,3033,3014,3013,3034,43,3034,3013,3012,3035,0,3,2,7,8,3034,3013,3012,3035,43,3026,3034,3035,2304,0,3,2,7,8,3026,3034,3035,2304,43,3017,3020,3036,3032,0,3,2,7,8,3017,3020,3036,3032,43,3020,2994,3037,3036,0,3,2,7,8,3020,2994,3037,3036,43,3036,3037,3014,3033,0,3,2,7,8,3036,3037,3014,3033,43,3032,3036,3033,3025,0,3,2,7,8,3032,3036,3033,3025,43,2969,3009,3038,2970,0,3,2,7,8,2969,3009,3038,2970,43,3009,3014,3037,3038,0,3,2,7,8,3009,3014,3037,3038,43,3038,3037,2994,2993,0,3,2,7,8,3038,3037,2994,2993,43,2970,3038,2993,2973,0,3,2,7,8,2970,3038,2993,2973,43,3039,3040,3041,3042,0,3,2,7,8,3039,3040,3041,3042,43,3040,3010,3007,3041,0,3,2,7,8,3040,3010,3007,3041,43,3041,3007,2969,2972,0,3,2,7,8,3041,3007,2969,2972,43,3042,3041,2972,2977,0,3,2,7,8,3042,3041,2972,2977,43,2977,3043,3044,3042,0,3,2,7,8,2977,3043,3044,3042,43,3043,3045,3046,3044,0,3,2,7,8,3043,3045,3046,3044,43,3042,3044,3046,3039,0,3,2,7,8,3042,3044,3046,3039,43,2653,3047,3048,2784,0,3,2,7,8,2653,3047,3048,2784,43,3047,2156,2158,3048,0,3,2,7,8,3047,2156,2158,3048,43,3048,2158,2144,3049,0,3,2,7,8,3048,2158,2144,3049,43,2784,3048,3049,2785,0,3,2,7,8,2784,3048,3049,2785,43,2651,3050,3051,2652,0,3,2,7,8,2651,3050,3051,2652,43,3050,2148,2151,3051,0,3,2,7,8,3050,2148,2151,3051,43,3051,2151,2156,3047,0,3,2,7,8,3051,2151,2156,3047,43,2652,3051,3047,2653,0,3,2,7,8,2652,3051,3047,2653,43,2403,2402,3052,2666,0,3,2,7,8,2403,2402,3052,2666,43,2402,2401,3053,3052,0,3,2,7,8,2402,2401,3053,3052,43,3052,3053,2148,3050,0,3,2,7,8,3052,3053,2148,3050,43,2666,3052,3050,2651,0,3,2,7,8,2666,3052,3050,2651,43,2401,2408,3054,3053,0,3,2,7,8,2401,2408,3054,3053,43,2408,2319,2316,3054,0,3,2,7,8,2408,2319,2316,3054,43,3054,2316,2152,2149,0,3,2,7,8,3054,2316,2152,2149,43,3053,3054,2149,2148,0,3,2,7,8,3053,3054,2149,2148,43,3055,3056,3057,3058,0,3,2,7,8,3055,3056,3057,3058,43,3056,3059,3060,3057,0,3,2,7,8,3056,3059,3060,3057,43,3057,3060,3039,3061,0,3,2,7,8,3057,3060,3039,3061,43,3058,3057,3061,3062,0,3,2,7,8,3058,3057,3061,3062,43,3012,3063,3064,3035,0,3,2,7,8,3012,3063,3064,3035,43,3063,3059,3065,3064,0,3,2,7,8,3063,3059,3065,3064,43,3064,3065,2308,2305,0,3,2,7,8,3064,3065,2308,2305,43,3035,3064,2305,2304,0,3,2,7,8,3035,3064,2305,2304,43,3059,3063,3066,3060,0,3,2,7,8,3059,3063,3066,3060,43,3063,3012,3011,3066,0,3,2,7,8,3063,3012,3011,3066,43,3066,3011,3010,3040,0,3,2,7,8,3066,3011,3010,3040,43,3060,3066,3040,3039,0,3,2,7,8,3060,3066,3040,3039,43,2308,3067,3068,2309,0,3,2,7,8,2308,3067,3068,2309,43,3067,3069,3070,3068,0,3,2,7,8,3067,3069,3070,3068,43,3068,3070,2409,2419,0,3,2,7,8,3068,3070,2409,2419,43,2309,3068,2419,2281,0,3,2,7,8,2309,3068,2419,2281,43,3059,3056,3071,3065,0,3,2,7,8,3059,3056,3071,3065,43,3056,3055,3072,3071,0,3,2,7,8,3056,3055,3072,3071,43,3071,3072,3069,3067,0,3,2,7,8,3071,3072,3069,3067,43,3065,3071,3067,2308,0,3,2,7,8,3065,3071,3067,2308,43,2146,3073,3074,3075,0,3,2,7,8,2146,3073,3074,3075,43,3073,3055,3058,3074,0,3,2,7,8,3073,3055,3058,3074,43,3074,3058,3062,3076,0,3,2,7,8,3074,3058,3062,3076,43,3075,3074,3076,3045,0,3,2,7,8,3075,3074,3076,3045,43,2795,2794,3077,3078,0,3,2,7,8,2795,2794,3077,3078,43,2794,2632,2789,3077,0,3,2,7,8,2794,2632,2789,3077,43,3077,2789,2785,3079,0,3,2,7,8,3077,2789,2785,3079,43,3078,3077,3079,3080,0,3,2,7,8,3078,3077,3079,3080,43,2785,3049,3081,3079,0,3,2,7,8,2785,3049,3081,3079,43,3049,2144,2141,3081,0,3,2,7,8,3049,2144,2141,3081,43,2140,3082,3081,2141,0,3,2,7,8,2140,3082,3081,2141,43,3079,3081,3082,3080,0,3,2,7,8,3079,3081,3082,3080,43,2860,2863,3083,3084,0,3,2,7,8,2860,2863,3083,3084,43,2863,2865,2927,3083,0,3,2,7,8,2863,2865,2927,3083,43,3083,2927,2931,3085,0,3,2,7,8,3083,2927,2931,3085,43,3084,3083,3085,2937,0,3,2,7,8,3084,3083,3085,2937,43,2922,2939,3086,2955,0,3,2,7,8,2922,2939,3086,2955,43,2939,2932,2935,3086,0,3,2,7,8,2939,2932,2935,3086,43,3086,2935,2937,3085,0,3,2,7,8,3086,2935,2937,3085,43,2955,3086,3085,2931,0,3,2,7,8,2955,3086,3085,2931,43,70,3087,3088,3089,0,3,2,7,8,70,3087,3088,3089,43,3087,2937,2936,3088,0,3,2,7,8,3087,2937,2936,3088,43,3088,2936,2613,2791,0,3,2,7,8,3088,2936,2613,2791,43,3089,3088,2791,2790,0,3,2,7,8,3089,3088,2791,2790,43,2860,3084,3090,3091,0,3,2,7,8,2860,3084,3090,3091,43,3084,2937,3087,3090,0,3,2,7,8,3084,2937,3087,3090,43,3090,3087,70,69,0,3,2,7,8,3090,3087,70,69,43,3091,3090,69,68,0,3,2,7,8,3091,3090,69,68,43,2849,2861,3092,2854,0,3,2,7,8,2849,2861,3092,2854,43,2861,2860,3091,3092,0,3,2,7,8,2861,2860,3091,3092,43,2854,3092,3091,68,0,3,2,7,8,2854,3092,3091,68,43,2146,3075,3093,2147,0,3,2,7,8,2146,3075,3093,2147,43,3075,3045,3094,3093,0,3,2,7,8,3075,3045,3094,3093,43,3093,3094,775,772,0,3,2,7,8,3093,3094,775,772,43,2147,3093,772,771,0,3,2,7,8,2147,3093,772,771,43,775,3094,3095,778,0,3,2,7,8,775,3094,3095,778,43,3094,3045,3043,3095,0,3,2,7,8,3094,3045,3043,3095,43,3095,3043,2977,2986,0,3,2,7,8,3095,3043,2977,2986,43,778,3095,2986,130,0,3,2,7,8,778,3095,2986,130,43,3039,3046,3096,3061,0,3,2,7,8,3039,3046,3096,3061,43,3046,3045,3076,3096,0,3,2,7,8,3046,3045,3076,3096,43,3061,3096,3076,3062,0,3,2,7,8,3061,3096,3076,3062,43,2154,2346,3097,3098,0,3,2,7,8,2154,2346,3097,3098,43,2346,2345,2410,3097,0,3,2,7,8,2346,2345,2410,3097,43,3097,2410,2409,3070,0,3,2,7,8,3097,2410,2409,3070,43,3098,3097,3070,3069,0,3,2,7,8,3098,3097,3070,3069,43,3069,3099,3100,3098,0,3,2,7,8,3069,3099,3100,3098,43,3099,2146,2159,3100,0,3,2,7,8,3099,2146,2159,3100,43,3098,3100,2159,2154,0,3,2,7,8,3098,3100,2159,2154,43,2146,3099,3101,3073,0,3,2,7,8,2146,3099,3101,3073,43,3099,3069,3072,3101,0,3,2,7,8,3099,3069,3072,3101,43,3073,3101,3072,3055,0,3,2,7,8,3073,3101,3072,3055,43,3102,3103,3104,3105,0,3,2,7,8,3102,3103,3104,3105,43,3103,3106,3107,3104,0,3,2,7,8,3103,3106,3107,3104,43,3104,3107,3108,3109,0,3,2,7,8,3104,3107,3108,3109,43,3105,3104,3109,1496,0,3,2,7,8,3105,3104,3109,1496,43,3110,3111,3112,3113,0,3,2,7,8,3110,3111,3112,3113,43,3111,3114,3115,3112,0,3,2,7,8,3111,3114,3115,3112,43,3112,3115,3116,3117,0,3,2,7,8,3112,3115,3116,3117,43,3113,3112,3117,3118,0,3,2,7,8,3113,3112,3117,3118,43,3102,3119,3120,3103,0,3,2,7,8,3102,3119,3120,3103,43,3119,3110,3113,3120,0,3,2,7,8,3119,3110,3113,3120,43,3120,3113,3118,3121,0,3,2,7,8,3120,3113,3118,3121,43,3103,3120,3121,3106,0,3,2,7,8,3103,3120,3121,3106,43,3122,3123,3124,3125,0,3,2,7,8,3122,3123,3124,3125,43,3123,3126,3127,3124,0,3,2,7,8,3123,3126,3127,3124,43,3124,3127,1728,1739,0,3,2,7,8,3124,3127,1728,1739,43,3125,3124,1739,1738,0,3,2,7,8,3125,3124,1739,1738,43,1730,1729,3128,1731,0,3,2,7,8,1730,1729,3128,1731,43,1729,1728,3127,3128,0,3,2,7,8,1729,1728,3127,3128,43,3128,3127,3126,3129,0,3,2,7,8,3128,3127,3126,3129,43,1731,3128,3129,1808,0,3,2,7,8,1731,3128,3129,1808,43,3130,3131,3132,3133,0,3,2,7,8,3130,3131,3132,3133,43,3131,1808,3129,3132,0,3,2,7,8,3131,1808,3129,3132,43,3132,3129,3126,3134,0,3,2,7,8,3132,3129,3126,3134,43,3133,3132,3134,3135,0,3,2,7,8,3133,3132,3134,3135,43,3136,3137,3138,3139,0,3,2,7,8,3136,3137,3138,3139,43,3137,3140,3141,3138,0,3,2,7,8,3137,3140,3141,3138,43,3138,3141,3142,3143,0,3,2,7,8,3138,3141,3142,3143,43,3139,3138,3143,3144,0,3,2,7,8,3139,3138,3143,3144,43,3142,3145,3146,3147,0,3,2,7,8,3142,3145,3146,3147,43,3145,3148,3149,3146,0,3,2,7,8,3145,3148,3149,3146,43,3146,3149,3150,3151,0,3,2,7,8,3146,3149,3150,3151,43,3147,3146,3151,3152,0,3,2,7,8,3147,3146,3151,3152,43,3153,3154,3155,3156,0,3,2,7,8,3153,3154,3155,3156,43,3154,3130,3157,3155,0,3,2,7,8,3154,3130,3157,3155,43,3155,3157,3158,3159,0,3,2,7,8,3155,3157,3158,3159,43,3156,3155,3159,3160,0,3,2,7,8,3156,3155,3159,3160,43,3160,3159,3161,3162,0,3,2,7,8,3160,3159,3161,3162,43,3159,3158,3163,3161,0,3,2,7,8,3159,3158,3163,3161,43,3161,3163,3140,3164,0,3,2,7,8,3161,3163,3140,3164,43,3162,3161,3164,3165,0,3,2,7,8,3162,3161,3164,3165,43,3158,3157,3166,3167,0,3,2,7,8,3158,3157,3166,3167,43,3157,3130,3133,3166,0,3,2,7,8,3157,3130,3133,3166,43,3166,3133,3135,3168,0,3,2,7,8,3166,3133,3135,3168,43,3167,3166,3168,3148,0,3,2,7,8,3167,3166,3168,3148,43,3140,3163,3169,3141,0,3,2,7,8,3140,3163,3169,3141,43,3163,3158,3167,3169,0,3,2,7,8,3163,3158,3167,3169,43,3169,3167,3148,3145,0,3,2,7,8,3169,3167,3148,3145,43,3141,3169,3145,3142,0,3,2,7,8,3141,3169,3145,3142,43,3144,3143,3170,3171,0,3,2,7,8,3144,3143,3170,3171,43,3143,3142,3147,3170,0,3,2,7,8,3143,3142,3147,3170,43,3170,3147,3152,3172,0,3,2,7,8,3170,3147,3152,3172,43,3171,3170,3172,3173,0,3,2,7,8,3171,3170,3172,3173,43,3173,3172,3174,3175,0,3,2,7,8,3173,3172,3174,3175,43,3172,3152,3176,3174,0,3,2,7,8,3172,3152,3176,3174,43,3174,3176,3177,3178,0,3,2,7,8,3174,3176,3177,3178,43,3175,3174,3178,3179,0,3,2,7,8,3175,3174,3178,3179,43,3152,3151,3180,3176,0,3,2,7,8,3152,3151,3180,3176,43,3151,3150,3181,3180,0,3,2,7,8,3151,3150,3181,3180,43,3180,3181,3182,3183,0,3,2,7,8,3180,3181,3182,3183,43,3176,3180,3183,3177,0,3,2,7,8,3176,3180,3183,3177,43,3184,3185,3186,3187,0,3,2,7,8,3184,3185,3186,3187,43,3185,1752,1751,3186,0,3,2,7,8,3185,1752,1751,3186,43,3186,1751,1750,3188,0,3,2,7,8,3186,1751,1750,3188,43,3187,3186,3188,3189,0,3,2,7,8,3187,3186,3188,3189,43,3189,3190,3191,3187,0,3,2,7,8,3189,3190,3191,3187,43,3190,3192,3193,3191,0,3,2,7,8,3190,3192,3193,3191,43,3191,3193,3194,3195,0,3,2,7,8,3191,3193,3194,3195,43,3187,3191,3195,3184,0,3,2,7,8,3187,3191,3195,3184,43,3194,3196,3197,3195,0,3,2,7,8,3194,3196,3197,3195,43,3196,3198,3199,3197,0,3,2,7,8,3196,3198,3199,3197,43,3197,3199,3122,3200,0,3,2,7,8,3197,3199,3122,3200,43,3195,3197,3200,3184,0,3,2,7,8,3195,3197,3200,3184,43,3182,3201,3202,3203,0,3,2,7,8,3182,3201,3202,3203,43,3201,3194,3193,3202,0,3,2,7,8,3201,3194,3193,3202,43,3202,3193,3192,3204,0,3,2,7,8,3202,3193,3192,3204,43,3203,3202,3204,3205,0,3,2,7,8,3203,3202,3204,3205,43,3150,3206,3207,3181,0,3,2,7,8,3150,3206,3207,3181,43,3206,3198,3196,3207,0,3,2,7,8,3206,3198,3196,3207,43,3207,3196,3194,3201,0,3,2,7,8,3207,3196,3194,3201,43,3181,3207,3201,3182,0,3,2,7,8,3181,3207,3201,3182,43,3150,3149,3208,3206,0,3,2,7,8,3150,3149,3208,3206,43,3149,3148,3168,3208,0,3,2,7,8,3149,3148,3168,3208,43,3208,3168,3135,3209,0,3,2,7,8,3208,3168,3135,3209,43,3206,3208,3209,3198,0,3,2,7,8,3206,3208,3209,3198,43,3135,3134,3210,3209,0,3,2,7,8,3135,3134,3210,3209,43,3134,3126,3123,3210,0,3,2,7,8,3134,3126,3123,3210,43,3210,3123,3122,3199,0,3,2,7,8,3210,3123,3122,3199,43,3209,3210,3199,3198,0,3,2,7,8,3209,3210,3199,3198,43,3122,3125,3211,3200,0,3,2,7,8,3122,3125,3211,3200,43,3125,1738,1754,3211,0,3,2,7,8,3125,1738,1754,3211,43,3211,1754,1752,3185,0,3,2,7,8,3211,1754,1752,3185,43,3200,3211,3185,3184,0,3,2,7,8,3200,3211,3185,3184,43,3212,3213,3214,3215,0,3,2,7,8,3212,3213,3214,3215,43,3213,3136,3139,3214,0,3,2,7,8,3213,3136,3139,3214,43,3214,3139,3144,3216,0,3,2,7,8,3214,3139,3144,3216,43,3215,3214,3216,3217,0,3,2,7,8,3215,3214,3216,3217,43,3218,3219,3220,3221,0,3,2,7,8,3218,3219,3220,3221,43,3219,3222,3223,3220,0,3,2,7,8,3219,3222,3223,3220,43,3220,3223,3224,3225,0,3,2,7,8,3220,3223,3224,3225,43,3221,3220,3225,3212,0,3,2,7,8,3221,3220,3225,3212,43,3222,3226,3227,3223,0,3,2,7,8,3222,3226,3227,3223,43,3226,3228,3229,3227,0,3,2,7,8,3226,3228,3229,3227,43,3227,3229,3230,3231,0,3,2,7,8,3227,3229,3230,3231,43,3223,3227,3231,3224,0,3,2,7,8,3223,3227,3231,3224,43,3232,3233,3234,3235,0,3,2,7,8,3232,3233,3234,3235,43,3233,1805,1804,3234,0,3,2,7,8,3233,1805,1804,3234,43,3234,1804,1803,3236,0,3,2,7,8,3234,1804,1803,3236,43,3235,3234,3236,3237,0,3,2,7,8,3235,3234,3236,3237,43,3238,3239,3240,3241,0,3,2,7,8,3238,3239,3240,3241,43,3239,3242,3243,3240,0,3,2,7,8,3239,3242,3243,3240,43,3240,3243,3179,3244,0,3,2,7,8,3240,3243,3179,3244,43,3241,3240,3244,3245,0,3,2,7,8,3241,3240,3244,3245,43,3189,3188,3246,3247,0,3,2,7,8,3189,3188,3246,3247,43,3188,1750,1912,3246,0,3,2,7,8,3188,1750,1912,3246,43,3246,1912,1911,1917,0,3,2,7,8,3246,1912,1911,1917,43,3247,3246,1917,1770,0,3,2,7,8,3247,3246,1917,1770,43,3248,3249,3250,3251,0,3,2,7,8,3248,3249,3250,3251,43,3249,3189,3247,3250,0,3,2,7,8,3249,3189,3247,3250,43,3251,3250,3247,1770,0,3,2,7,8,3251,3250,3247,1770,43,3252,3253,3254,3255,0,3,2,7,8,3252,3253,3254,3255,43,3253,3232,3256,3254,0,3,2,7,8,3253,3232,3256,3254,43,3254,3256,3257,3258,0,3,2,7,8,3254,3256,3257,3258,43,3255,3254,3258,3259,0,3,2,7,8,3255,3254,3258,3259,43,1785,1788,3260,3261,0,3,2,7,8,1785,1788,3260,3261,43,1788,1793,3262,3260,0,3,2,7,8,1788,1793,3262,3260,43,3260,3262,3263,3264,0,3,2,7,8,3260,3262,3263,3264,43,3261,3260,3264,3265,0,3,2,7,8,3261,3260,3264,3265,43,3238,3266,3267,3239,0,3,2,7,8,3238,3266,3267,3239,43,3266,3268,3269,3267,0,3,2,7,8,3266,3268,3269,3267,43,3267,3269,3270,3271,0,3,2,7,8,3267,3269,3270,3271,43,3239,3267,3271,3242,0,3,2,7,8,3239,3267,3271,3242,43,3272,3273,3274,3275,0,3,2,7,8,3272,3273,3274,3275,43,3273,3265,3264,3274,0,3,2,7,8,3273,3265,3264,3274,43,3274,3264,3263,3276,0,3,2,7,8,3274,3264,3263,3276,43,3275,3274,3276,3277,0,3,2,7,8,3275,3274,3276,3277,43,3278,3279,3280,3281,0,3,2,7,8,3278,3279,3280,3281,43,3279,3282,3283,3280,0,3,2,7,8,3279,3282,3283,3280,43,3280,3283,3114,3284,0,3,2,7,8,3280,3283,3114,3284,43,3281,3280,3284,3285,0,3,2,7,8,3281,3280,3284,3285,43,3286,3287,3288,3289,0,3,2,7,8,3286,3287,3288,3289,43,3287,3290,3291,3288,0,3,2,7,8,3287,3290,3291,3288,43,3289,3288,3291,1784,0,3,2,7,8,3289,3288,3291,1784,43,3286,3292,3293,3287,0,3,2,7,8,3286,3292,3293,3287,43,3292,3294,3295,3293,0,3,2,7,8,3292,3294,3295,3293,43,3287,3293,3295,3290,0,3,2,7,8,3287,3293,3295,3290,43,3296,3297,3298,3299,0,3,2,7,8,3296,3297,3298,3299,43,3297,3300,3301,3298,0,3,2,7,8,3297,3300,3301,3298,43,3298,3301,3302,3303,0,3,2,7,8,3298,3301,3302,3303,43,3299,3298,3303,3304,0,3,2,7,8,3299,3298,3303,3304,43,3110,3305,3306,3111,0,3,2,7,8,3110,3305,3306,3111,43,3305,3307,3308,3306,0,3,2,7,8,3305,3307,3308,3306,43,3306,3308,3285,3284,0,3,2,7,8,3306,3308,3285,3284,43,3111,3306,3284,3114,0,3,2,7,8,3111,3306,3284,3114,43,3309,3310,3311,3312,0,3,2,7,8,3309,3310,3311,3312,43,3310,3313,3314,3311,0,3,2,7,8,3310,3313,3314,3311,43,3311,3314,3302,3301,0,3,2,7,8,3311,3314,3302,3301,43,3312,3311,3301,3300,0,3,2,7,8,3312,3311,3301,3300,43,3315,3316,3317,3318,0,3,2,7,8,3315,3316,3317,3318,43,3316,3319,3320,3317,0,3,2,7,8,3316,3319,3320,3317,43,3317,3320,3321,3322,0,3,2,7,8,3317,3320,3321,3322,43,3318,3317,3322,3323,0,3,2,7,8,3318,3317,3322,3323,43,3324,3325,3326,3327,0,3,2,7,8,3324,3325,3326,3327,43,3325,3328,3329,3326,0,3,2,7,8,3325,3328,3329,3326,43,3326,3329,3330,3331,0,3,2,7,8,3326,3329,3330,3331,43,3327,3326,3331,3332,0,3,2,7,8,3327,3326,3331,3332,42,3286,3333,3334,0,2,5,6,3286,3333,3334,43,3333,3328,3325,3334,0,3,2,7,8,3333,3328,3325,3334,42,3334,3325,3324,0,2,5,6,3334,3325,3324,43,3286,3334,3335,3292,0,3,2,7,8,3286,3334,3335,3292,43,3334,3324,3336,3335,0,3,2,7,8,3334,3324,3336,3335,43,3292,3335,3336,3294,0,3,2,7,8,3292,3335,3336,3294,43,3337,3338,3339,3340,0,3,2,7,8,3337,3338,3339,3340,43,3338,3341,3342,3339,0,3,2,7,8,3338,3341,3342,3339,43,3339,3342,3324,3327,0,3,2,7,8,3339,3342,3324,3327,43,3340,3339,3327,3332,0,3,2,7,8,3340,3339,3327,3332,43,3341,3343,3344,3342,0,3,2,7,8,3341,3343,3344,3342,43,3343,3345,3346,3344,0,3,2,7,8,3343,3345,3346,3344,43,3344,3346,3294,3336,0,3,2,7,8,3344,3346,3294,3336,43,3342,3344,3336,3324,0,3,2,7,8,3342,3344,3336,3324,43,3315,3347,3348,3349,0,3,2,7,8,3315,3347,3348,3349,43,3347,3350,3351,3348,0,3,2,7,8,3347,3350,3351,3348,43,3348,3351,3341,3338,0,3,2,7,8,3348,3351,3341,3338,43,3349,3348,3338,3337,0,3,2,7,8,3349,3348,3338,3337,43,3352,3353,3354,3355,0,3,2,7,8,3352,3353,3354,3355,43,3353,3345,3343,3354,0,3,2,7,8,3353,3345,3343,3354,43,3354,3343,3341,3351,0,3,2,7,8,3354,3343,3341,3351,43,3355,3354,3351,3350,0,3,2,7,8,3355,3354,3351,3350,43,3356,3357,3358,3359,0,3,2,7,8,3356,3357,3358,3359,43,3357,3360,3361,3358,0,3,2,7,8,3357,3360,3361,3358,43,3358,3361,3362,3363,0,3,2,7,8,3358,3361,3362,3363,43,3359,3358,3363,3364,0,3,2,7,8,3359,3358,3363,3364,43,3282,3365,3366,3367,0,3,2,7,8,3282,3365,3366,3367,43,3365,3368,3369,3366,0,3,2,7,8,3365,3368,3369,3366,43,3366,3369,3360,3357,0,3,2,7,8,3366,3369,3360,3357,43,3367,3366,3357,3356,0,3,2,7,8,3367,3366,3357,3356,43,3285,3308,3370,3371,0,3,2,7,8,3285,3308,3370,3371,43,3308,3307,3372,3370,0,3,2,7,8,3308,3307,3372,3370,43,3370,3372,3373,3374,0,3,2,7,8,3370,3372,3373,3374,43,3371,3370,3374,3375,0,3,2,7,8,3371,3370,3374,3375,43,3278,3281,3376,3377,0,3,2,7,8,3278,3281,3376,3377,43,3281,3285,3371,3376,0,3,2,7,8,3281,3285,3371,3376,43,3376,3371,3375,3378,0,3,2,7,8,3376,3371,3375,3378,43,3377,3376,3378,3379,0,3,2,7,8,3377,3376,3378,3379,43,3375,3374,3380,3381,0,3,2,7,8,3375,3374,3380,3381,43,3374,3373,3382,3380,0,3,2,7,8,3374,3373,3382,3380,43,3380,3382,3238,3241,0,3,2,7,8,3380,3382,3238,3241,43,3381,3380,3241,3245,0,3,2,7,8,3381,3380,3241,3245,43,3205,3383,3384,3385,0,3,2,7,8,3205,3383,3384,3385,43,3383,3386,3387,3384,0,3,2,7,8,3383,3386,3387,3384,43,3384,3387,3379,3388,0,3,2,7,8,3384,3387,3379,3388,43,3385,3384,3388,3389,0,3,2,7,8,3385,3384,3388,3389,43,3177,3183,3390,3391,0,3,2,7,8,3177,3183,3390,3391,43,3183,3182,3203,3390,0,3,2,7,8,3183,3182,3203,3390,43,3390,3203,3205,3385,0,3,2,7,8,3390,3203,3205,3385,43,3391,3390,3385,3389,0,3,2,7,8,3391,3390,3385,3389,43,3177,3391,3392,3178,0,3,2,7,8,3177,3391,3392,3178,43,3391,3389,3393,3392,0,3,2,7,8,3391,3389,3393,3392,43,3392,3393,3245,3244,0,3,2,7,8,3392,3393,3245,3244,43,3178,3392,3244,3179,0,3,2,7,8,3178,3392,3244,3179,43,3379,3378,3394,3388,0,3,2,7,8,3379,3378,3394,3388,43,3378,3375,3381,3394,0,3,2,7,8,3378,3375,3381,3394,43,3394,3381,3245,3393,0,3,2,7,8,3394,3381,3245,3393,43,3388,3394,3393,3389,0,3,2,7,8,3388,3394,3393,3389,43,3379,3387,3395,3377,0,3,2,7,8,3379,3387,3395,3377,43,3387,3386,3396,3395,0,3,2,7,8,3387,3386,3396,3395,43,3395,3396,3397,3398,0,3,2,7,8,3395,3396,3397,3398,43,3377,3395,3398,3278,0,3,2,7,8,3377,3395,3398,3278,43,3294,3346,3399,3400,0,3,2,7,8,3294,3346,3399,3400,43,3346,3345,3353,3399,0,3,2,7,8,3346,3345,3353,3399,43,3399,3353,3352,3401,0,3,2,7,8,3399,3353,3352,3401,43,3400,3399,3401,3402,0,3,2,7,8,3400,3399,3401,3402,43,3290,3295,3403,3404,0,3,2,7,8,3290,3295,3403,3404,43,3295,3294,3400,3403,0,3,2,7,8,3295,3294,3400,3403,43,3404,3403,3400,3402,0,3,2,7,8,3404,3403,3400,3402,43,3405,3406,3407,3408,0,3,2,7,8,3405,3406,3407,3408,43,3406,3409,3410,3407,0,3,2,7,8,3406,3409,3410,3407,43,3407,3410,3368,3411,0,3,2,7,8,3407,3410,3368,3411,43,3408,3407,3411,3397,0,3,2,7,8,3408,3407,3411,3397,43,3290,3404,3412,3413,0,3,2,7,8,3290,3404,3412,3413,43,3404,3402,3414,3412,0,3,2,7,8,3404,3402,3414,3412,43,3412,3414,3409,3406,0,3,2,7,8,3412,3414,3409,3406,43,3413,3412,3406,3405,0,3,2,7,8,3413,3412,3406,3405,43,3248,3415,3416,3249,0,3,2,7,8,3248,3415,3416,3249,43,3415,3417,3418,3416,0,3,2,7,8,3415,3417,3418,3416,43,3416,3418,3192,3190,0,3,2,7,8,3416,3418,3192,3190,43,3249,3416,3190,3189,0,3,2,7,8,3249,3416,3190,3189,43,3205,3204,3419,3383,0,3,2,7,8,3205,3204,3419,3383,43,3204,3192,3418,3419,0,3,2,7,8,3204,3192,3418,3419,43,3419,3418,3417,3420,0,3,2,7,8,3419,3418,3417,3420,43,3383,3419,3420,3386,0,3,2,7,8,3383,3419,3420,3386,43,1778,3421,3422,1773,0,3,2,7,8,1778,3421,3422,1773,43,3421,3423,3424,3422,0,3,2,7,8,3421,3423,3424,3422,43,3422,3424,3248,3251,0,3,2,7,8,3422,3424,3248,3251,43,1773,3422,3251,1770,0,3,2,7,8,1773,3422,3251,1770,43,3405,3425,3426,3413,0,3,2,7,8,3405,3425,3426,3413,43,3425,3423,3427,3426,0,3,2,7,8,3425,3423,3427,3426,43,3413,3426,3427,3290,0,3,2,7,8,3413,3426,3427,3290,43,3423,3421,3428,3427,0,3,2,7,8,3423,3421,3428,3427,43,3421,1778,1780,3428,0,3,2,7,8,3421,1778,1780,3428,43,3428,1780,1784,3291,0,3,2,7,8,3428,1780,1784,3291,43,3427,3428,3291,3290,0,3,2,7,8,3427,3428,3291,3290,43,3248,3424,3429,3415,0,3,2,7,8,3248,3424,3429,3415,43,3424,3423,3425,3429,0,3,2,7,8,3424,3423,3425,3429,43,3429,3425,3405,3430,0,3,2,7,8,3429,3425,3405,3430,43,3415,3429,3430,3417,0,3,2,7,8,3415,3429,3430,3417,43,3386,3420,3431,3396,0,3,2,7,8,3386,3420,3431,3396,43,3420,3417,3430,3431,0,3,2,7,8,3420,3417,3430,3431,43,3431,3430,3405,3408,0,3,2,7,8,3431,3430,3405,3408,43,3396,3431,3408,3397,0,3,2,7,8,3396,3431,3408,3397,43,3278,3398,3432,3279,0,3,2,7,8,3278,3398,3432,3279,43,3398,3397,3411,3432,0,3,2,7,8,3398,3397,3411,3432,43,3432,3411,3368,3365,0,3,2,7,8,3432,3411,3368,3365,43,3279,3432,3365,3282,0,3,2,7,8,3279,3432,3365,3282,43,3368,3410,3433,3369,0,3,2,7,8,3368,3410,3433,3369,43,3410,3409,3414,3433,0,3,2,7,8,3410,3409,3414,3433,43,3433,3414,3402,3434,0,3,2,7,8,3433,3414,3402,3434,43,3369,3433,3434,3360,0,3,2,7,8,3369,3433,3434,3360,43,3360,3434,3435,3361,0,3,2,7,8,3360,3434,3435,3361,43,3434,3402,3401,3435,0,3,2,7,8,3434,3402,3401,3435,43,3435,3401,3352,3436,0,3,2,7,8,3435,3401,3352,3436,43,3361,3435,3436,3362,0,3,2,7,8,3361,3435,3436,3362,43,3362,3437,3438,3363,0,3,2,7,8,3362,3437,3438,3363,43,3437,3439,3440,3438,0,3,2,7,8,3437,3439,3440,3438,43,3438,3440,3441,3442,0,3,2,7,8,3438,3440,3441,3442,43,3363,3438,3442,3364,0,3,2,7,8,3363,3438,3442,3364,43,3439,3443,3444,3440,0,3,2,7,8,3439,3443,3444,3440,43,3443,3323,3445,3444,0,3,2,7,8,3443,3323,3445,3444,43,3444,3445,3446,3447,0,3,2,7,8,3444,3445,3446,3447,43,3440,3444,3447,3441,0,3,2,7,8,3440,3444,3447,3441,43,3362,3436,3448,3437,0,3,2,7,8,3362,3436,3448,3437,43,3436,3352,3355,3448,0,3,2,7,8,3436,3352,3355,3448,43,3448,3355,3350,3449,0,3,2,7,8,3448,3355,3350,3449,43,3437,3448,3449,3439,0,3,2,7,8,3437,3448,3449,3439,43,3350,3347,3450,3449,0,3,2,7,8,3350,3347,3450,3449,43,3347,3315,3318,3450,0,3,2,7,8,3347,3315,3318,3450,43,3450,3318,3323,3443,0,3,2,7,8,3450,3318,3323,3443,43,3449,3450,3443,3439,0,3,2,7,8,3449,3450,3443,3439,43,3323,3322,3451,3445,0,3,2,7,8,3323,3322,3451,3445,43,3322,3321,3452,3451,0,3,2,7,8,3322,3321,3452,3451,43,3451,3452,3453,3454,0,3,2,7,8,3451,3452,3453,3454,43,3445,3451,3454,3446,0,3,2,7,8,3445,3451,3454,3446,43,3455,3456,3457,3458,0,3,2,7,8,3455,3456,3457,3458,43,3456,3459,3460,3457,0,3,2,7,8,3456,3459,3460,3457,43,3457,3460,3304,3461,0,3,2,7,8,3457,3460,3304,3461,43,3458,3457,3461,3462,0,3,2,7,8,3458,3457,3461,3462,43,3304,3460,3463,3299,0,3,2,7,8,3304,3460,3463,3299,43,3460,3459,3464,3463,0,3,2,7,8,3460,3459,3464,3463,43,3463,3464,3465,3466,0,3,2,7,8,3463,3464,3465,3466,43,3299,3463,3466,3296,0,3,2,7,8,3299,3463,3466,3296,43,1799,1801,3467,3468,0,3,2,7,8,1799,1801,3467,3468,43,1801,1805,3233,3467,0,3,2,7,8,1801,1805,3233,3467,43,3467,3233,3232,3253,0,3,2,7,8,3467,3233,3232,3253,43,3468,3467,3253,3252,0,3,2,7,8,3468,3467,3253,3252,43,1793,1795,3469,3262,0,3,2,7,8,1793,1795,3469,3262,43,1795,1799,3470,3469,0,3,2,7,8,1795,1799,3470,3469,43,3262,3469,3470,3263,0,3,2,7,8,3262,3469,3470,3263,43,1799,3468,3471,3470,0,3,2,7,8,1799,3468,3471,3470,43,3468,3252,3472,3471,0,3,2,7,8,3468,3252,3472,3471,43,3471,3472,3277,3276,0,3,2,7,8,3471,3472,3277,3276,43,3470,3471,3276,3263,0,3,2,7,8,3470,3471,3276,3263,43,3153,3473,3474,3154,0,3,2,7,8,3153,3473,3474,3154,43,3473,1810,1809,3474,0,3,2,7,8,3473,1810,1809,3474,43,3474,1809,1808,3131,0,3,2,7,8,3474,1809,1808,3131,43,3154,3474,3131,3130,0,3,2,7,8,3154,3474,3131,3130,43,3153,3475,3476,3473,0,3,2,7,8,3153,3475,3476,3473,43,3475,3237,3236,3476,0,3,2,7,8,3475,3237,3236,3476,43,3476,3236,1803,1815,0,3,2,7,8,3476,3236,1803,1815,43,3473,3476,1815,1810,0,3,2,7,8,3473,3476,1815,1810,43,1822,3477,3478,1823,0,3,2,7,8,1822,3477,3478,1823,43,3477,3296,3466,3478,0,3,2,7,8,3477,3296,3466,3478,43,3478,3466,3465,3479,0,3,2,7,8,3478,3466,3465,3479,43,1823,3478,3479,1826,0,3,2,7,8,1823,3478,3479,1826,43,1826,3479,3480,1829,0,3,2,7,8,1826,3479,3480,1829,43,3479,3465,3481,3480,0,3,2,7,8,3479,3465,3481,3480,43,3480,3481,3482,3483,0,3,2,7,8,3480,3481,3482,3483,43,1829,3480,3483,1830,0,3,2,7,8,1829,3480,3483,1830,43,3484,3485,3486,3487,0,3,2,7,8,3484,3485,3486,3487,43,3485,3332,3331,3486,0,3,2,7,8,3485,3332,3331,3486,43,3486,3331,3330,3488,0,3,2,7,8,3486,3331,3330,3488,43,3487,3486,3488,3489,0,3,2,7,8,3487,3486,3488,3489,43,3455,3490,3491,3492,0,3,2,7,8,3455,3490,3491,3492,43,3490,3493,3494,3491,0,3,2,7,8,3490,3493,3494,3491,43,3491,3494,3495,3496,0,3,2,7,8,3491,3494,3495,3496,43,3492,3491,3496,3482,0,3,2,7,8,3492,3491,3496,3482,43,3497,3498,3499,3500,0,3,2,7,8,3497,3498,3499,3500,43,3498,3337,3340,3499,0,3,2,7,8,3498,3337,3340,3499,43,3499,3340,3332,3485,0,3,2,7,8,3499,3340,3332,3485,43,3500,3499,3485,3484,0,3,2,7,8,3500,3499,3485,3484,43,3319,3316,3501,3502,0,3,2,7,8,3319,3316,3501,3502,43,3316,3315,3349,3501,0,3,2,7,8,3316,3315,3349,3501,43,3501,3349,3337,3498,0,3,2,7,8,3501,3349,3337,3498,43,3502,3501,3498,3497,0,3,2,7,8,3502,3501,3498,3497,43,3321,3320,3503,3504,0,3,2,7,8,3321,3320,3503,3504,43,3320,3319,3502,3503,0,3,2,7,8,3320,3319,3502,3503,43,3503,3502,3497,3505,0,3,2,7,8,3503,3502,3497,3505,43,3504,3503,3505,3506,0,3,2,7,8,3504,3503,3505,3506,43,3506,3505,3507,3508,0,3,2,7,8,3506,3505,3507,3508,43,3505,3497,3500,3507,0,3,2,7,8,3505,3497,3500,3507,43,3507,3500,3484,3509,0,3,2,7,8,3507,3500,3484,3509,43,3508,3507,3509,3493,0,3,2,7,8,3508,3507,3509,3493,43,3493,3509,3510,3494,0,3,2,7,8,3493,3509,3510,3494,43,3509,3484,3487,3510,0,3,2,7,8,3509,3484,3487,3510,43,3510,3487,3489,3511,0,3,2,7,8,3510,3487,3489,3511,43,3494,3510,3511,3495,0,3,2,7,8,3494,3510,3511,3495,43,1784,1837,3512,3289,0,3,2,7,8,1784,1837,3512,3289,43,1837,1836,3513,3512,0,3,2,7,8,1837,1836,3513,3512,43,3512,3513,3328,3333,0,3,2,7,8,3512,3513,3328,3333,43,3289,3512,3333,3286,0,3,2,7,8,3289,3512,3333,3286,43,1836,1855,3514,3513,0,3,2,7,8,1836,1855,3514,3513,43,1855,1854,3515,3514,0,3,2,7,8,1855,1854,3515,3514,43,3514,3515,3330,3329,0,3,2,7,8,3514,3515,3330,3329,43,3513,3514,3329,3328,0,3,2,7,8,3513,3514,3329,3328,43,3489,3488,3516,3517,0,3,2,7,8,3489,3488,3516,3517,43,3488,3330,3515,3516,0,3,2,7,8,3488,3330,3515,3516,43,3516,3515,1854,1857,0,3,2,7,8,3516,3515,1854,1857,43,3517,3516,1857,1859,0,3,2,7,8,3517,3516,1857,1859,43,3495,3511,3518,3519,0,3,2,7,8,3495,3511,3518,3519,43,3511,3489,3517,3518,0,3,2,7,8,3511,3489,3517,3518,43,3518,3517,1859,1928,0,3,2,7,8,3518,3517,1859,1928,43,3519,3518,1928,1874,0,3,2,7,8,3519,3518,1928,1874,43,1830,3483,3520,1873,0,3,2,7,8,1830,3483,3520,1873,43,3483,3482,3496,3520,0,3,2,7,8,3483,3482,3496,3520,43,3520,3496,3495,3519,0,3,2,7,8,3520,3496,3495,3519,43,1873,3520,3519,1874,0,3,2,7,8,1873,3520,3519,1874,43,3465,3464,3521,3481,0,3,2,7,8,3465,3464,3521,3481,43,3464,3459,3456,3521,0,3,2,7,8,3464,3459,3456,3521,43,3521,3456,3455,3492,0,3,2,7,8,3521,3456,3455,3492,43,3481,3521,3492,3482,0,3,2,7,8,3481,3521,3492,3482,43,3462,3522,3523,3458,0,3,2,7,8,3462,3522,3523,3458,43,3522,3506,3508,3523,0,3,2,7,8,3522,3506,3508,3523,43,3523,3508,3493,3490,0,3,2,7,8,3523,3508,3493,3490,43,3458,3523,3490,3455,0,3,2,7,8,3458,3523,3490,3455,43,3462,3524,3525,3522,0,3,2,7,8,3462,3524,3525,3522,43,3524,3453,3452,3525,0,3,2,7,8,3524,3453,3452,3525,43,3525,3452,3321,3504,0,3,2,7,8,3525,3452,3321,3504,43,3522,3525,3504,3506,0,3,2,7,8,3522,3525,3504,3506,43,3446,3454,3526,3527,0,3,2,7,8,3446,3454,3526,3527,43,3454,3453,3524,3526,0,3,2,7,8,3454,3453,3524,3526,43,3526,3524,3462,3528,0,3,2,7,8,3526,3524,3462,3528,43,3527,3526,3528,3529,0,3,2,7,8,3527,3526,3528,3529,43,3530,3531,3532,3533,0,3,2,7,8,3530,3531,3532,3533,43,3531,3534,3535,3532,0,3,2,7,8,3531,3534,3535,3532,43,3532,3535,3536,3537,0,3,2,7,8,3532,3535,3536,3537,43,3533,3532,3537,3538,0,3,2,7,8,3533,3532,3537,3538,43,3539,3540,3541,3542,0,3,2,7,8,3539,3540,3541,3542,43,3540,3530,3533,3541,0,3,2,7,8,3540,3530,3533,3541,43,3541,3533,3538,3543,0,3,2,7,8,3541,3533,3538,3543,43,3542,3541,3543,3544,0,3,2,7,8,3542,3541,3543,3544,43,3545,3546,3547,3548,0,3,2,7,8,3545,3546,3547,3548,43,3546,3534,3531,3547,0,3,2,7,8,3546,3534,3531,3547,43,3547,3531,3530,3540,0,3,2,7,8,3547,3531,3530,3540,43,3548,3547,3540,3539,0,3,2,7,8,3548,3547,3540,3539,43,3549,3550,3551,3552,0,3,2,7,8,3549,3550,3551,3552,43,3550,3545,3548,3551,0,3,2,7,8,3550,3545,3548,3551,43,3551,3548,3539,3553,0,3,2,7,8,3551,3548,3539,3553,43,3552,3551,3553,3554,0,3,2,7,8,3552,3551,3553,3554,43,3554,3553,3555,3556,0,3,2,7,8,3554,3553,3555,3556,43,3553,3539,3542,3555,0,3,2,7,8,3553,3539,3542,3555,43,3555,3542,3544,3557,0,3,2,7,8,3555,3542,3544,3557,43,3556,3555,3557,3277,0,3,2,7,8,3556,3555,3557,3277,43,3544,3558,3559,3557,0,3,2,7,8,3544,3558,3559,3557,43,3558,3560,3561,3559,0,3,2,7,8,3558,3560,3561,3559,43,3559,3561,3272,3275,0,3,2,7,8,3559,3561,3272,3275,43,3557,3559,3275,3277,0,3,2,7,8,3557,3559,3275,3277,43,3544,3543,3562,3558,0,3,2,7,8,3544,3543,3562,3558,43,3543,3538,3563,3562,0,3,2,7,8,3543,3538,3563,3562,43,3562,3563,3564,3565,0,3,2,7,8,3562,3563,3564,3565,43,3558,3562,3565,3560,0,3,2,7,8,3558,3562,3565,3560,43,3566,3567,3568,3569,0,3,2,7,8,3566,3567,3568,3569,43,3567,3570,3571,3568,0,3,2,7,8,3567,3570,3571,3568,43,3568,3571,3564,3563,0,3,2,7,8,3568,3571,3564,3563,43,3569,3568,3563,3538,0,3,2,7,8,3569,3568,3563,3538,43,3536,3572,3573,3537,0,3,2,7,8,3536,3572,3573,3537,43,3572,3574,3575,3573,0,3,2,7,8,3572,3574,3575,3573,43,3573,3575,3566,3569,0,3,2,7,8,3573,3575,3566,3569,43,3537,3573,3569,3538,0,3,2,7,8,3537,3573,3569,3538,43,3302,3314,3576,3577,0,3,2,7,8,3302,3314,3576,3577,43,3314,3313,3578,3576,0,3,2,7,8,3314,3313,3578,3576,43,3576,3578,3579,3580,0,3,2,7,8,3576,3578,3579,3580,43,3577,3576,3580,3581,0,3,2,7,8,3577,3576,3580,3581,43,3304,3303,3582,3583,0,3,2,7,8,3304,3303,3582,3583,43,3303,3302,3577,3582,0,3,2,7,8,3303,3302,3577,3582,43,3582,3577,3581,3584,0,3,2,7,8,3582,3577,3581,3584,43,3583,3582,3584,3585,0,3,2,7,8,3583,3582,3584,3585,43,3462,3461,3586,3528,0,3,2,7,8,3462,3461,3586,3528,43,3461,3304,3583,3586,0,3,2,7,8,3461,3304,3583,3586,43,3586,3583,3585,3587,0,3,2,7,8,3586,3583,3585,3587,43,3528,3586,3587,3529,0,3,2,7,8,3528,3586,3587,3529,43,3588,3589,3590,3591,0,3,2,7,8,3588,3589,3590,3591,43,3589,3566,3575,3590,0,3,2,7,8,3589,3566,3575,3590,43,3590,3575,3574,3592,0,3,2,7,8,3590,3575,3574,3592,43,3591,3590,3592,3593,0,3,2,7,8,3591,3590,3592,3593,43,3594,3595,3596,3597,0,3,2,7,8,3594,3595,3596,3597,43,3595,3598,3599,3596,0,3,2,7,8,3595,3598,3599,3596,43,3596,3599,3600,3601,0,3,2,7,8,3596,3599,3600,3601,43,3597,3596,3601,3602,0,3,2,7,8,3597,3596,3601,3602,43,3594,3603,3604,3595,0,3,2,7,8,3594,3603,3604,3595,43,3603,3605,3606,3604,0,3,2,7,8,3603,3605,3606,3604,43,3595,3604,3606,3598,0,3,2,7,8,3595,3604,3606,3598,43,3607,3608,3609,3610,0,3,2,7,8,3607,3608,3609,3610,43,3608,3611,3612,3609,0,3,2,7,8,3608,3611,3612,3609,43,3609,3612,3605,3613,0,3,2,7,8,3609,3612,3605,3613,43,3610,3609,3613,3614,0,3,2,7,8,3610,3609,3613,3614,43,3615,3616,3617,3618,0,3,2,7,8,3615,3616,3617,3618,43,3616,3619,3620,3617,0,3,2,7,8,3616,3619,3620,3617,43,3617,3620,3621,3622,0,3,2,7,8,3617,3620,3621,3622,43,3618,3617,3622,3529,0,3,2,7,8,3618,3617,3622,3529,43,3441,3447,3623,3624,0,3,2,7,8,3441,3447,3623,3624,43,3447,3446,3527,3623,0,3,2,7,8,3447,3446,3527,3623,43,3623,3527,3529,3622,0,3,2,7,8,3623,3527,3529,3622,43,3624,3623,3622,3621,0,3,2,7,8,3624,3623,3622,3621,43,3364,3442,3625,3626,0,3,2,7,8,3364,3442,3625,3626,43,3442,3441,3624,3625,0,3,2,7,8,3442,3441,3624,3625,43,3625,3624,3621,3627,0,3,2,7,8,3625,3624,3621,3627,43,3626,3625,3627,3607,0,3,2,7,8,3626,3625,3627,3607,43,3619,3628,3629,3620,0,3,2,7,8,3619,3628,3629,3620,43,3628,3630,3631,3629,0,3,2,7,8,3628,3630,3631,3629,43,3629,3631,3632,3633,0,3,2,7,8,3629,3631,3632,3633,43,3620,3629,3633,3621,0,3,2,7,8,3620,3629,3633,3621,43,3632,3634,3635,3633,0,3,2,7,8,3632,3634,3635,3633,43,3634,3636,3637,3635,0,3,2,7,8,3634,3636,3637,3635,43,3635,3637,3638,3639,0,3,2,7,8,3635,3637,3638,3639,43,3633,3635,3639,3621,0,3,2,7,8,3633,3635,3639,3621,43,3638,3637,3640,3641,0,3,2,7,8,3638,3637,3640,3641,43,3637,3636,3642,3640,0,3,2,7,8,3637,3636,3642,3640,43,3640,3642,3600,3643,0,3,2,7,8,3640,3642,3600,3643,43,3641,3640,3643,3611,0,3,2,7,8,3641,3640,3643,3611,43,3621,3639,3644,3627,0,3,2,7,8,3621,3639,3644,3627,43,3639,3638,3641,3644,0,3,2,7,8,3639,3638,3641,3644,43,3644,3641,3611,3608,0,3,2,7,8,3644,3641,3611,3608,43,3627,3644,3608,3607,0,3,2,7,8,3627,3644,3608,3607,43,3600,3599,3645,3643,0,3,2,7,8,3600,3599,3645,3643,43,3599,3598,3606,3645,0,3,2,7,8,3599,3598,3606,3645,43,3645,3606,3605,3612,0,3,2,7,8,3645,3606,3605,3612,43,3643,3645,3612,3611,0,3,2,7,8,3643,3645,3612,3611,43,3602,3601,3646,3647,0,3,2,7,8,3602,3601,3646,3647,43,3601,3600,3642,3646,0,3,2,7,8,3601,3600,3642,3646,43,3646,3642,3636,3648,0,3,2,7,8,3646,3642,3636,3648,43,3647,3646,3648,3649,0,3,2,7,8,3647,3646,3648,3649,43,3650,3651,3652,3653,0,3,2,7,8,3650,3651,3652,3653,43,3651,3654,3655,3652,0,3,2,7,8,3651,3654,3655,3652,43,3652,3655,3656,3657,0,3,2,7,8,3652,3655,3656,3657,43,3653,3652,3657,3658,0,3,2,7,8,3653,3652,3657,3658,43,3630,3659,3660,3631,0,3,2,7,8,3630,3659,3660,3631,43,3659,3661,3662,3660,0,3,2,7,8,3659,3661,3662,3660,43,3660,3662,3663,3664,0,3,2,7,8,3660,3662,3663,3664,43,3631,3660,3664,3632,0,3,2,7,8,3631,3660,3664,3632,43,3663,3665,3666,3664,0,3,2,7,8,3663,3665,3666,3664,43,3665,3649,3648,3666,0,3,2,7,8,3665,3649,3648,3666,43,3666,3648,3636,3634,0,3,2,7,8,3666,3648,3636,3634,43,3664,3666,3634,3632,0,3,2,7,8,3664,3666,3634,3632,43,3667,3668,3669,3670,0,3,2,7,8,3667,3668,3669,3670,43,3668,3649,3665,3669,0,3,2,7,8,3668,3649,3665,3669,43,3669,3665,3663,3671,0,3,2,7,8,3669,3665,3663,3671,43,3670,3669,3671,3672,0,3,2,7,8,3670,3669,3671,3672,43,3661,3673,3674,3662,0,3,2,7,8,3661,3673,3674,3662,43,3673,3675,3676,3674,0,3,2,7,8,3673,3675,3676,3674,43,3674,3676,3672,3671,0,3,2,7,8,3674,3676,3672,3671,43,3662,3674,3671,3663,0,3,2,7,8,3662,3674,3671,3663,43,3654,3677,3678,3655,0,3,2,7,8,3654,3677,3678,3655,43,3677,3672,3676,3678,0,3,2,7,8,3677,3672,3676,3678,43,3678,3676,3675,3679,0,3,2,7,8,3678,3676,3675,3679,43,3655,3678,3679,3656,0,3,2,7,8,3655,3678,3679,3656,43,3579,3578,3680,3681,0,3,2,7,8,3579,3578,3680,3681,43,3578,3313,3310,3680,0,3,2,7,8,3578,3313,3310,3680,43,3680,3310,3309,3682,0,3,2,7,8,3680,3310,3309,3682,43,3681,3680,3682,3683,0,3,2,7,8,3681,3680,3682,3683,43,3579,3681,3684,3685,0,3,2,7,8,3579,3681,3684,3685,43,3681,3683,3686,3684,0,3,2,7,8,3681,3683,3686,3684,43,3684,3686,3650,3653,0,3,2,7,8,3684,3686,3650,3653,43,3685,3684,3653,3658,0,3,2,7,8,3685,3684,3653,3658,43,3309,3687,3688,3682,0,3,2,7,8,3309,3687,3688,3682,43,3687,3689,3690,3688,0,3,2,7,8,3687,3689,3690,3688,43,3688,3690,3691,3692,0,3,2,7,8,3688,3690,3691,3692,43,3682,3688,3692,3683,0,3,2,7,8,3682,3688,3692,3683,43,3693,3694,3695,3696,0,3,2,7,8,3693,3694,3695,3696,43,3694,3691,3697,3695,0,3,2,7,8,3694,3691,3697,3695,43,3695,3697,3560,3565,0,3,2,7,8,3695,3697,3560,3565,43,3696,3695,3565,3564,0,3,2,7,8,3696,3695,3565,3564,43,3698,3699,3700,3701,0,3,2,7,8,3698,3699,3700,3701,43,3699,3689,3687,3700,0,3,2,7,8,3699,3689,3687,3700,43,3700,3687,3309,3312,0,3,2,7,8,3700,3687,3309,3312,43,3701,3700,3312,3300,0,3,2,7,8,3701,3700,3312,3300,43,3265,3273,3702,3703,0,3,2,7,8,3265,3273,3702,3703,43,3273,3272,3561,3702,0,3,2,7,8,3273,3272,3561,3702,43,3702,3561,3560,3704,0,3,2,7,8,3702,3561,3560,3704,43,3703,3702,3704,3698,0,3,2,7,8,3703,3702,3704,3698,43,1785,3261,3705,1825,0,3,2,7,8,1785,3261,3705,1825,43,3261,3265,3703,3705,0,3,2,7,8,3261,3265,3703,3705,43,3705,3703,3698,3706,0,3,2,7,8,3705,3703,3698,3706,43,1825,3705,3706,1822,0,3,2,7,8,1825,3705,3706,1822,43,3698,3701,3707,3706,0,3,2,7,8,3698,3701,3707,3706,43,3701,3300,3297,3707,0,3,2,7,8,3701,3300,3297,3707,43,3707,3297,3296,3477,0,3,2,7,8,3707,3297,3296,3477,43,3706,3707,3477,1822,0,3,2,7,8,3706,3707,3477,1822,43,3691,3690,3708,3697,0,3,2,7,8,3691,3690,3708,3697,43,3690,3689,3699,3708,0,3,2,7,8,3690,3689,3699,3708,43,3708,3699,3698,3704,0,3,2,7,8,3708,3699,3698,3704,43,3697,3708,3704,3560,0,3,2,7,8,3697,3708,3704,3560,43,3650,3686,3709,3710,0,3,2,7,8,3650,3686,3709,3710,43,3686,3683,3692,3709,0,3,2,7,8,3686,3683,3692,3709,43,3709,3692,3691,3694,0,3,2,7,8,3709,3692,3691,3694,43,3710,3709,3694,3693,0,3,2,7,8,3710,3709,3694,3693,43,3711,3712,3713,3714,0,3,2,7,8,3711,3712,3713,3714,43,3712,3570,3567,3713,0,3,2,7,8,3712,3570,3567,3713,43,3713,3567,3566,3589,0,3,2,7,8,3713,3567,3566,3589,43,3714,3713,3589,3588,0,3,2,7,8,3714,3713,3589,3588,43,3693,3696,3715,3716,0,3,2,7,8,3693,3696,3715,3716,43,3696,3564,3571,3715,0,3,2,7,8,3696,3564,3571,3715,43,3715,3571,3570,3712,0,3,2,7,8,3715,3571,3570,3712,43,3716,3715,3712,3711,0,3,2,7,8,3716,3715,3712,3711,43,3594,3717,3718,3719,0,3,2,7,8,3594,3717,3718,3719,43,3717,3720,3721,3718,0,3,2,7,8,3717,3720,3721,3718,43,3718,3721,3711,3722,0,3,2,7,8,3718,3721,3711,3722,43,3719,3718,3722,3723,0,3,2,7,8,3719,3718,3722,3723,43,3720,3724,3725,3726,0,3,2,7,8,3720,3724,3725,3726,43,3724,3727,3728,3725,0,3,2,7,8,3724,3727,3728,3725,43,3725,3728,3667,3729,0,3,2,7,8,3725,3728,3667,3729,43,3726,3725,3729,3730,0,3,2,7,8,3726,3725,3729,3730,43,3720,3726,3731,3721,0,3,2,7,8,3720,3726,3731,3721,43,3726,3730,3732,3731,0,3,2,7,8,3726,3730,3732,3731,43,3731,3732,3693,3716,0,3,2,7,8,3731,3732,3693,3716,43,3721,3731,3716,3711,0,3,2,7,8,3721,3731,3716,3711,43,3730,3733,3734,3732,0,3,2,7,8,3730,3733,3734,3732,43,3733,3654,3651,3734,0,3,2,7,8,3733,3654,3651,3734,43,3734,3651,3650,3710,0,3,2,7,8,3734,3651,3650,3710,43,3732,3734,3710,3693,0,3,2,7,8,3732,3734,3710,3693,43,3730,3729,3735,3733,0,3,2,7,8,3730,3729,3735,3733,43,3729,3667,3670,3735,0,3,2,7,8,3729,3667,3670,3735,43,3735,3670,3672,3677,0,3,2,7,8,3735,3670,3672,3677,43,3733,3735,3677,3654,0,3,2,7,8,3733,3735,3677,3654,43,3667,3728,3736,3668,0,3,2,7,8,3667,3728,3736,3668,43,3728,3727,3737,3736,0,3,2,7,8,3728,3727,3737,3736,43,3736,3737,3602,3647,0,3,2,7,8,3736,3737,3602,3647,43,3668,3736,3647,3649,0,3,2,7,8,3668,3736,3647,3649,43,3602,3737,3738,3597,0,3,2,7,8,3602,3737,3738,3597,43,3737,3727,3724,3738,0,3,2,7,8,3737,3727,3724,3738,43,3738,3724,3720,3717,0,3,2,7,8,3738,3724,3720,3717,43,3597,3738,3717,3594,0,3,2,7,8,3597,3738,3717,3594,43,3614,3613,3739,3740,0,3,2,7,8,3614,3613,3739,3740,43,3613,3605,3603,3739,0,3,2,7,8,3613,3605,3603,3739,43,3739,3603,3594,3719,0,3,2,7,8,3739,3603,3594,3719,43,3740,3739,3719,3723,0,3,2,7,8,3740,3739,3719,3723,43,3614,3740,3741,3742,0,3,2,7,8,3614,3740,3741,3742,43,3740,3723,3743,3741,0,3,2,7,8,3740,3723,3743,3741,43,3741,3743,3744,3745,0,3,2,7,8,3741,3743,3744,3745,43,3742,3741,3745,3746,0,3,2,7,8,3742,3741,3745,3746,43,3588,3747,3748,3714,0,3,2,7,8,3588,3747,3748,3714,43,3747,3744,3743,3748,0,3,2,7,8,3747,3744,3743,3748,43,3748,3743,3723,3722,0,3,2,7,8,3748,3743,3723,3722,43,3714,3748,3722,3711,0,3,2,7,8,3714,3748,3722,3711,43,3746,3745,3749,3750,0,3,2,7,8,3746,3745,3749,3750,43,3745,3744,3747,3749,0,3,2,7,8,3745,3744,3747,3749,43,3749,3747,3588,3591,0,3,2,7,8,3749,3747,3588,3591,43,3750,3749,3591,3593,0,3,2,7,8,3750,3749,3591,3593,43,3593,3592,3751,3752,0,3,2,7,8,3593,3592,3751,3752,43,3592,3574,3753,3751,0,3,2,7,8,3592,3574,3753,3751,43,3751,3753,3754,3755,0,3,2,7,8,3751,3753,3754,3755,43,3752,3751,3755,3756,0,3,2,7,8,3752,3751,3755,3756,43,3757,3758,3759,3760,0,3,2,7,8,3757,3758,3759,3760,43,3758,3761,3762,3759,0,3,2,7,8,3758,3761,3762,3759,43,3759,3762,3763,3764,0,3,2,7,8,3759,3762,3763,3764,43,3760,3759,3764,3765,0,3,2,7,8,3760,3759,3764,3765,43,3766,3767,3768,3769,0,3,2,7,8,3766,3767,3768,3769,43,3767,3770,3771,3768,0,3,2,7,8,3767,3770,3771,3768,43,3768,3771,3772,3773,0,3,2,7,8,3768,3771,3772,3773,43,3769,3768,3773,3757,0,3,2,7,8,3769,3768,3773,3757,43,3774,3775,3776,3777,0,3,2,7,8,3774,3775,3776,3777,43,3775,3761,3758,3776,0,3,2,7,8,3775,3761,3758,3776,43,3776,3758,3757,3773,0,3,2,7,8,3776,3758,3757,3773,43,3777,3776,3773,3772,0,3,2,7,8,3777,3776,3773,3772,43,3763,3762,3778,3779,0,3,2,7,8,3763,3762,3778,3779,43,3762,3761,3775,3778,0,3,2,7,8,3762,3761,3775,3778,43,3778,3775,3774,3780,0,3,2,7,8,3778,3775,3774,3780,43,3779,3778,3780,3781,0,3,2,7,8,3779,3778,3780,3781,43,3781,3780,3782,3783,0,3,2,7,8,3781,3780,3782,3783,43,3780,3774,3784,3782,0,3,2,7,8,3780,3774,3784,3782,43,3782,3784,3785,3786,0,3,2,7,8,3782,3784,3785,3786,43,3783,3782,3786,3228,0,3,2,7,8,3783,3782,3786,3228,43,3774,3777,3787,3784,0,3,2,7,8,3774,3777,3787,3784,43,3777,3772,3788,3787,0,3,2,7,8,3777,3772,3788,3787,43,3787,3788,3789,3790,0,3,2,7,8,3787,3788,3789,3790,43,3784,3787,3790,3785,0,3,2,7,8,3784,3787,3790,3785,43,3791,3792,3793,3794,0,3,2,7,8,3791,3792,3793,3794,43,3792,3795,3796,3793,0,3,2,7,8,3792,3795,3796,3793,43,3793,3796,3797,3798,0,3,2,7,8,3793,3796,3797,3798,43,3794,3793,3798,3799,0,3,2,7,8,3794,3793,3798,3799,43,3797,3800,3801,3798,0,3,2,7,8,3797,3800,3801,3798,43,3800,3802,3803,3801,0,3,2,7,8,3800,3802,3803,3801,43,3801,3803,3789,3804,0,3,2,7,8,3801,3803,3789,3804,43,3798,3801,3804,3799,0,3,2,7,8,3798,3801,3804,3799,43,3805,3806,3807,3808,0,3,2,7,8,3805,3806,3807,3808,43,3806,3809,3810,3807,0,3,2,7,8,3806,3809,3810,3807,43,3807,3810,3766,3811,0,3,2,7,8,3807,3810,3766,3811,43,3808,3807,3811,3812,0,3,2,7,8,3808,3807,3811,3812,43,840,3813,3814,878,0,3,2,7,8,840,3813,3814,878,43,3813,3805,3808,3814,0,3,2,7,8,3813,3805,3808,3814,43,3814,3808,3812,3815,0,3,2,7,8,3814,3808,3812,3815,43,878,3814,3815,879,0,3,2,7,8,878,3814,3815,879,43,3791,3794,3816,3817,0,3,2,7,8,3791,3794,3816,3817,43,3794,3799,3818,3816,0,3,2,7,8,3794,3799,3818,3816,43,3816,3818,3809,3806,0,3,2,7,8,3816,3818,3809,3806,43,3817,3816,3806,3805,0,3,2,7,8,3817,3816,3806,3805,43,3819,3820,3821,3822,0,3,2,7,8,3819,3820,3821,3822,43,3820,3795,3792,3821,0,3,2,7,8,3820,3795,3792,3821,43,3821,3792,3791,3817,0,3,2,7,8,3821,3792,3791,3817,43,3822,3821,3817,3805,0,3,2,7,8,3822,3821,3817,3805,43,3797,3796,3823,3824,0,3,2,7,8,3797,3796,3823,3824,43,3796,3795,3820,3823,0,3,2,7,8,3796,3795,3820,3823,43,3823,3820,3819,3825,0,3,2,7,8,3823,3820,3819,3825,43,3824,3823,3825,3826,0,3,2,7,8,3824,3823,3825,3826,43,3827,3828,3829,3830,0,3,2,7,8,3827,3828,3829,3830,43,3828,3802,3800,3829,0,3,2,7,8,3828,3802,3800,3829,43,3829,3800,3797,3824,0,3,2,7,8,3829,3800,3797,3824,43,3830,3829,3824,3826,0,3,2,7,8,3830,3829,3824,3826,43,3228,3786,3831,3229,0,3,2,7,8,3228,3786,3831,3229,43,3786,3785,3832,3831,0,3,2,7,8,3786,3785,3832,3831,43,3831,3832,3833,3834,0,3,2,7,8,3831,3832,3833,3834,43,3229,3831,3834,3230,0,3,2,7,8,3229,3831,3834,3230,43,3833,3835,3836,3837,0,3,2,7,8,3833,3835,3836,3837,43,3835,3838,3839,3836,0,3,2,7,8,3835,3838,3839,3836,43,3836,3839,3840,3841,0,3,2,7,8,3836,3839,3840,3841,43,3837,3836,3841,3842,0,3,2,7,8,3837,3836,3841,3842,43,3838,3835,3843,3844,0,3,2,7,8,3838,3835,3843,3844,43,3835,3833,3832,3843,0,3,2,7,8,3835,3833,3832,3843,43,3843,3832,3785,3790,0,3,2,7,8,3843,3832,3785,3790,43,3844,3843,3790,3789,0,3,2,7,8,3844,3843,3790,3789,43,3230,3834,3845,3846,0,3,2,7,8,3230,3834,3845,3846,43,3834,3833,3837,3845,0,3,2,7,8,3834,3833,3837,3845,43,3845,3837,3842,3847,0,3,2,7,8,3845,3837,3842,3847,43,3846,3845,3847,3848,0,3,2,7,8,3846,3845,3847,3848,43,3224,3231,3849,3850,0,3,2,7,8,3224,3231,3849,3850,43,3231,3230,3846,3849,0,3,2,7,8,3231,3230,3846,3849,43,3849,3846,3848,3851,0,3,2,7,8,3849,3846,3848,3851,43,3850,3849,3851,3852,0,3,2,7,8,3850,3849,3851,3852,43,3212,3225,3853,3213,0,3,2,7,8,3212,3225,3853,3213,43,3225,3224,3850,3853,0,3,2,7,8,3225,3224,3850,3853,43,3853,3850,3852,3854,0,3,2,7,8,3853,3850,3852,3854,43,3213,3853,3854,3136,0,3,2,7,8,3213,3853,3854,3136,43,3852,3855,3856,3854,0,3,2,7,8,3852,3855,3856,3854,43,3855,3165,3164,3856,0,3,2,7,8,3855,3165,3164,3856,43,3856,3164,3140,3137,0,3,2,7,8,3856,3164,3140,3137,43,3854,3856,3137,3136,0,3,2,7,8,3854,3856,3137,3136,43,3857,3858,3859,3860,0,3,2,7,8,3857,3858,3859,3860,43,3858,3165,3855,3859,0,3,2,7,8,3858,3165,3855,3859,43,3859,3855,3852,3851,0,3,2,7,8,3859,3855,3852,3851,43,3860,3859,3851,3848,0,3,2,7,8,3860,3859,3851,3848,43,3259,3258,3861,3862,0,3,2,7,8,3259,3258,3861,3862,43,3258,3257,3863,3861,0,3,2,7,8,3258,3257,3863,3861,43,3861,3863,3864,3865,0,3,2,7,8,3861,3863,3864,3865,43,3862,3861,3865,3866,0,3,2,7,8,3862,3861,3865,3866,43,3867,3868,3869,3870,0,3,2,7,8,3867,3868,3869,3870,43,3868,3160,3162,3869,0,3,2,7,8,3868,3160,3162,3869,43,3869,3162,3165,3858,0,3,2,7,8,3869,3162,3165,3858,43,3870,3869,3858,3857,0,3,2,7,8,3870,3869,3858,3857,43,3237,3475,3871,3872,0,3,2,7,8,3237,3475,3871,3872,43,3475,3153,3156,3871,0,3,2,7,8,3475,3153,3156,3871,43,3871,3156,3160,3868,0,3,2,7,8,3871,3156,3160,3868,43,3872,3871,3868,3867,0,3,2,7,8,3872,3871,3868,3867,43,3232,3235,3873,3256,0,3,2,7,8,3232,3235,3873,3256,43,3235,3237,3872,3873,0,3,2,7,8,3235,3237,3872,3873,43,3873,3872,3867,3874,0,3,2,7,8,3873,3872,3867,3874,43,3256,3873,3874,3257,0,3,2,7,8,3256,3873,3874,3257,43,3257,3874,3875,3863,0,3,2,7,8,3257,3874,3875,3863,43,3874,3867,3870,3875,0,3,2,7,8,3874,3867,3870,3875,43,3875,3870,3857,3876,0,3,2,7,8,3875,3870,3857,3876,43,3863,3875,3876,3864,0,3,2,7,8,3863,3875,3876,3864,43,3864,3876,3877,3878,0,3,2,7,8,3864,3876,3877,3878,43,3876,3857,3860,3877,0,3,2,7,8,3876,3857,3860,3877,43,3877,3860,3848,3847,0,3,2,7,8,3877,3860,3848,3847,43,3878,3877,3847,3842,0,3,2,7,8,3878,3877,3847,3842,43,3840,3879,3880,3841,0,3,2,7,8,3840,3879,3880,3841,43,3879,3866,3865,3880,0,3,2,7,8,3879,3866,3865,3880,43,3880,3865,3864,3878,0,3,2,7,8,3880,3865,3864,3878,43,3841,3880,3878,3842,0,3,2,7,8,3841,3880,3878,3842,43,3881,3882,3883,3884,0,3,2,7,8,3881,3882,3883,3884,43,3882,3885,3886,3883,0,3,2,7,8,3882,3885,3886,3883,43,3883,3886,3549,3552,0,3,2,7,8,3883,3886,3549,3552,43,3884,3883,3552,3554,0,3,2,7,8,3884,3883,3552,3554,43,3887,3888,3889,3890,0,3,2,7,8,3887,3888,3889,3890,43,3888,3827,3830,3889,0,3,2,7,8,3888,3827,3830,3889,43,3889,3830,3826,3891,0,3,2,7,8,3889,3830,3826,3891,43,3890,3889,3891,3892,0,3,2,7,8,3890,3889,3891,3892,43,3574,3572,3893,3894,0,3,2,7,8,3574,3572,3893,3894,43,3572,3536,3895,3893,0,3,2,7,8,3572,3536,3895,3893,43,3893,3895,3896,3897,0,3,2,7,8,3893,3895,3896,3897,43,3894,3893,3897,3898,0,3,2,7,8,3894,3893,3897,3898,43,3545,3550,3899,3900,0,3,2,7,8,3545,3550,3899,3900,43,3550,3549,3886,3899,0,3,2,7,8,3550,3549,3886,3899,43,3899,3886,3885,3901,0,3,2,7,8,3899,3886,3885,3901,43,3900,3899,3901,3896,0,3,2,7,8,3900,3899,3901,3896,43,3536,3535,3902,3895,0,3,2,7,8,3536,3535,3902,3895,43,3535,3534,3546,3902,0,3,2,7,8,3535,3534,3546,3902,43,3902,3546,3545,3900,0,3,2,7,8,3902,3546,3545,3900,43,3895,3902,3900,3896,0,3,2,7,8,3895,3902,3900,3896,43,3252,3255,3903,3472,0,3,2,7,8,3252,3255,3903,3472,43,3255,3259,3904,3903,0,3,2,7,8,3255,3259,3904,3903,43,3903,3904,3905,3906,0,3,2,7,8,3903,3904,3905,3906,43,3472,3903,3906,3277,0,3,2,7,8,3472,3903,3906,3277,43,3905,3907,3908,3906,0,3,2,7,8,3905,3907,3908,3906,43,3907,3881,3884,3908,0,3,2,7,8,3907,3881,3884,3908,43,3908,3884,3554,3556,0,3,2,7,8,3908,3884,3554,3556,43,3906,3908,3556,3277,0,3,2,7,8,3906,3908,3556,3277,43,3909,3910,3911,3912,0,3,2,7,8,3909,3910,3911,3912,43,3910,3905,3904,3911,0,3,2,7,8,3910,3905,3904,3911,43,3911,3904,3259,3862,0,3,2,7,8,3911,3904,3259,3862,43,3912,3911,3862,3866,0,3,2,7,8,3912,3911,3862,3866,43,3885,3882,3913,3914,0,3,2,7,8,3885,3882,3913,3914,43,3882,3881,3907,3913,0,3,2,7,8,3882,3881,3907,3913,43,3913,3907,3905,3910,0,3,2,7,8,3913,3907,3905,3910,43,3914,3913,3910,3909,0,3,2,7,8,3914,3913,3910,3909,43,3909,3915,3916,3914,0,3,2,7,8,3909,3915,3916,3914,43,3915,3887,3890,3916,0,3,2,7,8,3915,3887,3890,3916,43,3916,3890,3892,3917,0,3,2,7,8,3916,3890,3892,3917,43,3914,3916,3917,3885,0,3,2,7,8,3914,3916,3917,3885,43,3887,3915,3918,3919,0,3,2,7,8,3887,3915,3918,3919,43,3915,3909,3912,3918,0,3,2,7,8,3915,3909,3912,3918,43,3918,3912,3866,3879,0,3,2,7,8,3918,3912,3866,3879,43,3919,3918,3879,3840,0,3,2,7,8,3919,3918,3879,3840,43,3838,3920,3921,3839,0,3,2,7,8,3838,3920,3921,3839,43,3920,3827,3888,3921,0,3,2,7,8,3920,3827,3888,3921,43,3921,3888,3887,3919,0,3,2,7,8,3921,3888,3887,3919,43,3839,3921,3919,3840,0,3,2,7,8,3839,3921,3919,3840,43,3789,3803,3922,3844,0,3,2,7,8,3789,3803,3922,3844,43,3803,3802,3828,3922,0,3,2,7,8,3803,3802,3828,3922,43,3922,3828,3827,3920,0,3,2,7,8,3922,3828,3827,3920,43,3844,3922,3920,3838,0,3,2,7,8,3844,3922,3920,3838,43,3772,3771,3923,3788,0,3,2,7,8,3772,3771,3923,3788,43,3771,3770,3924,3923,0,3,2,7,8,3771,3770,3924,3923,43,3923,3924,3799,3804,0,3,2,7,8,3923,3924,3799,3804,43,3788,3923,3804,3789,0,3,2,7,8,3788,3923,3804,3789,43,3766,3810,3925,3767,0,3,2,7,8,3766,3810,3925,3767,43,3810,3809,3818,3925,0,3,2,7,8,3810,3809,3818,3925,43,3925,3818,3799,3924,0,3,2,7,8,3925,3818,3799,3924,43,3767,3925,3924,3770,0,3,2,7,8,3767,3925,3924,3770,43,3766,3769,3926,3811,0,3,2,7,8,3766,3769,3926,3811,43,3769,3757,3760,3926,0,3,2,7,8,3769,3757,3760,3926,43,3926,3760,3765,3927,0,3,2,7,8,3926,3760,3765,3927,43,3811,3926,3927,3812,0,3,2,7,8,3811,3926,3927,3812,43,3812,3927,3928,3815,0,3,2,7,8,3812,3927,3928,3815,43,3927,3765,3929,3928,0,3,2,7,8,3927,3765,3929,3928,43,3928,3929,884,887,0,3,2,7,8,3928,3929,884,887,43,3815,3928,887,879,0,3,2,7,8,3815,3928,887,879,43,3930,3931,3932,3933,0,3,2,7,8,3930,3931,3932,3933,43,3931,3934,3935,3932,0,3,2,7,8,3931,3934,3935,3932,43,3932,3935,3936,3937,0,3,2,7,8,3932,3935,3936,3937,43,3933,3932,3937,3938,0,3,2,7,8,3933,3932,3937,3938,43,3765,3764,3939,3940,0,3,2,7,8,3765,3764,3939,3940,43,3764,3763,3941,3939,0,3,2,7,8,3764,3763,3941,3939,43,3939,3941,3942,3943,0,3,2,7,8,3939,3941,3942,3943,43,3940,3939,3943,3930,0,3,2,7,8,3940,3939,3943,3930,43,884,3929,3944,899,0,3,2,7,8,884,3929,3944,899,43,3929,3765,3940,3944,0,3,2,7,8,3929,3765,3940,3944,43,3944,3940,3930,3945,0,3,2,7,8,3944,3940,3930,3945,43,899,3944,3945,900,0,3,2,7,8,899,3944,3945,900,43,900,3945,3946,904,0,3,2,7,8,900,3945,3946,904,43,3945,3930,3933,3946,0,3,2,7,8,3945,3930,3933,3946,43,3946,3933,3938,3947,0,3,2,7,8,3946,3933,3938,3947,43,904,3946,3947,905,0,3,2,7,8,904,3946,3947,905,43,3934,3948,3949,3950,0,3,2,7,8,3934,3948,3949,3950,43,3948,3951,3952,3949,0,3,2,7,8,3948,3951,3952,3949,43,3949,3952,3953,3954,0,3,2,7,8,3949,3952,3953,3954,43,3950,3949,3954,3955,0,3,2,7,8,3950,3949,3954,3955,43,3953,3956,3957,3958,0,3,2,7,8,3953,3956,3957,3958,43,3956,3959,3960,3957,0,3,2,7,8,3956,3959,3960,3957,43,3957,3960,3222,3219,0,3,2,7,8,3957,3960,3222,3219,43,3958,3957,3219,3218,0,3,2,7,8,3958,3957,3219,3218,43,3959,3961,3962,3960,0,3,2,7,8,3959,3961,3962,3960,43,3961,3781,3783,3962,0,3,2,7,8,3961,3781,3783,3962,43,3962,3783,3228,3226,0,3,2,7,8,3962,3783,3228,3226,43,3960,3962,3226,3222,0,3,2,7,8,3960,3962,3226,3222,43,3781,3961,3963,3779,0,3,2,7,8,3781,3961,3963,3779,43,3961,3959,3964,3963,0,3,2,7,8,3961,3959,3964,3963,43,3963,3964,3942,3941,0,3,2,7,8,3963,3964,3942,3941,43,3779,3963,3941,3763,0,3,2,7,8,3779,3963,3941,3763,43,3953,3952,3965,3956,0,3,2,7,8,3953,3952,3965,3956,43,3952,3951,3966,3965,0,3,2,7,8,3952,3951,3966,3965,43,3965,3966,3942,3964,0,3,2,7,8,3965,3966,3942,3964,43,3956,3965,3964,3959,0,3,2,7,8,3956,3965,3964,3959,43,3942,3966,3967,3943,0,3,2,7,8,3942,3966,3967,3943,43,3966,3951,3948,3967,0,3,2,7,8,3966,3951,3948,3967,43,3967,3948,3934,3931,0,3,2,7,8,3967,3948,3934,3931,43,3943,3967,3931,3930,0,3,2,7,8,3943,3967,3931,3930,43,3968,3969,3970,3971,0,3,2,7,8,3968,3969,3970,3971,43,3969,3972,3973,3970,0,3,2,7,8,3969,3972,3973,3970,43,3970,3973,3936,3974,0,3,2,7,8,3970,3973,3936,3974,43,3971,3970,3974,3975,0,3,2,7,8,3971,3970,3974,3975,43,3976,3977,3978,3979,0,3,2,7,8,3976,3977,3978,3979,43,3977,3218,3221,3978,0,3,2,7,8,3977,3218,3221,3978,43,3978,3221,3212,3215,0,3,2,7,8,3978,3221,3212,3215,43,3979,3978,3215,3217,0,3,2,7,8,3979,3978,3215,3217,43,3955,3954,3980,3981,0,3,2,7,8,3955,3954,3980,3981,43,3954,3953,3958,3980,0,3,2,7,8,3954,3953,3958,3980,43,3980,3958,3218,3977,0,3,2,7,8,3980,3958,3218,3977,43,3981,3980,3977,3976,0,3,2,7,8,3981,3980,3977,3976,43,3270,3982,3983,3271,0,3,2,7,8,3270,3982,3983,3271,43,3982,3984,3985,3983,0,3,2,7,8,3982,3984,3985,3983,43,3983,3985,3986,3987,0,3,2,7,8,3983,3985,3986,3987,43,3271,3983,3987,3242,0,3,2,7,8,3271,3983,3987,3242,43,3242,3987,3988,3243,0,3,2,7,8,3242,3987,3988,3243,43,3987,3986,3989,3988,0,3,2,7,8,3987,3986,3989,3988,43,3988,3989,3173,3175,0,3,2,7,8,3988,3989,3173,3175,43,3243,3988,3175,3179,0,3,2,7,8,3243,3988,3175,3179,43,3217,3216,3990,3991,0,3,2,7,8,3217,3216,3990,3991,43,3216,3144,3171,3990,0,3,2,7,8,3216,3144,3171,3990,43,3990,3171,3173,3989,0,3,2,7,8,3990,3171,3173,3989,43,3991,3990,3989,3986,0,3,2,7,8,3991,3990,3989,3986,43,3984,3992,3993,3985,0,3,2,7,8,3984,3992,3993,3985,43,3992,3976,3979,3993,0,3,2,7,8,3992,3976,3979,3993,43,3993,3979,3217,3991,0,3,2,7,8,3993,3979,3217,3991,43,3985,3993,3991,3986,0,3,2,7,8,3985,3993,3991,3986,43,3968,3971,3994,3995,0,3,2,7,8,3968,3971,3994,3995,43,3971,3975,3996,3994,0,3,2,7,8,3971,3975,3996,3994,43,3994,3996,3984,3982,0,3,2,7,8,3994,3996,3984,3982,43,3995,3994,3982,3270,0,3,2,7,8,3995,3994,3982,3270,43,3975,3997,3998,3996,0,3,2,7,8,3975,3997,3998,3996,43,3997,3955,3981,3998,0,3,2,7,8,3997,3955,3981,3998,43,3998,3981,3976,3992,0,3,2,7,8,3998,3981,3976,3992,43,3996,3998,3992,3984,0,3,2,7,8,3996,3998,3992,3984,43,3955,3997,3999,3950,0,3,2,7,8,3955,3997,3999,3950,43,3997,3975,3974,3999,0,3,2,7,8,3997,3975,3974,3999,43,3999,3974,3936,3935,0,3,2,7,8,3999,3974,3936,3935,43,3950,3999,3935,3934,0,3,2,7,8,3950,3999,3935,3934,43,3936,3973,4000,3937,0,3,2,7,8,3936,3973,4000,3937,43,3973,3972,4001,4000,0,3,2,7,8,3973,3972,4001,4000,43,4000,4001,4002,4003,0,3,2,7,8,4000,4001,4002,4003,43,3937,4000,4003,3938,0,3,2,7,8,3937,4000,4003,3938,43,4004,4005,4006,4007,0,3,2,7,8,4004,4005,4006,4007,43,4005,3938,4003,4006,0,3,2,7,8,4005,3938,4003,4006,43,4007,4006,4003,4002,0,3,2,7,8,4007,4006,4003,4002,43,3106,3121,4008,4009,0,3,2,7,8,3106,3121,4008,4009,43,3121,3118,4010,4008,0,3,2,7,8,3121,3118,4010,4008,43,4008,4010,3614,3742,0,3,2,7,8,4008,4010,3614,3742,43,4009,4008,3742,3746,0,3,2,7,8,4009,4008,3742,3746,43,3118,3117,4011,4010,0,3,2,7,8,3118,3117,4011,4010,43,3117,3116,4012,4011,0,3,2,7,8,3117,3116,4012,4011,43,4011,4012,3607,3610,0,3,2,7,8,4011,4012,3607,3610,43,4010,4011,3610,3614,0,3,2,7,8,4010,4011,3610,3614,43,3116,4013,4014,4012,0,3,2,7,8,3116,4013,4014,4012,43,4013,3356,3359,4014,0,3,2,7,8,4013,3356,3359,4014,43,4014,3359,3364,3626,0,3,2,7,8,4014,3359,3364,3626,43,4012,4014,3626,3607,0,3,2,7,8,4012,4014,3626,3607,43,3114,3283,4015,3115,0,3,2,7,8,3114,3283,4015,3115,43,3283,3282,3367,4015,0,3,2,7,8,3283,3282,3367,4015,43,4015,3367,3356,4013,0,3,2,7,8,4015,3367,3356,4013,43,3115,4015,4013,3116,0,3,2,7,8,3115,4015,4013,3116,43,4002,4016,4017,4018,0,3,2,7,8,4002,4016,4017,4018,43,4016,4019,4020,4017,0,3,2,7,8,4016,4019,4020,4017,43,4017,4020,4021,4022,0,3,2,7,8,4017,4020,4021,4022,43,4018,4017,4022,4023,0,3,2,7,8,4018,4017,4022,4023,43,3268,4024,4025,3269,0,3,2,7,8,3268,4024,4025,3269,43,4024,4019,4026,4025,0,3,2,7,8,4024,4019,4026,4025,43,4025,4026,3968,3995,0,3,2,7,8,4025,4026,3968,3995,43,3269,4025,3995,3270,0,3,2,7,8,3269,4025,3995,3270,43,3972,3969,4027,4001,0,3,2,7,8,3972,3969,4027,4001,43,3969,3968,4026,4027,0,3,2,7,8,3969,3968,4026,4027,43,4027,4026,4019,4016,0,3,2,7,8,4027,4026,4019,4016,43,4001,4027,4016,4002,0,3,2,7,8,4001,4027,4016,4002,43,3373,4028,4029,3382,0,3,2,7,8,3373,4028,4029,3382,43,4028,4030,4031,4029,0,3,2,7,8,4028,4030,4031,4029,43,4029,4031,3268,3266,0,3,2,7,8,4029,4031,3268,3266,43,3382,4029,3266,3238,0,3,2,7,8,3382,4029,3266,3238,43,4030,4032,4033,4031,0,3,2,7,8,4030,4032,4033,4031,43,4032,4021,4020,4033,0,3,2,7,8,4032,4021,4020,4033,43,4033,4020,4019,4024,0,3,2,7,8,4033,4020,4019,4024,43,4031,4033,4024,3268,0,3,2,7,8,4031,4033,4024,3268,43,4023,4022,4034,4035,0,3,2,7,8,4023,4022,4034,4035,43,4022,4021,4036,4034,0,3,2,7,8,4022,4021,4036,4034,43,4034,4036,3102,4037,0,3,2,7,8,4034,4036,3102,4037,43,4035,4034,4037,4004,0,3,2,7,8,4035,4034,4037,4004,43,3746,3750,4038,4039,0,3,2,7,8,3746,3750,4038,4039,43,3750,3593,3752,4038,0,3,2,7,8,3750,3593,3752,4038,43,4038,3752,3756,4040,0,3,2,7,8,4038,3752,3756,4040,43,4039,4038,4040,4041,0,3,2,7,8,4039,4038,4040,4041,43,3108,3107,4042,4043,0,3,2,7,8,3108,3107,4042,4043,43,3107,3106,4009,4042,0,3,2,7,8,3107,3106,4009,4042,43,4042,4009,3746,4039,0,3,2,7,8,4042,4009,3746,4039,43,4043,4042,4039,4041,0,3,2,7,8,4043,4042,4039,4041,43,3892,3891,4044,4045,0,3,2,7,8,3892,3891,4044,4045,43,3891,3826,3825,4044,0,3,2,7,8,3891,3826,3825,4044,43,4044,3825,3819,4046,0,3,2,7,8,4044,3825,3819,4046,43,4045,4044,4046,3898,0,3,2,7,8,4045,4044,4046,3898,43,3898,3897,4047,4045,0,3,2,7,8,3898,3897,4047,4045,43,3897,3896,3901,4047,0,3,2,7,8,3897,3896,3901,4047,43,4047,3901,3885,3917,0,3,2,7,8,4047,3901,3885,3917,43,4045,4047,3917,3892,0,3,2,7,8,4045,4047,3917,3892,43,3574,3894,4048,3753,0,3,2,7,8,3574,3894,4048,3753,43,3894,3898,4049,4048,0,3,2,7,8,3894,3898,4049,4048,43,4048,4049,836,4050,0,3,2,7,8,4048,4049,836,4050,43,3753,4048,4050,3754,0,3,2,7,8,3753,4048,4050,3754,43,836,4049,4051,837,0,3,2,7,8,836,4049,4051,837,43,4049,3898,4046,4051,0,3,2,7,8,4049,3898,4046,4051,43,4051,4046,3819,4052,0,3,2,7,8,4051,4046,3819,4052,43,837,4051,4052,840,0,3,2,7,8,837,4051,4052,840,43,3819,3822,4053,4052,0,3,2,7,8,3819,3822,4053,4052,43,3822,3805,3813,4053,0,3,2,7,8,3822,3805,3813,4053,43,4052,4053,3813,840,0,3,2,7,8,4052,4053,3813,840,43,1494,4054,4055,1495,0,3,2,7,8,1494,4054,4055,1495,43,4054,4004,4037,4055,0,3,2,7,8,4054,4004,4037,4055,43,4055,4037,3102,3105,0,3,2,7,8,4055,4037,3102,3105,43,1495,4055,3105,1496,0,3,2,7,8,1495,4055,3105,1496,43,3938,4005,4056,3947,0,3,2,7,8,3938,4005,4056,3947,43,4005,4004,4054,4056,0,3,2,7,8,4005,4004,4054,4056,43,4056,4054,1494,1498,0,3,2,7,8,4056,4054,1494,1498,43,3947,4056,1498,905,0,3,2,7,8,3947,4056,1498,905,43,4004,4007,4057,4035,0,3,2,7,8,4004,4007,4057,4035,43,4007,4002,4018,4057,0,3,2,7,8,4007,4002,4018,4057,43,4035,4057,4018,4023,0,3,2,7,8,4035,4057,4018,4023,43,3373,3372,4058,4028,0,3,2,7,8,3373,3372,4058,4028,43,3372,3307,3305,4058,0,3,2,7,8,3372,3307,3305,4058,43,4058,3305,3110,4059,0,3,2,7,8,4058,3305,3110,4059,43,4028,4058,4059,4030,0,3,2,7,8,4028,4058,4059,4030,43,3102,4060,4061,3119,0,3,2,7,8,3102,4060,4061,3119,43,4060,4030,4059,4061,0,3,2,7,8,4060,4030,4059,4061,43,3119,4061,4059,3110,0,3,2,7,8,3119,4061,4059,3110,43,4030,4060,4062,4032,0,3,2,7,8,4030,4060,4062,4032,43,4060,3102,4036,4062,0,3,2,7,8,4060,3102,4036,4062,43,4032,4062,4036,4021,0,3,2,7,8,4032,4062,4036,4021,43,4063,4064,4065,4066,0,3,2,7,8,4063,4064,4065,4066,43,4064,4067,4068,4065,0,3,2,7,8,4064,4067,4068,4065,43,4065,4068,4069,4070,0,3,2,7,8,4065,4068,4069,4070,43,4066,4065,4070,4071,0,3,2,7,8,4066,4065,4070,4071,43,4072,4073,4074,4075,0,3,2,7,8,4072,4073,4074,4075,43,4073,4076,4077,4074,0,3,2,7,8,4073,4076,4077,4074,43,4074,4077,4078,4079,0,3,2,7,8,4074,4077,4078,4079,43,4075,4074,4079,4080,0,3,2,7,8,4075,4074,4079,4080,43,4081,4082,4083,4084,0,3,2,7,8,4081,4082,4083,4084,43,4082,4076,4085,4083,0,3,2,7,8,4082,4076,4085,4083,43,4083,4085,4086,4087,0,3,2,7,8,4083,4085,4086,4087,43,4084,4083,4087,4088,0,3,2,7,8,4084,4083,4087,4088,43,4072,4089,4090,4073,0,3,2,7,8,4072,4089,4090,4073,43,4089,4091,4092,4090,0,3,2,7,8,4089,4091,4092,4090,43,4090,4092,4086,4085,0,3,2,7,8,4090,4092,4086,4085,43,4073,4090,4085,4076,0,3,2,7,8,4073,4090,4085,4076,43,4086,4093,4094,4087,0,3,2,7,8,4086,4093,4094,4087,43,4093,4095,4096,4094,0,3,2,7,8,4093,4095,4096,4094,43,4094,4096,4097,4098,0,3,2,7,8,4094,4096,4097,4098,43,4087,4094,4098,4088,0,3,2,7,8,4087,4094,4098,4088,43,4091,4099,4100,4092,0,3,2,7,8,4091,4099,4100,4092,43,4099,4101,4102,4100,0,3,2,7,8,4099,4101,4102,4100,43,4100,4102,4095,4093,0,3,2,7,8,4100,4102,4095,4093,43,4092,4100,4093,4086,0,3,2,7,8,4092,4100,4093,4086,43,4103,4104,4105,4106,0,3,2,7,8,4103,4104,4105,4106,43,4104,4101,4099,4105,0,3,2,7,8,4104,4101,4099,4105,43,4106,4105,4099,4091,0,3,2,7,8,4106,4105,4099,4091,43,4097,4096,4107,4108,0,3,2,7,8,4097,4096,4107,4108,43,4096,4095,4109,4107,0,3,2,7,8,4096,4095,4109,4107,43,4107,4109,4110,4111,0,3,2,7,8,4107,4109,4110,4111,43,4108,4107,4111,4112,0,3,2,7,8,4108,4107,4111,4112,43,4113,4114,4115,4116,0,3,2,7,8,4113,4114,4115,4116,43,4114,4117,4118,4115,0,3,2,7,8,4114,4117,4118,4115,43,4115,4118,4119,4120,0,3,2,7,8,4115,4118,4119,4120,43,4116,4115,4120,4121,0,3,2,7,8,4116,4115,4120,4121,43,4122,4123,4124,4125,0,3,2,7,8,4122,4123,4124,4125,43,4123,4117,4114,4124,0,3,2,7,8,4123,4117,4114,4124,43,4124,4114,4113,4126,0,3,2,7,8,4124,4114,4113,4126,43,4125,4124,4126,4127,0,3,2,7,8,4125,4124,4126,4127,43,4113,4116,4128,4129,0,3,2,7,8,4113,4116,4128,4129,43,4116,4121,4130,4128,0,3,2,7,8,4116,4121,4130,4128,43,4128,4130,4071,4131,0,3,2,7,8,4128,4130,4071,4131,43,4129,4128,4131,4132,0,3,2,7,8,4129,4128,4131,4132,43,4071,4070,4133,4131,0,3,2,7,8,4071,4070,4133,4131,43,4070,4069,4134,4133,0,3,2,7,8,4070,4069,4134,4133,43,4133,4134,4135,4136,0,3,2,7,8,4133,4134,4135,4136,43,4131,4133,4136,4132,0,3,2,7,8,4131,4133,4136,4132,43,4135,4134,4137,4138,0,3,2,7,8,4135,4134,4137,4138,43,4134,4069,4139,4137,0,3,2,7,8,4134,4069,4139,4137,43,4137,4139,4081,4084,0,3,2,7,8,4137,4139,4081,4084,43,4138,4137,4084,4088,0,3,2,7,8,4138,4137,4084,4088,43,4140,4141,4142,4143,0,3,2,7,8,4140,4141,4142,4143,43,4141,4135,4138,4142,0,3,2,7,8,4141,4135,4138,4142,43,4142,4138,4088,4098,0,3,2,7,8,4142,4138,4088,4098,43,4143,4142,4098,4097,0,3,2,7,8,4143,4142,4098,4097,43,4132,4136,4144,4145,0,3,2,7,8,4132,4136,4144,4145,43,4136,4135,4141,4144,0,3,2,7,8,4136,4135,4141,4144,43,4144,4141,4140,4146,0,3,2,7,8,4144,4141,4140,4146,43,4145,4144,4146,4147,0,3,2,7,8,4145,4144,4146,4147,43,4113,4129,4148,4126,0,3,2,7,8,4113,4129,4148,4126,43,4129,4132,4145,4148,0,3,2,7,8,4129,4132,4145,4148,43,4148,4145,4147,4149,0,3,2,7,8,4148,4145,4147,4149,43,4126,4148,4149,4127,0,3,2,7,8,4126,4148,4149,4127,43,4122,4125,4150,4151,0,3,2,7,8,4122,4125,4150,4151,43,4125,4127,4152,4150,0,3,2,7,8,4125,4127,4152,4150,43,4150,4152,4153,4154,0,3,2,7,8,4150,4152,4153,4154,43,4151,4150,4154,4155,0,3,2,7,8,4151,4150,4154,4155,43,4127,4149,4156,4152,0,3,2,7,8,4127,4149,4156,4152,43,4149,4147,4157,4156,0,3,2,7,8,4149,4147,4157,4156,43,4156,4157,4158,4159,0,3,2,7,8,4156,4157,4158,4159,43,4152,4156,4159,4153,0,3,2,7,8,4152,4156,4159,4153,43,4147,4146,4160,4157,0,3,2,7,8,4147,4146,4160,4157,43,4146,4140,4161,4160,0,3,2,7,8,4146,4140,4161,4160,43,4160,4161,4162,4163,0,3,2,7,8,4160,4161,4162,4163,43,4157,4160,4163,4158,0,3,2,7,8,4157,4160,4163,4158,43,4140,4143,4164,4161,0,3,2,7,8,4140,4143,4164,4161,43,4143,4097,4108,4164,0,3,2,7,8,4143,4097,4108,4164,43,4164,4108,4112,4165,0,3,2,7,8,4164,4108,4112,4165,43,4161,4164,4165,4162,0,3,2,7,8,4161,4164,4165,4162,43,4081,4166,4167,4082,0,3,2,7,8,4081,4166,4167,4082,43,4166,4168,4169,4167,0,3,2,7,8,4166,4168,4169,4167,43,4167,4169,4078,4077,0,3,2,7,8,4167,4169,4078,4077,43,4082,4167,4077,4076,0,3,2,7,8,4082,4167,4077,4076,43,4069,4068,4170,4139,0,3,2,7,8,4069,4068,4170,4139,43,4068,4067,4171,4170,0,3,2,7,8,4068,4067,4171,4170,43,4170,4171,4168,4166,0,3,2,7,8,4170,4171,4168,4166,43,4139,4170,4166,4081,0,3,2,7,8,4139,4170,4166,4081,43,4063,4066,4172,4173,0,3,2,7,8,4063,4066,4172,4173,43,4066,4071,4130,4172,0,3,2,7,8,4066,4071,4130,4172,43,4172,4130,4121,4174,0,3,2,7,8,4172,4130,4121,4174,43,4173,4172,4174,4175,0,3,2,7,8,4173,4172,4174,4175,43,4175,4174,4176,4177,0,3,2,7,8,4175,4174,4176,4177,43,4174,4121,4120,4176,0,3,2,7,8,4174,4121,4120,4176,43,4176,4120,4119,4178,0,3,2,7,8,4176,4120,4119,4178,43,4177,4176,4178,4179,0,3,2,7,8,4177,4176,4178,4179,43,4180,4181,4182,4183,0,3,2,7,8,4180,4181,4182,4183,43,4181,4119,4118,4182,0,3,2,7,8,4181,4119,4118,4182,43,4182,4118,4117,4123,0,3,2,7,8,4182,4118,4117,4123,43,4183,4182,4123,4122,0,3,2,7,8,4183,4182,4123,4122,43,4184,4185,4186,4187,0,3,2,7,8,4184,4185,4186,4187,43,4185,4180,4183,4186,0,3,2,7,8,4185,4180,4183,4186,43,4186,4183,4122,4151,0,3,2,7,8,4186,4183,4122,4151,43,4187,4186,4151,4155,0,3,2,7,8,4187,4186,4151,4155,43,4188,4189,4190,4191,0,3,2,7,8,4188,4189,4190,4191,43,4189,4179,4178,4190,0,3,2,7,8,4189,4179,4178,4190,43,4190,4178,4119,4181,0,3,2,7,8,4190,4178,4119,4181,43,4191,4190,4181,4180,0,3,2,7,8,4191,4190,4181,4180,43,4103,4106,4192,4193,0,3,2,7,8,4103,4106,4192,4193,43,4106,4091,4089,4192,0,3,2,7,8,4106,4091,4089,4192,43,4192,4089,4072,4194,0,3,2,7,8,4192,4089,4072,4194,43,4193,4192,4194,4195,0,3,2,7,8,4193,4192,4194,4195,43,4080,4196,4197,4075,0,3,2,7,8,4080,4196,4197,4075,43,4196,4198,4199,4197,0,3,2,7,8,4196,4198,4199,4197,43,4197,4199,4195,4194,0,3,2,7,8,4197,4199,4195,4194,43,4075,4197,4194,4072,0,3,2,7,8,4075,4197,4194,4072,43,4198,4200,4201,4199,0,3,2,7,8,4198,4200,4201,4199,43,4200,4202,4203,4201,0,3,2,7,8,4200,4202,4203,4201,43,4201,4203,4204,4205,0,3,2,7,8,4201,4203,4204,4205,43,4199,4201,4205,4195,0,3,2,7,8,4199,4201,4205,4195,43,4206,4207,4208,4209,0,3,2,7,8,4206,4207,4208,4209,43,4207,4210,4211,4208,0,3,2,7,8,4207,4210,4211,4208,43,4208,4211,4195,4205,0,3,2,7,8,4208,4211,4195,4205,43,4209,4208,4205,4204,0,3,2,7,8,4209,4208,4205,4204,43,4212,4213,4214,4215,0,3,2,7,8,4212,4213,4214,4215,43,4213,4110,4109,4214,0,3,2,7,8,4213,4110,4109,4214,43,4214,4109,4095,4102,0,3,2,7,8,4214,4109,4095,4102,43,4215,4214,4102,4101,0,3,2,7,8,4215,4214,4102,4101,43,4216,4217,4218,4219,0,3,2,7,8,4216,4217,4218,4219,43,4217,4212,4215,4218,0,3,2,7,8,4217,4212,4215,4218,43,4218,4215,4101,4104,0,3,2,7,8,4218,4215,4101,4104,43,4219,4218,4104,4103,0,3,2,7,8,4219,4218,4104,4103,43,4210,4220,4221,4211,0,3,2,7,8,4210,4220,4221,4211,43,4220,4216,4219,4221,0,3,2,7,8,4220,4216,4219,4221,43,4221,4219,4103,4193,0,3,2,7,8,4221,4219,4103,4193,43,4211,4221,4193,4195,0,3,2,7,8,4211,4221,4193,4195,43,4222,4223,4224,4225,0,3,2,7,8,4222,4223,4224,4225,43,4223,4226,4227,4224,0,3,2,7,8,4223,4226,4227,4224,43,4224,4227,4228,4229,0,3,2,7,8,4224,4227,4228,4229,43,4225,4224,4229,4230,0,3,2,7,8,4225,4224,4229,4230,43,4231,4232,4233,4234,0,3,2,7,8,4231,4232,4233,4234,43,4232,4235,4236,4233,0,3,2,7,8,4232,4235,4236,4233,43,4233,4236,4237,4238,0,3,2,7,8,4233,4236,4237,4238,43,4234,4233,4238,4239,0,3,2,7,8,4234,4233,4238,4239,43,4240,4241,4242,4243,0,3,2,7,8,4240,4241,4242,4243,43,4241,4235,4244,4242,0,3,2,7,8,4241,4235,4244,4242,43,4242,4244,4245,4246,0,3,2,7,8,4242,4244,4245,4246,43,4243,4242,4246,4247,0,3,2,7,8,4243,4242,4246,4247,43,4240,4248,4249,4241,0,3,2,7,8,4240,4248,4249,4241,43,4248,4250,4251,4249,0,3,2,7,8,4248,4250,4251,4249,43,4249,4251,4237,4236,0,3,2,7,8,4249,4251,4237,4236,43,4241,4249,4236,4235,0,3,2,7,8,4241,4249,4236,4235,43,4252,4253,4254,4255,0,3,2,7,8,4252,4253,4254,4255,43,4253,4256,4257,4254,0,3,2,7,8,4253,4256,4257,4254,43,4254,4257,4240,4243,0,3,2,7,8,4254,4257,4240,4243,43,4255,4254,4243,4247,0,3,2,7,8,4255,4254,4243,4247,43,4256,4258,4259,4257,0,3,2,7,8,4256,4258,4259,4257,43,4258,4260,4261,4259,0,3,2,7,8,4258,4260,4261,4259,43,4259,4261,4250,4248,0,3,2,7,8,4259,4261,4250,4248,43,4257,4259,4248,4240,0,3,2,7,8,4257,4259,4248,4240,43,4260,4262,4263,4261,0,3,2,7,8,4260,4262,4263,4261,43,4262,4264,4265,4263,0,3,2,7,8,4262,4264,4265,4263,43,4261,4263,4265,4250,0,3,2,7,8,4261,4263,4265,4250,43,4266,4267,4268,4269,0,3,2,7,8,4266,4267,4268,4269,43,4267,4256,4253,4268,0,3,2,7,8,4267,4256,4253,4268,43,4268,4253,4252,4270,0,3,2,7,8,4268,4253,4252,4270,43,4269,4268,4270,4271,0,3,2,7,8,4269,4268,4270,4271,43,4272,4273,4274,4275,0,3,2,7,8,4272,4273,4274,4275,43,4273,4276,4277,4274,0,3,2,7,8,4273,4276,4277,4274,43,4274,4277,4278,4279,0,3,2,7,8,4274,4277,4278,4279,43,4275,4274,4279,4280,0,3,2,7,8,4275,4274,4279,4280,43,4278,4277,4281,4282,0,3,2,7,8,4278,4277,4281,4282,43,4277,4276,4283,4281,0,3,2,7,8,4277,4276,4283,4281,43,4281,4283,4284,4285,0,3,2,7,8,4281,4283,4284,4285,43,4282,4281,4285,4286,0,3,2,7,8,4282,4281,4285,4286,43,4230,4287,4288,4289,0,3,2,7,8,4230,4287,4288,4289,43,4287,4280,4279,4288,0,3,2,7,8,4287,4280,4279,4288,43,4288,4279,4278,4290,0,3,2,7,8,4288,4279,4278,4290,43,4289,4288,4290,4291,0,3,2,7,8,4289,4288,4290,4291,43,4292,4293,4294,4295,0,3,2,7,8,4292,4293,4294,4295,43,4293,4222,4225,4294,0,3,2,7,8,4293,4222,4225,4294,43,4294,4225,4230,4289,0,3,2,7,8,4294,4225,4230,4289,43,4295,4294,4289,4291,0,3,2,7,8,4295,4294,4289,4291,43,4245,4296,4297,4246,0,3,2,7,8,4245,4296,4297,4246,43,4296,4222,4293,4297,0,3,2,7,8,4296,4222,4293,4297,43,4297,4293,4292,4298,0,3,2,7,8,4297,4293,4292,4298,43,4246,4297,4298,4247,0,3,2,7,8,4246,4297,4298,4247,43,4247,4298,4299,4255,0,3,2,7,8,4247,4298,4299,4255,43,4298,4292,4300,4299,0,3,2,7,8,4298,4292,4300,4299,43,4299,4300,4301,4302,0,3,2,7,8,4299,4300,4301,4302,43,4255,4299,4302,4252,0,3,2,7,8,4255,4299,4302,4252,43,4301,4300,4303,4304,0,3,2,7,8,4301,4300,4303,4304,43,4300,4292,4295,4303,0,3,2,7,8,4300,4292,4295,4303,43,4303,4295,4291,4305,0,3,2,7,8,4303,4295,4291,4305,43,4304,4303,4305,4306,0,3,2,7,8,4304,4303,4305,4306,43,4306,4305,4307,4308,0,3,2,7,8,4306,4305,4307,4308,43,4305,4291,4290,4307,0,3,2,7,8,4305,4291,4290,4307,43,4307,4290,4278,4282,0,3,2,7,8,4307,4290,4278,4282,43,4308,4307,4282,4286,0,3,2,7,8,4308,4307,4282,4286,43,4309,4310,4311,4312,0,3,2,7,8,4309,4310,4311,4312,43,4310,4286,4285,4311,0,3,2,7,8,4310,4286,4285,4311,43,4311,4285,4284,4313,0,3,2,7,8,4311,4285,4284,4313,43,4312,4311,4313,4314,0,3,2,7,8,4312,4311,4313,4314,43,4315,4316,4317,4318,0,3,2,7,8,4315,4316,4317,4318,43,4316,4306,4308,4317,0,3,2,7,8,4316,4306,4308,4317,43,4317,4308,4286,4310,0,3,2,7,8,4317,4308,4286,4310,43,4318,4317,4310,4309,0,3,2,7,8,4318,4317,4310,4309,43,4319,4320,4321,4322,0,3,2,7,8,4319,4320,4321,4322,43,4320,4301,4304,4321,0,3,2,7,8,4320,4301,4304,4321,43,4321,4304,4306,4316,0,3,2,7,8,4321,4304,4306,4316,43,4322,4321,4316,4315,0,3,2,7,8,4322,4321,4316,4315,43,4271,4270,4323,4324,0,3,2,7,8,4271,4270,4323,4324,43,4270,4252,4302,4323,0,3,2,7,8,4270,4252,4302,4323,43,4323,4302,4301,4320,0,3,2,7,8,4323,4302,4301,4320,43,4324,4323,4320,4319,0,3,2,7,8,4324,4323,4320,4319,43,4231,4325,4326,4232,0,3,2,7,8,4231,4325,4326,4232,43,4325,4327,4328,4326,0,3,2,7,8,4325,4327,4328,4326,43,4326,4328,4245,4244,0,3,2,7,8,4326,4328,4245,4244,43,4232,4326,4244,4235,0,3,2,7,8,4232,4326,4244,4235,43,4327,4329,4330,4328,0,3,2,7,8,4327,4329,4330,4328,43,4329,4226,4223,4330,0,3,2,7,8,4329,4226,4223,4330,43,4330,4223,4222,4296,0,3,2,7,8,4330,4223,4222,4296,43,4328,4330,4296,4245,0,3,2,7,8,4328,4330,4296,4245,43,4280,4287,4331,4332,0,3,2,7,8,4280,4287,4331,4332,43,4287,4230,4229,4331,0,3,2,7,8,4287,4230,4229,4331,43,4331,4229,4228,4333,0,3,2,7,8,4331,4229,4228,4333,43,4332,4331,4333,4334,0,3,2,7,8,4332,4331,4333,4334,43,4272,4275,4335,4336,0,3,2,7,8,4272,4275,4335,4336,43,4275,4280,4332,4335,0,3,2,7,8,4275,4280,4332,4335,43,4335,4332,4334,4337,0,3,2,7,8,4335,4332,4334,4337,43,4336,4335,4337,4338,0,3,2,7,8,4336,4335,4337,4338,43,4276,4273,4339,4283,0,3,2,7,8,4276,4273,4339,4283,43,4273,4272,4340,4339,0,3,2,7,8,4273,4272,4340,4339,43,4339,4340,4341,4342,0,3,2,7,8,4339,4340,4341,4342,43,4283,4339,4342,4284,0,3,2,7,8,4283,4339,4342,4284,43,4284,4342,4343,4313,0,3,2,7,8,4284,4342,4343,4313,43,4342,4341,4344,4343,0,3,2,7,8,4342,4341,4344,4343,43,4343,4344,4345,4346,0,3,2,7,8,4343,4344,4345,4346,43,4313,4343,4346,4314,0,3,2,7,8,4313,4343,4346,4314,43,4272,4336,4347,4340,0,3,2,7,8,4272,4336,4347,4340,43,4336,4338,4348,4347,0,3,2,7,8,4336,4338,4348,4347,43,4347,4348,4349,4350,0,3,2,7,8,4347,4348,4349,4350,43,4340,4347,4350,4341,0,3,2,7,8,4340,4347,4350,4341,43,4237,4251,4351,4352,0,3,2,7,8,4237,4251,4351,4352,43,4251,4250,4265,4351,0,3,2,7,8,4251,4250,4265,4351,43,4351,4265,4264,4353,0,3,2,7,8,4351,4265,4264,4353,43,4352,4351,4353,4354,0,3,2,7,8,4352,4351,4353,4354,43,4354,4355,4356,4352,0,3,2,7,8,4354,4355,4356,4352,43,4355,4357,4358,4356,0,3,2,7,8,4355,4357,4358,4356,43,4356,4358,4239,4238,0,3,2,7,8,4356,4358,4239,4238,43,4352,4356,4238,4237,0,3,2,7,8,4352,4356,4238,4237,43,4359,4360,4361,4362,0,3,2,7,8,4359,4360,4361,4362,43,4360,4363,4364,4361,0,3,2,7,8,4360,4363,4364,4361,43,4361,4364,4357,4355,0,3,2,7,8,4361,4364,4357,4355,43,4362,4361,4355,4354,0,3,2,7,8,4362,4361,4355,4354,43,4354,4365,4366,4362,0,3,2,7,8,4354,4365,4366,4362,43,4365,4367,4368,4366,0,3,2,7,8,4365,4367,4368,4366,43,4366,4368,4369,4370,0,3,2,7,8,4366,4368,4369,4370,43,4362,4366,4370,4359,0,3,2,7,8,4362,4366,4370,4359,43,4256,4267,4371,4258,0,3,2,7,8,4256,4267,4371,4258,43,4267,4266,4372,4371,0,3,2,7,8,4267,4266,4372,4371,43,4371,4372,4373,4374,0,3,2,7,8,4371,4372,4373,4374,43,4258,4371,4374,4260,0,3,2,7,8,4258,4371,4374,4260,43,4260,4374,4375,4262,0,3,2,7,8,4260,4374,4375,4262,43,4374,4373,4376,4375,0,3,2,7,8,4374,4373,4376,4375,43,4375,4376,4377,4378,0,3,2,7,8,4375,4376,4377,4378,43,4262,4375,4378,4264,0,3,2,7,8,4262,4375,4378,4264,43,4264,4378,4379,4353,0,3,2,7,8,4264,4378,4379,4353,43,4378,4377,4380,4379,0,3,2,7,8,4378,4377,4380,4379,43,4379,4380,4367,4365,0,3,2,7,8,4379,4380,4367,4365,43,4353,4379,4365,4354,0,3,2,7,8,4353,4379,4365,4354,43,4381,4382,4383,4384,0,3,2,7,8,4381,4382,4383,4384,42,4382,4385,4383,0,2,5,6,4382,4385,4383,43,4383,4385,4386,4387,0,3,2,7,8,4383,4385,4386,4387,43,4384,4383,4387,4388,0,3,2,7,8,4384,4383,4387,4388,43,4389,4390,4391,4392,0,3,2,7,8,4389,4390,4391,4392,43,4390,4385,4382,4391,0,3,2,7,8,4390,4385,4382,4391,43,4381,4393,4391,4382,0,3,2,7,8,4381,4393,4391,4382,43,4392,4391,4393,4394,0,3,2,7,8,4392,4391,4393,4394,43,4395,4396,4397,4398,0,3,2,7,8,4395,4396,4397,4398,43,4385,4395,4398,4386,0,3,2,7,8,4385,4395,4398,4386,43,4399,4400,4401,4402,0,3,2,7,8,4399,4400,4401,4402,43,4400,4397,4396,4401,0,3,2,7,8,4400,4397,4396,4401,42,4401,4396,4403,0,2,5,6,4401,4396,4403,43,4402,4401,4403,4404,0,3,2,7,8,4402,4401,4403,4404,43,4405,4406,4407,4408,0,3,2,7,8,4405,4406,4407,4408,43,4406,4409,4410,4407,0,3,2,7,8,4406,4409,4410,4407,43,4407,4410,4411,4412,0,3,2,7,8,4407,4410,4411,4412,43,4408,4407,4412,4413,0,3,2,7,8,4408,4407,4412,4413,43,4414,4415,4416,4417,0,3,2,7,8,4414,4415,4416,4417,43,4415,4404,4403,4416,0,3,2,7,8,4415,4404,4403,4416,43,4416,4403,4396,4418,0,3,2,7,8,4416,4403,4396,4418,43,4417,4416,4418,4419,0,3,2,7,8,4417,4416,4418,4419,43,4419,4418,4420,4421,0,3,2,7,8,4419,4418,4420,4421,43,4418,4396,4395,4420,0,3,2,7,8,4418,4396,4395,4420,43,4420,4395,4385,4390,0,3,2,7,8,4420,4395,4385,4390,43,4421,4420,4390,4389,0,3,2,7,8,4421,4420,4390,4389,43,4422,4423,4424,4425,0,3,2,7,8,4422,4423,4424,4425,43,4423,4414,4417,4424,0,3,2,7,8,4423,4414,4417,4424,43,4424,4417,4419,4426,0,3,2,7,8,4424,4417,4419,4426,43,4425,4424,4426,4405,0,3,2,7,8,4425,4424,4426,4405,43,4405,4426,4427,4406,0,3,2,7,8,4405,4426,4427,4406,43,4426,4419,4421,4427,0,3,2,7,8,4426,4419,4421,4427,43,4427,4421,4389,4428,0,3,2,7,8,4427,4421,4389,4428,43,4406,4427,4428,4409,0,3,2,7,8,4406,4427,4428,4409,43,4422,4425,4429,4430,0,3,2,7,8,4422,4425,4429,4430,43,4425,4405,4408,4429,0,3,2,7,8,4425,4405,4408,4429,43,4429,4408,4413,4431,0,3,2,7,8,4429,4408,4413,4431,43,4430,4429,4431,4432,0,3,2,7,8,4430,4429,4431,4432,43,4433,4434,4435,4436,0,3,2,7,8,4433,4434,4435,4436,43,4434,4411,4437,4435,0,3,2,7,8,4434,4411,4437,4435,43,4435,4437,4438,4439,0,3,2,7,8,4435,4437,4438,4439,43,4436,4435,4439,4440,0,3,2,7,8,4436,4435,4439,4440,43,4441,4442,4443,4444,0,3,2,7,8,4441,4442,4443,4444,43,4442,4433,4445,4443,0,3,2,7,8,4442,4433,4445,4443,43,4443,4445,4446,4447,0,3,2,7,8,4443,4445,4446,4447,43,4444,4443,4447,4448,0,3,2,7,8,4444,4443,4447,4448,43,4449,4450,4451,4452,0,3,2,7,8,4449,4450,4451,4452,43,4450,4441,4444,4451,0,3,2,7,8,4450,4441,4444,4451,43,4451,4444,4448,4453,0,3,2,7,8,4451,4444,4448,4453,43,4452,4451,4453,4454,0,3,2,7,8,4452,4451,4453,4454,43,4432,4431,4455,4456,0,3,2,7,8,4432,4431,4455,4456,43,4431,4413,4457,4455,0,3,2,7,8,4431,4413,4457,4455,43,4455,4457,4441,4450,0,3,2,7,8,4455,4457,4441,4450,43,4456,4455,4450,4449,0,3,2,7,8,4456,4455,4450,4449,43,4413,4412,4458,4457,0,3,2,7,8,4413,4412,4458,4457,43,4412,4411,4434,4458,0,3,2,7,8,4412,4411,4434,4458,43,4458,4434,4433,4442,0,3,2,7,8,4458,4434,4433,4442,43,4457,4458,4442,4441,0,3,2,7,8,4457,4458,4442,4441,43,4446,4445,4459,4460,0,3,2,7,8,4446,4445,4459,4460,43,4445,4433,4436,4459,0,3,2,7,8,4445,4433,4436,4459,43,4459,4436,4440,4461,0,3,2,7,8,4459,4436,4440,4461,43,4460,4459,4461,4462,0,3,2,7,8,4460,4459,4461,4462,43,4409,4428,4463,4464,0,3,2,7,8,4409,4428,4463,4464,43,4428,4389,4392,4463,0,3,2,7,8,4428,4389,4392,4463,43,4463,4392,4394,4465,0,3,2,7,8,4463,4392,4394,4465,43,4464,4463,4465,4466,0,3,2,7,8,4464,4463,4465,4466,43,4411,4410,4467,4437,0,3,2,7,8,4411,4410,4467,4437,43,4410,4409,4464,4467,0,3,2,7,8,4410,4409,4464,4467,43,4467,4464,4466,4468,0,3,2,7,8,4467,4464,4466,4468,43,4437,4467,4468,4438,0,3,2,7,8,4437,4467,4468,4438,43,4469,4470,4471,4472,0,3,2,7,8,4469,4470,4471,4472,43,4470,4473,4474,4471,0,3,2,7,8,4470,4473,4474,4471,43,4471,4474,4475,4476,0,3,2,7,8,4471,4474,4475,4476,43,4472,4471,4476,4477,0,3,2,7,8,4472,4471,4476,4477,43,4475,4474,4478,4479,0,3,2,7,8,4475,4474,4478,4479,43,4474,4473,4480,4478,0,3,2,7,8,4474,4473,4480,4478,43,4478,4480,4481,4482,0,3,2,7,8,4478,4480,4481,4482,43,4479,4478,4482,4483,0,3,2,7,8,4479,4478,4482,4483,43,4484,4485,4486,4487,0,3,2,7,8,4484,4485,4486,4487,43,4485,4488,4489,4486,0,3,2,7,8,4485,4488,4489,4486,43,4486,4489,4473,4470,0,3,2,7,8,4486,4489,4473,4470,43,4487,4486,4470,4469,0,3,2,7,8,4487,4486,4470,4469,43,4488,4485,4490,4491,0,3,2,7,8,4488,4485,4490,4491,43,4485,4484,4492,4490,0,3,2,7,8,4485,4484,4492,4490,43,4490,4492,4493,4494,0,3,2,7,8,4490,4492,4493,4494,43,4491,4490,4494,4495,0,3,2,7,8,4491,4490,4494,4495,43,4496,4497,4498,4499,0,3,2,7,8,4496,4497,4498,4499,43,4497,4500,4501,4498,0,3,2,7,8,4497,4500,4501,4498,43,4498,4501,4502,4503,0,3,2,7,8,4498,4501,4502,4503,43,4499,4498,4503,4504,0,3,2,7,8,4499,4498,4503,4504,43,4488,4491,4505,4506,0,3,2,7,8,4488,4491,4505,4506,43,4491,4495,4507,4505,0,3,2,7,8,4491,4495,4507,4505,43,4505,4507,4508,4509,0,3,2,7,8,4505,4507,4508,4509,43,4506,4505,4509,4510,0,3,2,7,8,4506,4505,4509,4510,43,4473,4489,4511,4480,0,3,2,7,8,4473,4489,4511,4480,43,4489,4488,4506,4511,0,3,2,7,8,4489,4488,4506,4511,43,4511,4506,4510,4512,0,3,2,7,8,4511,4506,4510,4512,43,4480,4511,4512,4481,0,3,2,7,8,4480,4511,4512,4481,43,4510,4509,4513,4514,0,3,2,7,8,4510,4509,4513,4514,43,4509,4508,4515,4513,0,3,2,7,8,4509,4508,4515,4513,43,4513,4515,4516,4517,0,3,2,7,8,4513,4515,4516,4517,43,4514,4513,4517,4502,0,3,2,7,8,4514,4513,4517,4502,43,4481,4512,4518,4519,0,3,2,7,8,4481,4512,4518,4519,43,4512,4510,4514,4518,0,3,2,7,8,4512,4510,4514,4518,43,4518,4514,4502,4501,0,3,2,7,8,4518,4514,4502,4501,43,4519,4518,4501,4500,0,3,2,7,8,4519,4518,4501,4500,43,4504,4503,4520,4521,0,3,2,7,8,4504,4503,4520,4521,43,4503,4502,4517,4520,0,3,2,7,8,4503,4502,4517,4520,43,4520,4517,4516,4522,0,3,2,7,8,4520,4517,4516,4522,43,4521,4520,4522,4523,0,3,2,7,8,4521,4520,4522,4523,43,4524,4525,4526,4527,0,3,2,7,8,4524,4525,4526,4527,43,4525,4496,4528,4526,0,3,2,7,8,4525,4496,4528,4526,43,4526,4528,4529,4530,0,3,2,7,8,4526,4528,4529,4530,43,4527,4526,4530,4531,0,3,2,7,8,4527,4526,4530,4531,43,4446,4532,4533,4447,0,3,2,7,8,4446,4532,4533,4447,43,4532,4529,4534,4533,0,3,2,7,8,4532,4529,4534,4533,43,4533,4534,4535,4536,0,3,2,7,8,4533,4534,4535,4536,43,4447,4533,4536,4448,0,3,2,7,8,4447,4533,4536,4448,43,4448,4536,4537,4453,0,3,2,7,8,4448,4536,4537,4453,43,4536,4535,4538,4537,0,3,2,7,8,4536,4535,4538,4537,43,4537,4538,4539,4540,0,3,2,7,8,4537,4538,4539,4540,43,4453,4537,4540,4454,0,3,2,7,8,4453,4537,4540,4454,43,4535,4541,4542,4538,0,3,2,7,8,4535,4541,4542,4538,43,4541,4504,4521,4542,0,3,2,7,8,4541,4504,4521,4542,43,4542,4521,4523,4543,0,3,2,7,8,4542,4521,4523,4543,43,4538,4542,4543,4539,0,3,2,7,8,4538,4542,4543,4539,43,4529,4528,4544,4534,0,3,2,7,8,4529,4528,4544,4534,43,4528,4496,4499,4544,0,3,2,7,8,4528,4496,4499,4544,43,4544,4499,4504,4541,0,3,2,7,8,4544,4499,4504,4541,43,4534,4544,4541,4535,0,3,2,7,8,4534,4544,4541,4535,43,4531,4530,4545,4546,0,3,2,7,8,4531,4530,4545,4546,43,4530,4529,4532,4545,0,3,2,7,8,4530,4529,4532,4545,43,4545,4532,4446,4460,0,3,2,7,8,4545,4532,4446,4460,43,4546,4545,4460,4462,0,3,2,7,8,4546,4545,4460,4462,43,4483,4482,4547,4548,0,3,2,7,8,4483,4482,4547,4548,43,4482,4481,4519,4547,0,3,2,7,8,4482,4481,4519,4547,43,4547,4519,4500,4549,0,3,2,7,8,4547,4519,4500,4549,43,4548,4547,4549,4550,0,3,2,7,8,4548,4547,4549,4550,43,4550,4549,4551,4552,0,3,2,7,8,4550,4549,4551,4552,43,4549,4500,4497,4551,0,3,2,7,8,4549,4500,4497,4551,43,4551,4497,4496,4525,0,3,2,7,8,4551,4497,4496,4525,43,4552,4551,4525,4524,0,3,2,7,8,4552,4551,4525,4524,43,4553,4554,4555,4556,0,3,2,7,8,4553,4554,4555,4556,43,4554,4557,4558,4555,0,3,2,7,8,4554,4557,4558,4555,43,4555,4558,4559,4560,0,3,2,7,8,4555,4558,4559,4560,43,4556,4555,4560,4561,0,3,2,7,8,4556,4555,4560,4561,43,4561,4560,4562,4563,0,3,2,7,8,4561,4560,4562,4563,43,4560,4559,4564,4562,0,3,2,7,8,4560,4559,4564,4562,43,4562,4564,4565,4566,0,3,2,7,8,4562,4564,4565,4566,43,4563,4562,4566,4567,0,3,2,7,8,4563,4562,4566,4567,43,4559,4568,4569,4564,0,3,2,7,8,4559,4568,4569,4564,43,4568,4570,4571,4569,0,3,2,7,8,4568,4570,4571,4569,43,4569,4571,4572,4573,0,3,2,7,8,4569,4571,4572,4573,43,4564,4569,4573,4565,0,3,2,7,8,4564,4569,4573,4565,43,4557,4574,4575,4558,0,3,2,7,8,4557,4574,4575,4558,43,4574,4576,4577,4575,0,3,2,7,8,4574,4576,4577,4575,43,4575,4577,4570,4568,0,3,2,7,8,4575,4577,4570,4568,43,4558,4575,4568,4559,0,3,2,7,8,4558,4575,4568,4559,43,4386,4398,4578,4579,0,3,2,7,8,4386,4398,4578,4579,43,4398,4397,4580,4578,0,3,2,7,8,4398,4397,4580,4578,43,4578,4580,4581,4582,0,3,2,7,8,4578,4580,4581,4582,43,4579,4578,4582,4583,0,3,2,7,8,4579,4578,4582,4583,43,4584,4585,4586,4587,0,3,2,7,8,4584,4585,4586,4587,43,4585,4581,4580,4586,0,3,2,7,8,4585,4581,4580,4586,43,4586,4580,4397,4400,0,3,2,7,8,4586,4580,4397,4400,43,4587,4586,4400,4399,0,3,2,7,8,4587,4586,4400,4399,43,4588,4589,4590,4591,0,3,2,7,8,4588,4589,4590,4591,43,4589,4592,4593,4590,0,3,2,7,8,4589,4592,4593,4590,43,4590,4593,4594,4595,0,3,2,7,8,4590,4593,4594,4595,43,4591,4590,4595,4596,0,3,2,7,8,4591,4590,4595,4596,43,4597,4598,4599,4600,0,3,2,7,8,4597,4598,4599,4600,43,4598,4601,4602,4599,0,3,2,7,8,4598,4601,4602,4599,43,4599,4602,4557,4554,0,3,2,7,8,4599,4602,4557,4554,43,4554,4553,4600,4599,0,3,2,7,8,4554,4553,4600,4599,43,4557,4602,4603,4574,0,3,2,7,8,4557,4602,4603,4574,43,4602,4601,4604,4603,0,3,2,7,8,4602,4601,4604,4603,43,4603,4604,4588,4605,0,3,2,7,8,4603,4604,4588,4605,43,4574,4603,4605,4576,0,3,2,7,8,4574,4603,4605,4576,43,4601,4598,4606,4607,0,3,2,7,8,4601,4598,4606,4607,43,4598,4597,4608,4606,0,3,2,7,8,4598,4597,4608,4606,43,4606,4608,4609,4610,0,3,2,7,8,4606,4608,4609,4610,43,4607,4606,4610,4611,0,3,2,7,8,4607,4606,4610,4611,43,4388,4387,4612,4613,0,3,2,7,8,4388,4387,4612,4613,43,4387,4386,4579,4612,0,3,2,7,8,4387,4386,4579,4612,43,4612,4579,4583,4614,0,3,2,7,8,4612,4579,4583,4614,43,4613,4612,4614,4615,0,3,2,7,8,4613,4612,4614,4615,43,4583,4616,4617,4614,0,3,2,7,8,4583,4616,4617,4614,43,4616,4611,4610,4617,0,3,2,7,8,4616,4611,4610,4617,43,4617,4610,4609,4618,0,3,2,7,8,4617,4610,4609,4618,43,4614,4617,4618,4615,0,3,2,7,8,4614,4617,4618,4615,43,4601,4607,4619,4604,0,3,2,7,8,4601,4607,4619,4604,43,4607,4611,4620,4619,0,3,2,7,8,4607,4611,4620,4619,43,4619,4620,4592,4589,0,3,2,7,8,4619,4620,4592,4589,43,4604,4619,4589,4588,0,3,2,7,8,4604,4619,4589,4588,43,4581,4621,4622,4582,0,3,2,7,8,4581,4621,4622,4582,43,4621,4592,4620,4622,0,3,2,7,8,4621,4592,4620,4622,43,4622,4620,4611,4616,0,3,2,7,8,4622,4620,4611,4616,43,4582,4622,4616,4583,0,3,2,7,8,4582,4622,4616,4583,43,4592,4621,4623,4593,0,3,2,7,8,4592,4621,4623,4593,43,4621,4581,4585,4623,0,3,2,7,8,4621,4581,4585,4623,43,4623,4585,4584,4624,0,3,2,7,8,4623,4585,4584,4624,43,4593,4623,4624,4594,0,3,2,7,8,4593,4623,4624,4594,43,4576,4605,4625,4626,0,3,2,7,8,4576,4605,4625,4626,43,4605,4588,4591,4625,0,3,2,7,8,4605,4588,4591,4625,43,4625,4591,4596,4627,0,3,2,7,8,4625,4591,4596,4627,43,4626,4625,4627,4628,0,3,2,7,8,4626,4625,4627,4628,43,4628,4629,4630,4626,0,3,2,7,8,4628,4629,4630,4626,43,4629,4631,4632,4630,0,3,2,7,8,4629,4631,4632,4630,43,4630,4632,4570,4577,0,3,2,7,8,4630,4632,4570,4577,43,4626,4630,4577,4576,0,3,2,7,8,4626,4630,4577,4576,43,4631,4633,4634,4632,0,3,2,7,8,4631,4633,4634,4632,43,4633,4635,4636,4634,0,3,2,7,8,4633,4635,4636,4634,43,4634,4636,4572,4571,0,3,2,7,8,4634,4636,4572,4571,43,4632,4634,4571,4570,0,3,2,7,8,4632,4634,4571,4570,43,4637,4638,4639,4640,0,3,2,7,8,4637,4638,4639,4640,43,4638,4641,4642,4639,0,3,2,7,8,4638,4641,4642,4639,43,4639,4642,4643,4644,0,3,2,7,8,4639,4642,4643,4644,43,4640,4639,4644,4645,0,3,2,7,8,4640,4639,4644,4645,43,4565,4646,4647,4566,0,3,2,7,8,4565,4646,4647,4566,43,4646,4637,4640,4647,0,3,2,7,8,4646,4637,4640,4647,43,4647,4640,4645,4648,0,3,2,7,8,4647,4640,4645,4648,43,4566,4647,4648,4567,0,3,2,7,8,4566,4647,4648,4567,43,4572,4649,4650,4573,0,3,2,7,8,4572,4649,4650,4573,43,4649,4651,4652,4650,0,3,2,7,8,4649,4651,4652,4650,43,4650,4652,4637,4646,0,3,2,7,8,4650,4652,4637,4646,43,4573,4650,4646,4565,0,3,2,7,8,4573,4650,4646,4565,43,4651,4653,4654,4652,0,3,2,7,8,4651,4653,4654,4652,43,4653,4655,4656,4654,0,3,2,7,8,4653,4655,4656,4654,43,4654,4656,4641,4638,0,3,2,7,8,4654,4656,4641,4638,43,4652,4654,4638,4637,0,3,2,7,8,4652,4654,4638,4637,43,4657,4658,4659,4660,0,3,2,7,8,4657,4658,4659,4660,43,4658,4484,4487,4659,0,3,2,7,8,4658,4484,4487,4659,43,4659,4487,4469,4661,0,3,2,7,8,4659,4487,4469,4661,43,4660,4659,4661,4662,0,3,2,7,8,4660,4659,4661,4662,43,4484,4658,4663,4492,0,3,2,7,8,4484,4658,4663,4492,43,4658,4657,4664,4663,0,3,2,7,8,4658,4657,4664,4663,43,4663,4664,4665,4666,0,3,2,7,8,4663,4664,4665,4666,43,4492,4663,4666,4493,0,3,2,7,8,4492,4663,4666,4493,43,4667,4668,4669,4670,0,3,2,7,8,4667,4668,4669,4670,43,4668,4671,4672,4669,0,3,2,7,8,4668,4671,4672,4669,43,4669,4672,4673,4674,0,3,2,7,8,4669,4672,4673,4674,43,4670,4669,4674,4675,0,3,2,7,8,4670,4669,4674,4675,43,4641,4676,4677,4642,0,3,2,7,8,4641,4676,4677,4642,43,4676,4678,4679,4677,0,3,2,7,8,4676,4678,4679,4677,43,4677,4679,4680,4681,0,3,2,7,8,4677,4679,4680,4681,43,4642,4677,4681,4643,0,3,2,7,8,4642,4677,4681,4643,43,4673,4682,4683,4684,0,3,2,7,8,4673,4682,4683,4684,43,4682,4678,4676,4683,0,3,2,7,8,4682,4678,4676,4683,43,4683,4676,4641,4656,0,3,2,7,8,4683,4676,4641,4656,43,4684,4683,4656,4655,0,3,2,7,8,4684,4683,4656,4655,43,4685,4686,4687,4688,0,3,2,7,8,4685,4686,4687,4688,43,4686,4680,4679,4687,0,3,2,7,8,4686,4680,4679,4687,43,4687,4679,4678,4689,0,3,2,7,8,4687,4679,4678,4689,43,4688,4687,4689,4690,0,3,2,7,8,4688,4687,4689,4690,43,4662,4661,4691,4692,0,3,2,7,8,4662,4661,4691,4692,43,4661,4469,4472,4691,0,3,2,7,8,4661,4469,4472,4691,43,4691,4472,4477,4693,0,3,2,7,8,4691,4472,4477,4693,43,4692,4691,4693,4694,0,3,2,7,8,4692,4691,4693,4694,43,4685,4688,4695,4696,0,3,2,7,8,4685,4688,4695,4696,43,4688,4690,4697,4695,0,3,2,7,8,4688,4690,4697,4695,43,4695,4697,4662,4692,0,3,2,7,8,4695,4697,4662,4692,43,4696,4695,4692,4694,0,3,2,7,8,4696,4695,4692,4694,43,4671,4698,4699,4672,0,3,2,7,8,4671,4698,4699,4672,43,4698,4690,4689,4699,0,3,2,7,8,4698,4690,4689,4699,43,4699,4689,4678,4682,0,3,2,7,8,4699,4689,4678,4682,43,4672,4699,4682,4673,0,3,2,7,8,4672,4699,4682,4673,43,4690,4698,4700,4697,0,3,2,7,8,4690,4698,4700,4697,43,4698,4671,4701,4700,0,3,2,7,8,4698,4671,4701,4700,43,4700,4701,4657,4660,0,3,2,7,8,4700,4701,4657,4660,43,4697,4700,4660,4662,0,3,2,7,8,4697,4700,4660,4662,43,4665,4664,4702,4703,0,3,2,7,8,4665,4664,4702,4703,43,4664,4657,4701,4702,0,3,2,7,8,4664,4657,4701,4702,43,4702,4701,4671,4668,0,3,2,7,8,4702,4701,4671,4668,43,4703,4702,4668,4667,0,3,2,7,8,4703,4702,4668,4667,43,4675,4674,4704,4705,0,3,2,7,8,4675,4674,4704,4705,43,4674,4673,4684,4704,0,3,2,7,8,4674,4673,4684,4704,43,4704,4684,4655,4706,0,3,2,7,8,4704,4684,4655,4706,43,4705,4704,4706,4707,0,3,2,7,8,4705,4704,4706,4707,43,4651,4708,4709,4653,0,3,2,7,8,4651,4708,4709,4653,43,4708,4710,4711,4709,0,3,2,7,8,4708,4710,4711,4709,43,4709,4711,4707,4706,0,3,2,7,8,4709,4711,4707,4706,43,4653,4709,4706,4655,0,3,2,7,8,4653,4709,4706,4655,43,4572,4636,4712,4649,0,3,2,7,8,4572,4636,4712,4649,43,4636,4635,4713,4712,0,3,2,7,8,4636,4635,4713,4712,43,4712,4713,4710,4708,0,3,2,7,8,4712,4713,4710,4708,43,4649,4712,4708,4651,0,3,2,7,8,4649,4712,4708,4651,43,155,162,4714,4715,0,3,2,7,8,155,162,4714,4715,43,162,149,4716,4714,0,3,2,7,8,162,149,4716,4714,43,4714,4716,4717,4718,0,3,2,7,8,4714,4716,4717,4718,43,4715,4714,4718,4719,0,3,2,7,8,4715,4714,4718,4719,43,4719,4720,4721,4715,0,3,2,7,8,4719,4720,4721,4715,43,4720,2140,2143,4721,0,3,2,7,8,4720,2140,2143,4721,43,4721,2143,771,774,0,3,2,7,8,4721,2143,771,774,43,774,155,4715,4721,0,3,2,7,8,774,155,4715,4721,43,4722,4723,4724,4725,0,3,2,7,8,4722,4723,4724,4725,43,4723,4726,4727,4724,0,3,2,7,8,4723,4726,4727,4724,43,4724,4727,4112,4111,0,3,2,7,8,4724,4727,4112,4111,43,4725,4724,4111,4110,0,3,2,7,8,4725,4724,4111,4110,43,4728,4729,4730,4731,0,3,2,7,8,4728,4729,4730,4731,43,4729,4732,4733,4730,0,3,2,7,8,4729,4732,4733,4730,43,4730,4733,4155,4154,0,3,2,7,8,4730,4733,4155,4154,43,4731,4730,4154,4153,0,3,2,7,8,4731,4730,4154,4153,43,4734,4735,4736,4737,0,3,2,7,8,4734,4735,4736,4737,43,4735,4728,4731,4736,0,3,2,7,8,4735,4728,4731,4736,43,4736,4731,4153,4159,0,3,2,7,8,4736,4731,4153,4159,43,4737,4736,4159,4158,0,3,2,7,8,4737,4736,4159,4158,43,4738,4739,4740,4741,0,3,2,7,8,4738,4739,4740,4741,43,4739,4734,4737,4740,0,3,2,7,8,4739,4734,4737,4740,43,4740,4737,4158,4163,0,3,2,7,8,4740,4737,4158,4163,43,4741,4740,4163,4162,0,3,2,7,8,4741,4740,4163,4162,43,4726,4742,4743,4727,0,3,2,7,8,4726,4742,4743,4727,43,4742,4738,4741,4743,0,3,2,7,8,4742,4738,4741,4743,43,4743,4741,4162,4165,0,3,2,7,8,4743,4741,4162,4165,43,4727,4743,4165,4112,0,3,2,7,8,4727,4743,4165,4112,43,4732,4744,4745,4733,0,3,2,7,8,4732,4744,4745,4733,43,4744,4746,4747,4745,0,3,2,7,8,4744,4746,4747,4745,43,4745,4747,4184,4187,0,3,2,7,8,4745,4747,4184,4187,43,4733,4745,4187,4155,0,3,2,7,8,4733,4745,4187,4155,43,4748,4749,4750,4751,0,3,2,7,8,4748,4749,4750,4751,43,4749,4752,4753,4750,0,3,2,7,8,4749,4752,4753,4750,43,4750,4753,4206,4754,0,3,2,7,8,4750,4753,4206,4754,43,4751,4750,4754,4755,0,3,2,7,8,4751,4750,4754,4755,43,4752,4756,4757,4753,0,3,2,7,8,4752,4756,4757,4753,43,4756,4758,4759,4757,0,3,2,7,8,4756,4758,4759,4757,43,4757,4759,4210,4207,0,3,2,7,8,4757,4759,4210,4207,43,4753,4757,4207,4206,0,3,2,7,8,4753,4757,4207,4206,43,4760,4761,4762,4763,0,3,2,7,8,4760,4761,4762,4763,43,4761,4722,4725,4762,0,3,2,7,8,4761,4722,4725,4762,43,4762,4725,4110,4213,0,3,2,7,8,4762,4725,4110,4213,43,4763,4762,4213,4212,0,3,2,7,8,4763,4762,4213,4212,43,4764,4765,4766,4767,0,3,2,7,8,4764,4765,4766,4767,43,4765,4760,4763,4766,0,3,2,7,8,4765,4760,4763,4766,43,4766,4763,4212,4217,0,3,2,7,8,4766,4763,4212,4217,43,4767,4766,4217,4216,0,3,2,7,8,4767,4766,4217,4216,43,4758,4768,4769,4759,0,3,2,7,8,4758,4768,4769,4759,43,4768,4764,4767,4769,0,3,2,7,8,4768,4764,4767,4769,43,4769,4767,4216,4220,0,3,2,7,8,4769,4767,4216,4220,43,4759,4769,4220,4210,0,3,2,7,8,4759,4769,4220,4210,43,4770,4771,4772,4773,0,3,2,7,8,4770,4771,4772,4773,43,4771,4774,4775,4772,0,3,2,7,8,4771,4774,4775,4772,43,4772,4775,4776,4777,0,3,2,7,8,4772,4775,4776,4777,43,4773,4772,4777,4778,0,3,2,7,8,4773,4772,4777,4778,43,4779,4780,4781,4782,0,3,2,7,8,4779,4780,4781,4782,43,4780,4770,4773,4781,0,3,2,7,8,4780,4770,4773,4781,43,4781,4773,4778,4783,0,3,2,7,8,4781,4773,4778,4783,43,4782,4781,4783,4784,0,3,2,7,8,4782,4781,4783,4784,43,4746,4785,4786,4747,0,3,2,7,8,4746,4785,4786,4747,43,4785,4787,4788,4786,0,3,2,7,8,4785,4787,4788,4786,43,4786,4788,4789,4790,0,3,2,7,8,4786,4788,4789,4790,43,4747,4786,4790,4184,0,3,2,7,8,4747,4786,4790,4184,43,4787,4791,4792,4788,0,3,2,7,8,4787,4791,4792,4788,43,4791,4779,4782,4792,0,3,2,7,8,4791,4779,4782,4792,43,4792,4782,4784,4793,0,3,2,7,8,4792,4782,4784,4793,43,4788,4792,4793,4789,0,3,2,7,8,4788,4792,4793,4789,43,4774,4794,4795,4775,0,3,2,7,8,4774,4794,4795,4775,43,4794,4796,4797,4795,0,3,2,7,8,4794,4796,4797,4795,43,4795,4797,4798,4799,0,3,2,7,8,4795,4797,4798,4799,43,4775,4795,4799,4776,0,3,2,7,8,4775,4795,4799,4776,43,4796,4800,4801,4797,0,3,2,7,8,4796,4800,4801,4797,43,4800,4748,4751,4801,0,3,2,7,8,4800,4748,4751,4801,43,4801,4751,4755,4802,0,3,2,7,8,4801,4751,4755,4802,43,4797,4801,4802,4798,0,3,2,7,8,4797,4801,4802,4798,43,4803,4804,4805,4806,0,3,2,7,8,4803,4804,4805,4806,43,4804,4798,4802,4805,0,3,2,7,8,4804,4798,4802,4805,43,4806,4805,4802,4755,0,3,2,7,8,4806,4805,4802,4755,43,4803,4807,4808,4804,0,3,2,7,8,4803,4807,4808,4804,43,4807,4809,4810,4808,0,3,2,7,8,4807,4809,4810,4808,43,4808,4810,4776,4799,0,3,2,7,8,4808,4810,4776,4799,43,4804,4808,4799,4798,0,3,2,7,8,4804,4808,4799,4798,43,4809,4811,4812,4810,0,3,2,7,8,4809,4811,4812,4810,43,4811,4813,4814,4812,0,3,2,7,8,4811,4813,4814,4812,43,4812,4814,4778,4777,0,3,2,7,8,4812,4814,4778,4777,43,4810,4812,4777,4776,0,3,2,7,8,4810,4812,4777,4776,43,4813,4815,4816,4814,0,3,2,7,8,4813,4815,4816,4814,43,4815,4817,4818,4816,0,3,2,7,8,4815,4817,4818,4816,43,4816,4818,4784,4783,0,3,2,7,8,4816,4818,4784,4783,43,4814,4816,4783,4778,0,3,2,7,8,4814,4816,4783,4778,43,4819,4820,4821,4822,0,3,2,7,8,4819,4820,4821,4822,43,4820,4789,4793,4821,0,3,2,7,8,4820,4789,4793,4821,43,4821,4793,4784,4818,0,3,2,7,8,4821,4793,4784,4818,43,4822,4821,4818,4817,0,3,2,7,8,4822,4821,4818,4817,43,4819,4823,4824,4820,0,3,2,7,8,4819,4823,4824,4820,43,4823,4184,4790,4824,0,3,2,7,8,4823,4184,4790,4824,43,4820,4824,4790,4789,0,3,2,7,8,4820,4824,4790,4789,43,4825,4826,4827,4828,0,3,2,7,8,4825,4826,4827,4828,43,4826,4829,4830,4827,0,3,2,7,8,4826,4829,4830,4827,43,4827,4830,4831,4832,0,3,2,7,8,4827,4830,4831,4832,43,4828,4827,4832,4833,0,3,2,7,8,4828,4827,4832,4833,43,4833,4832,4834,4835,0,3,2,7,8,4833,4832,4834,4835,43,4832,4831,4836,4834,0,3,2,7,8,4832,4831,4836,4834,43,4834,4836,4837,4838,0,3,2,7,8,4834,4836,4837,4838,43,4835,4834,4838,4839,0,3,2,7,8,4835,4834,4838,4839,43,4837,4840,4841,4838,0,3,2,7,8,4837,4840,4841,4838,43,4840,4842,4843,4841,0,3,2,7,8,4840,4842,4843,4841,43,4841,4843,4844,4845,0,3,2,7,8,4841,4843,4844,4845,43,4838,4841,4845,4839,0,3,2,7,8,4838,4841,4845,4839,43,4846,4847,4848,4849,0,3,2,7,8,4846,4847,4848,4849,43,4847,4850,4851,4848,0,3,2,7,8,4847,4850,4851,4848,43,4848,4851,4852,4853,0,3,2,7,8,4848,4851,4852,4853,43,4849,4848,4853,4854,0,3,2,7,8,4849,4848,4853,4854,43,4855,4856,4857,4858,0,3,2,7,8,4855,4856,4857,4858,43,4856,4859,4860,4857,0,3,2,7,8,4856,4859,4860,4857,43,4857,4860,4846,4849,0,3,2,7,8,4857,4860,4846,4849,43,4858,4857,4849,4854,0,3,2,7,8,4858,4857,4849,4854,43,4861,4862,4863,4864,0,3,2,7,8,4861,4862,4863,4864,43,4862,4865,4866,4863,0,3,2,7,8,4862,4865,4866,4863,43,4863,4866,4867,4868,0,3,2,7,8,4863,4866,4867,4868,43,4864,4863,4868,4869,0,3,2,7,8,4864,4863,4868,4869,43,4870,4871,4872,4873,0,3,2,7,8,4870,4871,4872,4873,43,4871,4869,4868,4872,0,3,2,7,8,4871,4869,4868,4872,43,4872,4868,4867,4874,0,3,2,7,8,4872,4868,4867,4874,43,4873,4872,4874,4875,0,3,2,7,8,4873,4872,4874,4875,43,4876,4877,4878,4879,0,3,2,7,8,4876,4877,4878,4879,43,4877,4875,4880,4878,0,3,2,7,8,4877,4875,4880,4878,43,4878,4880,4881,4882,0,3,2,7,8,4878,4880,4881,4882,43,4879,4878,4882,4883,0,3,2,7,8,4879,4878,4882,4883,43,4875,4884,4885,4880,0,3,2,7,8,4875,4884,4885,4880,43,4884,4886,4887,4885,0,3,2,7,8,4884,4886,4887,4885,43,4885,4887,4888,4889,0,3,2,7,8,4885,4887,4888,4889,43,4880,4885,4889,4881,0,3,2,7,8,4880,4885,4889,4881,43,4890,4891,4892,4893,0,3,2,7,8,4890,4891,4892,4893,43,4891,4886,4884,4892,0,3,2,7,8,4891,4886,4884,4892,43,4892,4884,4875,4874,0,3,2,7,8,4892,4884,4875,4874,43,4893,4892,4874,4867,0,3,2,7,8,4893,4892,4874,4867,43,4894,4895,4896,4897,0,3,2,7,8,4894,4895,4896,4897,43,4895,4898,4899,4896,0,3,2,7,8,4895,4898,4899,4896,43,4896,4899,4900,4901,0,3,2,7,8,4896,4899,4900,4901,43,4897,4896,4901,4902,0,3,2,7,8,4897,4896,4901,4902,43,4903,4904,4905,4906,0,3,2,7,8,4903,4904,4905,4906,43,4904,4907,4908,4905,0,3,2,7,8,4904,4907,4908,4905,43,4905,4908,4909,4910,0,3,2,7,8,4905,4908,4909,4910,43,4906,4905,4910,4911,0,3,2,7,8,4906,4905,4910,4911,43,4912,4913,4914,4915,0,3,2,7,8,4912,4913,4914,4915,43,4913,4916,4917,4914,0,3,2,7,8,4913,4916,4917,4914,43,4914,4917,4890,4893,0,3,2,7,8,4914,4917,4890,4893,43,4915,4914,4893,4867,0,3,2,7,8,4915,4914,4893,4867,43,4918,4919,4920,4921,0,3,2,7,8,4918,4919,4920,4921,43,4919,4916,4913,4920,0,3,2,7,8,4919,4916,4913,4920,43,4920,4913,4912,4922,0,3,2,7,8,4920,4913,4912,4922,43,4921,4920,4922,4923,0,3,2,7,8,4921,4920,4922,4923,43,4909,4908,4924,4925,0,3,2,7,8,4909,4908,4924,4925,43,4908,4907,4926,4924,0,3,2,7,8,4908,4907,4926,4924,43,4924,4926,4927,4928,0,3,2,7,8,4924,4926,4927,4928,43,4925,4924,4928,4929,0,3,2,7,8,4925,4924,4928,4929,43,4930,4931,4932,4933,0,3,2,7,8,4930,4931,4932,4933,43,4931,4934,4935,4932,0,3,2,7,8,4931,4934,4935,4932,43,4932,4935,4936,4937,0,3,2,7,8,4932,4935,4936,4937,43,4933,4932,4937,4938,0,3,2,7,8,4933,4932,4937,4938,43,4938,4939,4940,4933,0,3,2,7,8,4938,4939,4940,4933,43,4939,4941,4942,4940,0,3,2,7,8,4939,4941,4942,4940,43,4940,4942,4943,4944,0,3,2,7,8,4940,4942,4943,4944,43,4933,4940,4944,4930,0,3,2,7,8,4933,4940,4944,4930,43,4945,4946,4947,4948,0,3,2,7,8,4945,4946,4947,4948,43,4946,4949,4950,4947,0,3,2,7,8,4946,4949,4950,4947,43,4947,4950,4951,4952,0,3,2,7,8,4947,4950,4951,4952,43,4948,4947,4952,4846,0,3,2,7,8,4948,4947,4952,4846,43,4859,4953,4954,4860,0,3,2,7,8,4859,4953,4954,4860,43,4953,4955,4956,4954,0,3,2,7,8,4953,4955,4956,4954,43,4954,4956,4945,4948,0,3,2,7,8,4954,4956,4945,4948,43,4860,4954,4948,4846,0,3,2,7,8,4860,4954,4948,4846,43,4957,4958,4959,4960,0,3,2,7,8,4957,4958,4959,4960,43,4958,4961,4962,4959,0,3,2,7,8,4958,4961,4962,4959,43,4959,4962,4949,4946,0,3,2,7,8,4959,4962,4949,4946,43,4960,4959,4946,4945,0,3,2,7,8,4960,4959,4946,4945,43,4955,4963,4964,4956,0,3,2,7,8,4955,4963,4964,4956,43,4963,4965,4966,4964,0,3,2,7,8,4963,4965,4966,4964,43,4964,4966,4957,4960,0,3,2,7,8,4964,4966,4957,4960,43,4956,4964,4960,4945,0,3,2,7,8,4956,4964,4960,4945,43,4876,4879,4967,4968,0,3,2,7,8,4876,4879,4967,4968,43,4879,4883,4969,4967,0,3,2,7,8,4879,4883,4969,4967,43,4967,4969,4965,4963,0,3,2,7,8,4967,4969,4965,4963,43,4968,4967,4963,4955,0,3,2,7,8,4968,4967,4963,4955,43,4903,4970,4971,4904,0,3,2,7,8,4903,4970,4971,4904,43,4970,4972,4973,4971,0,3,2,7,8,4970,4972,4973,4971,43,4971,4973,4974,4975,0,3,2,7,8,4971,4973,4974,4975,43,4904,4971,4975,4907,0,3,2,7,8,4904,4971,4975,4907,43,4976,4977,4978,4979,0,3,2,7,8,4976,4977,4978,4979,43,4977,4936,4980,4978,0,3,2,7,8,4977,4936,4980,4978,43,4978,4980,4974,4973,0,3,2,7,8,4978,4980,4974,4973,43,4979,4978,4973,4972,0,3,2,7,8,4979,4978,4973,4972,43,4883,4882,4981,4982,0,3,2,7,8,4883,4882,4981,4982,43,4882,4881,4983,4981,0,3,2,7,8,4882,4881,4983,4981,43,4981,4983,4984,4985,0,3,2,7,8,4981,4983,4984,4985,43,4982,4981,4985,4976,0,3,2,7,8,4982,4981,4985,4976,43,4881,4889,4986,4983,0,3,2,7,8,4881,4889,4986,4983,43,4889,4888,4987,4986,0,3,2,7,8,4889,4888,4987,4986,43,4986,4987,4988,4989,0,3,2,7,8,4986,4987,4988,4989,43,4983,4986,4989,4984,0,3,2,7,8,4983,4986,4989,4984,43,4984,4989,4990,4991,0,3,2,7,8,4984,4989,4990,4991,43,4989,4988,4992,4990,0,3,2,7,8,4989,4988,4992,4990,43,4990,4992,4993,4994,0,3,2,7,8,4990,4992,4993,4994,43,4991,4990,4994,4938,0,3,2,7,8,4991,4990,4994,4938,43,4984,4991,4995,4985,0,3,2,7,8,4984,4991,4995,4985,43,4991,4938,4937,4995,0,3,2,7,8,4991,4938,4937,4995,43,4995,4937,4936,4977,0,3,2,7,8,4995,4937,4936,4977,43,4985,4995,4977,4976,0,3,2,7,8,4985,4995,4977,4976,43,4965,4969,4996,4997,0,3,2,7,8,4965,4969,4996,4997,43,4969,4883,4982,4996,0,3,2,7,8,4969,4883,4982,4996,43,4996,4982,4976,4979,0,3,2,7,8,4996,4982,4976,4979,43,4997,4996,4979,4972,0,3,2,7,8,4997,4996,4979,4972,43,4965,4997,4998,4966,0,3,2,7,8,4965,4997,4998,4966,43,4997,4972,4970,4998,0,3,2,7,8,4997,4972,4970,4998,43,4998,4970,4903,4999,0,3,2,7,8,4998,4970,4903,4999,43,4966,4998,4999,4957,0,3,2,7,8,4966,4998,4999,4957,43,4957,4999,5000,4958,0,3,2,7,8,4957,4999,5000,4958,43,4999,4903,4906,5000,0,3,2,7,8,4999,4903,4906,5000,43,5000,4906,4911,5001,0,3,2,7,8,5000,4906,4911,5001,43,4958,5000,5001,4961,0,3,2,7,8,4958,5000,5001,4961,43,4909,4925,5002,5003,0,3,2,7,8,4909,4925,5002,5003,43,4925,4929,5004,5002,0,3,2,7,8,4925,4929,5004,5002,43,5002,5004,5005,5006,0,3,2,7,8,5002,5004,5005,5006,43,5003,5002,5006,5007,0,3,2,7,8,5003,5002,5006,5007,43,4911,4910,5008,5009,0,3,2,7,8,4911,4910,5008,5009,43,4910,4909,5003,5008,0,3,2,7,8,4910,4909,5003,5008,43,5008,5003,5007,5010,0,3,2,7,8,5008,5003,5007,5010,43,5009,5008,5010,5011,0,3,2,7,8,5009,5008,5010,5011,43,5007,5006,5012,5013,0,3,2,7,8,5007,5006,5012,5013,43,5006,5005,5014,5012,0,3,2,7,8,5006,5005,5014,5012,43,5012,5014,4635,4633,0,3,2,7,8,5012,5014,4635,4633,43,5013,5012,4633,4631,0,3,2,7,8,5013,5012,4633,4631,43,5011,5010,5015,5016,0,3,2,7,8,5011,5010,5015,5016,43,5010,5007,5013,5015,0,3,2,7,8,5010,5007,5013,5015,43,5015,5013,4631,4629,0,3,2,7,8,5015,5013,4631,4629,43,5016,5015,4629,4628,0,3,2,7,8,5016,5015,4629,4628,43,4596,5017,5018,4627,0,3,2,7,8,4596,5017,5018,4627,43,5017,5019,5020,5018,0,3,2,7,8,5017,5019,5020,5018,43,5018,5020,5011,5016,0,3,2,7,8,5018,5020,5011,5016,43,4627,5018,5016,4628,0,3,2,7,8,4627,5018,5016,4628,43,4961,5001,5021,5022,0,3,2,7,8,4961,5001,5021,5022,43,5001,4911,5009,5021,0,3,2,7,8,5001,4911,5009,5021,43,5021,5009,5011,5020,0,3,2,7,8,5021,5009,5011,5020,43,5022,5021,5020,5019,0,3,2,7,8,5022,5021,5020,5019,43,4961,5022,5023,4962,0,3,2,7,8,4961,5022,5023,4962,43,5022,5019,5024,5023,0,3,2,7,8,5022,5019,5024,5023,43,5023,5024,5025,5026,0,3,2,7,8,5023,5024,5025,5026,43,4962,5023,5026,4949,0,3,2,7,8,4962,5023,5026,4949,43,5025,5027,5028,5026,0,3,2,7,8,5025,5027,5028,5026,43,5027,5029,5030,5028,0,3,2,7,8,5027,5029,5030,5028,43,5028,5030,4951,4950,0,3,2,7,8,5028,5030,4951,4950,43,5026,5028,4950,4949,0,3,2,7,8,5026,5028,4950,4949,43,4951,5031,5032,4952,0,3,2,7,8,4951,5031,5032,4952,43,5031,5033,5034,5032,0,3,2,7,8,5031,5033,5034,5032,43,5032,5034,4850,4847,0,3,2,7,8,5032,5034,4850,4847,43,4952,5032,4847,4846,0,3,2,7,8,4952,5032,4847,4846,43,5029,5035,5036,5030,0,3,2,7,8,5029,5035,5036,5030,43,5035,5037,5038,5036,0,3,2,7,8,5035,5037,5038,5036,43,5036,5038,5033,5031,0,3,2,7,8,5036,5038,5033,5031,43,5030,5036,5031,4951,0,3,2,7,8,5030,5036,5031,4951,43,4584,4587,5039,5040,0,3,2,7,8,4584,4587,5039,5040,43,4587,4399,5041,5039,0,3,2,7,8,4587,4399,5041,5039,43,5039,5041,5037,5035,0,3,2,7,8,5039,5041,5037,5035,43,5040,5039,5035,5029,0,3,2,7,8,5040,5039,5035,5029,43,4594,4624,5042,5043,0,3,2,7,8,4594,4624,5042,5043,43,4624,4584,5040,5042,0,3,2,7,8,4624,4584,5040,5042,43,5042,5040,5029,5027,0,3,2,7,8,5042,5040,5029,5027,43,5043,5042,5027,5025,0,3,2,7,8,5043,5042,5027,5025,43,4596,4595,5044,5017,0,3,2,7,8,4596,4595,5044,5017,43,4595,4594,5043,5044,0,3,2,7,8,4595,4594,5043,5044,43,5044,5043,5025,5024,0,3,2,7,8,5044,5043,5025,5024,43,5017,5044,5024,5019,0,3,2,7,8,5017,5044,5024,5019,43,5045,5046,5047,5048,0,3,2,7,8,5045,5046,5047,5048,43,5046,5049,5050,5047,0,3,2,7,8,5046,5049,5050,5047,43,5047,5050,5051,5052,0,3,2,7,8,5047,5050,5051,5052,43,5048,5047,5052,5053,0,3,2,7,8,5048,5047,5052,5053,43,4941,5054,5055,4942,0,3,2,7,8,4941,5054,5055,4942,43,5054,5051,5050,5055,0,3,2,7,8,5054,5051,5050,5055,43,5055,5050,5049,5056,0,3,2,7,8,5055,5050,5049,5056,43,4942,5055,5056,4943,0,3,2,7,8,4942,5055,5056,4943,43,4993,5057,5058,4994,0,3,2,7,8,4993,5057,5058,4994,43,5057,5059,5060,5058,0,3,2,7,8,5057,5059,5060,5058,43,5058,5060,4941,4939,0,3,2,7,8,5058,5060,4941,4939,43,4994,5058,4939,4938,0,3,2,7,8,4994,5058,4939,4938,43,5059,5061,5062,5060,0,3,2,7,8,5059,5061,5062,5060,43,5061,5063,5064,5062,0,3,2,7,8,5061,5063,5064,5062,43,5062,5064,5051,5054,0,3,2,7,8,5062,5064,5051,5054,43,5060,5062,5054,4941,0,3,2,7,8,5060,5062,5054,4941,43,5063,5065,5066,5064,0,3,2,7,8,5063,5065,5066,5064,43,5065,5067,5068,5066,0,3,2,7,8,5065,5067,5068,5066,43,5066,5068,5053,5052,0,3,2,7,8,5066,5068,5053,5052,43,5064,5066,5052,5051,0,3,2,7,8,5064,5066,5052,5051,43,5069,5070,5071,5072,0,3,2,7,8,5069,5070,5071,5072,43,5070,5073,5074,5071,0,3,2,7,8,5070,5073,5074,5071,43,5071,5074,4918,4921,0,3,2,7,8,5071,5074,4918,4921,43,5072,5071,4921,4923,0,3,2,7,8,5072,5071,4921,4923,43,5075,5076,5077,5078,0,3,2,7,8,5075,5076,5077,5078,43,5076,5073,5070,5077,0,3,2,7,8,5076,5073,5070,5077,43,5077,5070,5069,5079,0,3,2,7,8,5077,5070,5069,5079,43,5078,5077,5079,5080,0,3,2,7,8,5078,5077,5079,5080,43,5053,5068,5081,5082,0,3,2,7,8,5053,5068,5081,5082,43,5068,5067,5083,5081,0,3,2,7,8,5068,5067,5083,5081,43,5081,5083,5073,5076,0,3,2,7,8,5081,5083,5073,5076,43,5082,5081,5076,5075,0,3,2,7,8,5082,5081,5076,5075,43,5045,5048,5084,5085,0,3,2,7,8,5045,5048,5084,5085,43,5048,5053,5082,5084,0,3,2,7,8,5048,5053,5082,5084,43,5084,5082,5075,5086,0,3,2,7,8,5084,5082,5075,5086,43,5085,5084,5086,5087,0,3,2,7,8,5085,5084,5086,5087,43,5087,5086,5088,5089,0,3,2,7,8,5087,5086,5088,5089,43,5086,5075,5078,5088,0,3,2,7,8,5086,5075,5078,5088,43,5088,5078,5080,5090,0,3,2,7,8,5088,5078,5080,5090,43,5089,5088,5090,5091,0,3,2,7,8,5089,5088,5090,5091,43,5091,5090,5092,5093,0,3,2,7,8,5091,5090,5092,5093,43,5090,5080,5094,5092,0,3,2,7,8,5090,5080,5094,5092,43,5092,5094,5095,5096,0,3,2,7,8,5092,5094,5095,5096,43,5093,5092,5096,5097,0,3,2,7,8,5093,5092,5096,5097,43,5080,5079,5098,5094,0,3,2,7,8,5080,5079,5098,5094,43,5079,5069,5072,5098,0,3,2,7,8,5079,5069,5072,5098,43,5098,5072,4923,5099,0,3,2,7,8,5098,5072,4923,5099,43,5094,5098,5099,5095,0,3,2,7,8,5094,5098,5099,5095,43,5100,5101,5102,5103,0,3,2,7,8,5100,5101,5102,5103,43,5101,5095,5099,5102,0,3,2,7,8,5101,5095,5099,5102,43,5102,5099,4923,5104,0,3,2,7,8,5102,5099,4923,5104,43,5103,5102,5104,5105,0,3,2,7,8,5103,5102,5104,5105,43,5106,5107,5108,5109,0,3,2,7,8,5106,5107,5108,5109,43,5107,5110,5111,5108,0,3,2,7,8,5107,5110,5111,5108,43,5108,5111,5112,5113,0,3,2,7,8,5108,5111,5112,5113,43,5109,5108,5113,5114,0,3,2,7,8,5109,5108,5113,5114,43,5106,5109,5115,5116,0,3,2,7,8,5106,5109,5115,5116,43,5109,5114,5117,5115,0,3,2,7,8,5109,5114,5117,5115,43,5115,5117,5118,5119,0,3,2,7,8,5115,5117,5118,5119,43,5116,5115,5119,5100,0,3,2,7,8,5116,5115,5119,5100,43,5100,5119,5120,5101,0,3,2,7,8,5100,5119,5120,5101,43,5119,5118,5121,5120,0,3,2,7,8,5119,5118,5121,5120,43,5120,5121,5097,5096,0,3,2,7,8,5120,5121,5097,5096,43,5101,5120,5096,5095,0,3,2,7,8,5101,5120,5096,5095,43,4907,4975,5122,4926,0,3,2,7,8,4907,4975,5122,4926,43,4975,4974,5123,5122,0,3,2,7,8,4975,4974,5123,5122,43,5122,5123,5124,5125,0,3,2,7,8,5122,5123,5124,5125,43,4926,5122,5125,4927,0,3,2,7,8,4926,5122,5125,4927,43,4936,4935,5126,4980,0,3,2,7,8,4936,4935,5126,4980,43,4935,4934,5127,5126,0,3,2,7,8,4935,4934,5127,5126,43,5126,5127,5124,5123,0,3,2,7,8,5126,5127,5124,5123,43,4980,5126,5123,4974,0,3,2,7,8,4980,5126,5123,4974,43,149,148,5128,4716,0,3,2,7,8,149,148,5128,4716,43,148,147,5129,5128,0,3,2,7,8,148,147,5129,5128,43,5128,5129,5130,5131,0,3,2,7,8,5128,5129,5130,5131,43,4716,5128,5131,4717,0,3,2,7,8,4716,5128,5131,4717,43,3080,3082,5132,5133,0,3,2,7,8,3080,3082,5132,5133,43,3082,2140,4720,5132,0,3,2,7,8,3082,2140,4720,5132,43,5132,4720,4719,5134,0,3,2,7,8,5132,4720,4719,5134,43,5133,5132,5134,5135,0,3,2,7,8,5133,5132,5134,5135,43,5135,5136,5137,5138,0,3,2,7,8,5135,5136,5137,5138,43,5136,5139,5140,5137,0,3,2,7,8,5136,5139,5140,5137,43,5137,5140,4825,5141,0,3,2,7,8,5137,5140,4825,5141,43,5138,5137,5141,5142,0,3,2,7,8,5138,5137,5141,5142,43,2795,3078,5143,5144,0,3,2,7,8,2795,3078,5143,5144,43,3078,3080,5133,5143,0,3,2,7,8,3078,3080,5133,5143,43,5143,5133,5135,5138,0,3,2,7,8,5143,5133,5135,5138,43,5144,5143,5138,5142,0,3,2,7,8,5144,5143,5138,5142,43,4717,5145,5146,4718,0,3,2,7,8,4717,5145,5146,4718,43,5145,5139,5136,5146,0,3,2,7,8,5145,5139,5136,5146,43,5146,5136,5135,5134,0,3,2,7,8,5146,5136,5135,5134,43,4718,5146,5134,4719,0,3,2,7,8,4718,5146,5134,4719,43,5147,5148,5149,5150,0,3,2,7,8,5147,5148,5149,5150,43,5148,5151,5152,5149,0,3,2,7,8,5148,5151,5152,5149,43,5149,5152,4831,4830,0,3,2,7,8,5149,5152,4831,4830,43,5150,5149,4830,4829,0,3,2,7,8,5150,5149,4830,4829,43,4787,4785,5153,5154,0,3,2,7,8,4787,4785,5153,5154,43,4785,4746,5155,5153,0,3,2,7,8,4785,4746,5155,5153,43,5153,5155,5147,5156,0,3,2,7,8,5153,5155,5147,5156,43,5154,5153,5156,5157,0,3,2,7,8,5154,5153,5156,5157,43,5147,5155,5158,5148,0,3,2,7,8,5147,5155,5158,5148,43,5155,4746,4744,5158,0,3,2,7,8,5155,4746,4744,5158,43,5158,4744,4732,5159,0,3,2,7,8,5158,4744,4732,5159,43,5148,5158,5159,5151,0,3,2,7,8,5148,5158,5159,5151,43,5160,5161,5162,5163,0,3,2,7,8,5160,5161,5162,5163,43,5161,5164,5165,5162,0,3,2,7,8,5161,5164,5165,5162,43,5162,5165,5166,5167,0,3,2,7,8,5162,5165,5166,5167,43,5163,5162,5167,5168,0,3,2,7,8,5163,5162,5167,5168,43,4898,5169,5170,4899,0,3,2,7,8,4898,5169,5170,4899,43,5169,5171,5172,5170,0,3,2,7,8,5169,5171,5172,5170,43,5170,5172,5168,5173,0,3,2,7,8,5170,5172,5168,5173,43,4899,5170,5173,4900,0,3,2,7,8,4899,5170,5173,4900,43,5174,5175,5176,5177,0,3,2,7,8,5174,5175,5176,5177,43,5175,5178,5179,5176,0,3,2,7,8,5175,5178,5179,5176,43,5176,5179,5171,5169,0,3,2,7,8,5176,5179,5171,5169,43,5177,5176,5169,4898,0,3,2,7,8,5177,5176,5169,4898,43,5180,5181,5182,5183,0,3,2,7,8,5180,5181,5182,5183,43,5181,5178,5175,5182,0,3,2,7,8,5181,5178,5175,5182,43,5182,5175,5174,5184,0,3,2,7,8,5182,5175,5174,5184,43,5183,5182,5184,5185,0,3,2,7,8,5183,5182,5184,5185,43,4861,4864,5186,5187,0,3,2,7,8,4861,4864,5186,5187,43,4864,4869,4871,5186,0,3,2,7,8,4864,4869,4871,5186,43,5186,4871,4870,5188,0,3,2,7,8,5186,4871,4870,5188,43,5187,5186,5188,5189,0,3,2,7,8,5187,5186,5188,5189,43,5189,5188,5190,5191,0,3,2,7,8,5189,5188,5190,5191,43,5188,4870,4873,5190,0,3,2,7,8,5188,4870,4873,5190,43,5190,4873,4875,4877,0,3,2,7,8,5190,4873,4875,4877,43,5191,5190,4877,4876,0,3,2,7,8,5191,5190,4877,4876,43,4876,4968,5192,5191,0,3,2,7,8,4876,4968,5192,5191,43,4968,4955,4953,5192,0,3,2,7,8,4968,4955,4953,5192,43,5192,4953,4859,5193,0,3,2,7,8,5192,4953,4859,5193,43,5191,5192,5193,5189,0,3,2,7,8,5191,5192,5193,5189,43,5194,5195,5196,5197,0,3,2,7,8,5194,5195,5196,5197,43,5195,5189,5193,5196,0,3,2,7,8,5195,5189,5193,5196,43,5196,5193,4859,4856,0,3,2,7,8,5196,5193,4859,4856,43,5197,5196,4856,4855,0,3,2,7,8,5197,5196,4856,4855,43,5198,5199,5200,5201,0,3,2,7,8,5198,5199,5200,5201,43,5199,4861,5187,5200,0,3,2,7,8,5199,4861,5187,5200,43,5200,5187,5189,5195,0,3,2,7,8,5200,5187,5189,5195,43,5201,5200,5195,5194,0,3,2,7,8,5201,5200,5195,5194,43,5202,5203,5204,5205,0,3,2,7,8,5202,5203,5204,5205,43,5203,5206,5207,5204,0,3,2,7,8,5203,5206,5207,5204,43,5204,5207,5208,5209,0,3,2,7,8,5204,5207,5208,5209,43,5205,5204,5209,5210,0,3,2,7,8,5205,5204,5209,5210,43,5206,5211,5212,5207,0,3,2,7,8,5206,5211,5212,5207,43,5211,5198,5201,5212,0,3,2,7,8,5211,5198,5201,5212,43,5212,5201,5194,5213,0,3,2,7,8,5212,5201,5194,5213,43,5207,5212,5213,5208,0,3,2,7,8,5207,5212,5213,5208,43,5214,5215,5216,5217,0,3,2,7,8,5214,5215,5216,5217,43,5215,4865,4862,5216,0,3,2,7,8,5215,4865,4862,5216,43,5216,4862,4861,5218,0,3,2,7,8,5216,4862,4861,5218,43,5217,5216,5218,5219,0,3,2,7,8,5217,5216,5218,5219,43,4912,5220,5221,4922,0,3,2,7,8,4912,5220,5221,4922,43,5220,5214,5222,5221,0,3,2,7,8,5220,5214,5222,5221,43,5221,5222,5105,5104,0,3,2,7,8,5221,5222,5105,5104,43,4922,5221,5104,4923,0,3,2,7,8,4922,5221,5104,4923,43,4867,4866,5223,4915,0,3,2,7,8,4867,4866,5223,4915,43,4866,4865,5215,5223,0,3,2,7,8,4866,4865,5215,5223,43,5223,5215,5214,5220,0,3,2,7,8,5223,5215,5214,5220,43,4915,5223,5220,4912,0,3,2,7,8,4915,5223,5220,4912,43,5219,5224,5225,5226,0,3,2,7,8,5219,5224,5225,5226,43,5224,5180,5183,5225,0,3,2,7,8,5224,5180,5183,5225,43,5225,5183,5185,5227,0,3,2,7,8,5225,5183,5185,5227,43,5226,5225,5227,5228,0,3,2,7,8,5226,5225,5227,5228,43,5228,5227,5229,5230,0,3,2,7,8,5228,5227,5229,5230,43,5227,5185,5231,5229,0,3,2,7,8,5227,5185,5231,5229,43,5229,5231,5110,5107,0,3,2,7,8,5229,5231,5110,5107,43,5230,5229,5107,5106,0,3,2,7,8,5230,5229,5107,5106,43,5105,5232,5233,5103,0,3,2,7,8,5105,5232,5233,5103,43,5232,5228,5230,5233,0,3,2,7,8,5232,5228,5230,5233,43,5233,5230,5106,5116,0,3,2,7,8,5233,5230,5106,5116,43,5103,5233,5116,5100,0,3,2,7,8,5103,5233,5116,5100,43,5105,5222,5234,5232,0,3,2,7,8,5105,5222,5234,5232,43,5222,5214,5217,5234,0,3,2,7,8,5222,5214,5217,5234,43,5234,5217,5219,5226,0,3,2,7,8,5234,5217,5219,5226,43,5232,5234,5226,5228,0,3,2,7,8,5232,5234,5226,5228,43,5198,5235,5236,5199,0,3,2,7,8,5198,5235,5236,5199,43,5235,5180,5224,5236,0,3,2,7,8,5235,5180,5224,5236,43,5236,5224,5219,5218,0,3,2,7,8,5236,5224,5219,5218,43,5199,5236,5218,4861,0,3,2,7,8,5199,5236,5218,4861,43,5178,5181,5237,5238,0,3,2,7,8,5178,5181,5237,5238,43,5181,5180,5235,5237,0,3,2,7,8,5181,5180,5235,5237,43,5237,5235,5198,5211,0,3,2,7,8,5237,5235,5198,5211,43,5238,5237,5211,5206,0,3,2,7,8,5238,5237,5211,5206,43,5171,5179,5239,5240,0,3,2,7,8,5171,5179,5239,5240,43,5179,5178,5238,5239,0,3,2,7,8,5179,5178,5238,5239,43,5239,5238,5206,5203,0,3,2,7,8,5239,5238,5206,5203,43,5240,5239,5203,5202,0,3,2,7,8,5240,5239,5203,5202,43,5171,5240,5241,5172,0,3,2,7,8,5171,5240,5241,5172,43,5240,5202,5242,5241,0,3,2,7,8,5240,5202,5242,5241,43,5241,5242,5160,5163,0,3,2,7,8,5241,5242,5160,5163,43,5172,5241,5163,5168,0,3,2,7,8,5172,5241,5163,5168,43,5243,5244,5245,5246,0,3,2,7,8,5243,5244,5245,5246,43,5244,5247,5248,5245,0,3,2,7,8,5244,5247,5248,5245,43,5245,5248,5164,5161,0,3,2,7,8,5245,5248,5164,5161,43,5246,5245,5161,5160,0,3,2,7,8,5246,5245,5161,5160,43,5160,5242,5249,5246,0,3,2,7,8,5160,5242,5249,5246,43,5242,5202,5205,5249,0,3,2,7,8,5242,5202,5205,5249,43,5249,5205,5210,5250,0,3,2,7,8,5249,5205,5210,5250,43,5246,5249,5250,5243,0,3,2,7,8,5246,5249,5250,5243,43,5208,5213,5251,5252,0,3,2,7,8,5208,5213,5251,5252,43,5213,5194,5197,5251,0,3,2,7,8,5213,5194,5197,5251,43,5251,5197,4855,5253,0,3,2,7,8,5251,5197,4855,5253,43,5252,5251,5253,5254,0,3,2,7,8,5252,5251,5253,5254,43,5210,5209,5255,5256,0,3,2,7,8,5210,5209,5255,5256,43,5209,5208,5252,5255,0,3,2,7,8,5209,5208,5252,5255,43,5255,5252,5254,5257,0,3,2,7,8,5255,5252,5254,5257,43,5256,5255,5257,5258,0,3,2,7,8,5256,5255,5257,5258,43,5254,5253,5259,5260,0,3,2,7,8,5254,5253,5259,5260,43,5253,4855,4858,5259,0,3,2,7,8,5253,4855,4858,5259,43,5259,4858,4854,5261,0,3,2,7,8,5259,4858,4854,5261,43,5260,5259,5261,5262,0,3,2,7,8,5260,5259,5261,5262,43,5262,5261,5263,5264,0,3,2,7,8,5262,5261,5263,5264,43,5261,4854,4853,5263,0,3,2,7,8,5261,4854,4853,5263,43,5263,4853,4852,5265,0,3,2,7,8,5263,4853,4852,5265,43,5264,5263,5265,5266,0,3,2,7,8,5264,5263,5265,5266,43,5267,5268,5269,5270,0,3,2,7,8,5267,5268,5269,5270,43,5268,5262,5264,5269,0,3,2,7,8,5268,5262,5264,5269,43,5269,5264,5266,5271,0,3,2,7,8,5269,5264,5266,5271,43,5270,5269,5271,4844,0,3,2,7,8,5270,5269,5271,4844,43,5267,5272,5273,5268,0,3,2,7,8,5267,5272,5273,5268,43,5272,5258,5257,5273,0,3,2,7,8,5272,5258,5257,5273,43,5273,5257,5254,5260,0,3,2,7,8,5273,5257,5254,5260,43,5268,5273,5260,5262,0,3,2,7,8,5268,5273,5260,5262,43,5274,5275,5276,5277,0,3,2,7,8,5274,5275,5276,5277,43,5275,5278,5279,5276,0,3,2,7,8,5275,5278,5279,5276,43,5276,5279,5258,5272,0,3,2,7,8,5276,5279,5258,5272,43,5277,5276,5272,5267,0,3,2,7,8,5277,5276,5272,5267,43,4842,5280,5281,4843,0,3,2,7,8,4842,5280,5281,4843,43,5280,5274,5277,5281,0,3,2,7,8,5280,5274,5277,5281,43,5281,5277,5267,5270,0,3,2,7,8,5281,5277,5267,5270,43,4843,5281,5270,4844,0,3,2,7,8,4843,5281,5270,4844,43,5282,5283,5284,5285,0,3,2,7,8,5282,5283,5284,5285,43,5283,5286,5287,5284,0,3,2,7,8,5283,5286,5287,5284,43,5284,5287,5274,5280,0,3,2,7,8,5284,5287,5274,5280,43,5285,5284,5280,4842,0,3,2,7,8,5285,5284,5280,4842,43,5286,5288,5289,5287,0,3,2,7,8,5286,5288,5289,5287,43,5288,5290,5291,5289,0,3,2,7,8,5288,5290,5291,5289,43,5289,5291,5278,5275,0,3,2,7,8,5289,5291,5278,5275,43,5287,5289,5275,5274,0,3,2,7,8,5287,5289,5275,5274,43,5278,5292,5293,5279,0,3,2,7,8,5278,5292,5293,5279,43,5292,5243,5250,5293,0,3,2,7,8,5292,5243,5250,5293,43,5293,5250,5210,5256,0,3,2,7,8,5293,5250,5210,5256,43,5279,5293,5256,5258,0,3,2,7,8,5279,5293,5256,5258,43,5290,5294,5295,5291,0,3,2,7,8,5290,5294,5295,5291,43,5294,5247,5244,5295,0,3,2,7,8,5294,5247,5244,5295,43,5295,5244,5243,5292,0,3,2,7,8,5295,5244,5243,5292,43,5291,5295,5292,5278,0,3,2,7,8,5291,5295,5292,5278,43,4726,4723,5296,5297,0,3,2,7,8,4726,4723,5296,5297,43,4723,4722,5298,5296,0,3,2,7,8,4723,4722,5298,5296,43,5296,5298,5247,5294,0,3,2,7,8,5296,5298,5247,5294,43,5297,5296,5294,5290,0,3,2,7,8,5297,5296,5294,5290,43,5299,5300,5301,5302,0,3,2,7,8,5299,5300,5301,5302,43,5300,5282,5285,5301,0,3,2,7,8,5300,5282,5285,5301,43,5301,5285,4842,4840,0,3,2,7,8,5301,5285,4842,4840,43,5302,5301,4840,4837,0,3,2,7,8,5302,5301,4840,4837,43,4831,5152,5303,4836,0,3,2,7,8,4831,5152,5303,4836,43,5152,5151,5304,5303,0,3,2,7,8,5152,5151,5304,5303,43,5303,5304,5299,5302,0,3,2,7,8,5303,5304,5299,5302,43,4836,5303,5302,4837,0,3,2,7,8,4836,5303,5302,4837,43,5151,5159,5305,5304,0,3,2,7,8,5151,5159,5305,5304,43,5159,4732,4729,5305,0,3,2,7,8,5159,4732,4729,5305,43,5305,4729,4728,5306,0,3,2,7,8,5305,4729,4728,5306,43,5304,5305,5306,5299,0,3,2,7,8,5304,5305,5306,5299,43,4728,4735,5307,5306,0,3,2,7,8,4728,4735,5307,5306,43,4735,4734,5308,5307,0,3,2,7,8,4735,4734,5308,5307,43,5307,5308,5282,5300,0,3,2,7,8,5307,5308,5282,5300,43,5306,5307,5300,5299,0,3,2,7,8,5306,5307,5300,5299,43,4738,4742,5309,5310,0,3,2,7,8,4738,4742,5309,5310,43,4742,4726,5297,5309,0,3,2,7,8,4742,4726,5297,5309,43,5309,5297,5290,5288,0,3,2,7,8,5309,5297,5290,5288,43,5310,5309,5288,5286,0,3,2,7,8,5310,5309,5288,5286,43,4734,4739,5311,5308,0,3,2,7,8,4734,4739,5311,5308,43,4739,4738,5310,5311,0,3,2,7,8,4739,4738,5310,5311,43,5311,5310,5286,5283,0,3,2,7,8,5311,5310,5286,5283,43,5308,5311,5283,5282,0,3,2,7,8,5308,5311,5283,5282,43,5247,5298,5312,5248,0,3,2,7,8,5247,5298,5312,5248,43,5298,4722,4761,5312,0,3,2,7,8,5298,4722,4761,5312,43,5312,4761,4760,5313,0,3,2,7,8,5312,4761,4760,5313,43,5248,5312,5313,5164,0,3,2,7,8,5248,5312,5313,5164,43,5164,5313,5314,5165,0,3,2,7,8,5164,5313,5314,5165,43,5313,4760,4765,5314,0,3,2,7,8,5313,4760,4765,5314,43,5314,4765,4764,5315,0,3,2,7,8,5314,4765,4764,5315,43,5165,5314,5315,5166,0,3,2,7,8,5165,5314,5315,5166,43,5110,5316,5317,5111,0,3,2,7,8,5110,5316,5317,5111,43,5316,5318,5319,5317,0,3,2,7,8,5316,5318,5319,5317,43,5317,5319,5320,5321,0,3,2,7,8,5317,5319,5320,5321,43,5111,5317,5321,5112,0,3,2,7,8,5111,5317,5321,5112,43,5185,5184,5322,5231,0,3,2,7,8,5185,5184,5322,5231,43,5184,5174,5323,5322,0,3,2,7,8,5184,5174,5323,5322,43,5322,5323,5318,5316,0,3,2,7,8,5322,5323,5318,5316,43,5231,5322,5316,5110,0,3,2,7,8,5231,5322,5316,5110,43,5174,5177,5324,5323,0,3,2,7,8,5174,5177,5324,5323,43,5177,4898,4895,5324,0,3,2,7,8,5177,4898,4895,5324,43,5324,4895,4894,5325,0,3,2,7,8,5324,4895,4894,5325,43,5323,5324,5325,5318,0,3,2,7,8,5323,5324,5325,5318,43,5318,5325,5326,5319,0,3,2,7,8,5318,5325,5326,5319,43,5325,4894,5327,5326,0,3,2,7,8,5325,4894,5327,5326,43,5326,5327,5328,5329,0,3,2,7,8,5326,5327,5328,5329,43,5319,5326,5329,5320,0,3,2,7,8,5319,5326,5329,5320,43,5330,5331,5332,5333,0,3,2,7,8,5330,5331,5332,5333,43,5331,5328,5327,5332,0,3,2,7,8,5331,5328,5327,5332,43,5332,5327,4894,4897,0,3,2,7,8,5332,5327,4894,4897,43,5333,5332,4897,4902,0,3,2,7,8,5333,5332,4897,4902,43,5334,5335,5336,5337,0,3,2,7,8,5334,5335,5336,5337,43,5335,5338,5339,5336,0,3,2,7,8,5335,5338,5339,5336,43,5336,5339,5340,5341,0,3,2,7,8,5336,5339,5340,5341,43,5337,5336,5341,5342,0,3,2,7,8,5337,5336,5341,5342,43,5338,5335,5343,5344,0,3,2,7,8,5338,5335,5343,5344,43,5335,5334,5345,5343,0,3,2,7,8,5335,5334,5345,5343,43,5343,5345,5330,5333,0,3,2,7,8,5343,5345,5330,5333,43,5344,5343,5333,4902,0,3,2,7,8,5344,5343,5333,4902,43,5346,5347,5348,5349,0,3,2,7,8,5346,5347,5348,5349,43,5347,5350,5351,5348,0,3,2,7,8,5347,5350,5351,5348,43,5348,5351,4748,4800,0,3,2,7,8,5348,5351,4748,4800,43,5349,5348,4800,4796,0,3,2,7,8,5349,5348,4800,4796,43,4900,5352,5353,4901,0,3,2,7,8,4900,5352,5353,4901,43,5352,5354,5355,5353,0,3,2,7,8,5352,5354,5355,5353,43,5353,5355,5356,5357,0,3,2,7,8,5353,5355,5356,5357,43,4901,5353,5357,4902,0,3,2,7,8,4901,5353,5357,4902,43,5168,5167,5358,5173,0,3,2,7,8,5168,5167,5358,5173,43,5167,5166,5359,5358,0,3,2,7,8,5167,5166,5359,5358,43,5358,5359,5354,5352,0,3,2,7,8,5358,5359,5354,5352,43,5173,5358,5352,4900,0,3,2,7,8,5173,5358,5352,4900,43,5166,5315,5360,5359,0,3,2,7,8,5166,5315,5360,5359,43,5315,4764,4768,5360,0,3,2,7,8,5315,4764,4768,5360,43,5360,4768,4758,5361,0,3,2,7,8,5360,4768,4758,5361,43,5359,5360,5361,5354,0,3,2,7,8,5359,5360,5361,5354,43,5354,5361,5362,5355,0,3,2,7,8,5354,5361,5362,5355,43,5361,4758,4756,5362,0,3,2,7,8,5361,4758,4756,5362,43,5362,4756,4752,5363,0,3,2,7,8,5362,4756,4752,5363,43,5355,5362,5363,5356,0,3,2,7,8,5355,5362,5363,5356,43,5356,5363,5364,5365,0,3,2,7,8,5356,5363,5364,5365,43,5363,4752,4749,5364,0,3,2,7,8,5363,4752,4749,5364,43,5364,4749,4748,5351,0,3,2,7,8,5364,4749,4748,5351,43,5365,5364,5351,5350,0,3,2,7,8,5365,5364,5351,5350,43,5356,5365,5366,5357,0,3,2,7,8,5356,5365,5366,5357,43,5365,5350,5367,5366,0,3,2,7,8,5365,5350,5367,5366,43,5366,5367,5338,5344,0,3,2,7,8,5366,5367,5338,5344,43,5357,5366,5344,4902,0,3,2,7,8,5357,5366,5344,4902,43,5340,5339,5368,5369,0,3,2,7,8,5340,5339,5368,5369,43,5339,5338,5367,5368,0,3,2,7,8,5339,5338,5367,5368,43,5368,5367,5350,5347,0,3,2,7,8,5368,5367,5350,5347,43,5369,5368,5347,5346,0,3,2,7,8,5369,5368,5347,5346,43,5370,5371,5372,5373,0,3,2,7,8,5370,5371,5372,5373,43,5371,5340,5369,5372,0,3,2,7,8,5371,5340,5369,5372,43,5372,5369,5346,5374,0,3,2,7,8,5372,5369,5346,5374,43,5373,5372,5374,5375,0,3,2,7,8,5373,5372,5374,5375,43,5376,5377,5378,5379,0,3,2,7,8,5376,5377,5378,5379,43,5377,5380,5381,5378,0,3,2,7,8,5377,5380,5381,5378,43,5378,5381,5382,5383,0,3,2,7,8,5378,5381,5382,5383,43,5379,5378,5383,5384,0,3,2,7,8,5379,5378,5383,5384,43,5380,5385,5386,5381,0,3,2,7,8,5380,5385,5386,5381,43,5385,5387,5388,5386,0,3,2,7,8,5385,5387,5388,5386,43,5386,5388,5370,5389,0,3,2,7,8,5386,5388,5370,5389,43,5381,5386,5389,5382,0,3,2,7,8,5381,5386,5389,5382,43,5384,5383,5390,5391,0,3,2,7,8,5384,5383,5390,5391,43,5383,5382,5392,5390,0,3,2,7,8,5383,5382,5392,5390,43,5390,5392,5393,5394,0,3,2,7,8,5390,5392,5393,5394,43,5391,5390,5394,5395,0,3,2,7,8,5391,5390,5394,5395,43,5396,5397,5398,5399,0,3,2,7,8,5396,5397,5398,5399,43,5397,5393,5400,5398,0,3,2,7,8,5397,5393,5400,5398,43,5398,5400,5375,5401,0,3,2,7,8,5398,5400,5375,5401,43,5399,5398,5401,4774,0,3,2,7,8,5399,5398,5401,4774,43,5375,5374,5402,5401,0,3,2,7,8,5375,5374,5402,5401,43,5374,5346,5349,5402,0,3,2,7,8,5374,5346,5349,5402,43,5402,5349,4796,4794,0,3,2,7,8,5402,5349,4796,4794,43,5401,5402,4794,4774,0,3,2,7,8,5401,5402,4794,4774,43,4770,5403,5404,4771,0,3,2,7,8,4770,5403,5404,4771,43,5403,5405,5406,5404,0,3,2,7,8,5403,5405,5406,5404,43,5404,5406,5396,5399,0,3,2,7,8,5404,5406,5396,5399,43,4771,5404,5399,4774,0,3,2,7,8,4771,5404,5399,4774,43,5396,5406,5407,5408,0,3,2,7,8,5396,5406,5407,5408,43,5406,5405,5409,5407,0,3,2,7,8,5406,5405,5409,5407,43,5407,5409,5410,5411,0,3,2,7,8,5407,5409,5410,5411,43,5408,5407,5411,5412,0,3,2,7,8,5408,5407,5411,5412,43,5130,5413,5414,5131,0,3,2,7,8,5130,5413,5414,5131,43,5413,5410,5415,5414,0,3,2,7,8,5413,5410,5415,5414,43,5414,5415,5416,5417,0,3,2,7,8,5414,5415,5416,5417,43,5131,5414,5417,4717,0,3,2,7,8,5131,5414,5417,4717,43,4770,4780,5418,5403,0,3,2,7,8,4770,4780,5418,5403,43,4780,4779,5419,5418,0,3,2,7,8,4780,4779,5419,5418,43,5418,5419,5420,5421,0,3,2,7,8,5418,5419,5420,5421,43,5403,5418,5421,5405,0,3,2,7,8,5403,5418,5421,5405,43,4779,4791,5422,5419,0,3,2,7,8,4779,4791,5422,5419,43,4791,4787,5154,5422,0,3,2,7,8,4791,4787,5154,5422,43,5422,5154,5157,5423,0,3,2,7,8,5422,5154,5157,5423,43,5419,5422,5423,5420,0,3,2,7,8,5419,5422,5423,5420,43,5416,5424,5425,5417,0,3,2,7,8,5416,5424,5425,5417,43,5424,5426,5427,5425,0,3,2,7,8,5424,5426,5427,5425,43,5425,5427,5139,5145,0,3,2,7,8,5425,5427,5139,5145,43,5417,5425,5145,4717,0,3,2,7,8,5417,5425,5145,4717,43,5157,5156,5428,5429,0,3,2,7,8,5157,5156,5428,5429,43,5156,5147,5150,5428,0,3,2,7,8,5156,5147,5150,5428,43,5428,5150,4829,5430,0,3,2,7,8,5428,5150,4829,5430,43,5429,5428,5430,5426,0,3,2,7,8,5429,5428,5430,5426,43,5426,5430,5431,5427,0,3,2,7,8,5426,5430,5431,5427,43,5430,4829,4826,5431,0,3,2,7,8,5430,4829,4826,5431,43,5431,4826,4825,5140,0,3,2,7,8,5431,4826,4825,5140,43,5427,5431,5140,5139,0,3,2,7,8,5427,5431,5140,5139,43,5420,5423,5432,5433,0,3,2,7,8,5420,5423,5432,5433,43,5423,5157,5429,5432,0,3,2,7,8,5423,5157,5429,5432,43,5432,5429,5426,5424,0,3,2,7,8,5432,5429,5426,5424,43,5433,5432,5424,5416,0,3,2,7,8,5433,5432,5424,5416,43,5405,5421,5434,5409,0,3,2,7,8,5405,5421,5434,5409,43,5421,5420,5433,5434,0,3,2,7,8,5421,5420,5433,5434,43,5434,5433,5416,5415,0,3,2,7,8,5434,5433,5416,5415,43,5409,5434,5415,5410,0,3,2,7,8,5409,5434,5415,5410,43,5376,5379,5435,5436,0,3,2,7,8,5376,5379,5435,5436,43,5379,5384,5437,5435,0,3,2,7,8,5379,5384,5437,5435,43,5435,5437,5438,5439,0,3,2,7,8,5435,5437,5438,5439,43,5436,5435,5439,5440,0,3,2,7,8,5436,5435,5439,5440,43,5384,5391,5441,5437,0,3,2,7,8,5384,5391,5441,5437,43,5391,5395,5442,5441,0,3,2,7,8,5391,5395,5442,5441,43,5441,5442,5443,5444,0,3,2,7,8,5441,5442,5443,5444,43,5437,5441,5444,5438,0,3,2,7,8,5437,5441,5444,5438,43,56,5445,5446,57,0,3,2,7,8,56,5445,5446,57,43,5445,5440,5439,5446,0,3,2,7,8,5445,5440,5439,5446,43,5446,5439,5438,5447,0,3,2,7,8,5446,5439,5438,5447,43,57,5446,5447,58,0,3,2,7,8,57,5446,5447,58,43,5438,5444,5448,5447,0,3,2,7,8,5438,5444,5448,5447,43,5444,5443,5449,5448,0,3,2,7,8,5444,5443,5449,5448,43,5448,5449,687,685,0,3,2,7,8,5448,5449,687,685,43,5447,5448,685,58,0,3,2,7,8,5447,5448,685,58,43,5450,5451,5452,5453,0,3,2,7,8,5450,5451,5452,5453,43,5451,5130,5129,5452,0,3,2,7,8,5451,5130,5129,5452,43,5452,5129,147,678,0,3,2,7,8,5452,5129,147,678,43,5453,5452,678,677,0,3,2,7,8,5453,5452,678,677,43,5443,5454,5455,5449,0,3,2,7,8,5443,5454,5455,5449,43,5454,5450,5453,5455,0,3,2,7,8,5454,5450,5453,5455,43,5455,5453,677,691,0,3,2,7,8,5455,5453,677,691,43,5449,5455,691,687,0,3,2,7,8,5449,5455,691,687,43,5412,5411,5456,5457,0,3,2,7,8,5412,5411,5456,5457,43,5411,5410,5413,5456,0,3,2,7,8,5411,5410,5413,5456,43,5456,5413,5130,5451,0,3,2,7,8,5456,5413,5130,5451,43,5457,5456,5451,5450,0,3,2,7,8,5457,5456,5451,5450,43,5395,5458,5459,5442,0,3,2,7,8,5395,5458,5459,5442,43,5458,5412,5457,5459,0,3,2,7,8,5458,5412,5457,5459,43,5459,5457,5450,5454,0,3,2,7,8,5459,5457,5450,5454,43,5442,5459,5454,5443,0,3,2,7,8,5442,5459,5454,5443,43,5393,5397,5460,5394,0,3,2,7,8,5393,5397,5460,5394,43,5397,5396,5408,5460,0,3,2,7,8,5397,5396,5408,5460,43,5460,5408,5412,5458,0,3,2,7,8,5460,5408,5412,5458,43,5394,5460,5458,5395,0,3,2,7,8,5394,5460,5458,5395,43,5382,5389,5461,5392,0,3,2,7,8,5382,5389,5461,5392,43,5389,5370,5373,5461,0,3,2,7,8,5389,5370,5373,5461,43,5461,5373,5375,5400,0,3,2,7,8,5461,5373,5375,5400,43,5392,5461,5400,5393,0,3,2,7,8,5392,5461,5400,5393,43,5387,5462,5463,5388,0,3,2,7,8,5387,5462,5463,5388,43,5462,5342,5341,5463,0,3,2,7,8,5462,5342,5341,5463,43,5463,5341,5340,5371,0,3,2,7,8,5463,5341,5340,5371,43,5388,5463,5371,5370,0,3,2,7,8,5388,5463,5371,5370,43,5464,5465,5466,5467,0,3,2,7,8,5464,5465,5466,5467,43,5465,916,934,5466,0,3,2,7,8,5465,916,934,5466,43,5466,934,926,5468,0,3,2,7,8,5466,934,926,5468,43,5467,5466,5468,5469,0,3,2,7,8,5467,5466,5468,5469,43,1496,3109,5470,1497,0,3,2,7,8,1496,3109,5470,1497,43,3109,3108,5471,5470,0,3,2,7,8,3109,3108,5471,5470,43,5470,5471,5469,5468,0,3,2,7,8,5470,5471,5469,5468,43,1497,5470,5468,926,0,3,2,7,8,1497,5470,5468,926,43,4271,5472,5473,4269,0,3,2,7,8,4271,5472,5473,4269,43,5472,5474,5475,5473,0,3,2,7,8,5472,5474,5475,5473,43,5473,5475,5476,5477,0,3,2,7,8,5473,5475,5476,5477,43,4269,5473,5477,4266,0,3,2,7,8,4269,5473,5477,4266,43,4314,5478,5479,4312,0,3,2,7,8,4314,5478,5479,4312,43,5478,5480,5481,5479,0,3,2,7,8,5478,5480,5481,5479,43,5479,5481,5482,5483,0,3,2,7,8,5479,5481,5482,5483,43,4312,5479,5483,4309,0,3,2,7,8,4312,5479,5483,4309,43,4309,5483,5484,4318,0,3,2,7,8,4309,5483,5484,4318,43,5483,5482,5485,5484,0,3,2,7,8,5483,5482,5485,5484,43,5484,5485,5486,5487,0,3,2,7,8,5484,5485,5486,5487,43,4318,5484,5487,4315,0,3,2,7,8,4318,5484,5487,4315,43,4315,5487,5488,4322,0,3,2,7,8,4315,5487,5488,4322,43,5487,5486,5489,5488,0,3,2,7,8,5487,5486,5489,5488,43,5488,5489,5490,5491,0,3,2,7,8,5488,5489,5490,5491,43,4322,5488,5491,4319,0,3,2,7,8,4322,5488,5491,4319,43,4319,5491,5492,4324,0,3,2,7,8,4319,5491,5492,4324,43,5491,5490,5493,5492,0,3,2,7,8,5491,5490,5493,5492,43,5492,5493,5474,5472,0,3,2,7,8,5492,5493,5474,5472,43,4324,5492,5472,4271,0,3,2,7,8,4324,5492,5472,4271,43,4345,5494,5495,4346,0,3,2,7,8,4345,5494,5495,4346,43,5494,5496,5497,5495,0,3,2,7,8,5494,5496,5497,5495,43,5495,5497,5480,5478,0,3,2,7,8,5495,5497,5480,5478,43,4346,5495,5478,4314,0,3,2,7,8,4346,5495,5478,4314,43,4369,5498,5499,5500,0,3,2,7,8,4369,5498,5499,5500,43,5498,5501,5502,5499,0,3,2,7,8,5498,5501,5502,5499,43,5499,5502,5503,5504,0,3,2,7,8,5499,5502,5503,5504,43,5500,5499,5504,5505,0,3,2,7,8,5500,5499,5504,5505,43,4367,5506,5507,4368,0,3,2,7,8,4367,5506,5507,4368,43,5506,5508,5509,5507,0,3,2,7,8,5506,5508,5509,5507,43,5507,5509,5501,5498,0,3,2,7,8,5507,5509,5501,5498,43,4368,5507,5498,4369,0,3,2,7,8,4368,5507,5498,4369,43,4266,5477,5510,4372,0,3,2,7,8,4266,5477,5510,4372,43,5477,5476,5511,5510,0,3,2,7,8,5477,5476,5511,5510,43,5510,5511,5512,5513,0,3,2,7,8,5510,5511,5512,5513,43,4372,5510,5513,4373,0,3,2,7,8,4372,5510,5513,4373,43,4373,5513,5514,4376,0,3,2,7,8,4373,5513,5514,4376,43,5513,5512,5515,5514,0,3,2,7,8,5513,5512,5515,5514,43,5514,5515,5516,5517,0,3,2,7,8,5514,5515,5516,5517,43,4376,5514,5517,4377,0,3,2,7,8,4376,5514,5517,4377,43,4377,5517,5518,4380,0,3,2,7,8,4377,5517,5518,4380,43,5517,5516,5519,5518,0,3,2,7,8,5517,5516,5519,5518,43,5518,5519,5508,5506,0,3,2,7,8,5518,5519,5508,5506,43,4380,5518,5506,4367,0,3,2,7,8,4380,5518,5506,4367,43,5520,5521,5522,5523,0,3,2,7,8,5520,5521,5522,5523,43,5521,5524,5525,5522,0,3,2,7,8,5521,5524,5525,5522,43,5522,5525,5526,5527,0,3,2,7,8,5522,5525,5526,5527,43,5523,5522,5527,5528,0,3,2,7,8,5523,5522,5527,5528,43,5528,5527,5529,5530,0,3,2,7,8,5528,5527,5529,5530,43,5527,5526,5531,5529,0,3,2,7,8,5527,5526,5531,5529,43,5529,5531,5532,5533,0,3,2,7,8,5529,5531,5532,5533,43,5530,5529,5533,5534,0,3,2,7,8,5530,5529,5533,5534,43,5535,5536,5537,5538,0,3,2,7,8,5535,5536,5537,5538,43,5536,5539,5540,5537,0,3,2,7,8,5536,5539,5540,5537,43,5537,5540,5496,5494,0,3,2,7,8,5537,5540,5496,5494,43,5538,5537,5494,4345,0,3,2,7,8,5538,5537,5494,4345,43,5534,5533,5541,5542,0,3,2,7,8,5534,5533,5541,5542,43,5533,5532,5543,5541,0,3,2,7,8,5533,5532,5543,5541,43,5541,5543,5539,5536,0,3,2,7,8,5541,5543,5539,5536,43,5542,5541,5536,5535,0,3,2,7,8,5542,5541,5536,5535,43,5544,5545,5546,5547,0,3,2,7,8,5544,5545,5546,5547,43,5545,5548,5549,5546,0,3,2,7,8,5545,5548,5549,5546,43,5546,5549,5524,5521,0,3,2,7,8,5546,5549,5524,5521,43,5547,5546,5521,5520,0,3,2,7,8,5547,5546,5521,5520,43,5505,5504,5550,5551,0,3,2,7,8,5505,5504,5550,5551,43,5504,5503,5552,5550,0,3,2,7,8,5504,5503,5552,5550,43,5550,5552,5548,5545,0,3,2,7,8,5550,5552,5548,5545,43,5551,5550,5545,5544,0,3,2,7,8,5551,5550,5545,5544,43,5544,5553,5554,5551,0,3,2,7,8,5544,5553,5554,5551,43,5553,5555,5556,5554,0,3,2,7,8,5553,5555,5556,5554,43,5551,5554,5556,5505,0,3,2,7,8,5551,5554,5556,5505,43,5520,5557,5558,5547,0,3,2,7,8,5520,5557,5558,5547,43,5557,5559,5560,5558,0,3,2,7,8,5557,5559,5560,5558,43,5558,5560,5555,5553,0,3,2,7,8,5558,5560,5555,5553,43,5547,5558,5553,5544,0,3,2,7,8,5547,5558,5553,5544,43,5528,5561,5562,5523,0,3,2,7,8,5528,5561,5562,5523,43,5561,5563,5564,5562,0,3,2,7,8,5561,5563,5564,5562,43,5562,5564,5559,5557,0,3,2,7,8,5562,5564,5559,5557,43,5523,5562,5557,5520,0,3,2,7,8,5523,5562,5557,5520,43,5534,5565,5566,5530,0,3,2,7,8,5534,5565,5566,5530,43,5565,5567,5568,5566,0,3,2,7,8,5565,5567,5568,5566,43,5566,5568,5563,5561,0,3,2,7,8,5566,5568,5563,5561,43,5530,5566,5561,5528,0,3,2,7,8,5530,5566,5561,5528,43,5534,5542,5569,5565,0,3,2,7,8,5534,5542,5569,5565,43,5542,5535,5570,5569,0,3,2,7,8,5542,5535,5570,5569,43,5569,5570,5571,5572,0,3,2,7,8,5569,5570,5571,5572,43,5565,5569,5572,5567,0,3,2,7,8,5565,5569,5572,5567,43,4345,5573,5574,5538,0,3,2,7,8,4345,5573,5574,5538,43,5573,5571,5570,5574,0,3,2,7,8,5573,5571,5570,5574,43,5538,5574,5570,5535,0,3,2,7,8,5538,5574,5570,5535,43,5575,5576,5577,5578,0,3,2,7,8,5575,5576,5577,5578,43,5576,5579,5580,5577,0,3,2,7,8,5576,5579,5580,5577,43,5577,5580,5581,5582,0,3,2,7,8,5577,5580,5581,5582,43,5578,5577,5582,5583,0,3,2,7,8,5578,5577,5582,5583,43,5584,5585,5586,5587,0,3,2,7,8,5584,5585,5586,5587,43,5585,5575,5578,5586,0,3,2,7,8,5585,5575,5578,5586,43,5586,5578,5583,5588,0,3,2,7,8,5586,5578,5583,5588,43,5587,5586,5588,5589,0,3,2,7,8,5587,5586,5588,5589,43,5590,5591,5592,5593,0,3,2,7,8,5590,5591,5592,5593,43,5591,5594,5595,5592,0,3,2,7,8,5591,5594,5595,5592,43,5592,5595,5584,5587,0,3,2,7,8,5592,5595,5584,5587,43,5593,5592,5587,5589,0,3,2,7,8,5593,5592,5587,5589,43,5596,5597,5598,5599,0,3,2,7,8,5596,5597,5598,5599,43,5597,5600,5601,5598,0,3,2,7,8,5597,5600,5601,5598,43,5598,5601,5602,5603,0,3,2,7,8,5598,5601,5602,5603,43,5599,5598,5603,5604,0,3,2,7,8,5599,5598,5603,5604,43,5602,5605,5606,5603,0,3,2,7,8,5602,5605,5606,5603,43,5605,5607,5608,5606,0,3,2,7,8,5605,5607,5608,5606,43,5606,5608,5609,5610,0,3,2,7,8,5606,5608,5609,5610,43,5603,5606,5610,5604,0,3,2,7,8,5603,5606,5610,5604,43,5611,5612,5613,5614,0,3,2,7,8,5611,5612,5613,5614,43,5612,5615,5616,5613,0,3,2,7,8,5612,5615,5616,5613,43,5613,5616,5617,5618,0,3,2,7,8,5613,5616,5617,5618,43,5614,5613,5618,5619,0,3,2,7,8,5614,5613,5618,5619,43,5611,5614,5620,5621,0,3,2,7,8,5611,5614,5620,5621,43,5614,5619,5622,5620,0,3,2,7,8,5614,5619,5622,5620,43,5620,5622,5623,5624,0,3,2,7,8,5620,5622,5623,5624,43,5621,5620,5624,5625,0,3,2,7,8,5621,5620,5624,5625,43,5626,5627,5628,5629,0,3,2,7,8,5626,5627,5628,5629,43,5627,5625,5630,5628,0,3,2,7,8,5627,5625,5630,5628,43,5628,5630,5631,5632,0,3,2,7,8,5628,5630,5631,5632,43,5629,5628,5632,5633,0,3,2,7,8,5629,5628,5632,5633,43,5634,5635,5636,5637,0,3,2,7,8,5634,5635,5636,5637,43,5635,5638,5639,5636,0,3,2,7,8,5635,5638,5639,5636,43,5636,5639,5625,5627,0,3,2,7,8,5636,5639,5625,5627,43,5637,5636,5627,5626,0,3,2,7,8,5637,5636,5627,5626,43,5625,5639,5640,5621,0,3,2,7,8,5625,5639,5640,5621,43,5639,5638,5641,5640,0,3,2,7,8,5639,5638,5641,5640,43,5640,5641,5642,5643,0,3,2,7,8,5640,5641,5642,5643,43,5621,5640,5643,5611,0,3,2,7,8,5621,5640,5643,5611,43,5644,5645,5646,5647,0,3,2,7,8,5644,5645,5646,5647,43,5645,5648,5649,5646,0,3,2,7,8,5645,5648,5649,5646,43,5646,5649,5650,5651,0,3,2,7,8,5646,5649,5650,5651,43,5647,5646,5651,5652,0,3,2,7,8,5647,5646,5651,5652,43,5653,5654,5655,5656,0,3,2,7,8,5653,5654,5655,5656,43,5654,5657,5658,5655,0,3,2,7,8,5654,5657,5658,5655,43,5655,5658,5659,5660,0,3,2,7,8,5655,5658,5659,5660,43,5656,5655,5660,5661,0,3,2,7,8,5656,5655,5660,5661,43,5642,5662,5663,5643,0,3,2,7,8,5642,5662,5663,5643,43,5662,5664,5665,5663,0,3,2,7,8,5662,5664,5665,5663,43,5663,5665,5666,5667,0,3,2,7,8,5663,5665,5666,5667,43,5643,5663,5667,5611,0,3,2,7,8,5643,5663,5667,5611,43,5666,5665,5668,5669,0,3,2,7,8,5666,5665,5668,5669,43,5665,5664,5670,5668,0,3,2,7,8,5665,5664,5670,5668,43,5668,5670,5671,5672,0,3,2,7,8,5668,5670,5671,5672,43,5669,5668,5672,5673,0,3,2,7,8,5669,5668,5672,5673,43,4927,5674,5675,4928,0,3,2,7,8,4927,5674,5675,4928,43,5674,5657,5654,5675,0,3,2,7,8,5674,5657,5654,5675,43,5675,5654,5653,5676,0,3,2,7,8,5675,5654,5653,5676,43,4928,5675,5676,4929,0,3,2,7,8,4928,5675,5676,4929,43,5677,5678,5679,5680,0,3,2,7,8,5677,5678,5679,5680,43,5678,4934,4931,5679,0,3,2,7,8,5678,4934,4931,5679,43,5679,4931,4930,5681,0,3,2,7,8,5679,4931,4930,5681,43,5680,5679,5681,5682,0,3,2,7,8,5680,5679,5681,5682,43,4943,5683,5684,4944,0,3,2,7,8,4943,5683,5684,4944,43,5683,5685,5686,5684,0,3,2,7,8,5683,5685,5686,5684,43,5684,5686,5682,5681,0,3,2,7,8,5684,5686,5682,5681,43,4944,5684,5681,4930,0,3,2,7,8,4944,5684,5681,4930,43,5687,5688,5689,5690,0,3,2,7,8,5687,5688,5689,5690,43,5688,5691,5692,5689,0,3,2,7,8,5688,5691,5692,5689,43,5689,5692,5693,5694,0,3,2,7,8,5689,5692,5693,5694,43,5690,5689,5694,5602,0,3,2,7,8,5690,5689,5694,5602,43,5693,5695,5696,5694,0,3,2,7,8,5693,5695,5696,5694,43,5695,5697,5698,5696,0,3,2,7,8,5695,5697,5698,5696,43,5696,5698,5607,5605,0,3,2,7,8,5696,5698,5607,5605,43,5694,5696,5605,5602,0,3,2,7,8,5694,5696,5605,5602,43,5691,5699,5700,5692,0,3,2,7,8,5691,5699,5700,5692,43,5699,5701,5702,5700,0,3,2,7,8,5699,5701,5702,5700,43,5700,5702,5703,5704,0,3,2,7,8,5700,5702,5703,5704,43,5692,5700,5704,5693,0,3,2,7,8,5692,5700,5704,5693,43,5703,5705,5706,5704,0,3,2,7,8,5703,5705,5706,5704,43,5705,5707,5708,5706,0,3,2,7,8,5705,5707,5708,5706,43,5706,5708,5697,5695,0,3,2,7,8,5706,5708,5697,5695,43,5704,5706,5695,5693,0,3,2,7,8,5704,5706,5695,5693,43,5707,5709,5710,5708,0,3,2,7,8,5707,5709,5710,5708,43,5709,5633,5632,5710,0,3,2,7,8,5709,5633,5632,5710,43,5710,5632,5631,5711,0,3,2,7,8,5710,5632,5631,5711,43,5708,5710,5711,5697,0,3,2,7,8,5708,5710,5711,5697,43,5712,5713,5714,5715,0,3,2,7,8,5712,5713,5714,5715,43,5713,5716,5717,5714,0,3,2,7,8,5713,5716,5717,5714,43,5714,5717,5659,5658,0,3,2,7,8,5714,5717,5659,5658,43,5715,5714,5658,5657,0,3,2,7,8,5715,5714,5658,5657,43,5712,5718,5719,5713,0,3,2,7,8,5712,5718,5719,5713,43,5718,5677,5720,5719,0,3,2,7,8,5718,5677,5720,5719,43,5719,5720,5721,5722,0,3,2,7,8,5719,5720,5721,5722,43,5713,5719,5722,5716,0,3,2,7,8,5713,5719,5722,5716,43,5723,5724,5725,5726,0,3,2,7,8,5723,5724,5725,5726,43,5724,5626,5629,5725,0,3,2,7,8,5724,5626,5629,5725,43,5725,5629,5633,5727,0,3,2,7,8,5725,5629,5633,5727,43,5726,5725,5727,5721,0,3,2,7,8,5726,5725,5727,5721,43,5728,5729,5730,5731,0,3,2,7,8,5728,5729,5730,5731,43,5729,5634,5637,5730,0,3,2,7,8,5729,5634,5637,5730,43,5730,5637,5626,5724,0,3,2,7,8,5730,5637,5626,5724,43,5731,5730,5724,5723,0,3,2,7,8,5731,5730,5724,5723,43,5732,5733,5734,5735,0,3,2,7,8,5732,5733,5734,5735,43,5733,5728,5731,5734,0,3,2,7,8,5733,5728,5731,5734,43,5734,5731,5723,5736,0,3,2,7,8,5734,5731,5723,5736,43,5735,5734,5736,5682,0,3,2,7,8,5735,5734,5736,5682,43,5677,5680,5737,5720,0,3,2,7,8,5677,5680,5737,5720,43,5680,5682,5736,5737,0,3,2,7,8,5680,5682,5736,5737,43,5737,5736,5723,5726,0,3,2,7,8,5737,5736,5723,5726,43,5720,5737,5726,5721,0,3,2,7,8,5720,5737,5726,5721,43,5721,5727,5738,5722,0,3,2,7,8,5721,5727,5738,5722,43,5727,5633,5709,5738,0,3,2,7,8,5727,5633,5709,5738,43,5738,5709,5707,5739,0,3,2,7,8,5738,5709,5707,5739,43,5722,5738,5739,5716,0,3,2,7,8,5722,5738,5739,5716,43,5659,5717,5740,5741,0,3,2,7,8,5659,5717,5740,5741,43,5717,5716,5739,5740,0,3,2,7,8,5717,5716,5739,5740,43,5740,5739,5707,5705,0,3,2,7,8,5740,5739,5707,5705,43,5741,5740,5705,5703,0,3,2,7,8,5741,5740,5705,5703,43,5661,5660,5742,5743,0,3,2,7,8,5661,5660,5742,5743,43,5660,5659,5741,5742,0,3,2,7,8,5660,5659,5741,5742,43,5742,5741,5703,5702,0,3,2,7,8,5742,5741,5703,5702,43,5743,5742,5702,5701,0,3,2,7,8,5743,5742,5702,5701,43,5005,5004,5744,5745,0,3,2,7,8,5005,5004,5744,5745,43,5004,4929,5676,5744,0,3,2,7,8,5004,4929,5676,5744,43,5744,5676,5653,5746,0,3,2,7,8,5744,5676,5653,5746,43,5745,5744,5746,5747,0,3,2,7,8,5745,5744,5746,5747,43,5747,5746,5748,5749,0,3,2,7,8,5747,5746,5748,5749,43,5746,5653,5656,5748,0,3,2,7,8,5746,5653,5656,5748,43,5748,5656,5661,5750,0,3,2,7,8,5748,5656,5661,5750,43,5749,5748,5750,5751,0,3,2,7,8,5749,5748,5750,5751,43,4635,5014,5752,4713,0,3,2,7,8,4635,5014,5752,4713,43,5014,5005,5745,5752,0,3,2,7,8,5014,5005,5745,5752,43,5752,5745,5747,5753,0,3,2,7,8,5752,5745,5747,5753,43,4713,5752,5753,4710,0,3,2,7,8,4713,5752,5753,4710,43,4710,5753,5754,4711,0,3,2,7,8,4710,5753,5754,4711,43,5753,5747,5749,5754,0,3,2,7,8,5753,5747,5749,5754,43,5754,5749,5751,5755,0,3,2,7,8,5754,5749,5751,5755,43,4711,5754,5755,4707,0,3,2,7,8,4711,5754,5755,4707,43,5751,5756,5757,5755,0,3,2,7,8,5751,5756,5757,5755,43,5756,5758,5759,5757,0,3,2,7,8,5756,5758,5759,5757,43,5757,5759,4675,4705,0,3,2,7,8,5757,5759,4675,4705,43,5755,5757,4705,4707,0,3,2,7,8,5755,5757,4705,4707,43,5751,5750,5760,5756,0,3,2,7,8,5751,5750,5760,5756,43,5750,5661,5743,5760,0,3,2,7,8,5750,5661,5743,5760,43,5760,5743,5701,5761,0,3,2,7,8,5760,5743,5701,5761,43,5756,5760,5761,5758,0,3,2,7,8,5756,5760,5761,5758,43,5762,5763,5764,5765,0,3,2,7,8,5762,5763,5764,5765,43,5763,5758,5761,5764,0,3,2,7,8,5763,5758,5761,5764,43,5764,5761,5701,5699,0,3,2,7,8,5764,5761,5701,5699,43,5765,5764,5699,5691,0,3,2,7,8,5765,5764,5699,5691,43,5687,5766,5767,5688,0,3,2,7,8,5687,5766,5767,5688,43,5766,5768,5769,5767,0,3,2,7,8,5766,5768,5769,5767,43,5767,5769,5762,5765,0,3,2,7,8,5767,5769,5762,5765,43,5688,5767,5765,5691,0,3,2,7,8,5688,5767,5765,5691,43,5600,5770,5771,5601,0,3,2,7,8,5600,5770,5771,5601,43,5770,5772,5773,5771,0,3,2,7,8,5770,5772,5773,5771,43,5771,5773,5687,5690,0,3,2,7,8,5771,5773,5687,5690,43,5601,5771,5690,5602,0,3,2,7,8,5601,5771,5690,5602,43,5772,5774,5775,5773,0,3,2,7,8,5772,5774,5775,5773,43,5774,5776,5777,5775,0,3,2,7,8,5774,5776,5777,5775,43,5775,5777,5768,5766,0,3,2,7,8,5775,5777,5768,5766,43,5773,5775,5766,5687,0,3,2,7,8,5773,5775,5766,5687,43,5776,5778,5779,5777,0,3,2,7,8,5776,5778,5779,5777,43,5778,4493,4666,5779,0,3,2,7,8,5778,4493,4666,5779,43,5779,4666,4665,5780,0,3,2,7,8,5779,4666,4665,5780,43,5777,5779,5780,5768,0,3,2,7,8,5777,5779,5780,5768,43,5768,5780,5781,5769,0,3,2,7,8,5768,5780,5781,5769,43,5780,4665,4703,5781,0,3,2,7,8,5780,4665,4703,5781,43,5781,4703,4667,5782,0,3,2,7,8,5781,4703,4667,5782,43,5769,5781,5782,5762,0,3,2,7,8,5769,5781,5782,5762,43,5762,5782,5783,5763,0,3,2,7,8,5762,5782,5783,5763,43,5782,4667,4670,5783,0,3,2,7,8,5782,4667,4670,5783,43,5783,4670,4675,5759,0,3,2,7,8,5783,4670,4675,5759,43,5763,5783,5759,5758,0,3,2,7,8,5763,5783,5759,5758,43,5784,5785,5786,5787,0,3,2,7,8,5784,5785,5786,5787,43,5785,5049,5046,5786,0,3,2,7,8,5785,5049,5046,5786,43,5786,5046,5045,5788,0,3,2,7,8,5786,5046,5045,5788,43,5787,5786,5788,5789,0,3,2,7,8,5787,5786,5788,5789,43,5049,5785,5790,5056,0,3,2,7,8,5049,5785,5790,5056,43,5785,5784,5791,5790,0,3,2,7,8,5785,5784,5791,5790,43,5790,5791,5685,5683,0,3,2,7,8,5790,5791,5685,5683,43,5056,5790,5683,4943,0,3,2,7,8,5056,5790,5683,4943,43,5685,5792,5793,5686,0,3,2,7,8,5685,5792,5793,5686,43,5792,5794,5795,5793,0,3,2,7,8,5792,5794,5795,5793,43,5793,5795,5732,5735,0,3,2,7,8,5793,5795,5732,5735,43,5686,5793,5735,5682,0,3,2,7,8,5686,5793,5735,5682,43,5784,5796,5797,5791,0,3,2,7,8,5784,5796,5797,5791,43,5796,5798,5799,5797,0,3,2,7,8,5796,5798,5799,5797,43,5797,5799,5794,5792,0,3,2,7,8,5797,5799,5794,5792,43,5791,5797,5792,5685,0,3,2,7,8,5791,5797,5792,5685,43,5789,5800,5801,5787,0,3,2,7,8,5789,5800,5801,5787,43,5800,5802,5803,5801,0,3,2,7,8,5800,5802,5803,5801,43,5801,5803,5798,5796,0,3,2,7,8,5801,5803,5798,5796,43,5787,5801,5796,5784,0,3,2,7,8,5787,5801,5796,5784,43,5671,5804,5805,5672,0,3,2,7,8,5671,5804,5805,5672,43,5804,5806,5807,5805,0,3,2,7,8,5804,5806,5807,5805,43,5805,5807,5808,5809,0,3,2,7,8,5805,5807,5808,5809,43,5672,5805,5809,5673,0,3,2,7,8,5672,5805,5809,5673,43,5808,5807,5810,5811,0,3,2,7,8,5808,5807,5810,5811,43,5807,5806,5812,5810,0,3,2,7,8,5807,5806,5812,5810,43,5810,5812,5813,5814,0,3,2,7,8,5810,5812,5813,5814,43,5811,5810,5814,5815,0,3,2,7,8,5811,5810,5814,5815,43,5806,5816,5817,5812,0,3,2,7,8,5806,5816,5817,5812,43,5816,5802,5800,5817,0,3,2,7,8,5816,5802,5800,5817,43,5817,5800,5789,5818,0,3,2,7,8,5817,5800,5789,5818,43,5812,5817,5818,5813,0,3,2,7,8,5812,5817,5818,5813,43,5813,5818,5819,5820,0,3,2,7,8,5813,5818,5819,5820,43,5818,5789,5788,5819,0,3,2,7,8,5818,5789,5788,5819,43,5819,5788,5045,5085,0,3,2,7,8,5819,5788,5045,5085,43,5820,5819,5085,5087,0,3,2,7,8,5820,5819,5085,5087,43,5815,5814,5821,5822,0,3,2,7,8,5815,5814,5821,5822,43,5814,5813,5820,5821,0,3,2,7,8,5814,5813,5820,5821,43,5821,5820,5087,5089,0,3,2,7,8,5821,5820,5087,5089,43,5822,5821,5089,5091,0,3,2,7,8,5822,5821,5089,5091,43,5823,5824,5825,5826,0,3,2,7,8,5823,5824,5825,5826,43,5824,5815,5822,5825,0,3,2,7,8,5824,5815,5822,5825,43,5825,5822,5091,5093,0,3,2,7,8,5825,5822,5091,5093,43,5826,5825,5093,5097,0,3,2,7,8,5826,5825,5093,5097,43,5673,5809,5827,5828,0,3,2,7,8,5673,5809,5827,5828,43,5809,5808,5811,5827,0,3,2,7,8,5809,5808,5811,5827,43,5827,5811,5815,5824,0,3,2,7,8,5827,5811,5815,5824,43,5828,5827,5824,5823,0,3,2,7,8,5828,5827,5824,5823,43,5673,5828,5829,5830,0,3,2,7,8,5673,5828,5829,5830,43,5828,5823,5831,5829,0,3,2,7,8,5828,5823,5831,5829,43,5829,5831,5832,5833,0,3,2,7,8,5829,5831,5832,5833,43,5830,5829,5833,5834,0,3,2,7,8,5830,5829,5833,5834,43,5112,5835,5836,5113,0,3,2,7,8,5112,5835,5836,5113,43,5835,5837,5838,5836,0,3,2,7,8,5835,5837,5838,5836,43,5836,5838,5839,5840,0,3,2,7,8,5836,5838,5839,5840,43,5113,5836,5840,5114,0,3,2,7,8,5113,5836,5840,5114,43,5118,5117,5841,5842,0,3,2,7,8,5118,5117,5841,5842,43,5117,5114,5840,5841,0,3,2,7,8,5117,5114,5840,5841,43,5841,5840,5839,5843,0,3,2,7,8,5841,5840,5839,5843,43,5842,5841,5843,5832,0,3,2,7,8,5842,5841,5843,5832,43,5097,5121,5844,5826,0,3,2,7,8,5097,5121,5844,5826,43,5121,5118,5842,5844,0,3,2,7,8,5121,5118,5842,5844,43,5844,5842,5832,5831,0,3,2,7,8,5844,5842,5832,5831,43,5826,5844,5831,5823,0,3,2,7,8,5826,5844,5831,5823,43,5124,5845,5846,5125,0,3,2,7,8,5124,5845,5846,5125,43,5845,5712,5715,5846,0,3,2,7,8,5845,5712,5715,5846,43,5846,5715,5657,5674,0,3,2,7,8,5846,5715,5657,5674,43,5125,5846,5674,4927,0,3,2,7,8,5125,5846,5674,4927,43,5124,5127,5847,5845,0,3,2,7,8,5124,5127,5847,5845,43,5127,4934,5678,5847,0,3,2,7,8,5127,4934,5678,5847,43,5847,5678,5677,5718,0,3,2,7,8,5847,5678,5677,5718,43,5845,5847,5718,5712,0,3,2,7,8,5845,5847,5718,5712,43,5848,5849,5850,5851,0,3,2,7,8,5848,5849,5850,5851,43,5849,920,917,5850,0,3,2,7,8,5849,920,917,5850,43,5850,917,916,5465,0,3,2,7,8,5850,917,916,5465,43,5851,5850,5465,5464,0,3,2,7,8,5851,5850,5465,5464,43,5469,5471,5852,5853,0,3,2,7,8,5469,5471,5852,5853,43,5471,3108,4043,5852,0,3,2,7,8,5471,3108,4043,5852,43,5852,4043,4041,5854,0,3,2,7,8,5852,4043,4041,5854,43,5853,5852,5854,5855,0,3,2,7,8,5853,5852,5854,5855,43,5581,5856,5857,5858,0,3,2,7,8,5581,5856,5857,5858,43,5856,5859,5860,5857,0,3,2,7,8,5856,5859,5860,5857,43,5857,5860,5855,5861,0,3,2,7,8,5857,5860,5855,5861,43,5858,5857,5861,5862,0,3,2,7,8,5858,5857,5861,5862,43,5855,5854,5863,5861,0,3,2,7,8,5855,5854,5863,5861,43,5854,4041,4040,5863,0,3,2,7,8,5854,4041,4040,5863,43,5863,4040,3756,5864,0,3,2,7,8,5863,4040,3756,5864,43,5861,5863,5864,5862,0,3,2,7,8,5861,5863,5864,5862,43,5855,5860,5865,5853,0,3,2,7,8,5855,5860,5865,5853,43,5860,5859,5866,5865,0,3,2,7,8,5860,5859,5866,5865,43,5865,5866,5464,5467,0,3,2,7,8,5865,5866,5464,5467,43,5853,5865,5467,5469,0,3,2,7,8,5853,5865,5467,5469,43,5575,5867,5868,5576,0,3,2,7,8,5575,5867,5868,5576,43,5867,5869,5870,5868,0,3,2,7,8,5867,5869,5870,5868,43,5868,5870,5871,5872,0,3,2,7,8,5868,5870,5871,5872,43,5576,5868,5872,5579,0,3,2,7,8,5576,5868,5872,5579,43,5871,5873,5874,5875,0,3,2,7,8,5871,5873,5874,5875,43,5873,5496,5540,5874,0,3,2,7,8,5873,5496,5540,5874,43,5874,5540,5539,5876,0,3,2,7,8,5874,5540,5539,5876,43,5875,5874,5876,5877,0,3,2,7,8,5875,5874,5876,5877,43,5480,5497,5878,5879,0,3,2,7,8,5480,5497,5878,5879,43,5497,5496,5873,5878,0,3,2,7,8,5497,5496,5873,5878,43,5878,5873,5871,5870,0,3,2,7,8,5878,5873,5871,5870,43,5879,5878,5870,5869,0,3,2,7,8,5879,5878,5870,5869,43,5880,5881,5882,5883,0,3,2,7,8,5880,5881,5882,5883,43,5881,5884,5885,5882,0,3,2,7,8,5881,5884,5885,5882,43,5882,5885,5886,5887,0,3,2,7,8,5882,5885,5886,5887,43,5883,5882,5887,5888,0,3,2,7,8,5883,5882,5887,5888,43,5888,5889,5890,5891,0,3,2,7,8,5888,5889,5890,5891,43,5889,5892,5893,5890,0,3,2,7,8,5889,5892,5893,5890,43,5890,5893,5648,5645,0,3,2,7,8,5890,5893,5648,5645,43,5891,5890,5645,5644,0,3,2,7,8,5891,5890,5645,5644,43,5892,5894,5895,5893,0,3,2,7,8,5892,5894,5895,5893,43,5894,5896,5897,5895,0,3,2,7,8,5894,5896,5897,5895,43,5895,5897,5898,5899,0,3,2,7,8,5895,5897,5898,5899,43,5893,5895,5899,5648,0,3,2,7,8,5893,5895,5899,5648,43,5898,5897,5900,5901,0,3,2,7,8,5898,5897,5900,5901,43,5897,5896,5902,5900,0,3,2,7,8,5897,5896,5902,5900,43,5900,5902,5903,5904,0,3,2,7,8,5900,5902,5903,5904,43,5901,5900,5904,5905,0,3,2,7,8,5901,5900,5904,5905,43,5623,5622,5906,5907,0,3,2,7,8,5623,5622,5906,5907,43,5622,5619,5618,5906,0,3,2,7,8,5622,5619,5618,5906,43,5906,5618,5617,5908,0,3,2,7,8,5906,5618,5617,5908,43,5907,5906,5908,5909,0,3,2,7,8,5907,5906,5908,5909,43,5625,5624,5910,5630,0,3,2,7,8,5625,5624,5910,5630,43,5624,5623,5907,5910,0,3,2,7,8,5624,5623,5907,5910,43,5910,5907,5909,5911,0,3,2,7,8,5910,5907,5909,5911,43,5630,5910,5911,5631,0,3,2,7,8,5630,5910,5911,5631,43,5607,5698,5912,5913,0,3,2,7,8,5607,5698,5912,5913,43,5698,5697,5711,5912,0,3,2,7,8,5698,5697,5711,5912,43,5912,5711,5631,5911,0,3,2,7,8,5912,5711,5631,5911,43,5913,5912,5911,5909,0,3,2,7,8,5913,5912,5911,5909,43,5607,5913,5914,5608,0,3,2,7,8,5607,5913,5914,5608,43,5913,5909,5915,5914,0,3,2,7,8,5913,5909,5915,5914,43,5914,5915,5916,5917,0,3,2,7,8,5914,5915,5916,5917,43,5608,5914,5917,5609,0,3,2,7,8,5608,5914,5917,5609,43,5909,5908,5918,5915,0,3,2,7,8,5909,5908,5918,5915,43,5908,5617,5919,5918,0,3,2,7,8,5908,5617,5919,5918,43,5918,5919,5920,5921,0,3,2,7,8,5918,5919,5920,5921,43,5915,5918,5921,5916,0,3,2,7,8,5915,5918,5921,5916,43,5922,5923,5924,5925,0,3,2,7,8,5922,5923,5924,5925,43,5923,5926,5927,5924,0,3,2,7,8,5923,5926,5927,5924,43,5924,5927,5928,5929,0,3,2,7,8,5924,5927,5928,5929,43,5925,5924,5929,5930,0,3,2,7,8,5925,5924,5929,5930,43,5916,5921,5931,5932,0,3,2,7,8,5916,5921,5931,5932,43,5921,5920,5933,5931,0,3,2,7,8,5921,5920,5933,5931,43,5931,5933,5926,5923,0,3,2,7,8,5931,5933,5926,5923,43,5932,5931,5923,5922,0,3,2,7,8,5932,5931,5923,5922,43,5617,5616,5934,5935,0,3,2,7,8,5617,5616,5934,5935,43,5616,5615,5936,5934,0,3,2,7,8,5616,5615,5936,5934,43,5934,5936,5937,5938,0,3,2,7,8,5934,5936,5937,5938,43,5935,5934,5938,5939,0,3,2,7,8,5935,5934,5938,5939,43,5834,5940,5941,5830,0,3,2,7,8,5834,5940,5941,5830,43,5940,5937,5942,5941,0,3,2,7,8,5940,5937,5942,5941,43,5941,5942,5666,5669,0,3,2,7,8,5941,5942,5666,5669,43,5830,5941,5669,5673,0,3,2,7,8,5830,5941,5669,5673,43,5937,5936,5943,5942,0,3,2,7,8,5937,5936,5943,5942,43,5936,5615,5612,5943,0,3,2,7,8,5936,5615,5612,5943,43,5943,5612,5611,5667,0,3,2,7,8,5943,5612,5611,5667,43,5942,5943,5667,5666,0,3,2,7,8,5942,5943,5667,5666,43,5905,5904,5944,5945,0,3,2,7,8,5905,5904,5944,5945,43,5904,5903,5946,5944,0,3,2,7,8,5904,5903,5946,5944,43,5944,5946,5939,5947,0,3,2,7,8,5944,5946,5939,5947,43,5945,5944,5947,5948,0,3,2,7,8,5945,5944,5947,5948,43,5837,5949,5950,5838,0,3,2,7,8,5837,5949,5950,5838,43,5949,5905,5945,5950,0,3,2,7,8,5949,5905,5945,5950,43,5950,5945,5948,5951,0,3,2,7,8,5950,5945,5948,5951,43,5838,5950,5951,5839,0,3,2,7,8,5838,5950,5951,5839,43,5839,5951,5952,5843,0,3,2,7,8,5839,5951,5952,5843,43,5951,5948,5953,5952,0,3,2,7,8,5951,5948,5953,5952,43,5952,5953,5834,5833,0,3,2,7,8,5952,5953,5834,5833,43,5843,5952,5833,5832,0,3,2,7,8,5843,5952,5833,5832,43,5939,5938,5954,5947,0,3,2,7,8,5939,5938,5954,5947,43,5938,5937,5940,5954,0,3,2,7,8,5938,5937,5940,5954,43,5954,5940,5834,5953,0,3,2,7,8,5954,5940,5834,5953,43,5947,5954,5953,5948,0,3,2,7,8,5947,5954,5953,5948,43,5939,5946,5955,5935,0,3,2,7,8,5939,5946,5955,5935,43,5946,5903,5956,5955,0,3,2,7,8,5946,5903,5956,5955,43,5955,5956,5920,5919,0,3,2,7,8,5955,5956,5920,5919,43,5935,5955,5919,5617,0,3,2,7,8,5935,5955,5919,5617,43,5920,5956,5957,5933,0,3,2,7,8,5920,5956,5957,5933,43,5956,5903,5902,5957,0,3,2,7,8,5956,5903,5902,5957,43,5957,5902,5896,5958,0,3,2,7,8,5957,5902,5896,5958,43,5933,5957,5958,5926,0,3,2,7,8,5933,5957,5958,5926,43,5926,5958,5959,5927,0,3,2,7,8,5926,5958,5959,5927,43,5958,5896,5894,5959,0,3,2,7,8,5958,5896,5894,5959,43,5959,5894,5892,5960,0,3,2,7,8,5959,5894,5892,5960,43,5927,5959,5960,5928,0,3,2,7,8,5927,5959,5960,5928,43,5886,5961,5962,5887,0,3,2,7,8,5886,5961,5962,5887,43,5961,5928,5960,5962,0,3,2,7,8,5961,5928,5960,5962,43,5962,5960,5892,5889,0,3,2,7,8,5962,5960,5892,5889,43,5887,5962,5889,5888,0,3,2,7,8,5887,5962,5889,5888,43,5884,5963,5964,5885,0,3,2,7,8,5884,5963,5964,5885,43,5963,5965,5966,5964,0,3,2,7,8,5963,5965,5966,5964,43,5964,5966,5967,5968,0,3,2,7,8,5964,5966,5967,5968,43,5885,5964,5968,5886,0,3,2,7,8,5885,5964,5968,5886,43,5930,5929,5969,5970,0,3,2,7,8,5930,5929,5969,5970,43,5929,5928,5961,5969,0,3,2,7,8,5929,5928,5961,5969,43,5969,5961,5886,5968,0,3,2,7,8,5969,5961,5886,5968,43,5970,5969,5968,5967,0,3,2,7,8,5970,5969,5968,5967,43,5609,5917,5971,5972,0,3,2,7,8,5609,5917,5971,5972,43,5917,5916,5932,5971,0,3,2,7,8,5917,5916,5932,5971,43,5971,5932,5922,5973,0,3,2,7,8,5971,5932,5922,5973,43,5972,5971,5973,5974,0,3,2,7,8,5972,5971,5973,5974,43,5974,5973,5975,5976,0,3,2,7,8,5974,5973,5975,5976,43,5973,5922,5925,5975,0,3,2,7,8,5973,5922,5925,5975,43,5975,5925,5930,5977,0,3,2,7,8,5975,5925,5930,5977,43,5976,5975,5977,5978,0,3,2,7,8,5976,5975,5977,5978,43,5604,5610,5979,5980,0,3,2,7,8,5604,5610,5979,5980,43,5610,5609,5972,5979,0,3,2,7,8,5610,5609,5972,5979,43,5979,5972,5974,5981,0,3,2,7,8,5979,5972,5974,5981,43,5980,5979,5981,5982,0,3,2,7,8,5980,5979,5981,5982,43,5596,5599,5983,5984,0,3,2,7,8,5596,5599,5983,5984,43,5599,5604,5980,5983,0,3,2,7,8,5599,5604,5980,5983,43,5983,5980,5982,5985,0,3,2,7,8,5983,5980,5982,5985,43,5984,5983,5985,5986,0,3,2,7,8,5984,5983,5985,5986,43,5986,5985,5987,5988,0,3,2,7,8,5986,5985,5987,5988,43,5985,5982,5989,5987,0,3,2,7,8,5985,5982,5989,5987,43,5987,5989,5990,5991,0,3,2,7,8,5987,5989,5990,5991,43,5988,5987,5991,5590,0,3,2,7,8,5988,5987,5991,5590,43,5974,5976,5992,5981,0,3,2,7,8,5974,5976,5992,5981,43,5976,5978,5993,5992,0,3,2,7,8,5976,5978,5993,5992,43,5992,5993,5990,5989,0,3,2,7,8,5992,5993,5990,5989,43,5981,5992,5989,5982,0,3,2,7,8,5981,5992,5989,5982,43,5978,5994,5995,5993,0,3,2,7,8,5978,5994,5995,5993,43,5994,5996,5997,5995,0,3,2,7,8,5994,5996,5997,5995,43,5995,5997,5998,5999,0,3,2,7,8,5995,5997,5998,5999,43,5993,5995,5999,5990,0,3,2,7,8,5993,5995,5999,5990,43,5990,5999,6000,5991,0,3,2,7,8,5990,5999,6000,5991,43,5999,5998,6001,6000,0,3,2,7,8,5999,5998,6001,6000,43,6000,6001,5594,5591,0,3,2,7,8,6000,6001,5594,5591,43,5991,6000,5591,5590,0,3,2,7,8,5991,6000,5591,5590,43,5998,6002,6003,6001,0,3,2,7,8,5998,6002,6003,6001,43,6002,6004,6005,6003,0,3,2,7,8,6002,6004,6005,6003,43,6003,6005,6006,6007,0,3,2,7,8,6003,6005,6006,6007,43,6001,6003,6007,5594,0,3,2,7,8,6001,6003,6007,5594,43,5996,6008,6009,5997,0,3,2,7,8,5996,6008,6009,5997,43,6008,6010,6011,6009,0,3,2,7,8,6008,6010,6011,6009,43,6009,6011,6004,6002,0,3,2,7,8,6009,6011,6004,6002,43,5997,6009,6002,5998,0,3,2,7,8,5997,6009,6002,5998,43,5930,5970,6012,5977,0,3,2,7,8,5930,5970,6012,5977,43,5970,5967,6013,6012,0,3,2,7,8,5970,5967,6013,6012,43,6012,6013,5996,5994,0,3,2,7,8,6012,6013,5996,5994,43,5977,6012,5994,5978,0,3,2,7,8,5977,6012,5994,5978,43,5967,5966,6014,6013,0,3,2,7,8,5967,5966,6014,6013,43,5966,5965,6015,6014,0,3,2,7,8,5966,5965,6015,6014,43,6014,6015,6010,6008,0,3,2,7,8,6014,6015,6010,6008,43,6013,6014,6008,5996,0,3,2,7,8,6013,6014,6008,5996,43,5965,6016,6017,6015,0,3,2,7,8,5965,6016,6017,6015,43,6016,5476,5475,6017,0,3,2,7,8,6016,5476,5475,6017,43,6017,5475,5474,6018,0,3,2,7,8,6017,5475,5474,6018,43,6015,6017,6018,6010,0,3,2,7,8,6015,6017,6018,6010,43,5594,6007,6019,5595,0,3,2,7,8,5594,6007,6019,5595,43,6007,6006,6020,6019,0,3,2,7,8,6007,6006,6020,6019,43,6019,6020,6021,6022,0,3,2,7,8,6019,6020,6021,6022,43,5595,6019,6022,5584,0,3,2,7,8,5595,6019,6022,5584,43,6021,6023,6024,6022,0,3,2,7,8,6021,6023,6024,6022,43,6023,5869,5867,6024,0,3,2,7,8,6023,5869,5867,6024,43,6024,5867,5575,5585,0,3,2,7,8,6024,5867,5575,5585,43,6022,6024,5585,5584,0,3,2,7,8,6022,6024,5585,5584,43,5482,5481,6025,6026,0,3,2,7,8,5482,5481,6025,6026,43,5481,5480,5879,6025,0,3,2,7,8,5481,5480,5879,6025,43,6025,5879,5869,6023,0,3,2,7,8,6025,5879,5869,6023,43,6026,6025,6023,6021,0,3,2,7,8,6026,6025,6023,6021,43,6006,6027,6028,6020,0,3,2,7,8,6006,6027,6028,6020,43,6027,5486,5485,6028,0,3,2,7,8,6027,5486,5485,6028,43,6028,5485,5482,6026,0,3,2,7,8,6028,5485,5482,6026,43,6020,6028,6026,6021,0,3,2,7,8,6020,6028,6026,6021,43,6010,6018,6029,6011,0,3,2,7,8,6010,6018,6029,6011,43,6018,5474,5493,6029,0,3,2,7,8,6018,5474,5493,6029,43,6029,5493,5490,6030,0,3,2,7,8,6029,5493,5490,6030,43,6011,6029,6030,6004,0,3,2,7,8,6011,6029,6030,6004,43,6004,6030,6031,6005,0,3,2,7,8,6004,6030,6031,6005,43,6030,5490,5489,6031,0,3,2,7,8,6030,5490,5489,6031,43,6031,5489,5486,6027,0,3,2,7,8,6031,5489,5486,6027,43,6005,6031,6027,6006,0,3,2,7,8,6005,6031,6027,6006,43,5512,5511,6032,6033,0,3,2,7,8,5512,5511,6032,6033,43,5511,5476,6016,6032,0,3,2,7,8,5511,5476,6016,6032,43,6032,6016,5965,5963,0,3,2,7,8,6032,6016,5965,5963,43,6033,6032,5963,5884,0,3,2,7,8,6033,6032,5963,5884,43,5516,5515,6034,6035,0,3,2,7,8,5516,5515,6034,6035,43,5515,5512,6033,6034,0,3,2,7,8,5515,5512,6033,6034,43,6034,6033,5884,5881,0,3,2,7,8,6034,6033,5884,5881,43,6035,6034,5881,5880,0,3,2,7,8,6035,6034,5881,5880,43,5320,6036,6037,5321,0,3,2,7,8,5320,6036,6037,5321,43,6036,6038,6039,6037,0,3,2,7,8,6036,6038,6039,6037,43,6037,6039,5837,5835,0,3,2,7,8,6037,6039,5837,5835,43,5321,6037,5835,5112,0,3,2,7,8,5321,6037,5835,5112,43,6038,6040,6041,6039,0,3,2,7,8,6038,6040,6041,6039,43,6040,5898,5901,6041,0,3,2,7,8,6040,5898,5901,6041,43,6041,5901,5905,5949,0,3,2,7,8,6041,5901,5905,5949,43,6039,6041,5949,5837,0,3,2,7,8,6039,6041,5949,5837,43,5650,5649,6042,6043,0,3,2,7,8,5650,5649,6042,6043,43,5649,5648,5899,6042,0,3,2,7,8,5649,5648,5899,6042,43,6042,5899,5898,6040,0,3,2,7,8,6042,5899,5898,6040,43,6043,6042,6040,6038,0,3,2,7,8,6043,6042,6040,6038,43,5328,6044,6045,5329,0,3,2,7,8,5328,6044,6045,5329,43,6044,5650,6043,6045,0,3,2,7,8,6044,5650,6043,6045,43,6045,6043,6038,6036,0,3,2,7,8,6045,6043,6038,6036,43,5329,6045,6036,5320,0,3,2,7,8,5329,6045,6036,5320,43,5650,6044,6046,5651,0,3,2,7,8,5650,6044,6046,5651,43,6044,5328,5331,6046,0,3,2,7,8,6044,5328,5331,6046,43,6046,5331,5330,6047,0,3,2,7,8,6046,5331,5330,6047,43,5651,6046,6047,5652,0,3,2,7,8,5651,6046,6047,5652,43,6048,6049,6050,6051,0,3,2,7,8,6048,6049,6050,6051,43,6049,6052,6053,6050,0,3,2,7,8,6049,6052,6053,6050,43,6050,6053,5334,5337,0,3,2,7,8,6050,6053,5334,5337,43,6051,6050,5337,5342,0,3,2,7,8,6051,6050,5337,5342,43,5330,5345,6054,6047,0,3,2,7,8,5330,5345,6054,6047,43,5345,5334,6053,6054,0,3,2,7,8,5345,5334,6053,6054,43,6054,6053,6052,6055,0,3,2,7,8,6054,6053,6052,6055,43,6047,6054,6055,5652,0,3,2,7,8,6047,6054,6055,5652,43,5503,6056,6057,5552,0,3,2,7,8,5503,6056,6057,5552,43,6056,6058,6059,6057,0,3,2,7,8,6056,6058,6059,6057,43,6057,6059,6060,6061,0,3,2,7,8,6057,6059,6060,6061,43,5552,6057,6061,5548,0,3,2,7,8,5552,6057,6061,5548,43,6062,6063,6064,6065,0,3,2,7,8,6062,6063,6064,6065,43,6063,6066,6067,6064,0,3,2,7,8,6063,6066,6067,6064,43,6064,6067,5644,5647,0,3,2,7,8,6064,6067,5644,5647,43,6065,6064,5647,5652,0,3,2,7,8,6065,6064,5647,5652,43,6066,6068,6069,6067,0,3,2,7,8,6066,6068,6069,6067,43,6068,5880,5883,6069,0,3,2,7,8,6068,5880,5883,6069,43,6069,5883,5888,5891,0,3,2,7,8,6069,5883,5888,5891,43,6067,6069,5891,5644,0,3,2,7,8,6067,6069,5891,5644,43,5508,5519,6070,6071,0,3,2,7,8,5508,5519,6070,6071,43,5519,5516,6035,6070,0,3,2,7,8,5519,5516,6035,6070,43,6070,6035,5880,6068,0,3,2,7,8,6070,6035,5880,6068,43,6071,6070,6068,6066,0,3,2,7,8,6071,6070,6068,6066,43,5501,5509,6072,6073,0,3,2,7,8,5501,5509,6072,6073,43,5509,5508,6071,6072,0,3,2,7,8,5509,5508,6071,6072,43,6072,6071,6066,6063,0,3,2,7,8,6072,6071,6066,6063,43,6073,6072,6063,6062,0,3,2,7,8,6073,6072,6063,6062,43,5503,5502,6074,6056,0,3,2,7,8,5503,5502,6074,6056,43,5502,5501,6073,6074,0,3,2,7,8,5502,5501,6073,6074,43,6074,6073,6062,6075,0,3,2,7,8,6074,6073,6062,6075,43,6056,6074,6075,6058,0,3,2,7,8,6056,6074,6075,6058,43,6052,6076,6077,6055,0,3,2,7,8,6052,6076,6077,6055,43,6076,6058,6075,6077,0,3,2,7,8,6076,6058,6075,6077,43,6077,6075,6062,6065,0,3,2,7,8,6077,6075,6062,6065,43,6055,6077,6065,5652,0,3,2,7,8,6055,6077,6065,5652,43,6058,6076,6078,6059,0,3,2,7,8,6058,6076,6078,6059,43,6076,6052,6049,6078,0,3,2,7,8,6076,6052,6049,6078,43,6078,6049,6048,6079,0,3,2,7,8,6078,6049,6048,6079,43,6059,6078,6079,6060,0,3,2,7,8,6059,6078,6079,6060,43,6060,6079,6080,6081,0,3,2,7,8,6060,6079,6080,6081,43,6079,6048,6082,6080,0,3,2,7,8,6079,6048,6082,6080,43,6080,6082,6083,6084,0,3,2,7,8,6080,6082,6083,6084,43,6081,6080,6084,6085,0,3,2,7,8,6081,6080,6084,6085,43,6086,6087,6088,6089,0,3,2,7,8,6086,6087,6088,6089,43,6087,5380,5377,6088,0,3,2,7,8,6087,5380,5377,6088,43,6088,5377,5376,6090,0,3,2,7,8,6088,5377,5376,6090,43,6089,6088,6090,6091,0,3,2,7,8,6089,6088,6090,6091,43,6083,6092,6093,6094,0,3,2,7,8,6083,6092,6093,6094,43,6092,5387,5385,6093,0,3,2,7,8,6092,5387,5385,6093,43,6093,5385,5380,6087,0,3,2,7,8,6093,5385,5380,6087,43,6094,6093,6087,6086,0,3,2,7,8,6094,6093,6087,6086,43,6095,6096,6097,6098,0,3,2,7,8,6095,6096,6097,6098,43,6096,6086,6089,6097,0,3,2,7,8,6096,6086,6089,6097,43,6097,6089,6091,6099,0,3,2,7,8,6097,6089,6091,6099,43,6098,6097,6099,6100,0,3,2,7,8,6098,6097,6099,6100,43,6085,6101,6102,6103,0,3,2,7,8,6085,6101,6102,6103,43,6101,6095,6104,6102,0,3,2,7,8,6101,6095,6104,6102,43,6102,6104,6105,6106,0,3,2,7,8,6102,6104,6105,6106,43,6103,6102,6106,5524,0,3,2,7,8,6103,6102,6106,5524,43,5548,6061,6107,5549,0,3,2,7,8,5548,6061,6107,5549,43,6061,6060,6081,6107,0,3,2,7,8,6061,6060,6081,6107,43,6107,6081,6085,6103,0,3,2,7,8,6107,6081,6085,6103,43,5549,6107,6103,5524,0,3,2,7,8,5549,6107,6103,5524,43,6105,6108,6109,6106,0,3,2,7,8,6105,6108,6109,6106,43,6108,6110,6111,6109,0,3,2,7,8,6108,6110,6111,6109,43,6109,6111,5526,5525,0,3,2,7,8,6109,6111,5526,5525,43,6106,6109,5525,5524,0,3,2,7,8,6106,6109,5525,5524,43,6112,6113,6114,6115,0,3,2,7,8,6112,6113,6114,6115,43,6113,6110,6108,6114,0,3,2,7,8,6113,6110,6108,6114,43,6114,6108,6105,6116,0,3,2,7,8,6114,6108,6105,6116,43,6115,6114,6116,6117,0,3,2,7,8,6115,6114,6116,6117,43,6118,6119,6120,6121,0,3,2,7,8,6118,6119,6120,6121,43,6119,6112,6122,6120,0,3,2,7,8,6119,6112,6122,6120,43,6120,6122,5848,5851,0,3,2,7,8,6120,6122,5848,5851,43,6121,6120,5851,5464,0,3,2,7,8,6121,6120,5851,5464,43,6123,6124,6125,6126,0,3,2,7,8,6123,6124,6125,6126,43,6124,5532,5531,6125,0,3,2,7,8,6124,5532,5531,6125,43,6125,5531,5526,6111,0,3,2,7,8,6125,5531,5526,6111,43,6126,6125,6111,6110,0,3,2,7,8,6126,6125,6111,6110,43,5877,5876,6127,6128,0,3,2,7,8,5877,5876,6127,6128,43,5876,5539,5543,6127,0,3,2,7,8,5876,5539,5543,6127,43,6127,5543,5532,6124,0,3,2,7,8,6127,5543,5532,6124,43,6128,6127,6124,6123,0,3,2,7,8,6128,6127,6124,6123,43,5859,6129,6130,5866,0,3,2,7,8,5859,6129,6130,5866,43,6129,6131,6132,6130,0,3,2,7,8,6129,6131,6132,6130,43,6130,6132,6118,6121,0,3,2,7,8,6130,6132,6118,6121,43,5866,6130,6121,5464,0,3,2,7,8,5866,6130,6121,5464,43,5579,5872,6133,6134,0,3,2,7,8,5579,5872,6133,6134,43,5872,5871,5875,6133,0,3,2,7,8,5872,5871,5875,6133,43,6133,5875,5877,6135,0,3,2,7,8,6133,5875,5877,6135,43,6134,6133,6135,6131,0,3,2,7,8,6134,6133,6135,6131,43,5581,5580,6136,5856,0,3,2,7,8,5581,5580,6136,5856,43,5580,5579,6134,6136,0,3,2,7,8,5580,5579,6134,6136,43,6136,6134,6131,6129,0,3,2,7,8,6136,6134,6131,6129,43,5856,6136,6129,5859,0,3,2,7,8,5856,6136,6129,5859,43,6131,6135,6137,6132,0,3,2,7,8,6131,6135,6137,6132,43,6135,5877,6128,6137,0,3,2,7,8,6135,5877,6128,6137,43,6137,6128,6123,6138,0,3,2,7,8,6137,6128,6123,6138,43,6132,6137,6138,6118,0,3,2,7,8,6132,6137,6138,6118,43,6118,6138,6139,6119,0,3,2,7,8,6118,6138,6139,6119,43,6138,6123,6126,6139,0,3,2,7,8,6138,6123,6126,6139,43,6139,6126,6110,6113,0,3,2,7,8,6139,6126,6110,6113,43,6119,6139,6113,6112,0,3,2,7,8,6119,6139,6113,6112,43,6140,6141,6142,6143,0,3,2,7,8,6140,6141,6142,6143,43,6141,6091,6090,6142,0,3,2,7,8,6141,6091,6090,6142,43,6142,6090,5376,5436,0,3,2,7,8,6142,6090,5376,5436,43,6143,6142,5436,5440,0,3,2,7,8,6143,6142,5436,5440,43,6144,6145,6146,6147,0,3,2,7,8,6144,6145,6146,6147,43,6145,6100,6099,6146,0,3,2,7,8,6145,6100,6099,6146,43,6146,6099,6091,6141,0,3,2,7,8,6146,6099,6091,6141,43,6147,6146,6141,6140,0,3,2,7,8,6147,6146,6141,6140,43,6140,6143,6148,6149,0,3,2,7,8,6140,6143,6148,6149,43,6143,5440,5445,6148,0,3,2,7,8,6143,5440,5445,6148,43,6148,5445,56,829,0,3,2,7,8,6148,5445,56,829,43,6149,6148,829,828,0,3,2,7,8,6149,6148,829,828,43,1421,6150,6151,1422,0,3,2,7,8,1421,6150,6151,1422,43,6150,6144,6147,6151,0,3,2,7,8,6150,6144,6147,6151,43,6151,6147,6140,6149,0,3,2,7,8,6151,6147,6140,6149,43,1422,6151,6149,828,0,3,2,7,8,1422,6151,6149,828,43,920,5849,6152,1412,0,3,2,7,8,920,5849,6152,1412,43,5849,5848,6153,6152,0,3,2,7,8,5849,5848,6153,6152,43,6152,6153,6154,6155,0,3,2,7,8,6152,6153,6154,6155,43,1412,6152,6155,1413,0,3,2,7,8,1412,6152,6155,1413,43,1413,6155,6156,1426,0,3,2,7,8,1413,6155,6156,1426,43,6155,6154,6157,6156,0,3,2,7,8,6155,6154,6157,6156,43,6156,6157,6144,6150,0,3,2,7,8,6156,6157,6144,6150,43,1426,6156,6150,1421,0,3,2,7,8,1426,6156,6150,1421,43,5848,6122,6158,6153,0,3,2,7,8,5848,6122,6158,6153,43,6122,6112,6115,6158,0,3,2,7,8,6122,6112,6115,6158,43,6158,6115,6117,6159,0,3,2,7,8,6158,6115,6117,6159,43,6153,6158,6159,6154,0,3,2,7,8,6153,6158,6159,6154,43,6154,6159,6160,6157,0,3,2,7,8,6154,6159,6160,6157,43,6159,6117,6161,6160,0,3,2,7,8,6159,6117,6161,6160,43,6160,6161,6100,6145,0,3,2,7,8,6160,6161,6100,6145,43,6157,6160,6145,6144,0,3,2,7,8,6157,6160,6145,6144,43,6117,6116,6162,6161,0,3,2,7,8,6117,6116,6162,6161,43,6116,6105,6104,6162,0,3,2,7,8,6116,6105,6104,6162,43,6162,6104,6095,6098,0,3,2,7,8,6162,6104,6095,6098,43,6161,6162,6098,6100,0,3,2,7,8,6161,6162,6098,6100,43,6085,6084,6163,6101,0,3,2,7,8,6085,6084,6163,6101,43,6084,6083,6094,6163,0,3,2,7,8,6084,6083,6094,6163,43,6163,6094,6086,6096,0,3,2,7,8,6163,6094,6086,6096,43,6101,6163,6096,6095,0,3,2,7,8,6101,6163,6096,6095,43,6048,6051,6164,6082,0,3,2,7,8,6048,6051,6164,6082,43,6051,5342,5462,6164,0,3,2,7,8,6051,5342,5462,6164,43,6164,5462,5387,6092,0,3,2,7,8,6164,5462,5387,6092,43,6082,6164,6092,6083,0,3,2,7,8,6082,6164,6092,6083,43,6165,6166,6167,6168,0,3,2,7,8,6165,6166,6167,6168,43,6166,6169,6170,6167,0,3,2,7,8,6166,6169,6170,6167,43,6167,6170,6171,6172,0,3,2,7,8,6167,6170,6171,6172,43,6168,6167,6172,6173,0,3,2,7,8,6168,6167,6172,6173,43,4852,4851,6174,6175,0,3,2,7,8,4852,4851,6174,6175,43,4851,4850,6176,6174,0,3,2,7,8,4851,4850,6176,6174,43,6174,6176,6177,6178,0,3,2,7,8,6174,6176,6177,6178,43,6175,6174,6178,6179,0,3,2,7,8,6175,6174,6178,6179,43,6180,6181,6182,6183,0,3,2,7,8,6180,6181,6182,6183,43,6181,6184,6185,6182,0,3,2,7,8,6181,6184,6185,6182,43,6182,6185,626,629,0,3,2,7,8,6182,6185,626,629,43,6183,6182,629,101,0,3,2,7,8,6183,6182,629,101,43,6173,6172,6186,6187,0,3,2,7,8,6173,6172,6186,6187,43,6172,6171,6188,6186,0,3,2,7,8,6172,6171,6188,6186,43,6186,6188,6189,6190,0,3,2,7,8,6186,6188,6189,6190,43,6187,6186,6190,6191,0,3,2,7,8,6187,6186,6190,6191,43,6184,6181,6192,6193,0,3,2,7,8,6184,6181,6192,6193,43,6181,6180,6194,6192,0,3,2,7,8,6181,6180,6194,6192,43,6192,6194,6195,6196,0,3,2,7,8,6192,6194,6195,6196,43,6193,6192,6196,6191,0,3,2,7,8,6193,6192,6196,6191,43,6195,6197,6198,6196,0,3,2,7,8,6195,6197,6198,6196,43,6197,4833,4835,6198,0,3,2,7,8,6197,4833,4835,6198,43,6198,4835,4839,6199,0,3,2,7,8,6198,4835,4839,6199,43,6196,6198,6199,6191,0,3,2,7,8,6196,6198,6199,6191,43,4839,4845,6200,6199,0,3,2,7,8,4839,4845,6200,6199,43,4845,4844,6201,6200,0,3,2,7,8,4845,4844,6201,6200,43,6200,6201,6173,6187,0,3,2,7,8,6200,6201,6173,6187,43,6199,6200,6187,6191,0,3,2,7,8,6199,6200,6187,6191,43,6189,6202,6203,6190,0,3,2,7,8,6189,6202,6203,6190,43,6202,6204,6205,6203,0,3,2,7,8,6202,6204,6205,6203,43,6203,6205,6184,6193,0,3,2,7,8,6203,6205,6184,6193,43,6190,6203,6193,6191,0,3,2,7,8,6190,6203,6193,6191,43,6184,6205,6206,6185,0,3,2,7,8,6184,6205,6206,6185,43,6205,6204,6207,6206,0,3,2,7,8,6205,6204,6207,6206,43,6206,6207,603,634,0,3,2,7,8,6206,6207,603,634,43,6185,6206,634,626,0,3,2,7,8,6185,6206,634,626,43,5037,6208,6209,5038,0,3,2,7,8,5037,6208,6209,5038,43,6208,6210,6211,6209,0,3,2,7,8,6208,6210,6211,6209,43,6209,6211,6212,6213,0,3,2,7,8,6209,6211,6212,6213,43,5038,6209,6213,5033,0,3,2,7,8,5038,6209,6213,5033,43,5033,6213,6214,5034,0,3,2,7,8,5033,6213,6214,5034,43,6213,6212,6215,6214,0,3,2,7,8,6213,6212,6215,6214,43,6214,6215,6177,6176,0,3,2,7,8,6214,6215,6177,6176,43,5034,6214,6176,4850,0,3,2,7,8,5034,6214,6176,4850,43,5037,5041,6216,6208,0,3,2,7,8,5037,5041,6216,6208,43,5041,4399,4402,6216,0,3,2,7,8,5041,4399,4402,6216,43,6216,4402,4404,6217,0,3,2,7,8,6216,4402,4404,6217,43,6208,6216,6217,6210,0,3,2,7,8,6208,6216,6217,6210,43,6179,6218,6219,6220,0,3,2,7,8,6179,6218,6219,6220,43,6218,6221,6222,6219,0,3,2,7,8,6218,6221,6222,6219,43,6219,6222,6169,6166,0,3,2,7,8,6219,6222,6169,6166,43,6166,6165,6220,6219,0,3,2,7,8,6166,6165,6220,6219,43,6177,6223,6224,6178,0,3,2,7,8,6177,6223,6224,6178,43,6223,6225,6226,6224,0,3,2,7,8,6223,6225,6226,6224,43,6224,6226,6221,6218,0,3,2,7,8,6224,6226,6221,6218,43,6178,6224,6218,6179,0,3,2,7,8,6178,6224,6218,6179,43,6227,6228,6229,6230,0,3,2,7,8,6227,6228,6229,6230,43,6228,6231,6232,6229,0,3,2,7,8,6228,6231,6232,6229,43,6229,6232,6233,6234,0,3,2,7,8,6229,6232,6233,6234,43,6230,6229,6234,6235,0,3,2,7,8,6230,6229,6234,6235,43,6227,6236,6237,6228,0,3,2,7,8,6227,6236,6237,6228,43,6236,6238,6239,6237,0,3,2,7,8,6236,6238,6239,6237,43,6237,6239,6240,6241,0,3,2,7,8,6237,6239,6240,6241,43,6228,6237,6241,6231,0,3,2,7,8,6228,6237,6241,6231,43,6231,6242,6243,6232,0,3,2,7,8,6231,6242,6243,6232,43,6242,6244,6245,6243,0,3,2,7,8,6242,6244,6245,6243,43,6243,6245,6246,6247,0,3,2,7,8,6243,6245,6246,6247,43,6232,6243,6247,6233,0,3,2,7,8,6232,6243,6247,6233,43,6231,6241,6248,6242,0,3,2,7,8,6231,6241,6248,6242,43,6241,6240,6249,6248,0,3,2,7,8,6241,6240,6249,6248,43,6248,6249,6250,6251,0,3,2,7,8,6248,6249,6250,6251,43,6242,6248,6251,6244,0,3,2,7,8,6242,6248,6251,6244,43,6171,6252,6253,6188,0,3,2,7,8,6171,6252,6253,6188,43,6252,6254,6255,6253,0,3,2,7,8,6252,6254,6255,6253,43,6253,6255,6256,6257,0,3,2,7,8,6253,6255,6256,6257,43,6188,6253,6257,6189,0,3,2,7,8,6188,6253,6257,6189,43,6169,6258,6259,6170,0,3,2,7,8,6169,6258,6259,6170,43,6258,6260,6261,6259,0,3,2,7,8,6258,6260,6261,6259,43,6259,6261,6254,6252,0,3,2,7,8,6259,6261,6254,6252,43,6170,6259,6252,6171,0,3,2,7,8,6170,6259,6252,6171,43,6244,6251,6262,6263,0,3,2,7,8,6244,6251,6262,6263,43,6251,6250,6264,6262,0,3,2,7,8,6251,6250,6264,6262,43,6262,6264,6256,6255,0,3,2,7,8,6262,6264,6256,6255,43,6263,6262,6255,6254,0,3,2,7,8,6263,6262,6255,6254,43,6260,6265,6266,6261,0,3,2,7,8,6260,6265,6266,6261,43,6265,6246,6245,6266,0,3,2,7,8,6265,6246,6245,6266,43,6266,6245,6244,6263,0,3,2,7,8,6266,6245,6244,6263,43,6261,6266,6263,6254,0,3,2,7,8,6261,6266,6263,6254,43,6221,6267,6268,6222,0,3,2,7,8,6221,6267,6268,6222,43,6267,6269,6270,6268,0,3,2,7,8,6267,6269,6270,6268,43,6268,6270,6260,6258,0,3,2,7,8,6268,6270,6260,6258,43,6222,6268,6258,6169,0,3,2,7,8,6222,6268,6258,6169,43,6225,6271,6272,6226,0,3,2,7,8,6225,6271,6272,6226,43,6271,6273,6274,6272,0,3,2,7,8,6271,6273,6274,6272,43,6272,6274,6269,6267,0,3,2,7,8,6272,6274,6269,6267,43,6226,6272,6267,6221,0,3,2,7,8,6226,6272,6267,6221,43,6273,6275,6276,6274,0,3,2,7,8,6273,6275,6276,6274,43,6275,6277,6278,6276,0,3,2,7,8,6275,6277,6278,6276,43,6276,6278,6279,6280,0,3,2,7,8,6276,6278,6279,6280,43,6274,6276,6280,6269,0,3,2,7,8,6274,6276,6280,6269,43,6210,6217,6281,6282,0,3,2,7,8,6210,6217,6281,6282,43,6217,4404,4415,6281,0,3,2,7,8,6217,4404,4415,6281,43,6281,4415,4414,6283,0,3,2,7,8,6281,4415,4414,6283,43,6282,6281,6283,6284,0,3,2,7,8,6282,6281,6283,6284,43,6212,6285,6286,6215,0,3,2,7,8,6212,6285,6286,6215,43,6285,6287,6288,6286,0,3,2,7,8,6285,6287,6288,6286,43,6286,6288,6225,6223,0,3,2,7,8,6286,6288,6225,6223,43,6215,6286,6223,6177,0,3,2,7,8,6215,6286,6223,6177,43,6212,6211,6289,6285,0,3,2,7,8,6212,6211,6289,6285,43,6211,6210,6282,6289,0,3,2,7,8,6211,6210,6282,6289,43,6289,6282,6284,6290,0,3,2,7,8,6289,6282,6284,6290,43,6285,6289,6290,6287,0,3,2,7,8,6285,6289,6290,6287,43,6225,6288,6291,6271,0,3,2,7,8,6225,6288,6291,6271,43,6288,6287,6292,6291,0,3,2,7,8,6288,6287,6292,6291,43,6291,6292,6293,6294,0,3,2,7,8,6291,6292,6293,6294,43,6271,6291,6294,6273,0,3,2,7,8,6271,6291,6294,6273,43,6287,6290,6295,6292,0,3,2,7,8,6287,6290,6295,6292,43,6290,6284,6296,6295,0,3,2,7,8,6290,6284,6296,6295,43,6295,6296,6297,6298,0,3,2,7,8,6295,6296,6297,6298,43,6292,6295,6298,6293,0,3,2,7,8,6292,6295,6298,6293,43,6284,6283,6299,6296,0,3,2,7,8,6284,6283,6299,6296,43,6283,4414,4423,6299,0,3,2,7,8,6283,4414,4423,6299,43,6299,4423,4422,6300,0,3,2,7,8,6299,4423,4422,6300,43,6296,6299,6300,6297,0,3,2,7,8,6296,6299,6300,6297,43,6297,6300,6301,6302,0,3,2,7,8,6297,6300,6301,6302,43,6300,4422,4430,6301,0,3,2,7,8,6300,4422,4430,6301,43,6301,4430,4432,6303,0,3,2,7,8,6301,4430,4432,6303,43,6302,6301,6303,6304,0,3,2,7,8,6302,6301,6303,6304,43,6293,6298,6305,6306,0,3,2,7,8,6293,6298,6305,6306,43,6298,6297,6302,6305,0,3,2,7,8,6298,6297,6302,6305,43,6305,6302,6304,6307,0,3,2,7,8,6305,6302,6304,6307,43,6306,6305,6307,6308,0,3,2,7,8,6306,6305,6307,6308,43,6273,6294,6309,6275,0,3,2,7,8,6273,6294,6309,6275,43,6294,6293,6306,6309,0,3,2,7,8,6294,6293,6306,6309,43,6309,6306,6308,6310,0,3,2,7,8,6309,6306,6308,6310,43,6275,6309,6310,6277,0,3,2,7,8,6275,6309,6310,6277,43,6308,6311,6312,6310,0,3,2,7,8,6308,6311,6312,6310,43,6311,6313,6314,6312,0,3,2,7,8,6311,6313,6314,6312,43,6312,6314,6315,6316,0,3,2,7,8,6312,6314,6315,6316,43,6310,6312,6316,6277,0,3,2,7,8,6310,6312,6316,6277,43,6279,6278,6317,6318,0,3,2,7,8,6279,6278,6317,6318,43,6278,6277,6316,6317,0,3,2,7,8,6278,6277,6316,6317,43,6317,6316,6315,6319,0,3,2,7,8,6317,6316,6315,6319,43,6318,6317,6319,6320,0,3,2,7,8,6318,6317,6319,6320,43,6269,6280,6321,6270,0,3,2,7,8,6269,6280,6321,6270,43,6280,6279,6322,6321,0,3,2,7,8,6280,6279,6322,6321,43,6321,6322,6246,6265,0,3,2,7,8,6321,6322,6246,6265,43,6270,6321,6265,6260,0,3,2,7,8,6270,6321,6265,6260,43,6246,6322,6323,6247,0,3,2,7,8,6246,6322,6323,6247,43,6322,6279,6318,6323,0,3,2,7,8,6322,6279,6318,6323,43,6323,6318,6320,6324,0,3,2,7,8,6323,6318,6320,6324,43,6247,6323,6324,6233,0,3,2,7,8,6247,6323,6324,6233,43,6233,6324,6325,6234,0,3,2,7,8,6233,6324,6325,6234,43,6324,6320,6326,6325,0,3,2,7,8,6324,6320,6326,6325,43,6325,6326,6327,6328,0,3,2,7,8,6325,6326,6327,6328,43,6234,6325,6328,6235,0,3,2,7,8,6234,6325,6328,6235,43,6320,6319,6329,6326,0,3,2,7,8,6320,6319,6329,6326,43,6319,6315,6330,6329,0,3,2,7,8,6319,6315,6330,6329,43,6329,6330,6331,6332,0,3,2,7,8,6329,6330,6331,6332,43,6326,6329,6332,6327,0,3,2,7,8,6326,6329,6332,6327,43,6313,6333,6334,6314,0,3,2,7,8,6313,6333,6334,6314,43,6333,6335,6336,6334,0,3,2,7,8,6333,6335,6336,6334,43,6334,6336,6331,6330,0,3,2,7,8,6334,6336,6331,6330,43,6314,6334,6330,6315,0,3,2,7,8,6314,6334,6330,6315,43,6337,6338,6339,6340,0,3,2,7,8,6337,6338,6339,6340,43,6338,6313,6311,6339,0,3,2,7,8,6338,6313,6311,6339,43,6339,6311,6308,6307,0,3,2,7,8,6339,6311,6308,6307,43,6340,6339,6307,6304,0,3,2,7,8,6340,6339,6307,6304,43,6304,6303,6341,6340,0,3,2,7,8,6304,6303,6341,6340,43,6303,4432,4456,6341,0,3,2,7,8,6303,4432,4456,6341,43,6341,4456,4449,6342,0,3,2,7,8,6341,4456,4449,6342,43,6340,6341,6342,6337,0,3,2,7,8,6340,6341,6342,6337,43,4449,4452,6343,6342,0,3,2,7,8,4449,4452,6343,6342,43,4452,4454,6344,6343,0,3,2,7,8,4452,4454,6344,6343,43,6343,6344,6345,6346,0,3,2,7,8,6343,6344,6345,6346,43,6342,6343,6346,6337,0,3,2,7,8,6342,6343,6346,6337,43,6337,6346,6347,6338,0,3,2,7,8,6337,6346,6347,6338,43,6346,6345,6348,6347,0,3,2,7,8,6346,6345,6348,6347,43,6347,6348,6335,6333,0,3,2,7,8,6347,6348,6335,6333,43,6338,6347,6333,6313,0,3,2,7,8,6338,6347,6333,6313,43,70,3089,6349,71,0,3,2,7,8,70,3089,6349,71,43,3089,2790,6350,6349,0,3,2,7,8,3089,2790,6350,6349,43,6349,6350,6351,6352,0,3,2,7,8,6349,6350,6351,6352,43,71,6349,6352,72,0,3,2,7,8,71,6349,6352,72,43,72,6352,6353,103,0,3,2,7,8,72,6352,6353,103,43,6352,6351,6354,6353,0,3,2,7,8,6352,6351,6354,6353,43,6353,6354,6180,6183,0,3,2,7,8,6353,6354,6180,6183,43,103,6353,6183,101,0,3,2,7,8,103,6353,6183,101,43,5142,5141,6355,6356,0,3,2,7,8,5142,5141,6355,6356,43,5141,4825,4828,6355,0,3,2,7,8,5141,4825,4828,6355,43,6355,4828,4833,6197,0,3,2,7,8,6355,4828,4833,6197,43,6356,6355,6197,6195,0,3,2,7,8,6356,6355,6197,6195,43,6180,6354,6357,6194,0,3,2,7,8,6180,6354,6357,6194,43,6354,6351,6358,6357,0,3,2,7,8,6354,6351,6358,6357,43,6357,6358,5142,6356,0,3,2,7,8,6357,6358,5142,6356,43,6194,6357,6356,6195,0,3,2,7,8,6194,6357,6356,6195,43,6351,6350,6359,6358,0,3,2,7,8,6351,6350,6359,6358,43,6350,2790,2793,6359,0,3,2,7,8,6350,2790,2793,6359,43,6359,2793,2795,5144,0,3,2,7,8,6359,2793,2795,5144,43,6358,6359,5144,5142,0,3,2,7,8,6358,6359,5144,5142,43,4852,6175,6360,5265,0,3,2,7,8,4852,6175,6360,5265,43,6175,6179,6220,6360,0,3,2,7,8,6175,6179,6220,6360,43,6165,6361,6360,6220,0,3,2,7,8,6165,6361,6360,6220,43,5265,6360,6361,5266,0,3,2,7,8,5265,6360,6361,5266,43,5266,6361,6362,5271,0,3,2,7,8,5266,6361,6362,5271,43,6361,6165,6168,6362,0,3,2,7,8,6361,6165,6168,6362,43,6362,6168,6173,6201,0,3,2,7,8,6362,6168,6173,6201,43,5271,6362,6201,4844,0,3,2,7,8,5271,6362,6201,4844,43,6363,6364,6365,6366,0,3,2,7,8,6363,6364,6365,6366,43,6364,6250,6249,6365,0,3,2,7,8,6364,6250,6249,6365,43,6365,6249,6240,6367,0,3,2,7,8,6365,6249,6240,6367,43,6366,6365,6367,6368,0,3,2,7,8,6366,6365,6367,6368,43,6240,6239,6369,6367,0,3,2,7,8,6240,6239,6369,6367,43,6239,6238,6370,6369,0,3,2,7,8,6239,6238,6370,6369,43,6367,6369,6370,6368,0,3,2,7,8,6367,6369,6370,6368,43,6371,6372,6373,6374,0,3,2,7,8,6371,6372,6373,6374,43,6372,609,608,6373,0,3,2,7,8,6372,609,608,6373,43,6373,608,595,6375,0,3,2,7,8,6373,608,595,6375,43,6374,6373,6375,6376,0,3,2,7,8,6374,6373,6375,6376,43,6376,6375,6377,6378,0,3,2,7,8,6376,6375,6377,6378,43,6375,595,598,6377,0,3,2,7,8,6375,595,598,6377,43,6377,598,603,6207,0,3,2,7,8,6377,598,603,6207,43,6378,6377,6207,6204,0,3,2,7,8,6378,6377,6207,6204,43,6189,6257,6379,6202,0,3,2,7,8,6189,6257,6379,6202,43,6257,6256,6380,6379,0,3,2,7,8,6257,6256,6380,6379,43,6379,6380,6376,6378,0,3,2,7,8,6379,6380,6376,6378,43,6202,6379,6378,6204,0,3,2,7,8,6202,6379,6378,6204,43,6250,6364,6381,6264,0,3,2,7,8,6250,6364,6381,6264,43,6364,6363,6382,6381,0,3,2,7,8,6364,6363,6382,6381,43,6381,6382,6376,6380,0,3,2,7,8,6381,6382,6376,6380,43,6264,6381,6380,6256,0,3,2,7,8,6264,6381,6380,6256,43,6376,6382,6383,6374,0,3,2,7,8,6376,6382,6383,6374,43,6382,6363,6366,6383,0,3,2,7,8,6382,6363,6366,6383,43,6383,6366,6368,6384,0,3,2,7,8,6383,6366,6368,6384,43,6374,6383,6384,6371,0,3,2,7,8,6374,6383,6384,6371,43,6385,6386,6387,6388,0,3,2,7,8,6385,6386,6387,6388,43,6386,6389,6390,6387,0,3,2,7,8,6386,6389,6390,6387,43,6387,6390,6391,6392,0,3,2,7,8,6387,6390,6391,6392,43,6388,6387,6392,6393,0,3,2,7,8,6388,6387,6392,6393,43,6394,6395,6396,6397,0,3,2,7,8,6394,6395,6396,6397,43,6395,5600,5597,6396,0,3,2,7,8,6395,5600,5597,6396,43,6396,5597,5596,6398,0,3,2,7,8,6396,5597,5596,6398,43,6397,6396,6398,6399,0,3,2,7,8,6397,6396,6398,6399,43,1373,6400,6401,1374,0,3,2,7,8,1373,6400,6401,1374,43,6400,6402,6403,6401,0,3,2,7,8,6400,6402,6403,6401,43,6401,6403,6404,6405,0,3,2,7,8,6401,6403,6404,6405,43,1374,6401,6405,873,0,3,2,7,8,1374,6401,6405,873,43,6406,6407,6408,6409,0,3,2,7,8,6406,6407,6408,6409,43,6407,6385,6388,6408,0,3,2,7,8,6407,6385,6388,6408,43,6408,6388,6393,6410,0,3,2,7,8,6408,6388,6393,6410,43,6409,6408,6410,6411,0,3,2,7,8,6409,6408,6410,6411,43,6412,6413,6414,6415,0,3,2,7,8,6412,6413,6414,6415,43,6413,6404,6403,6414,0,3,2,7,8,6413,6404,6403,6414,43,6414,6403,6402,6416,0,3,2,7,8,6414,6403,6402,6416,43,6415,6414,6416,6411,0,3,2,7,8,6415,6414,6416,6411,43,5589,5588,6417,6418,0,3,2,7,8,5589,5588,6417,6418,43,5588,5583,6419,6417,0,3,2,7,8,5588,5583,6419,6417,43,6417,6419,6412,6415,0,3,2,7,8,6417,6419,6412,6415,43,6418,6417,6415,6411,0,3,2,7,8,6418,6417,6415,6411,43,6393,6420,6421,6410,0,3,2,7,8,6393,6420,6421,6410,43,6420,5590,5593,6421,0,3,2,7,8,6420,5590,5593,6421,43,6421,5593,5589,6418,0,3,2,7,8,6421,5593,5589,6418,43,6410,6421,6418,6411,0,3,2,7,8,6410,6421,6418,6411,43,6402,6422,6423,6416,0,3,2,7,8,6402,6422,6423,6416,43,6422,6424,6425,6423,0,3,2,7,8,6422,6424,6425,6423,43,6423,6425,6406,6409,0,3,2,7,8,6423,6425,6406,6409,43,6416,6423,6409,6411,0,3,2,7,8,6416,6423,6409,6411,43,1353,6426,6427,1379,0,3,2,7,8,1353,6426,6427,1379,43,6426,6424,6422,6427,0,3,2,7,8,6426,6424,6422,6427,43,6427,6422,6402,6400,0,3,2,7,8,6427,6422,6402,6400,43,1379,6427,6400,1373,0,3,2,7,8,1379,6427,6400,1373,43,6428,6429,6430,6431,0,3,2,7,8,6428,6429,6430,6431,43,6429,6432,6433,6430,0,3,2,7,8,6429,6432,6433,6430,43,6430,6433,5776,5774,0,3,2,7,8,6430,6433,5776,5774,43,6431,6430,5774,5772,0,3,2,7,8,6431,6430,5774,5772,43,6394,6434,6435,6395,0,3,2,7,8,6394,6434,6435,6395,43,6434,6428,6431,6435,0,3,2,7,8,6434,6428,6431,6435,43,6435,6431,5772,5770,0,3,2,7,8,6435,6431,5772,5770,43,6395,6435,5770,5600,0,3,2,7,8,6395,6435,5770,5600,43,4495,4494,6436,6437,0,3,2,7,8,4495,4494,6436,6437,43,4494,4493,5778,6436,0,3,2,7,8,4494,4493,5778,6436,43,6436,5778,5776,6433,0,3,2,7,8,6436,5778,5776,6433,43,6437,6436,6433,6432,0,3,2,7,8,6437,6436,6433,6432,43,6389,6438,6439,6390,0,3,2,7,8,6389,6438,6439,6390,43,6438,6440,6441,6439,0,3,2,7,8,6438,6440,6441,6439,43,6439,6441,6399,6442,0,3,2,7,8,6439,6441,6399,6442,43,6390,6439,6442,6391,0,3,2,7,8,6390,6439,6442,6391,43,6440,6443,6444,6441,0,3,2,7,8,6440,6443,6444,6441,43,6443,6445,6446,6444,0,3,2,7,8,6443,6445,6446,6444,43,6444,6446,6394,6397,0,3,2,7,8,6444,6446,6394,6397,43,6441,6444,6397,6399,0,3,2,7,8,6441,6444,6397,6399,43,6447,6448,6449,6450,0,3,2,7,8,6447,6448,6449,6450,43,6448,6451,6452,6449,0,3,2,7,8,6448,6451,6452,6449,43,6449,6452,6227,6230,0,3,2,7,8,6449,6452,6227,6230,43,6450,6449,6230,6235,0,3,2,7,8,6450,6449,6230,6235,43,6453,6454,6455,6456,0,3,2,7,8,6453,6454,6455,6456,43,6454,6238,6236,6455,0,3,2,7,8,6454,6238,6236,6455,43,6455,6236,6227,6452,0,3,2,7,8,6455,6236,6227,6452,43,6456,6455,6452,6451,0,3,2,7,8,6456,6455,6452,6451,43,6457,6458,6459,6460,0,3,2,7,8,6457,6458,6459,6460,43,6458,6461,6462,6459,0,3,2,7,8,6458,6461,6462,6459,43,6459,6462,6451,6448,0,3,2,7,8,6459,6462,6451,6448,43,6460,6459,6448,6447,0,3,2,7,8,6460,6459,6448,6447,43,6463,6464,6465,6466,0,3,2,7,8,6463,6464,6465,6466,43,6464,6453,6456,6465,0,3,2,7,8,6464,6453,6456,6465,43,6465,6456,6451,6462,0,3,2,7,8,6465,6456,6451,6462,43,6466,6465,6462,6461,0,3,2,7,8,6466,6465,6462,6461,43,6467,6468,6469,6470,0,3,2,7,8,6467,6468,6469,6470,43,6468,6471,6472,6469,0,3,2,7,8,6468,6471,6472,6469,43,6469,6472,6385,6407,0,3,2,7,8,6469,6472,6385,6407,43,6470,6469,6407,6406,0,3,2,7,8,6470,6469,6407,6406,43,6471,6473,6474,6472,0,3,2,7,8,6471,6473,6474,6472,43,6473,6475,6476,6474,0,3,2,7,8,6473,6475,6476,6474,43,6474,6476,6389,6386,0,3,2,7,8,6474,6476,6389,6386,43,6472,6474,6386,6385,0,3,2,7,8,6472,6474,6386,6385,43,6467,6477,6478,6468,0,3,2,7,8,6467,6477,6478,6468,43,6477,6463,6466,6478,0,3,2,7,8,6477,6463,6466,6478,43,6478,6466,6461,6479,0,3,2,7,8,6478,6466,6461,6479,43,6468,6478,6479,6471,0,3,2,7,8,6468,6478,6479,6471,43,6461,6458,6480,6479,0,3,2,7,8,6461,6458,6480,6479,43,6458,6457,6481,6480,0,3,2,7,8,6458,6457,6481,6480,43,6480,6481,6475,6473,0,3,2,7,8,6480,6481,6475,6473,43,6479,6480,6473,6471,0,3,2,7,8,6479,6480,6473,6471,43,6475,6482,6483,6476,0,3,2,7,8,6475,6482,6483,6476,43,6482,6484,6485,6483,0,3,2,7,8,6482,6484,6485,6483,43,6483,6485,6440,6438,0,3,2,7,8,6483,6485,6440,6438,43,6476,6483,6438,6389,0,3,2,7,8,6476,6483,6438,6389,43,6484,6486,6487,6485,0,3,2,7,8,6484,6486,6487,6485,43,6486,6488,6489,6487,0,3,2,7,8,6486,6488,6489,6487,43,6487,6489,6445,6443,0,3,2,7,8,6487,6489,6445,6443,43,6485,6487,6443,6440,0,3,2,7,8,6485,6487,6443,6440,43,6490,6491,6492,6493,0,3,2,7,8,6490,6491,6492,6493,43,6491,6494,6495,6492,0,3,2,7,8,6491,6494,6495,6492,43,6492,6495,6488,6486,0,3,2,7,8,6492,6495,6488,6486,43,6493,6492,6486,6484,0,3,2,7,8,6493,6492,6486,6484,43,4508,4507,6496,6497,0,3,2,7,8,4508,4507,6496,6497,43,4507,4495,6437,6496,0,3,2,7,8,4507,4495,6437,6496,43,6496,6437,6432,6498,0,3,2,7,8,6496,6437,6432,6498,43,6497,6496,6498,6499,0,3,2,7,8,6497,6496,6498,6499,43,6445,6500,6501,6446,0,3,2,7,8,6445,6500,6501,6446,43,6500,6502,6503,6501,0,3,2,7,8,6500,6502,6503,6501,43,6501,6503,6428,6434,0,3,2,7,8,6501,6503,6428,6434,43,6446,6501,6434,6394,0,3,2,7,8,6446,6501,6434,6394,43,6499,6498,6504,6505,0,3,2,7,8,6499,6498,6504,6505,43,6498,6432,6429,6504,0,3,2,7,8,6498,6432,6429,6504,43,6504,6429,6428,6503,0,3,2,7,8,6504,6429,6428,6503,43,6505,6504,6503,6502,0,3,2,7,8,6505,6504,6503,6502,43,6506,6507,6508,6509,0,3,2,7,8,6506,6507,6508,6509,43,6507,6502,6500,6508,0,3,2,7,8,6507,6502,6500,6508,43,6508,6500,6445,6489,0,3,2,7,8,6508,6500,6445,6489,43,6509,6508,6489,6488,0,3,2,7,8,6509,6508,6489,6488,43,6510,6511,6512,6513,0,3,2,7,8,6510,6511,6512,6513,43,6511,6499,6505,6512,0,3,2,7,8,6511,6499,6505,6512,43,6512,6505,6502,6507,0,3,2,7,8,6512,6505,6502,6507,43,6513,6512,6507,6506,0,3,2,7,8,6513,6512,6507,6506,43,4516,4515,6514,6515,0,3,2,7,8,4516,4515,6514,6515,43,4515,4508,6497,6514,0,3,2,7,8,4515,4508,6497,6514,43,6514,6497,6499,6511,0,3,2,7,8,6514,6497,6499,6511,43,6515,6514,6511,6510,0,3,2,7,8,6515,6514,6511,6510,43,4523,4522,6516,6517,0,3,2,7,8,4523,4522,6516,6517,43,4522,4516,6515,6516,0,3,2,7,8,4522,4516,6515,6516,43,6516,6515,6510,6518,0,3,2,7,8,6516,6515,6510,6518,43,6517,6516,6518,6519,0,3,2,7,8,6517,6516,6518,6519,43,6519,6518,6520,6521,0,3,2,7,8,6519,6518,6520,6521,43,6518,6510,6513,6520,0,3,2,7,8,6518,6510,6513,6520,43,6520,6513,6506,6522,0,3,2,7,8,6520,6513,6506,6522,43,6521,6520,6522,6523,0,3,2,7,8,6521,6520,6522,6523,43,6523,6522,6524,6525,0,3,2,7,8,6523,6522,6524,6525,43,6522,6506,6509,6524,0,3,2,7,8,6522,6506,6509,6524,43,6524,6509,6488,6495,0,3,2,7,8,6524,6509,6488,6495,43,6525,6524,6495,6494,0,3,2,7,8,6525,6524,6495,6494,43,6526,6527,6528,6529,0,3,2,7,8,6526,6527,6528,6529,43,6527,6530,6531,6528,0,3,2,7,8,6527,6530,6531,6528,43,6528,6531,6523,6525,0,3,2,7,8,6528,6531,6523,6525,43,6529,6528,6525,6494,0,3,2,7,8,6529,6528,6525,6494,43,6526,6529,6532,6533,0,3,2,7,8,6526,6529,6532,6533,43,6529,6494,6491,6532,0,3,2,7,8,6529,6494,6491,6532,43,6532,6491,6490,6534,0,3,2,7,8,6532,6491,6490,6534,43,6533,6532,6534,6535,0,3,2,7,8,6533,6532,6534,6535,43,6457,6536,6537,6481,0,3,2,7,8,6457,6536,6537,6481,43,6536,6490,6493,6537,0,3,2,7,8,6536,6490,6493,6537,43,6537,6493,6484,6482,0,3,2,7,8,6537,6493,6484,6482,43,6481,6537,6482,6475,0,3,2,7,8,6481,6537,6482,6475,43,6535,6534,6538,6539,0,3,2,7,8,6535,6534,6538,6539,43,6534,6490,6536,6538,0,3,2,7,8,6534,6490,6536,6538,43,6538,6536,6457,6460,0,3,2,7,8,6538,6536,6457,6460,43,6539,6538,6460,6447,0,3,2,7,8,6539,6538,6460,6447,43,6327,6540,6541,6328,0,3,2,7,8,6327,6540,6541,6328,43,6540,6535,6539,6541,0,3,2,7,8,6540,6535,6539,6541,43,6541,6539,6447,6450,0,3,2,7,8,6541,6539,6447,6450,43,6328,6541,6450,6235,0,3,2,7,8,6328,6541,6450,6235,43,6331,6542,6543,6332,0,3,2,7,8,6331,6542,6543,6332,43,6542,6526,6533,6543,0,3,2,7,8,6542,6526,6533,6543,43,6543,6533,6535,6540,0,3,2,7,8,6543,6533,6535,6540,43,6332,6543,6540,6327,0,3,2,7,8,6332,6543,6540,6327,43,6331,6336,6544,6542,0,3,2,7,8,6331,6336,6544,6542,43,6336,6335,6545,6544,0,3,2,7,8,6336,6335,6545,6544,43,6544,6545,6530,6527,0,3,2,7,8,6544,6545,6530,6527,43,6542,6544,6527,6526,0,3,2,7,8,6542,6544,6527,6526,43,6523,6531,6546,6521,0,3,2,7,8,6523,6531,6546,6521,43,6531,6530,6547,6546,0,3,2,7,8,6531,6530,6547,6546,43,6546,6547,6548,6549,0,3,2,7,8,6546,6547,6548,6549,43,6521,6546,6549,6519,0,3,2,7,8,6521,6546,6549,6519,43,4539,4543,6550,6551,0,3,2,7,8,4539,4543,6550,6551,43,4543,4523,6517,6550,0,3,2,7,8,4543,4523,6517,6550,43,6550,6517,6519,6549,0,3,2,7,8,6550,6517,6519,6549,43,6551,6550,6549,6548,0,3,2,7,8,6551,6550,6549,6548,43,6345,6344,6552,6553,0,3,2,7,8,6345,6344,6552,6553,43,6344,4454,4540,6552,0,3,2,7,8,6344,4454,4540,6552,43,6552,4540,4539,6551,0,3,2,7,8,6552,4540,4539,6551,43,6553,6552,6551,6548,0,3,2,7,8,6553,6552,6551,6548,43,6335,6348,6554,6545,0,3,2,7,8,6335,6348,6554,6545,43,6348,6345,6553,6554,0,3,2,7,8,6348,6345,6553,6554,43,6554,6553,6548,6547,0,3,2,7,8,6554,6553,6548,6547,43,6545,6554,6547,6530,0,3,2,7,8,6545,6554,6547,6530,43,6555,6556,6557,6558,0,3,2,7,8,6555,6556,6557,6558,43,6556,3754,4050,6557,0,3,2,7,8,6556,3754,4050,6557,43,6557,4050,836,839,0,3,2,7,8,6557,4050,836,839,43,6558,6557,839,844,0,3,2,7,8,6558,6557,839,844,43,6404,6559,6560,6405,0,3,2,7,8,6404,6559,6560,6405,43,6559,6555,6558,6560,0,3,2,7,8,6559,6555,6558,6560,43,6560,6558,844,875,0,3,2,7,8,6560,6558,844,875,43,6405,6560,875,873,0,3,2,7,8,6405,6560,875,873,43,5583,5582,6561,6419,0,3,2,7,8,5583,5582,6561,6419,43,5582,5581,5858,6561,0,3,2,7,8,5582,5581,5858,6561,43,6561,5858,5862,6562,0,3,2,7,8,6561,5858,5862,6562,43,6419,6561,6562,6412,0,3,2,7,8,6419,6561,6562,6412,43,5862,6563,6564,6562,0,3,2,7,8,5862,6563,6564,6562,43,6563,6555,6559,6564,0,3,2,7,8,6563,6555,6559,6564,43,6564,6559,6404,6413,0,3,2,7,8,6564,6559,6404,6413,43,6562,6564,6413,6412,0,3,2,7,8,6562,6564,6413,6412,43,3756,3755,6565,5864,0,3,2,7,8,3756,3755,6565,5864,43,3755,3754,6556,6565,0,3,2,7,8,3755,3754,6556,6565,43,6565,6556,6555,6563,0,3,2,7,8,6565,6556,6555,6563,43,5864,6565,6563,5862,0,3,2,7,8,5864,6565,6563,5862,43,6391,6442,6566,6567,0,3,2,7,8,6391,6442,6566,6567,43,6442,6399,6398,6566,0,3,2,7,8,6442,6399,6398,6566,43,6566,6398,5596,5984,0,3,2,7,8,6566,6398,5596,5984,43,6567,6566,5984,5986,0,3,2,7,8,6567,6566,5984,5986,43,6393,6392,6568,6420,0,3,2,7,8,6393,6392,6568,6420,43,6392,6391,6567,6568,0,3,2,7,8,6392,6391,6567,6568,43,6568,6567,5986,5988,0,3,2,7,8,6568,6567,5986,5988,43,6420,6568,5988,5590,0,3,2,7,8,6420,6568,5988,5590,43,6453,6464,6569,6570,0,3,2,7,8,6453,6464,6569,6570,43,6464,6463,6571,6569,0,3,2,7,8,6464,6463,6571,6569,43,6569,6571,6572,6573,0,3,2,7,8,6569,6571,6572,6573,43,6570,6569,6573,6368,0,3,2,7,8,6570,6569,6573,6368,43,6238,6454,6574,6370,0,3,2,7,8,6238,6454,6574,6370,43,6454,6453,6570,6574,0,3,2,7,8,6454,6453,6570,6574,43,6370,6574,6570,6368,0,3,2,7,8,6370,6574,6570,6368,43,1351,1355,6575,6576,0,3,2,7,8,1351,1355,6575,6576,43,1355,609,6372,6575,0,3,2,7,8,1355,609,6372,6575,43,6575,6372,6371,6577,0,3,2,7,8,6575,6372,6371,6577,43,6576,6575,6577,6578,0,3,2,7,8,6576,6575,6577,6578,43,1353,1352,6579,6426,0,3,2,7,8,1353,1352,6579,6426,43,1352,1351,6576,6579,0,3,2,7,8,1352,1351,6576,6579,43,6579,6576,6578,6580,0,3,2,7,8,6579,6576,6578,6580,43,6426,6579,6580,6424,0,3,2,7,8,6426,6579,6580,6424,43,6578,6581,6582,6580,0,3,2,7,8,6578,6581,6582,6580,43,6581,6467,6470,6582,0,3,2,7,8,6581,6467,6470,6582,43,6582,6470,6406,6425,0,3,2,7,8,6582,6470,6406,6425,43,6580,6582,6425,6424,0,3,2,7,8,6580,6582,6425,6424,43,6578,6583,6584,6581,0,3,2,7,8,6578,6583,6584,6581,43,6583,6572,6571,6584,0,3,2,7,8,6583,6572,6571,6584,43,6584,6571,6463,6477,0,3,2,7,8,6584,6571,6463,6477,43,6581,6584,6477,6467,0,3,2,7,8,6581,6584,6477,6467,43,6368,6573,6585,6384,0,3,2,7,8,6368,6573,6585,6384,43,6573,6572,6583,6585,0,3,2,7,8,6573,6572,6583,6585,43,6585,6583,6578,6577,0,3,2,7,8,6585,6583,6578,6577,43,6384,6585,6577,6371,0,3,2,7,8,6384,6585,6577,6371,43,6586,6587,6588,6589,0,3,2,7,8,6586,6587,6588,6589,43,6587,6590,6591,6588,0,3,2,7,8,6587,6590,6591,6588,43,6588,6591,6592,6593,0,3,2,7,8,6588,6591,6592,6593,43,6589,6588,6593,6594,0,3,2,7,8,6589,6588,6593,6594,43,6592,6595,6596,6593,0,3,2,7,8,6592,6595,6596,6593,43,6595,6597,6598,6596,0,3,2,7,8,6595,6597,6598,6596,43,6596,6598,6599,6600,0,3,2,7,8,6596,6598,6599,6600,43,6593,6596,6600,6594,0,3,2,7,8,6593,6596,6600,6594,43,6597,6601,6602,6598,0,3,2,7,8,6597,6601,6602,6598,43,6601,6603,6604,6602,0,3,2,7,8,6601,6603,6604,6602,43,6602,6604,6605,6606,0,3,2,7,8,6602,6604,6605,6606,43,6598,6602,6606,6599,0,3,2,7,8,6598,6602,6606,6599,43,6603,6607,6608,6604,0,3,2,7,8,6603,6607,6608,6604,43,6607,6609,6610,6608,0,3,2,7,8,6607,6609,6610,6608,43,6608,6610,6611,6612,0,3,2,7,8,6608,6610,6611,6612,43,6604,6608,6612,6605,0,3,2,7,8,6604,6608,6612,6605,43,6611,6610,6613,6614,0,3,2,7,8,6611,6610,6613,6614,43,6610,6609,6615,6613,0,3,2,7,8,6610,6609,6615,6613,43,6613,6615,6616,6617,0,3,2,7,8,6613,6615,6616,6617,43,6614,6613,6617,6618,0,3,2,7,8,6614,6613,6617,6618,43,6618,6617,6619,6620,0,3,2,7,8,6618,6617,6619,6620,43,6617,6616,6621,6619,0,3,2,7,8,6617,6616,6621,6619,43,6619,6621,6622,6623,0,3,2,7,8,6619,6621,6622,6623,43,6620,6619,6623,6624,0,3,2,7,8,6620,6619,6623,6624,43,6625,6626,6627,6628,0,3,2,7,8,6625,6626,6627,6628,43,6626,6629,6630,6627,0,3,2,7,8,6626,6629,6630,6627,43,6627,6630,6624,6623,0,3,2,7,8,6627,6630,6624,6623,43,6628,6627,6623,6622,0,3,2,7,8,6628,6627,6623,6622,43,6631,6632,6633,6634,0,3,2,7,8,6631,6632,6633,6634,43,6632,6635,6636,6633,0,3,2,7,8,6632,6635,6636,6633,43,6633,6636,6629,6626,0,3,2,7,8,6633,6636,6629,6626,43,6634,6633,6626,6625,0,3,2,7,8,6634,6633,6626,6625,43,6631,6637,6638,6632,0,3,2,7,8,6631,6637,6638,6632,43,6637,6639,6640,6638,0,3,2,7,8,6637,6639,6640,6638,43,6638,6640,6641,6642,0,3,2,7,8,6638,6640,6641,6642,43,6632,6638,6642,6635,0,3,2,7,8,6632,6638,6642,6635,43,6643,6644,6645,6646,0,3,2,7,8,6643,6644,6645,6646,43,6644,6647,6648,6645,0,3,2,7,8,6644,6647,6648,6645,43,6645,6648,6649,6650,0,3,2,7,8,6645,6648,6649,6650,43,6646,6645,6650,6651,0,3,2,7,8,6646,6645,6650,6651,43,6652,6653,6654,6655,0,3,2,7,8,6652,6653,6654,6655,43,6653,6656,6657,6654,0,3,2,7,8,6653,6656,6657,6654,43,6654,6657,6647,6644,0,3,2,7,8,6654,6657,6647,6644,43,6655,6654,6644,6643,0,3,2,7,8,6655,6654,6644,6643,43,6639,6658,6659,6640,0,3,2,7,8,6639,6658,6659,6640,43,6658,6656,6653,6659,0,3,2,7,8,6658,6656,6653,6659,43,6659,6653,6652,6660,0,3,2,7,8,6659,6653,6652,6660,43,6640,6659,6660,6641,0,3,2,7,8,6640,6659,6660,6641,43,6586,6661,6662,6587,0,3,2,7,8,6586,6661,6662,6587,43,6661,6651,6650,6662,0,3,2,7,8,6661,6651,6650,6662,43,6662,6650,6649,6663,0,3,2,7,8,6662,6650,6649,6663,43,6587,6662,6663,6590,0,3,2,7,8,6587,6662,6663,6590,43,6605,6664,6665,6606,0,3,2,7,8,6605,6664,6665,6606,43,6664,6666,6667,6665,0,3,2,7,8,6664,6666,6667,6665,43,6665,6667,6668,6669,0,3,2,7,8,6665,6667,6668,6669,43,6606,6665,6669,6599,0,3,2,7,8,6606,6665,6669,6599,43,6666,6670,6671,6667,0,3,2,7,8,6666,6670,6671,6667,43,6670,6672,6673,6671,0,3,2,7,8,6670,6672,6673,6671,43,6671,6673,6674,6675,0,3,2,7,8,6671,6673,6674,6675,43,6667,6671,6675,6668,0,3,2,7,8,6667,6671,6675,6668,43,6676,6677,6678,6679,0,3,2,7,8,6676,6677,6678,6679,43,6677,6672,6670,6678,0,3,2,7,8,6677,6672,6670,6678,43,6678,6670,6666,6680,0,3,2,7,8,6678,6670,6666,6680,43,6679,6678,6680,6681,0,3,2,7,8,6679,6678,6680,6681,43,6611,6682,6683,6612,0,3,2,7,8,6611,6682,6683,6612,43,6682,6681,6680,6683,0,3,2,7,8,6682,6681,6680,6683,43,6683,6680,6666,6664,0,3,2,7,8,6683,6680,6666,6664,43,6612,6683,6664,6605,0,3,2,7,8,6612,6683,6664,6605,43,6618,6684,6685,6614,0,3,2,7,8,6618,6684,6685,6614,43,6684,6686,6687,6685,0,3,2,7,8,6684,6686,6687,6685,43,6685,6687,6681,6682,0,3,2,7,8,6685,6687,6681,6682,43,6614,6685,6682,6611,0,3,2,7,8,6614,6685,6682,6611,43,6686,6688,6689,6687,0,3,2,7,8,6686,6688,6689,6687,43,6688,6690,6691,6689,0,3,2,7,8,6688,6690,6691,6689,43,6689,6691,6676,6679,0,3,2,7,8,6689,6691,6676,6679,43,6687,6689,6679,6681,0,3,2,7,8,6687,6689,6679,6681,43,6690,6692,6693,6691,0,3,2,7,8,6690,6692,6693,6691,43,6692,6694,6695,6693,0,3,2,7,8,6692,6694,6695,6693,43,6693,6695,6696,6697,0,3,2,7,8,6693,6695,6696,6697,43,6691,6693,6697,6676,0,3,2,7,8,6691,6693,6697,6676,43,6698,6699,6700,6701,0,3,2,7,8,6698,6699,6700,6701,43,6699,6694,6692,6700,0,3,2,7,8,6699,6694,6692,6700,43,6700,6692,6690,6688,0,3,2,7,8,6700,6692,6690,6688,43,6701,6700,6688,6686,0,3,2,7,8,6701,6700,6688,6686,43,6698,6701,6702,6703,0,3,2,7,8,6698,6701,6702,6703,43,6701,6686,6684,6702,0,3,2,7,8,6701,6686,6684,6702,43,6702,6684,6618,6620,0,3,2,7,8,6702,6684,6618,6620,43,6703,6702,6620,6624,0,3,2,7,8,6703,6702,6620,6624,43,6629,6704,6705,6630,0,3,2,7,8,6629,6704,6705,6630,43,6704,6706,6707,6705,0,3,2,7,8,6704,6706,6707,6705,43,6705,6707,6698,6703,0,3,2,7,8,6705,6707,6698,6703,43,6630,6705,6703,6624,0,3,2,7,8,6630,6705,6703,6624,43,6696,6695,6708,6709,0,3,2,7,8,6696,6695,6708,6709,43,6695,6694,6699,6708,0,3,2,7,8,6695,6694,6699,6708,43,6708,6699,6698,6707,0,3,2,7,8,6708,6699,6698,6707,43,6709,6708,6707,6706,0,3,2,7,8,6709,6708,6707,6706,43,6710,6711,6712,6713,0,3,2,7,8,6710,6711,6712,6713,43,6711,6714,6715,6712,0,3,2,7,8,6711,6714,6715,6712,43,6712,6715,6696,6709,0,3,2,7,8,6712,6715,6696,6709,43,6713,6712,6709,6706,0,3,2,7,8,6713,6712,6709,6706,43,6635,6716,6717,6636,0,3,2,7,8,6635,6716,6717,6636,43,6716,6710,6713,6717,0,3,2,7,8,6716,6710,6713,6717,43,6717,6713,6706,6704,0,3,2,7,8,6717,6713,6706,6704,43,6636,6717,6704,6629,0,3,2,7,8,6636,6717,6704,6629,43,6599,6669,6718,6600,0,3,2,7,8,6599,6669,6718,6600,43,6669,6668,6719,6718,0,3,2,7,8,6669,6668,6719,6718,43,6718,6719,6720,6721,0,3,2,7,8,6718,6719,6720,6721,43,6600,6718,6721,6594,0,3,2,7,8,6600,6718,6721,6594,43,6594,6721,6722,6589,0,3,2,7,8,6594,6721,6722,6589,43,6721,6720,6723,6722,0,3,2,7,8,6721,6720,6723,6722,43,6722,6723,6724,6725,0,3,2,7,8,6722,6723,6724,6725,43,6725,6586,6589,6722,0,3,2,7,8,6725,6586,6589,6722,43,6586,6725,6726,6661,0,3,2,7,8,6586,6725,6726,6661,43,6725,6724,6727,6726,0,3,2,7,8,6725,6724,6727,6726,43,6726,6727,6728,6729,0,3,2,7,8,6726,6727,6728,6729,43,6661,6726,6729,6651,0,3,2,7,8,6661,6726,6729,6651,43,6730,6731,6732,6733,0,3,2,7,8,6730,6731,6732,6733,43,6731,6734,6735,6732,0,3,2,7,8,6731,6734,6735,6732,43,6732,6735,6641,6660,0,3,2,7,8,6732,6735,6641,6660,43,6733,6732,6660,6652,0,3,2,7,8,6733,6732,6660,6652,43,6736,6737,6738,6739,0,3,2,7,8,6736,6737,6738,6739,43,6737,6740,6741,6738,0,3,2,7,8,6737,6740,6741,6738,43,6738,6741,6734,6731,0,3,2,7,8,6738,6741,6734,6731,43,6739,6738,6731,6730,0,3,2,7,8,6739,6738,6731,6730,43,6676,6742,6743,6744,0,3,2,7,8,6676,6742,6743,6744,43,6742,6740,6737,6743,0,3,2,7,8,6742,6740,6737,6743,43,6744,6743,6737,6736,0,3,2,7,8,6744,6743,6737,6736,43,6740,6745,6746,6741,0,3,2,7,8,6740,6745,6746,6741,43,6745,6714,6711,6746,0,3,2,7,8,6745,6714,6711,6746,43,6746,6711,6710,6747,0,3,2,7,8,6746,6711,6710,6747,43,6741,6746,6747,6734,0,3,2,7,8,6741,6746,6747,6734,43,6734,6747,6748,6735,0,3,2,7,8,6734,6747,6748,6735,43,6747,6710,6716,6748,0,3,2,7,8,6747,6710,6716,6748,43,6748,6716,6635,6642,0,3,2,7,8,6748,6716,6635,6642,43,6735,6748,6642,6641,0,3,2,7,8,6735,6748,6642,6641,43,6714,6745,6749,6750,0,3,2,7,8,6714,6745,6749,6750,43,6745,6740,6742,6749,0,3,2,7,8,6745,6740,6742,6749,43,6750,6749,6742,6676,0,3,2,7,8,6750,6749,6742,6676,43,6676,6744,6751,6677,0,3,2,7,8,6676,6744,6751,6677,43,6744,6736,6752,6751,0,3,2,7,8,6744,6736,6752,6751,43,6677,6751,6752,6672,0,3,2,7,8,6677,6751,6752,6672,43,6736,6753,6754,6752,0,3,2,7,8,6736,6753,6754,6752,43,6753,6674,6673,6754,0,3,2,7,8,6753,6674,6673,6754,43,6752,6754,6673,6672,0,3,2,7,8,6752,6754,6673,6672,43,6736,6755,6756,6753,0,3,2,7,8,6736,6755,6756,6753,43,6755,6757,6758,6756,0,3,2,7,8,6755,6757,6758,6756,43,6753,6756,6758,6674,0,3,2,7,8,6753,6756,6758,6674,43,6759,6760,6761,6762,0,3,2,7,8,6759,6760,6761,6762,43,6760,6757,6755,6761,0,3,2,7,8,6760,6757,6755,6761,43,6761,6755,6736,6739,0,3,2,7,8,6761,6755,6736,6739,43,6762,6761,6739,6730,0,3,2,7,8,6762,6761,6739,6730,43,6759,6762,6763,6764,0,3,2,7,8,6759,6762,6763,6764,43,6762,6730,6733,6763,0,3,2,7,8,6762,6730,6733,6763,43,6763,6733,6652,6655,0,3,2,7,8,6763,6733,6652,6655,43,6764,6763,6655,6643,0,3,2,7,8,6764,6763,6655,6643,43,6765,6766,6767,6768,0,3,2,7,8,6765,6766,6767,6768,43,6766,6757,6760,6767,0,3,2,7,8,6766,6757,6760,6767,43,6767,6760,6759,6769,0,3,2,7,8,6767,6760,6759,6769,43,6768,6767,6769,6728,0,3,2,7,8,6768,6767,6769,6728,43,6728,6769,6770,6729,0,3,2,7,8,6728,6769,6770,6729,43,6769,6759,6764,6770,0,3,2,7,8,6769,6759,6764,6770,43,6770,6764,6643,6646,0,3,2,7,8,6770,6764,6643,6646,43,6729,6770,6646,6651,0,3,2,7,8,6729,6770,6646,6651,43,6724,6771,6772,6727,0,3,2,7,8,6724,6771,6772,6727,43,6771,6773,6774,6772,0,3,2,7,8,6771,6773,6774,6772,43,6772,6774,6765,6768,0,3,2,7,8,6772,6774,6765,6768,43,6727,6772,6768,6728,0,3,2,7,8,6727,6772,6768,6728,43,6757,6766,6775,6758,0,3,2,7,8,6757,6766,6775,6758,43,6766,6765,6776,6775,0,3,2,7,8,6766,6765,6776,6775,43,6758,6775,6776,6674,0,3,2,7,8,6758,6775,6776,6674,43,6720,6777,6778,6723,0,3,2,7,8,6720,6777,6778,6723,43,6777,6779,6780,6778,0,3,2,7,8,6777,6779,6780,6778,43,6778,6780,6773,6771,0,3,2,7,8,6778,6780,6773,6771,43,6723,6778,6771,6724,0,3,2,7,8,6723,6778,6771,6724,43,6765,6774,6781,6776,0,3,2,7,8,6765,6774,6781,6776,43,6774,6773,6780,6781,0,3,2,7,8,6774,6773,6780,6781,43,6781,6780,6779,6782,0,3,2,7,8,6781,6780,6779,6782,43,6776,6781,6782,6674,0,3,2,7,8,6776,6781,6782,6674,43,6674,6782,6783,6675,0,3,2,7,8,6674,6782,6783,6675,43,6782,6779,6777,6783,0,3,2,7,8,6782,6779,6777,6783,43,6783,6777,6720,6719,0,3,2,7,8,6783,6777,6720,6719,43,6675,6783,6719,6668,0,3,2,7,8,6675,6783,6719,6668,43,6696,6715,6784,6697,0,3,2,7,8,6696,6715,6784,6697,43,6715,6714,6750,6784,0,3,2,7,8,6715,6714,6750,6784,43,6697,6784,6750,6676,0,3,2,7,8,6697,6784,6750,6676,43,6785,6786,6787,6788,0,3,2,7,8,6785,6786,6787,6788,43,6786,6789,6790,6787,0,3,2,7,8,6786,6789,6790,6787,43,6787,6790,6791,6792,0,3,2,7,8,6787,6790,6791,6792,43,6788,6787,6792,6793,0,3,2,7,8,6788,6787,6792,6793,43,4198,6794,6795,4200,0,3,2,7,8,4198,6794,6795,4200,43,6794,6791,6796,6795,0,3,2,7,8,6794,6791,6796,6795,43,6795,6796,6797,6798,0,3,2,7,8,6795,6796,6797,6798,43,4200,6795,6798,4202,0,3,2,7,8,4200,6795,6798,4202,43,4168,4171,6799,6800,0,3,2,7,8,4168,4171,6799,6800,43,4171,4067,6801,6799,0,3,2,7,8,4171,4067,6801,6799,43,6799,6801,6802,6803,0,3,2,7,8,6799,6801,6802,6803,43,6800,6799,6803,6804,0,3,2,7,8,6800,6799,6803,6804,43,6804,6805,6806,6800,0,3,2,7,8,6804,6805,6806,6800,43,6805,6807,6808,6806,0,3,2,7,8,6805,6807,6808,6806,43,6806,6808,4078,4169,0,3,2,7,8,6806,6808,4078,4169,43,6800,6806,4169,4168,0,3,2,7,8,6800,6806,4169,4168,43,6807,6809,6810,6808,0,3,2,7,8,6807,6809,6810,6808,43,6809,6793,6811,6810,0,3,2,7,8,6809,6793,6811,6810,43,6810,6811,4080,4079,0,3,2,7,8,6810,6811,4080,4079,43,6808,6810,4079,4078,0,3,2,7,8,6808,6810,4079,4078,43,6812,6813,6814,6815,0,3,2,7,8,6812,6813,6814,6815,43,6813,6807,6805,6814,0,3,2,7,8,6813,6807,6805,6814,43,6814,6805,6804,6816,0,3,2,7,8,6814,6805,6804,6816,43,6815,6814,6816,6817,0,3,2,7,8,6815,6814,6816,6817,43,6804,6803,6818,6816,0,3,2,7,8,6804,6803,6818,6816,43,6803,6802,6819,6818,0,3,2,7,8,6803,6802,6819,6818,43,6818,6819,6820,6821,0,3,2,7,8,6818,6819,6820,6821,43,6816,6818,6821,6817,0,3,2,7,8,6816,6818,6821,6817,43,6822,6823,6824,6825,0,3,2,7,8,6822,6823,6824,6825,43,6823,6826,6827,6824,0,3,2,7,8,6823,6826,6827,6824,43,6824,6827,6828,6829,0,3,2,7,8,6824,6827,6828,6829,43,6825,6824,6829,6830,0,3,2,7,8,6825,6824,6829,6830,43,6831,6832,6833,6834,0,3,2,7,8,6831,6832,6833,6834,43,6832,6835,6836,6833,0,3,2,7,8,6832,6835,6836,6833,43,6833,6836,6822,6837,0,3,2,7,8,6833,6836,6822,6837,43,6834,6833,6837,6838,0,3,2,7,8,6834,6833,6837,6838,43,6839,6840,6841,6842,0,3,2,7,8,6839,6840,6841,6842,43,6840,6835,6832,6841,0,3,2,7,8,6840,6835,6832,6841,43,6841,6832,6831,6843,0,3,2,7,8,6841,6832,6831,6843,43,6842,6841,6843,6844,0,3,2,7,8,6842,6841,6843,6844,43,6845,6846,6847,6848,0,3,2,7,8,6845,6846,6847,6848,43,6846,6839,6842,6847,0,3,2,7,8,6846,6839,6842,6847,43,6847,6842,6844,6849,0,3,2,7,8,6847,6842,6844,6849,43,6848,6847,6849,6850,0,3,2,7,8,6848,6847,6849,6850,43,4067,4064,6851,6801,0,3,2,7,8,4067,4064,6851,6801,43,4064,4063,6852,6851,0,3,2,7,8,4064,4063,6852,6851,43,6851,6852,6853,6854,0,3,2,7,8,6851,6852,6853,6854,43,6801,6851,6854,6802,0,3,2,7,8,6801,6851,6854,6802,43,6853,6855,6856,6857,0,3,2,7,8,6853,6855,6856,6857,43,6855,6845,6848,6856,0,3,2,7,8,6855,6845,6848,6856,43,6856,6848,6850,6858,0,3,2,7,8,6856,6848,6850,6858,43,6857,6856,6858,6859,0,3,2,7,8,6857,6856,6858,6859,43,6802,6854,6860,6819,0,3,2,7,8,6802,6854,6860,6819,43,6854,6853,6857,6860,0,3,2,7,8,6854,6853,6857,6860,43,6860,6857,6859,6861,0,3,2,7,8,6860,6857,6859,6861,43,6819,6860,6861,6820,0,3,2,7,8,6819,6860,6861,6820,43,4063,4173,6862,6852,0,3,2,7,8,4063,4173,6862,6852,43,4173,4175,6863,6862,0,3,2,7,8,4173,4175,6863,6862,43,6862,6863,6845,6855,0,3,2,7,8,6862,6863,6845,6855,43,6852,6862,6855,6853,0,3,2,7,8,6852,6862,6855,6853,43,4175,4177,6864,6863,0,3,2,7,8,4175,4177,6864,6863,43,4177,4179,6865,6864,0,3,2,7,8,4177,4179,6865,6864,43,6864,6865,6839,6846,0,3,2,7,8,6864,6865,6839,6846,43,6863,6864,6846,6845,0,3,2,7,8,6863,6864,6846,6845,43,4179,4189,6866,6865,0,3,2,7,8,4179,4189,6866,6865,43,4189,4188,6867,6866,0,3,2,7,8,4189,4188,6867,6866,43,6866,6867,6835,6840,0,3,2,7,8,6866,6867,6835,6840,43,6865,6866,6840,6839,0,3,2,7,8,6865,6866,6840,6839,43,6835,6867,6868,6836,0,3,2,7,8,6835,6867,6868,6836,43,6867,4188,6869,6868,0,3,2,7,8,6867,4188,6869,6868,43,6868,6869,6826,6823,0,3,2,7,8,6868,6869,6826,6823,43,6836,6868,6823,6822,0,3,2,7,8,6836,6868,6823,6822,43,4202,6798,6870,6871,0,3,2,7,8,4202,6798,6870,6871,43,6798,6797,6872,6870,0,3,2,7,8,6798,6797,6872,6870,43,6870,6872,6873,6874,0,3,2,7,8,6870,6872,6873,6874,43,6871,6870,6874,6875,0,3,2,7,8,6871,6870,6874,6875,43,6797,6796,6876,6877,0,3,2,7,8,6797,6796,6876,6877,43,6796,6791,6790,6876,0,3,2,7,8,6796,6791,6790,6876,43,6876,6790,6789,6878,0,3,2,7,8,6876,6790,6789,6878,43,6877,6876,6878,6879,0,3,2,7,8,6877,6876,6878,6879,43,6789,6880,6881,6878,0,3,2,7,8,6789,6880,6881,6878,43,6880,6882,6883,6881,0,3,2,7,8,6880,6882,6883,6881,43,6881,6883,6884,6885,0,3,2,7,8,6881,6883,6884,6885,43,6878,6881,6885,6879,0,3,2,7,8,6878,6881,6885,6879,43,6797,6877,6886,6872,0,3,2,7,8,6797,6877,6886,6872,43,6877,6879,6887,6886,0,3,2,7,8,6877,6879,6887,6886,43,6886,6887,6888,6889,0,3,2,7,8,6886,6887,6888,6889,43,6872,6886,6889,6873,0,3,2,7,8,6872,6886,6889,6873,43,6884,6890,6891,6885,0,3,2,7,8,6884,6890,6891,6885,43,6890,6892,6893,6891,0,3,2,7,8,6890,6892,6893,6891,43,6891,6893,6888,6887,0,3,2,7,8,6891,6893,6888,6887,43,6885,6891,6887,6879,0,3,2,7,8,6885,6891,6887,6879,43,6894,6895,6896,6897,0,3,2,7,8,6894,6895,6896,6897,43,6895,6882,6880,6896,0,3,2,7,8,6895,6882,6880,6896,43,6896,6880,6789,6786,0,3,2,7,8,6896,6880,6789,6786,43,6897,6896,6786,6785,0,3,2,7,8,6897,6896,6786,6785,43,6898,6899,6900,6901,0,3,2,7,8,6898,6899,6900,6901,43,6899,6894,6897,6900,0,3,2,7,8,6899,6894,6897,6900,43,6900,6897,6785,6902,0,3,2,7,8,6900,6897,6785,6902,43,6901,6900,6902,6903,0,3,2,7,8,6901,6900,6902,6903,43,6884,6883,6904,6905,0,3,2,7,8,6884,6883,6904,6905,43,6883,6882,6895,6904,0,3,2,7,8,6883,6882,6895,6904,43,6904,6895,6894,6906,0,3,2,7,8,6904,6895,6894,6906,43,6905,6904,6906,6907,0,3,2,7,8,6905,6904,6906,6907,43,6908,6909,6910,6911,0,3,2,7,8,6908,6909,6910,6911,43,6909,6892,6890,6910,0,3,2,7,8,6909,6892,6890,6910,43,6910,6890,6884,6905,0,3,2,7,8,6910,6890,6884,6905,43,6911,6910,6905,6907,0,3,2,7,8,6911,6910,6905,6907,43,6912,6913,6914,6915,0,3,2,7,8,6912,6913,6914,6915,43,6913,6916,6917,6914,0,3,2,7,8,6913,6916,6917,6914,43,6914,6917,6918,6919,0,3,2,7,8,6914,6917,6918,6919,43,6915,6914,6919,6920,0,3,2,7,8,6915,6914,6919,6920,43,6920,6919,6921,6922,0,3,2,7,8,6920,6919,6921,6922,43,6919,6918,6923,6921,0,3,2,7,8,6919,6918,6923,6921,43,6921,6923,6924,6925,0,3,2,7,8,6921,6923,6924,6925,43,6922,6921,6925,6926,0,3,2,7,8,6922,6921,6925,6926,43,6830,6829,6927,6928,0,3,2,7,8,6830,6829,6927,6928,43,6829,6828,6929,6927,0,3,2,7,8,6829,6828,6929,6927,43,6927,6929,6926,6925,0,3,2,7,8,6927,6929,6926,6925,43,6928,6927,6925,6924,0,3,2,7,8,6928,6927,6925,6924,43,6838,6837,6930,6931,0,3,2,7,8,6838,6837,6930,6931,43,6837,6822,6825,6930,0,3,2,7,8,6837,6822,6825,6930,43,6930,6825,6830,6932,0,3,2,7,8,6930,6825,6830,6932,43,6931,6930,6932,6933,0,3,2,7,8,6931,6930,6932,6933,43,6933,6932,6934,6935,0,3,2,7,8,6933,6932,6934,6935,43,6932,6830,6928,6934,0,3,2,7,8,6932,6830,6928,6934,43,6934,6928,6924,6936,0,3,2,7,8,6934,6928,6924,6936,43,6935,6934,6936,6937,0,3,2,7,8,6935,6934,6936,6937,43,6924,6923,6938,6936,0,3,2,7,8,6924,6923,6938,6936,43,6923,6918,6939,6938,0,3,2,7,8,6923,6918,6939,6938,43,6938,6939,6940,6941,0,3,2,7,8,6938,6939,6940,6941,43,6936,6938,6941,6937,0,3,2,7,8,6936,6938,6941,6937,43,6918,6917,6942,6939,0,3,2,7,8,6918,6917,6942,6939,43,6917,6916,6943,6942,0,3,2,7,8,6917,6916,6943,6942,43,6942,6943,6944,6945,0,3,2,7,8,6942,6943,6944,6945,43,6939,6942,6945,6940,0,3,2,7,8,6939,6942,6945,6940,43,6873,6889,6946,6947,0,3,2,7,8,6873,6889,6946,6947,43,6889,6888,6948,6946,0,3,2,7,8,6889,6888,6948,6946,43,6946,6948,6944,6943,0,3,2,7,8,6946,6948,6944,6943,43,6947,6946,6943,6916,0,3,2,7,8,6947,6946,6943,6916,43,6912,6949,6950,6913,0,3,2,7,8,6912,6949,6950,6913,43,6949,6875,6874,6950,0,3,2,7,8,6949,6875,6874,6950,43,6950,6874,6873,6947,0,3,2,7,8,6950,6874,6873,6947,43,6913,6950,6947,6916,0,3,2,7,8,6913,6950,6947,6916,43,6831,6834,6951,6952,0,3,2,7,8,6831,6834,6951,6952,43,6834,6838,6953,6951,0,3,2,7,8,6834,6838,6953,6951,43,6951,6953,6954,6955,0,3,2,7,8,6951,6953,6954,6955,43,6952,6951,6955,6956,0,3,2,7,8,6952,6951,6955,6956,43,6859,6858,6957,6958,0,3,2,7,8,6859,6858,6957,6958,43,6858,6850,6959,6957,0,3,2,7,8,6858,6850,6959,6957,43,6957,6959,6960,6961,0,3,2,7,8,6957,6959,6960,6961,43,6958,6957,6961,6962,0,3,2,7,8,6958,6957,6961,6962,43,6820,6861,6963,6964,0,3,2,7,8,6820,6861,6963,6964,43,6861,6859,6958,6963,0,3,2,7,8,6861,6859,6958,6963,43,6963,6958,6962,6965,0,3,2,7,8,6963,6958,6962,6965,43,6964,6963,6965,6966,0,3,2,7,8,6964,6963,6965,6966,43,6817,6821,6967,6968,0,3,2,7,8,6817,6821,6967,6968,43,6821,6820,6964,6967,0,3,2,7,8,6821,6820,6964,6967,43,6967,6964,6966,6969,0,3,2,7,8,6967,6964,6966,6969,43,6968,6967,6969,6970,0,3,2,7,8,6968,6967,6969,6970,43,6971,6972,6973,6974,0,3,2,7,8,6971,6972,6973,6974,43,6972,6812,6815,6973,0,3,2,7,8,6972,6812,6815,6973,43,6973,6815,6817,6968,0,3,2,7,8,6973,6815,6817,6968,43,6974,6973,6968,6970,0,3,2,7,8,6974,6973,6968,6970,43,6844,6843,6975,6976,0,3,2,7,8,6844,6843,6975,6976,43,6843,6831,6952,6975,0,3,2,7,8,6843,6831,6952,6975,43,6975,6952,6956,6977,0,3,2,7,8,6975,6952,6956,6977,43,6976,6975,6977,6978,0,3,2,7,8,6976,6975,6977,6978,43,6850,6849,6979,6959,0,3,2,7,8,6850,6849,6979,6959,43,6849,6844,6976,6979,0,3,2,7,8,6849,6844,6976,6979,43,6979,6976,6978,6980,0,3,2,7,8,6979,6976,6978,6980,43,6959,6979,6980,6960,0,3,2,7,8,6959,6979,6980,6960,43,6981,6982,6983,6984,0,3,2,7,8,6981,6982,6983,6984,43,6982,6985,6986,6983,0,3,2,7,8,6982,6985,6986,6983,43,6983,6986,6903,6987,0,3,2,7,8,6983,6986,6903,6987,43,6984,6983,6987,6988,0,3,2,7,8,6984,6983,6987,6988,43,6989,6990,6991,6992,0,3,2,7,8,6989,6990,6991,6992,43,6990,6940,6945,6991,0,3,2,7,8,6990,6940,6945,6991,43,6991,6945,6944,6993,0,3,2,7,8,6991,6945,6944,6993,43,6992,6991,6993,6994,0,3,2,7,8,6992,6991,6993,6994,43,6995,6996,6997,6998,0,3,2,7,8,6995,6996,6997,6998,43,6996,6937,6941,6997,0,3,2,7,8,6996,6937,6941,6997,43,6997,6941,6940,6990,0,3,2,7,8,6997,6941,6940,6990,43,6998,6997,6990,6989,0,3,2,7,8,6998,6997,6990,6989,43,6933,6935,6999,7000,0,3,2,7,8,6933,6935,6999,7000,43,6935,6937,6996,6999,0,3,2,7,8,6935,6937,6996,6999,43,6999,6996,6995,7001,0,3,2,7,8,6999,6996,6995,7001,43,7000,6999,7001,7002,0,3,2,7,8,7000,6999,7001,7002,43,6838,6931,7003,6953,0,3,2,7,8,6838,6931,7003,6953,43,6931,6933,7000,7003,0,3,2,7,8,6931,6933,7000,7003,43,7003,7000,7002,7004,0,3,2,7,8,7003,7000,7002,7004,43,6953,7003,7004,6954,0,3,2,7,8,6953,7003,7004,6954,43,6956,6955,7005,7006,0,3,2,7,8,6956,6955,7005,7006,43,6955,6954,7007,7005,0,3,2,7,8,6955,6954,7007,7005,43,7005,7007,6647,6657,0,3,2,7,8,7005,7007,6647,6657,43,7006,7005,6657,6656,0,3,2,7,8,7006,7005,6657,6656,43,6962,6961,7008,7009,0,3,2,7,8,6962,6961,7008,7009,43,6961,6960,7010,7008,0,3,2,7,8,6961,6960,7010,7008,43,7008,7010,6639,6637,0,3,2,7,8,7008,7010,6639,6637,43,7009,7008,6637,6631,0,3,2,7,8,7009,7008,6637,6631,43,6966,6965,7011,7012,0,3,2,7,8,6966,6965,7011,7012,43,6965,6962,7009,7011,0,3,2,7,8,6965,6962,7009,7011,43,7011,7009,6631,6634,0,3,2,7,8,7011,7009,6631,6634,43,7012,7011,6634,6625,0,3,2,7,8,7012,7011,6634,6625,43,6970,6969,7013,7014,0,3,2,7,8,6970,6969,7013,7014,43,6969,6966,7012,7013,0,3,2,7,8,6969,6966,7012,7013,43,7013,7012,6625,6628,0,3,2,7,8,7013,7012,6625,6628,43,7014,7013,6628,6622,0,3,2,7,8,7014,7013,6628,6622,43,6616,7015,7016,6621,0,3,2,7,8,6616,7015,7016,6621,43,7015,6971,6974,7016,0,3,2,7,8,7015,6971,6974,7016,43,7016,6974,6970,7014,0,3,2,7,8,7016,6974,6970,7014,43,6621,7016,7014,6622,0,3,2,7,8,6621,7016,7014,6622,43,6978,6977,7017,7018,0,3,2,7,8,6978,6977,7017,7018,43,6977,6956,7006,7017,0,3,2,7,8,6977,6956,7006,7017,43,7018,7017,7006,6656,0,3,2,7,8,7018,7017,7006,6656,43,6960,6980,7019,7010,0,3,2,7,8,6960,6980,7019,7010,43,6980,6978,7018,7019,0,3,2,7,8,6980,6978,7018,7019,43,7019,7018,6656,6658,0,3,2,7,8,7019,7018,6656,6658,43,7010,7019,6658,6639,0,3,2,7,8,7010,7019,6658,6639,43,6603,7020,7021,6607,0,3,2,7,8,6603,7020,7021,6607,43,7020,6981,6984,7021,0,3,2,7,8,7020,6981,6984,7021,43,7021,6984,6988,7022,0,3,2,7,8,7021,6984,6988,7022,43,6607,7021,7022,6609,0,3,2,7,8,6607,7021,7022,6609,43,6592,7023,7024,6595,0,3,2,7,8,6592,7023,7024,6595,43,7023,6989,6992,7024,0,3,2,7,8,7023,6989,6992,7024,43,7024,6992,6994,7025,0,3,2,7,8,7024,6992,6994,7025,43,6595,7024,7025,6597,0,3,2,7,8,6595,7024,7025,6597,43,6590,7026,7027,6591,0,3,2,7,8,6590,7026,7027,6591,43,7026,6995,6998,7027,0,3,2,7,8,7026,6995,6998,7027,43,7027,6998,6989,7023,0,3,2,7,8,7027,6998,6989,7023,43,6591,7027,7023,6592,0,3,2,7,8,6591,7027,7023,6592,43,7002,7001,7028,7029,0,3,2,7,8,7002,7001,7028,7029,43,7001,6995,7026,7028,0,3,2,7,8,7001,6995,7026,7028,43,7028,7026,6590,6663,0,3,2,7,8,7028,7026,6590,6663,43,7029,7028,6663,6649,0,3,2,7,8,7029,7028,6663,6649,43,6954,7004,7030,7007,0,3,2,7,8,6954,7004,7030,7007,43,7004,7002,7029,7030,0,3,2,7,8,7004,7002,7029,7030,43,7030,7029,6649,6648,0,3,2,7,8,7030,7029,6649,6648,43,7007,7030,6648,6647,0,3,2,7,8,7007,7030,6648,6647,43,7031,7032,7033,7034,0,3,2,7,8,7031,7032,7033,7034,43,7032,7035,7036,7033,0,3,2,7,8,7032,7035,7036,7033,43,7033,7036,6985,6982,0,3,2,7,8,7033,7036,6985,6982,43,7034,7033,6982,6981,0,3,2,7,8,7034,7033,6982,6981,43,7031,7034,7037,7038,0,3,2,7,8,7031,7034,7037,7038,43,7034,6981,7020,7037,0,3,2,7,8,7034,6981,7020,7037,43,7038,7037,7020,6603,0,3,2,7,8,7038,7037,7020,6603,43,6908,7039,7040,6909,0,3,2,7,8,6908,7039,7040,6909,43,7039,7041,7042,7040,0,3,2,7,8,7039,7041,7042,7040,43,7040,7042,6888,6893,0,3,2,7,8,7040,7042,6888,6893,43,6909,7040,6893,6892,0,3,2,7,8,6909,7040,6893,6892,43,6888,7042,7043,6948,0,3,2,7,8,6888,7042,7043,6948,43,7042,7041,7044,7043,0,3,2,7,8,7042,7041,7044,7043,43,6948,7043,7044,6944,0,3,2,7,8,6948,7043,7044,6944,43,7041,7045,7046,7044,0,3,2,7,8,7041,7045,7046,7044,43,7045,7047,7048,7046,0,3,2,7,8,7045,7047,7048,7046,43,7044,7046,7048,6944,0,3,2,7,8,7044,7046,7048,6944,43,7035,7032,7049,7050,0,3,2,7,8,7035,7032,7049,7050,43,7032,7031,7051,7049,0,3,2,7,8,7032,7031,7051,7049,43,7049,7051,7052,7053,0,3,2,7,8,7049,7051,7052,7053,43,7050,7049,7053,7047,0,3,2,7,8,7050,7049,7053,7047,43,7047,7053,7054,7048,0,3,2,7,8,7047,7053,7054,7048,43,7053,7052,7055,7054,0,3,2,7,8,7053,7052,7055,7054,43,7054,7055,6994,6993,0,3,2,7,8,7054,7055,6994,6993,43,7048,7054,6993,6944,0,3,2,7,8,7048,7054,6993,6944,43,6603,7056,7057,7038,0,3,2,7,8,6603,7056,7057,7038,43,7056,7052,7051,7057,0,3,2,7,8,7056,7052,7051,7057,43,7038,7057,7051,7031,0,3,2,7,8,7038,7057,7051,7031,43,6597,7025,7058,6601,0,3,2,7,8,6597,7025,7058,6601,43,7025,6994,7055,7058,0,3,2,7,8,7025,6994,7055,7058,43,7058,7055,7052,7056,0,3,2,7,8,7058,7055,7052,7056,43,6601,7058,7056,6603,0,3,2,7,8,6601,7058,7056,6603,43,6907,6906,7059,7060,0,3,2,7,8,6907,6906,7059,7060,43,6906,6894,6899,7059,0,3,2,7,8,6906,6894,6899,7059,43,7059,6899,6898,7061,0,3,2,7,8,7059,6899,6898,7061,43,7060,7059,7061,7062,0,3,2,7,8,7060,7059,7061,7062,43,7063,7064,7065,7066,0,3,2,7,8,7063,7064,7065,7066,43,7064,6908,6911,7065,0,3,2,7,8,7064,6908,6911,7065,43,7065,6911,6907,7060,0,3,2,7,8,7065,6911,6907,7060,43,7066,7065,7060,7062,0,3,2,7,8,7066,7065,7060,7062,43,7047,7045,7067,7068,0,3,2,7,8,7047,7045,7067,7068,43,7045,7041,7039,7067,0,3,2,7,8,7045,7041,7039,7067,43,7067,7039,6908,7064,0,3,2,7,8,7067,7039,6908,7064,43,7068,7067,7064,7063,0,3,2,7,8,7068,7067,7064,7063,43,7063,7066,7069,7070,0,3,2,7,8,7063,7066,7069,7070,43,7066,7062,7071,7069,0,3,2,7,8,7066,7062,7071,7069,43,7069,7071,6985,7036,0,3,2,7,8,7069,7071,6985,7036,43,7070,7069,7036,7035,0,3,2,7,8,7070,7069,7036,7035,43,7062,7061,7072,7071,0,3,2,7,8,7062,7061,7072,7071,43,7061,6898,6901,7072,0,3,2,7,8,7061,6898,6901,7072,43,7072,6901,6903,6986,0,3,2,7,8,7072,6901,6903,6986,43,7071,7072,6986,6985,0,3,2,7,8,7071,7072,6986,6985,43,7063,7070,7073,7068,0,3,2,7,8,7063,7070,7073,7068,43,7070,7035,7050,7073,0,3,2,7,8,7070,7035,7050,7073,43,7068,7073,7050,7047,0,3,2,7,8,7068,7073,7050,7047,43,6793,6792,7074,6811,0,3,2,7,8,6793,6792,7074,6811,43,6792,6791,6794,7074,0,3,2,7,8,6792,6791,6794,7074,43,7074,6794,4198,4196,0,3,2,7,8,7074,6794,4198,4196,43,6811,7074,4196,4080,0,3,2,7,8,6811,7074,4196,4080,43,6812,7075,7076,6813,0,3,2,7,8,6812,7075,7076,6813,43,7075,7077,7078,7076,0,3,2,7,8,7075,7077,7078,7076,43,7076,7078,6793,6809,0,3,2,7,8,7076,7078,6793,6809,43,6813,7076,6809,6807,0,3,2,7,8,6813,7076,6809,6807,43,7077,7079,7080,7078,0,3,2,7,8,7077,7079,7080,7078,43,7079,6903,6902,7080,0,3,2,7,8,7079,6903,6902,7080,43,7080,6902,6785,6788,0,3,2,7,8,7080,6902,6785,6788,43,7078,7080,6788,6793,0,3,2,7,8,7078,7080,6788,6793,43,6903,7079,7081,6987,0,3,2,7,8,6903,7079,7081,6987,43,7079,7077,7082,7081,0,3,2,7,8,7079,7077,7082,7081,43,7081,7082,7083,7084,0,3,2,7,8,7081,7082,7083,7084,43,6987,7081,7084,6988,0,3,2,7,8,6987,7081,7084,6988,43,7077,7075,7085,7082,0,3,2,7,8,7077,7075,7085,7082,43,7075,6812,6972,7085,0,3,2,7,8,7075,6812,6972,7085,43,7085,6972,6971,7086,0,3,2,7,8,7085,6972,6971,7086,43,7082,7085,7086,7083,0,3,2,7,8,7082,7085,7086,7083,43,6609,7022,7087,7088,0,3,2,7,8,6609,7022,7087,7088,43,7022,6988,7084,7087,0,3,2,7,8,7022,6988,7084,7087,43,7088,7087,7084,7083,0,3,2,7,8,7088,7087,7084,7083,43,6616,6615,7089,7015,0,3,2,7,8,6616,6615,7089,7015,43,6615,6609,7088,7089,0,3,2,7,8,6615,6609,7088,7089,43,7089,7088,7083,7086,0,3,2,7,8,7089,7088,7083,7086,43,7015,7089,7086,6971,0,3,2,7,8,7015,7089,7086,6971,43,7090,7091,7092,7093,0,3,2,7,8,7090,7091,7092,7093,43,7091,7094,7095,7092,0,3,2,7,8,7091,7094,7095,7092,43,7092,7095,7096,7097,0,3,2,7,8,7092,7095,7096,7097,43,7093,7092,7097,7098,0,3,2,7,8,7093,7092,7097,7098,43,7094,7099,7100,7095,0,3,2,7,8,7094,7099,7100,7095,43,7099,7101,7102,7100,0,3,2,7,8,7099,7101,7102,7100,43,7100,7102,7103,7104,0,3,2,7,8,7100,7102,7103,7104,43,7095,7100,7104,7096,0,3,2,7,8,7095,7100,7104,7096,43,7101,7105,7106,7102,0,3,2,7,8,7101,7105,7106,7102,43,7105,7107,7108,7106,0,3,2,7,8,7105,7107,7108,7106,43,7106,7108,7109,7110,0,3,2,7,8,7106,7108,7109,7110,43,7102,7106,7110,7103,0,3,2,7,8,7102,7106,7110,7103,43,7107,7111,7112,7108,0,3,2,7,8,7107,7111,7112,7108,43,7111,7113,7114,7112,0,3,2,7,8,7111,7113,7114,7112,43,7112,7114,7115,7116,0,3,2,7,8,7112,7114,7115,7116,43,7108,7112,7116,7109,0,3,2,7,8,7108,7112,7116,7109,43,7117,7118,7119,7120,0,3,2,7,8,7117,7118,7119,7120,43,7118,7121,7122,7119,0,3,2,7,8,7118,7121,7122,7119,43,7119,7122,7115,7114,0,3,2,7,8,7119,7122,7115,7114,43,7120,7119,7114,7113,0,3,2,7,8,7120,7119,7114,7113,43,7117,7123,7124,7118,0,3,2,7,8,7117,7123,7124,7118,43,7123,7125,7126,7124,0,3,2,7,8,7123,7125,7126,7124,43,7124,7126,7127,7128,0,3,2,7,8,7124,7126,7127,7128,43,7118,7124,7128,7121,0,3,2,7,8,7118,7124,7128,7121,43,7129,7130,7131,7132,0,3,2,7,8,7129,7130,7131,7132,43,7130,7133,7134,7131,0,3,2,7,8,7130,7133,7134,7131,43,7131,7134,7115,7122,0,3,2,7,8,7131,7134,7115,7122,43,7132,7131,7122,7121,0,3,2,7,8,7132,7131,7122,7121,43,7127,7135,7136,7128,0,3,2,7,8,7127,7135,7136,7128,43,7135,7137,7138,7136,0,3,2,7,8,7135,7137,7138,7136,43,7136,7138,7129,7132,0,3,2,7,8,7136,7138,7129,7132,43,7128,7136,7132,7121,0,3,2,7,8,7128,7136,7132,7121,43,7139,7140,7141,7142,0,3,2,7,8,7139,7140,7141,7142,43,7140,7143,7144,7141,0,3,2,7,8,7140,7143,7144,7141,43,7141,7144,7117,7120,0,3,2,7,8,7141,7144,7117,7120,43,7142,7141,7120,7113,0,3,2,7,8,7142,7141,7120,7113,43,7145,7146,7147,7148,0,3,2,7,8,7145,7146,7147,7148,43,7146,7139,7142,7147,0,3,2,7,8,7146,7139,7142,7147,43,7147,7142,7113,7111,0,3,2,7,8,7147,7142,7113,7111,43,7148,7147,7111,7107,0,3,2,7,8,7148,7147,7111,7107,43,7109,7116,7149,7150,0,3,2,7,8,7109,7116,7149,7150,43,7116,7115,7134,7149,0,3,2,7,8,7116,7115,7134,7149,43,7149,7134,7133,7151,0,3,2,7,8,7149,7134,7133,7151,43,7150,7149,7151,7152,0,3,2,7,8,7150,7149,7151,7152,43,7152,7153,7154,7150,0,3,2,7,8,7152,7153,7154,7150,43,7153,7155,7156,7154,0,3,2,7,8,7153,7155,7156,7154,43,7154,7156,7103,7110,0,3,2,7,8,7154,7156,7103,7110,43,7150,7154,7110,7109,0,3,2,7,8,7150,7154,7110,7109,43,7157,7158,7159,7160,0,3,2,7,8,7157,7158,7159,7160,43,7158,7155,7153,7159,0,3,2,7,8,7158,7155,7153,7159,43,7159,7153,7152,7161,0,3,2,7,8,7159,7153,7152,7161,43,7160,7159,7161,7162,0,3,2,7,8,7160,7159,7161,7162,43,7152,7151,7163,7161,0,3,2,7,8,7152,7151,7163,7161,43,7151,7133,7130,7163,0,3,2,7,8,7151,7133,7130,7163,43,7163,7130,7129,7164,0,3,2,7,8,7163,7130,7129,7164,43,7161,7163,7164,7162,0,3,2,7,8,7161,7163,7164,7162,43,7165,7166,7167,7168,0,3,2,7,8,7165,7166,7167,7168,43,7166,7145,7148,7167,0,3,2,7,8,7166,7145,7148,7167,43,7167,7148,7107,7105,0,3,2,7,8,7167,7148,7107,7105,43,7168,7167,7105,7101,0,3,2,7,8,7168,7167,7105,7101,43,7169,7170,7171,7172,0,3,2,7,8,7169,7170,7171,7172,43,7170,7173,7174,7171,0,3,2,7,8,7170,7173,7174,7171,43,7171,7174,7145,7166,0,3,2,7,8,7171,7174,7145,7166,43,7172,7171,7166,7165,0,3,2,7,8,7172,7171,7166,7165,43,7173,7175,7176,7174,0,3,2,7,8,7173,7175,7176,7174,43,7175,7177,7178,7176,0,3,2,7,8,7175,7177,7178,7176,43,7176,7178,7139,7146,0,3,2,7,8,7176,7178,7139,7146,43,7174,7176,7146,7145,0,3,2,7,8,7174,7176,7146,7145,43,7179,7180,7181,7182,0,3,2,7,8,7179,7180,7181,7182,43,7180,7169,7172,7181,0,3,2,7,8,7180,7169,7172,7181,43,7181,7172,7165,7183,0,3,2,7,8,7181,7172,7165,7183,43,7182,7181,7183,7184,0,3,2,7,8,7182,7181,7183,7184,43,7185,7186,7187,7188,0,3,2,7,8,7185,7186,7187,7188,43,7186,7189,7190,7187,0,3,2,7,8,7186,7189,7190,7187,43,7187,7190,7179,7182,0,3,2,7,8,7187,7190,7179,7182,43,7188,7187,7182,7184,0,3,2,7,8,7188,7187,7182,7184,43,7185,7188,7191,7192,0,3,2,7,8,7185,7188,7191,7192,43,7188,7184,7193,7191,0,3,2,7,8,7188,7184,7193,7191,43,7191,7193,7094,7091,0,3,2,7,8,7191,7193,7094,7091,43,7192,7191,7091,7090,0,3,2,7,8,7192,7191,7091,7090,43,7184,7183,7194,7193,0,3,2,7,8,7184,7183,7194,7193,43,7183,7165,7168,7194,0,3,2,7,8,7183,7165,7168,7194,43,7194,7168,7101,7099,0,3,2,7,8,7194,7168,7101,7099,43,7193,7194,7099,7094,0,3,2,7,8,7193,7194,7099,7094,43,7103,7156,7195,7104,0,3,2,7,8,7103,7156,7195,7104,43,7156,7155,7158,7195,0,3,2,7,8,7156,7155,7158,7195,43,7195,7158,7157,7196,0,3,2,7,8,7195,7158,7157,7196,43,7104,7195,7196,7096,0,3,2,7,8,7104,7195,7196,7096,43,7096,7196,7197,7097,0,3,2,7,8,7096,7196,7197,7097,43,7196,7157,7198,7197,0,3,2,7,8,7196,7157,7198,7197,43,7197,7198,7199,7200,0,3,2,7,8,7197,7198,7199,7200,43,7097,7197,7200,7098,0,3,2,7,8,7097,7197,7200,7098,43,7199,7198,7201,7202,0,3,2,7,8,7199,7198,7201,7202,43,7198,7157,7160,7201,0,3,2,7,8,7198,7157,7160,7201,43,7202,7201,7160,7162,0,3,2,7,8,7202,7201,7160,7162,43,7203,7204,7205,7206,0,3,2,7,8,7203,7204,7205,7206,43,7204,7207,7208,7205,0,3,2,7,8,7204,7207,7208,7205,43,7205,7208,7209,7210,0,3,2,7,8,7205,7208,7209,7210,43,7206,7205,7210,7211,0,3,2,7,8,7206,7205,7210,7211,43,7212,7213,7214,7215,0,3,2,7,8,7212,7213,7214,7215,43,7213,7207,7204,7214,0,3,2,7,8,7213,7207,7204,7214,43,7215,7214,7204,7203,0,3,2,7,8,7215,7214,7204,7203,43,7216,7217,7218,7219,0,3,2,7,8,7216,7217,7218,7219,43,7217,7220,7221,7218,0,3,2,7,8,7217,7220,7221,7218,43,7218,7221,7222,7223,0,3,2,7,8,7218,7221,7222,7223,43,7219,7218,7223,7224,0,3,2,7,8,7219,7218,7223,7224,43,7225,7226,7227,7228,0,3,2,7,8,7225,7226,7227,7228,43,7226,7224,7223,7227,0,3,2,7,8,7226,7224,7223,7227,43,7227,7223,7222,7229,0,3,2,7,8,7227,7223,7222,7229,43,7228,7227,7229,7230,0,3,2,7,8,7228,7227,7229,7230,43,7209,7231,7232,7210,0,3,2,7,8,7209,7231,7232,7210,43,7231,7225,7228,7232,0,3,2,7,8,7231,7225,7228,7232,43,7232,7228,7230,7233,0,3,2,7,8,7232,7228,7230,7233,43,7210,7232,7233,7211,0,3,2,7,8,7210,7232,7233,7211,43,7234,7235,7236,7237,0,3,2,7,8,7234,7235,7236,7237,43,7235,7238,7239,7236,0,3,2,7,8,7235,7238,7239,7236,43,7236,7239,7240,7241,0,3,2,7,8,7236,7239,7240,7241,43,7237,7236,7241,7242,0,3,2,7,8,7237,7236,7241,7242,43,7242,7241,7243,7244,0,3,2,7,8,7242,7241,7243,7244,43,7241,7240,7245,7243,0,3,2,7,8,7241,7240,7245,7243,43,7243,7245,7246,7247,0,3,2,7,8,7243,7245,7246,7247,43,7244,7243,7247,7248,0,3,2,7,8,7244,7243,7247,7248,43,7129,7138,7249,7164,0,3,2,7,8,7129,7138,7249,7164,43,7138,7137,7250,7249,0,3,2,7,8,7138,7137,7250,7249,43,7249,7250,7212,7251,0,3,2,7,8,7249,7250,7212,7251,43,7164,7249,7251,7162,0,3,2,7,8,7164,7249,7251,7162,43,7212,7252,7253,7213,0,3,2,7,8,7212,7252,7253,7213,43,7252,7254,7255,7253,0,3,2,7,8,7252,7254,7255,7253,43,7213,7253,7255,7207,0,3,2,7,8,7213,7253,7255,7207,43,7207,7255,7256,7208,0,3,2,7,8,7207,7255,7256,7208,43,7255,7254,7257,7256,0,3,2,7,8,7255,7254,7257,7256,43,7256,7257,7258,7259,0,3,2,7,8,7256,7257,7258,7259,43,7208,7256,7259,7209,0,3,2,7,8,7208,7256,7259,7209,43,7258,7260,7261,7259,0,3,2,7,8,7258,7260,7261,7259,43,7260,7262,7263,7261,0,3,2,7,8,7260,7262,7263,7261,43,7261,7263,7225,7231,0,3,2,7,8,7261,7263,7225,7231,43,7259,7261,7231,7209,0,3,2,7,8,7259,7261,7231,7209,43,7264,7265,7266,7267,0,3,2,7,8,7264,7265,7266,7267,43,7265,7224,7226,7266,0,3,2,7,8,7265,7224,7226,7266,43,7266,7226,7225,7263,0,3,2,7,8,7266,7226,7225,7263,43,7267,7266,7263,7262,0,3,2,7,8,7267,7266,7263,7262,43,7268,7269,7270,7271,0,3,2,7,8,7268,7269,7270,7271,43,7269,7216,7219,7270,0,3,2,7,8,7269,7216,7219,7270,43,7270,7219,7224,7265,0,3,2,7,8,7270,7219,7224,7265,43,7271,7270,7265,7264,0,3,2,7,8,7271,7270,7265,7264,43,7272,7273,7274,7275,0,3,2,7,8,7272,7273,7274,7275,43,7273,7268,7271,7274,0,3,2,7,8,7273,7268,7271,7274,43,7274,7271,7264,7276,0,3,2,7,8,7274,7271,7264,7276,43,7275,7274,7276,7277,0,3,2,7,8,7275,7274,7276,7277,43,7272,7275,7278,7279,0,3,2,7,8,7272,7275,7278,7279,43,7275,7277,7280,7278,0,3,2,7,8,7275,7277,7280,7278,43,7278,7280,7248,7247,0,3,2,7,8,7278,7280,7248,7247,43,7279,7278,7247,7246,0,3,2,7,8,7279,7278,7247,7246,43,7281,7282,7283,7284,0,3,2,7,8,7281,7282,7283,7284,43,7282,7248,7280,7283,0,3,2,7,8,7282,7248,7280,7283,43,7283,7280,7277,7285,0,3,2,7,8,7283,7280,7277,7285,43,7284,7283,7285,7286,0,3,2,7,8,7284,7283,7285,7286,43,7277,7276,7287,7285,0,3,2,7,8,7277,7276,7287,7285,43,7276,7264,7267,7287,0,3,2,7,8,7276,7264,7267,7287,43,7287,7267,7262,7288,0,3,2,7,8,7287,7267,7262,7288,43,7285,7287,7288,7286,0,3,2,7,8,7285,7287,7288,7286,43,7289,7290,7291,7292,0,3,2,7,8,7289,7290,7291,7292,43,7290,7281,7284,7291,0,3,2,7,8,7290,7281,7284,7291,43,7291,7284,7286,7293,0,3,2,7,8,7291,7284,7286,7293,43,7292,7291,7293,7294,0,3,2,7,8,7292,7291,7293,7294,43,7294,7293,7295,7296,0,3,2,7,8,7294,7293,7295,7296,43,7293,7286,7288,7295,0,3,2,7,8,7293,7286,7288,7295,43,7295,7288,7262,7260,0,3,2,7,8,7295,7288,7262,7260,43,7296,7295,7260,7258,0,3,2,7,8,7296,7295,7260,7258,43,7294,7297,7298,7292,0,3,2,7,8,7294,7297,7298,7292,43,7297,7299,7300,7298,0,3,2,7,8,7297,7299,7300,7298,43,7298,7300,7301,7302,0,3,2,7,8,7298,7300,7301,7302,43,7292,7298,7302,7289,0,3,2,7,8,7292,7298,7302,7289,43,7299,7297,7303,7304,0,3,2,7,8,7299,7297,7303,7304,43,7297,7294,7296,7303,0,3,2,7,8,7297,7294,7296,7303,43,7303,7296,7258,7257,0,3,2,7,8,7303,7296,7258,7257,43,7304,7303,7257,7254,0,3,2,7,8,7304,7303,7257,7254,43,7301,7300,7305,7306,0,3,2,7,8,7301,7300,7305,7306,43,7300,7299,7304,7305,0,3,2,7,8,7300,7299,7304,7305,43,7305,7304,7254,7252,0,3,2,7,8,7305,7304,7254,7252,43,7306,7305,7252,7212,0,3,2,7,8,7306,7305,7252,7212,43,7307,7308,7309,7310,0,3,2,7,8,7307,7308,7309,7310,43,7308,7311,7312,7309,0,3,2,7,8,7308,7311,7312,7309,43,7309,7312,7289,7302,0,3,2,7,8,7309,7312,7289,7302,43,7310,7309,7302,7301,0,3,2,7,8,7310,7309,7302,7301,43,7311,7308,7313,7314,0,3,2,7,8,7311,7308,7313,7314,43,7308,7307,7315,7313,0,3,2,7,8,7308,7307,7315,7313,43,7313,7315,7137,7135,0,3,2,7,8,7313,7315,7137,7135,43,7314,7313,7135,7127,0,3,2,7,8,7314,7313,7135,7127,43,7137,7315,7316,7250,0,3,2,7,8,7137,7315,7316,7250,43,7315,7307,7310,7316,0,3,2,7,8,7315,7307,7310,7316,43,7316,7310,7301,7306,0,3,2,7,8,7316,7310,7301,7306,43,7250,7316,7306,7212,0,3,2,7,8,7250,7316,7306,7212,43,7311,7317,7318,7312,0,3,2,7,8,7311,7317,7318,7312,43,7317,7319,7320,7318,0,3,2,7,8,7317,7319,7320,7318,43,7318,7320,7281,7290,0,3,2,7,8,7318,7320,7281,7290,43,7312,7318,7290,7289,0,3,2,7,8,7312,7318,7290,7289,43,7319,7321,7322,7320,0,3,2,7,8,7319,7321,7322,7320,43,7321,7242,7244,7322,0,3,2,7,8,7321,7242,7244,7322,43,7322,7244,7248,7282,0,3,2,7,8,7322,7244,7248,7282,43,7320,7322,7282,7281,0,3,2,7,8,7320,7322,7282,7281,43,7125,7323,7324,7325,0,3,2,7,8,7125,7323,7324,7325,43,7323,7234,7237,7324,0,3,2,7,8,7323,7234,7237,7324,43,7324,7237,7242,7321,0,3,2,7,8,7324,7237,7242,7321,43,7325,7324,7321,7319,0,3,2,7,8,7325,7324,7321,7319,43,7177,7326,7327,7178,0,3,2,7,8,7177,7326,7327,7178,43,7326,7328,7329,7327,0,3,2,7,8,7326,7328,7329,7327,43,7327,7329,7143,7140,0,3,2,7,8,7327,7329,7143,7140,43,7178,7327,7140,7139,0,3,2,7,8,7178,7327,7140,7139,43,7143,7329,7330,7331,0,3,2,7,8,7143,7329,7330,7331,43,7329,7328,7332,7330,0,3,2,7,8,7329,7328,7332,7330,43,7330,7332,7238,7235,0,3,2,7,8,7330,7332,7238,7235,43,7331,7330,7235,7234,0,3,2,7,8,7331,7330,7235,7234,43,7143,7331,7333,7144,0,3,2,7,8,7143,7331,7333,7144,43,7331,7234,7323,7333,0,3,2,7,8,7331,7234,7323,7333,43,7333,7323,7125,7123,0,3,2,7,8,7333,7323,7125,7123,43,7144,7333,7123,7117,0,3,2,7,8,7144,7333,7123,7117,43,7127,7126,7334,7314,0,3,2,7,8,7127,7126,7334,7314,43,7126,7125,7325,7334,0,3,2,7,8,7126,7125,7325,7334,43,7334,7325,7319,7317,0,3,2,7,8,7334,7325,7319,7317,43,7314,7334,7317,7311,0,3,2,7,8,7314,7334,7317,7311,43,4462,4461,7335,7336,0,3,2,7,8,4462,4461,7335,7336,43,4461,4440,7337,7335,0,3,2,7,8,4461,4440,7337,7335,43,7335,7337,7179,7190,0,3,2,7,8,7335,7337,7179,7190,43,7336,7335,7190,7189,0,3,2,7,8,7336,7335,7190,7189,43,7179,7337,7338,7180,0,3,2,7,8,7179,7337,7338,7180,43,7337,4440,4439,7338,0,3,2,7,8,7337,4440,4439,7338,43,7338,4439,4438,7339,0,3,2,7,8,7338,4439,4438,7339,43,7180,7338,7339,7169,0,3,2,7,8,7180,7338,7339,7169,43,7169,7339,7340,7170,0,3,2,7,8,7169,7339,7340,7170,43,7339,4438,4468,7340,0,3,2,7,8,7339,4438,4468,7340,43,7340,4468,4466,7341,0,3,2,7,8,7340,4468,4466,7341,43,7170,7340,7341,7173,0,3,2,7,8,7170,7340,7341,7173,43,4466,4465,7342,7341,0,3,2,7,8,4466,4465,7342,7341,43,4465,4394,7343,7342,0,3,2,7,8,4465,4394,7343,7342,43,7342,7343,7177,7175,0,3,2,7,8,7342,7343,7177,7175,43,7341,7342,7175,7173,0,3,2,7,8,7341,7342,7175,7173,43,4394,4393,7344,7343,0,3,2,7,8,4394,4393,7344,7343,43,4393,4381,7345,7344,0,3,2,7,8,4393,4381,7345,7344,43,7344,7345,7328,7326,0,3,2,7,8,7344,7345,7328,7326,43,7343,7344,7326,7177,0,3,2,7,8,7343,7344,7326,7177,43,4381,4384,7346,7345,0,3,2,7,8,4381,4384,7346,7345,43,4384,4388,7347,7346,0,3,2,7,8,4384,4388,7347,7346,43,7346,7347,7238,7332,0,3,2,7,8,7346,7347,7238,7332,43,7345,7346,7332,7328,0,3,2,7,8,7345,7346,7332,7328,43,4388,4613,7348,7347,0,3,2,7,8,4388,4613,7348,7347,43,4613,4615,7349,7348,0,3,2,7,8,4613,4615,7349,7348,43,7348,7349,7240,7239,0,3,2,7,8,7348,7349,7240,7239,43,7347,7348,7239,7238,0,3,2,7,8,7347,7348,7239,7238,43,4615,4618,7350,7349,0,3,2,7,8,4615,4618,7350,7349,43,4618,4609,7351,7350,0,3,2,7,8,4618,4609,7351,7350,43,7350,7351,7246,7245,0,3,2,7,8,7350,7351,7246,7245,43,7349,7350,7245,7240,0,3,2,7,8,7349,7350,7245,7240,43,7246,7351,7352,7279,0,3,2,7,8,7246,7351,7352,7279,43,7351,4609,4608,7352,0,3,2,7,8,7351,4609,4608,7352,43,7352,4608,4597,7353,0,3,2,7,8,7352,4608,4597,7353,43,7279,7352,7353,7272,0,3,2,7,8,7279,7352,7353,7272,43,4597,4600,7354,7353,0,3,2,7,8,4597,4600,7354,7353,43,4600,4553,7355,7354,0,3,2,7,8,4600,4553,7355,7354,43,7354,7355,7268,7273,0,3,2,7,8,7354,7355,7268,7273,43,7353,7354,7273,7272,0,3,2,7,8,7353,7354,7273,7272,43,4553,4556,7356,7355,0,3,2,7,8,4553,4556,7356,7355,43,4556,4561,7357,7356,0,3,2,7,8,4556,4561,7357,7356,43,7356,7357,7216,7269,0,3,2,7,8,7356,7357,7216,7269,43,7355,7356,7269,7268,0,3,2,7,8,7355,7356,7269,7268,43,7216,7357,7358,7217,0,3,2,7,8,7216,7357,7358,7217,43,7357,4561,4563,7358,0,3,2,7,8,7357,4561,4563,7358,43,7358,4563,4567,7359,0,3,2,7,8,7358,4563,4567,7359,43,7217,7358,7359,7220,0,3,2,7,8,7217,7358,7359,7220,43,7360,7361,7362,7363,0,3,2,7,8,7360,7361,7362,7363,43,7361,7364,7365,7362,0,3,2,7,8,7361,7364,7365,7362,43,7362,7365,7366,7367,0,3,2,7,8,7362,7365,7366,7367,43,7363,7362,7367,7368,0,3,2,7,8,7363,7362,7367,7368,43,7369,7370,7371,7372,0,3,2,7,8,7369,7370,7371,7372,43,7370,7373,7374,7371,0,3,2,7,8,7370,7373,7374,7371,43,7371,7374,7360,7363,0,3,2,7,8,7371,7374,7360,7363,43,7372,7371,7363,7368,0,3,2,7,8,7372,7371,7363,7368,43,7375,7376,7377,7378,0,3,2,7,8,7375,7376,7377,7378,43,7376,7379,7380,7377,0,3,2,7,8,7376,7379,7380,7377,43,7377,7380,7373,7370,0,3,2,7,8,7377,7380,7373,7370,43,7378,7377,7370,7369,0,3,2,7,8,7378,7377,7370,7369,43,7381,7382,7383,7384,0,3,2,7,8,7381,7382,7383,7384,43,7382,7385,7386,7383,0,3,2,7,8,7382,7385,7386,7383,43,7383,7386,7379,7376,0,3,2,7,8,7383,7386,7379,7376,43,7384,7383,7376,7375,0,3,2,7,8,7384,7383,7376,7375,43,7387,7388,7389,7390,0,3,2,7,8,7387,7388,7389,7390,43,7388,7385,7382,7389,0,3,2,7,8,7388,7385,7382,7389,43,7389,7382,7381,7391,0,3,2,7,8,7389,7382,7381,7391,43,7390,7389,7391,7392,0,3,2,7,8,7390,7389,7391,7392,43,7393,7394,7395,7396,0,3,2,7,8,7393,7394,7395,7396,43,7394,7387,7390,7395,0,3,2,7,8,7394,7387,7390,7395,43,7395,7390,7392,7397,0,3,2,7,8,7395,7390,7392,7397,43,7396,7395,7397,7398,0,3,2,7,8,7396,7395,7397,7398,43,7398,7399,7400,7396,0,3,2,7,8,7398,7399,7400,7396,43,7399,7401,7402,7400,0,3,2,7,8,7399,7401,7402,7400,43,7400,7402,7403,7404,0,3,2,7,8,7400,7402,7403,7404,43,7396,7400,7404,7393,0,3,2,7,8,7396,7400,7404,7393,43,7401,7405,7406,7402,0,3,2,7,8,7401,7405,7406,7402,43,7405,7407,7408,7406,0,3,2,7,8,7405,7407,7408,7406,43,7406,7408,7409,7410,0,3,2,7,8,7406,7408,7409,7410,43,7402,7406,7410,7403,0,3,2,7,8,7402,7406,7410,7403,43,7411,7412,7413,7414,0,3,2,7,8,7411,7412,7413,7414,43,7412,7415,7416,7413,0,3,2,7,8,7412,7415,7416,7413,43,7413,7416,7409,7408,0,3,2,7,8,7413,7416,7409,7408,43,7414,7413,7408,7407,0,3,2,7,8,7414,7413,7408,7407,43,7417,7418,7419,7420,0,3,2,7,8,7417,7418,7419,7420,43,7418,7421,7422,7419,0,3,2,7,8,7418,7421,7422,7419,43,7419,7422,7423,7424,0,3,2,7,8,7419,7422,7423,7424,43,7420,7419,7424,7425,0,3,2,7,8,7420,7419,7424,7425,43,7421,7426,7427,7422,0,3,2,7,8,7421,7426,7427,7422,43,7426,7428,7429,7427,0,3,2,7,8,7426,7428,7429,7427,43,7427,7429,7430,7431,0,3,2,7,8,7427,7429,7430,7431,43,7422,7427,7431,7423,0,3,2,7,8,7422,7427,7431,7423,43,7430,7429,7432,7433,0,3,2,7,8,7430,7429,7432,7433,43,7429,7428,7434,7432,0,3,2,7,8,7429,7428,7434,7432,43,7432,7434,7415,7412,0,3,2,7,8,7432,7434,7415,7412,43,7433,7432,7412,7411,0,3,2,7,8,7433,7432,7412,7411,43,7417,7420,7435,7436,0,3,2,7,8,7417,7420,7435,7436,43,7420,7425,7437,7435,0,3,2,7,8,7420,7425,7437,7435,43,7435,7437,7366,7365,0,3,2,7,8,7435,7437,7366,7365,43,7436,7435,7365,7364,0,3,2,7,8,7436,7435,7365,7364,43,7438,7439,7440,7441,0,3,2,7,8,7438,7439,7440,7441,43,7439,7442,7443,7440,0,3,2,7,8,7439,7442,7443,7440,43,7440,7443,7375,7378,0,3,2,7,8,7440,7443,7375,7378,43,7441,7440,7378,7369,0,3,2,7,8,7441,7440,7378,7369,43,7444,7445,7446,7447,0,3,2,7,8,7444,7445,7446,7447,43,7445,7448,7449,7446,0,3,2,7,8,7445,7448,7449,7446,43,7446,7449,7442,7439,0,3,2,7,8,7446,7449,7442,7439,43,7447,7446,7439,7438,0,3,2,7,8,7447,7446,7439,7438,43,7442,7449,7450,7451,0,3,2,7,8,7442,7449,7450,7451,43,7449,7448,7452,7450,0,3,2,7,8,7449,7448,7452,7450,43,7450,7452,7453,7454,0,3,2,7,8,7450,7452,7453,7454,43,7451,7450,7454,7455,0,3,2,7,8,7451,7450,7454,7455,43,7442,7451,7456,7443,0,3,2,7,8,7442,7451,7456,7443,43,7451,7455,7457,7456,0,3,2,7,8,7451,7455,7457,7456,43,7456,7457,7381,7384,0,3,2,7,8,7456,7457,7381,7384,43,7443,7456,7384,7375,0,3,2,7,8,7443,7456,7384,7375,43,7455,7458,7459,7457,0,3,2,7,8,7455,7458,7459,7457,43,7458,7460,7461,7459,0,3,2,7,8,7458,7460,7461,7459,43,7459,7461,7392,7391,0,3,2,7,8,7459,7461,7392,7391,43,7457,7459,7391,7381,0,3,2,7,8,7457,7459,7391,7381,43,7453,7462,7463,7454,0,3,2,7,8,7453,7462,7463,7454,43,7462,7464,7465,7463,0,3,2,7,8,7462,7464,7465,7463,43,7463,7465,7460,7458,0,3,2,7,8,7463,7465,7460,7458,43,7454,7463,7458,7455,0,3,2,7,8,7454,7463,7458,7455,43,7466,7467,7468,7469,0,3,2,7,8,7466,7467,7468,7469,43,7467,7470,7471,7468,0,3,2,7,8,7467,7470,7471,7468,43,7468,7471,7464,7462,0,3,2,7,8,7468,7471,7464,7462,43,7469,7468,7462,7453,0,3,2,7,8,7469,7468,7462,7453,43,7464,7471,7472,7465,0,3,2,7,8,7464,7471,7472,7465,43,7471,7470,7473,7472,0,3,2,7,8,7471,7470,7473,7472,43,7472,7473,7474,7475,0,3,2,7,8,7472,7473,7474,7475,43,7465,7472,7475,7460,0,3,2,7,8,7465,7472,7475,7460,43,7392,7461,7476,7397,0,3,2,7,8,7392,7461,7476,7397,43,7461,7460,7475,7476,0,3,2,7,8,7461,7460,7475,7476,43,7476,7475,7474,7477,0,3,2,7,8,7476,7475,7474,7477,43,7397,7476,7477,7398,0,3,2,7,8,7397,7476,7477,7398,43,7474,7478,7479,7477,0,3,2,7,8,7474,7478,7479,7477,43,7478,7480,7481,7479,0,3,2,7,8,7478,7480,7481,7479,43,7479,7481,7401,7399,0,3,2,7,8,7479,7481,7401,7399,43,7477,7479,7399,7398,0,3,2,7,8,7477,7479,7399,7398,43,7474,7473,7482,7478,0,3,2,7,8,7474,7473,7482,7478,43,7473,7470,7467,7482,0,3,2,7,8,7473,7470,7467,7482,43,7482,7467,7466,7483,0,3,2,7,8,7482,7467,7466,7483,43,7478,7482,7483,7480,0,3,2,7,8,7478,7482,7483,7480,43,7466,7484,7485,7483,0,3,2,7,8,7466,7484,7485,7483,43,7484,7486,7487,7485,0,3,2,7,8,7484,7486,7487,7485,43,7485,7487,7488,7489,0,3,2,7,8,7485,7487,7488,7489,43,7483,7485,7489,7480,0,3,2,7,8,7483,7485,7489,7480,43,7480,7489,7490,7481,0,3,2,7,8,7480,7489,7490,7481,43,7489,7488,7491,7490,0,3,2,7,8,7489,7488,7491,7490,43,7490,7491,7407,7405,0,3,2,7,8,7490,7491,7407,7405,43,7481,7490,7405,7401,0,3,2,7,8,7481,7490,7405,7401,43,7492,7493,7494,7495,0,3,2,7,8,7492,7493,7494,7495,43,7493,7438,7441,7494,0,3,2,7,8,7493,7438,7441,7494,43,7494,7441,7369,7372,0,3,2,7,8,7494,7441,7369,7372,43,7495,7494,7372,7368,0,3,2,7,8,7495,7494,7372,7368,43,7496,7497,7498,7499,0,3,2,7,8,7496,7497,7498,7499,43,7497,7492,7495,7498,0,3,2,7,8,7497,7492,7495,7498,43,7498,7495,7368,7367,0,3,2,7,8,7498,7495,7368,7367,43,7499,7498,7367,7366,0,3,2,7,8,7499,7498,7367,7366,43,7500,7501,7502,7503,0,3,2,7,8,7500,7501,7502,7503,43,7501,7496,7499,7502,0,3,2,7,8,7501,7496,7499,7502,43,7502,7499,7366,7437,0,3,2,7,8,7502,7499,7366,7437,43,7503,7502,7437,7425,0,3,2,7,8,7503,7502,7437,7425,43,7411,7504,7505,7433,0,3,2,7,8,7411,7504,7505,7433,43,7504,7506,7507,7505,0,3,2,7,8,7504,7506,7507,7505,43,7505,7507,7508,7509,0,3,2,7,8,7505,7507,7508,7509,43,7433,7505,7509,7430,0,3,2,7,8,7433,7505,7509,7430,43,7506,7510,7511,7507,0,3,2,7,8,7506,7510,7511,7507,43,7510,7512,7513,7511,0,3,2,7,8,7510,7512,7513,7511,43,7511,7513,7514,7515,0,3,2,7,8,7511,7513,7514,7515,43,7507,7511,7515,7508,0,3,2,7,8,7507,7511,7515,7508,43,7512,7516,7517,7513,0,3,2,7,8,7512,7516,7517,7513,43,7516,7453,7518,7517,0,3,2,7,8,7516,7453,7518,7517,43,7513,7517,7518,7514,0,3,2,7,8,7513,7517,7518,7514,43,7488,7487,7519,7520,0,3,2,7,8,7488,7487,7519,7520,43,7487,7486,7521,7519,0,3,2,7,8,7487,7486,7521,7519,43,7519,7521,7512,7510,0,3,2,7,8,7519,7521,7512,7510,43,7520,7519,7510,7506,0,3,2,7,8,7520,7519,7510,7506,43,7407,7491,7522,7414,0,3,2,7,8,7407,7491,7522,7414,43,7491,7488,7520,7522,0,3,2,7,8,7491,7488,7520,7522,43,7522,7520,7506,7504,0,3,2,7,8,7522,7520,7506,7504,43,7414,7522,7504,7411,0,3,2,7,8,7414,7522,7504,7411,43,7512,7521,7523,7516,0,3,2,7,8,7512,7521,7523,7516,43,7521,7486,7524,7523,0,3,2,7,8,7521,7486,7524,7523,43,7516,7523,7524,7453,0,3,2,7,8,7516,7523,7524,7453,43,7514,7518,7525,7526,0,3,2,7,8,7514,7518,7525,7526,43,7518,7453,7452,7525,0,3,2,7,8,7518,7453,7452,7525,43,7526,7525,7452,7448,0,3,2,7,8,7526,7525,7452,7448,43,7444,7527,7528,7445,0,3,2,7,8,7444,7527,7528,7445,43,7527,7514,7526,7528,0,3,2,7,8,7527,7514,7526,7528,43,7445,7528,7526,7448,0,3,2,7,8,7445,7528,7526,7448,43,7529,7530,7531,7532,0,3,2,7,8,7529,7530,7531,7532,43,7530,7514,7527,7531,0,3,2,7,8,7530,7514,7527,7531,43,7532,7531,7527,7444,0,3,2,7,8,7532,7531,7527,7444,43,7514,7530,7533,7515,0,3,2,7,8,7514,7530,7533,7515,43,7530,7529,7534,7533,0,3,2,7,8,7530,7529,7534,7533,43,7533,7534,7535,7536,0,3,2,7,8,7533,7534,7535,7536,43,7515,7533,7536,7508,0,3,2,7,8,7515,7533,7536,7508,43,7430,7509,7537,7431,0,3,2,7,8,7430,7509,7537,7431,43,7509,7508,7536,7537,0,3,2,7,8,7509,7508,7536,7537,43,7537,7536,7535,7538,0,3,2,7,8,7537,7536,7535,7538,43,7431,7537,7538,7423,0,3,2,7,8,7431,7537,7538,7423,43,7535,7534,7539,7540,0,3,2,7,8,7535,7534,7539,7540,43,7534,7529,7541,7539,0,3,2,7,8,7534,7529,7541,7539,43,7539,7541,7542,7543,0,3,2,7,8,7539,7541,7542,7543,43,7540,7539,7543,7500,0,3,2,7,8,7540,7539,7543,7500,43,7423,7538,7544,7424,0,3,2,7,8,7423,7538,7544,7424,43,7538,7535,7540,7544,0,3,2,7,8,7538,7535,7540,7544,43,7544,7540,7500,7503,0,3,2,7,8,7544,7540,7500,7503,43,7424,7544,7503,7425,0,3,2,7,8,7424,7544,7503,7425,43,7542,7545,7546,7543,0,3,2,7,8,7542,7545,7546,7543,43,7545,7547,7548,7546,0,3,2,7,8,7545,7547,7548,7546,43,7546,7548,7496,7501,0,3,2,7,8,7546,7548,7496,7501,43,7543,7546,7501,7500,0,3,2,7,8,7543,7546,7501,7500,43,7542,7541,7549,7550,0,3,2,7,8,7542,7541,7549,7550,43,7541,7529,7532,7549,0,3,2,7,8,7541,7529,7532,7549,43,7550,7549,7532,7444,0,3,2,7,8,7550,7549,7532,7444,43,7547,7551,7552,7548,0,3,2,7,8,7547,7551,7552,7548,43,7551,7553,7554,7552,0,3,2,7,8,7551,7553,7554,7552,43,7552,7554,7492,7497,0,3,2,7,8,7552,7554,7492,7497,43,7548,7552,7497,7496,0,3,2,7,8,7548,7552,7497,7496,43,7553,7551,7555,7556,0,3,2,7,8,7553,7551,7555,7556,43,7551,7547,7545,7555,0,3,2,7,8,7551,7547,7545,7555,43,7555,7545,7542,7550,0,3,2,7,8,7555,7545,7542,7550,43,7556,7555,7550,7444,0,3,2,7,8,7556,7555,7550,7444,43,7492,7554,7557,7493,0,3,2,7,8,7492,7554,7557,7493,43,7554,7553,7556,7557,0,3,2,7,8,7554,7553,7556,7557,43,7557,7556,7444,7447,0,3,2,7,8,7557,7556,7444,7447,43,7493,7557,7447,7438,0,3,2,7,8,7493,7557,7447,7438,43,7486,7484,7558,7524,0,3,2,7,8,7486,7484,7558,7524,43,7484,7466,7469,7558,0,3,2,7,8,7484,7466,7469,7558,43,7524,7558,7469,7453,0,3,2,7,8,7524,7558,7469,7453,43,7559,7562,7560,7561,0,3,2,7,8,7559,7560,7561,7562,42,7562,7563,7560,0,2,5,6,7560,7563,7561,43,7560,7563,7564,7565,0,3,2,7,8,7561,7563,7564,7565,43,7561,7560,7565,7566,0,3,2,7,8,7562,7561,7565,7566,43,7567,7568,7569,7570,0,3,2,7,8,7567,7568,7569,7570,43,7568,7559,7571,7569,0,3,2,7,8,7568,7559,7571,7569,43,7569,7571,4357,4364,0,3,2,7,8,7569,7571,4357,4364,43,7570,7569,4364,4363,0,3,2,7,8,7570,7569,4364,4363,43,7572,7573,7574,7575,0,3,2,7,8,7572,7573,7574,7575,43,7573,4226,4329,7574,0,3,2,7,8,7573,4226,4329,7574,43,7574,4329,4327,7576,0,3,2,7,8,7574,4329,4327,7576,43,7575,7574,7576,7577,0,3,2,7,8,7575,7574,7576,7577,43,4231,7578,7579,4325,0,3,2,7,8,4231,7578,7579,4325,43,7578,7580,7581,7579,0,3,2,7,8,7578,7580,7581,7579,43,7579,7581,7577,7576,0,3,2,7,8,7579,7581,7577,7576,43,4325,7579,7576,4327,0,3,2,7,8,4325,7579,7576,4327,43,4239,7582,7583,4234,0,3,2,7,8,4239,7582,7583,4234,43,7582,7566,7584,7583,0,3,2,7,8,7582,7566,7584,7583,43,7583,7584,7580,7578,0,3,2,7,8,7583,7584,7580,7578,43,4234,7583,7578,4231,0,3,2,7,8,4234,7583,7578,4231,43,7577,7581,7585,7586,0,3,2,7,8,7577,7581,7585,7586,43,7581,7580,7587,7585,0,3,2,7,8,7581,7580,7587,7585,43,7585,7587,7588,7589,0,3,2,7,8,7585,7587,7588,7589,43,7586,7585,7589,7590,0,3,2,7,8,7586,7585,7589,7590,43,7591,7592,7593,7594,0,3,2,7,8,7591,7592,7593,7594,43,7592,7572,7575,7593,0,3,2,7,8,7592,7572,7575,7593,43,7593,7575,7577,7586,0,3,2,7,8,7593,7575,7577,7586,43,7594,7593,7586,7590,0,3,2,7,8,7594,7593,7586,7590,43,7595,7596,7597,7598,0,3,2,7,8,7595,7596,7597,7598,43,7596,7599,7600,7597,0,3,2,7,8,7596,7599,7600,7597,43,7597,7600,7601,7602,0,3,2,7,8,7597,7600,7601,7602,43,7598,7597,7602,7603,0,3,2,7,8,7598,7597,7602,7603,43,7601,7604,7605,7606,0,3,2,7,8,7601,7604,7605,7606,43,7604,7607,7608,7605,0,3,2,7,8,7604,7607,7608,7605,43,7605,7608,7609,7610,0,3,2,7,8,7605,7608,7609,7610,43,7606,7605,7610,7611,0,3,2,7,8,7606,7605,7610,7611,43,7609,7608,7612,7613,0,3,2,7,8,7609,7608,7612,7613,43,7608,7607,7614,7612,0,3,2,7,8,7608,7607,7614,7612,43,7612,7614,7615,7616,0,3,2,7,8,7612,7614,7615,7616,43,7613,7612,7616,7617,0,3,2,7,8,7613,7612,7616,7617,43,7617,7616,7618,7619,0,3,2,7,8,7617,7616,7618,7619,43,7616,7615,7620,7618,0,3,2,7,8,7616,7615,7620,7618,43,7618,7620,7621,7622,0,3,2,7,8,7618,7620,7621,7622,43,7619,7618,7622,7623,0,3,2,7,8,7619,7618,7622,7623,43,7624,7625,7626,7627,0,3,2,7,8,7624,7625,7626,7627,43,7625,4228,4227,7626,0,3,2,7,8,7625,4228,4227,7626,43,7626,4227,4226,7573,0,3,2,7,8,7626,4227,4226,7573,43,7627,7626,7573,7572,0,3,2,7,8,7627,7626,7573,7572,43,7623,7622,7628,7629,0,3,2,7,8,7623,7622,7628,7629,43,7622,7621,7630,7628,0,3,2,7,8,7622,7621,7630,7628,43,7628,7630,7624,7631,0,3,2,7,8,7628,7630,7624,7631,43,7629,7628,7631,7632,0,3,2,7,8,7629,7628,7631,7632,43,7632,7631,7633,7634,0,3,2,7,8,7632,7631,7633,7634,43,7631,7624,7627,7633,0,3,2,7,8,7631,7624,7627,7633,43,7633,7627,7572,7592,0,3,2,7,8,7633,7627,7572,7592,43,7634,7633,7592,7591,0,3,2,7,8,7634,7633,7592,7591,43,7621,7635,7636,7630,0,3,2,7,8,7621,7635,7636,7630,43,7635,4334,4333,7636,0,3,2,7,8,7635,4334,4333,7636,43,7636,4333,4228,7625,0,3,2,7,8,7636,4333,4228,7625,43,7630,7636,7625,7624,0,3,2,7,8,7630,7636,7625,7624,43,7615,7637,7638,7620,0,3,2,7,8,7615,7637,7638,7620,43,7637,4338,4337,7638,0,3,2,7,8,7637,4338,4337,7638,43,7638,4337,4334,7635,0,3,2,7,8,7638,4337,4334,7635,43,7620,7638,7635,7621,0,3,2,7,8,7620,7638,7635,7621,43,7607,7639,7640,7614,0,3,2,7,8,7607,7639,7640,7614,43,7639,4349,4348,7640,0,3,2,7,8,7639,4349,4348,7640,43,7640,4348,4338,7637,0,3,2,7,8,7640,4348,4338,7637,43,7614,7640,7637,7615,0,3,2,7,8,7614,7640,7637,7615,43,7599,7641,7642,7600,0,3,2,7,8,7599,7641,7642,7600,43,7641,4349,7639,7642,0,3,2,7,8,7641,4349,7639,7642,43,7642,7639,7607,7604,0,3,2,7,8,7642,7639,7607,7604,43,7600,7642,7604,7601,0,3,2,7,8,7600,7642,7604,7601,43,7643,7644,7645,7646,0,3,2,7,8,7643,7644,7645,7646,43,7644,7567,7570,7645,0,3,2,7,8,7644,7567,7570,7645,43,7645,7570,4363,7647,0,3,2,7,8,7645,7570,4363,7647,43,7646,7645,7647,7648,0,3,2,7,8,7646,7645,7647,7648,42,7562,7649,7650,0,2,5,6,7560,7649,7650,43,7562,7559,7568,7649,0,3,2,7,8,7560,7559,7568,7649,43,7649,7568,7567,7651,0,3,2,7,8,7649,7568,7567,7651,43,7650,7649,7651,7652,0,3,2,7,8,7650,7649,7651,7652,43,7653,7654,7655,7656,0,3,2,7,8,7653,7654,7655,7656,43,7654,7657,7658,7655,0,3,2,7,8,7654,7657,7658,7655,43,7655,7658,7562,7650,0,3,2,7,8,7655,7658,7560,7650,43,7656,7655,7650,7652,0,3,2,7,8,7656,7655,7650,7652,43,7659,7660,7661,7662,0,3,2,7,8,7659,7660,7661,7662,43,7660,7652,7651,7661,0,3,2,7,8,7660,7652,7651,7661,43,7661,7651,7567,7644,0,3,2,7,8,7661,7651,7567,7644,43,7662,7661,7644,7643,0,3,2,7,8,7662,7661,7644,7643,43,7659,7663,7664,7660,0,3,2,7,8,7659,7663,7664,7660,43,7663,7665,7666,7664,0,3,2,7,8,7663,7665,7666,7664,43,7664,7666,7653,7656,0,3,2,7,8,7664,7666,7653,7656,43,7660,7664,7656,7652,0,3,2,7,8,7660,7664,7656,7652,43,7562,7658,7667,7563,0,3,2,7,8,7560,7658,7667,7563,43,7658,7657,7668,7667,0,3,2,7,8,7658,7657,7668,7667,43,7667,7668,7669,7670,0,3,2,7,8,7667,7668,7669,7670,43,7563,7667,7670,7564,0,3,2,7,8,7563,7667,7670,7564,43,7564,7670,7671,7672,0,3,2,7,8,7564,7670,7671,7672,43,7670,7669,7673,7671,0,3,2,7,8,7670,7669,7673,7671,43,7671,7673,7674,7675,0,3,2,7,8,7671,7673,7674,7675,43,7672,7671,7675,7676,0,3,2,7,8,7672,7671,7675,7676,43,7669,7668,7677,7678,0,3,2,7,8,7669,7668,7677,7678,43,7668,7657,7654,7677,0,3,2,7,8,7668,7657,7654,7677,43,7677,7654,7653,7679,0,3,2,7,8,7677,7654,7653,7679,43,7678,7677,7679,7680,0,3,2,7,8,7678,7677,7679,7680,43,7653,7666,7681,7679,0,3,2,7,8,7653,7666,7681,7679,43,7666,7665,7682,7681,0,3,2,7,8,7666,7665,7682,7681,43,7681,7682,7683,7684,0,3,2,7,8,7681,7682,7683,7684,43,7679,7681,7684,7680,0,3,2,7,8,7679,7681,7684,7680,43,7685,7686,7687,7688,0,3,2,7,8,7685,7686,7687,7688,43,7686,7689,7690,7687,0,3,2,7,8,7686,7689,7690,7687,43,7687,7690,7691,7692,0,3,2,7,8,7687,7690,7691,7692,43,7688,7687,7692,7693,0,3,2,7,8,7688,7687,7692,7693,43,7694,7695,7696,7697,0,3,2,7,8,7694,7695,7696,7697,43,7695,7685,7688,7696,0,3,2,7,8,7695,7685,7688,7696,43,7696,7688,7693,7698,0,3,2,7,8,7696,7688,7693,7698,43,7697,7696,7698,7699,0,3,2,7,8,7697,7696,7698,7699,43,7699,7700,7701,7697,0,3,2,7,8,7699,7700,7701,7697,43,7700,7595,7598,7701,0,3,2,7,8,7700,7595,7598,7701,43,7701,7598,7603,7702,0,3,2,7,8,7701,7598,7603,7702,43,7697,7701,7702,7694,0,3,2,7,8,7697,7701,7702,7694,43,7603,7602,7703,7704,0,3,2,7,8,7603,7602,7703,7704,43,7602,7601,7606,7703,0,3,2,7,8,7602,7601,7606,7703,43,7703,7606,7611,7705,0,3,2,7,8,7703,7606,7611,7705,43,7704,7703,7705,7706,0,3,2,7,8,7704,7703,7705,7706,43,7694,7702,7707,7708,0,3,2,7,8,7694,7702,7707,7708,43,7702,7603,7704,7707,0,3,2,7,8,7702,7603,7704,7707,43,7707,7704,7706,7709,0,3,2,7,8,7707,7704,7706,7709,43,7708,7707,7709,7710,0,3,2,7,8,7708,7707,7709,7710,43,7711,7712,7713,7714,0,3,2,7,8,7711,7712,7713,7714,43,7712,7685,7695,7713,0,3,2,7,8,7712,7685,7695,7713,43,7713,7695,7694,7708,0,3,2,7,8,7713,7695,7694,7708,43,7714,7713,7708,7710,0,3,2,7,8,7714,7713,7708,7710,43,7715,7716,7717,7718,0,3,2,7,8,7715,7716,7717,7718,43,7716,7689,7686,7717,0,3,2,7,8,7716,7689,7686,7717,43,7717,7686,7685,7712,0,3,2,7,8,7717,7686,7685,7712,43,7718,7717,7712,7711,0,3,2,7,8,7718,7717,7712,7711,43,7715,7719,7720,7716,0,3,2,7,8,7715,7719,7720,7716,43,7719,7659,7662,7720,0,3,2,7,8,7719,7659,7662,7720,43,7720,7662,7643,7721,0,3,2,7,8,7720,7662,7643,7721,43,7716,7720,7721,7689,0,3,2,7,8,7716,7720,7721,7689,43,7643,7646,7722,7721,0,3,2,7,8,7643,7646,7722,7721,43,7646,7648,7723,7722,0,3,2,7,8,7646,7648,7723,7722,43,7722,7723,7691,7690,0,3,2,7,8,7722,7723,7691,7690,43,7721,7722,7690,7689,0,3,2,7,8,7721,7722,7690,7689,43,7724,7725,7726,7727,0,3,2,7,8,7724,7725,7726,7727,43,7725,7611,7610,7726,0,3,2,7,8,7725,7611,7610,7726,43,7726,7610,7609,7728,0,3,2,7,8,7726,7610,7609,7728,43,7727,7726,7728,7729,0,3,2,7,8,7727,7726,7728,7729,43,7730,7731,7732,7733,0,3,2,7,8,7730,7731,7732,7733,43,7731,7623,7629,7732,0,3,2,7,8,7731,7623,7629,7732,43,7732,7629,7632,7734,0,3,2,7,8,7732,7629,7632,7734,43,7733,7732,7734,7735,0,3,2,7,8,7733,7732,7734,7735,43,7735,7734,7736,7737,0,3,2,7,8,7735,7734,7736,7737,43,7734,7632,7634,7736,0,3,2,7,8,7734,7632,7634,7736,43,7736,7634,7591,7738,0,3,2,7,8,7736,7634,7591,7738,43,7737,7736,7738,7739,0,3,2,7,8,7737,7736,7738,7739,43,7739,7738,7740,7741,0,3,2,7,8,7739,7738,7740,7741,43,7738,7591,7594,7740,0,3,2,7,8,7738,7591,7594,7740,43,7740,7594,7590,7742,0,3,2,7,8,7740,7594,7590,7742,43,7741,7740,7742,7743,0,3,2,7,8,7741,7740,7742,7743,43,7590,7589,7744,7742,0,3,2,7,8,7590,7589,7744,7742,43,7589,7588,7745,7744,0,3,2,7,8,7589,7588,7745,7744,43,7744,7745,7746,7747,0,3,2,7,8,7744,7745,7746,7747,43,7742,7744,7747,7743,0,3,2,7,8,7742,7744,7747,7743,43,7729,7728,7748,7749,0,3,2,7,8,7729,7728,7748,7749,43,7728,7609,7613,7748,0,3,2,7,8,7728,7609,7613,7748,43,7748,7613,7617,7750,0,3,2,7,8,7748,7613,7617,7750,43,7749,7748,7750,7751,0,3,2,7,8,7749,7748,7750,7751,43,7751,7750,7752,7753,0,3,2,7,8,7751,7750,7752,7753,43,7750,7617,7619,7752,0,3,2,7,8,7750,7617,7619,7752,43,7752,7619,7623,7731,0,3,2,7,8,7752,7619,7623,7731,43,7753,7752,7731,7730,0,3,2,7,8,7753,7752,7731,7730,43,7676,7754,7755,7756,0,3,2,7,8,7676,7754,7755,7756,43,7754,7757,7758,7755,0,3,2,7,8,7754,7757,7758,7755,43,7755,7758,7759,7760,0,3,2,7,8,7755,7758,7759,7760,43,7756,7755,7760,7761,0,3,2,7,8,7756,7755,7760,7761,43,7715,7718,7762,7763,0,3,2,7,8,7715,7718,7762,7763,43,7718,7711,7764,7762,0,3,2,7,8,7718,7711,7764,7762,43,7762,7764,7765,7766,0,3,2,7,8,7762,7764,7765,7766,43,7763,7762,7766,7767,0,3,2,7,8,7763,7762,7766,7767,43,7711,7714,7768,7764,0,3,2,7,8,7711,7714,7768,7764,43,7714,7710,7769,7768,0,3,2,7,8,7714,7710,7769,7768,43,7768,7769,7770,7771,0,3,2,7,8,7768,7769,7770,7771,43,7764,7768,7771,7765,0,3,2,7,8,7764,7768,7771,7765,43,7770,7769,7772,7773,0,3,2,7,8,7770,7769,7772,7773,43,7769,7710,7709,7772,0,3,2,7,8,7769,7710,7709,7772,43,7772,7709,7706,7774,0,3,2,7,8,7772,7709,7706,7774,43,7773,7772,7774,7775,0,3,2,7,8,7773,7772,7774,7775,43,7775,7774,7776,7777,0,3,2,7,8,7775,7774,7776,7777,43,7774,7706,7705,7776,0,3,2,7,8,7774,7706,7705,7776,43,7776,7705,7611,7725,0,3,2,7,8,7776,7705,7611,7725,43,7777,7776,7725,7724,0,3,2,7,8,7777,7776,7725,7724,43,7421,7778,7779,7426,0,3,2,7,8,7421,7778,7779,7426,43,7778,7724,7727,7779,0,3,2,7,8,7778,7724,7727,7779,43,7779,7727,7729,7780,0,3,2,7,8,7779,7727,7729,7780,43,7426,7779,7780,7428,0,3,2,7,8,7426,7779,7780,7428,43,7415,7781,7782,7416,0,3,2,7,8,7415,7781,7782,7416,43,7781,7730,7733,7782,0,3,2,7,8,7781,7730,7733,7782,43,7782,7733,7735,7783,0,3,2,7,8,7782,7733,7735,7783,43,7416,7782,7783,7409,0,3,2,7,8,7416,7782,7783,7409,43,7409,7783,7784,7410,0,3,2,7,8,7409,7783,7784,7410,43,7783,7735,7737,7784,0,3,2,7,8,7783,7735,7737,7784,43,7784,7737,7739,7785,0,3,2,7,8,7784,7737,7739,7785,43,7410,7784,7785,7403,0,3,2,7,8,7410,7784,7785,7403,43,7403,7785,7786,7404,0,3,2,7,8,7403,7785,7786,7404,43,7785,7739,7741,7786,0,3,2,7,8,7785,7739,7741,7786,43,7786,7741,7743,7787,0,3,2,7,8,7786,7741,7743,7787,43,7404,7786,7787,7393,0,3,2,7,8,7404,7786,7787,7393,43,7743,7747,7788,7787,0,3,2,7,8,7743,7747,7788,7787,43,7747,7746,7789,7788,0,3,2,7,8,7747,7746,7789,7788,43,7788,7789,7387,7394,0,3,2,7,8,7788,7789,7387,7394,43,7787,7788,7394,7393,0,3,2,7,8,7787,7788,7394,7393,43,7729,7749,7790,7780,0,3,2,7,8,7729,7749,7790,7780,43,7749,7751,7791,7790,0,3,2,7,8,7749,7751,7791,7790,43,7780,7790,7791,7428,0,3,2,7,8,7780,7790,7791,7428,43,7428,7791,7792,7434,0,3,2,7,8,7428,7791,7792,7434,43,7791,7751,7753,7792,0,3,2,7,8,7791,7751,7753,7792,43,7792,7753,7730,7781,0,3,2,7,8,7792,7753,7730,7781,43,7434,7792,7781,7415,0,3,2,7,8,7434,7792,7781,7415,43,7761,7760,7793,7794,0,3,2,7,8,7761,7760,7793,7794,43,7760,7759,7795,7793,0,3,2,7,8,7760,7759,7795,7793,43,7793,7795,7379,7386,0,3,2,7,8,7793,7795,7379,7386,43,7794,7793,7386,7385,0,3,2,7,8,7794,7793,7386,7385,43,7767,7766,7796,7797,0,3,2,7,8,7767,7766,7796,7797,43,7766,7765,7798,7796,0,3,2,7,8,7766,7765,7798,7796,43,7796,7798,7360,7374,0,3,2,7,8,7796,7798,7360,7374,43,7797,7796,7374,7373,0,3,2,7,8,7797,7796,7374,7373,43,7765,7771,7799,7798,0,3,2,7,8,7765,7771,7799,7798,43,7771,7770,7800,7799,0,3,2,7,8,7771,7770,7800,7799,43,7799,7800,7364,7361,0,3,2,7,8,7799,7800,7364,7361,43,7798,7799,7361,7360,0,3,2,7,8,7798,7799,7361,7360,43,7364,7800,7801,7436,0,3,2,7,8,7364,7800,7801,7436,43,7800,7770,7773,7801,0,3,2,7,8,7800,7770,7773,7801,43,7801,7773,7775,7802,0,3,2,7,8,7801,7773,7775,7802,43,7436,7801,7802,7417,0,3,2,7,8,7436,7801,7802,7417,43,7417,7802,7803,7418,0,3,2,7,8,7417,7802,7803,7418,43,7802,7775,7777,7803,0,3,2,7,8,7802,7775,7777,7803,43,7803,7777,7724,7778,0,3,2,7,8,7803,7777,7724,7778,43,7418,7803,7778,7421,0,3,2,7,8,7418,7803,7778,7421,43,7757,7804,7805,7758,0,3,2,7,8,7757,7804,7805,7758,43,7804,7806,7807,7805,0,3,2,7,8,7804,7806,7807,7805,43,7805,7807,7808,7809,0,3,2,7,8,7805,7807,7808,7809,43,7758,7805,7809,7759,0,3,2,7,8,7758,7805,7809,7759,43,7759,7809,7810,7795,0,3,2,7,8,7759,7809,7810,7795,43,7809,7808,7811,7810,0,3,2,7,8,7809,7808,7811,7810,43,7795,7810,7811,7379,0,3,2,7,8,7795,7810,7811,7379,43,7659,7812,7813,7663,0,3,2,7,8,7659,7812,7813,7663,43,7812,7814,7815,7813,0,3,2,7,8,7812,7814,7815,7813,43,7813,7815,7683,7682,0,3,2,7,8,7813,7815,7683,7682,43,7663,7813,7682,7665,0,3,2,7,8,7663,7813,7682,7665,43,7814,7812,7816,7817,0,3,2,7,8,7814,7812,7816,7817,43,7812,7659,7719,7816,0,3,2,7,8,7812,7659,7719,7816,43,7817,7816,7719,7715,0,3,2,7,8,7817,7816,7719,7715,43,7818,7819,7820,7821,0,3,2,7,8,7818,7819,7820,7821,43,7819,7814,7817,7820,0,3,2,7,8,7819,7814,7817,7820,43,7821,7820,7817,7715,0,3,2,7,8,7821,7820,7817,7715,43,7822,7823,7824,7825,0,3,2,7,8,7822,7823,7824,7825,43,7823,7808,7807,7824,0,3,2,7,8,7823,7808,7807,7824,43,7824,7807,7806,7826,0,3,2,7,8,7824,7807,7806,7826,43,7825,7824,7826,7818,0,3,2,7,8,7825,7824,7826,7818,43,7767,7827,7828,7763,0,3,2,7,8,7767,7827,7828,7763,43,7827,7822,7825,7828,0,3,2,7,8,7827,7822,7825,7828,43,7828,7825,7818,7821,0,3,2,7,8,7828,7825,7818,7821,43,7763,7828,7821,7715,0,3,2,7,8,7763,7828,7821,7715,43,7822,7829,7830,7823,0,3,2,7,8,7822,7829,7830,7823,43,7829,7379,7811,7830,0,3,2,7,8,7829,7379,7811,7830,43,7823,7830,7811,7808,0,3,2,7,8,7823,7830,7811,7808,43,7822,7827,7831,7829,0,3,2,7,8,7822,7827,7831,7829,43,7827,7767,7797,7831,0,3,2,7,8,7827,7767,7797,7831,43,7831,7797,7373,7380,0,3,2,7,8,7831,7797,7373,7380,43,7829,7831,7380,7379,0,3,2,7,8,7829,7831,7380,7379,43,7674,7673,7832,7833,0,3,2,7,8,7674,7673,7832,7833,43,7673,7669,7678,7832,0,3,2,7,8,7673,7669,7678,7832,43,7832,7678,7680,7834,0,3,2,7,8,7832,7678,7680,7834,43,7833,7832,7834,7835,0,3,2,7,8,7833,7832,7834,7835,43,7680,7684,7836,7834,0,3,2,7,8,7680,7684,7836,7834,43,7684,7683,7837,7836,0,3,2,7,8,7684,7683,7837,7836,43,7836,7837,7838,7839,0,3,2,7,8,7836,7837,7838,7839,43,7834,7836,7839,7835,0,3,2,7,8,7834,7836,7839,7835,43,7683,7815,7840,7837,0,3,2,7,8,7683,7815,7840,7837,43,7815,7814,7819,7840,0,3,2,7,8,7815,7814,7819,7840,43,7840,7819,7818,7841,0,3,2,7,8,7840,7819,7818,7841,43,7837,7840,7841,7838,0,3,2,7,8,7837,7840,7841,7838,43,7757,7842,7843,7804,0,3,2,7,8,7757,7842,7843,7804,43,7842,7835,7839,7843,0,3,2,7,8,7842,7835,7839,7843,43,7843,7839,7838,7844,0,3,2,7,8,7843,7839,7838,7844,43,7804,7843,7844,7806,0,3,2,7,8,7804,7843,7844,7806,43,7676,7675,7845,7754,0,3,2,7,8,7676,7675,7845,7754,43,7675,7674,7833,7845,0,3,2,7,8,7675,7674,7833,7845,43,7845,7833,7835,7842,0,3,2,7,8,7845,7833,7835,7842,43,7754,7845,7842,7757,0,3,2,7,8,7754,7845,7842,7757,43,7806,7844,7846,7826,0,3,2,7,8,7806,7844,7846,7826,43,7844,7838,7841,7846,0,3,2,7,8,7844,7838,7841,7846,43,7826,7846,7841,7818,0,3,2,7,8,7826,7846,7841,7818,43,4357,7571,7847,4358,0,3,2,7,8,4357,7571,7847,4358,43,7571,7559,7561,7847,0,3,2,7,8,7571,7559,7562,7847,43,7847,7561,7566,7582,0,3,2,7,8,7847,7562,7566,7582,43,4358,7847,7582,4239,0,3,2,7,8,4358,7847,7582,4239,43,7566,7848,7849,7584,0,3,2,7,8,7566,7848,7849,7584,43,7848,7850,7851,7849,0,3,2,7,8,7848,7850,7851,7849,43,7849,7851,7588,7587,0,3,2,7,8,7849,7851,7588,7587,43,7584,7849,7587,7580,0,3,2,7,8,7584,7849,7587,7580,43,7564,7672,7852,7565,0,3,2,7,8,7564,7672,7852,7565,43,7672,7676,7853,7852,0,3,2,7,8,7672,7676,7853,7852,43,7852,7853,7850,7848,0,3,2,7,8,7852,7853,7850,7848,43,7565,7852,7848,7566,0,3,2,7,8,7565,7852,7848,7566,43,7854,7855,7856,7857,0,3,2,7,8,7854,7855,7856,7857,43,7855,7850,7853,7856,0,3,2,7,8,7855,7850,7853,7856,43,7856,7853,7676,7756,0,3,2,7,8,7856,7853,7676,7756,43,7857,7856,7756,7761,0,3,2,7,8,7857,7856,7756,7761,43,7746,7745,7858,7859,0,3,2,7,8,7746,7745,7858,7859,43,7745,7588,7851,7858,0,3,2,7,8,7745,7588,7851,7858,43,7858,7851,7850,7855,0,3,2,7,8,7858,7851,7850,7855,43,7859,7858,7855,7854,0,3,2,7,8,7859,7858,7855,7854,43,7761,7794,7860,7857,0,3,2,7,8,7761,7794,7860,7857,43,7794,7385,7861,7860,0,3,2,7,8,7794,7385,7861,7860,43,7857,7860,7861,7854,0,3,2,7,8,7857,7860,7861,7854,43,7854,7861,7862,7859,0,3,2,7,8,7854,7861,7862,7859,43,7861,7385,7388,7862,0,3,2,7,8,7861,7385,7388,7862,43,7862,7388,7387,7789,0,3,2,7,8,7862,7388,7387,7789,43,7859,7862,7789,7746,0,3,2,7,8,7859,7862,7789,7746,43,7863,7864,7865,7866,0,3,2,7,8,7863,7864,7865,7866,43,7864,7867,7868,7865,0,3,2,7,8,7864,7867,7868,7865,43,7865,7868,7090,7093,0,3,2,7,8,7865,7868,7090,7093,43,7866,7865,7093,7098,0,3,2,7,8,7866,7865,7093,7098,43,7869,7870,7871,7872,0,3,2,7,8,7869,7870,7871,7872,43,7870,7873,7874,7871,0,3,2,7,8,7870,7873,7874,7871,43,7871,7874,7867,7864,0,3,2,7,8,7871,7874,7867,7864,43,7872,7871,7864,7863,0,3,2,7,8,7872,7871,7864,7863,43,7875,7876,7877,7878,0,3,2,7,8,7875,7876,7877,7878,43,7876,7879,7880,7877,0,3,2,7,8,7876,7879,7880,7877,43,7877,7880,7873,7870,0,3,2,7,8,7877,7880,7873,7870,43,7878,7877,7870,7869,0,3,2,7,8,7878,7877,7870,7869,43,7881,7882,7883,7884,0,3,2,7,8,7881,7882,7883,7884,43,7882,7885,7886,7883,0,3,2,7,8,7882,7885,7886,7883,43,7883,7886,7879,7876,0,3,2,7,8,7883,7886,7879,7876,43,7884,7883,7876,7875,0,3,2,7,8,7884,7883,7876,7875,43,7881,7887,7888,7882,0,3,2,7,8,7881,7887,7888,7882,43,7887,7889,7890,7888,0,3,2,7,8,7887,7889,7890,7888,43,7888,7890,7891,7892,0,3,2,7,8,7888,7890,7891,7892,43,7882,7888,7892,7885,0,3,2,7,8,7882,7888,7892,7885,43,7893,7894,7895,7896,0,3,2,7,8,7893,7894,7895,7896,43,7894,7897,7898,7895,0,3,2,7,8,7894,7897,7898,7895,43,7895,7898,7891,7890,0,3,2,7,8,7895,7898,7891,7890,43,7896,7895,7890,7889,0,3,2,7,8,7896,7895,7890,7889,43,7881,7899,7900,7887,0,3,2,7,8,7881,7899,7900,7887,43,7899,7901,7902,7900,0,3,2,7,8,7899,7901,7902,7900,43,7900,7902,7903,7904,0,3,2,7,8,7900,7902,7903,7904,43,7887,7900,7904,7889,0,3,2,7,8,7887,7900,7904,7889,43,7903,7905,7906,7904,0,3,2,7,8,7903,7905,7906,7904,43,7905,7907,7908,7906,0,3,2,7,8,7905,7907,7908,7906,43,7906,7908,7893,7896,0,3,2,7,8,7906,7908,7893,7896,43,7904,7906,7896,7889,0,3,2,7,8,7904,7906,7896,7889,43,7891,7909,7910,7892,0,3,2,7,8,7891,7909,7910,7892,43,7909,7911,7912,7910,0,3,2,7,8,7909,7911,7912,7910,43,7910,7912,7913,7914,0,3,2,7,8,7910,7912,7913,7914,43,7892,7910,7914,7885,0,3,2,7,8,7892,7910,7914,7885,43,7885,7914,7915,7886,0,3,2,7,8,7885,7914,7915,7886,43,7914,7913,7916,7915,0,3,2,7,8,7914,7913,7916,7915,43,7915,7916,7917,7918,0,3,2,7,8,7915,7916,7917,7918,43,7886,7915,7918,7879,0,3,2,7,8,7886,7915,7918,7879,43,7901,7899,7919,7920,0,3,2,7,8,7901,7899,7919,7920,43,7899,7881,7884,7919,0,3,2,7,8,7899,7881,7884,7919,43,7919,7884,7875,7921,0,3,2,7,8,7919,7884,7875,7921,43,7920,7919,7921,7922,0,3,2,7,8,7920,7919,7921,7922,43,7869,7923,7924,7878,0,3,2,7,8,7869,7923,7924,7878,43,7923,7925,7926,7924,0,3,2,7,8,7923,7925,7926,7924,43,7924,7926,7922,7921,0,3,2,7,8,7924,7926,7922,7921,43,7878,7924,7921,7875,0,3,2,7,8,7878,7924,7921,7875,43,7922,7926,7927,7928,0,3,2,7,8,7922,7926,7927,7928,43,7926,7925,7929,7927,0,3,2,7,8,7926,7925,7929,7927,43,7927,7929,7930,7931,0,3,2,7,8,7927,7929,7930,7931,43,7928,7927,7931,7162,0,3,2,7,8,7928,7927,7931,7162,43,7903,7902,7932,7933,0,3,2,7,8,7903,7902,7932,7933,43,7902,7901,7920,7932,0,3,2,7,8,7902,7901,7920,7932,43,7932,7920,7922,7928,0,3,2,7,8,7932,7920,7922,7928,43,7933,7932,7928,7162,0,3,2,7,8,7933,7932,7928,7162,43,7879,7918,7934,7880,0,3,2,7,8,7879,7918,7934,7880,43,7918,7917,7935,7934,0,3,2,7,8,7918,7917,7935,7934,43,7934,7935,7936,7937,0,3,2,7,8,7934,7935,7936,7937,43,7880,7934,7937,7873,0,3,2,7,8,7880,7934,7937,7873,43,7917,7938,7939,7935,0,3,2,7,8,7917,7938,7939,7935,43,7938,7940,7941,7939,0,3,2,7,8,7938,7940,7941,7939,43,7939,7941,7942,7943,0,3,2,7,8,7939,7941,7942,7943,43,7935,7939,7943,7936,0,3,2,7,8,7935,7939,7943,7936,43,7913,7944,7945,7916,0,3,2,7,8,7913,7944,7945,7916,43,7944,7946,7947,7945,0,3,2,7,8,7944,7946,7947,7945,43,7945,7947,7940,7938,0,3,2,7,8,7945,7947,7940,7938,43,7916,7945,7938,7917,0,3,2,7,8,7916,7945,7938,7917,43,7936,7943,7948,7949,0,3,2,7,8,7936,7943,7948,7949,43,7943,7942,7950,7948,0,3,2,7,8,7943,7942,7950,7948,43,7948,7950,7951,7952,0,3,2,7,8,7948,7950,7951,7952,43,7949,7948,7952,7953,0,3,2,7,8,7949,7948,7952,7953,43,7951,7954,7955,7952,0,3,2,7,8,7951,7954,7955,7952,43,7954,7189,7186,7955,0,3,2,7,8,7954,7189,7186,7955,43,7955,7186,7185,7956,0,3,2,7,8,7955,7186,7185,7956,43,7952,7955,7956,7953,0,3,2,7,8,7952,7955,7956,7953,43,7867,7957,7958,7868,0,3,2,7,8,7867,7957,7958,7868,43,7957,7953,7956,7958,0,3,2,7,8,7957,7953,7956,7958,43,7958,7956,7185,7192,0,3,2,7,8,7958,7956,7185,7192,43,7868,7958,7192,7090,0,3,2,7,8,7868,7958,7192,7090,43,7873,7937,7959,7874,0,3,2,7,8,7873,7937,7959,7874,43,7937,7936,7949,7959,0,3,2,7,8,7937,7936,7949,7959,43,7959,7949,7953,7957,0,3,2,7,8,7959,7949,7953,7957,43,7874,7959,7957,7867,0,3,2,7,8,7874,7959,7957,7867,43,7930,7929,7960,7961,0,3,2,7,8,7930,7929,7960,7961,43,7929,7925,7923,7960,0,3,2,7,8,7929,7925,7923,7960,43,7960,7923,7869,7872,0,3,2,7,8,7960,7923,7869,7872,43,7961,7960,7872,7863,0,3,2,7,8,7961,7960,7872,7863,43,7199,7962,7963,7200,0,3,2,7,8,7199,7962,7963,7200,43,7962,7930,7961,7963,0,3,2,7,8,7962,7930,7961,7963,43,7963,7961,7863,7866,0,3,2,7,8,7963,7961,7863,7866,43,7200,7963,7866,7098,0,3,2,7,8,7200,7963,7866,7098,43,7930,7962,7964,7931,0,3,2,7,8,7930,7962,7964,7931,43,7962,7199,7202,7964,0,3,2,7,8,7962,7199,7202,7964,43,7931,7964,7202,7162,0,3,2,7,8,7931,7964,7202,7162,43,7965,7966,7967,7968,0,3,2,7,8,7965,7966,7967,7968,43,7966,7969,7970,7967,0,3,2,7,8,7966,7969,7970,7967,43,7967,7970,7203,7206,0,3,2,7,8,7967,7970,7203,7206,43,7968,7967,7206,7211,0,3,2,7,8,7968,7967,7206,7211,43,7969,7971,7972,7970,0,3,2,7,8,7969,7971,7972,7970,43,7971,7212,7215,7972,0,3,2,7,8,7971,7212,7215,7972,43,7970,7972,7215,7203,0,3,2,7,8,7970,7972,7215,7203,43,7222,7221,7973,7974,0,3,2,7,8,7222,7221,7973,7974,43,7221,7220,7975,7973,0,3,2,7,8,7221,7220,7975,7973,43,7973,7975,7976,7977,0,3,2,7,8,7973,7975,7976,7977,43,7974,7973,7977,7978,0,3,2,7,8,7974,7973,7977,7978,43,7222,7974,7979,7229,0,3,2,7,8,7222,7974,7979,7229,43,7974,7978,7980,7979,0,3,2,7,8,7974,7978,7980,7979,43,7979,7980,7981,7982,0,3,2,7,8,7979,7980,7981,7982,43,7229,7979,7982,7230,0,3,2,7,8,7229,7979,7982,7230,43,7230,7982,7983,7233,0,3,2,7,8,7230,7982,7983,7233,43,7982,7981,7984,7983,0,3,2,7,8,7982,7981,7984,7983,43,7983,7984,7965,7968,0,3,2,7,8,7983,7984,7965,7968,43,7233,7983,7968,7211,0,3,2,7,8,7233,7983,7968,7211,43,7985,7986,7987,7988,0,3,2,7,8,7985,7986,7987,7988,43,7986,7989,7990,7987,0,3,2,7,8,7986,7989,7990,7987,43,7987,7990,7991,7992,0,3,2,7,8,7987,7990,7991,7992,43,7988,7987,7992,7993,0,3,2,7,8,7988,7987,7992,7993,43,7994,7995,7996,7997,0,3,2,7,8,7994,7995,7996,7997,43,7995,7985,7988,7996,0,3,2,7,8,7995,7985,7988,7996,43,7996,7988,7993,7998,0,3,2,7,8,7996,7988,7993,7998,43,7997,7996,7998,7999,0,3,2,7,8,7997,7996,7998,7999,43,7212,8000,8001,7251,0,3,2,7,8,7212,8000,8001,7251,43,8000,7907,7905,8001,0,3,2,7,8,8000,7907,7905,8001,43,8001,7905,7903,7933,0,3,2,7,8,8001,7905,7903,7933,43,7251,8001,7933,7162,0,3,2,7,8,7251,8001,7933,7162,43,8002,8003,8004,8005,0,3,2,7,8,8002,8003,8004,8005,43,8003,7212,7971,8004,0,3,2,7,8,8003,7212,7971,8004,43,8005,8004,7971,7969,0,3,2,7,8,8005,8004,7971,7969,43,8006,8007,8008,8009,0,3,2,7,8,8006,8007,8008,8009,43,8007,8002,8005,8008,0,3,2,7,8,8007,8002,8005,8008,43,8008,8005,7969,7966,0,3,2,7,8,8008,8005,7969,7966,43,8009,8008,7966,7965,0,3,2,7,8,8009,8008,7966,7965,43,7981,8010,8011,7984,0,3,2,7,8,7981,8010,8011,7984,43,8010,8012,8013,8011,0,3,2,7,8,8010,8012,8013,8011,43,8011,8013,8006,8009,0,3,2,7,8,8011,8013,8006,8009,43,7984,8011,8009,7965,0,3,2,7,8,7984,8011,8009,7965,43,7981,7980,8014,8010,0,3,2,7,8,7981,7980,8014,8010,43,7980,7978,8015,8014,0,3,2,7,8,7980,7978,8015,8014,43,8014,8015,8016,8017,0,3,2,7,8,8014,8015,8016,8017,43,8010,8014,8017,8012,0,3,2,7,8,8010,8014,8017,8012,43,7978,7977,8018,8015,0,3,2,7,8,7978,7977,8018,8015,43,7977,7976,8019,8018,0,3,2,7,8,7977,7976,8019,8018,43,8018,8019,8020,8021,0,3,2,7,8,8018,8019,8020,8021,43,8015,8018,8021,8016,0,3,2,7,8,8015,8018,8021,8016,43,8016,8021,8022,8023,0,3,2,7,8,8016,8021,8022,8023,43,8021,8020,8024,8022,0,3,2,7,8,8021,8020,8024,8022,43,8022,8024,8025,8026,0,3,2,7,8,8022,8024,8025,8026,43,8023,8022,8026,8027,0,3,2,7,8,8023,8022,8026,8027,43,7999,8028,8029,7997,0,3,2,7,8,7999,8028,8029,7997,43,8028,8027,8026,8029,0,3,2,7,8,8028,8027,8026,8029,43,8029,8026,8025,8030,0,3,2,7,8,8029,8026,8025,8030,43,7997,8029,8030,7994,0,3,2,7,8,7997,8029,8030,7994,43,8027,8028,8031,8032,0,3,2,7,8,8027,8028,8031,8032,43,8028,7999,8033,8031,0,3,2,7,8,8028,7999,8033,8031,43,8031,8033,8034,8035,0,3,2,7,8,8031,8033,8034,8035,43,8032,8031,8035,8036,0,3,2,7,8,8032,8031,8035,8036,43,8012,8017,8037,8038,0,3,2,7,8,8012,8017,8037,8038,43,8017,8016,8023,8037,0,3,2,7,8,8017,8016,8023,8037,43,8037,8023,8027,8032,0,3,2,7,8,8037,8023,8027,8032,43,8038,8037,8032,8036,0,3,2,7,8,8038,8037,8032,8036,43,8036,8035,8039,8040,0,3,2,7,8,8036,8035,8039,8040,43,8035,8034,8041,8039,0,3,2,7,8,8035,8034,8041,8039,43,8039,8041,8042,8043,0,3,2,7,8,8039,8041,8042,8043,43,8040,8039,8043,8044,0,3,2,7,8,8040,8039,8043,8044,43,8012,8038,8045,8013,0,3,2,7,8,8012,8038,8045,8013,43,8038,8036,8040,8045,0,3,2,7,8,8038,8036,8040,8045,43,8045,8040,8044,8046,0,3,2,7,8,8045,8040,8044,8046,43,8013,8045,8046,8006,0,3,2,7,8,8013,8045,8046,8006,43,8047,8048,8049,8050,0,3,2,7,8,8047,8048,8049,8050,43,8048,8051,8052,8049,0,3,2,7,8,8048,8051,8052,8049,43,8049,8052,8044,8043,0,3,2,7,8,8049,8052,8044,8043,43,8050,8049,8043,8042,0,3,2,7,8,8050,8049,8043,8042,43,8006,8046,8053,8007,0,3,2,7,8,8006,8046,8053,8007,43,8046,8044,8052,8053,0,3,2,7,8,8046,8044,8052,8053,43,8053,8052,8051,8054,0,3,2,7,8,8053,8052,8051,8054,43,8007,8053,8054,8002,0,3,2,7,8,8007,8053,8054,8002,43,8002,8054,8055,8003,0,3,2,7,8,8002,8054,8055,8003,43,8054,8051,8048,8055,0,3,2,7,8,8054,8051,8048,8055,43,8055,8048,8047,8056,0,3,2,7,8,8055,8048,8047,8056,43,8003,8055,8056,7212,0,3,2,7,8,8003,8055,8056,7212,43,8042,8057,8058,8050,0,3,2,7,8,8042,8057,8058,8050,43,8057,8059,8060,8058,0,3,2,7,8,8057,8059,8060,8058,43,8058,8060,8061,8062,0,3,2,7,8,8058,8060,8061,8062,43,8050,8058,8062,8047,0,3,2,7,8,8050,8058,8062,8047,43,7907,8063,8064,7908,0,3,2,7,8,7907,8063,8064,7908,43,8063,8061,8060,8064,0,3,2,7,8,8063,8061,8060,8064,43,8064,8060,8059,8065,0,3,2,7,8,8064,8060,8059,8065,43,7908,8064,8065,7893,0,3,2,7,8,7908,8064,8065,7893,43,8047,8062,8066,8056,0,3,2,7,8,8047,8062,8066,8056,43,8062,8061,8063,8066,0,3,2,7,8,8062,8061,8063,8066,43,8066,8063,7907,8000,0,3,2,7,8,8066,8063,7907,8000,43,8056,8066,8000,7212,0,3,2,7,8,8056,8066,8000,7212,43,8034,8067,8068,8041,0,3,2,7,8,8034,8067,8068,8041,43,8067,8069,8070,8068,0,3,2,7,8,8067,8069,8070,8068,43,8068,8070,8059,8057,0,3,2,7,8,8068,8070,8059,8057,43,8041,8068,8057,8042,0,3,2,7,8,8041,8068,8057,8042,43,7999,7998,8071,8033,0,3,2,7,8,7999,7998,8071,8033,43,7998,7993,8072,8071,0,3,2,7,8,7998,7993,8072,8071,43,8071,8072,8069,8067,0,3,2,7,8,8071,8072,8069,8067,43,8033,8071,8067,8034,0,3,2,7,8,8033,8071,8067,8034,43,7993,7992,8073,8072,0,3,2,7,8,7993,7992,8073,8072,43,7992,7991,8074,8073,0,3,2,7,8,7992,7991,8074,8073,43,8073,8074,7897,8075,0,3,2,7,8,8073,8074,7897,8075,43,8072,8073,8075,8069,0,3,2,7,8,8072,8073,8075,8069,43,7911,8076,8077,7912,0,3,2,7,8,7911,8076,8077,7912,43,8076,8078,8079,8077,0,3,2,7,8,8076,8078,8079,8077,43,8077,8079,7946,7944,0,3,2,7,8,8077,8079,7946,7944,43,7912,8077,7944,7913,0,3,2,7,8,7912,8077,7944,7913,43,7989,8080,8081,7990,0,3,2,7,8,7989,8080,8081,7990,43,8080,8078,8076,8081,0,3,2,7,8,8080,8078,8076,8081,43,8081,8076,7911,8082,0,3,2,7,8,8081,8076,7911,8082,43,7990,8081,8082,7991,0,3,2,7,8,7990,8081,8082,7991,43,7897,8074,8083,7898,0,3,2,7,8,7897,8074,8083,7898,43,8074,7991,8082,8083,0,3,2,7,8,8074,7991,8082,8083,43,8083,8082,7911,7909,0,3,2,7,8,8083,8082,7911,7909,43,7898,8083,7909,7891,0,3,2,7,8,7898,8083,7909,7891,43,8069,8075,8084,8070,0,3,2,7,8,8069,8075,8084,8070,43,8075,7897,7894,8084,0,3,2,7,8,8075,7897,7894,8084,43,8084,7894,7893,8065,0,3,2,7,8,8084,7894,7893,8065,43,8070,8084,8065,8059,0,3,2,7,8,8070,8084,8065,8059,43,7951,8085,8086,7954,0,3,2,7,8,7951,8085,8086,7954,43,8085,4531,4546,8086,0,3,2,7,8,8085,4531,4546,8086,43,8086,4546,4462,7336,0,3,2,7,8,8086,4546,4462,7336,43,7954,8086,7336,7189,0,3,2,7,8,7954,8086,7336,7189,43,4524,4527,8087,8088,0,3,2,7,8,4524,4527,8087,8088,43,4527,4531,8085,8087,0,3,2,7,8,4527,4531,8085,8087,43,8087,8085,7951,7950,0,3,2,7,8,8087,8085,7951,7950,43,8088,8087,7950,7942,0,3,2,7,8,8088,8087,7950,7942,43,4550,4552,8089,8090,0,3,2,7,8,4550,4552,8089,8090,43,4552,4524,8088,8089,0,3,2,7,8,4552,4524,8088,8089,43,8089,8088,7942,7941,0,3,2,7,8,8089,8088,7942,7941,43,8090,8089,7941,7940,0,3,2,7,8,8090,8089,7941,7940,43,7946,8091,8092,7947,0,3,2,7,8,7946,8091,8092,7947,43,8091,4483,4548,8092,0,3,2,7,8,8091,4483,4548,8092,43,8092,4548,4550,8090,0,3,2,7,8,8092,4548,4550,8090,43,7947,8092,8090,7940,0,3,2,7,8,7947,8092,8090,7940,43,8078,8093,8094,8079,0,3,2,7,8,8078,8093,8094,8079,43,8093,4475,4479,8094,0,3,2,7,8,8093,4475,4479,8094,43,8094,4479,4483,8091,0,3,2,7,8,8094,4479,4483,8091,43,8079,8094,8091,7946,0,3,2,7,8,8079,8094,8091,7946,43,7989,8095,8096,8080,0,3,2,7,8,7989,8095,8096,8080,43,8095,4477,4476,8096,0,3,2,7,8,8095,4477,4476,8096,43,8096,4476,4475,8093,0,3,2,7,8,8096,4476,4475,8093,43,8080,8096,8093,8078,0,3,2,7,8,8080,8096,8093,8078,43,7985,8097,8098,7986,0,3,2,7,8,7985,8097,8098,7986,43,8097,4694,4693,8098,0,3,2,7,8,8097,4694,4693,8098,43,8098,4693,4477,8095,0,3,2,7,8,8098,4693,4477,8095,43,7986,8098,8095,7989,0,3,2,7,8,7986,8098,8095,7989,43,7994,8099,8100,7995,0,3,2,7,8,7994,8099,8100,7995,43,8099,4685,4696,8100,0,3,2,7,8,8099,4685,4696,8100,43,8100,4696,4694,8097,0,3,2,7,8,8100,4696,4694,8097,43,7995,8100,8097,7985,0,3,2,7,8,7995,8100,8097,7985,43,4680,4686,8101,8102,0,3,2,7,8,4680,4686,8101,8102,43,4686,4685,8099,8101,0,3,2,7,8,4686,4685,8099,8101,43,8101,8099,7994,8030,0,3,2,7,8,8101,8099,7994,8030,43,8102,8101,8030,8025,0,3,2,7,8,8102,8101,8030,8025,43,8020,8103,8104,8024,0,3,2,7,8,8020,8103,8104,8024,43,8103,4643,4681,8104,0,3,2,7,8,8103,4643,4681,8104,43,8104,4681,4680,8102,0,3,2,7,8,8104,4681,4680,8102,43,8024,8104,8102,8025,0,3,2,7,8,8024,8104,8102,8025,43,7976,8105,8106,8019,0,3,2,7,8,7976,8105,8106,8019,43,8105,4645,4644,8106,0,3,2,7,8,8105,4645,4644,8106,43,8106,4644,4643,8103,0,3,2,7,8,8106,4644,4643,8103,43,8019,8106,8103,8020,0,3,2,7,8,8019,8106,8103,8020,43,4567,4648,8107,7359,0,3,2,7,8,4567,4648,8107,7359,43,4648,4645,8105,8107,0,3,2,7,8,4648,4645,8105,8107,43,8107,8105,7976,7975,0,3,2,7,8,8107,8105,7976,7975,43,7359,8107,7975,7220,0,3,2,7,8,7359,8107,7975,7220,43,2671,8108,8109,8110,0,3,2,7,8,2671,8108,8109,8110,43,8108,8111,8112,8109,0,3,2,7,8,8108,8111,8112,8109,43,8110,8109,8112,8113,0,3,2,7,8,8110,8109,8112,8113,43,8114,8115,8116,8117,0,3,2,7,8,8114,8115,8116,8117,43,8115,8118,8119,8116,0,3,2,7,8,8115,8118,8119,8116,43,8116,8119,8113,8120,0,3,2,7,8,8116,8119,8113,8120,43,8117,8116,8120,8121,0,3,2,7,8,8117,8116,8120,8121,43,2671,8122,8123,2672,0,3,2,7,8,2671,8122,8123,2672,43,8122,8118,8124,8123,0,3,2,7,8,8122,8118,8124,8123,43,2672,8123,8124,2658,0,3,2,7,8,2672,8123,8124,2658,43,2671,8110,8125,8122,0,3,2,7,8,2671,8110,8125,8122,43,8110,8113,8119,8125,0,3,2,7,8,8110,8113,8119,8125,43,8122,8125,8119,8118,0,3,2,7,8,8122,8125,8119,8118,43,2658,8124,8126,2659,0,3,2,7,8,2658,8124,8126,2659,43,8124,8118,8115,8126,0,3,2,7,8,8124,8118,8115,8126,43,8126,8115,8114,8127,0,3,2,7,8,8126,8115,8114,8127,43,2659,8126,8127,2660,0,3,2,7,8,2659,8126,8127,2660,43,2660,8127,8128,2661,0,3,2,7,8,2660,8127,8128,2661,43,8127,8114,8117,8128,0,3,2,7,8,8127,8114,8117,8128,43,8128,8117,8121,8129,0,3,2,7,8,8128,8117,8121,8129,43,2661,8128,8129,2568,0,3,2,7,8,2661,8128,8129,2568,43,8130,8131,8132,8133,0,3,2,7,8,8130,8131,8132,8133,43,8131,8134,8135,8132,0,3,2,7,8,8131,8134,8135,8132,43,8132,8135,8136,8137,0,3,2,7,8,8132,8135,8136,8137,43,8133,8132,8137,8138,0,3,2,7,8,8133,8132,8137,8138,43,8139,8140,8141,8142,0,3,2,7,8,8139,8140,8141,8142,43,8140,8143,8144,8141,0,3,2,7,8,8140,8143,8144,8141,43,8141,8144,8145,8146,0,3,2,7,8,8141,8144,8145,8146,43,8142,8141,8146,8147,0,3,2,7,8,8142,8141,8146,8147,43,8148,8149,8150,8151,0,3,2,7,8,8148,8149,8150,8151,43,8149,8152,8153,8150,0,3,2,7,8,8149,8152,8153,8150,43,8150,8153,8136,8135,0,3,2,7,8,8150,8153,8136,8135,43,8151,8150,8135,8134,0,3,2,7,8,8151,8150,8135,8134,43,8121,8154,8155,8156,0,3,2,7,8,8121,8154,8155,8156,43,8154,8148,8151,8155,0,3,2,7,8,8154,8148,8151,8155,43,8155,8151,8134,8157,0,3,2,7,8,8155,8151,8134,8157,43,8156,8155,8157,8158,0,3,2,7,8,8156,8155,8157,8158,43,8159,8160,8161,8162,0,3,2,7,8,8159,8160,8161,8162,43,8160,8148,8154,8161,0,3,2,7,8,8160,8148,8154,8161,43,8161,8154,8121,8120,0,3,2,7,8,8161,8154,8121,8120,43,8162,8161,8120,8113,0,3,2,7,8,8162,8161,8120,8113,43,8163,8164,8165,8166,0,3,2,7,8,8163,8164,8165,8166,43,8164,8152,8149,8165,0,3,2,7,8,8164,8152,8149,8165,43,8165,8149,8148,8160,0,3,2,7,8,8165,8149,8148,8160,43,8166,8165,8160,8159,0,3,2,7,8,8166,8165,8160,8159,43,8152,8164,8167,8153,0,3,2,7,8,8152,8164,8167,8153,43,8164,8163,8168,8167,0,3,2,7,8,8164,8163,8168,8167,43,8167,8168,8169,8170,0,3,2,7,8,8167,8168,8169,8170,43,8153,8167,8170,8136,0,3,2,7,8,8153,8167,8170,8136,43,8163,8171,8172,8168,0,3,2,7,8,8163,8171,8172,8168,43,8171,8173,8174,8172,0,3,2,7,8,8171,8173,8174,8172,43,8172,8174,8175,8176,0,3,2,7,8,8172,8174,8175,8176,43,8168,8172,8176,8169,0,3,2,7,8,8168,8172,8176,8169,43,8169,8176,8177,8178,0,3,2,7,8,8169,8176,8177,8178,43,8176,8175,8179,8177,0,3,2,7,8,8176,8175,8179,8177,43,8177,8179,8139,8142,0,3,2,7,8,8177,8179,8139,8142,43,8178,8177,8142,8147,0,3,2,7,8,8178,8177,8142,8147,43,8136,8170,8180,8137,0,3,2,7,8,8136,8170,8180,8137,43,8170,8169,8178,8180,0,3,2,7,8,8170,8169,8178,8180,43,8180,8178,8147,8181,0,3,2,7,8,8180,8178,8147,8181,43,8137,8180,8181,8138,0,3,2,7,8,8137,8180,8181,8138,43,8182,8183,8184,8185,0,3,2,7,8,8182,8183,8184,8185,43,8183,8186,8187,8184,0,3,2,7,8,8183,8186,8187,8184,43,8184,8187,8188,8189,0,3,2,7,8,8184,8187,8188,8189,43,8185,8184,8189,8190,0,3,2,7,8,8185,8184,8189,8190,43,8191,8192,8193,8194,0,3,2,7,8,8191,8192,8193,8194,43,8192,8182,8185,8193,0,3,2,7,8,8192,8182,8185,8193,43,8193,8185,8190,8195,0,3,2,7,8,8193,8185,8190,8195,43,8194,8193,8195,8196,0,3,2,7,8,8194,8193,8195,8196,43,8186,8183,8197,8198,0,3,2,7,8,8186,8183,8197,8198,43,8183,8182,8192,8197,0,3,2,7,8,8183,8182,8192,8197,43,8197,8192,8191,8199,0,3,2,7,8,8197,8192,8191,8199,43,8198,8197,8199,8200,0,3,2,7,8,8198,8197,8199,8200,43,2697,8201,8202,2692,0,3,2,7,8,2697,8201,8202,2692,43,8201,8200,8199,8202,0,3,2,7,8,8201,8200,8199,8202,43,8202,8199,8191,8203,0,3,2,7,8,8202,8199,8191,8203,43,2692,8202,8203,2689,0,3,2,7,8,2692,8202,8203,2689,43,2568,8129,8204,2626,0,3,2,7,8,2568,8129,8204,2626,43,8129,8121,8156,8204,0,3,2,7,8,8129,8121,8156,8204,43,8204,8156,8158,8205,0,3,2,7,8,8204,8156,8158,8205,43,2626,8204,8205,2624,0,3,2,7,8,2626,8204,8205,2624,43,8206,8207,8208,8209,0,3,2,7,8,8206,8207,8208,8209,43,8207,8158,8157,8208,0,3,2,7,8,8207,8158,8157,8208,43,8208,8157,8134,8131,0,3,2,7,8,8208,8157,8134,8131,43,8209,8208,8131,8130,0,3,2,7,8,8209,8208,8131,8130,43,8158,8207,8210,8205,0,3,2,7,8,8158,8207,8210,8205,43,8207,8206,8211,8210,0,3,2,7,8,8207,8206,8211,8210,43,8210,8211,2620,2622,0,3,2,7,8,8210,8211,2620,2622,43,8205,8210,2622,2624,0,3,2,7,8,8205,8210,2622,2624,43,8200,8201,8212,8213,0,3,2,7,8,8200,8201,8212,8213,43,8201,2697,2725,8212,0,3,2,7,8,8201,2697,2725,8212,43,8212,2725,2615,2618,0,3,2,7,8,8212,2725,2615,2618,43,8213,8212,2618,2620,0,3,2,7,8,8213,8212,2618,2620,43,8206,8214,8215,8211,0,3,2,7,8,8206,8214,8215,8211,43,8214,8186,8198,8215,0,3,2,7,8,8214,8186,8198,8215,43,8215,8198,8200,8213,0,3,2,7,8,8215,8198,8200,8213,43,8211,8215,8213,2620,0,3,2,7,8,8211,8215,8213,2620,43,8186,8214,8216,8187,0,3,2,7,8,8186,8214,8216,8187,43,8214,8206,8209,8216,0,3,2,7,8,8214,8206,8209,8216,43,8216,8209,8130,8217,0,3,2,7,8,8216,8209,8130,8217,43,8187,8216,8217,8188,0,3,2,7,8,8187,8216,8217,8188,43,8188,8217,8218,8219,0,3,2,7,8,8188,8217,8218,8219,43,8217,8130,8133,8218,0,3,2,7,8,8217,8130,8133,8218,43,8218,8133,8138,8220,0,3,2,7,8,8218,8133,8138,8220,43,8219,8218,8220,8221,0,3,2,7,8,8219,8218,8220,8221,43,8145,8222,8223,8146,0,3,2,7,8,8145,8222,8223,8146,43,8222,8221,8220,8223,0,3,2,7,8,8222,8221,8220,8223,43,8223,8220,8138,8181,0,3,2,7,8,8223,8220,8138,8181,43,8146,8223,8181,8147,0,3,2,7,8,8146,8223,8181,8147,43,8190,8189,8224,8225,0,3,2,7,8,8190,8189,8224,8225,43,8189,8188,8219,8224,0,3,2,7,8,8189,8188,8219,8224,43,8224,8219,8221,8222,0,3,2,7,8,8224,8219,8221,8222,43,8225,8224,8222,8145,0,3,2,7,8,8225,8224,8222,8145,43,8143,8226,8227,8144,0,3,2,7,8,8143,8226,8227,8144,43,8226,8196,8195,8227,0,3,2,7,8,8226,8196,8195,8227,43,8227,8195,8190,8225,0,3,2,7,8,8227,8195,8190,8225,43,8144,8227,8225,8145,0,3,2,7,8,8144,8227,8225,8145,43,8196,8226,8228,8229,0,3,2,7,8,8196,8226,8228,8229,43,8226,8143,8140,8228,0,3,2,7,8,8226,8143,8140,8228,43,8228,8140,8139,8230,0,3,2,7,8,8228,8140,8139,8230,43,8229,8228,8230,8231,0,3,2,7,8,8229,8228,8230,8231,43,8175,8232,8233,8179,0,3,2,7,8,8175,8232,8233,8179,43,8232,8234,8235,8233,0,3,2,7,8,8232,8234,8235,8233,43,8233,8235,8231,8230,0,3,2,7,8,8233,8235,8231,8230,43,8179,8233,8230,8139,0,3,2,7,8,8179,8233,8230,8139,43,8236,8237,8238,8239,0,3,2,7,8,8236,8237,8238,8239,43,8237,8111,8108,8238,0,3,2,7,8,8237,8111,8108,8238,43,2671,2703,8238,8108,0,3,2,7,8,2671,2703,8238,8108,43,8239,8238,2703,2702,0,3,2,7,8,8239,8238,2703,2702,43,8240,8241,8242,8243,0,3,2,7,8,8240,8241,8242,8243,43,8241,2714,2717,8242,0,3,2,7,8,8241,2714,2717,8242,43,8242,2717,2689,8203,0,3,2,7,8,8242,2717,2689,8203,43,8243,8242,8203,8191,0,3,2,7,8,8243,8242,8203,8191,43,8191,8194,8244,8243,0,3,2,7,8,8191,8194,8244,8243,43,8194,8196,8229,8244,0,3,2,7,8,8194,8196,8229,8244,43,8244,8229,8231,8245,0,3,2,7,8,8244,8229,8231,8245,43,8243,8244,8245,8240,0,3,2,7,8,8243,8244,8245,8240,43,8231,8235,8246,8245,0,3,2,7,8,8231,8235,8246,8245,43,8235,8234,8247,8246,0,3,2,7,8,8235,8234,8247,8246,43,8246,8247,8236,8248,0,3,2,7,8,8246,8247,8236,8248,43,8245,8246,8248,8240,0,3,2,7,8,8245,8246,8248,8240,43,8175,8174,8249,8232,0,3,2,7,8,8175,8174,8249,8232,43,8174,8173,8250,8249,0,3,2,7,8,8174,8173,8250,8249,43,8249,8250,8251,8252,0,3,2,7,8,8249,8250,8251,8252,43,8232,8249,8252,8234,0,3,2,7,8,8232,8249,8252,8234,43,8251,8250,8253,8254,0,3,2,7,8,8251,8250,8253,8254,43,8250,8173,8171,8253,0,3,2,7,8,8250,8173,8171,8253,43,8253,8171,8163,8166,0,3,2,7,8,8253,8171,8163,8166,43,8254,8253,8166,8159,0,3,2,7,8,8254,8253,8166,8159,43,8111,8255,8256,8112,0,3,2,7,8,8111,8255,8256,8112,43,8255,8251,8254,8256,0,3,2,7,8,8255,8251,8254,8256,43,8256,8254,8159,8162,0,3,2,7,8,8256,8254,8159,8162,43,8112,8256,8162,8113,0,3,2,7,8,8112,8256,8162,8113,43,8234,8252,8257,8247,0,3,2,7,8,8234,8252,8257,8247,43,8252,8251,8255,8257,0,3,2,7,8,8252,8251,8255,8257,43,8257,8255,8111,8237,0,3,2,7,8,8257,8255,8111,8237,43,8247,8257,8237,8236,0,3,2,7,8,8247,8257,8237,8236,43,8240,8248,8258,8241,0,3,2,7,8,8240,8248,8258,8241,43,8248,8236,8239,8258,0,3,2,7,8,8248,8236,8239,8258,43,8258,8239,2702,2715,0,3,2,7,8,8258,8239,2702,2715,43,8241,8258,2715,2714,0,3,2,7,8,8241,8258,2715,2714,43,8259,8260,8261,8262,0,3,2,7,8,8259,8260,8261,8262,43,8260,3630,8263,8261,0,3,2,7,8,8260,3630,8263,8261,43,8262,8261,8263,8264,0,3,2,7,8,8262,8261,8263,8264,43,8264,8265,8266,8267,0,3,2,7,8,8264,8265,8266,8267,43,8265,8268,8269,8266,0,3,2,7,8,8265,8268,8269,8266,43,8266,8269,8270,8271,0,3,2,7,8,8266,8269,8270,8271,43,8267,8266,8271,8272,0,3,2,7,8,8267,8266,8271,8272,43,8268,8273,8274,8275,0,3,2,7,8,8268,8273,8274,8275,43,8273,3630,3628,8274,0,3,2,7,8,8273,3630,3628,8274,43,8275,8274,3628,3619,0,3,2,7,8,8275,8274,3628,3619,43,8264,8263,8276,8265,0,3,2,7,8,8264,8263,8276,8265,43,8263,3630,8273,8276,0,3,2,7,8,8263,3630,8273,8276,43,8265,8276,8273,8268,0,3,2,7,8,8265,8276,8273,8268,43,8270,8269,8277,8278,0,3,2,7,8,8270,8269,8277,8278,43,8269,8268,8275,8277,0,3,2,7,8,8269,8268,8275,8277,43,8277,8275,3619,3616,0,3,2,7,8,8277,8275,3619,3616,43,8278,8277,3616,3615,0,3,2,7,8,8278,8277,3616,3615,43,8272,8271,8279,8280,0,3,2,7,8,8272,8271,8279,8280,43,8271,8270,8278,8279,0,3,2,7,8,8271,8270,8278,8279,43,8279,8278,3615,3618,0,3,2,7,8,8279,8278,3615,3618,43,8280,8279,3618,3529,0,3,2,7,8,8280,8279,3618,3529,43,8281,8282,8283,8284,0,3,2,7,8,8281,8282,8283,8284,43,8282,8285,8286,8283,0,3,2,7,8,8282,8285,8286,8283,43,8283,8286,8287,8288,0,3,2,7,8,8283,8286,8287,8288,43,8284,8283,8288,8289,0,3,2,7,8,8284,8283,8288,8289,43,8290,8291,8292,8293,0,3,2,7,8,8290,8291,8292,8293,43,8291,8294,8295,8292,0,3,2,7,8,8291,8294,8295,8292,43,8292,8295,8296,8297,0,3,2,7,8,8292,8295,8296,8297,43,8293,8292,8297,8298,0,3,2,7,8,8293,8292,8297,8298,43,8281,8299,8300,8282,0,3,2,7,8,8281,8299,8300,8282,43,8299,8301,8302,8300,0,3,2,7,8,8299,8301,8302,8300,43,8300,8302,8303,8304,0,3,2,7,8,8300,8302,8303,8304,43,8282,8300,8304,8285,0,3,2,7,8,8282,8300,8304,8285,43,8285,8304,8305,8306,0,3,2,7,8,8285,8304,8305,8306,43,8304,8303,8307,8305,0,3,2,7,8,8304,8303,8307,8305,43,8305,8307,8272,8308,0,3,2,7,8,8305,8307,8272,8308,43,8306,8305,8308,8309,0,3,2,7,8,8306,8305,8308,8309,43,8272,8307,8310,8267,0,3,2,7,8,8272,8307,8310,8267,43,8307,8303,8311,8310,0,3,2,7,8,8307,8303,8311,8310,43,8310,8311,8312,8313,0,3,2,7,8,8310,8311,8312,8313,43,8267,8310,8313,8264,0,3,2,7,8,8267,8310,8313,8264,43,8303,8302,8314,8311,0,3,2,7,8,8303,8302,8314,8311,43,8302,8301,8315,8314,0,3,2,7,8,8302,8301,8315,8314,43,8314,8315,8316,8317,0,3,2,7,8,8314,8315,8316,8317,43,8311,8314,8317,8312,0,3,2,7,8,8311,8314,8317,8312,43,8318,8319,8320,8321,0,3,2,7,8,8318,8319,8320,8321,43,8319,8316,8315,8320,0,3,2,7,8,8319,8316,8315,8320,43,8320,8315,8301,8299,0,3,2,7,8,8320,8315,8301,8299,43,8321,8320,8299,8281,0,3,2,7,8,8321,8320,8299,8281,43,8322,8323,8324,8325,0,3,2,7,8,8322,8323,8324,8325,43,8323,8326,8327,8324,0,3,2,7,8,8323,8326,8327,8324,43,8324,8327,8316,8319,0,3,2,7,8,8324,8327,8316,8319,43,8325,8324,8319,8318,0,3,2,7,8,8325,8324,8319,8318,43,8296,8328,8329,8297,0,3,2,7,8,8296,8328,8329,8297,43,8328,8322,8325,8329,0,3,2,7,8,8328,8322,8325,8329,43,8329,8325,8318,8330,0,3,2,7,8,8329,8325,8318,8330,43,8297,8329,8330,8298,0,3,2,7,8,8297,8329,8330,8298,43,8298,8330,8331,8332,0,3,2,7,8,8298,8330,8331,8332,43,8330,8318,8321,8331,0,3,2,7,8,8330,8318,8321,8331,43,8331,8321,8281,8284,0,3,2,7,8,8331,8321,8281,8284,43,8332,8331,8284,8289,0,3,2,7,8,8332,8331,8284,8289,43,8333,8334,8335,8336,0,3,2,7,8,8333,8334,8335,8336,43,8334,8337,8338,8335,0,3,2,7,8,8334,8337,8338,8335,43,8335,8338,8339,8340,0,3,2,7,8,8335,8338,8339,8340,43,8336,8335,8340,8341,0,3,2,7,8,8336,8335,8340,8341,43,8341,8340,8342,8343,0,3,2,7,8,8341,8340,8342,8343,43,8340,8339,8344,8342,0,3,2,7,8,8340,8339,8344,8342,43,8342,8344,8345,8346,0,3,2,7,8,8342,8344,8345,8346,43,8343,8342,8346,8347,0,3,2,7,8,8343,8342,8346,8347,43,8345,8344,8348,8349,0,3,2,7,8,8345,8344,8348,8349,43,8344,8339,8338,8348,0,3,2,7,8,8344,8339,8338,8348,43,8348,8338,8337,8350,0,3,2,7,8,8348,8338,8337,8350,43,8349,8348,8350,8351,0,3,2,7,8,8349,8348,8350,8351,43,8345,8349,8352,8353,0,3,2,7,8,8345,8349,8352,8353,43,8349,8351,8354,8352,0,3,2,7,8,8349,8351,8354,8352,43,8352,8354,3658,3657,0,3,2,7,8,8352,8354,3658,3657,43,8353,8352,3657,3656,0,3,2,7,8,8353,8352,3657,3656,43,8309,8308,8355,8356,0,3,2,7,8,8309,8308,8355,8356,43,8308,8272,8280,8355,0,3,2,7,8,8308,8272,8280,8355,43,8355,8280,3529,3587,0,3,2,7,8,8355,8280,3529,3587,43,8356,8355,3587,3585,0,3,2,7,8,8356,8355,3587,3585,43,8285,8306,8357,8286,0,3,2,7,8,8285,8306,8357,8286,43,8306,8309,8358,8357,0,3,2,7,8,8306,8309,8358,8357,43,8357,8358,8359,8360,0,3,2,7,8,8357,8358,8359,8360,43,8286,8357,8360,8287,0,3,2,7,8,8286,8357,8360,8287,43,3581,8361,8362,3584,0,3,2,7,8,3581,8361,8362,3584,43,8361,8359,8358,8362,0,3,2,7,8,8361,8359,8358,8362,43,8362,8358,8309,8356,0,3,2,7,8,8362,8358,8309,8356,43,3584,8362,8356,3585,0,3,2,7,8,3584,8362,8356,3585,43,3579,3685,8363,3580,0,3,2,7,8,3579,3685,8363,3580,43,3685,3658,8354,8363,0,3,2,7,8,3685,3658,8354,8363,43,8363,8354,8351,8364,0,3,2,7,8,8363,8354,8351,8364,43,3580,8363,8364,3581,0,3,2,7,8,3580,8363,8364,3581,43,8351,8350,8365,8364,0,3,2,7,8,8351,8350,8365,8364,43,8350,8337,8366,8365,0,3,2,7,8,8350,8337,8366,8365,43,8365,8366,8359,8361,0,3,2,7,8,8365,8366,8359,8361,43,8364,8365,8361,3581,0,3,2,7,8,8364,8365,8361,3581,43,8287,8360,8367,8368,0,3,2,7,8,8287,8360,8367,8368,43,8360,8359,8366,8367,0,3,2,7,8,8360,8359,8366,8367,43,8367,8366,8337,8334,0,3,2,7,8,8367,8366,8337,8334,43,8368,8367,8334,8333,0,3,2,7,8,8368,8367,8334,8333,43,8289,8288,8369,8370,0,3,2,7,8,8289,8288,8369,8370,43,8288,8287,8368,8369,0,3,2,7,8,8288,8287,8368,8369,43,8369,8368,8333,8371,0,3,2,7,8,8369,8368,8333,8371,43,8370,8369,8371,8372,0,3,2,7,8,8370,8369,8371,8372,43,8289,8370,8373,8332,0,3,2,7,8,8289,8370,8373,8332,43,8370,8372,8374,8373,0,3,2,7,8,8370,8372,8374,8373,43,8373,8374,8290,8293,0,3,2,7,8,8373,8374,8290,8293,43,8332,8373,8293,8298,0,3,2,7,8,8332,8373,8293,8298,43,8372,8371,8375,8374,0,3,2,7,8,8372,8371,8375,8374,43,8371,8333,8336,8375,0,3,2,7,8,8371,8333,8336,8375,43,8375,8336,8341,8376,0,3,2,7,8,8375,8336,8341,8376,43,8374,8375,8376,8290,0,3,2,7,8,8374,8375,8376,8290,43,8341,8343,8377,8376,0,3,2,7,8,8341,8343,8377,8376,43,8343,8347,8378,8377,0,3,2,7,8,8343,8347,8378,8377,43,8377,8378,8294,8291,0,3,2,7,8,8377,8378,8294,8291,43,8376,8377,8291,8290,0,3,2,7,8,8376,8377,8291,8290,43,8296,8295,8379,8380,0,3,2,7,8,8296,8295,8379,8380,43,8295,8294,8378,8379,0,3,2,7,8,8295,8294,8378,8379,43,8379,8378,8347,8381,0,3,2,7,8,8379,8378,8347,8381,43,8380,8379,8381,8382,0,3,2,7,8,8380,8379,8381,8382,43,8382,8383,8384,8380,0,3,2,7,8,8382,8383,8384,8380,43,8383,8385,8386,8384,0,3,2,7,8,8383,8385,8386,8384,43,8384,8386,8322,8328,0,3,2,7,8,8384,8386,8322,8328,43,8380,8384,8328,8296,0,3,2,7,8,8380,8384,8328,8296,43,3630,8260,8387,3659,0,3,2,7,8,3630,8260,8387,3659,43,8260,8259,8388,8387,0,3,2,7,8,8260,8259,8388,8387,43,8387,8388,8389,8390,0,3,2,7,8,8387,8388,8389,8390,43,3659,8387,8390,3661,0,3,2,7,8,3659,8387,8390,3661,43,3656,3679,8391,8353,0,3,2,7,8,3656,3679,8391,8353,43,3679,3675,8392,8391,0,3,2,7,8,3679,3675,8392,8391,43,8391,8392,8393,8394,0,3,2,7,8,8391,8392,8393,8394,43,8353,8391,8394,8345,0,3,2,7,8,8353,8391,8394,8345,43,8382,8381,8395,8396,0,3,2,7,8,8382,8381,8395,8396,43,8381,8347,8346,8395,0,3,2,7,8,8381,8347,8346,8395,43,8395,8346,8345,8394,0,3,2,7,8,8395,8346,8345,8394,43,8396,8395,8394,8393,0,3,2,7,8,8396,8395,8394,8393,43,8389,8397,8398,8399,0,3,2,7,8,8389,8397,8398,8399,43,8397,8385,8383,8398,0,3,2,7,8,8397,8385,8383,8398,43,8398,8383,8382,8396,0,3,2,7,8,8398,8383,8382,8396,43,8399,8398,8396,8393,0,3,2,7,8,8399,8398,8396,8393,43,8400,8401,8402,8403,0,3,2,7,8,8400,8401,8402,8403,43,8401,8326,8323,8402,0,3,2,7,8,8401,8326,8323,8402,43,8402,8323,8322,8386,0,3,2,7,8,8402,8323,8322,8386,43,8403,8402,8386,8385,0,3,2,7,8,8403,8402,8386,8385,43,8316,8327,8404,8317,0,3,2,7,8,8316,8327,8404,8317,43,8327,8326,8401,8404,0,3,2,7,8,8327,8326,8401,8404,43,8404,8401,8400,8405,0,3,2,7,8,8404,8401,8400,8405,43,8317,8404,8405,8312,0,3,2,7,8,8317,8404,8405,8312,43,8312,8405,8406,8313,0,3,2,7,8,8312,8405,8406,8313,43,8405,8400,8407,8406,0,3,2,7,8,8405,8400,8407,8406,43,8406,8407,8259,8262,0,3,2,7,8,8406,8407,8259,8262,43,8313,8406,8262,8264,0,3,2,7,8,8313,8406,8262,8264,43,8259,8407,8408,8388,0,3,2,7,8,8259,8407,8408,8388,43,8407,8400,8403,8408,0,3,2,7,8,8407,8400,8403,8408,43,8408,8403,8385,8397,0,3,2,7,8,8408,8403,8385,8397,43,8388,8408,8397,8389,0,3,2,7,8,8388,8408,8397,8389,43,3661,8390,8409,3673,0,3,2,7,8,3661,8390,8409,3673,43,8390,8389,8399,8409,0,3,2,7,8,8390,8389,8399,8409,43,8409,8399,8393,8392,0,3,2,7,8,8409,8399,8393,8392,43,3673,8409,8392,3675,0,3,2,7,8,3673,8409,8392,3675,43,8410,8411,8412,8413,0,3,2,7,8,8410,8411,8412,8413,43,8411,8414,8415,8412,0,3,2,7,8,8411,8414,8415,8412,43,8412,8415,8416,8417,0,3,2,7,8,8412,8415,8416,8417,43,8413,8412,8417,8418,0,3,2,7,8,8413,8412,8417,8418,43,8416,8419,8420,8417,0,3,2,7,8,8416,8419,8420,8417,43,8419,8421,8422,8420,0,3,2,7,8,8419,8421,8422,8420,43,8420,8422,8423,8424,0,3,2,7,8,8420,8422,8423,8424,43,8417,8420,8424,8418,0,3,2,7,8,8417,8420,8424,8418,43,8425,8426,8427,8428,0,3,2,7,8,8425,8426,8427,8428,43,8426,4180,4185,8427,0,3,2,7,8,8426,4180,4185,8427,43,8427,4185,4184,8429,0,3,2,7,8,8427,4185,4184,8429,43,8428,8427,8429,8430,0,3,2,7,8,8428,8427,8429,8430,43,8421,8431,8432,8422,0,3,2,7,8,8421,8431,8432,8422,43,8431,8425,8428,8432,0,3,2,7,8,8431,8425,8428,8432,43,8432,8428,8430,8433,0,3,2,7,8,8432,8428,8430,8433,43,8422,8432,8433,8423,0,3,2,7,8,8422,8432,8433,8423,43,8425,8434,8435,8426,0,3,2,7,8,8425,8434,8435,8426,43,8434,6826,6869,8435,0,3,2,7,8,8434,6826,6869,8435,43,8435,6869,4188,4191,0,3,2,7,8,8435,6869,4188,4191,43,8426,8435,4191,4180,0,3,2,7,8,8426,8435,4191,4180,43,8421,8436,8437,8431,0,3,2,7,8,8421,8436,8437,8431,43,8436,6828,6827,8437,0,3,2,7,8,8436,6828,6827,8437,43,8437,6827,6826,8434,0,3,2,7,8,8437,6827,6826,8434,43,8431,8437,8434,8425,0,3,2,7,8,8431,8437,8434,8425,43,8416,8438,8439,8419,0,3,2,7,8,8416,8438,8439,8419,43,8438,6926,6929,8439,0,3,2,7,8,8438,6926,6929,8439,43,8439,6929,6828,8436,0,3,2,7,8,8439,6929,6828,8436,43,8419,8439,8436,8421,0,3,2,7,8,8419,8439,8436,8421,43,8414,8440,8441,8415,0,3,2,7,8,8414,8440,8441,8415,43,8440,6920,6922,8441,0,3,2,7,8,8440,6920,6922,8441,43,8441,6922,6926,8438,0,3,2,7,8,8441,6922,6926,8438,43,8415,8441,8438,8416,0,3,2,7,8,8415,8441,8438,8416,43,4204,4203,8442,8443,0,3,2,7,8,4204,4203,8442,8443,43,4203,4202,6871,8442,0,3,2,7,8,4203,4202,6871,8442,43,8442,6871,6875,8444,0,3,2,7,8,8442,6871,6875,8444,43,8443,8442,8444,8445,0,3,2,7,8,8443,8442,8444,8445,43,8446,8447,8448,8449,0,3,2,7,8,8446,8447,8448,8449,43,8447,8445,8444,8448,0,3,2,7,8,8447,8445,8444,8448,43,8448,8444,6875,6949,0,3,2,7,8,8448,8444,6875,6949,43,8449,8448,6949,6912,0,3,2,7,8,8449,8448,6949,6912,43,8446,8449,8450,8451,0,3,2,7,8,8446,8449,8450,8451,43,8449,6912,6915,8450,0,3,2,7,8,8449,6912,6915,8450,43,8450,6915,6920,8440,0,3,2,7,8,8450,6915,6920,8440,43,8451,8450,8440,8414,0,3,2,7,8,8451,8450,8440,8414,43,8410,8452,8453,8411,0,3,2,7,8,8410,8452,8453,8411,43,8452,8454,8455,8453,0,3,2,7,8,8452,8454,8455,8453,43,8453,8455,8446,8451,0,3,2,7,8,8453,8455,8446,8451,43,8411,8453,8451,8414,0,3,2,7,8,8411,8453,8451,8414,43,4755,4754,8456,8457,0,3,2,7,8,4755,4754,8456,8457,43,4754,4206,4209,8456,0,3,2,7,8,4754,4206,4209,8456,43,8456,4209,4204,8443,0,3,2,7,8,8456,4209,4204,8443,43,8457,8456,8443,8445,0,3,2,7,8,8457,8456,8443,8445,43,8454,8458,8459,8455,0,3,2,7,8,8454,8458,8459,8455,43,8458,4755,8457,8459,0,3,2,7,8,8458,4755,8457,8459,43,8459,8457,8445,8447,0,3,2,7,8,8459,8457,8445,8447,43,8455,8459,8447,8446,0,3,2,7,8,8455,8459,8447,8446,43,4809,4807,8460,8461,0,3,2,7,8,4809,4807,8460,8461,43,4807,4803,8462,8460,0,3,2,7,8,4807,4803,8462,8460,43,8460,8462,8454,8452,0,3,2,7,8,8460,8462,8454,8452,43,8452,8410,8461,8460,0,3,2,7,8,8452,8410,8461,8460,43,4803,4806,8463,8462,0,3,2,7,8,4803,4806,8463,8462,43,4806,4755,8458,8463,0,3,2,7,8,4806,4755,8458,8463,43,8462,8463,8458,8454,0,3,2,7,8,8462,8463,8458,8454,43,4813,4811,8464,8465,0,3,2,7,8,4813,4811,8464,8465,43,4811,4809,8461,8464,0,3,2,7,8,4811,4809,8461,8464,43,8410,8413,8464,8461,0,3,2,7,8,8410,8413,8464,8461,43,8465,8464,8413,8418,0,3,2,7,8,8465,8464,8413,8418,43,4817,4815,8466,8467,0,3,2,7,8,4817,4815,8466,8467,43,4815,4813,8465,8466,0,3,2,7,8,4815,4813,8465,8466,43,8466,8465,8418,8424,0,3,2,7,8,8466,8465,8418,8424,43,8467,8466,8424,8423,0,3,2,7,8,8467,8466,8424,8423,43,4819,4822,8468,8469,0,3,2,7,8,4819,4822,8468,8469,43,4822,4817,8467,8468,0,3,2,7,8,4822,4817,8467,8468,43,8468,8467,8423,8433,0,3,2,7,8,8468,8467,8423,8433,43,8469,8468,8433,8430,0,3,2,7,8,8469,8468,8433,8430,43,4184,4823,8470,8429,0,3,2,7,8,4184,4823,8470,8429,43,4823,4819,8469,8470,0,3,2,7,8,4823,4819,8469,8470,43,8429,8470,8469,8430,0,3,2,7,8,8429,8470,8469,8430,43,8471,8472,8473,8474,0,3,2,7,8,8471,8472,8473,8474,43,8472,8475,8476,8473,0,3,2,7,8,8472,8475,8476,8473,43,8473,8476,8477,8478,0,3,2,7,8,8473,8476,8477,8478,43,8474,8473,8478,8479,0,3,2,7,8,8474,8473,8478,8479,43,8480,8481,8482,8483,0,3,2,7,8,8480,8481,8482,8483,43,8481,8484,8485,8482,0,3,2,7,8,8481,8484,8485,8482,43,8482,8485,8471,8474,0,3,2,7,8,8482,8485,8471,8474,43,8483,8482,8474,8479,0,3,2,7,8,8483,8482,8474,8479,43,4345,4344,8486,8487,0,3,2,7,8,4345,4344,8486,8487,43,4344,4341,8488,8486,0,3,2,7,8,4344,4341,8488,8486,43,8486,8488,8489,8490,0,3,2,7,8,8486,8488,8489,8490,43,8487,8486,8490,8491,0,3,2,7,8,8487,8486,8490,8491,43,8491,8490,8492,8493,0,3,2,7,8,8491,8490,8492,8493,43,8490,8489,8494,8492,0,3,2,7,8,8490,8489,8494,8492,43,8492,8494,8484,8481,0,3,2,7,8,8492,8494,8484,8481,43,8493,8492,8481,8480,0,3,2,7,8,8493,8492,8481,8480,43,4349,7641,8495,4350,0,3,2,7,8,4349,7641,8495,4350,43,7641,7599,8496,8495,0,3,2,7,8,7641,7599,8496,8495,43,8495,8496,8489,8488,0,3,2,7,8,8495,8496,8489,8488,43,4350,8495,8488,4341,0,3,2,7,8,4350,8495,8488,4341,43,7599,7596,8497,8496,0,3,2,7,8,7599,7596,8497,8496,43,7596,7595,8498,8497,0,3,2,7,8,7596,7595,8498,8497,43,8497,8498,8484,8494,0,3,2,7,8,8497,8498,8484,8494,43,8496,8497,8494,8489,0,3,2,7,8,8496,8497,8494,8489,43,7595,7700,8499,8498,0,3,2,7,8,7595,7700,8499,8498,43,7700,7699,8500,8499,0,3,2,7,8,7700,7699,8500,8499,43,8499,8500,8471,8485,0,3,2,7,8,8499,8500,8471,8485,43,8498,8499,8485,8484,0,3,2,7,8,8498,8499,8485,8484,43,7699,7698,8501,8500,0,3,2,7,8,7699,7698,8501,8500,43,7698,7693,8502,8501,0,3,2,7,8,7698,7693,8502,8501,43,8501,8502,8475,8472,0,3,2,7,8,8501,8502,8475,8472,43,8500,8501,8472,8471,0,3,2,7,8,8500,8501,8472,8471,43,7648,7647,8503,8504,0,3,2,7,8,7648,7647,8503,8504,43,7647,4363,4360,8503,0,3,2,7,8,7647,4363,4360,8503,43,8503,4360,4359,8505,0,3,2,7,8,8503,4360,4359,8505,43,8504,8503,8505,8506,0,3,2,7,8,8504,8503,8505,8506,43,7648,8504,8507,7723,0,3,2,7,8,7648,8504,8507,7723,43,8504,8506,8508,8507,0,3,2,7,8,8504,8506,8508,8507,43,8507,8508,8509,8510,0,3,2,7,8,8507,8508,8509,8510,43,7723,8507,8510,7691,0,3,2,7,8,7723,8507,8510,7691,43,7693,7692,8511,8502,0,3,2,7,8,7693,7692,8511,8502,43,7692,7691,8510,8511,0,3,2,7,8,7692,7691,8510,8511,43,8511,8510,8509,8512,0,3,2,7,8,8511,8510,8509,8512,43,8502,8511,8512,8475,0,3,2,7,8,8502,8511,8512,8475,43,8509,8513,8514,8512,0,3,2,7,8,8509,8513,8514,8512,43,8513,8515,8516,8514,0,3,2,7,8,8513,8515,8516,8514,43,8514,8516,8477,8476,0,3,2,7,8,8514,8516,8477,8476,43,8512,8514,8476,8475,0,3,2,7,8,8512,8514,8476,8475,43,4359,4370,8517,8505,0,3,2,7,8,4359,4370,8517,8505,43,4370,4369,5500,8517,0,3,2,7,8,4370,4369,5500,8517,43,8517,5500,5505,8518,0,3,2,7,8,8517,5500,5505,8518,43,8505,8517,8518,8506,0,3,2,7,8,8505,8517,8518,8506,43,8506,8518,8519,8508,0,3,2,7,8,8506,8518,8519,8508,43,8518,5505,8520,8519,0,3,2,7,8,8518,5505,8520,8519,43,8519,8520,8515,8513,0,3,2,7,8,8519,8520,8515,8513,43,8508,8519,8513,8509,0,3,2,7,8,8508,8519,8513,8509,43,8515,8521,8522,8516,0,3,2,7,8,8515,8521,8522,8516,43,8521,5555,5560,8522,0,3,2,7,8,8521,5555,5560,8522,43,8522,5560,5559,8523,0,3,2,7,8,8522,5560,5559,8523,43,8516,8522,8523,8477,0,3,2,7,8,8516,8522,8523,8477,43,5505,5556,8524,8520,0,3,2,7,8,5505,5556,8524,8520,43,5556,5555,8521,8524,0,3,2,7,8,5556,5555,8521,8524,43,8520,8524,8521,8515,0,3,2,7,8,8520,8524,8521,8515,43,8477,8523,8525,8478,0,3,2,7,8,8477,8523,8525,8478,43,8523,5559,5564,8525,0,3,2,7,8,8523,5559,5564,8525,43,8525,5564,5563,8526,0,3,2,7,8,8525,5564,5563,8526,43,8478,8525,8526,8479,0,3,2,7,8,8478,8525,8526,8479,43,8479,8526,8527,8483,0,3,2,7,8,8479,8526,8527,8483,43,8526,5563,5568,8527,0,3,2,7,8,8526,5563,5568,8527,43,8527,5568,5567,8528,0,3,2,7,8,8527,5568,5567,8528,43,8483,8527,8528,8480,0,3,2,7,8,8483,8527,8528,8480,43,8480,8528,8529,8493,0,3,2,7,8,8480,8528,8529,8493,43,8528,5567,5572,8529,0,3,2,7,8,8528,5567,5572,8529,43,8529,5572,5571,8530,0,3,2,7,8,8529,5572,5571,8530,43,8493,8529,8530,8491,0,3,2,7,8,8493,8529,8530,8491,43,5571,5573,8531,8530,0,3,2,7,8,5571,5573,8531,8530,43,5573,4345,8487,8531,0,3,2,7,8,5573,4345,8487,8531,43,8530,8531,8487,8491,0,3,2,7,8,8530,8531,8487,8491,43,8532,8533,8534,8535,0,3,2,7,8,8532,8533,8534,8535,43,8533,8536,8537,8534,0,3,2,7,8,8533,8536,8537,8534,43,8534,8537,4886,4891,0,3,2,7,8,8534,8537,4886,4891,43,8535,8534,4891,4890,0,3,2,7,8,8535,8534,4891,4890,43,4886,8537,8538,4887,0,3,2,7,8,4886,8537,8538,4887,43,8537,8536,8539,8538,0,3,2,7,8,8537,8536,8539,8538,43,8538,8539,8540,8541,0,3,2,7,8,8538,8539,8540,8541,43,4887,8538,8541,4888,0,3,2,7,8,4887,8538,8541,4888,43,5073,5083,8542,8543,0,3,2,7,8,5073,5083,8542,8543,43,5083,5067,5065,8542,0,3,2,7,8,5083,5067,5065,8542,43,8542,5065,5063,8544,0,3,2,7,8,8542,5065,5063,8544,43,8543,8542,8544,8545,0,3,2,7,8,8543,8542,8544,8545,43,4993,4992,8546,8547,0,3,2,7,8,4993,4992,8546,8547,43,4992,4988,8548,8546,0,3,2,7,8,4992,4988,8548,8546,43,8546,8548,8549,8550,0,3,2,7,8,8546,8548,8549,8550,43,8547,8546,8550,8551,0,3,2,7,8,8547,8546,8550,8551,43,8549,8548,8552,8553,0,3,2,7,8,8549,8548,8552,8553,43,8548,4988,4987,8552,0,3,2,7,8,8548,4988,4987,8552,43,8552,4987,4888,8541,0,3,2,7,8,8552,4987,4888,8541,43,8553,8552,8541,8540,0,3,2,7,8,8553,8552,8541,8540,43,8554,8555,8556,8557,0,3,2,7,8,8554,8555,8556,8557,43,8555,8532,8535,8556,0,3,2,7,8,8555,8532,8535,8556,43,8556,8535,4890,4917,0,3,2,7,8,8556,8535,4890,4917,43,8557,8556,4917,4916,0,3,2,7,8,8557,8556,4917,4916,43,8558,8559,8560,8561,0,3,2,7,8,8558,8559,8560,8561,43,8559,8554,8557,8560,0,3,2,7,8,8559,8554,8557,8560,43,8560,8557,4916,4919,0,3,2,7,8,8560,8557,4916,4919,43,8561,8560,4919,4918,0,3,2,7,8,8561,8560,4919,4918,43,8562,8563,8564,8565,0,3,2,7,8,8562,8563,8564,8565,43,8563,5059,5057,8564,0,3,2,7,8,8563,5059,5057,8564,43,8564,5057,4993,8547,0,3,2,7,8,8564,5057,4993,8547,43,8565,8564,8547,8551,0,3,2,7,8,8565,8564,8547,8551,43,5063,5061,8566,8544,0,3,2,7,8,5063,5061,8566,8544,43,5061,5059,8563,8566,0,3,2,7,8,5061,5059,8563,8566,43,8566,8563,8562,8567,0,3,2,7,8,8566,8563,8562,8567,43,8544,8566,8567,8545,0,3,2,7,8,8544,8566,8567,8545,43,8545,8568,8569,8543,0,3,2,7,8,8545,8568,8569,8543,43,8568,8558,8561,8569,0,3,2,7,8,8568,8558,8561,8569,43,8569,8561,4918,5074,0,3,2,7,8,8569,8561,4918,5074,43,8543,8569,5074,5073,0,3,2,7,8,8543,8569,5074,5073,43,8570,8571,8572,8573,0,3,2,7,8,8570,8571,8572,8573,43,8571,8574,8575,8572,0,3,2,7,8,8571,8574,8575,8572,43,8572,8575,8576,8577,0,3,2,7,8,8572,8575,8576,8577,43,8573,8572,8577,8578,0,3,2,7,8,8573,8572,8577,8578,43,8579,8580,8581,8582,0,3,2,7,8,8579,8580,8581,8582,43,8580,8583,8584,8581,0,3,2,7,8,8580,8583,8584,8581,43,8581,8584,8585,8586,0,3,2,7,8,8581,8584,8585,8586,43,8582,8581,8586,8587,0,3,2,7,8,8582,8581,8586,8587,43,8588,8589,8590,8591,0,3,2,7,8,8588,8589,8590,8591,43,8589,8592,8593,8590,0,3,2,7,8,8589,8592,8593,8590,43,8590,8593,8594,8595,0,3,2,7,8,8590,8593,8594,8595,43,8591,8590,8595,8596,0,3,2,7,8,8591,8590,8595,8596,43,8594,8593,8597,8598,0,3,2,7,8,8594,8593,8597,8598,43,8593,8592,8599,8597,0,3,2,7,8,8593,8592,8599,8597,43,8597,8599,8583,8580,0,3,2,7,8,8597,8599,8583,8580,43,8598,8597,8580,8579,0,3,2,7,8,8598,8597,8580,8579,43,8576,8575,8600,8601,0,3,2,7,8,8576,8575,8600,8601,43,8575,8574,8602,8600,0,3,2,7,8,8575,8574,8602,8600,43,8600,8602,8603,8604,0,3,2,7,8,8600,8602,8603,8604,43,8601,8600,8604,8605,0,3,2,7,8,8601,8600,8604,8605,43,8603,8606,8607,8604,0,3,2,7,8,8603,8606,8607,8604,43,8606,8588,8591,8607,0,3,2,7,8,8606,8588,8591,8607,43,8607,8591,8596,8608,0,3,2,7,8,8607,8591,8596,8608,43,8604,8607,8608,8605,0,3,2,7,8,8604,8607,8608,8605,43,8609,8610,8611,8612,0,3,2,7,8,8609,8610,8611,8612,43,8610,8570,8573,8611,0,3,2,7,8,8610,8570,8573,8611,43,8611,8573,8578,8613,0,3,2,7,8,8611,8573,8578,8613,43,8612,8611,8613,8614,0,3,2,7,8,8612,8611,8613,8614,43,8615,8616,8617,8618,0,3,2,7,8,8615,8616,8617,8618,43,8616,8609,8612,8617,0,3,2,7,8,8616,8609,8612,8617,43,8617,8612,8614,8619,0,3,2,7,8,8617,8612,8614,8619,43,8618,8617,8619,8620,0,3,2,7,8,8618,8617,8619,8620,43,8587,8586,8621,8622,0,3,2,7,8,8587,8586,8621,8622,43,8586,8585,8623,8621,0,3,2,7,8,8586,8585,8623,8621,43,8621,8623,8615,8618,0,3,2,7,8,8621,8623,8615,8618,43,8622,8621,8618,8620,0,3,2,7,8,8622,8621,8618,8620,43,8596,8595,8624,8625,0,3,2,7,8,8596,8595,8624,8625,43,8595,8594,8598,8624,0,3,2,7,8,8595,8594,8598,8624,43,8624,8598,8579,8582,0,3,2,7,8,8624,8598,8579,8582,43,8625,8624,8582,8587,0,3,2,7,8,8625,8624,8582,8587,43,8620,8626,8627,8622,0,3,2,7,8,8620,8626,8627,8622,43,8626,8605,8608,8627,0,3,2,7,8,8626,8605,8608,8627,43,8627,8608,8596,8625,0,3,2,7,8,8627,8608,8596,8625,43,8622,8627,8625,8587,0,3,2,7,8,8622,8627,8625,8587,43,8614,8613,8628,8619,0,3,2,7,8,8614,8613,8628,8619,43,8613,8578,8629,8628,0,3,2,7,8,8613,8578,8629,8628,43,8628,8629,8605,8626,0,3,2,7,8,8628,8629,8605,8626,43,8619,8628,8626,8620,0,3,2,7,8,8619,8628,8626,8620,43,8578,8577,8630,8629,0,3,2,7,8,8578,8577,8630,8629,43,8577,8576,8601,8630,0,3,2,7,8,8577,8576,8601,8630,43,8629,8630,8601,8605,0,3,2,7,8,8629,8630,8601,8605,43,8574,8631,8632,8602,0,3,2,7,8,8574,8631,8632,8602,43,8631,8633,8634,8632,0,3,2,7,8,8631,8633,8634,8632,43,8632,8634,8635,8636,0,3,2,7,8,8632,8634,8635,8636,43,8602,8632,8636,8603,0,3,2,7,8,8602,8632,8636,8603,43,8633,8637,8638,8634,0,3,2,7,8,8633,8637,8638,8634,43,8637,8540,8539,8638,0,3,2,7,8,8637,8540,8539,8638,43,8638,8539,8536,8639,0,3,2,7,8,8638,8539,8536,8639,43,8634,8638,8639,8635,0,3,2,7,8,8634,8638,8639,8635,43,8570,8640,8641,8571,0,3,2,7,8,8570,8640,8641,8571,43,8640,8642,8643,8641,0,3,2,7,8,8640,8642,8643,8641,43,8641,8643,8633,8631,0,3,2,7,8,8641,8643,8633,8631,43,8571,8641,8631,8574,0,3,2,7,8,8571,8641,8631,8574,43,8642,8644,8645,8643,0,3,2,7,8,8642,8644,8645,8643,43,8644,8549,8553,8645,0,3,2,7,8,8644,8549,8553,8645,43,8645,8553,8540,8637,0,3,2,7,8,8645,8553,8540,8637,43,8643,8645,8637,8633,0,3,2,7,8,8643,8645,8637,8633,43,8609,8646,8647,8610,0,3,2,7,8,8609,8646,8647,8610,43,8646,8648,8649,8647,0,3,2,7,8,8646,8648,8649,8647,43,8647,8649,8642,8640,0,3,2,7,8,8647,8649,8642,8640,43,8610,8647,8640,8570,0,3,2,7,8,8610,8647,8640,8570,43,8648,8650,8651,8649,0,3,2,7,8,8648,8650,8651,8649,43,8650,8551,8550,8651,0,3,2,7,8,8650,8551,8550,8651,43,8651,8550,8549,8644,0,3,2,7,8,8651,8550,8549,8644,43,8649,8651,8644,8642,0,3,2,7,8,8649,8651,8644,8642,43,8615,8652,8653,8616,0,3,2,7,8,8615,8652,8653,8616,43,8652,8654,8655,8653,0,3,2,7,8,8652,8654,8655,8653,43,8653,8655,8648,8646,0,3,2,7,8,8653,8655,8648,8646,43,8616,8653,8646,8609,0,3,2,7,8,8616,8653,8646,8609,43,8654,8656,8657,8655,0,3,2,7,8,8654,8656,8657,8655,43,8656,8562,8565,8657,0,3,2,7,8,8656,8562,8565,8657,43,8657,8565,8551,8650,0,3,2,7,8,8657,8565,8551,8650,43,8655,8657,8650,8648,0,3,2,7,8,8655,8657,8650,8648,43,8585,8658,8659,8623,0,3,2,7,8,8585,8658,8659,8623,43,8658,8660,8661,8659,0,3,2,7,8,8658,8660,8661,8659,43,8659,8661,8654,8652,0,3,2,7,8,8659,8661,8654,8652,43,8623,8659,8652,8615,0,3,2,7,8,8623,8659,8652,8615,43,8660,8662,8663,8661,0,3,2,7,8,8660,8662,8663,8661,43,8662,8545,8567,8663,0,3,2,7,8,8662,8545,8567,8663,43,8663,8567,8562,8656,0,3,2,7,8,8663,8567,8562,8656,43,8661,8663,8656,8654,0,3,2,7,8,8661,8663,8656,8654,43,8583,8664,8665,8584,0,3,2,7,8,8583,8664,8665,8584,43,8664,8666,8667,8665,0,3,2,7,8,8664,8666,8667,8665,43,8665,8667,8660,8658,0,3,2,7,8,8665,8667,8660,8658,43,8584,8665,8658,8585,0,3,2,7,8,8584,8665,8658,8585,43,8666,8668,8669,8667,0,3,2,7,8,8666,8668,8669,8667,43,8668,8558,8568,8669,0,3,2,7,8,8668,8558,8568,8669,43,8669,8568,8545,8662,0,3,2,7,8,8669,8568,8545,8662,43,8667,8669,8662,8660,0,3,2,7,8,8667,8669,8662,8660,43,8592,8670,8671,8599,0,3,2,7,8,8592,8670,8671,8599,43,8670,8672,8673,8671,0,3,2,7,8,8670,8672,8673,8671,43,8671,8673,8666,8664,0,3,2,7,8,8671,8673,8666,8664,43,8599,8671,8664,8583,0,3,2,7,8,8599,8671,8664,8583,43,8672,8674,8675,8673,0,3,2,7,8,8672,8674,8675,8673,43,8674,8554,8559,8675,0,3,2,7,8,8674,8554,8559,8675,43,8675,8559,8558,8668,0,3,2,7,8,8675,8559,8558,8668,43,8673,8675,8668,8666,0,3,2,7,8,8673,8675,8668,8666,43,8588,8676,8677,8589,0,3,2,7,8,8588,8676,8677,8589,43,8676,8678,8679,8677,0,3,2,7,8,8676,8678,8679,8677,43,8677,8679,8672,8670,0,3,2,7,8,8677,8679,8672,8670,43,8589,8677,8670,8592,0,3,2,7,8,8589,8677,8670,8592,43,8678,8680,8681,8679,0,3,2,7,8,8678,8680,8681,8679,43,8680,8532,8555,8681,0,3,2,7,8,8680,8532,8555,8681,43,8681,8555,8554,8674,0,3,2,7,8,8681,8555,8554,8674,43,8679,8681,8674,8672,0,3,2,7,8,8679,8681,8674,8672,43,8603,8636,8682,8606,0,3,2,7,8,8603,8636,8682,8606,43,8636,8635,8683,8682,0,3,2,7,8,8636,8635,8683,8682,43,8682,8683,8678,8676,0,3,2,7,8,8682,8683,8678,8676,43,8606,8682,8676,8588,0,3,2,7,8,8606,8682,8676,8588,43,8635,8639,8684,8683,0,3,2,7,8,8635,8639,8684,8683,43,8639,8536,8533,8684,0,3,2,7,8,8639,8536,8533,8684,43,8532,8680,8684,8533,0,3,2,7,8,8532,8680,8684,8533,43,8683,8684,8680,8678,0,3,2,7,8,8683,8684,8680,8678,43,5638,8685,8686,5641,0,3,2,7,8,5638,8685,8686,5641,43,8685,8687,8688,8686,0,3,2,7,8,8685,8687,8688,8686,43,8686,8688,8689,8690,0,3,2,7,8,8686,8688,8689,8690,43,5641,8686,8690,5642,0,3,2,7,8,5641,8686,8690,5642,43,8691,8692,8693,8694,0,3,2,7,8,8691,8692,8693,8694,43,8692,8687,8685,8693,0,3,2,7,8,8692,8687,8685,8693,43,8693,8685,5638,5635,0,3,2,7,8,8693,8685,5638,5635,43,8694,8693,5635,5634,0,3,2,7,8,8694,8693,5635,5634,43,5798,5803,8695,8696,0,3,2,7,8,5798,5803,8695,8696,43,5803,5802,5816,8695,0,3,2,7,8,5803,5802,5816,8695,43,8695,5816,5806,8697,0,3,2,7,8,8695,5816,5806,8697,43,8696,8695,8697,8698,0,3,2,7,8,8696,8695,8697,8698,43,8699,8700,8701,8702,0,3,2,7,8,8699,8700,8701,8702,43,8700,5728,5733,8701,0,3,2,7,8,8700,5728,5733,8701,43,8701,5733,5732,8703,0,3,2,7,8,8701,5733,5732,8703,43,8702,8701,8703,8704,0,3,2,7,8,8702,8701,8703,8704,43,5634,5729,8705,8694,0,3,2,7,8,5634,5729,8705,8694,43,5729,5728,8700,8705,0,3,2,7,8,5729,5728,8700,8705,43,8705,8700,8699,8706,0,3,2,7,8,8705,8700,8699,8706,43,8694,8705,8706,8691,0,3,2,7,8,8694,8705,8706,8691,43,5642,8690,8707,5662,0,3,2,7,8,5642,8690,8707,5662,43,8690,8689,8708,8707,0,3,2,7,8,8690,8689,8708,8707,43,8707,8708,8709,8710,0,3,2,7,8,8707,8708,8709,8710,43,5662,8707,8710,5664,0,3,2,7,8,5662,8707,8710,5664,43,5664,8710,8711,5670,0,3,2,7,8,5664,8710,8711,5670,43,8710,8709,8712,8711,0,3,2,7,8,8710,8709,8712,8711,43,8711,8712,8713,8714,0,3,2,7,8,8711,8712,8713,8714,43,5670,8711,8714,5671,0,3,2,7,8,5670,8711,8714,5671,43,5732,5795,8715,8703,0,3,2,7,8,5732,5795,8715,8703,43,5795,5794,8716,8715,0,3,2,7,8,5795,5794,8716,8715,43,8715,8716,8717,8718,0,3,2,7,8,8715,8716,8717,8718,43,8703,8715,8718,8704,0,3,2,7,8,8703,8715,8718,8704,43,8717,8716,8719,8720,0,3,2,7,8,8717,8716,8719,8720,43,8716,5794,5799,8719,0,3,2,7,8,8716,5794,5799,8719,43,8719,5799,5798,8696,0,3,2,7,8,8719,5799,5798,8696,43,8720,8719,8696,8698,0,3,2,7,8,8720,8719,8696,8698,43,5671,8714,8721,5804,0,3,2,7,8,5671,8714,8721,5804,43,8714,8713,8722,8721,0,3,2,7,8,8714,8713,8722,8721,43,8721,8722,8698,8697,0,3,2,7,8,8721,8722,8698,8697,43,5804,8721,8697,5806,0,3,2,7,8,5804,8721,8697,5806,43,8723,8724,8725,8726,0,3,2,7,8,8723,8724,8725,8726,43,8724,8727,8728,8725,0,3,2,7,8,8724,8727,8728,8725,43,8725,8728,8729,8730,0,3,2,7,8,8725,8728,8729,8730,43,8726,8725,8730,8731,0,3,2,7,8,8726,8725,8730,8731,43,8732,8733,8734,8735,0,3,2,7,8,8732,8733,8734,8735,43,8733,8736,8737,8734,0,3,2,7,8,8733,8736,8737,8734,43,8734,8737,8738,8739,0,3,2,7,8,8734,8737,8738,8739,43,8735,8734,8739,8740,0,3,2,7,8,8735,8734,8739,8740,43,8741,8742,8743,8744,0,3,2,7,8,8741,8742,8743,8744,43,8742,8745,8746,8743,0,3,2,7,8,8742,8745,8746,8743,43,8743,8746,8747,8748,0,3,2,7,8,8743,8746,8747,8748,43,8744,8743,8748,8749,0,3,2,7,8,8744,8743,8748,8749,43,8736,8750,8751,8737,0,3,2,7,8,8736,8750,8751,8737,43,8750,8745,8742,8751,0,3,2,7,8,8750,8745,8742,8751,43,8751,8742,8741,8752,0,3,2,7,8,8751,8742,8741,8752,43,8737,8751,8752,8738,0,3,2,7,8,8737,8751,8752,8738,43,8753,8754,8755,8756,0,3,2,7,8,8753,8754,8755,8756,43,8754,8727,8724,8755,0,3,2,7,8,8754,8727,8724,8755,43,8755,8724,8723,8757,0,3,2,7,8,8755,8724,8723,8757,43,8756,8755,8757,8758,0,3,2,7,8,8756,8755,8757,8758,43,8749,8748,8759,8760,0,3,2,7,8,8749,8748,8759,8760,43,8748,8747,8761,8759,0,3,2,7,8,8748,8747,8761,8759,43,8759,8761,8753,8756,0,3,2,7,8,8759,8761,8753,8756,43,8760,8759,8756,8758,0,3,2,7,8,8760,8759,8756,8758,43,8731,8730,8762,8763,0,3,2,7,8,8731,8730,8762,8763,43,8730,8729,8764,8762,0,3,2,7,8,8730,8729,8764,8762,43,8762,8764,8765,8766,0,3,2,7,8,8762,8764,8765,8766,43,8763,8762,8766,8767,0,3,2,7,8,8763,8762,8766,8767,43,8767,8766,8768,8769,0,3,2,7,8,8767,8766,8768,8769,43,8766,8765,8770,8768,0,3,2,7,8,8766,8765,8770,8768,43,8768,8770,8771,8772,0,3,2,7,8,8768,8770,8771,8772,43,8769,8768,8772,8773,0,3,2,7,8,8769,8768,8772,8773,43,8771,8774,8775,8772,0,3,2,7,8,8771,8774,8775,8772,43,8774,8732,8735,8775,0,3,2,7,8,8774,8732,8735,8775,43,8775,8735,8740,8776,0,3,2,7,8,8775,8735,8740,8776,43,8772,8775,8776,8773,0,3,2,7,8,8772,8775,8776,8773,43,8738,8752,8777,8739,0,3,2,7,8,8738,8752,8777,8739,43,8752,8741,8744,8777,0,3,2,7,8,8752,8741,8744,8777,43,8777,8744,8749,8778,0,3,2,7,8,8777,8744,8749,8778,43,8739,8777,8778,8740,0,3,2,7,8,8739,8777,8778,8740,43,8749,8760,8779,8778,0,3,2,7,8,8749,8760,8779,8778,43,8760,8758,8780,8779,0,3,2,7,8,8760,8758,8780,8779,43,8779,8780,8773,8776,0,3,2,7,8,8779,8780,8773,8776,43,8778,8779,8776,8740,0,3,2,7,8,8778,8779,8776,8740,43,8758,8781,8782,8780,0,3,2,7,8,8758,8781,8782,8780,43,8781,8731,8763,8782,0,3,2,7,8,8781,8731,8763,8782,43,8782,8763,8767,8769,0,3,2,7,8,8782,8763,8767,8769,43,8780,8782,8769,8773,0,3,2,7,8,8780,8782,8769,8773,43,8723,8726,8783,8757,0,3,2,7,8,8723,8726,8783,8757,43,8726,8731,8781,8783,0,3,2,7,8,8726,8731,8781,8783,43,8757,8783,8781,8758,0,3,2,7,8,8757,8783,8781,8758,43,8784,8785,8786,8787,0,3,2,7,8,8784,8785,8786,8787,43,8785,8788,8789,8786,0,3,2,7,8,8785,8788,8789,8786,43,8786,8789,8727,8754,0,3,2,7,8,8786,8789,8727,8754,43,8787,8786,8754,8753,0,3,2,7,8,8787,8786,8754,8753,43,8687,8692,8790,8791,0,3,2,7,8,8687,8692,8790,8791,43,8692,8691,8792,8790,0,3,2,7,8,8692,8691,8792,8790,43,8790,8792,8788,8785,0,3,2,7,8,8790,8792,8788,8785,43,8791,8790,8785,8784,0,3,2,7,8,8791,8790,8785,8784,43,8788,8793,8794,8789,0,3,2,7,8,8788,8793,8794,8789,43,8793,8795,8796,8794,0,3,2,7,8,8793,8795,8796,8794,43,8794,8796,8729,8728,0,3,2,7,8,8794,8796,8729,8728,43,8789,8794,8728,8727,0,3,2,7,8,8789,8794,8728,8727,43,8691,8706,8797,8792,0,3,2,7,8,8691,8706,8797,8792,43,8706,8699,8798,8797,0,3,2,7,8,8706,8699,8798,8797,43,8797,8798,8795,8793,0,3,2,7,8,8797,8798,8795,8793,43,8792,8797,8793,8788,0,3,2,7,8,8792,8797,8793,8788,43,8795,8799,8800,8796,0,3,2,7,8,8795,8799,8800,8796,43,8799,8801,8802,8800,0,3,2,7,8,8799,8801,8802,8800,43,8800,8802,8765,8764,0,3,2,7,8,8800,8802,8765,8764,43,8796,8800,8764,8729,0,3,2,7,8,8796,8800,8764,8729,43,8699,8702,8803,8798,0,3,2,7,8,8699,8702,8803,8798,43,8702,8704,8804,8803,0,3,2,7,8,8702,8704,8804,8803,43,8803,8804,8801,8799,0,3,2,7,8,8803,8804,8801,8799,43,8798,8803,8799,8795,0,3,2,7,8,8798,8803,8799,8795,43,8801,8805,8806,8802,0,3,2,7,8,8801,8805,8806,8802,43,8805,8807,8808,8806,0,3,2,7,8,8805,8807,8808,8806,43,8806,8808,8771,8770,0,3,2,7,8,8806,8808,8771,8770,43,8802,8806,8770,8765,0,3,2,7,8,8802,8806,8770,8765,43,8704,8718,8809,8804,0,3,2,7,8,8704,8718,8809,8804,43,8718,8717,8810,8809,0,3,2,7,8,8718,8717,8810,8809,43,8809,8810,8807,8805,0,3,2,7,8,8809,8810,8807,8805,43,8804,8809,8805,8801,0,3,2,7,8,8804,8809,8805,8801,43,8807,8811,8812,8808,0,3,2,7,8,8807,8811,8812,8808,43,8811,8813,8814,8812,0,3,2,7,8,8811,8813,8814,8812,43,8812,8814,8732,8774,0,3,2,7,8,8812,8814,8732,8774,43,8808,8812,8774,8771,0,3,2,7,8,8808,8812,8774,8771,43,8717,8720,8815,8810,0,3,2,7,8,8717,8720,8815,8810,43,8720,8698,8816,8815,0,3,2,7,8,8720,8698,8816,8815,43,8815,8816,8813,8811,0,3,2,7,8,8815,8816,8813,8811,43,8810,8815,8811,8807,0,3,2,7,8,8810,8815,8811,8807,43,8813,8817,8818,8814,0,3,2,7,8,8813,8817,8818,8814,43,8817,8819,8820,8818,0,3,2,7,8,8817,8819,8820,8818,43,8818,8820,8736,8733,0,3,2,7,8,8818,8820,8736,8733,43,8814,8818,8733,8732,0,3,2,7,8,8814,8818,8733,8732,43,8698,8722,8821,8816,0,3,2,7,8,8698,8722,8821,8816,43,8722,8713,8822,8821,0,3,2,7,8,8722,8713,8822,8821,43,8821,8822,8819,8817,0,3,2,7,8,8821,8822,8819,8817,43,8816,8821,8817,8813,0,3,2,7,8,8816,8821,8817,8813,43,8819,8823,8824,8820,0,3,2,7,8,8819,8823,8824,8820,43,8823,8825,8826,8824,0,3,2,7,8,8823,8825,8826,8824,43,8824,8826,8745,8750,0,3,2,7,8,8824,8826,8745,8750,43,8820,8824,8750,8736,0,3,2,7,8,8820,8824,8750,8736,43,8713,8712,8827,8822,0,3,2,7,8,8713,8712,8827,8822,43,8712,8709,8828,8827,0,3,2,7,8,8712,8709,8828,8827,43,8827,8828,8825,8823,0,3,2,7,8,8827,8828,8825,8823,43,8822,8827,8823,8819,0,3,2,7,8,8822,8827,8823,8819,43,8825,8829,8830,8826,0,3,2,7,8,8825,8829,8830,8826,43,8829,8831,8832,8830,0,3,2,7,8,8829,8831,8832,8830,43,8830,8832,8747,8746,0,3,2,7,8,8830,8832,8747,8746,43,8826,8830,8746,8745,0,3,2,7,8,8826,8830,8746,8745,43,8709,8708,8833,8828,0,3,2,7,8,8709,8708,8833,8828,43,8708,8689,8834,8833,0,3,2,7,8,8708,8689,8834,8833,43,8833,8834,8831,8829,0,3,2,7,8,8833,8834,8831,8829,43,8828,8833,8829,8825,0,3,2,7,8,8828,8833,8829,8825,43,8831,8835,8836,8832,0,3,2,7,8,8831,8835,8836,8832,43,8835,8784,8787,8836,0,3,2,7,8,8835,8784,8787,8836,43,8836,8787,8753,8761,0,3,2,7,8,8836,8787,8753,8761,43,8832,8836,8761,8747,0,3,2,7,8,8832,8836,8761,8747,43,8689,8688,8837,8834,0,3,2,7,8,8689,8688,8837,8834,43,8688,8687,8791,8837,0,3,2,7,8,8688,8687,8791,8837,43,8837,8791,8784,8835,0,3,2,7,8,8837,8791,8784,8835,43,8834,8837,8835,8831,0,3,2,7,8,8834,8837,8835,8831], + 'faces': [43,0,1,2,3,0,0,1,2,3,0,1,2,3,43,1,4,5,2,0,1,4,5,2,1,4,5,2,43,2,5,6,7,0,2,5,6,7,2,5,6,7,43,3,2,7,8,0,3,2,7,8,3,2,7,8,43,9,10,11,12,0,9,10,11,12,9,10,11,12,43,10,13,14,11,0,10,13,14,11,10,13,14,11,43,11,14,15,16,0,11,14,15,16,11,14,15,16,43,12,11,16,17,0,12,11,16,17,12,11,16,17,43,18,19,20,21,0,18,19,20,21,18,19,20,21,43,19,22,23,20,0,19,22,23,20,19,22,23,20,43,20,23,24,25,0,20,23,24,25,20,23,24,25,43,21,20,25,26,0,21,20,25,26,21,20,25,26,43,15,14,27,28,0,15,14,27,28,15,14,27,28,43,14,13,29,27,0,14,13,29,27,14,13,29,27,43,27,29,30,31,0,27,29,30,31,27,29,30,31,43,28,27,31,26,0,28,27,31,26,28,27,31,26,43,26,31,32,21,0,26,31,32,21,26,31,32,21,43,31,30,33,32,0,31,30,33,32,31,30,33,32,43,32,33,34,35,0,32,33,34,35,32,33,34,35,43,21,32,35,18,0,21,32,35,18,21,32,35,18,43,36,37,38,39,0,36,37,38,39,36,37,38,39,43,37,15,28,38,0,37,15,28,38,37,15,28,38,43,38,28,26,25,0,38,28,26,25,38,28,26,25,43,39,38,25,24,0,39,38,25,24,39,38,25,24,43,40,41,42,43,0,40,41,42,43,40,41,42,43,43,41,36,39,42,0,41,36,39,42,41,36,39,42,43,42,39,24,44,0,42,39,24,44,42,39,24,44,43,43,42,44,45,0,43,42,44,45,43,42,44,45,43,46,47,48,49,0,46,47,48,49,46,47,48,49,43,47,40,43,48,0,47,40,43,48,47,40,43,48,43,48,43,45,50,0,48,43,45,50,48,43,45,50,43,49,48,50,51,0,49,48,50,51,49,48,50,51,43,52,53,54,55,0,52,53,54,55,52,53,54,55,43,53,56,57,54,0,53,56,57,54,53,56,57,54,43,54,57,58,59,0,54,57,58,59,54,57,58,59,43,55,54,59,60,0,55,54,59,60,55,54,59,60,43,52,55,61,62,0,52,55,61,62,52,55,61,62,43,55,60,63,61,0,55,60,63,61,55,60,63,61,43,61,63,40,47,0,61,63,40,47,61,63,40,47,43,62,61,47,46,0,62,61,47,46,62,61,47,46,43,64,65,66,67,0,64,65,66,67,64,65,66,67,43,65,68,69,66,0,65,68,69,66,65,68,69,66,43,66,69,70,71,0,66,69,70,71,66,69,70,71,43,67,66,71,72,0,67,66,71,72,67,66,71,72,43,73,74,75,76,0,73,74,75,76,73,74,75,76,43,74,77,78,75,0,74,77,78,75,74,77,78,75,43,75,78,79,80,0,75,78,79,80,75,78,79,80,43,76,75,80,81,0,76,75,80,81,76,75,80,81,43,77,82,83,78,0,77,82,83,78,77,82,83,78,43,82,6,84,83,0,82,6,84,83,82,6,84,83,43,83,84,85,86,0,83,84,85,86,83,84,85,86,43,78,83,86,79,0,78,83,86,79,78,83,86,79,43,79,86,87,88,0,79,86,87,88,79,86,87,88,43,86,85,89,87,0,86,85,89,87,86,85,89,87,43,87,89,90,91,0,87,89,90,91,87,89,90,91,43,88,87,91,92,0,88,87,91,92,88,87,91,92,43,81,80,93,94,0,81,80,93,94,81,80,93,94,43,80,79,88,93,0,80,79,88,93,80,79,88,93,43,93,88,92,95,0,93,88,92,95,93,88,92,95,43,94,93,95,64,0,94,93,95,64,94,93,95,64,43,96,97,98,99,0,96,97,98,99,96,97,98,99,43,97,73,76,98,0,97,73,76,98,97,73,76,98,43,98,76,81,100,0,98,76,81,100,98,76,81,100,43,99,98,100,101,0,99,98,100,101,99,98,100,101,43,81,94,102,100,0,81,94,102,100,81,94,102,100,43,94,64,67,102,0,94,64,67,102,94,64,67,102,43,102,67,72,103,0,102,67,72,103,102,67,72,103,43,100,102,103,101,0,100,102,103,101,100,102,103,101,43,68,65,104,105,0,68,65,104,105,68,65,104,105,43,65,64,95,104,0,65,64,95,104,65,64,95,104,43,104,95,92,106,0,104,95,92,106,104,95,92,106,43,105,104,106,107,0,105,104,106,107,105,104,106,107,43,92,91,108,106,0,92,91,108,106,92,91,108,106,43,91,90,109,108,0,91,90,109,108,91,90,109,108,43,108,109,110,111,0,108,109,110,111,108,109,110,111,43,106,108,111,107,0,106,108,111,107,106,108,111,107,43,110,112,113,111,0,110,112,113,111,110,112,113,111,43,112,114,115,113,0,112,114,115,113,112,114,115,113,43,113,115,116,117,0,113,115,116,117,113,115,116,117,43,111,113,117,107,0,111,113,117,107,111,113,117,107,43,118,119,120,121,0,118,119,120,121,118,119,120,121,43,119,114,122,120,0,119,114,122,120,119,114,122,120,43,120,122,123,124,0,120,122,123,124,120,122,123,124,43,121,120,124,125,0,121,120,124,125,121,120,124,125,43,126,127,128,129,0,126,127,128,129,126,127,128,129,43,127,116,115,128,0,127,116,115,128,127,116,115,128,43,128,115,114,119,0,128,115,114,119,128,115,114,119,43,129,128,119,118,0,129,128,119,118,129,128,119,118,43,130,131,132,133,0,130,131,132,133,130,131,132,133,43,131,126,129,132,0,131,126,129,132,131,126,129,132,43,132,129,118,134,0,132,129,118,134,132,129,118,134,43,133,132,134,135,0,133,132,134,135,133,132,134,135,43,136,137,138,139,0,136,137,138,139,136,137,138,139,43,137,140,141,138,0,137,140,141,138,137,140,141,138,43,138,141,142,143,0,138,141,142,143,138,141,142,143,43,139,138,143,135,0,139,138,143,135,139,138,143,135,43,9,144,145,146,0,9,144,145,146,9,144,145,146,43,144,147,148,145,0,144,147,148,145,144,147,148,145,43,145,148,149,150,0,145,148,149,150,145,148,149,150,43,146,145,150,151,0,146,145,150,151,146,145,150,151,43,151,152,153,154,0,151,152,153,154,151,152,153,154,43,152,155,156,153,0,152,155,156,153,152,155,156,153,43,153,156,142,141,0,153,156,142,141,153,156,142,141,43,154,153,141,140,0,154,153,141,140,154,153,141,140,43,34,33,157,158,0,34,33,157,158,34,33,157,158,43,33,30,159,157,0,33,30,159,157,33,30,159,157,43,157,159,151,154,0,157,159,151,154,157,159,151,154,43,158,157,154,140,0,158,157,154,140,158,157,154,140,43,30,29,160,159,0,30,29,160,159,30,29,160,159,43,29,13,10,160,0,29,13,10,160,29,13,10,160,43,160,10,9,146,0,160,10,9,146,160,10,9,146,43,159,160,146,151,0,159,160,146,151,159,160,146,151,43,155,152,161,162,0,155,152,161,162,155,152,161,162,43,152,151,150,161,0,152,151,150,161,152,151,150,161,43,162,161,150,149,0,162,161,150,149,162,161,150,149,43,163,164,165,166,0,163,164,165,166,163,164,165,166,43,164,167,168,165,0,164,167,168,165,164,167,168,165,43,165,168,136,139,0,165,168,136,139,165,168,136,139,43,166,165,139,135,0,166,165,139,135,166,165,139,135,43,169,170,171,172,0,169,170,171,172,169,170,171,172,43,170,173,174,171,0,170,173,174,171,170,173,174,171,43,171,174,167,164,0,171,174,167,164,171,174,167,164,43,172,171,164,163,0,172,171,164,163,172,171,164,163,43,175,176,177,178,0,175,176,177,178,175,176,177,178,43,176,173,170,177,0,176,173,170,177,176,173,170,177,43,177,170,169,179,0,177,170,169,179,177,170,169,179,43,178,177,179,180,0,178,177,179,180,178,177,179,180,43,181,182,183,184,0,181,182,183,184,181,182,183,184,43,182,185,186,183,0,182,185,186,183,182,185,186,183,43,183,186,187,188,0,183,186,187,188,183,186,187,188,43,184,183,188,189,0,184,183,188,189,184,183,188,189,43,190,191,192,193,0,190,191,192,193,190,191,192,193,43,191,194,195,192,0,191,194,195,192,191,194,195,192,43,192,195,181,184,0,192,195,181,184,192,195,181,184,43,193,192,184,189,0,193,192,184,189,193,192,184,189,43,51,50,196,197,0,51,50,196,197,51,50,196,197,43,50,45,198,196,0,50,45,198,196,50,45,198,196,43,196,198,194,191,0,196,198,194,191,196,198,194,191,43,197,196,191,190,0,197,196,191,190,197,196,191,190,43,24,23,199,44,0,24,23,199,44,24,23,199,44,43,23,22,200,199,0,23,22,200,199,23,22,200,199,43,199,200,194,198,0,199,200,194,198,199,200,194,198,43,44,199,198,45,0,44,199,198,45,44,199,198,45,43,194,200,201,195,0,194,200,201,195,194,200,201,195,43,200,22,19,201,0,200,22,19,201,200,22,19,201,43,201,19,18,202,0,201,19,18,202,201,19,18,202,43,195,201,202,181,0,195,201,202,181,195,201,202,181,43,203,204,205,206,0,203,204,205,206,203,204,205,206,43,204,207,208,205,0,204,207,208,205,204,207,208,205,43,205,208,173,176,0,205,208,173,176,205,208,173,176,43,206,205,176,175,0,206,205,176,175,206,205,176,175,43,209,210,211,212,0,209,210,211,212,209,210,211,212,43,210,207,204,211,0,210,207,204,211,210,207,204,211,43,211,204,203,213,0,211,204,203,213,211,204,203,213,43,212,211,213,185,0,212,211,213,185,212,211,213,185,43,207,214,215,208,0,207,214,215,208,207,214,215,208,43,214,216,217,215,0,214,216,217,215,214,216,217,215,43,215,217,167,174,0,215,217,167,174,215,217,167,174,43,208,215,174,173,0,208,215,174,173,208,215,174,173,43,34,218,219,35,0,34,218,219,35,34,218,219,35,43,218,220,221,219,0,218,220,221,219,218,220,221,219,43,219,221,209,222,0,219,221,209,222,219,221,209,222,43,35,219,222,18,0,35,219,222,18,35,219,222,18,43,136,223,224,137,0,136,223,224,137,136,223,224,137,43,223,220,218,224,0,223,220,218,224,223,220,218,224,43,224,218,34,158,0,224,218,34,158,224,218,34,158,43,137,224,158,140,0,137,224,158,140,137,224,158,140,43,167,217,225,168,0,167,217,225,168,167,217,225,168,43,217,216,226,225,0,217,216,226,225,217,216,226,225,43,225,226,220,223,0,225,226,220,223,225,226,220,223,43,168,225,223,136,0,168,225,223,136,168,225,223,136,43,220,226,227,221,0,220,226,227,221,220,226,227,221,43,226,216,214,227,0,226,216,214,227,226,216,214,227,43,227,214,207,210,0,227,214,207,210,227,214,207,210,43,221,227,210,209,0,221,227,210,209,221,227,210,209,43,209,212,228,222,0,209,212,228,222,209,212,228,222,43,212,185,182,228,0,212,185,182,228,212,185,182,228,43,228,182,181,202,0,228,182,181,202,228,182,181,202,43,222,228,202,18,0,222,228,202,18,222,228,202,18,43,185,213,229,186,0,185,213,229,186,185,213,229,186,43,213,203,230,229,0,213,203,230,229,213,203,230,229,43,229,230,231,232,0,229,230,231,232,229,230,231,232,43,186,229,232,187,0,186,229,232,187,186,229,232,187,43,203,206,233,230,0,203,206,233,230,203,206,233,230,43,206,175,234,233,0,206,175,234,233,206,175,234,233,43,233,234,235,236,0,233,234,235,236,233,234,235,236,43,230,233,236,231,0,230,233,236,231,230,233,236,231,43,237,238,239,240,0,237,238,239,240,237,238,239,240,43,238,241,242,239,0,238,241,242,239,238,241,242,239,43,239,242,243,244,0,239,242,243,244,239,242,243,244,43,240,239,244,180,0,240,239,244,180,240,239,244,180,43,180,244,245,178,0,180,244,245,178,180,244,245,178,43,244,243,246,245,0,244,243,246,245,244,243,246,245,43,245,246,235,234,0,245,246,235,234,245,246,235,234,43,178,245,234,175,0,178,245,234,175,178,245,234,175,43,247,248,249,250,0,247,248,249,250,247,248,249,250,43,248,237,240,249,0,248,237,240,249,248,237,240,249,43,249,240,180,179,0,249,240,180,179,249,240,180,179,43,250,249,179,169,0,250,249,179,169,250,249,179,169,43,125,251,252,253,0,125,251,252,253,125,251,252,253,43,251,247,250,252,0,251,247,250,252,251,247,250,252,43,252,250,169,172,0,252,250,169,172,252,250,169,172,43,253,252,172,163,0,253,252,172,163,253,252,172,163,43,118,121,254,134,0,118,121,254,134,118,121,254,134,43,121,125,253,254,0,121,125,253,254,121,125,253,254,43,254,253,163,166,0,254,253,163,166,254,253,163,166,43,134,254,166,135,0,134,254,166,135,134,254,166,135,43,123,255,256,124,0,123,255,256,124,123,255,256,124,43,255,257,258,256,0,255,257,258,256,255,257,258,256,43,256,258,247,251,0,256,258,247,251,256,258,247,251,43,124,256,251,125,0,124,256,251,125,124,256,251,125,43,259,260,261,262,0,259,260,261,262,259,260,261,262,43,260,263,264,261,0,260,263,264,261,260,263,264,261,43,261,264,265,266,0,261,264,265,266,261,264,265,266,43,262,261,266,267,0,262,261,266,267,262,261,266,267,43,265,268,269,266,0,265,268,269,266,265,268,269,266,43,268,270,271,269,0,268,270,271,269,268,270,271,269,43,269,271,272,273,0,269,271,272,273,269,271,272,273,43,266,269,273,267,0,266,269,273,267,266,269,273,267,43,274,275,276,277,0,274,275,276,277,274,275,276,277,43,275,278,279,276,0,275,278,279,276,275,278,279,276,43,276,279,280,281,0,276,279,280,281,276,279,280,281,43,277,276,281,282,0,277,276,281,282,277,276,281,282,43,280,279,283,284,0,280,279,283,284,280,279,283,284,43,279,278,285,283,0,279,278,285,283,279,278,285,283,43,283,285,286,287,0,283,285,286,287,283,285,286,287,43,284,283,287,272,0,284,283,287,272,284,283,287,272,43,288,289,290,291,0,288,289,290,291,288,289,290,291,43,289,292,293,290,0,289,292,293,290,289,292,293,290,43,290,293,294,295,0,290,293,294,295,290,293,294,295,43,291,290,295,296,0,291,290,295,296,291,290,295,296,43,297,298,299,300,0,297,298,299,300,297,298,299,300,43,298,301,302,299,0,298,301,302,299,298,301,302,299,43,299,302,303,304,0,299,302,303,304,299,302,303,304,43,300,299,304,305,0,300,299,304,305,300,299,304,305,43,306,307,308,309,0,306,307,308,309,306,307,308,309,43,307,288,310,308,0,307,288,310,308,307,288,310,308,43,308,310,297,300,0,308,310,297,300,308,310,297,300,43,309,308,300,305,0,309,308,300,305,309,308,300,305,43,286,311,312,313,0,286,311,312,313,286,311,312,313,43,311,297,310,312,0,311,297,310,312,311,297,310,312,43,312,310,288,291,0,312,310,288,291,312,310,288,291,43,313,312,291,296,0,313,312,291,296,313,312,291,296,43,306,314,315,307,0,306,314,315,307,306,314,315,307,43,314,316,317,315,0,314,316,317,315,314,316,317,315,43,315,317,292,289,0,315,317,292,289,315,317,292,289,43,307,315,289,288,0,307,315,289,288,307,315,289,288,43,296,295,318,319,0,296,295,318,319,296,295,318,319,43,295,294,320,318,0,295,294,320,318,295,294,320,318,43,318,320,321,322,0,318,320,321,322,318,320,321,322,43,319,318,322,267,0,319,318,322,267,319,318,322,267,43,272,287,323,273,0,272,287,323,273,272,287,323,273,43,287,286,313,323,0,287,286,313,323,287,286,313,323,43,323,313,296,319,0,323,313,296,319,323,313,296,319,43,273,323,319,267,0,273,323,319,267,273,323,319,267,43,278,324,325,285,0,278,324,325,285,278,324,325,285,43,324,301,298,325,0,324,301,298,325,324,301,298,325,43,325,298,297,311,0,325,298,297,311,325,298,297,311,43,285,325,311,286,0,285,325,311,286,285,325,311,286,43,303,302,326,327,0,303,302,326,327,303,302,326,327,43,302,301,324,326,0,302,301,324,326,302,301,324,326,43,326,324,278,275,0,326,324,278,275,326,324,278,275,43,327,326,275,274,0,327,326,275,274,327,326,275,274,43,305,304,328,329,0,305,304,328,329,305,304,328,329,43,304,303,330,328,0,304,303,330,328,304,303,330,328,43,328,330,331,332,0,328,330,331,332,328,330,331,332,43,329,328,332,333,0,329,328,332,333,329,328,332,333,43,303,327,334,330,0,303,327,334,330,303,327,334,330,43,327,274,335,334,0,327,274,335,334,327,274,335,334,43,334,335,336,337,0,334,335,336,337,334,335,336,337,43,330,334,337,331,0,330,334,337,331,330,334,337,331,43,282,338,339,277,0,282,338,339,277,282,338,339,277,43,338,340,341,339,0,338,340,341,339,338,340,341,339,43,339,341,336,335,0,339,341,336,335,339,341,336,335,43,277,339,335,274,0,277,339,335,274,277,339,335,274,43,342,343,344,345,0,342,343,344,345,342,343,344,345,43,343,346,347,344,0,343,346,347,344,343,346,347,344,43,344,347,348,349,0,344,347,348,349,344,347,348,349,43,345,344,349,350,0,345,344,349,350,345,344,349,350,43,336,341,351,352,0,336,341,351,352,336,341,351,352,43,341,340,353,351,0,341,340,353,351,341,340,353,351,43,351,353,354,355,0,351,353,354,355,351,353,354,355,43,352,351,355,356,0,352,351,355,356,352,351,355,356,43,357,358,359,360,0,357,358,359,360,357,358,359,360,43,358,361,362,359,0,358,361,362,359,358,361,362,359,43,359,362,363,364,0,359,362,363,364,359,362,363,364,43,360,359,364,365,0,360,359,364,365,360,359,364,365,43,366,367,368,369,0,366,367,368,369,366,367,368,369,43,367,370,371,368,0,367,370,371,368,367,370,371,368,43,368,371,372,373,0,368,371,372,373,368,371,372,373,43,369,368,373,374,0,369,368,373,374,369,368,373,374,43,375,376,377,378,0,375,376,377,378,375,376,377,378,43,376,379,380,377,0,376,379,380,377,376,379,380,377,43,377,380,374,373,0,377,380,374,373,377,380,374,373,43,378,377,373,372,0,378,377,373,372,378,377,373,372,43,381,382,383,384,0,381,382,383,384,381,382,383,384,43,382,0,3,383,0,382,0,3,383,382,0,3,383,43,383,3,8,385,0,383,3,8,385,383,3,8,385,43,384,383,385,342,0,384,383,385,342,384,383,385,342,43,386,387,388,389,0,386,387,388,389,386,387,388,389,43,387,390,391,388,0,387,390,391,388,387,390,391,388,43,388,391,392,393,0,388,391,392,393,388,391,392,393,43,389,388,393,363,0,389,388,393,363,389,388,393,363,43,259,262,394,395,0,259,262,394,395,259,262,394,395,43,262,267,322,394,0,262,267,322,394,262,267,322,394,43,394,322,321,396,0,394,322,321,396,394,322,321,396,43,395,394,396,397,0,395,394,396,397,395,394,396,397,43,398,399,400,401,0,398,399,400,401,398,399,400,401,43,399,259,395,400,0,399,259,395,400,399,259,395,400,43,400,395,397,402,0,400,395,397,402,400,395,397,402,43,401,400,402,403,0,401,400,402,403,401,400,402,403,43,404,405,406,407,0,404,405,406,407,404,405,406,407,43,405,408,409,406,0,405,408,409,406,405,408,409,406,43,406,409,365,364,0,406,409,365,364,406,409,365,364,43,407,406,364,363,0,407,406,364,363,407,406,364,363,43,403,410,411,401,0,403,410,411,401,403,410,411,401,43,410,412,413,411,0,410,412,413,411,410,412,413,411,43,411,413,414,415,0,411,413,414,415,411,413,414,415,43,401,411,415,398,0,401,411,415,398,401,411,415,398,43,412,416,417,413,0,412,416,417,413,412,416,417,413,43,416,418,419,417,0,416,418,419,417,416,418,419,417,43,417,419,420,421,0,417,419,420,421,417,419,420,421,43,413,417,421,414,0,413,417,421,414,413,417,421,414,43,414,421,422,423,0,414,421,422,423,414,421,422,423,43,421,420,424,422,0,421,420,424,422,421,420,424,422,43,422,424,425,426,0,422,424,425,426,422,424,425,426,43,423,422,426,408,0,423,422,426,408,423,422,426,408,43,398,415,427,428,0,398,415,427,428,398,415,427,428,43,415,414,423,427,0,415,414,423,427,415,414,423,427,43,427,423,408,405,0,427,423,408,405,427,423,408,405,43,428,427,405,404,0,428,427,405,404,428,427,405,404,43,404,429,430,428,0,404,429,430,428,404,429,430,428,43,429,431,432,430,0,429,431,432,430,429,431,432,430,43,430,432,259,399,0,430,432,259,399,430,432,259,399,43,428,430,399,398,0,428,430,399,398,428,430,399,398,43,433,434,435,436,0,433,434,435,436,433,434,435,436,43,434,437,438,435,0,434,437,438,435,434,437,438,435,43,435,438,439,440,0,435,438,439,440,435,438,439,440,43,436,435,440,350,0,436,435,440,350,436,435,440,350,43,280,441,442,281,0,280,441,442,281,280,441,442,281,43,441,437,434,442,0,441,437,434,442,441,437,434,442,43,442,434,433,443,0,442,434,433,443,442,434,433,443,43,281,442,443,282,0,281,442,443,282,281,442,443,282,43,270,444,445,271,0,270,444,445,271,270,444,445,271,43,444,437,441,445,0,444,437,441,445,444,437,441,445,43,445,441,280,284,0,445,441,280,284,445,441,280,284,43,271,445,284,272,0,271,445,284,272,271,445,284,272,43,270,268,446,447,0,270,268,446,447,270,268,446,447,43,268,265,264,446,0,268,265,264,446,268,265,264,446,43,446,264,263,448,0,446,264,263,448,446,264,263,448,43,447,446,448,449,0,447,446,448,449,447,446,448,449,43,449,448,450,451,0,449,448,450,451,449,448,450,451,43,448,263,260,450,0,448,263,260,450,448,263,260,450,43,450,260,259,432,0,450,260,259,432,450,260,259,432,43,451,450,432,431,0,451,450,432,431,451,450,432,431,43,437,444,452,438,0,437,444,452,438,437,444,452,438,43,444,270,447,452,0,444,270,447,452,444,270,447,452,43,452,447,449,453,0,452,447,449,453,452,447,449,453,43,438,452,453,439,0,438,452,453,439,438,452,453,439,43,439,453,454,455,0,439,453,454,455,439,453,454,455,43,453,449,451,454,0,453,449,451,454,453,449,451,454,43,454,451,431,456,0,454,451,431,456,454,451,431,456,43,455,454,456,392,0,455,454,456,392,455,454,456,392,43,392,456,457,393,0,392,456,457,393,392,456,457,393,43,456,431,429,457,0,456,431,429,457,456,431,429,457,43,457,429,404,407,0,457,429,404,407,457,429,404,407,43,393,457,407,363,0,393,457,407,363,393,457,407,363,43,439,455,458,440,0,439,455,458,440,439,455,458,440,43,455,392,391,458,0,455,392,391,458,455,392,391,458,43,458,391,390,459,0,458,391,390,459,458,391,390,459,43,440,458,459,350,0,440,458,459,350,440,458,459,350,43,390,460,461,459,0,390,460,461,459,390,460,461,459,43,460,381,384,461,0,460,381,384,461,460,381,384,461,43,461,384,342,345,0,461,384,342,345,461,384,342,345,43,459,461,345,350,0,459,461,345,350,459,461,345,350,43,375,462,463,376,0,375,462,463,376,375,462,463,376,43,462,0,382,463,0,462,0,382,463,462,0,382,463,43,463,382,381,464,0,463,382,381,464,463,382,381,464,43,376,463,464,379,0,376,463,464,379,376,463,464,379,43,390,387,465,460,0,390,387,465,460,390,387,465,460,43,387,386,466,465,0,387,386,466,465,387,386,466,465,43,465,466,379,464,0,465,466,379,464,465,466,379,464,43,460,465,464,381,0,460,465,464,381,460,465,464,381,43,379,466,467,380,0,379,466,467,380,379,466,467,380,43,466,386,389,467,0,466,386,389,467,466,386,389,467,43,467,389,363,468,0,467,389,363,468,467,389,363,468,43,380,467,468,374,0,380,467,468,374,380,467,468,374,43,363,362,469,468,0,363,362,469,468,363,362,469,468,43,362,361,470,469,0,362,361,470,469,362,361,470,469,43,469,470,366,369,0,469,470,366,369,469,470,366,369,43,468,469,369,374,0,468,469,369,374,468,469,369,374,43,366,470,471,472,0,366,470,471,472,366,470,471,472,43,470,361,358,471,0,470,361,358,471,470,361,358,471,43,471,358,357,473,0,471,358,357,473,471,358,357,473,43,472,471,473,474,0,472,471,473,474,472,471,473,474,43,475,476,477,478,0,475,476,477,478,475,476,477,478,43,476,474,473,477,0,476,474,473,477,476,474,473,477,43,477,473,357,479,0,477,473,357,479,477,473,357,479,43,478,477,479,480,0,478,477,479,480,478,477,479,480,43,481,482,483,484,0,481,482,483,484,481,482,483,484,43,482,366,472,483,0,482,366,472,483,482,366,472,483,43,484,483,472,474,0,484,483,472,474,484,483,472,474,43,485,486,487,488,0,485,486,487,488,485,486,487,488,43,486,489,490,487,0,486,489,490,487,486,489,490,487,43,487,490,481,491,0,487,490,481,491,487,490,481,491,43,488,487,491,492,0,488,487,491,492,488,487,491,492,43,492,491,493,494,0,492,491,493,494,492,491,493,494,43,491,481,484,493,0,491,481,484,493,491,481,484,493,43,493,484,474,476,0,493,484,474,476,493,484,474,476,43,494,493,476,475,0,494,493,476,475,494,493,476,475,43,408,426,495,409,0,408,426,495,409,408,426,495,409,43,426,425,496,495,0,426,425,496,495,426,425,496,495,43,495,496,497,498,0,495,496,497,498,495,496,497,498,43,409,495,498,365,0,409,495,498,365,409,495,498,365,43,357,360,499,479,0,357,360,499,479,357,360,499,479,43,360,365,498,499,0,360,365,498,499,360,365,498,499,43,499,498,497,500,0,499,498,497,500,499,498,497,500,43,479,499,500,480,0,479,499,500,480,479,499,500,480,43,489,486,501,502,0,489,486,501,502,489,486,501,502,43,486,485,503,501,0,486,485,503,501,486,485,503,501,43,501,503,504,505,0,501,503,504,505,501,503,504,505,43,502,501,505,506,0,502,501,505,506,502,501,505,506,43,507,508,509,510,0,507,508,509,510,507,508,509,510,43,508,489,502,509,0,508,489,502,509,508,489,502,509,43,509,502,506,511,0,509,502,506,511,509,502,506,511,43,510,509,511,512,0,510,509,511,512,510,509,511,512,43,366,482,513,514,0,366,482,513,514,366,482,513,514,43,482,481,490,513,0,482,481,490,513,482,481,490,513,43,513,490,489,508,0,513,490,489,508,513,490,489,508,43,514,513,508,507,0,514,513,508,507,514,513,508,507,43,515,516,517,518,0,515,516,517,518,515,516,517,518,43,516,370,367,517,0,516,370,367,517,516,370,367,517,43,517,367,366,514,0,517,367,366,514,517,367,366,514,43,518,517,514,507,0,518,517,514,507,518,517,514,507,43,519,520,521,522,0,519,520,521,522,519,520,521,522,43,520,523,524,521,0,520,523,524,521,520,523,524,521,43,521,524,525,526,0,521,524,525,526,521,524,525,526,43,522,521,526,527,0,522,521,526,527,522,521,526,527,43,528,529,530,531,0,528,529,530,531,528,529,530,531,43,529,532,533,530,0,529,532,533,530,529,532,533,530,43,530,533,523,520,0,530,533,523,520,530,533,523,520,43,531,530,520,519,0,531,530,520,519,531,530,520,519,43,528,531,534,535,0,528,531,534,535,528,531,534,535,43,531,519,536,534,0,531,519,536,534,531,519,536,534,43,534,536,537,538,0,534,536,537,538,534,536,537,538,43,535,534,538,356,0,535,534,538,356,535,534,538,356,43,532,529,539,540,0,532,529,539,540,532,529,539,540,43,529,528,541,539,0,529,528,541,539,529,528,541,539,43,540,539,541,542,0,540,539,541,542,540,539,541,542,43,356,355,543,535,0,356,355,543,535,356,355,543,535,43,355,354,544,543,0,355,354,544,543,355,354,544,543,43,543,544,542,541,0,543,544,542,541,543,544,542,541,43,535,543,541,528,0,535,543,541,528,535,543,541,528,43,545,546,547,548,0,545,546,547,548,545,546,547,548,43,546,549,550,547,0,546,549,550,547,546,549,550,547,43,547,550,73,97,0,547,550,73,97,547,550,73,97,43,548,547,97,96,0,548,547,97,96,548,547,97,96,43,342,385,551,343,0,342,385,551,343,342,385,551,343,43,385,8,552,551,0,385,8,552,551,385,8,552,551,43,551,552,553,554,0,551,552,553,554,551,552,553,554,43,343,551,554,346,0,343,551,554,346,343,551,554,346,43,553,552,555,556,0,553,552,555,556,553,552,555,556,43,552,8,7,555,0,552,8,7,555,552,8,7,555,43,555,7,6,82,0,555,7,6,82,555,7,6,82,43,556,555,82,77,0,556,555,82,77,556,555,82,77,43,549,557,558,550,0,549,557,558,550,549,557,558,550,43,557,553,556,558,0,557,553,556,558,557,553,556,558,43,558,556,77,74,0,558,556,77,74,558,556,77,74,43,550,558,74,73,0,550,558,74,73,550,558,74,73,43,559,560,561,562,0,559,560,561,562,559,560,561,562,43,560,346,554,561,0,560,346,554,561,560,346,554,561,43,561,554,553,557,0,561,554,553,557,561,554,553,557,43,562,561,557,549,0,562,561,557,549,562,561,557,549,43,563,564,565,566,0,563,564,565,566,563,564,565,566,43,564,559,562,565,0,564,559,562,565,564,559,562,565,43,565,562,549,546,0,565,562,549,546,565,562,549,546,43,566,565,546,545,0,566,565,546,545,566,565,546,545,43,563,566,567,568,0,563,566,567,568,563,566,567,568,43,566,545,569,567,0,566,545,569,567,566,545,569,567,43,567,569,570,571,0,567,569,570,571,567,569,570,571,43,568,567,571,542,0,568,567,571,542,568,567,571,542,43,559,572,573,560,0,559,572,573,560,559,572,573,560,43,572,574,575,573,0,572,574,575,573,572,574,575,573,43,573,575,348,347,0,573,575,348,347,573,575,348,347,43,560,573,347,346,0,560,573,347,346,560,573,347,346,43,350,349,576,436,0,350,349,576,436,350,349,576,436,43,349,348,577,576,0,349,348,577,576,349,348,577,576,43,576,577,578,579,0,576,577,578,579,576,577,578,579,43,436,576,579,433,0,436,576,579,433,436,576,579,433,43,340,580,581,353,0,340,580,581,353,340,580,581,353,43,580,578,582,581,0,580,578,582,581,580,578,582,581,43,581,582,583,584,0,581,582,583,584,581,582,583,584,43,353,581,584,354,0,353,581,584,354,353,581,584,354,43,433,579,585,443,0,433,579,585,443,433,579,585,443,43,579,578,580,585,0,579,578,580,585,579,578,580,585,43,585,580,340,338,0,585,580,340,338,585,580,340,338,43,443,585,338,282,0,443,585,338,282,443,585,338,282,43,348,575,586,577,0,348,575,586,577,348,575,586,577,43,575,574,587,586,0,575,574,587,586,575,574,587,586,43,586,587,583,582,0,586,587,583,582,586,587,583,582,43,577,586,582,578,0,577,586,582,578,577,586,582,578,43,583,587,588,589,0,583,587,588,589,583,587,588,589,43,587,574,572,588,0,587,574,572,588,587,574,572,588,43,588,572,559,564,0,588,572,559,564,588,572,559,564,43,589,588,564,563,0,589,588,564,563,589,588,564,563,43,354,584,590,544,0,354,584,590,544,354,584,590,544,43,584,583,589,590,0,584,583,589,590,584,583,589,590,43,590,589,563,568,0,590,589,563,568,590,589,563,568,43,544,590,568,542,0,544,590,568,542,544,590,568,542,43,591,592,593,594,0,591,592,593,594,591,592,593,594,43,592,532,540,593,0,592,532,540,593,592,532,540,593,43,593,540,542,571,0,593,540,542,571,593,540,542,571,43,594,593,571,570,0,594,593,571,570,594,593,571,570,43,595,596,597,598,0,595,596,597,598,595,596,597,598,43,596,599,600,597,0,596,599,600,597,596,599,600,597,43,597,600,601,602,0,597,600,601,602,597,600,601,602,43,598,597,602,603,0,598,597,602,603,598,597,602,603,43,604,605,606,607,0,604,605,606,607,604,605,606,607,43,605,599,596,606,0,605,599,596,606,605,599,596,606,43,606,596,595,608,0,606,596,595,608,606,596,595,608,43,607,606,608,609,0,607,606,608,609,607,606,608,609,43,601,600,610,611,0,601,600,610,611,601,600,610,611,43,600,599,605,610,0,600,599,605,610,600,599,605,610,43,610,605,604,612,0,610,605,604,612,610,605,604,612,43,611,610,612,613,0,611,610,612,613,611,610,612,613,43,614,615,616,617,0,614,615,616,617,614,615,616,617,43,615,618,619,616,0,615,618,619,616,615,618,619,616,43,616,619,591,620,0,616,619,591,620,616,619,591,620,43,617,616,620,621,0,617,616,620,621,617,616,620,621,43,622,623,624,625,0,622,623,624,625,622,623,624,625,43,623,570,569,624,0,623,570,569,624,623,570,569,624,43,624,569,545,548,0,624,569,545,548,624,569,545,548,43,625,624,548,96,0,625,624,548,96,625,624,548,96,43,626,627,628,629,0,626,627,628,629,626,627,628,629,43,627,622,625,628,0,627,622,625,628,627,622,625,628,43,628,625,96,99,0,628,625,96,99,628,625,96,99,43,629,628,99,101,0,629,628,99,101,629,628,99,101,43,621,620,630,631,0,621,620,630,631,621,620,630,631,43,620,591,594,630,0,620,591,594,630,620,591,594,630,43,630,594,570,623,0,630,594,570,623,630,594,570,623,43,631,630,623,622,0,631,630,623,622,631,630,623,622,43,603,632,633,634,0,603,632,633,634,603,632,633,634,43,632,621,631,633,0,632,621,631,633,632,621,631,633,43,633,631,622,627,0,633,631,622,627,633,631,622,627,43,634,633,627,626,0,634,633,627,626,634,633,627,626,43,601,635,636,602,0,601,635,636,602,601,635,636,602,43,635,614,617,636,0,635,614,617,636,635,614,617,636,43,636,617,621,632,0,636,617,621,632,636,617,621,632,43,602,636,632,603,0,602,636,632,603,602,636,632,603,43,601,611,637,635,0,601,611,637,635,601,611,637,635,43,611,613,638,637,0,611,613,638,637,611,613,638,637,43,637,638,639,640,0,637,638,639,640,637,638,639,640,43,635,637,640,614,0,635,637,640,614,635,637,640,614,43,639,641,642,640,0,639,641,642,640,639,641,642,640,43,641,643,644,642,0,641,643,644,642,641,643,644,642,43,642,644,618,615,0,642,644,618,615,642,644,618,615,43,640,642,615,614,0,640,642,615,614,640,642,615,614,43,523,533,645,646,0,523,533,645,646,523,533,645,646,43,533,532,592,645,0,533,532,592,645,533,532,592,645,43,645,592,591,619,0,645,592,591,619,645,592,591,619,43,646,645,619,618,0,646,645,619,618,646,645,619,618,43,643,647,648,644,0,643,647,648,644,643,647,648,644,43,647,525,524,648,0,647,525,524,648,647,525,524,648,43,648,524,523,646,0,648,524,523,646,648,524,523,646,43,644,648,646,618,0,644,648,646,618,644,648,646,618,43,519,522,649,536,0,519,522,649,536,519,522,649,536,43,522,527,650,649,0,522,527,650,649,522,527,650,649,43,649,650,651,652,0,649,650,651,652,649,650,651,652,43,536,649,652,537,0,536,649,652,537,536,649,652,537,43,537,652,653,654,0,537,652,653,654,537,652,653,654,43,652,651,655,653,0,652,651,655,653,652,651,655,653,43,653,655,656,657,0,653,655,656,657,653,655,656,657,43,654,653,657,658,0,654,653,657,658,654,653,657,658,43,356,538,659,660,0,356,538,659,660,356,538,659,660,43,538,537,654,659,0,538,537,654,659,538,537,654,659,43,659,654,658,661,0,659,654,658,661,659,654,658,661,43,660,659,661,662,0,660,659,661,662,660,659,661,662,43,333,332,663,664,0,333,332,663,664,333,332,663,664,43,332,331,665,663,0,332,331,665,663,332,331,665,663,43,663,665,662,666,0,663,665,662,666,663,665,662,666,43,664,663,666,667,0,664,663,666,667,664,663,666,667,43,331,337,668,665,0,331,337,668,665,331,337,668,665,43,337,336,352,668,0,337,336,352,668,337,336,352,668,43,668,352,356,660,0,668,352,356,660,668,352,356,660,43,665,668,660,662,0,665,668,660,662,665,668,660,662,43,667,666,669,670,0,667,666,669,670,667,666,669,670,43,666,662,661,669,0,666,662,661,669,666,662,661,669,43,669,661,658,671,0,669,661,658,671,669,661,658,671,43,670,669,671,672,0,670,669,671,672,670,669,671,672,43,672,671,673,674,0,672,671,673,674,672,671,673,674,43,671,658,657,673,0,671,658,657,673,671,658,657,673,43,673,657,656,675,0,673,657,656,675,673,657,656,675,43,674,673,675,676,0,674,673,675,676,674,673,675,676,43,677,678,679,680,0,677,678,679,680,677,678,679,680,43,678,147,144,679,0,678,147,144,679,678,147,144,679,43,679,144,9,12,0,679,144,9,12,679,144,9,12,43,680,679,12,17,0,680,679,12,17,680,679,12,17,43,60,681,682,63,0,60,681,682,63,60,681,682,63,43,681,683,684,682,0,681,683,684,682,681,683,684,682,43,682,684,36,41,0,682,684,36,41,682,684,36,41,43,63,682,41,40,0,63,682,41,40,63,682,41,40,43,58,685,686,59,0,58,685,686,59,58,685,686,59,43,685,687,688,686,0,685,687,688,686,685,687,688,686,43,686,688,683,681,0,686,688,683,681,686,688,683,681,43,59,686,681,60,0,59,686,681,60,59,686,681,60,43,683,689,690,684,0,683,689,690,684,683,689,690,684,43,689,17,16,690,0,689,17,16,690,689,17,16,690,43,690,16,15,37,0,690,16,15,37,690,16,15,37,43,684,690,37,36,0,684,690,37,36,684,690,37,36,43,687,691,692,688,0,687,691,692,688,687,691,692,688,43,691,677,680,692,0,691,677,680,692,691,677,680,692,43,692,680,17,689,0,692,680,17,689,692,680,17,689,43,688,692,689,683,0,688,692,689,683,688,692,689,683,43,693,694,695,696,0,693,694,695,696,693,694,695,696,43,694,697,698,695,0,694,697,698,695,694,697,698,695,43,695,698,699,700,0,695,698,699,700,695,698,699,700,43,696,695,700,701,0,696,695,700,701,696,695,700,701,43,702,703,704,705,0,702,703,704,705,702,703,704,705,43,703,706,707,704,0,703,706,707,704,703,706,707,704,43,704,707,257,255,0,704,707,257,255,704,707,257,255,43,705,704,255,123,0,705,704,255,123,705,704,255,123,43,110,708,709,112,0,110,708,709,112,110,708,709,112,43,708,702,705,709,0,708,702,705,709,708,702,705,709,43,709,705,123,122,0,709,705,123,122,709,705,123,122,43,112,709,122,114,0,112,709,122,114,112,709,122,114,43,90,710,711,109,0,90,710,711,109,90,710,711,109,43,710,712,713,711,0,710,712,713,711,710,712,713,711,43,711,713,702,708,0,711,713,702,708,711,713,702,708,43,109,711,708,110,0,109,711,708,110,109,711,708,110,43,712,714,715,713,0,712,714,715,713,712,714,715,713,43,714,701,716,715,0,714,701,716,715,714,701,716,715,43,715,716,706,703,0,715,716,706,703,715,716,706,703,43,713,715,703,702,0,713,715,703,702,713,715,703,702,43,6,5,717,84,0,6,5,717,84,6,5,717,84,43,5,4,718,717,0,5,4,718,717,5,4,718,717,43,717,718,719,720,0,717,718,719,720,717,718,719,720,43,84,717,720,85,0,84,717,720,85,84,717,720,85,43,719,718,721,722,0,719,718,721,722,719,718,721,722,43,718,4,1,721,0,718,4,1,721,718,4,1,721,43,0,462,721,1,0,0,462,721,1,0,462,721,1,43,722,721,462,375,0,722,721,462,375,722,721,462,375,43,719,722,723,724,0,719,722,723,724,719,722,723,724,43,722,375,378,723,0,722,375,378,723,722,375,378,723,43,723,378,372,725,0,723,378,372,725,723,378,372,725,43,724,723,725,693,0,724,723,725,693,724,723,725,693,43,90,89,726,710,0,90,89,726,710,90,89,726,710,43,89,85,720,726,0,89,85,720,726,89,85,720,726,43,726,720,719,727,0,726,720,719,727,726,720,719,727,43,710,726,727,712,0,710,726,727,712,710,726,727,712,43,693,696,728,724,0,693,696,728,724,693,696,728,724,43,696,701,714,728,0,696,701,714,728,696,701,714,728,43,728,714,712,727,0,728,714,712,727,728,714,712,727,43,724,728,727,719,0,724,728,727,719,724,728,727,719,43,257,729,730,258,0,257,729,730,258,257,729,730,258,43,729,731,732,730,0,729,731,732,730,729,731,732,730,43,730,732,237,248,0,730,732,237,248,730,732,237,248,43,258,730,248,247,0,258,730,248,247,258,730,248,247,43,706,733,734,707,0,706,733,734,707,706,733,734,707,43,733,735,736,734,0,733,735,736,734,733,735,736,734,43,734,736,731,729,0,734,736,731,729,734,736,731,729,43,707,734,729,257,0,707,734,729,257,707,734,729,257,43,731,737,738,732,0,731,737,738,732,731,737,738,732,43,737,739,740,738,0,737,739,740,738,737,739,740,738,43,738,740,241,238,0,738,740,241,238,738,740,241,238,43,732,738,238,237,0,732,738,238,237,732,738,238,237,43,699,741,742,743,0,699,741,742,743,699,741,742,743,43,741,744,745,742,0,741,744,745,742,741,744,745,742,43,742,745,746,747,0,742,745,746,747,742,745,746,747,43,743,742,747,735,0,743,742,747,735,743,742,747,735,43,735,747,748,736,0,735,747,748,736,735,747,748,736,43,747,746,749,748,0,747,746,749,748,747,746,749,748,43,748,749,739,737,0,748,749,739,737,748,749,739,737,43,736,748,737,731,0,736,748,737,731,736,748,737,731,43,701,700,750,716,0,701,700,750,716,701,700,750,716,43,700,699,743,750,0,700,699,743,750,700,699,743,750,43,750,743,735,733,0,750,743,735,733,750,743,735,733,43,716,750,733,706,0,716,750,733,706,716,750,733,706,43,372,371,751,752,0,372,371,751,752,372,371,751,752,43,371,370,516,751,0,371,370,516,751,371,370,516,751,43,751,516,515,753,0,751,516,515,753,751,516,515,753,43,752,751,753,754,0,752,751,753,754,752,751,753,754,43,754,755,756,757,0,754,755,756,757,754,755,756,757,43,755,758,759,756,0,755,758,759,756,755,758,759,756,43,756,759,760,761,0,756,759,760,761,756,759,760,761,43,757,756,761,697,0,757,756,761,697,757,756,761,697,43,754,757,762,752,0,754,757,762,752,754,757,762,752,43,757,697,694,762,0,757,697,694,762,757,697,694,762,43,762,694,693,725,0,762,694,693,725,762,694,693,725,43,752,762,725,372,0,752,762,725,372,752,762,725,372,43,763,764,765,766,0,763,764,765,766,763,764,765,766,43,764,515,518,765,0,764,515,518,765,764,515,518,765,43,765,518,507,510,0,765,518,507,510,765,518,507,510,43,766,765,510,512,0,766,765,510,512,766,765,510,512,43,754,753,767,755,0,754,753,767,755,754,753,767,755,43,753,515,764,767,0,753,515,764,767,753,515,764,767,43,767,764,763,768,0,767,764,763,768,767,764,763,768,43,755,767,768,758,0,755,767,768,758,755,767,768,758,43,697,761,769,698,0,697,761,769,698,697,761,769,698,43,761,760,770,769,0,761,760,770,769,761,760,770,769,43,769,770,744,741,0,769,770,744,741,769,770,744,741,43,698,769,741,699,0,698,769,741,699,698,769,741,699,43,771,772,773,774,0,771,772,773,774,771,772,773,774,43,772,775,776,773,0,772,775,776,773,772,775,776,773,43,773,776,142,156,0,773,776,142,156,773,776,142,156,43,774,773,156,155,0,774,773,156,155,774,773,156,155,43,142,776,777,143,0,142,776,777,143,142,776,777,143,43,776,775,778,777,0,776,775,778,777,776,775,778,777,43,777,778,130,133,0,777,778,130,133,777,778,130,133,43,143,777,133,135,0,143,777,133,135,143,777,133,135,43,779,780,781,782,0,779,780,781,782,779,780,781,782,43,780,783,784,781,0,780,783,784,781,780,783,784,781,43,781,784,785,786,0,781,784,785,786,781,784,785,786,43,782,781,786,787,0,782,781,786,787,782,781,786,787,43,788,789,790,791,0,788,789,790,791,788,789,790,791,43,789,792,793,790,0,789,792,793,790,789,792,793,790,43,790,793,794,795,0,790,793,794,795,790,793,794,795,43,791,790,795,796,0,791,790,795,796,791,790,795,796,43,797,798,799,800,0,797,798,799,800,797,798,799,800,43,798,801,802,799,0,798,801,802,799,798,801,802,799,43,799,802,803,804,0,799,802,803,804,799,802,803,804,43,800,799,804,805,0,800,799,804,805,800,799,804,805,43,806,807,808,809,0,806,807,808,809,806,807,808,809,43,807,792,789,808,0,807,792,789,808,807,792,789,808,43,808,789,788,810,0,808,789,788,810,808,789,788,810,43,809,808,810,805,0,809,808,810,805,809,808,810,805,43,811,812,813,814,0,811,812,813,814,811,812,813,814,43,812,806,809,813,0,812,806,809,813,812,806,809,813,43,813,809,805,804,0,813,809,805,804,813,809,805,804,43,814,813,804,803,0,814,813,804,803,814,813,804,803,43,805,810,815,800,0,805,810,815,800,805,810,815,800,43,810,788,816,815,0,810,788,816,815,810,788,816,815,43,815,816,817,818,0,815,816,817,818,815,816,817,818,43,800,815,818,797,0,800,815,818,797,800,815,818,797,43,797,818,819,820,0,797,818,819,820,797,818,819,820,43,818,817,821,819,0,818,817,821,819,818,817,821,819,43,819,821,822,823,0,819,821,822,823,819,821,822,823,43,820,819,823,824,0,820,819,823,824,820,819,823,824,43,824,823,825,826,0,824,823,825,826,824,823,825,826,43,823,822,827,825,0,823,822,827,825,823,822,827,825,43,825,827,46,49,0,825,827,46,828,825,827,46,49,43,826,825,49,51,0,826,825,828,829,826,825,49,51,43,828,829,830,831,0,830,831,832,833,828,829,830,831,43,829,56,53,830,0,831,56,53,832,829,56,53,830,43,830,53,52,832,0,832,53,52,834,830,53,52,832,43,831,830,832,833,0,833,832,834,835,831,830,832,833,43,822,834,835,827,0,822,836,837,827,822,834,835,827,43,834,833,832,835,0,836,835,834,837,834,833,832,835,43,835,832,52,62,0,837,834,52,62,835,832,52,62,43,827,835,62,46,0,827,837,62,46,827,835,62,46,43,836,837,838,839,0,838,839,840,841,836,837,838,839,43,837,840,841,838,0,839,842,843,840,837,840,841,838,43,838,841,842,843,0,840,843,844,845,838,841,842,843,43,839,838,843,844,0,841,840,845,846,839,838,843,844,43,845,846,847,848,0,847,848,849,850,845,846,847,848,43,846,849,850,847,0,848,851,852,849,846,849,850,847,43,847,850,851,852,0,849,852,853,854,847,850,851,852,43,848,847,852,853,0,850,849,854,855,848,847,852,853,43,854,855,856,857,0,856,857,858,859,854,855,856,857,43,855,779,858,856,0,857,779,860,858,855,779,858,856,43,856,858,849,846,0,858,860,851,848,856,858,849,846,43,857,856,846,845,0,859,858,848,847,857,856,846,845,43,859,860,861,862,0,861,862,863,864,859,860,861,862,43,860,854,857,861,0,862,856,859,863,860,854,857,861,43,861,857,845,863,0,863,859,847,865,861,857,845,863,43,862,861,863,864,0,864,863,865,866,862,861,863,864,43,864,863,865,866,0,866,865,867,868,864,863,865,866,43,863,845,848,865,0,865,847,850,867,863,845,848,865,43,865,848,853,867,0,867,850,855,869,865,848,853,867,43,866,865,867,842,0,868,867,869,844,866,865,867,842,43,853,852,868,869,0,855,854,870,871,853,852,868,869,43,852,851,870,868,0,854,853,872,870,852,851,870,868,43,868,870,871,872,0,870,872,873,874,868,870,871,872,43,869,868,872,873,0,871,870,874,875,869,868,872,873,43,844,843,874,875,0,846,845,876,877,844,843,874,875,43,843,842,867,874,0,845,844,869,876,843,842,867,874,43,874,867,853,869,0,876,869,855,871,874,867,853,869,43,875,874,869,873,0,877,876,871,875,875,874,869,873,43,864,866,876,877,0,866,868,878,879,864,866,876,877,43,866,842,841,876,0,868,844,843,878,866,842,841,876,43,876,841,840,878,0,878,843,842,880,876,841,840,878,43,877,876,878,879,0,879,878,880,881,877,876,878,879,43,880,881,882,883,0,882,883,884,885,880,881,882,883,43,881,859,862,882,0,883,861,864,884,881,859,862,882,43,882,862,864,877,0,884,864,866,879,882,862,864,877,43,883,882,877,879,0,885,884,879,881,883,882,877,879,43,884,885,886,887,0,886,887,888,889,884,885,886,887,43,885,888,889,886,0,887,890,891,888,885,888,889,886,43,886,889,880,883,0,888,891,882,885,886,889,880,883,43,887,886,883,879,0,889,888,885,881,887,886,883,879,43,890,891,892,893,0,892,893,894,895,890,891,892,893,43,891,888,894,892,0,893,890,896,894,891,888,894,892,43,892,894,895,896,0,894,896,897,898,892,894,895,896,43,893,892,896,897,0,895,894,898,899,893,892,896,897,43,888,885,898,894,0,890,887,900,896,888,885,898,894,43,885,884,899,898,0,887,886,901,900,885,884,899,898,43,898,899,900,901,0,900,901,902,903,898,899,900,901,43,894,898,901,895,0,896,900,903,897,894,898,901,895,43,895,901,902,903,0,897,903,904,905,895,901,902,903,43,901,900,904,902,0,903,902,906,904,901,900,904,902,43,902,904,905,906,0,904,906,907,908,902,904,905,906,43,903,902,906,907,0,905,904,908,909,903,902,906,907,43,908,909,910,911,0,910,911,912,913,908,909,910,911,43,909,912,913,910,0,911,914,915,912,909,912,913,910,43,910,913,914,915,0,912,915,916,917,910,913,914,915,43,911,910,915,907,0,913,912,917,909,911,910,915,907,43,916,917,918,919,0,918,919,920,921,916,917,918,919,43,917,920,921,918,0,919,922,923,920,917,920,921,918,43,918,921,794,922,0,920,923,794,924,918,921,794,922,43,919,918,922,923,0,921,920,924,925,919,918,922,923,43,908,924,925,909,0,910,926,927,911,908,924,925,909,43,924,926,927,925,0,926,928,929,927,924,926,927,925,43,925,927,923,928,0,927,929,925,930,925,927,923,928,43,909,925,928,912,0,911,927,930,914,909,925,928,912,43,923,929,930,928,0,925,931,932,930,923,929,930,928,43,929,806,812,930,0,931,806,812,932,929,806,812,930,43,930,812,811,931,0,932,812,811,933,930,812,811,931,43,928,930,931,912,0,930,932,933,914,928,930,931,912,43,794,793,932,922,0,794,793,934,924,794,793,932,922,43,793,792,807,932,0,793,792,807,934,793,792,807,932,43,932,807,806,929,0,934,807,806,931,932,807,806,929,43,922,932,929,923,0,924,934,931,925,922,932,929,923,43,923,927,933,919,0,925,929,935,921,923,927,933,919,43,927,926,934,933,0,929,928,936,935,927,926,934,933,43,919,933,934,916,0,921,935,936,918,919,933,934,916,43,914,935,936,915,0,916,937,938,917,914,935,936,915,43,935,937,938,936,0,937,939,940,938,935,937,938,936,43,936,938,939,940,0,938,940,941,942,936,938,939,940,43,915,936,940,907,0,917,938,942,909,915,936,940,907,43,937,941,942,938,0,939,943,944,940,937,941,942,938,43,941,943,944,942,0,943,945,946,944,941,943,944,942,43,942,944,945,946,0,944,946,947,948,942,944,945,946,43,938,942,946,939,0,940,944,948,941,938,942,946,939,43,945,944,947,948,0,947,946,949,950,945,944,947,948,43,944,943,949,947,0,946,945,951,949,944,943,949,947,43,947,949,950,951,0,949,951,952,953,947,949,950,951,43,948,947,951,952,0,950,949,953,954,948,947,951,952,43,187,953,954,188,0,955,956,957,958,187,953,954,188,43,953,955,956,954,0,956,959,960,957,953,955,956,954,43,954,956,957,958,0,957,960,961,962,954,956,957,958,43,188,954,958,189,0,958,957,962,963,188,954,958,189,43,957,959,960,958,0,961,964,965,962,957,959,960,958,43,959,961,962,960,0,964,966,967,965,959,961,962,960,43,960,962,190,193,0,965,967,968,969,960,962,190,193,43,958,960,193,189,0,962,965,969,963,958,960,193,189,43,961,963,964,962,0,966,970,971,967,961,963,964,962,43,963,824,826,964,0,970,824,826,971,963,824,826,964,43,964,826,51,197,0,971,826,829,972,964,826,51,197,43,962,964,197,190,0,967,971,972,968,962,964,197,190,43,961,965,966,963,0,966,973,974,970,961,965,966,963,43,965,801,798,966,0,973,801,798,974,965,801,798,966,43,966,798,797,820,0,974,798,797,820,966,798,797,820,43,963,966,820,824,0,970,974,820,824,963,966,820,824,43,803,802,967,968,0,803,802,975,976,803,802,967,968,43,802,801,965,967,0,802,801,973,975,802,801,965,967,43,967,965,961,959,0,975,973,966,964,967,965,961,959,43,968,967,959,957,0,976,975,964,961,968,967,959,957,43,943,969,970,949,0,945,977,978,951,943,969,970,949,43,969,971,972,970,0,977,979,980,978,969,971,972,970,43,970,972,973,974,0,978,980,981,982,970,972,973,974,43,949,970,974,950,0,951,978,982,952,949,970,974,950,43,973,972,975,976,0,981,980,983,984,973,972,975,976,43,972,971,977,975,0,980,979,985,983,972,971,977,975,43,975,977,978,979,0,983,985,986,987,975,977,978,979,43,976,975,979,955,0,984,983,987,959,976,975,979,955,43,937,980,981,941,0,939,988,989,943,937,980,981,941,43,980,982,983,981,0,988,990,991,989,980,982,983,981,43,981,983,971,969,0,989,991,979,977,981,983,971,969,43,941,981,969,943,0,943,989,977,945,941,981,969,943,43,978,984,985,986,0,986,992,993,994,978,984,985,986,43,984,987,988,985,0,992,995,996,993,984,987,988,985,43,985,988,811,814,0,993,996,811,814,985,988,811,814,43,986,985,814,803,0,994,993,814,803,986,985,814,803,43,811,988,989,931,0,811,996,997,933,811,988,989,931,43,988,987,990,989,0,996,995,998,997,988,987,990,989,43,989,990,914,913,0,997,998,916,915,989,990,914,913,43,931,989,913,912,0,933,997,915,914,931,989,913,912,43,987,991,992,990,0,995,999,1000,998,987,991,992,990,43,991,982,980,992,0,999,990,988,1000,991,982,980,992,43,992,980,937,935,0,1000,988,939,937,992,980,937,935,43,990,992,935,914,0,998,1000,937,916,990,992,935,914,43,971,983,993,977,0,979,991,1001,985,971,983,993,977,43,983,982,991,993,0,991,990,999,1001,983,982,991,993,43,993,991,987,984,0,1001,999,995,992,993,991,987,984,43,977,993,984,978,0,985,1001,992,986,977,993,984,978,43,957,956,994,968,0,961,960,1002,976,957,956,994,968,43,956,955,979,994,0,960,959,987,1002,956,955,979,994,43,994,979,978,986,0,1002,987,986,994,994,979,978,986,43,968,994,986,803,0,976,1002,994,803,968,994,986,803,43,231,995,996,232,0,1003,1004,1005,1006,231,995,996,232,43,995,973,976,996,0,1004,981,984,1005,995,973,976,996,43,996,976,955,953,0,1005,984,959,956,996,976,955,953,43,232,996,953,187,0,1006,1005,956,955,232,996,953,187,43,235,997,998,236,0,1007,1008,1009,1010,235,997,998,236,43,997,950,974,998,0,1008,952,982,1009,997,950,974,998,43,998,974,973,995,0,1009,982,981,1004,998,974,973,995,43,236,998,995,231,0,1010,1009,1004,1003,236,998,995,231,43,243,242,999,1000,0,1011,1012,1013,1014,243,242,999,1000,43,242,241,1001,999,0,1012,1015,1016,1013,242,241,1001,999,43,999,1001,1002,1003,0,1013,1016,1017,1018,999,1001,1002,1003,43,1000,999,1003,952,0,1014,1013,1018,954,1000,999,1003,952,43,235,246,1004,997,0,1007,1019,1020,1008,235,246,1004,997,43,246,243,1000,1004,0,1019,1011,1014,1020,246,243,1000,1004,43,1004,1000,952,951,0,1020,1014,954,953,1004,1000,952,951,43,997,1004,951,950,0,1008,1020,953,952,997,1004,951,950,43,952,1003,1005,948,0,954,1018,1021,950,952,1003,1005,948,43,1003,1002,1006,1005,0,1018,1017,1022,1021,1003,1002,1006,1005,43,1005,1006,1007,1008,0,1021,1022,1023,1024,1005,1006,1007,1008,43,948,1005,1008,945,0,950,1021,1024,947,948,1005,1008,945,43,945,1008,1009,946,0,947,1024,1025,948,945,1008,1009,946,43,1008,1007,1010,1009,0,1024,1023,1026,1025,1008,1007,1010,1009,43,1009,1010,897,1011,0,1025,1026,899,1027,1009,1010,897,1011,43,946,1009,1011,939,0,948,1025,1027,941,946,1009,1011,939,43,939,1011,1012,940,0,941,1027,1028,942,939,1011,1012,940,43,1011,897,896,1012,0,1027,899,898,1028,1011,897,896,1012,43,1012,896,895,903,0,1028,898,897,905,1012,896,895,903,43,940,1012,903,907,0,942,1028,905,909,940,1012,903,907,43,1007,1013,1014,1010,0,1023,1029,1030,1026,1007,1013,1014,1010,43,1013,1015,1016,1014,0,1029,1031,1032,1030,1013,1015,1016,1014,43,1014,1016,890,893,0,1030,1032,892,895,1014,1016,890,893,43,1010,1014,893,897,0,1026,1030,895,899,1010,1014,893,897,43,1017,1018,1019,1020,0,1033,1034,1035,1036,1017,1018,1019,1020,43,1018,1021,1022,1019,0,1034,1037,1038,1035,1018,1021,1022,1019,43,1019,1022,1023,1024,0,1035,1038,1039,1040,1019,1022,1023,1024,43,1020,1019,1024,1025,0,1036,1035,1040,1041,1020,1019,1024,1025,43,1026,1027,1028,1029,0,1042,1043,1044,1045,1026,1027,1028,1029,43,1027,1030,1031,1028,0,1043,1046,1047,1044,1027,1030,1031,1028,43,1028,1031,1017,1020,0,1044,1047,1033,1036,1028,1031,1017,1020,43,1029,1028,1020,1025,0,1045,1044,1036,1041,1029,1028,1020,1025,43,1032,1033,1034,1035,0,1048,1049,1050,1051,1032,1033,1034,1035,43,1033,1036,1037,1034,0,1049,1052,1053,1050,1033,1036,1037,1034,43,1034,1037,1038,1039,0,1050,1053,1054,1055,1034,1037,1038,1039,43,1035,1034,1039,1040,0,1051,1050,1055,1056,1035,1034,1039,1040,43,1041,1042,1043,1044,0,1057,1058,1059,1060,1041,1042,1043,1044,43,1042,1036,1033,1043,0,1058,1052,1049,1059,1042,1036,1033,1043,43,1043,1033,1032,1045,0,1059,1049,1048,1061,1043,1033,1032,1045,43,1044,1043,1045,1026,0,1060,1059,1061,1042,1044,1043,1045,1026,43,1046,1047,1048,1049,0,1062,1063,1064,1065,1046,1047,1048,1049,43,1047,1050,1051,1048,0,1063,1066,1067,1064,1047,1050,1051,1048,43,1048,1051,1052,1053,0,1064,1067,1068,1069,1048,1051,1052,1053,43,1049,1048,1053,1054,0,1065,1064,1069,1070,1049,1048,1053,1054,43,1055,1056,1057,1058,0,1071,1072,1073,1074,1055,1056,1057,1058,43,1056,1059,1060,1057,0,1072,1075,1076,1073,1056,1059,1060,1057,43,1057,1060,1061,1062,0,1073,1076,1077,1078,1057,1060,1061,1062,43,1058,1057,1062,1063,0,1074,1073,1078,1079,1058,1057,1062,1063,43,1061,1064,1065,1062,0,1077,1080,1081,1078,1061,1064,1065,1062,43,1064,1052,1066,1065,0,1080,1068,1082,1081,1064,1052,1066,1065,43,1065,1066,1067,1068,0,1081,1082,1083,1084,1065,1066,1067,1068,43,1062,1065,1068,1063,0,1078,1081,1084,1079,1062,1065,1068,1063,43,1052,1064,1069,1053,0,1068,1080,1085,1069,1052,1064,1069,1053,43,1064,1061,1070,1069,0,1080,1077,1086,1085,1064,1061,1070,1069,43,1069,1070,1041,1071,0,1085,1086,1057,1087,1069,1070,1041,1071,43,1053,1069,1071,1054,0,1069,1085,1087,1070,1053,1069,1071,1054,43,1050,1072,1073,1051,0,1066,1088,1089,1067,1050,1072,1073,1051,43,1072,1074,1075,1073,0,1088,1090,1091,1089,1072,1074,1075,1073,43,1073,1075,1067,1066,0,1089,1091,1083,1082,1073,1075,1067,1066,43,1051,1073,1066,1052,0,1067,1089,1082,1068,1051,1073,1066,1052,43,1076,1077,1078,1079,0,1092,1093,1094,1095,1076,1077,1078,1079,43,1077,1046,1049,1078,0,1093,1062,1065,1094,1077,1046,1049,1078,43,1078,1049,1054,1080,0,1094,1065,1070,1096,1078,1049,1054,1080,43,1079,1078,1080,1025,0,1095,1094,1096,1041,1079,1078,1080,1025,43,1054,1071,1081,1080,0,1070,1087,1097,1096,1054,1071,1081,1080,43,1071,1041,1044,1081,0,1087,1057,1060,1097,1071,1041,1044,1081,43,1081,1044,1026,1029,0,1097,1060,1042,1045,1081,1044,1026,1029,43,1080,1081,1029,1025,0,1096,1097,1045,1041,1080,1081,1029,1025,43,1061,1060,1082,1070,0,1077,1076,1098,1086,1061,1060,1082,1070,43,1060,1059,1083,1082,0,1076,1075,1099,1098,1060,1059,1083,1082,43,1082,1083,1036,1042,0,1098,1099,1052,1058,1082,1083,1036,1042,43,1070,1082,1042,1041,0,1086,1098,1058,1057,1070,1082,1042,1041,43,1036,1083,1084,1037,0,1052,1099,1100,1053,1036,1083,1084,1037,43,1083,1059,1056,1084,0,1099,1075,1072,1100,1083,1059,1056,1084,43,1084,1056,1055,1085,0,1100,1072,1071,1101,1084,1056,1055,1085,43,1037,1084,1085,1038,0,1053,1100,1101,1054,1037,1084,1085,1038,43,1086,1087,1088,1089,0,1102,1103,1104,1105,1086,1087,1088,1089,43,1087,1055,1058,1088,0,1103,1071,1074,1104,1087,1055,1058,1088,43,1088,1058,1063,1090,0,1104,1074,1079,1106,1088,1058,1063,1090,43,1089,1088,1090,1091,0,1105,1104,1106,1107,1089,1088,1090,1091,43,1092,1093,1094,1095,0,1108,1109,1110,1111,1092,1093,1094,1095,43,1093,1038,1085,1094,0,1109,1054,1101,1110,1093,1038,1085,1094,43,1094,1085,1055,1087,0,1110,1101,1071,1103,1094,1085,1055,1087,43,1095,1094,1087,1086,0,1111,1110,1103,1102,1095,1094,1087,1086,43,1092,1096,1097,1093,0,1108,1112,1113,1109,1092,1096,1097,1093,43,1096,1098,1099,1097,0,1112,1114,1115,1113,1096,1098,1099,1097,43,1097,1099,1040,1039,0,1113,1115,1056,1055,1097,1099,1040,1039,43,1093,1097,1039,1038,0,1109,1113,1055,1054,1093,1097,1039,1038,43,1100,1101,1102,1103,0,1116,1117,1118,1119,1100,1101,1102,1103,43,1101,1104,1105,1102,0,1117,1120,1121,1118,1101,1104,1105,1102,43,1102,1105,1106,1107,0,1118,1121,1122,1123,1102,1105,1106,1107,43,1103,1102,1107,1108,0,1119,1118,1123,1124,1103,1102,1107,1108,43,1109,1110,1111,1112,0,1125,1126,1127,1128,1109,1110,1111,1112,43,1110,1098,1096,1111,0,1126,1114,1112,1127,1110,1098,1096,1111,43,1111,1096,1092,1113,0,1127,1112,1108,1129,1111,1096,1092,1113,43,1112,1111,1113,1114,0,1128,1127,1129,1130,1112,1111,1113,1114,43,1115,1116,1117,1118,0,1131,1132,1133,1134,1115,1116,1117,1118,43,1116,1119,1120,1117,0,1132,1135,1136,1133,1116,1119,1120,1117,43,1117,1120,1121,1122,0,1133,1136,1137,1138,1117,1120,1121,1122,43,1118,1117,1122,1123,0,1134,1133,1138,1139,1118,1117,1122,1123,43,1124,1125,1126,1127,0,1140,1141,1142,1143,1124,1125,1126,1127,43,1125,1128,1129,1126,0,1141,1144,1145,1142,1125,1128,1129,1126,43,1126,1129,1130,1131,0,1142,1145,1146,1147,1126,1129,1130,1131,43,1127,1126,1131,1132,0,1143,1142,1147,1148,1127,1126,1131,1132,43,1132,1133,1134,1127,0,1148,1149,1150,1143,1132,1133,1134,1127,43,1133,1135,1136,1134,0,1149,1151,1152,1150,1133,1135,1136,1134,43,1134,1136,1137,1138,0,1150,1152,1153,1154,1134,1136,1137,1138,43,1127,1134,1138,1124,0,1143,1150,1154,1140,1127,1134,1138,1124,43,787,786,1139,1140,0,787,786,1155,1156,787,786,1139,1140,43,786,785,1141,1139,0,786,785,1157,1155,786,785,1141,1139,43,1139,1141,1142,1143,0,1155,1157,1158,1159,1139,1141,1142,1143,43,1140,1139,1143,1106,0,1156,1155,1159,1122,1140,1139,1143,1106,43,1144,1145,1146,1147,0,1160,1161,1162,1163,1144,1145,1146,1147,43,1145,1148,1149,1146,0,1161,1164,1165,1162,1145,1148,1149,1146,43,1146,1149,1150,1151,0,1162,1165,1166,1167,1146,1149,1150,1151,43,1147,1146,1151,1115,0,1163,1162,1167,1131,1147,1146,1151,1115,43,1076,1079,1152,1153,0,1092,1095,1168,1169,1076,1079,1152,1153,43,1079,1025,1024,1152,0,1095,1041,1040,1168,1079,1025,1024,1152,43,1152,1024,1023,1154,0,1168,1040,1039,1170,1152,1024,1023,1154,43,1153,1152,1154,1155,0,1169,1168,1170,1171,1153,1152,1154,1155,43,1155,1154,1156,1157,0,1171,1170,1172,1173,1155,1154,1156,1157,43,1154,1023,1158,1156,0,1170,1039,1174,1172,1154,1023,1158,1156,43,1156,1158,1159,1160,0,1172,1174,1175,1176,1156,1158,1159,1160,43,1157,1156,1160,1161,0,1173,1172,1176,1177,1157,1156,1160,1161,43,1123,1162,1163,1118,0,1139,1178,1179,1134,1123,1162,1163,1118,43,1162,1164,1165,1163,0,1178,1180,1181,1179,1162,1164,1165,1163,43,1163,1165,1166,1167,0,1179,1181,1182,1183,1163,1165,1166,1167,43,1118,1163,1167,1115,0,1134,1179,1183,1131,1118,1163,1167,1115,43,1168,1169,1170,1171,0,1184,1185,1186,1187,1168,1169,1170,1171,43,1169,1172,1173,1170,0,1185,1188,1189,1186,1169,1172,1173,1170,43,1170,1173,1161,1160,0,1186,1189,1177,1176,1170,1173,1161,1160,43,1171,1170,1160,1159,0,1187,1186,1176,1175,1171,1170,1160,1159,43,1174,1175,1176,1177,0,1190,1191,1192,1193,1174,1175,1176,1177,43,1175,1178,1179,1176,0,1191,1194,1195,1192,1175,1178,1179,1176,43,1176,1179,1172,1169,0,1192,1195,1188,1185,1176,1179,1172,1169,43,1177,1176,1169,1168,0,1193,1192,1185,1184,1177,1176,1169,1168,43,1180,1181,1182,1183,0,1196,1197,1198,1199,1180,1181,1182,1183,43,1181,1174,1177,1182,0,1197,1190,1193,1198,1181,1174,1177,1182,43,1182,1177,1168,1184,0,1198,1193,1184,1200,1182,1177,1168,1184,43,1183,1182,1184,1164,0,1199,1198,1200,1180,1183,1182,1184,1164,43,1164,1184,1185,1165,0,1180,1200,1201,1181,1164,1184,1185,1165,43,1184,1168,1171,1185,0,1200,1184,1187,1201,1184,1168,1171,1185,43,1185,1171,1159,1186,0,1201,1187,1175,1202,1185,1171,1159,1186,43,1165,1185,1186,1166,0,1181,1201,1202,1182,1165,1185,1186,1166,43,1023,1187,1188,1158,0,1039,1203,1204,1174,1023,1187,1188,1158,43,1187,1189,1190,1188,0,1203,1205,1206,1204,1187,1189,1190,1188,43,1188,1190,1166,1186,0,1204,1206,1182,1202,1188,1190,1166,1186,43,1158,1188,1186,1159,0,1174,1204,1202,1175,1158,1188,1186,1159,43,1191,1192,1193,1194,0,1207,1208,1209,1210,1191,1192,1193,1194,43,1192,1195,1196,1193,0,1208,1211,1212,1209,1192,1195,1196,1193,43,1193,1196,1197,1198,0,1209,1212,1213,1214,1193,1196,1197,1198,43,1194,1193,1198,1108,0,1210,1209,1214,1124,1194,1193,1198,1108,43,1197,1196,1199,1200,0,1213,1212,1215,1216,1197,1196,1199,1200,43,1196,1195,1201,1199,0,1212,1211,1217,1215,1196,1195,1201,1199,43,1199,1201,1032,1035,0,1215,1217,1048,1051,1199,1201,1032,1035,43,1200,1199,1035,1040,0,1216,1215,1051,1056,1200,1199,1035,1040,43,1032,1201,1202,1045,0,1048,1217,1218,1061,1032,1201,1202,1045,43,1201,1195,1203,1202,0,1217,1211,1219,1218,1201,1195,1203,1202,43,1202,1203,1030,1027,0,1218,1219,1046,1043,1202,1203,1030,1027,43,1045,1202,1027,1026,0,1061,1218,1043,1042,1045,1202,1027,1026,43,1021,1018,1204,1205,0,1037,1034,1220,1221,1021,1018,1204,1205,43,1018,1017,1031,1204,0,1034,1033,1047,1220,1018,1017,1031,1204,43,1204,1031,1030,1206,0,1220,1047,1046,1222,1204,1031,1030,1206,43,1205,1204,1206,1207,0,1221,1220,1222,1223,1205,1204,1206,1207,43,1023,1022,1208,1187,0,1039,1038,1224,1203,1023,1022,1208,1187,43,1022,1021,1205,1208,0,1038,1037,1221,1224,1022,1021,1205,1208,43,1208,1205,1207,1209,0,1224,1221,1223,1225,1208,1205,1207,1209,43,1187,1208,1209,1189,0,1203,1224,1225,1205,1187,1208,1209,1189,43,1207,1206,1210,1211,0,1223,1222,1226,1227,1207,1206,1210,1211,43,1206,1030,1203,1210,0,1222,1046,1219,1226,1206,1030,1203,1210,43,1210,1203,1195,1192,0,1226,1219,1211,1208,1210,1203,1195,1192,43,1211,1210,1192,1191,0,1227,1226,1208,1207,1211,1210,1192,1191,43,1189,1209,1212,1213,0,1205,1225,1228,1229,1189,1209,1212,1213,43,1209,1207,1211,1212,0,1225,1223,1227,1228,1209,1207,1211,1212,43,1212,1211,1191,1214,0,1228,1227,1207,1230,1212,1211,1191,1214,43,1213,1212,1214,1144,0,1229,1228,1230,1160,1213,1212,1214,1144,43,1166,1190,1215,1167,0,1182,1206,1231,1183,1166,1190,1215,1167,43,1190,1189,1213,1215,0,1206,1205,1229,1231,1190,1189,1213,1215,43,1215,1213,1144,1147,0,1231,1229,1160,1163,1215,1213,1144,1147,43,1167,1215,1147,1115,0,1183,1231,1163,1131,1167,1215,1147,1115,43,1148,1145,1216,1217,0,1164,1161,1232,1233,1148,1145,1216,1217,43,1145,1144,1214,1216,0,1161,1160,1230,1232,1145,1144,1214,1216,43,1216,1214,1191,1194,0,1232,1230,1207,1210,1216,1214,1191,1194,43,1217,1216,1194,1108,0,1233,1232,1210,1124,1217,1216,1194,1108,43,1106,1143,1218,1107,0,1122,1159,1234,1123,1106,1143,1218,1107,43,1143,1142,1219,1218,0,1159,1158,1235,1234,1143,1142,1219,1218,43,1218,1219,1148,1217,0,1234,1235,1164,1233,1218,1219,1148,1217,43,1107,1218,1217,1108,0,1123,1234,1233,1124,1107,1218,1217,1108,43,1142,1141,1220,1221,0,1158,1157,1236,1237,1142,1141,1220,1221,43,1141,785,1222,1220,0,1157,785,1238,1236,1141,785,1222,1220,43,1220,1222,1137,1136,0,1236,1238,1153,1152,1220,1222,1137,1136,43,1221,1220,1136,1135,0,1237,1236,1152,1151,1221,1220,1136,1135,43,1135,1223,1224,1221,0,1151,1239,1240,1237,1135,1223,1224,1221,43,1223,1150,1149,1224,0,1239,1166,1165,1240,1223,1150,1149,1224,43,1224,1149,1148,1219,0,1240,1165,1164,1235,1224,1149,1148,1219,43,1221,1224,1219,1142,0,1237,1240,1235,1158,1221,1224,1219,1142,43,1115,1151,1225,1226,0,1131,1167,1241,1242,1115,1151,1225,1226,43,1151,1150,1223,1225,0,1167,1166,1239,1241,1151,1150,1223,1225,43,1225,1223,1135,1133,0,1241,1239,1151,1149,1225,1223,1135,1133,43,1226,1225,1133,1132,0,1242,1241,1149,1148,1226,1225,1133,1132,43,1130,1227,1228,1131,0,1146,1243,1244,1147,1130,1227,1228,1131,43,1227,1119,1116,1228,0,1243,1135,1132,1244,1227,1119,1116,1228,43,1228,1116,1115,1226,0,1244,1132,1131,1242,1228,1116,1115,1226,43,1131,1228,1226,1132,0,1147,1244,1242,1148,1131,1228,1226,1132,43,1121,1120,1229,1230,0,1137,1136,1245,1246,1121,1120,1229,1230,43,1120,1119,1227,1229,0,1136,1135,1243,1245,1120,1119,1227,1229,43,1229,1227,1130,1231,0,1245,1243,1146,1247,1229,1227,1130,1231,43,1230,1229,1231,1232,0,1246,1245,1247,1248,1230,1229,1231,1232,43,1121,1230,1233,1234,0,1137,1246,1249,1250,1121,1230,1233,1234,43,1230,1232,1235,1233,0,1246,1248,1251,1249,1230,1232,1235,1233,43,1233,1235,1236,1237,0,1249,1251,1252,1253,1233,1235,1236,1237,43,1234,1233,1237,1238,0,1250,1249,1253,1254,1234,1233,1237,1238,43,1130,1239,1240,1231,0,1146,1255,1256,1247,1130,1239,1240,1231,43,1239,1241,1242,1240,0,1255,1257,1258,1256,1239,1241,1242,1240,43,1231,1240,1242,1232,0,1247,1256,1258,1248,1231,1240,1242,1232,43,1241,1243,1244,1245,0,1257,1259,1260,1261,1241,1243,1244,1245,43,1243,1246,1247,1244,0,1259,1262,1263,1260,1243,1246,1247,1244,43,1244,1247,1248,1249,0,1260,1263,1264,1265,1244,1247,1248,1249,43,1245,1244,1249,1250,0,1261,1260,1265,1266,1245,1244,1249,1250,43,1232,1242,1251,1235,0,1248,1258,1267,1251,1232,1242,1251,1235,43,1242,1241,1245,1251,0,1258,1257,1261,1267,1242,1241,1245,1251,43,1251,1245,1250,1252,0,1267,1261,1266,1268,1251,1245,1250,1252,43,1235,1251,1252,1236,0,1251,1267,1268,1252,1235,1251,1252,1236,43,1253,1254,1255,1256,0,1269,1270,1271,1272,1253,1254,1255,1256,43,1254,1180,1183,1255,0,1270,1196,1199,1271,1254,1180,1183,1255,43,1255,1183,1164,1162,0,1271,1199,1180,1178,1255,1183,1164,1162,43,1256,1255,1162,1123,0,1272,1271,1178,1139,1256,1255,1162,1123,43,1253,1256,1257,1258,0,1269,1272,1273,1274,1253,1256,1257,1258,43,1256,1123,1122,1257,0,1272,1139,1138,1273,1256,1123,1122,1257,43,1257,1122,1121,1234,0,1273,1138,1137,1250,1257,1122,1121,1234,43,1258,1257,1234,1238,0,1274,1273,1250,1254,1258,1257,1234,1238,43,504,1259,1260,505,0,1275,1276,1277,1278,504,1259,1260,505,43,1259,1248,1247,1260,0,1276,1264,1263,1277,1259,1248,1247,1260,43,1260,1247,1246,1261,0,1277,1263,1262,1279,1260,1247,1246,1261,43,505,1260,1261,506,0,1278,1277,1279,1280,505,1260,1261,506,43,506,1261,1262,511,0,1280,1279,1281,1282,506,1261,1262,511,43,1261,1246,1263,1262,0,1279,1262,1283,1281,1261,1246,1263,1262,43,1262,1263,1264,1265,0,1281,1283,1284,1285,1262,1263,1264,1265,43,511,1262,1265,512,0,1282,1281,1285,1286,511,1262,1265,512,43,1246,1243,1266,1263,0,1262,1259,1287,1283,1246,1243,1266,1263,43,1243,1241,1239,1266,0,1259,1257,1255,1287,1243,1241,1239,1266,43,1266,1239,1130,1267,0,1287,1255,1146,1288,1266,1239,1130,1267,43,1263,1266,1267,1264,0,1283,1287,1288,1284,1263,1266,1267,1264,43,1130,1129,1268,1267,0,1146,1145,1289,1288,1130,1129,1268,1267,43,1129,1128,1269,1268,0,1145,1144,1290,1289,1129,1128,1269,1268,43,1268,1269,1270,1271,0,1289,1290,1291,1292,1268,1269,1270,1271,43,1267,1268,1271,1264,0,1288,1289,1292,1284,1267,1268,1271,1264,43,525,1272,1273,526,0,525,1293,1294,526,525,1272,1273,526,43,1272,1274,1275,1273,0,1293,1295,1296,1294,1272,1274,1275,1273,43,1273,1275,1276,1277,0,1294,1296,1297,1298,1273,1275,1276,1277,43,526,1273,1277,527,0,526,1294,1298,527,526,1273,1277,527,43,1274,1278,1279,1275,0,1295,1299,1300,1296,1274,1278,1279,1275,43,1278,1280,1281,1279,0,1299,1301,1302,1300,1278,1280,1281,1279,43,1279,1281,1282,1283,0,1300,1302,1303,1304,1279,1281,1282,1283,43,1275,1279,1283,1276,0,1296,1300,1304,1297,1275,1279,1283,1276,43,1284,1285,1286,1287,0,1305,1306,1307,1308,1284,1285,1286,1287,43,1285,1276,1283,1286,0,1306,1297,1304,1307,1285,1276,1283,1286,43,1286,1283,1282,1288,0,1307,1304,1303,1309,1286,1283,1282,1288,43,1287,1286,1288,1114,0,1308,1307,1309,1130,1287,1286,1288,1114,43,1282,1281,1289,1290,0,1303,1302,1310,1311,1282,1281,1289,1290,43,1281,1280,1291,1289,0,1302,1301,1312,1310,1281,1280,1291,1289,43,1290,1289,1291,1292,0,1311,1310,1312,1313,1290,1289,1291,1292,43,1292,1293,1294,1290,0,1313,1314,1315,1311,1292,1293,1294,1290,43,1293,1109,1112,1294,0,1314,1125,1128,1315,1293,1109,1112,1294,43,1294,1112,1114,1288,0,1315,1128,1130,1309,1294,1112,1114,1288,43,1290,1294,1288,1282,0,1311,1315,1309,1303,1290,1294,1288,1282,43,851,1295,1296,870,0,853,1316,1317,872,851,1295,1296,870,43,1295,1297,1298,1296,0,1316,1318,1319,1317,1295,1297,1298,1296,43,1296,1298,1299,1300,0,1317,1319,1320,1321,1296,1298,1299,1300,43,870,1296,1300,871,0,872,1317,1321,873,870,1296,1300,871,43,1301,1302,1303,1304,0,1322,1323,1324,1325,1301,1302,1303,1304,43,1302,787,1140,1303,0,1323,787,1156,1324,1302,787,1140,1303,43,1303,1140,1106,1105,0,1324,1156,1122,1121,1303,1140,1106,1105,43,1304,1303,1105,1104,0,1325,1324,1121,1120,1304,1303,1105,1104,43,779,782,1305,858,0,779,782,1326,860,779,782,1305,858,43,782,787,1302,1305,0,782,787,1323,1326,782,787,1302,1305,43,1305,1302,1301,1306,0,1326,1323,1322,1327,1305,1302,1301,1306,43,858,1305,1306,849,0,860,1326,1327,851,858,1305,1306,849,43,849,1306,1307,850,0,851,1327,1328,852,849,1306,1307,850,43,1306,1301,1308,1307,0,1327,1322,1329,1328,1306,1301,1308,1307,43,1307,1308,1297,1295,0,1328,1329,1318,1316,1307,1308,1297,1295,43,850,1307,1295,851,0,852,1328,1316,853,850,1307,1295,851,43,1301,1304,1309,1308,0,1322,1325,1330,1329,1301,1304,1309,1308,43,1304,1104,1310,1309,0,1325,1120,1331,1330,1304,1104,1310,1309,43,1309,1310,1311,1312,0,1330,1331,1332,1333,1309,1310,1311,1312,43,1308,1309,1312,1297,0,1329,1330,1333,1318,1308,1309,1312,1297,43,1297,1312,1313,1298,0,1318,1333,1334,1319,1297,1312,1313,1298,43,1312,1311,1314,1313,0,1333,1332,1335,1334,1312,1311,1314,1313,43,1313,1314,1315,1316,0,1334,1335,1336,1337,1313,1314,1315,1316,43,1298,1313,1316,1299,0,1319,1334,1337,1320,1298,1313,1316,1299,43,1317,1318,1319,1320,0,1338,1339,1340,1341,1317,1318,1319,1320,43,1318,1299,1316,1319,0,1339,1320,1337,1340,1318,1299,1316,1319,43,1319,1316,1315,1321,0,1340,1337,1336,1342,1319,1316,1315,1321,43,1320,1319,1321,1292,0,1341,1340,1342,1313,1320,1319,1321,1292,43,1100,1322,1323,1101,0,1116,1343,1344,1117,1100,1322,1323,1101,43,1322,1324,1325,1323,0,1343,1345,1346,1344,1322,1324,1325,1323,43,1323,1325,1311,1310,0,1344,1346,1332,1331,1323,1325,1311,1310,43,1101,1323,1310,1104,0,1117,1344,1331,1120,1101,1323,1310,1104,43,1326,1327,1328,1329,0,1347,1348,1349,1350,1326,1327,1328,1329,43,1327,1100,1103,1328,0,1348,1116,1119,1349,1327,1100,1103,1328,43,1328,1103,1108,1198,0,1349,1119,1124,1214,1328,1103,1108,1198,43,1329,1328,1198,1197,0,1350,1349,1214,1213,1329,1328,1198,1197,43,1330,1331,1332,1333,0,1351,1352,1353,1354,1330,1331,1332,1333,43,1331,1326,1334,1332,0,1352,1347,1355,1353,1331,1326,1334,1332,43,1332,1334,1098,1110,0,1353,1355,1114,1126,1332,1334,1098,1110,43,1333,1332,1110,1109,0,1354,1353,1126,1125,1333,1332,1110,1109,43,1098,1334,1335,1099,0,1114,1355,1356,1115,1098,1334,1335,1099,43,1334,1326,1329,1335,0,1355,1347,1350,1356,1334,1326,1329,1335,43,1335,1329,1197,1200,0,1356,1350,1213,1216,1335,1329,1197,1200,43,1099,1335,1200,1040,0,1115,1356,1216,1056,1099,1335,1200,1040,43,1330,1336,1337,1331,0,1351,1357,1358,1352,1330,1336,1337,1331,43,1336,1324,1322,1337,0,1357,1345,1343,1358,1336,1324,1322,1337,43,1337,1322,1100,1327,0,1358,1343,1116,1348,1337,1322,1100,1327,43,1331,1337,1327,1326,0,1352,1358,1348,1347,1331,1337,1327,1326,43,1311,1325,1338,1314,0,1332,1346,1359,1335,1311,1325,1338,1314,43,1325,1324,1336,1338,0,1346,1345,1357,1359,1325,1324,1336,1338,43,1338,1336,1330,1339,0,1359,1357,1351,1360,1338,1336,1330,1339,43,1314,1338,1339,1315,0,1335,1359,1360,1336,1314,1338,1339,1315,43,1315,1339,1340,1321,0,1336,1360,1361,1342,1315,1339,1340,1321,43,1339,1330,1333,1340,0,1360,1351,1354,1361,1339,1330,1333,1340,43,1340,1333,1109,1293,0,1361,1354,1125,1314,1340,1333,1109,1293,43,1321,1340,1293,1292,0,1342,1361,1314,1313,1321,1340,1293,1292,43,1292,1291,1341,1320,0,1313,1312,1362,1341,1292,1291,1341,1320,43,1291,1280,1342,1341,0,1312,1301,1363,1362,1291,1280,1342,1341,43,1341,1342,1343,1344,0,1362,1363,1364,1365,1341,1342,1343,1344,43,1320,1341,1344,1317,0,1341,1362,1365,1338,1320,1341,1344,1317,43,1345,1346,1347,1348,0,1366,1367,1368,1369,1345,1346,1347,1348,43,1346,1349,1350,1347,0,1367,1370,1371,1368,1346,1349,1350,1347,43,1347,1350,1351,1352,0,1368,1371,1372,1373,1347,1350,1351,1352,43,1348,1347,1352,1353,0,1369,1368,1373,1374,1348,1347,1352,1353,43,1351,1350,1354,1355,0,1372,1371,1375,1376,1351,1350,1354,1355,43,1350,1349,1356,1354,0,1371,1370,1377,1375,1350,1349,1356,1354,43,1354,1356,604,607,0,1375,1377,604,607,1354,1356,604,607,43,1355,1354,607,609,0,1376,1375,607,609,1355,1354,607,609,43,604,1356,1357,612,0,604,1377,1378,612,604,1356,1357,612,43,1356,1349,1346,1357,0,1377,1370,1367,1378,1356,1349,1346,1357,43,1357,1346,1345,1358,0,1378,1367,1366,1379,1357,1346,1345,1358,43,612,1357,1358,613,0,612,1378,1379,613,612,1357,1358,613,43,1343,1359,1360,1361,0,1364,1380,1381,1382,1343,1359,1360,1361,43,1359,1362,1363,1360,0,1380,1383,1384,1381,1359,1362,1363,1360,43,1360,1363,1364,1365,0,1381,1384,1385,1386,1360,1363,1364,1365,43,1361,1360,1365,1366,0,1382,1381,1386,1387,1361,1360,1365,1366,43,1299,1318,1367,1300,0,1320,1339,1388,1321,1299,1318,1367,1300,43,1318,1317,1368,1367,0,1339,1338,1389,1388,1318,1317,1368,1367,43,1367,1368,1369,1370,0,1388,1389,1390,1391,1367,1368,1369,1370,43,1300,1367,1370,871,0,1321,1388,1391,873,1300,1367,1370,871,43,871,1370,1371,872,0,873,1391,1392,874,871,1370,1371,872,43,1370,1369,1372,1371,0,1391,1390,1393,1392,1370,1369,1372,1371,43,1371,1372,1373,1374,0,1392,1393,1394,1395,1371,1372,1373,1374,43,872,1371,1374,873,0,874,1392,1395,875,872,1371,1374,873,43,1317,1344,1375,1368,0,1338,1365,1396,1389,1317,1344,1375,1368,43,1344,1343,1361,1375,0,1365,1364,1382,1396,1344,1343,1361,1375,43,1375,1361,1366,1376,0,1396,1382,1387,1397,1375,1361,1366,1376,43,1368,1375,1376,1369,0,1389,1396,1397,1390,1368,1375,1376,1369,43,1369,1376,1377,1372,0,1390,1397,1398,1393,1369,1376,1377,1372,43,1376,1366,1378,1377,0,1397,1387,1399,1398,1376,1366,1378,1377,43,1377,1378,1353,1379,0,1398,1399,1374,1400,1377,1378,1353,1379,43,1372,1377,1379,1373,0,1393,1398,1400,1394,1372,1377,1379,1373,43,1366,1365,1380,1378,0,1387,1386,1401,1399,1366,1365,1380,1378,43,1365,1364,1381,1380,0,1386,1385,1402,1401,1365,1364,1381,1380,43,1380,1381,1345,1348,0,1401,1402,1366,1369,1380,1381,1345,1348,43,1378,1380,1348,1353,0,1399,1401,1369,1374,1378,1380,1348,1353,43,639,638,1382,1383,0,639,638,1403,1404,639,638,1382,1383,43,638,613,1358,1382,0,638,613,1379,1403,638,613,1358,1382,43,1382,1358,1345,1381,0,1403,1379,1366,1402,1382,1358,1345,1381,43,1383,1382,1381,1364,0,1404,1403,1402,1385,1383,1382,1381,1364,43,1362,1384,1385,1363,0,1383,1405,1406,1384,1362,1384,1385,1363,43,1384,643,641,1385,0,1405,643,641,1406,1384,643,641,1385,43,1385,641,639,1383,0,1406,641,639,1404,1385,641,639,1383,43,1363,1385,1383,1364,0,1384,1406,1404,1385,1363,1385,1383,1364,43,1343,1342,1386,1359,0,1364,1363,1407,1380,1343,1342,1386,1359,43,1342,1280,1278,1386,0,1363,1301,1299,1407,1342,1280,1278,1386,43,1386,1278,1274,1387,0,1407,1299,1295,1408,1386,1278,1274,1387,43,1359,1386,1387,1362,0,1380,1407,1408,1383,1359,1386,1387,1362,43,1274,1272,1388,1387,0,1295,1293,1409,1408,1274,1272,1388,1387,43,1272,525,647,1388,0,1293,525,647,1409,1272,525,647,1388,43,1388,647,643,1384,0,1409,647,643,1405,1388,647,643,1384,43,1387,1388,1384,1362,0,1408,1409,1405,1383,1387,1388,1384,1362,43,651,650,1389,1390,0,651,650,1410,1411,651,650,1389,1390,43,650,527,1277,1389,0,650,527,1298,1410,650,527,1277,1389,43,1389,1277,1276,1285,0,1410,1298,1297,1306,1389,1277,1276,1285,43,1390,1389,1285,1284,0,1411,1410,1306,1305,1390,1389,1285,1284,43,656,655,1391,1392,0,656,655,1412,1413,656,655,1391,1392,43,655,651,1390,1391,0,655,651,1411,1412,655,651,1390,1391,43,1391,1390,1284,1393,0,1412,1411,1305,1414,1391,1390,1284,1393,43,1392,1391,1393,1394,0,1413,1412,1414,1415,1392,1391,1393,1394,43,1394,1393,1395,1396,0,1415,1414,1416,1417,1394,1393,1395,1396,43,1393,1284,1287,1395,0,1414,1305,1308,1416,1393,1284,1287,1395,43,1395,1287,1114,1397,0,1416,1308,1130,1418,1395,1287,1114,1397,43,1396,1395,1397,1398,0,1417,1416,1418,1419,1396,1395,1397,1398,43,1398,1399,1400,1401,0,1419,1420,1421,1422,1398,1399,1400,1401,43,1399,1086,1089,1400,0,1420,1102,1105,1421,1399,1086,1089,1400,43,1400,1089,1091,1402,0,1421,1105,1107,1423,1400,1089,1091,1402,43,1401,1400,1402,1403,0,1422,1421,1423,1424,1401,1400,1402,1403,43,1114,1113,1404,1397,0,1130,1129,1425,1418,1114,1113,1404,1397,43,1113,1092,1095,1404,0,1129,1108,1111,1425,1113,1092,1095,1404,43,1404,1095,1086,1399,0,1425,1111,1102,1420,1404,1095,1086,1399,43,1397,1404,1399,1398,0,1418,1425,1420,1419,1397,1404,1399,1398,43,1394,1396,1405,1406,0,1415,1417,1426,1427,1394,1396,1405,1406,43,1396,1398,1401,1405,0,1417,1419,1422,1426,1396,1398,1401,1405,43,1405,1401,1403,1407,0,1426,1422,1424,1428,1405,1401,1403,1407,43,1406,1405,1407,1408,0,1427,1426,1428,1429,1406,1405,1407,1408,43,656,1392,1409,675,0,656,1413,1430,675,656,1392,1409,675,43,1392,1394,1406,1409,0,1413,1415,1427,1430,1392,1394,1406,1409,43,1409,1406,1408,1410,0,1430,1427,1429,1431,1409,1406,1408,1410,43,675,1409,1410,676,0,675,1430,1431,676,675,1409,1410,676,43,794,921,1411,795,0,794,923,1432,795,794,921,1411,795,43,921,920,1412,1411,0,923,922,1433,1432,921,920,1412,1411,43,1411,1412,1413,1414,0,1432,1433,1434,1435,1411,1412,1413,1414,43,795,1411,1414,796,0,795,1432,1435,796,795,1411,1414,796,43,817,1415,1416,821,0,817,1436,1437,821,817,1415,1416,821,43,1415,1417,1418,1416,0,1436,1438,1439,1437,1415,1417,1418,1416,43,1416,1418,833,834,0,1437,1439,835,836,1416,1418,833,834,43,821,1416,834,822,0,821,1437,836,822,821,1416,834,822,43,1417,1419,1420,1418,0,1438,1440,1441,1439,1417,1419,1420,1418,43,1419,1421,1422,1420,0,1440,1442,1443,1441,1419,1421,1422,1420,43,1420,1422,828,831,0,1441,1443,830,833,1420,1422,828,831,43,1418,1420,831,833,0,1439,1441,833,835,1418,1420,831,833,43,788,791,1423,816,0,788,791,1444,816,788,791,1423,816,43,791,796,1424,1423,0,791,796,1445,1444,791,796,1424,1423,43,1423,1424,1417,1415,0,1444,1445,1438,1436,1423,1424,1417,1415,43,816,1423,1415,817,0,816,1444,1436,817,816,1423,1415,817,43,796,1414,1425,1424,0,796,1435,1446,1445,796,1414,1425,1424,43,1414,1413,1426,1425,0,1435,1434,1447,1446,1414,1413,1426,1425,43,1425,1426,1421,1419,0,1446,1447,1442,1440,1425,1426,1421,1419,43,1424,1425,1419,1417,0,1445,1446,1440,1438,1424,1425,1419,1417,43,1427,1428,1429,1430,0,1448,1449,1450,1451,1427,1428,1429,1430,43,1428,1431,1432,1429,0,1449,1452,1453,1450,1428,1431,1432,1429,43,1429,1432,1433,1434,0,1450,1453,1454,1455,1429,1432,1433,1434,43,1430,1429,1434,1435,0,1451,1450,1455,1456,1430,1429,1434,1435,43,1015,1436,1437,1016,0,1031,1457,1458,1032,1015,1436,1437,1016,43,1436,1438,1439,1437,0,1457,1459,1460,1458,1436,1438,1439,1437,43,1437,1439,1440,1441,0,1458,1460,1461,1462,1437,1439,1440,1441,43,1016,1437,1441,890,0,1032,1458,1462,892,1016,1437,1441,890,43,890,1441,1442,891,0,892,1462,1463,893,890,1441,1442,891,43,1441,1440,1443,1442,0,1462,1461,1464,1463,1441,1440,1443,1442,43,1442,1443,880,889,0,1463,1464,882,891,1442,1443,880,889,43,891,1442,889,888,0,893,1463,891,890,891,1442,889,888,43,1440,1444,1445,1443,0,1461,1465,1466,1464,1440,1444,1445,1443,43,1444,1446,1447,1445,0,1465,1467,1468,1466,1444,1446,1447,1445,43,1445,1447,859,881,0,1466,1468,861,883,1445,1447,859,881,43,1443,1445,881,880,0,1464,1466,883,882,1443,1445,881,880,43,1438,1448,1449,1439,0,1459,1469,1470,1460,1438,1448,1449,1439,43,1448,1435,1450,1449,0,1469,1456,1471,1470,1448,1435,1450,1449,43,1449,1450,1446,1444,0,1470,1471,1467,1465,1449,1450,1446,1444,43,1439,1449,1444,1440,0,1460,1470,1465,1461,1439,1449,1444,1440,43,1451,1452,1453,1454,0,1472,1473,1474,1475,1451,1452,1453,1454,43,1452,783,780,1453,0,1473,783,780,1474,1452,783,780,1453,43,1453,780,779,855,0,1474,780,779,857,1453,780,779,855,43,1454,1453,855,854,0,1475,1474,857,856,1454,1453,855,854,43,785,784,1455,1222,0,785,784,1476,1238,785,784,1455,1222,43,784,783,1452,1455,0,784,783,1473,1476,784,783,1452,1455,43,1455,1452,1451,1456,0,1476,1473,1472,1477,1455,1452,1451,1456,43,1222,1455,1456,1137,0,1238,1476,1477,1153,1222,1455,1456,1137,43,1124,1138,1457,1458,0,1140,1154,1478,1479,1124,1138,1457,1458,43,1138,1137,1456,1457,0,1154,1153,1477,1478,1138,1137,1456,1457,43,1457,1456,1451,1459,0,1478,1477,1472,1480,1457,1456,1451,1459,43,1458,1457,1459,1433,0,1479,1478,1480,1454,1458,1457,1459,1433,43,1451,1454,1460,1461,0,1472,1475,1481,1482,1451,1454,1460,1461,43,1454,854,860,1460,0,1475,856,862,1481,1454,854,860,1460,43,1460,860,859,1447,0,1481,862,861,1468,1460,860,859,1447,43,1461,1460,1447,1446,0,1482,1481,1468,1467,1461,1460,1447,1446,43,1446,1450,1462,1461,0,1467,1471,1483,1482,1446,1450,1462,1461,43,1450,1435,1434,1462,0,1471,1456,1455,1483,1450,1435,1434,1462,43,1462,1434,1433,1459,0,1483,1455,1454,1480,1462,1434,1433,1459,43,1461,1462,1459,1451,0,1482,1483,1480,1472,1461,1462,1459,1451,43,1002,1463,1464,1006,0,1017,1484,1485,1022,1002,1463,1464,1006,43,1463,1465,1466,1464,0,1484,1486,1487,1485,1463,1465,1466,1464,43,1464,1466,1015,1013,0,1485,1487,1031,1029,1464,1466,1015,1013,43,1006,1464,1013,1007,0,1022,1485,1029,1023,1006,1464,1013,1007,43,1465,1467,1468,1466,0,1486,1488,1489,1487,1465,1467,1468,1466,43,1467,1469,1470,1468,0,1488,1490,1491,1489,1467,1469,1470,1468,43,1468,1470,1438,1436,0,1489,1491,1459,1457,1468,1470,1438,1436,43,1466,1468,1436,1015,0,1487,1489,1457,1031,1466,1468,1436,1015,43,241,740,1471,1001,0,1015,1492,1493,1016,241,740,1471,1001,43,740,739,1472,1471,0,1492,1494,1495,1493,740,739,1472,1471,43,1471,1472,1465,1463,0,1493,1495,1486,1484,1471,1472,1465,1463,43,1001,1471,1463,1002,0,1016,1493,1484,1017,1001,1471,1463,1002,43,746,745,1473,1474,0,1496,1497,1498,1499,746,745,1473,1474,43,745,744,1475,1473,0,1497,1500,1501,1498,745,744,1475,1473,43,1473,1475,1427,1476,0,1498,1501,1448,1502,1473,1475,1427,1476,43,1474,1473,1476,1469,0,1499,1498,1502,1490,1474,1473,1476,1469,43,739,749,1477,1472,0,1494,1503,1504,1495,739,749,1477,1472,43,749,746,1474,1477,0,1503,1496,1499,1504,749,746,1474,1477,43,1477,1474,1469,1467,0,1504,1499,1490,1488,1477,1474,1469,1467,43,1472,1477,1467,1465,0,1495,1504,1488,1486,1472,1477,1467,1465,43,1469,1476,1478,1470,0,1490,1502,1505,1491,1469,1476,1478,1470,43,1476,1427,1430,1478,0,1502,1448,1451,1505,1476,1427,1430,1478,43,1478,1430,1435,1448,0,1505,1451,1456,1469,1478,1430,1435,1448,43,1470,1478,1448,1438,0,1491,1505,1469,1459,1470,1478,1448,1438,43,1270,1269,1479,1480,0,1291,1290,1506,1507,1270,1269,1479,1480,43,1269,1128,1125,1479,0,1290,1144,1141,1506,1269,1128,1125,1479,43,1479,1125,1124,1481,0,1506,1141,1140,1508,1479,1125,1124,1481,43,1480,1479,1481,1482,0,1507,1506,1508,1509,1480,1479,1481,1482,43,760,759,1483,1484,0,1510,1511,1512,1513,760,759,1483,1484,43,759,758,1485,1483,0,1511,1514,1515,1512,759,758,1485,1483,43,1483,1485,1482,1486,0,1512,1515,1509,1516,1483,1485,1482,1486,43,1484,1483,1486,1431,0,1513,1512,1516,1452,1484,1483,1486,1431,43,1433,1432,1487,1458,0,1454,1453,1517,1479,1433,1432,1487,1458,43,1432,1431,1486,1487,0,1453,1452,1516,1517,1432,1431,1486,1487,43,1487,1486,1482,1481,0,1517,1516,1509,1508,1487,1486,1482,1481,43,1458,1487,1481,1124,0,1479,1517,1508,1140,1458,1487,1481,1124,43,1264,1271,1488,1265,0,1284,1292,1518,1285,1264,1271,1488,1265,43,1271,1270,1489,1488,0,1292,1291,1519,1518,1271,1270,1489,1488,43,1488,1489,763,766,0,1518,1519,1520,1521,1488,1489,763,766,43,1265,1488,766,512,0,1285,1518,1521,1286,1265,1488,766,512,43,763,1489,1490,768,0,1520,1519,1522,1523,763,1489,1490,768,43,1489,1270,1480,1490,0,1519,1291,1507,1522,1489,1270,1480,1490,43,1490,1480,1482,1485,0,1522,1507,1509,1515,1490,1480,1482,1485,43,768,1490,1485,758,0,1523,1522,1515,1514,768,1490,1485,758,43,744,770,1491,1475,0,1500,1524,1525,1501,744,770,1491,1475,43,770,760,1484,1491,0,1524,1510,1513,1525,770,760,1484,1491,43,1491,1484,1431,1428,0,1525,1513,1452,1449,1491,1484,1431,1428,43,1475,1491,1428,1427,0,1501,1525,1449,1448,1475,1491,1428,1427,43,908,1492,1493,924,0,910,1526,1527,926,908,1492,1493,924,43,1492,1494,1495,1493,0,1526,1528,1529,1527,1492,1494,1495,1493,43,1493,1495,1496,1497,0,1527,1529,1530,1531,1493,1495,1496,1497,43,924,1493,1497,926,0,926,1527,1531,928,924,1493,1497,926,43,905,1498,1499,906,0,907,1532,1533,908,905,1498,1499,906,43,1498,1494,1492,1499,0,1532,1528,1526,1533,1498,1494,1492,1499,43,1499,1492,908,911,0,1533,1526,910,913,1499,1492,908,911,43,906,1499,911,907,0,908,1533,913,909,906,1499,911,907,43,1500,1501,1502,1503,0,1534,1535,1536,1537,1500,1501,1502,1503,43,1501,1504,1505,1502,0,1535,1538,1539,1536,1501,1504,1505,1502,43,1502,1505,1506,1507,0,1536,1539,1540,1541,1502,1505,1506,1507,43,1503,1502,1507,1508,0,1537,1536,1541,1542,1503,1502,1507,1508,43,1509,1510,1511,1512,0,1543,1544,1545,1546,1509,1510,1511,1512,43,1510,1513,1514,1511,0,1544,1547,1548,1545,1510,1513,1514,1511,43,1511,1514,1515,1516,0,1545,1548,1549,1550,1511,1514,1515,1516,43,1512,1511,1516,1517,0,1546,1545,1550,1551,1512,1511,1516,1517,43,1506,1518,1519,1520,0,1540,1552,1553,1554,1506,1518,1519,1520,43,1518,1517,1516,1519,0,1552,1551,1550,1553,1518,1517,1516,1519,43,1519,1516,1515,1521,0,1553,1550,1549,1555,1519,1516,1515,1521,43,1520,1519,1521,1522,0,1554,1553,1555,1556,1520,1519,1521,1522,43,1515,1514,1523,1524,0,1549,1548,1557,1558,1515,1514,1523,1524,43,1514,1513,1525,1523,0,1548,1547,1559,1557,1514,1513,1525,1523,43,1523,1525,1526,1527,0,1557,1559,1560,1561,1523,1525,1526,1527,43,1524,1523,1527,1528,0,1558,1557,1561,1562,1524,1523,1527,1528,43,1529,1530,1531,1532,0,1563,1564,1565,1566,1529,1530,1531,1532,43,1530,1533,1534,1531,0,1564,1567,1568,1565,1530,1533,1534,1531,43,1531,1534,1535,1536,0,1565,1568,1569,1570,1531,1534,1535,1536,43,1532,1531,1536,1537,0,1566,1565,1570,1571,1532,1531,1536,1537,43,1535,1538,1539,1536,0,1569,1572,1573,1570,1535,1538,1539,1536,43,1538,1528,1527,1539,0,1572,1562,1561,1573,1538,1528,1527,1539,43,1539,1527,1526,1540,0,1573,1561,1560,1574,1539,1527,1526,1540,43,1536,1539,1540,1537,0,1570,1573,1574,1571,1536,1539,1540,1537,43,1528,1538,1541,1542,0,1562,1572,1575,1576,1528,1538,1541,1542,43,1538,1535,1543,1541,0,1572,1569,1577,1575,1538,1535,1543,1541,43,1542,1541,1543,1544,0,1576,1575,1577,1578,1542,1541,1543,1544,43,1522,1521,1545,1546,0,1556,1555,1579,1580,1522,1521,1545,1546,43,1521,1515,1524,1545,0,1555,1549,1558,1579,1521,1515,1524,1545,43,1545,1524,1528,1542,0,1579,1558,1562,1576,1545,1524,1528,1542,43,1546,1545,1542,1544,0,1580,1579,1576,1578,1546,1545,1542,1544,43,1508,1507,1547,1548,0,1542,1541,1581,1582,1508,1507,1547,1548,43,1507,1506,1520,1547,0,1541,1540,1554,1581,1507,1506,1520,1547,43,1547,1520,1522,1549,0,1581,1554,1556,1583,1547,1520,1522,1549,43,1548,1547,1549,1550,0,1582,1581,1583,1584,1548,1547,1549,1550,43,1551,1552,1553,1554,0,1585,1586,1587,1588,1551,1552,1553,1554,43,1552,1550,1549,1553,0,1586,1584,1583,1587,1552,1550,1549,1553,43,1553,1549,1522,1546,0,1587,1583,1556,1580,1553,1549,1522,1546,43,1554,1553,1546,1544,0,1588,1587,1580,1578,1554,1553,1546,1544,43,1555,1556,1557,1558,0,1589,1590,1591,1592,1555,1556,1557,1558,43,1556,1559,1560,1557,0,1590,1593,1594,1591,1556,1559,1560,1557,43,1557,1560,1561,1562,0,1591,1594,1595,1596,1557,1560,1561,1562,43,1558,1557,1562,1563,0,1592,1591,1596,1597,1558,1557,1562,1563,43,1564,1565,1566,1567,0,1598,1599,1600,1601,1564,1565,1566,1567,43,1565,1555,1558,1566,0,1599,1589,1592,1600,1565,1555,1558,1566,43,1566,1558,1563,1568,0,1600,1592,1597,1602,1566,1558,1563,1568,43,1567,1566,1568,1569,0,1601,1600,1602,1603,1567,1566,1568,1569,43,1570,1571,1572,1573,0,1604,1605,1606,1607,1570,1571,1572,1573,43,1571,1574,1575,1572,0,1605,1608,1609,1606,1571,1574,1575,1572,43,1572,1575,1576,1577,0,1606,1609,1610,1611,1572,1575,1576,1577,43,1573,1572,1577,1578,0,1607,1606,1611,1612,1573,1572,1577,1578,43,1579,1580,1581,1582,0,1613,1614,1615,1616,1579,1580,1581,1582,43,1580,1570,1573,1581,0,1614,1604,1607,1615,1580,1570,1573,1581,43,1581,1573,1578,1583,0,1615,1607,1612,1617,1581,1573,1578,1583,43,1582,1581,1583,1584,0,1616,1615,1617,1618,1582,1581,1583,1584,43,1585,1586,1587,1588,0,1619,1620,1621,1622,1585,1586,1587,1588,43,1586,1579,1582,1587,0,1620,1613,1616,1621,1586,1579,1582,1587,43,1587,1582,1584,1589,0,1621,1616,1618,1623,1587,1582,1584,1589,43,1588,1587,1589,1590,0,1622,1621,1623,1624,1588,1587,1589,1590,43,1591,1592,1593,1594,0,1625,1626,1627,1628,1591,1592,1593,1594,43,1592,1509,1512,1593,0,1626,1543,1546,1627,1592,1509,1512,1593,43,1593,1512,1517,1595,0,1627,1546,1551,1629,1593,1512,1517,1595,43,1594,1593,1595,1596,0,1628,1627,1629,1630,1594,1593,1595,1596,43,1504,1597,1598,1505,0,1538,1631,1632,1539,1504,1597,1598,1505,43,1597,1596,1595,1598,0,1631,1630,1629,1632,1597,1596,1595,1598,43,1598,1595,1517,1518,0,1632,1629,1551,1552,1598,1595,1517,1518,43,1505,1598,1518,1506,0,1539,1632,1552,1540,1505,1598,1518,1506,43,1596,1597,1599,1600,0,1630,1631,1633,1634,1596,1597,1599,1600,43,1597,1504,1601,1599,0,1631,1538,1635,1633,1597,1504,1601,1599,43,1599,1601,1579,1586,0,1633,1635,1613,1620,1599,1601,1579,1586,43,1600,1599,1586,1585,0,1634,1633,1620,1619,1600,1599,1586,1585,43,1500,1602,1603,1501,0,1534,1636,1637,1535,1500,1602,1603,1501,43,1602,1570,1580,1603,0,1636,1604,1614,1637,1602,1570,1580,1603,43,1603,1580,1579,1601,0,1637,1614,1613,1635,1603,1580,1579,1601,43,1501,1603,1601,1504,0,1535,1637,1635,1538,1501,1603,1601,1504,43,1604,1605,1606,1607,0,1638,1639,1640,1641,1604,1605,1606,1607,43,1605,1574,1571,1606,0,1639,1608,1605,1640,1605,1574,1571,1606,43,1606,1571,1570,1602,0,1640,1605,1604,1636,1606,1571,1570,1602,43,1602,1500,1607,1606,0,1636,1534,1641,1640,1602,1500,1607,1606,43,1574,1608,1609,1575,0,1608,1642,1643,1609,1574,1608,1609,1575,43,1608,1610,1611,1609,0,1642,1644,1645,1643,1608,1610,1611,1609,43,1609,1611,1612,1613,0,1643,1645,1646,1647,1609,1611,1612,1613,43,1575,1609,1613,1576,0,1609,1643,1647,1610,1575,1609,1613,1576,43,1614,1615,1616,1617,0,1648,1649,1650,1651,1614,1615,1616,1617,43,1615,1610,1608,1616,0,1649,1644,1642,1650,1615,1610,1608,1616,43,1616,1608,1574,1605,0,1650,1642,1608,1639,1616,1608,1574,1605,43,1617,1616,1605,1604,0,1651,1650,1639,1638,1617,1616,1605,1604,43,1618,1619,1620,1621,0,1652,1653,1654,1655,1618,1619,1620,1621,43,1619,1622,1623,1620,0,1653,1656,1657,1654,1619,1622,1623,1620,43,1620,1623,1564,1567,0,1654,1657,1598,1601,1620,1623,1564,1567,43,1621,1620,1567,1569,0,1655,1654,1601,1603,1621,1620,1567,1569,43,1624,1625,1626,1627,0,1658,1659,1660,1661,1624,1625,1626,1627,43,1625,1628,1629,1626,0,1659,1662,1663,1660,1625,1628,1629,1626,43,1626,1629,1630,1631,0,1660,1663,1664,1665,1626,1629,1630,1631,43,1627,1626,1631,1622,0,1661,1660,1665,1656,1627,1626,1631,1622,43,1632,1633,1634,1635,0,1666,1667,1668,1669,1632,1633,1634,1635,43,1633,1636,1637,1634,0,1667,1670,1671,1668,1633,1636,1637,1634,43,1634,1637,1628,1625,0,1668,1671,1662,1659,1634,1637,1628,1625,43,1635,1634,1625,1624,0,1669,1668,1659,1658,1635,1634,1625,1624,43,1638,1639,1640,1641,0,1672,1673,1674,1675,1638,1639,1640,1641,43,1639,1624,1627,1640,0,1673,1658,1661,1674,1639,1624,1627,1640,43,1640,1627,1622,1619,0,1674,1661,1656,1653,1640,1627,1622,1619,43,1641,1640,1619,1618,0,1675,1674,1653,1652,1641,1640,1619,1618,43,1632,1635,1642,1643,0,1666,1669,1676,1677,1632,1635,1642,1643,43,1635,1624,1639,1642,0,1669,1658,1673,1676,1635,1624,1639,1642,43,1642,1639,1638,1644,0,1676,1673,1672,1678,1642,1639,1638,1644,43,1643,1642,1644,1645,0,1677,1676,1678,1679,1643,1642,1644,1645,43,1550,1552,1646,1647,0,1584,1586,1680,1681,1550,1552,1646,1647,43,1552,1551,1648,1646,0,1586,1585,1682,1680,1552,1551,1648,1646,43,1646,1648,1649,1650,0,1680,1682,1683,1684,1646,1648,1649,1650,43,1647,1646,1650,1651,0,1681,1680,1684,1685,1647,1646,1650,1651,43,1651,1652,1653,1647,0,1685,1686,1687,1681,1651,1652,1653,1647,43,1652,1654,1655,1653,0,1686,1688,1689,1687,1652,1654,1655,1653,43,1653,1655,1508,1548,0,1687,1689,1542,1582,1653,1655,1508,1548,43,1647,1653,1548,1550,0,1681,1687,1582,1584,1647,1653,1548,1550,43,1614,1617,1656,1657,0,1648,1651,1690,1691,1614,1617,1656,1657,43,1617,1604,1658,1656,0,1651,1638,1692,1690,1617,1604,1658,1656,43,1656,1658,1654,1659,0,1690,1692,1688,1693,1656,1658,1654,1659,43,1657,1656,1659,1660,0,1691,1690,1693,1694,1657,1656,1659,1660,43,1654,1658,1661,1655,0,1688,1692,1695,1689,1654,1658,1661,1655,43,1658,1604,1607,1661,0,1692,1638,1641,1695,1658,1604,1607,1661,43,1500,1503,1661,1607,0,1534,1537,1695,1641,1500,1503,1661,1607,43,1655,1661,1503,1508,0,1689,1695,1537,1542,1655,1661,1503,1508,43,1651,1662,1663,1652,0,1685,1696,1697,1686,1651,1662,1663,1652,43,1662,1664,1665,1663,0,1696,1698,1699,1697,1662,1664,1665,1663,43,1663,1665,1660,1659,0,1697,1699,1694,1693,1663,1665,1660,1659,43,1652,1663,1659,1654,0,1686,1697,1693,1688,1652,1663,1659,1654,43,1649,1666,1667,1650,0,1683,1700,1701,1684,1649,1666,1667,1650,43,1666,1668,1669,1667,0,1700,1702,1703,1701,1666,1668,1669,1667,43,1667,1669,1664,1662,0,1701,1703,1698,1696,1667,1669,1664,1662,43,1650,1667,1662,1651,0,1684,1701,1696,1685,1650,1667,1662,1651,43,1628,1637,1670,1671,0,1662,1671,1704,1705,1628,1637,1670,1671,43,1637,1636,1672,1670,0,1671,1670,1706,1704,1637,1636,1672,1670,43,1670,1672,1673,1674,0,1704,1706,1707,1708,1670,1672,1673,1674,43,1671,1670,1674,1675,0,1705,1704,1708,1709,1671,1670,1674,1675,43,1675,1676,1677,1671,0,1709,1710,1711,1705,1675,1676,1677,1671,43,1676,1678,1679,1677,0,1710,1712,1713,1711,1676,1678,1679,1677,43,1677,1679,1630,1629,0,1711,1713,1664,1663,1677,1679,1630,1629,43,1671,1677,1629,1628,0,1705,1711,1663,1662,1671,1677,1629,1628,43,1678,1676,1680,1681,0,1712,1710,1714,1715,1678,1676,1680,1681,43,1676,1675,1682,1680,0,1710,1709,1716,1714,1676,1675,1682,1680,43,1680,1682,1668,1683,0,1714,1716,1702,1717,1680,1682,1668,1683,43,1681,1680,1683,1684,0,1715,1714,1717,1718,1681,1680,1683,1684,43,1555,1565,1685,1556,0,1589,1599,1719,1590,1555,1565,1685,1556,43,1565,1564,1686,1685,0,1599,1598,1720,1719,1565,1564,1686,1685,43,1685,1686,1687,1688,0,1719,1720,1721,1722,1685,1686,1687,1688,43,1556,1685,1688,1559,0,1590,1719,1722,1593,1556,1685,1688,1559,43,1564,1623,1689,1686,0,1598,1657,1723,1720,1564,1623,1689,1686,43,1623,1622,1631,1689,0,1657,1656,1665,1723,1623,1622,1631,1689,43,1689,1631,1630,1690,0,1723,1665,1664,1724,1689,1631,1630,1690,43,1686,1689,1690,1687,0,1720,1723,1724,1721,1686,1689,1690,1687,43,1630,1679,1691,1690,0,1664,1713,1725,1724,1630,1679,1691,1690,43,1679,1678,1681,1691,0,1713,1712,1715,1725,1679,1678,1681,1691,43,1691,1681,1684,1692,0,1725,1715,1718,1726,1691,1681,1684,1692,43,1690,1691,1692,1687,0,1724,1725,1726,1721,1690,1691,1692,1687,43,1544,1543,1693,1694,0,1578,1577,1727,1728,1544,1543,1693,1694,43,1543,1535,1534,1693,0,1577,1569,1568,1727,1543,1535,1534,1693,43,1693,1534,1533,1695,0,1727,1568,1567,1729,1693,1534,1533,1695,43,1694,1693,1695,1696,0,1728,1727,1729,1730,1694,1693,1695,1696,43,1533,1530,1697,1695,0,1567,1564,1731,1729,1533,1530,1697,1695,43,1530,1529,1698,1697,0,1564,1563,1732,1731,1530,1529,1698,1697,43,1697,1698,1699,1700,0,1731,1732,1733,1734,1697,1698,1699,1700,43,1695,1697,1700,1696,0,1729,1731,1734,1730,1695,1697,1700,1696,43,1699,1701,1702,1700,0,1733,1735,1736,1734,1699,1701,1702,1700,43,1701,1561,1560,1702,0,1735,1595,1594,1736,1701,1561,1560,1702,43,1702,1560,1559,1703,0,1736,1594,1593,1737,1702,1560,1559,1703,43,1700,1702,1703,1696,0,1734,1736,1737,1730,1700,1702,1703,1696,43,1649,1648,1704,1705,0,1683,1682,1738,1739,1649,1648,1704,1705,43,1648,1551,1554,1704,0,1682,1585,1588,1738,1648,1551,1554,1704,43,1704,1554,1544,1694,0,1738,1588,1578,1728,1704,1554,1544,1694,43,1705,1704,1694,1696,0,1739,1738,1728,1730,1705,1704,1694,1696,43,1559,1688,1706,1703,0,1593,1722,1740,1737,1559,1688,1706,1703,43,1688,1687,1692,1706,0,1722,1721,1726,1740,1688,1687,1692,1706,43,1706,1692,1684,1707,0,1740,1726,1718,1741,1706,1692,1684,1707,43,1703,1706,1707,1696,0,1737,1740,1741,1730,1703,1706,1707,1696,43,1684,1683,1708,1707,0,1718,1717,1742,1741,1684,1683,1708,1707,43,1683,1668,1666,1708,0,1717,1702,1700,1742,1683,1668,1666,1708,43,1708,1666,1649,1705,0,1742,1700,1683,1739,1708,1666,1649,1705,43,1707,1708,1705,1696,0,1741,1742,1739,1730,1707,1708,1705,1696,43,1675,1674,1709,1682,0,1709,1708,1743,1716,1675,1674,1709,1682,43,1674,1673,1710,1709,0,1708,1707,1744,1743,1674,1673,1710,1709,43,1709,1710,1664,1669,0,1743,1744,1698,1703,1709,1710,1664,1669,43,1682,1709,1669,1668,0,1716,1743,1703,1702,1682,1709,1669,1668,43,1673,1672,1711,1710,0,1707,1706,1745,1744,1673,1672,1711,1710,43,1672,1636,1633,1711,0,1706,1670,1667,1745,1672,1636,1633,1711,43,1711,1633,1632,1712,0,1745,1667,1666,1746,1711,1633,1632,1712,43,1710,1711,1712,1664,0,1744,1745,1746,1698,1710,1711,1712,1664,43,1664,1712,1713,1665,0,1698,1746,1747,1699,1664,1712,1713,1665,43,1712,1632,1643,1713,0,1746,1666,1677,1747,1712,1632,1643,1713,43,1713,1643,1645,1714,0,1747,1677,1679,1748,1713,1643,1645,1714,43,1665,1713,1714,1660,0,1699,1747,1748,1694,1665,1713,1714,1660,43,1715,1716,1717,1718,0,1749,1750,1751,1752,1715,1716,1717,1718,43,1716,1719,1720,1717,0,1750,1753,1754,1751,1716,1719,1720,1717,43,1717,1720,1721,1722,0,1751,1754,1755,1756,1717,1720,1721,1722,43,1718,1717,1722,1723,0,1752,1751,1756,1757,1718,1717,1722,1723,43,1724,1725,1726,1727,0,1758,1759,1760,1761,1724,1725,1726,1727,43,1725,1728,1729,1726,0,1759,1762,1763,1760,1725,1728,1729,1726,43,1726,1729,1730,1731,0,1760,1763,1764,1765,1726,1729,1730,1731,43,1727,1726,1731,1732,0,1761,1760,1765,1766,1727,1726,1731,1732,43,1724,1727,1733,1734,0,1758,1761,1767,1768,1724,1727,1733,1734,43,1727,1732,1735,1733,0,1761,1766,1769,1767,1727,1732,1735,1733,43,1733,1735,1715,1736,0,1767,1769,1749,1770,1733,1735,1715,1736,43,1734,1733,1736,1737,0,1768,1767,1770,1771,1734,1733,1736,1737,43,1738,1739,1740,1741,0,1772,1773,1774,1775,1738,1739,1740,1741,43,1739,1728,1725,1740,0,1773,1762,1759,1774,1739,1728,1725,1740,43,1740,1725,1724,1742,0,1774,1759,1758,1776,1740,1725,1724,1742,43,1741,1740,1742,1743,0,1775,1774,1776,1777,1741,1740,1742,1743,43,1744,1745,1746,1747,0,1778,1779,1780,1781,1744,1745,1746,1747,43,1745,1748,1749,1746,0,1779,1782,1783,1780,1745,1748,1749,1746,43,1746,1749,1750,1751,0,1780,1783,1784,1785,1746,1749,1750,1751,43,1747,1746,1751,1752,0,1781,1780,1785,1786,1747,1746,1751,1752,43,1738,1741,1753,1754,0,1772,1775,1787,1788,1738,1741,1753,1754,43,1741,1743,1755,1753,0,1775,1777,1789,1787,1741,1743,1755,1753,43,1753,1755,1744,1747,0,1787,1789,1778,1781,1753,1755,1744,1747,43,1754,1753,1747,1752,0,1788,1787,1781,1786,1754,1753,1747,1752,43,1744,1755,1756,1757,0,1778,1789,1790,1791,1744,1755,1756,1757,43,1755,1743,1758,1756,0,1789,1777,1792,1790,1755,1743,1758,1756,43,1757,1756,1758,1759,0,1791,1790,1792,1793,1757,1756,1758,1759,43,1743,1742,1760,1758,0,1777,1776,1794,1792,1743,1742,1760,1758,43,1742,1724,1734,1760,0,1776,1758,1768,1794,1742,1724,1734,1760,43,1760,1734,1737,1761,0,1794,1768,1771,1795,1760,1734,1737,1761,43,1758,1760,1761,1759,0,1792,1794,1795,1793,1758,1760,1761,1759,43,1737,1736,1762,1763,0,1771,1770,1796,1797,1737,1736,1762,1763,43,1736,1715,1718,1762,0,1770,1749,1752,1796,1736,1715,1718,1762,43,1762,1718,1723,1764,0,1796,1752,1757,1798,1762,1718,1723,1764,43,1763,1762,1764,1765,0,1797,1796,1798,1799,1763,1762,1764,1765,43,1737,1763,1766,1761,0,1771,1797,1800,1795,1737,1763,1766,1761,43,1763,1765,1767,1766,0,1797,1799,1801,1800,1763,1765,1767,1766,43,1766,1767,1768,1769,0,1800,1801,1802,1803,1766,1767,1768,1769,43,1761,1766,1769,1759,0,1795,1800,1803,1793,1761,1766,1769,1759,43,1770,1771,1772,1773,0,1804,1805,1806,1807,1770,1771,1772,1773,43,1771,1774,1775,1772,0,1805,1808,1809,1806,1771,1774,1775,1772,43,1772,1775,1776,1777,0,1806,1809,1810,1811,1772,1775,1776,1777,43,1773,1772,1777,1778,0,1807,1806,1811,1812,1773,1772,1777,1778,43,1778,1777,1779,1780,0,1812,1811,1813,1814,1778,1777,1779,1780,43,1777,1776,1781,1779,0,1811,1810,1815,1813,1777,1776,1781,1779,43,1779,1781,1782,1783,0,1813,1815,1816,1817,1779,1781,1782,1783,43,1780,1779,1783,1784,0,1814,1813,1817,1818,1780,1779,1783,1784,43,1785,1786,1787,1788,0,1819,1820,1821,1822,1785,1786,1787,1788,43,1786,1789,1790,1787,0,1820,1823,1824,1821,1786,1789,1790,1787,43,1787,1790,1791,1792,0,1821,1824,1825,1826,1787,1790,1791,1792,43,1788,1787,1792,1793,0,1822,1821,1826,1827,1788,1787,1792,1793,43,1793,1792,1794,1795,0,1827,1826,1828,1829,1793,1792,1794,1795,43,1792,1791,1796,1794,0,1826,1825,1830,1828,1792,1791,1796,1794,43,1794,1796,1797,1798,0,1828,1830,1831,1832,1794,1796,1797,1798,43,1795,1794,1798,1799,0,1829,1828,1832,1833,1795,1794,1798,1799,43,1799,1798,1800,1801,0,1833,1832,1834,1835,1799,1798,1800,1801,43,1798,1797,1802,1800,0,1832,1831,1836,1834,1798,1797,1802,1800,43,1800,1802,1803,1804,0,1834,1836,1837,1838,1800,1802,1803,1804,43,1801,1800,1804,1805,0,1835,1834,1838,1839,1801,1800,1804,1805,43,1732,1731,1806,1807,0,1766,1765,1840,1841,1732,1731,1806,1807,43,1806,1731,1808,1809,0,1840,1842,1843,1844,1806,1731,1808,1809,43,1807,1806,1809,1810,0,1841,1840,1844,1845,1807,1806,1809,1810,43,1732,1807,1811,1735,0,1766,1841,1846,1769,1732,1807,1811,1735,43,1807,1810,1812,1811,0,1841,1845,1847,1846,1807,1810,1812,1811,43,1811,1812,1719,1716,0,1846,1847,1753,1750,1811,1812,1719,1716,43,1735,1811,1716,1715,0,1769,1846,1750,1749,1735,1811,1716,1715,43,1797,1813,1814,1802,0,1831,1848,1849,1836,1797,1813,1814,1802,43,1813,1719,1812,1814,0,1848,1753,1847,1849,1813,1719,1812,1814,43,1814,1812,1810,1815,0,1849,1847,1845,1850,1814,1812,1810,1815,43,1802,1814,1815,1803,0,1836,1849,1850,1837,1802,1814,1815,1803,43,1797,1796,1816,1813,0,1831,1830,1851,1848,1797,1796,1816,1813,43,1796,1791,1817,1816,0,1830,1825,1852,1851,1796,1791,1817,1816,43,1816,1817,1721,1720,0,1851,1852,1755,1754,1816,1817,1721,1720,43,1813,1816,1720,1719,0,1848,1851,1754,1753,1813,1816,1720,1719,43,1791,1790,1818,1817,0,1825,1824,1853,1852,1791,1790,1818,1817,43,1790,1789,1819,1818,0,1824,1823,1854,1853,1790,1789,1819,1818,43,1818,1819,1820,1821,0,1853,1854,1855,1856,1818,1819,1820,1821,43,1817,1818,1821,1721,0,1852,1853,1856,1755,1817,1818,1821,1721,43,1822,1823,1824,1825,0,1857,1858,1859,1860,1822,1823,1824,1825,43,1823,1826,1827,1824,0,1858,1861,1862,1859,1823,1826,1827,1824,43,1824,1827,1789,1786,0,1859,1862,1823,1820,1824,1827,1789,1786,43,1825,1824,1786,1785,0,1860,1859,1820,1819,1825,1824,1786,1785,43,1789,1827,1828,1819,0,1823,1862,1863,1854,1789,1827,1828,1819,43,1827,1826,1829,1828,0,1862,1861,1864,1863,1827,1826,1829,1828,43,1828,1829,1830,1831,0,1863,1864,1865,1866,1828,1829,1830,1831,43,1819,1828,1831,1820,0,1854,1863,1866,1855,1819,1828,1831,1820,43,1782,1832,1833,1783,0,1816,1867,1868,1817,1782,1832,1833,1783,43,1832,1834,1835,1833,0,1867,1869,1870,1868,1832,1834,1835,1833,43,1833,1835,1836,1837,0,1868,1870,1871,1872,1833,1835,1836,1837,43,1783,1833,1837,1784,0,1817,1868,1872,1818,1783,1833,1837,1784,43,1838,1839,1840,1841,0,1873,1874,1875,1876,1838,1839,1840,1841,43,1839,1842,1843,1840,0,1874,1877,1878,1875,1839,1842,1843,1840,43,1840,1843,1844,1845,0,1875,1878,1879,1880,1840,1843,1844,1845,43,1841,1840,1845,1834,0,1876,1875,1880,1869,1841,1840,1845,1834,43,1842,1846,1847,1843,0,1877,1881,1882,1878,1842,1846,1847,1843,43,1846,1848,1849,1847,0,1881,1883,1884,1882,1846,1848,1849,1847,43,1847,1849,1850,1851,0,1882,1884,1885,1886,1847,1849,1850,1851,43,1843,1847,1851,1844,0,1878,1882,1886,1879,1843,1847,1851,1844,43,1834,1845,1852,1835,0,1869,1880,1887,1870,1834,1845,1852,1835,43,1845,1844,1853,1852,0,1880,1879,1888,1887,1845,1844,1853,1852,43,1852,1853,1854,1855,0,1887,1888,1889,1890,1852,1853,1854,1855,43,1835,1852,1855,1836,0,1870,1887,1890,1871,1835,1852,1855,1836,43,1854,1853,1856,1857,0,1889,1888,1891,1892,1854,1853,1856,1857,43,1853,1844,1851,1856,0,1888,1879,1886,1891,1853,1844,1851,1856,43,1856,1851,1850,1858,0,1891,1886,1885,1893,1856,1851,1850,1858,43,1857,1856,1858,1859,0,1892,1891,1893,1894,1857,1856,1858,1859,43,1860,1861,1862,1863,0,1895,1896,1897,1898,1860,1861,1862,1863,43,1861,1768,1767,1862,0,1896,1802,1801,1897,1861,1768,1767,1862,43,1862,1767,1765,1864,0,1897,1801,1799,1899,1862,1767,1765,1864,43,1863,1862,1864,1865,0,1898,1897,1899,1900,1863,1862,1864,1865,43,1723,1866,1867,1764,0,1757,1901,1902,1798,1723,1866,1867,1764,43,1866,1868,1869,1867,0,1901,1903,1904,1902,1866,1868,1869,1867,43,1867,1869,1865,1864,0,1902,1904,1900,1899,1867,1869,1865,1864,43,1764,1867,1864,1765,0,1798,1902,1899,1799,1764,1867,1864,1765,43,1868,1870,1871,1872,0,1903,1905,1906,1907,1868,1870,1871,1872,43,1870,1820,1831,1871,0,1905,1855,1866,1906,1870,1820,1831,1871,43,1871,1831,1830,1873,0,1906,1866,1865,1908,1871,1831,1830,1873,43,1872,1871,1873,1874,0,1907,1906,1908,1909,1872,1871,1873,1874,43,1721,1821,1875,1722,0,1755,1856,1910,1756,1721,1821,1875,1722,43,1821,1820,1870,1875,0,1856,1855,1905,1910,1821,1820,1870,1875,43,1875,1870,1868,1866,0,1910,1905,1903,1901,1875,1870,1868,1866,43,1722,1875,1866,1723,0,1756,1910,1901,1757,1722,1875,1866,1723,43,1874,1876,1877,1872,0,1909,1911,1912,1907,1874,1876,1877,1872,43,1876,1878,1879,1877,0,1911,1913,1914,1912,1876,1878,1879,1877,43,1877,1879,1865,1869,0,1912,1914,1900,1904,1877,1879,1865,1869,43,1872,1877,1869,1868,0,1907,1912,1904,1903,1872,1877,1869,1868,43,1878,1880,1881,1879,0,1913,1915,1916,1914,1878,1880,1881,1879,43,1880,1882,1883,1881,0,1915,1917,1918,1916,1880,1882,1883,1881,43,1881,1883,1860,1863,0,1916,1918,1895,1898,1881,1883,1860,1863,43,1879,1881,1863,1865,0,1914,1916,1898,1900,1879,1881,1863,1865,43,1884,1885,1886,1887,0,1919,1920,1921,1922,1884,1885,1886,1887,43,1885,1848,1846,1886,0,1920,1883,1881,1921,1885,1848,1846,1886,43,1886,1846,1842,1888,0,1921,1881,1877,1923,1886,1846,1842,1888,43,1887,1886,1888,1889,0,1922,1921,1923,1924,1887,1886,1888,1889,43,1838,1890,1891,1839,0,1873,1925,1926,1874,1838,1890,1891,1839,43,1890,1892,1893,1891,0,1925,1927,1928,1926,1890,1892,1893,1891,43,1891,1893,1889,1888,0,1926,1928,1924,1923,1891,1893,1889,1888,43,1839,1891,1888,1842,0,1874,1926,1923,1877,1839,1891,1888,1842,43,1882,1894,1895,1896,0,1917,1929,1930,1931,1882,1894,1895,1896,43,1894,1889,1893,1895,0,1929,1924,1928,1930,1894,1889,1893,1895,43,1895,1893,1892,1897,0,1930,1928,1927,1932,1895,1893,1892,1897,43,1896,1895,1897,1898,0,1931,1930,1932,1933,1896,1895,1897,1898,43,1899,1900,1901,1902,0,1934,1935,1936,1937,1899,1900,1901,1902,43,1900,1782,1781,1901,0,1935,1816,1815,1936,1900,1782,1781,1901,43,1901,1781,1776,1775,0,1936,1815,1810,1809,1901,1781,1776,1775,43,1902,1901,1775,1774,0,1937,1936,1809,1808,1902,1901,1775,1774,43,1838,1841,1903,1904,0,1873,1876,1938,1939,1838,1841,1903,1904,43,1841,1834,1832,1903,0,1876,1869,1867,1938,1841,1834,1832,1903,43,1903,1832,1782,1900,0,1938,1867,1816,1935,1903,1832,1782,1900,43,1904,1903,1900,1899,0,1939,1938,1935,1934,1904,1903,1900,1899,43,1898,1897,1905,1906,0,1933,1932,1940,1941,1898,1897,1905,1906,43,1897,1892,1890,1905,0,1932,1927,1925,1940,1897,1892,1890,1905,43,1905,1890,1838,1904,0,1940,1925,1873,1939,1905,1890,1838,1904,43,1906,1905,1904,1899,0,1941,1940,1939,1934,1906,1905,1904,1899,43,1748,1745,1907,1908,0,1782,1779,1942,1943,1748,1745,1907,1908,43,1745,1744,1757,1907,0,1779,1778,1791,1942,1745,1744,1757,1907,43,1907,1757,1759,1909,0,1942,1791,1793,1944,1907,1757,1759,1909,43,1908,1907,1909,1910,0,1943,1942,1944,1945,1908,1907,1909,1910,43,1911,1912,1913,1914,0,1946,1947,1948,1949,1911,1912,1913,1914,43,1912,1750,1749,1913,0,1947,1784,1783,1948,1912,1750,1749,1913,43,1913,1749,1748,1908,0,1948,1783,1782,1943,1913,1749,1748,1908,43,1914,1913,1908,1910,0,1949,1948,1943,1945,1914,1913,1908,1910,43,1774,1771,1915,1916,0,1808,1805,1950,1951,1774,1771,1915,1916,43,1771,1770,1917,1915,0,1805,1804,1952,1950,1771,1770,1917,1915,43,1915,1917,1911,1914,0,1950,1952,1946,1949,1915,1917,1911,1914,43,1916,1915,1914,1910,0,1951,1950,1949,1945,1916,1915,1914,1910,43,1759,1769,1918,1909,0,1793,1803,1953,1944,1759,1769,1918,1909,43,1769,1768,1861,1918,0,1803,1802,1896,1953,1769,1768,1861,1918,43,1918,1861,1860,1919,0,1953,1896,1895,1954,1918,1861,1860,1919,43,1909,1918,1919,1910,0,1944,1953,1954,1945,1909,1918,1919,1910,43,1898,1906,1920,1921,0,1933,1941,1955,1956,1898,1906,1920,1921,43,1906,1899,1902,1920,0,1941,1934,1937,1955,1906,1899,1902,1920,43,1920,1902,1774,1916,0,1955,1937,1808,1951,1920,1902,1774,1916,43,1921,1920,1916,1910,0,1956,1955,1951,1945,1921,1920,1916,1910,43,1860,1883,1922,1919,0,1895,1918,1957,1954,1860,1883,1922,1919,43,1883,1882,1896,1922,0,1918,1917,1931,1957,1883,1882,1896,1922,43,1922,1896,1898,1921,0,1957,1931,1933,1956,1922,1896,1898,1921,43,1919,1922,1921,1910,0,1954,1957,1956,1945,1919,1922,1921,1910,43,1878,1923,1924,1880,0,1913,1958,1959,1915,1878,1923,1924,1880,43,1923,1884,1887,1924,0,1958,1919,1922,1959,1923,1884,1887,1924,43,1924,1887,1889,1894,0,1959,1922,1924,1929,1924,1887,1889,1894,43,1880,1924,1894,1882,0,1915,1959,1929,1917,1880,1924,1894,1882,43,1850,1849,1925,1926,0,1885,1884,1960,1961,1850,1849,1925,1926,43,1849,1848,1885,1925,0,1884,1883,1920,1960,1849,1848,1885,1925,43,1925,1885,1884,1923,0,1960,1920,1919,1958,1925,1885,1884,1923,43,1926,1925,1923,1878,0,1961,1960,1958,1913,1926,1925,1923,1878,43,1859,1858,1927,1928,0,1894,1893,1962,1963,1859,1858,1927,1928,43,1858,1850,1926,1927,0,1893,1885,1961,1962,1858,1850,1926,1927,43,1927,1926,1878,1876,0,1962,1961,1913,1911,1927,1926,1878,1876,43,1928,1927,1876,1874,0,1963,1962,1911,1909,1928,1927,1876,1874,43,1929,1930,1931,1932,0,1964,1965,1966,1967,1929,1930,1931,1932,43,1930,1933,1934,1931,0,1965,1968,1969,1966,1930,1933,1934,1931,43,1932,1931,1934,1935,0,1967,1966,1969,1970,1932,1931,1934,1935,43,1936,1937,1938,1939,0,1971,1972,1973,1974,1936,1937,1938,1939,43,1937,1940,1941,1938,0,1972,1975,1976,1973,1937,1940,1941,1938,43,1938,1941,1942,1943,0,1973,1976,1977,1978,1938,1941,1942,1943,43,1939,1938,1943,1944,0,1974,1973,1978,1979,1939,1938,1943,1944,43,412,1945,1946,416,0,1980,1981,1982,1983,412,1945,1946,416,43,1945,1936,1939,1946,0,1981,1971,1974,1982,1945,1936,1939,1946,43,1946,1939,1944,1947,0,1982,1974,1979,1984,1946,1939,1944,1947,43,416,1946,1947,418,0,1983,1982,1984,1985,416,1946,1947,418,43,403,1948,1949,410,0,1986,1987,1988,1989,403,1948,1949,410,43,1948,1933,1950,1949,0,1987,1968,1990,1988,1948,1933,1950,1949,43,1949,1950,1936,1945,0,1988,1990,1971,1981,1949,1950,1936,1945,43,410,1949,1945,412,0,1989,1988,1981,1980,410,1949,1945,412,43,1933,1930,1951,1950,0,1968,1965,1991,1990,1933,1930,1951,1950,43,1930,1929,1952,1951,0,1965,1964,1992,1991,1930,1929,1952,1951,43,1951,1952,1940,1937,0,1991,1992,1975,1972,1951,1952,1940,1937,43,1950,1951,1937,1936,0,1990,1991,1972,1971,1950,1951,1937,1936,43,1942,1953,1954,1955,0,1977,1993,1994,1995,1942,1953,1954,1955,43,1953,292,317,1954,0,1993,1996,1997,1994,1953,292,317,1954,43,1954,317,316,1956,0,1994,1997,1998,1999,1954,317,316,1956,43,1955,1954,1956,1957,0,1995,1994,1999,2000,1955,1954,1956,1957,43,1942,1941,1958,1953,0,1977,1976,2001,1993,1942,1941,1958,1953,43,1941,1940,1959,1958,0,1976,1975,2002,2001,1941,1940,1959,1958,43,1958,1959,294,293,0,2001,2002,2003,2004,1958,1959,294,293,43,1953,1958,293,292,0,1993,2001,2004,1996,1953,1958,293,292,43,1940,1952,1960,1959,0,1975,1992,2005,2002,1940,1952,1960,1959,43,1952,1929,1961,1960,0,1992,1964,2006,2005,1952,1929,1961,1960,43,1960,1961,321,320,0,2005,2006,2007,2008,1960,1961,321,320,43,1959,1960,320,294,0,2002,2005,2008,2003,1959,1960,320,294,43,1929,1932,1962,1961,0,1964,1967,2009,2006,1929,1932,1962,1961,43,1932,1935,1963,1962,0,1967,1970,2010,2009,1932,1935,1963,1962,43,1962,1963,397,396,0,2009,2010,2011,2012,1962,1963,397,396,43,1961,1962,396,321,0,2006,2009,2012,2007,1961,1962,396,321,43,397,1963,1964,402,0,2011,2010,2013,2014,397,1963,1964,402,43,1963,1935,1934,1964,0,2010,1970,1969,2013,1963,1935,1934,1964,43,1964,1934,1933,1948,0,2013,1969,1968,1987,1964,1934,1933,1948,43,402,1964,1948,403,0,2014,2013,1987,1986,402,1964,1948,403,43,1965,1966,1967,1968,0,2015,2016,2017,2018,1965,1966,1967,1968,43,1966,1969,1970,1967,0,2016,2019,2020,2017,1966,1969,1970,1967,43,1967,1970,1971,1972,0,2017,2020,2021,2022,1967,1970,1971,1972,43,1968,1967,1972,1973,0,2018,2017,2022,2023,1968,1967,1972,1973,43,492,494,1974,1975,0,2024,2025,2026,2027,492,494,1974,1975,43,494,475,1976,1974,0,2025,2028,2029,2026,494,475,1976,1974,43,1974,1976,1977,1978,0,2026,2029,2030,2031,1974,1976,1977,1978,43,1975,1974,1978,1979,0,2027,2026,2031,2032,1975,1974,1978,1979,43,485,488,1980,1981,0,2033,2034,2035,2036,485,488,1980,1981,43,488,492,1975,1980,0,2034,2024,2027,2035,488,492,1975,1980,43,1980,1975,1979,1982,0,2035,2027,2032,2037,1980,1975,1979,1982,43,1981,1980,1982,1969,0,2036,2035,2037,2019,1981,1980,1982,1969,43,480,1983,1984,478,0,2038,2039,2040,2041,480,1983,1984,478,43,1983,1985,1986,1984,0,2039,2042,2043,2040,1983,1985,1986,1984,43,1984,1986,1977,1976,0,2040,2043,2030,2029,1984,1986,1977,1976,43,478,1984,1976,475,0,2041,2040,2029,2028,478,1984,1976,475,43,1987,1988,1989,1990,0,2044,2045,2046,2047,1987,1988,1989,1990,43,1988,305,329,1989,0,2045,2048,2049,2046,1988,305,329,1989,43,1989,329,333,1991,0,2046,2049,2050,2051,1989,329,333,1991,43,1990,1989,1991,1992,0,2047,2046,2051,2052,1990,1989,1991,1992,43,333,664,1993,1991,0,2050,2053,2054,2051,333,664,1993,1991,43,664,667,1994,1993,0,2053,2055,2056,2054,664,667,1994,1993,43,1993,1994,1995,1996,0,2054,2056,2057,2058,1993,1994,1995,1996,43,1991,1993,1996,1992,0,2051,2054,2058,2052,1991,1993,1996,1992,43,1997,1998,1999,2000,0,2059,2060,2061,2062,1997,1998,1999,2000,43,1998,1985,1983,1999,0,2060,2042,2039,2061,1998,1985,1983,1999,43,1999,1983,480,500,0,2061,2039,2038,2063,1999,1983,480,500,43,2000,1999,500,497,0,2062,2061,2063,2064,2000,1999,500,497,43,497,496,2001,2000,0,2064,2065,2066,2062,497,496,2001,2000,43,496,425,2002,2001,0,2065,2067,2068,2066,496,425,2002,2001,43,2001,2002,2003,2004,0,2066,2068,2069,2070,2001,2002,2003,2004,43,2000,2001,2004,1997,0,2062,2066,2070,2059,2000,2001,2004,1997,43,1957,1956,2005,2006,0,2000,1999,2071,2072,1957,1956,2005,2006,43,1956,316,314,2005,0,1999,1998,2073,2071,1956,316,314,2005,43,2005,314,306,2007,0,2071,2073,2074,2075,2005,314,306,2007,43,2006,2005,2007,2008,0,2072,2071,2075,2076,2006,2005,2007,2008,43,1987,2009,2010,1988,0,2044,2077,2078,2045,1987,2009,2010,1988,43,2009,2008,2007,2010,0,2077,2076,2075,2078,2009,2008,2007,2010,43,2010,2007,306,309,0,2078,2075,2074,2079,2010,2007,306,309,43,1988,2010,309,305,0,2045,2078,2079,2048,1988,2010,309,305,43,425,424,2011,2002,0,2067,2080,2081,2068,425,424,2011,2002,43,424,420,2012,2011,0,2080,2082,2083,2081,424,420,2012,2011,43,2011,2012,2013,2014,0,2081,2083,2084,2085,2011,2012,2013,2014,43,2002,2011,2014,2003,0,2068,2081,2085,2069,2002,2011,2014,2003,43,420,419,2015,2012,0,2082,2086,2087,2083,420,419,2015,2012,43,419,418,1947,2015,0,2086,1985,1984,2087,419,418,1947,2015,43,2015,1947,1944,2016,0,2087,1984,1979,2088,2015,1947,1944,2016,43,2012,2015,2016,2013,0,2083,2087,2088,2084,2012,2015,2016,2013,43,2013,2016,2017,2018,0,2084,2088,2089,2090,2013,2016,2017,2018,43,2016,1944,1943,2017,0,2088,1979,1978,2089,2016,1944,1943,2017,43,2017,1943,1942,1955,0,2089,1978,1977,1995,2017,1943,1942,1955,43,2018,2017,1955,1957,0,2090,2089,1995,2000,2018,2017,1955,1957,43,2003,2014,2019,2020,0,2069,2085,2091,2092,2003,2014,2019,2020,43,2014,2013,2018,2019,0,2085,2084,2090,2091,2014,2013,2018,2019,43,2019,2018,1957,2006,0,2091,2090,2000,2072,2019,2018,1957,2006,43,2020,2019,2006,2008,0,2092,2091,2072,2076,2020,2019,2006,2008,43,2003,2020,2021,2004,0,2069,2092,2093,2070,2003,2020,2021,2004,43,2020,2008,2009,2021,0,2092,2076,2077,2093,2020,2008,2009,2021,43,2021,2009,1987,2022,0,2093,2077,2044,2094,2021,2009,1987,2022,43,2004,2021,2022,1997,0,2070,2093,2094,2059,2004,2021,2022,1997,43,1992,2023,2024,1990,0,2052,2095,2096,2047,1992,2023,2024,1990,43,2023,1985,1998,2024,0,2095,2042,2060,2096,2023,1985,1998,2024,43,2024,1998,1997,2022,0,2096,2060,2059,2094,2024,1998,1997,2022,43,1990,2024,2022,1987,0,2047,2096,2094,2044,1990,2024,2022,1987,43,1977,1986,2025,2026,0,2030,2043,2097,2098,1977,1986,2025,2026,43,1986,1985,2023,2025,0,2043,2042,2095,2097,1986,1985,2023,2025,43,2026,2025,2023,1992,0,2098,2097,2095,2052,2026,2025,2023,1992,43,1979,1978,2027,2028,0,2032,2031,2099,2100,1979,1978,2027,2028,43,1978,1977,2026,2027,0,2031,2030,2098,2099,1978,1977,2026,2027,43,2027,2026,1992,1996,0,2099,2098,2052,2058,2027,2026,1992,1996,43,2028,2027,1996,1995,0,2100,2099,2058,2057,2028,2027,1996,1995,43,1971,1970,2029,2030,0,2021,2020,2101,2102,1971,1970,2029,2030,43,1970,1969,1982,2029,0,2020,2019,2037,2101,1970,1969,1982,2029,43,2029,1982,1979,2028,0,2101,2037,2032,2100,2029,1982,1979,2028,43,2030,2029,2028,1995,0,2102,2101,2100,2057,2030,2029,2028,1995,43,1973,1972,2031,2032,0,2023,2022,2103,2104,1973,1972,2031,2032,43,1972,1971,2033,2031,0,2022,2021,2105,2103,1972,1971,2033,2031,43,2031,2033,672,674,0,2103,2105,2106,2107,2031,2033,672,674,43,2032,2031,674,676,0,2104,2103,2107,2108,2032,2031,674,676,43,672,2033,2034,670,0,2106,2105,2109,2110,672,2033,2034,670,43,2033,1971,2030,2034,0,2105,2021,2102,2109,2033,1971,2030,2034,43,2034,2030,1995,1994,0,2109,2102,2057,2056,2034,2030,1995,1994,43,670,2034,1994,667,0,2110,2109,2056,2055,670,2034,1994,667,43,1965,2035,2036,1966,0,2015,2111,2112,2016,1965,2035,2036,1966,43,2035,504,503,2036,0,2111,2113,2114,2112,2035,504,503,2036,43,2036,503,485,1981,0,2112,2114,2033,2036,2036,503,485,1981,43,1966,2036,1981,1969,0,2016,2112,2036,2019,1966,2036,1981,1969,43,2037,2038,2039,2040,0,2115,2116,2117,2118,2037,2038,2039,2040,43,2038,2041,2042,2039,0,2116,2119,2120,2117,2038,2041,2042,2039,43,2040,2039,2042,2043,0,2118,2117,2120,2121,2040,2039,2042,2043,43,2044,2045,2046,2047,0,2122,2123,2124,2125,2044,2045,2046,2047,43,2045,2048,2049,2046,0,2123,2126,2127,2124,2045,2048,2049,2046,43,2046,2049,2050,2051,0,2124,2127,2128,2129,2046,2049,2050,2051,43,2047,2046,2051,2052,0,2125,2124,2129,2130,2047,2046,2051,2052,43,2052,2051,2053,2054,0,2130,2129,2131,2132,2052,2051,2053,2054,43,2051,2050,2055,2053,0,2129,2128,2133,2131,2051,2050,2055,2053,43,2053,2055,1172,1179,0,2131,2133,2134,2135,2053,2055,1172,1179,43,2054,2053,1179,1178,0,2132,2131,2135,2136,2054,2053,1179,1178,43,2050,2056,2057,2055,0,2128,2137,2138,2133,2050,2056,2057,2055,43,2056,2037,2058,2057,0,2137,2115,2139,2138,2056,2037,2058,2057,43,2057,2058,1161,1173,0,2138,2139,2140,2141,2057,2058,1161,1173,43,2055,2057,1173,1172,0,2133,2138,2141,2134,2055,2057,1173,1172,43,2048,2059,2060,2049,0,2126,2142,2143,2127,2048,2059,2060,2049,43,2059,2041,2038,2060,0,2142,2119,2116,2143,2059,2041,2038,2060,43,2060,2038,2037,2056,0,2143,2116,2115,2137,2060,2038,2037,2056,43,2049,2060,2056,2050,0,2127,2143,2137,2128,2049,2060,2056,2050,43,1074,1072,2061,2062,0,2144,2145,2146,2147,1074,1072,2061,2062,43,1072,1050,2063,2061,0,2145,2148,2149,2146,1072,1050,2063,2061,43,2061,2063,2044,2064,0,2146,2149,2122,2150,2061,2063,2044,2064,43,2062,2061,2064,2065,0,2147,2146,2150,2151,2062,2061,2064,2065,43,1046,2066,2067,1047,0,2152,2153,2154,2155,1046,2066,2067,1047,43,2066,2048,2045,2067,0,2153,2126,2123,2154,2066,2048,2045,2067,43,2067,2045,2044,2063,0,2154,2123,2122,2149,2067,2045,2044,2063,43,1047,2067,2063,1050,0,2155,2154,2149,2148,1047,2067,2063,1050,43,1076,2068,2069,1077,0,2156,2157,2158,2159,1076,2068,2069,1077,43,2068,2041,2059,2069,0,2157,2119,2142,2158,2068,2041,2059,2069,43,2069,2059,2048,2066,0,2158,2142,2126,2153,2069,2059,2048,2066,43,1077,2069,2066,1046,0,2159,2158,2153,2152,1077,2069,2066,1046,43,1155,2070,2071,1153,0,2160,2161,2162,2163,1155,2070,2071,1153,43,2070,2043,2042,2071,0,2161,2121,2120,2162,2070,2043,2042,2071,43,2071,2042,2041,2068,0,2162,2120,2119,2157,2071,2042,2041,2068,43,1153,2071,2068,1076,0,2163,2162,2157,2156,1153,2071,2068,1076,43,2037,2040,2072,2058,0,2115,2118,2164,2139,2037,2040,2072,2058,43,2040,2043,2070,2072,0,2118,2121,2161,2164,2040,2043,2070,2072,43,2072,2070,1155,1157,0,2164,2161,2160,2165,2072,2070,1155,1157,43,2058,2072,1157,1161,0,2139,2164,2165,2140,2058,2072,1157,1161,43,2073,2074,2075,2076,0,2166,2167,2168,2169,2073,2074,2075,2076,43,2074,2077,2078,2075,0,2167,2170,2171,2168,2074,2077,2078,2075,43,2075,2078,1965,1968,0,2168,2171,2172,2173,2075,2078,1965,1968,43,2076,2075,1968,1973,0,2169,2168,2173,2174,2076,2075,1968,1973,43,2079,2080,2081,2082,0,2175,2176,2177,2178,2079,2080,2081,2082,43,2080,1236,1252,2081,0,2176,2179,2180,2177,2080,1236,1252,2081,43,2081,1252,1250,2083,0,2177,2180,2181,2182,2081,1252,1250,2083,43,2082,2081,2083,2084,0,2178,2177,2182,2183,2082,2081,2083,2084,43,2084,2083,2085,2086,0,2183,2182,2184,2185,2084,2083,2085,2086,43,2083,1250,1249,2085,0,2182,2181,2186,2184,2083,1250,1249,2085,43,2085,1249,1248,2087,0,2184,2186,2187,2188,2085,1249,1248,2087,43,2086,2085,2087,2077,0,2185,2184,2188,2170,2086,2085,2087,2077,43,2079,2088,2089,2080,0,2175,2189,2190,2176,2079,2088,2089,2080,43,2088,2090,2091,2089,0,2189,2191,2192,2190,2088,2090,2091,2089,43,2089,2091,1238,1237,0,2190,2192,2193,2194,2089,2091,1238,1237,43,2080,2089,1237,1236,0,2176,2190,2194,2179,2080,2089,1237,1236,43,1091,1090,2092,2093,0,2195,2196,2197,2198,1091,1090,2092,2093,43,1090,1063,2094,2092,0,2196,2199,2200,2197,1090,1063,2094,2092,43,2092,2094,2095,2096,0,2197,2200,2201,2202,2092,2094,2095,2096,43,2093,2092,2096,2097,0,2198,2197,2202,2203,2093,2092,2096,2097,43,2098,2099,2100,2101,0,2204,2205,2206,2207,2098,2099,2100,2101,43,2099,1403,1402,2100,0,2205,2208,2209,2206,2099,1403,1402,2100,43,2100,1402,1091,2093,0,2206,2209,2195,2198,2100,1402,1091,2093,43,2101,2100,2093,2097,0,2207,2206,2198,2203,2101,2100,2093,2097,43,1238,2091,2102,1258,0,2193,2192,2210,2211,1238,2091,2102,1258,43,2091,2090,2103,2102,0,2192,2191,2212,2210,2091,2090,2103,2102,43,2102,2103,2104,2105,0,2210,2212,2213,2214,2102,2103,2104,2105,43,1258,2102,2105,1253,0,2211,2210,2214,2215,1258,2102,2105,1253,43,2106,2107,2108,2109,0,2216,2217,2218,2219,2106,2107,2108,2109,43,2107,1180,1254,2108,0,2217,2220,2221,2218,2107,1180,1254,2108,43,2108,1254,1253,2105,0,2218,2221,2215,2214,2108,1254,1253,2105,43,2109,2108,2105,2104,0,2219,2218,2214,2213,2109,2108,2105,2104,43,1067,1075,2110,2111,0,2222,2223,2224,2225,1067,1075,2110,2111,43,1075,1074,2062,2110,0,2223,2144,2147,2224,1075,1074,2062,2110,43,2110,2062,2065,2112,0,2224,2147,2151,2226,2110,2062,2065,2112,43,2111,2110,2112,2113,0,2225,2224,2226,2227,2111,2110,2112,2113,43,1067,2111,2114,1068,0,2222,2225,2228,2229,1067,2111,2114,1068,43,2111,2113,2115,2114,0,2225,2227,2230,2228,2111,2113,2115,2114,43,2114,2115,2095,2094,0,2228,2230,2201,2200,2114,2115,2095,2094,43,1068,2114,2094,1063,0,2229,2228,2200,2199,1068,2114,2094,1063,43,2116,2117,2118,2119,0,2231,2232,2233,2234,2116,2117,2118,2119,43,2117,1174,1181,2118,0,2232,2235,2236,2233,2117,1174,1181,2118,43,2118,1181,1180,2107,0,2233,2236,2220,2217,2118,1181,1180,2107,43,2119,2118,2107,2106,0,2234,2233,2217,2216,2119,2118,2107,2106,43,2052,2054,2120,2121,0,2130,2132,2237,2238,2052,2054,2120,2121,43,2054,1178,1175,2120,0,2132,2136,2239,2237,2054,1178,1175,2120,43,2120,1175,1174,2117,0,2237,2239,2235,2232,2120,1175,1174,2117,43,2121,2120,2117,2116,0,2238,2237,2232,2231,2121,2120,2117,2116,43,2044,2047,2122,2064,0,2122,2125,2240,2150,2044,2047,2122,2064,43,2047,2052,2121,2122,0,2125,2130,2238,2240,2047,2052,2121,2122,43,2122,2121,2116,2123,0,2240,2238,2231,2241,2122,2121,2116,2123,43,2064,2122,2123,2065,0,2150,2240,2241,2151,2064,2122,2123,2065,43,2065,2123,2124,2112,0,2151,2241,2242,2226,2065,2123,2124,2112,43,2123,2116,2119,2124,0,2241,2231,2234,2242,2123,2116,2119,2124,43,2124,2119,2106,2125,0,2242,2234,2216,2243,2124,2119,2106,2125,43,2112,2124,2125,2113,0,2226,2242,2243,2227,2112,2124,2125,2113,43,2095,2115,2126,2127,0,2201,2230,2244,2245,2095,2115,2126,2127,43,2115,2113,2125,2126,0,2230,2227,2243,2244,2115,2113,2125,2126,43,2126,2125,2106,2109,0,2244,2243,2216,2219,2126,2125,2106,2109,43,2127,2126,2109,2104,0,2245,2244,2219,2213,2127,2126,2109,2104,43,2104,2103,2128,2127,0,2213,2212,2246,2245,2104,2103,2128,2127,43,2103,2090,2129,2128,0,2212,2191,2247,2246,2103,2090,2129,2128,43,2128,2129,2097,2096,0,2246,2247,2203,2202,2128,2129,2097,2096,43,2127,2128,2096,2095,0,2245,2246,2202,2201,2127,2128,2096,2095,43,2090,2088,2130,2129,0,2191,2189,2248,2247,2090,2088,2130,2129,43,2088,2079,2131,2130,0,2189,2175,2249,2248,2088,2079,2131,2130,43,2129,2130,2131,2097,0,2247,2248,2249,2203,2129,2130,2131,2097,43,2097,2131,2132,2101,0,2203,2249,2250,2207,2097,2131,2132,2101,43,2131,2079,2082,2132,0,2249,2175,2178,2250,2131,2079,2082,2132,43,2132,2082,2084,2133,0,2250,2178,2183,2251,2132,2082,2084,2133,43,2101,2132,2133,2098,0,2207,2250,2251,2204,2101,2132,2133,2098,43,2084,2086,2134,2133,0,2183,2185,2252,2251,2084,2086,2134,2133,43,2086,2077,2074,2134,0,2185,2170,2167,2252,2086,2077,2074,2134,43,2134,2074,2073,2135,0,2252,2167,2166,2253,2134,2074,2073,2135,43,2133,2134,2135,2098,0,2251,2252,2253,2204,2133,2134,2135,2098,43,1408,2136,2137,1410,0,2254,2255,2256,2257,1408,2136,2137,1410,43,2136,2073,2076,2137,0,2255,2166,2169,2256,2136,2073,2076,2137,43,2137,2076,1973,2032,0,2256,2169,2174,2258,2137,2076,1973,2032,43,1410,2137,2032,676,0,2257,2256,2258,2259,1410,2137,2032,676,43,2098,2135,2138,2099,0,2204,2253,2260,2205,2098,2135,2138,2099,43,2135,2073,2136,2138,0,2253,2166,2255,2260,2135,2073,2136,2138,43,2138,2136,1408,1407,0,2260,2255,2254,2261,2138,2136,1408,1407,43,2099,2138,1407,1403,0,2205,2260,2261,2208,2099,2138,1407,1403,43,1248,1259,2139,2087,0,2187,2262,2263,2188,1248,1259,2139,2087,43,1259,504,2035,2139,0,2262,2264,2265,2263,1259,504,2035,2139,43,2139,2035,1965,2078,0,2263,2265,2172,2171,2139,2035,1965,2078,43,2087,2139,2078,2077,0,2188,2263,2171,2170,2087,2139,2078,2077,43,2140,2141,2142,2143,0,2266,2267,2268,2269,2140,2141,2142,2143,43,2141,2144,2145,2142,0,2267,2270,2271,2268,2141,2144,2145,2142,43,2142,2145,2146,2147,0,2268,2271,2272,2273,2142,2145,2146,2147,43,2143,2142,2147,771,0,2269,2268,2273,771,2143,2142,2147,771,43,2148,2149,2150,2151,0,2274,2275,2276,2277,2148,2149,2150,2151,43,2149,2152,2153,2150,0,2275,2278,2279,2276,2149,2152,2153,2150,43,2150,2153,2154,2155,0,2276,2279,2280,2281,2150,2153,2154,2155,43,2151,2150,2155,2156,0,2277,2276,2281,2282,2151,2150,2155,2156,43,2156,2155,2157,2158,0,2282,2281,2283,2284,2156,2155,2157,2158,43,2155,2154,2159,2157,0,2281,2280,2285,2283,2155,2154,2159,2157,43,2157,2159,2146,2145,0,2283,2285,2272,2271,2157,2159,2146,2145,43,2158,2157,2145,2144,0,2284,2283,2271,2270,2158,2157,2145,2144,43,1513,2160,2161,1525,0,1547,2286,2287,1559,1513,2160,2161,1525,43,2160,2162,2163,2161,0,2286,2288,2289,2287,2160,2162,2163,2161,43,2161,2163,2164,2165,0,2287,2289,2290,2291,2161,2163,2164,2165,43,1525,2161,2165,1526,0,1559,2287,2291,1560,1525,2161,2165,1526,43,2162,2160,2166,2167,0,2288,2286,2292,2293,2162,2160,2166,2167,43,2160,1513,1510,2166,0,2286,1547,1544,2292,2160,1513,1510,2166,43,2166,1510,1509,1592,0,2292,1544,1543,1626,2166,1510,1509,1592,43,2167,2166,1592,1591,0,2293,2292,1626,1625,2167,2166,1592,1591,43,2162,2167,2168,2169,0,2288,2293,2294,2295,2162,2167,2168,2169,43,2167,1591,2170,2168,0,2293,1625,2296,2294,2167,1591,2170,2168,43,2168,2170,2171,2172,0,2294,2296,2297,2298,2168,2170,2171,2172,43,2169,2168,2172,2173,0,2295,2294,2298,2299,2169,2168,2172,2173,43,2174,2175,2176,2177,0,2300,2301,2302,2303,2174,2175,2176,2177,43,2175,2178,2179,2176,0,2301,2304,2305,2302,2175,2178,2179,2176,43,2176,2179,2180,2181,0,2302,2305,2306,2307,2176,2179,2180,2181,43,2177,2176,2181,2182,0,2303,2302,2307,2308,2177,2176,2181,2182,43,2183,2184,2185,2186,0,2309,2310,2311,2312,2183,2184,2185,2186,43,2184,2187,2188,2185,0,2310,2313,2314,2311,2184,2187,2188,2185,43,2185,2188,2174,2189,0,2311,2314,2300,2315,2185,2188,2174,2189,43,2186,2185,2189,2190,0,2312,2311,2315,2316,2186,2185,2189,2190,43,2191,2192,2193,2194,0,2317,2318,2319,2320,2191,2192,2193,2194,43,2192,2171,2195,2193,0,2318,2297,2321,2319,2192,2171,2195,2193,43,2193,2195,2196,2197,0,2319,2321,2322,2323,2193,2195,2196,2197,43,2194,2193,2197,2198,0,2320,2319,2323,2324,2194,2193,2197,2198,43,2178,2199,2200,2201,0,2304,2325,2326,2327,2178,2199,2200,2201,43,2199,2191,2194,2200,0,2325,2317,2320,2326,2199,2191,2194,2200,43,2200,2194,2198,2202,0,2326,2320,2324,2328,2200,2194,2198,2202,43,2201,2200,2202,2203,0,2327,2326,2328,2329,2201,2200,2202,2203,43,2173,2172,2204,2205,0,2299,2298,2330,2331,2173,2172,2204,2205,43,2172,2171,2192,2204,0,2298,2297,2318,2330,2172,2171,2192,2204,43,2204,2192,2191,2206,0,2330,2318,2317,2332,2204,2192,2191,2206,43,2205,2204,2206,2187,0,2331,2330,2332,2313,2205,2204,2206,2187,43,2187,2206,2207,2188,0,2313,2332,2333,2314,2187,2206,2207,2188,43,2206,2191,2199,2207,0,2332,2317,2325,2333,2206,2191,2199,2207,43,2207,2199,2178,2175,0,2333,2325,2304,2301,2207,2199,2178,2175,43,2188,2207,2175,2174,0,2314,2333,2301,2300,2188,2207,2175,2174,43,2190,2189,2208,2209,0,2316,2315,2334,2335,2190,2189,2208,2209,43,2189,2174,2177,2208,0,2315,2300,2303,2334,2189,2174,2177,2208,43,2208,2177,2182,2210,0,2334,2303,2308,2336,2208,2177,2182,2210,43,2209,2208,2210,2211,0,2335,2334,2336,2337,2209,2208,2210,2211,43,2212,2213,2214,2215,0,2338,2339,2340,2341,2212,2213,2214,2215,43,2213,2190,2209,2214,0,2339,2316,2335,2340,2213,2190,2209,2214,43,2214,2209,2211,2216,0,2340,2335,2337,2342,2214,2209,2211,2216,43,2215,2214,2216,2217,0,2341,2340,2342,2343,2215,2214,2216,2217,43,2218,2219,2220,2221,0,2344,2345,2346,2347,2218,2219,2220,2221,43,2219,2183,2186,2220,0,2345,2309,2312,2346,2219,2183,2186,2220,43,2220,2186,2190,2213,0,2346,2312,2316,2339,2220,2186,2190,2213,43,2221,2220,2213,2212,0,2347,2346,2339,2338,2221,2220,2213,2212,43,1529,1532,2222,2223,0,1563,1566,2348,2349,1529,1532,2222,2223,43,1532,1537,2224,2222,0,1566,1571,2350,2348,1532,1537,2224,2222,43,2222,2224,2225,2226,0,2348,2350,2351,2352,2222,2224,2225,2226,43,2223,2222,2226,2227,0,2349,2348,2352,2353,2223,2222,2226,2227,43,2228,2229,2230,2231,0,2354,2355,2356,2357,2228,2229,2230,2231,43,2229,2232,2233,2230,0,2355,2358,2359,2356,2229,2232,2233,2230,43,2230,2233,2227,2226,0,2356,2359,2353,2352,2230,2233,2227,2226,43,2231,2230,2226,2225,0,2357,2356,2352,2351,2231,2230,2226,2225,43,2164,2234,2235,2236,0,2290,2360,2361,2362,2164,2234,2235,2236,43,2234,2237,2238,2235,0,2360,2363,2364,2361,2234,2237,2238,2235,43,2235,2238,2228,2231,0,2361,2364,2354,2357,2235,2238,2228,2231,43,2236,2235,2231,2225,0,2362,2361,2357,2351,2236,2235,2231,2225,43,2232,2229,2239,2240,0,2358,2355,2365,2366,2232,2229,2239,2240,43,2229,2228,2241,2239,0,2355,2354,2367,2365,2229,2228,2241,2239,43,2239,2241,2218,2242,0,2365,2367,2344,2368,2239,2241,2218,2242,43,2240,2239,2242,2243,0,2366,2365,2368,2369,2240,2239,2242,2243,43,2228,2238,2244,2241,0,2354,2364,2370,2367,2228,2238,2244,2241,43,2238,2237,2245,2244,0,2364,2363,2371,2370,2238,2237,2245,2244,43,2244,2245,2183,2219,0,2370,2371,2309,2345,2244,2245,2183,2219,43,2241,2244,2219,2218,0,2367,2370,2345,2344,2241,2244,2219,2218,43,2173,2205,2246,2247,0,2299,2331,2372,2373,2173,2205,2246,2247,43,2205,2187,2184,2246,0,2331,2313,2310,2372,2205,2187,2184,2246,43,2246,2184,2183,2245,0,2372,2310,2309,2371,2246,2184,2183,2245,43,2247,2246,2245,2237,0,2373,2372,2371,2363,2247,2246,2245,2237,43,2164,2163,2248,2234,0,2290,2289,2374,2360,2164,2163,2248,2234,43,2163,2162,2169,2248,0,2289,2288,2295,2374,2163,2162,2169,2248,43,2248,2169,2173,2247,0,2374,2295,2299,2373,2248,2169,2173,2247,43,2234,2248,2247,2237,0,2360,2374,2373,2363,2234,2248,2247,2237,43,1537,1540,2249,2224,0,1571,1574,2375,2350,1537,1540,2249,2224,43,1540,1526,2165,2249,0,1574,1560,2291,2375,1540,1526,2165,2249,43,2249,2165,2164,2236,0,2375,2291,2290,2362,2249,2165,2164,2236,43,2224,2249,2236,2225,0,2350,2375,2362,2351,2224,2249,2236,2225,43,2182,2181,2250,2251,0,2308,2307,2376,2377,2182,2181,2250,2251,43,2181,2180,2252,2250,0,2307,2306,2378,2376,2181,2180,2252,2250,43,2250,2252,2253,2254,0,2376,2378,2379,2380,2250,2252,2253,2254,43,2251,2250,2254,2255,0,2377,2376,2380,2381,2251,2250,2254,2255,43,2256,2257,2258,2259,0,2382,2383,2384,2385,2256,2257,2258,2259,43,2257,2260,2261,2258,0,2383,2386,2387,2384,2257,2260,2261,2258,43,2258,2261,2262,2263,0,2384,2387,2388,2389,2258,2261,2262,2263,43,2259,2258,2263,2253,0,2385,2384,2389,2379,2259,2258,2263,2253,43,2264,2265,2266,2267,0,2390,2391,2392,2393,2264,2265,2266,2267,43,2265,2268,2269,2266,0,2391,2394,2395,2392,2265,2268,2269,2266,43,2266,2269,2260,2257,0,2392,2395,2386,2383,2266,2269,2260,2257,43,2267,2266,2257,2256,0,2393,2392,2383,2382,2267,2266,2257,2256,43,1585,1588,2270,2271,0,1619,1622,2396,2397,1585,1588,2270,2271,43,1588,1590,2272,2270,0,1622,1624,2398,2396,1588,1590,2272,2270,43,2270,2272,2273,2274,0,2396,2398,2399,2400,2270,2272,2273,2274,43,2271,2270,2274,2275,0,2397,2396,2400,2401,2271,2270,2274,2275,43,2217,2276,2277,2278,0,2343,2402,2403,2404,2217,2276,2277,2278,43,2276,2279,2280,2277,0,2402,2405,2406,2403,2276,2279,2280,2277,43,2277,2280,2281,2282,0,2403,2406,2407,2408,2277,2280,2281,2282,43,2278,2277,2282,2283,0,2404,2403,2408,2409,2278,2277,2282,2283,43,1699,1698,2284,1701,0,1733,1732,2410,1735,1699,1698,2284,1701,43,1698,1529,2223,2284,0,1732,1563,2349,2410,1698,1529,2223,2284,43,2284,2223,2227,2285,0,2410,2349,2353,2411,2284,2223,2227,2285,43,1701,2284,2285,1561,0,1735,2410,2411,1595,1701,2284,2285,1561,43,2227,2286,2287,2285,0,2353,2412,2413,2411,2227,2286,2287,2285,43,2286,2288,2289,2287,0,2412,2414,2415,2413,2286,2288,2289,2287,43,2285,2287,2289,1561,0,2411,2413,2415,1595,2285,2287,2289,1561,43,2290,2291,2292,2293,0,2416,2417,2418,2419,2290,2291,2292,2293,43,2291,2273,2294,2292,0,2417,2399,2420,2418,2291,2273,2294,2292,43,2292,2294,2295,2296,0,2418,2420,2421,2422,2292,2294,2295,2296,43,2293,2292,2296,2297,0,2419,2418,2422,2423,2293,2292,2296,2297,43,2298,2299,2300,2301,0,2424,2425,2426,2427,2298,2299,2300,2301,43,2299,1578,1577,2300,0,2425,1612,1611,2426,2299,1578,1577,2300,43,2300,1577,1576,2302,0,2426,1611,1610,2428,2300,1577,1576,2302,43,2301,2300,2302,2303,0,2427,2426,2428,2429,2301,2300,2302,2303,43,2304,2305,2306,2307,0,2430,2431,2432,2433,2304,2305,2306,2307,43,2305,2308,2309,2306,0,2431,2434,2435,2432,2305,2308,2309,2306,43,2306,2309,2281,2280,0,2432,2435,2407,2406,2306,2309,2281,2280,43,2307,2306,2280,2279,0,2433,2432,2406,2405,2307,2306,2280,2279,43,2298,2301,2310,2311,0,2424,2427,2436,2437,2298,2301,2310,2311,43,2301,2303,2312,2310,0,2427,2429,2438,2436,2301,2303,2312,2310,43,2310,2312,2313,2314,0,2436,2438,2439,2440,2310,2312,2313,2314,43,2311,2310,2314,2315,0,2437,2436,2440,2441,2311,2310,2314,2315,43,2152,2316,2317,2318,0,2278,2442,2443,2444,2152,2316,2317,2318,43,2316,2319,2320,2317,0,2442,2445,2446,2443,2316,2319,2320,2317,43,2317,2320,2321,2322,0,2443,2446,2447,2448,2317,2320,2321,2322,43,2318,2317,2322,2323,0,2444,2443,2448,2449,2318,2317,2322,2323,43,2324,2325,2326,2327,0,2450,2451,2452,2453,2324,2325,2326,2327,43,2325,2328,2329,2326,0,2451,2454,2455,2452,2325,2328,2329,2326,43,2327,2326,2329,1569,0,2453,2452,2455,1603,2327,2326,2329,1569,43,2330,2331,2332,2333,0,2456,2457,2458,2459,2330,2331,2332,2333,43,2331,2328,2325,2332,0,2457,2454,2451,2458,2331,2328,2325,2332,43,2333,2332,2325,2324,0,2459,2458,2451,2450,2333,2332,2325,2324,43,2334,2335,2336,2337,0,2460,2461,2462,2463,2334,2335,2336,2337,43,2335,2338,2339,2336,0,2461,2464,2465,2462,2335,2338,2339,2336,43,2336,2339,2340,2341,0,2462,2465,2466,2467,2336,2339,2340,2341,43,2337,2336,2341,2342,0,2463,2462,2467,2468,2337,2336,2341,2342,43,2323,2343,2344,2318,0,2449,2469,2470,2444,2323,2343,2344,2318,43,2343,2345,2346,2344,0,2469,2471,2472,2470,2343,2345,2346,2344,43,2344,2346,2154,2153,0,2470,2472,2280,2279,2344,2346,2154,2153,43,2318,2344,2153,2152,0,2444,2470,2279,2278,2318,2344,2153,2152,43,2334,2347,2348,2335,0,2460,2473,2474,2461,2334,2347,2348,2335,43,2347,2349,2350,2348,0,2473,2475,2476,2474,2347,2349,2350,2348,43,2348,2350,2351,2352,0,2474,2476,2477,2478,2348,2350,2351,2352,43,2335,2348,2352,2338,0,2461,2474,2478,2464,2335,2348,2352,2338,43,2353,2354,2355,2356,0,2479,2480,2481,2482,2353,2354,2355,2356,43,2354,2357,2358,2355,0,2480,2483,2484,2481,2354,2357,2358,2355,43,2355,2358,2359,2360,0,2481,2484,2485,2486,2355,2358,2359,2360,43,2356,2355,2360,2361,0,2482,2481,2486,2487,2356,2355,2360,2361,43,2362,2363,2364,2365,0,2488,2489,2490,2491,2362,2363,2364,2365,43,2363,2366,2367,2364,0,2489,2492,2493,2490,2363,2366,2367,2364,43,2364,2367,2368,2369,0,2490,2493,2494,2495,2364,2367,2368,2369,43,2365,2364,2369,2370,0,2491,2490,2495,2496,2365,2364,2369,2370,43,2366,2371,2372,2367,0,2492,2497,2498,2493,2366,2371,2372,2367,43,2371,2328,2373,2372,0,2497,2454,2499,2498,2371,2328,2373,2372,43,2367,2372,2373,2368,0,2493,2498,2499,2494,2367,2372,2373,2368,43,2368,2373,2374,2375,0,2494,2499,2500,2501,2368,2373,2374,2375,43,2373,2328,2331,2374,0,2499,2454,2457,2500,2373,2328,2331,2374,43,2375,2374,2331,2330,0,2501,2500,2457,2456,2375,2374,2331,2330,43,2368,2376,2377,2369,0,2494,2502,2503,2495,2368,2376,2377,2369,43,2376,2378,2379,2377,0,2502,2504,2505,2503,2376,2378,2379,2377,43,2377,2379,2380,2381,0,2503,2505,2506,2507,2377,2379,2380,2381,43,2369,2377,2381,2370,0,2495,2503,2507,2496,2369,2377,2381,2370,43,2330,2382,2383,2375,0,2456,2508,2509,2501,2330,2382,2383,2375,43,2382,2384,2385,2383,0,2508,2510,2511,2509,2382,2384,2385,2383,43,2383,2385,2378,2376,0,2509,2511,2504,2502,2383,2385,2378,2376,43,2375,2383,2376,2368,0,2501,2509,2502,2494,2375,2383,2376,2368,43,2378,2386,2387,2379,0,2504,2512,2513,2505,2378,2386,2387,2379,43,2386,2388,2389,2387,0,2512,2514,2515,2513,2386,2388,2389,2387,43,2387,2389,2359,2390,0,2513,2515,2485,2516,2387,2389,2359,2390,43,2379,2387,2390,2380,0,2505,2513,2516,2506,2379,2387,2390,2380,43,2378,2385,2391,2386,0,2504,2511,2517,2512,2378,2385,2391,2386,43,2385,2384,2392,2391,0,2511,2510,2518,2517,2385,2384,2392,2391,43,2391,2392,2393,2394,0,2517,2518,2519,2520,2391,2392,2393,2394,43,2386,2391,2394,2388,0,2512,2517,2520,2514,2386,2391,2394,2388,43,2395,2396,2397,2398,0,2521,2522,2523,2524,2395,2396,2397,2398,43,2396,2399,2400,2397,0,2522,2525,2526,2523,2396,2399,2400,2397,43,2397,2400,2401,2402,0,2523,2526,2527,2528,2397,2400,2401,2402,43,2398,2397,2402,2403,0,2524,2523,2528,2529,2398,2397,2402,2403,43,2399,2404,2405,2400,0,2525,2530,2531,2526,2399,2404,2405,2400,43,2404,2406,2407,2405,0,2530,2532,2533,2531,2404,2406,2407,2405,43,2405,2407,2319,2408,0,2531,2533,2445,2534,2405,2407,2319,2408,43,2400,2405,2408,2401,0,2526,2531,2534,2527,2400,2405,2408,2401,43,2409,2410,2411,2412,0,2535,2536,2537,2538,2409,2410,2411,2412,43,2410,2345,2343,2411,0,2536,2471,2469,2537,2410,2345,2343,2411,43,2411,2343,2323,2413,0,2537,2469,2449,2539,2411,2343,2323,2413,43,2412,2411,2413,2414,0,2538,2537,2539,2540,2412,2411,2413,2414,43,2414,2413,2415,2416,0,2540,2539,2541,2542,2414,2413,2415,2416,43,2413,2323,2322,2415,0,2539,2449,2448,2541,2413,2323,2322,2415,43,2415,2322,2321,2417,0,2541,2448,2447,2543,2415,2322,2321,2417,43,2416,2415,2417,2418,0,2542,2541,2543,2544,2416,2415,2417,2418,43,2281,2419,2420,2282,0,2407,2545,2546,2408,2281,2419,2420,2282,43,2419,2409,2412,2420,0,2545,2535,2538,2546,2419,2409,2412,2420,43,2420,2412,2414,2421,0,2546,2538,2540,2547,2420,2412,2414,2421,43,2282,2420,2421,2283,0,2408,2546,2547,2409,2282,2420,2421,2283,43,2418,2422,2423,2424,0,2544,2548,2549,2550,2418,2422,2423,2424,43,2422,2425,2426,2423,0,2548,2551,2552,2549,2422,2425,2426,2423,43,2423,2426,2243,2427,0,2549,2552,2369,2553,2423,2426,2243,2427,43,2424,2423,2427,2428,0,2550,2549,2553,2554,2424,2423,2427,2428,43,2243,2242,2429,2427,0,2369,2368,2555,2553,2243,2242,2429,2427,43,2242,2218,2221,2429,0,2368,2344,2347,2555,2242,2218,2221,2429,43,2429,2221,2212,2430,0,2555,2347,2338,2556,2429,2221,2212,2430,43,2427,2429,2430,2428,0,2553,2555,2556,2554,2427,2429,2430,2428,43,2283,2431,2432,2278,0,2409,2557,2558,2404,2283,2431,2432,2278,43,2431,2428,2430,2432,0,2557,2554,2556,2558,2431,2428,2430,2432,43,2432,2430,2212,2215,0,2558,2556,2338,2341,2432,2430,2212,2215,43,2278,2432,2215,2217,0,2404,2558,2341,2343,2278,2432,2215,2217,43,2283,2421,2433,2431,0,2409,2547,2559,2557,2283,2421,2433,2431,43,2421,2414,2416,2433,0,2547,2540,2542,2559,2421,2414,2416,2433,43,2433,2416,2418,2424,0,2559,2542,2544,2550,2433,2416,2418,2424,43,2431,2433,2424,2428,0,2557,2559,2550,2554,2431,2433,2424,2428,43,2434,2435,2436,2437,0,2560,2561,2562,2563,2434,2435,2436,2437,43,2435,2425,2422,2436,0,2561,2551,2548,2562,2435,2425,2422,2436,43,2436,2422,2418,2417,0,2562,2548,2544,2543,2436,2422,2418,2417,43,2437,2436,2417,2321,0,2563,2562,2543,2447,2437,2436,2417,2321,43,2393,2392,2438,2439,0,2519,2518,2564,2565,2393,2392,2438,2439,43,2392,2384,2382,2438,0,2518,2510,2508,2564,2392,2384,2382,2438,43,2438,2382,2330,2440,0,2564,2508,2456,2566,2438,2382,2330,2440,43,2439,2438,2440,2441,0,2565,2564,2566,2567,2439,2438,2440,2441,43,2330,2333,2442,2440,0,2456,2459,2568,2566,2330,2333,2442,2440,43,2333,2324,2443,2442,0,2459,2450,2569,2568,2333,2324,2443,2442,43,2440,2442,2443,2441,0,2566,2568,2569,2567,2440,2442,2443,2441,43,2406,2444,2445,2446,0,2532,2570,2571,2572,2406,2444,2445,2446,43,2444,2447,2448,2445,0,2570,2573,2574,2571,2444,2447,2448,2445,43,2445,2448,2449,2450,0,2571,2574,2575,2576,2445,2448,2449,2450,43,2446,2445,2450,2434,0,2572,2571,2576,2560,2446,2445,2450,2434,43,2447,2451,2452,2448,0,2573,2577,2578,2574,2447,2451,2452,2448,43,2451,2441,2443,2452,0,2577,2567,2569,2578,2451,2441,2443,2452,43,2452,2443,2324,2453,0,2578,2569,2450,2579,2452,2443,2324,2453,43,2448,2452,2453,2449,0,2574,2578,2579,2575,2448,2452,2453,2449,43,2232,2454,2455,2233,0,2358,2580,2581,2359,2232,2454,2455,2233,43,2454,2456,2457,2455,0,2580,2582,2583,2581,2454,2456,2457,2455,43,2455,2457,2288,2286,0,2581,2583,2414,2412,2455,2457,2288,2286,43,2233,2455,2286,2227,0,2359,2581,2412,2353,2233,2455,2286,2227,43,2456,2454,2458,2459,0,2582,2580,2584,2585,2456,2454,2458,2459,43,2454,2232,2240,2458,0,2580,2358,2366,2584,2454,2232,2240,2458,43,2458,2240,2243,2426,0,2584,2366,2369,2552,2458,2240,2243,2426,43,2459,2458,2426,2425,0,2585,2584,2552,2551,2459,2458,2426,2425,43,2288,2460,2461,2289,0,2414,2586,2587,2415,2288,2460,2461,2289,43,2460,2462,2463,2461,0,2586,2588,2589,2587,2460,2462,2463,2461,43,2461,2463,1563,1562,0,2587,2589,1597,1596,2461,2463,1563,1562,43,2289,2461,1562,1561,0,2415,2587,1596,1595,2289,2461,1562,1561,43,2462,2464,2465,2466,0,2588,2590,2591,2592,2462,2464,2465,2466,43,2464,2449,2453,2465,0,2590,2575,2579,2591,2464,2449,2453,2465,43,2466,2465,2453,2324,0,2592,2591,2579,2450,2466,2465,2453,2324,43,1569,1568,2467,2327,0,1603,1602,2593,2453,1569,1568,2467,2327,43,1568,1563,2463,2467,0,1602,1597,2589,2593,1568,1563,2463,2467,43,2467,2463,2462,2466,0,2593,2589,2588,2592,2467,2463,2462,2466,43,2327,2467,2466,2324,0,2453,2593,2592,2450,2327,2467,2466,2324,43,2449,2464,2468,2469,0,2575,2590,2594,2595,2449,2464,2468,2469,43,2464,2462,2460,2468,0,2590,2588,2586,2594,2464,2462,2460,2468,43,2468,2460,2288,2457,0,2594,2586,2414,2583,2468,2460,2288,2457,43,2469,2468,2457,2456,0,2595,2594,2583,2582,2469,2468,2457,2456,43,2449,2469,2470,2450,0,2575,2595,2596,2576,2449,2469,2470,2450,43,2469,2456,2459,2470,0,2595,2582,2585,2596,2469,2456,2459,2470,43,2470,2459,2425,2435,0,2596,2585,2551,2561,2470,2459,2425,2435,43,2450,2470,2435,2434,0,2576,2596,2561,2560,2450,2470,2435,2434,43,2406,2446,2471,2407,0,2532,2572,2597,2533,2406,2446,2471,2407,43,2446,2434,2437,2471,0,2572,2560,2563,2597,2446,2434,2437,2471,43,2471,2437,2321,2320,0,2597,2563,2447,2446,2471,2437,2321,2320,43,2407,2471,2320,2319,0,2533,2597,2446,2445,2407,2471,2320,2319,43,2441,2451,2472,2473,0,2567,2577,2598,2599,2441,2451,2472,2473,43,2451,2447,2444,2472,0,2577,2573,2570,2598,2451,2447,2444,2472,43,2472,2444,2406,2404,0,2598,2570,2532,2530,2472,2444,2406,2404,43,2473,2472,2404,2399,0,2599,2598,2530,2525,2473,2472,2404,2399,43,2393,2439,2474,2475,0,2519,2565,2600,2601,2393,2439,2474,2475,43,2439,2441,2473,2474,0,2565,2567,2599,2600,2439,2441,2473,2474,43,2474,2473,2399,2396,0,2600,2599,2525,2522,2474,2473,2399,2396,43,2475,2474,2396,2395,0,2601,2600,2522,2521,2475,2474,2396,2395,43,2476,2477,2478,2479,0,2602,2603,2604,2605,2476,2477,2478,2479,43,2477,2480,2481,2478,0,2603,2606,2607,2604,2477,2480,2481,2478,43,2478,2481,2395,2398,0,2604,2607,2521,2524,2478,2481,2395,2398,43,2479,2478,2398,2403,0,2605,2604,2524,2529,2479,2478,2398,2403,43,2482,2483,2484,2485,0,2608,2609,2610,2611,2482,2483,2484,2485,43,2483,2361,2486,2484,0,2609,2487,2612,2610,2483,2361,2486,2484,43,2484,2486,2480,2477,0,2610,2612,2606,2603,2484,2486,2480,2477,43,2485,2484,2477,2476,0,2611,2610,2603,2602,2485,2484,2477,2476,43,2388,2394,2487,2488,0,2514,2520,2613,2614,2388,2394,2487,2488,43,2394,2393,2475,2487,0,2520,2519,2601,2613,2394,2393,2475,2487,43,2487,2475,2395,2481,0,2613,2601,2521,2607,2487,2475,2395,2481,43,2488,2487,2481,2480,0,2614,2613,2607,2606,2488,2487,2481,2480,43,2361,2360,2489,2486,0,2487,2486,2615,2612,2361,2360,2489,2486,43,2360,2359,2389,2489,0,2486,2485,2515,2615,2360,2359,2389,2489,43,2489,2389,2388,2488,0,2615,2515,2514,2614,2489,2389,2388,2488,43,2486,2489,2488,2480,0,2612,2615,2614,2606,2486,2489,2488,2480,43,2490,2491,2492,2493,0,2616,2617,2618,2619,2490,2491,2492,2493,43,2491,2353,2356,2492,0,2617,2479,2482,2618,2491,2353,2356,2492,43,2492,2356,2361,2483,0,2618,2482,2487,2609,2492,2356,2361,2483,43,2493,2492,2483,2482,0,2619,2618,2609,2608,2493,2492,2483,2482,43,2342,2494,2495,2496,0,2468,2620,2621,2622,2342,2494,2495,2496,43,2494,2497,2498,2495,0,2620,2623,2624,2621,2494,2497,2498,2495,43,2495,2498,2499,2500,0,2621,2624,2625,2626,2495,2498,2499,2500,43,2496,2495,2500,2501,0,2622,2621,2626,2627,2496,2495,2500,2501,43,2502,2503,2504,2505,0,2628,2629,2630,2631,2502,2503,2504,2505,43,2503,2497,2494,2504,0,2629,2623,2620,2630,2503,2497,2494,2504,43,2504,2494,2342,2341,0,2630,2620,2468,2467,2504,2494,2342,2341,43,2505,2504,2341,2340,0,2631,2630,2467,2466,2505,2504,2341,2340,43,2273,2272,2506,2294,0,2399,2398,2632,2420,2273,2272,2506,2294,43,2272,1590,1589,2506,0,2398,1624,1623,2632,2272,1590,1589,2506,43,2506,1589,1584,2507,0,2632,1623,1618,2633,2506,1589,1584,2507,43,2294,2506,2507,2295,0,2420,2632,2633,2421,2294,2506,2507,2295,43,1584,1583,2508,2509,0,1618,1617,2634,2635,1584,1583,2508,2509,43,1583,1578,2299,2508,0,1617,1612,2425,2634,1583,1578,2299,2508,43,2509,2508,2299,2298,0,2635,2634,2425,2424,2509,2508,2299,2298,43,2315,2510,2511,2311,0,2441,2636,2637,2437,2315,2510,2511,2311,43,2510,2295,2507,2511,0,2636,2421,2633,2637,2510,2295,2507,2511,43,2511,2507,1584,2509,0,2637,2633,1618,2635,2511,2507,1584,2509,43,2311,2511,2509,2298,0,2437,2637,2635,2424,2311,2511,2509,2298,43,1591,1594,2512,2170,0,1625,1628,2638,2296,1591,1594,2512,2170,43,1594,1596,2513,2512,0,1628,1630,2639,2638,1594,1596,2513,2512,43,2512,2513,2196,2195,0,2638,2639,2322,2321,2512,2513,2196,2195,43,2170,2512,2195,2171,0,2296,2638,2321,2297,2170,2512,2195,2171,43,1585,2271,2514,1600,0,1619,2397,2640,1634,1585,2271,2514,1600,43,2271,2275,2515,2514,0,2397,2401,2641,2640,2271,2275,2515,2514,43,2514,2515,2196,2513,0,2640,2641,2322,2639,2514,2515,2196,2513,43,1600,2514,2513,1596,0,1634,2640,2639,1630,1600,2514,2513,1596,43,2502,2505,2516,2517,0,2628,2631,2642,2643,2502,2505,2516,2517,43,2505,2340,2518,2516,0,2631,2466,2644,2642,2505,2340,2518,2516,43,2516,2518,1612,1611,0,2642,2644,1646,1645,2516,2518,1612,1611,43,2517,2516,1611,1610,0,2643,2642,1645,1644,2517,2516,1611,1610,43,2519,2520,2521,2522,0,2645,2646,2647,2648,2519,2520,2521,2522,43,2520,2502,2517,2521,0,2646,2628,2643,2647,2520,2502,2517,2521,43,2521,2517,1610,1615,0,2647,2643,1644,1649,2521,2517,1610,1615,43,2522,2521,1615,1614,0,2648,2647,1649,1648,2522,2521,1615,1614,43,2362,2365,2523,2524,0,2488,2491,2649,2650,2362,2365,2523,2524,43,2365,2370,2525,2523,0,2491,2496,2651,2649,2365,2370,2525,2523,43,2523,2525,2526,2527,0,2649,2651,2652,2653,2523,2525,2526,2527,43,2524,2523,2527,2528,0,2650,2649,2653,2654,2524,2523,2527,2528,43,2529,2530,2531,2532,0,2655,2656,2657,2658,2529,2530,2531,2532,43,2530,2533,2534,2531,0,2656,2659,2660,2657,2530,2533,2534,2531,43,2531,2534,2499,2535,0,2657,2660,2625,2661,2531,2534,2499,2535,43,2532,2531,2535,2519,0,2658,2657,2661,2645,2532,2531,2535,2519,43,2370,2381,2536,2525,0,2496,2507,2662,2651,2370,2381,2536,2525,43,2381,2380,2537,2536,0,2507,2506,2663,2662,2381,2380,2537,2536,43,2536,2537,2538,2539,0,2662,2663,2664,2665,2536,2537,2538,2539,43,2525,2536,2539,2526,0,2651,2662,2665,2652,2525,2536,2539,2526,43,2380,2390,2540,2537,0,2506,2516,2666,2663,2380,2390,2540,2537,43,2390,2359,2358,2540,0,2516,2485,2484,2666,2390,2359,2358,2540,43,2540,2358,2357,2541,0,2666,2484,2483,2667,2540,2358,2357,2541,43,2537,2540,2541,2538,0,2663,2666,2667,2664,2537,2540,2541,2538,43,2538,2541,2542,2543,0,2664,2667,2668,2669,2538,2541,2542,2543,43,2541,2357,2354,2542,0,2667,2483,2480,2668,2541,2357,2354,2542,43,2542,2354,2353,2544,0,2668,2480,2479,2670,2542,2354,2353,2544,43,2543,2542,2544,2545,0,2669,2668,2670,2671,2543,2542,2544,2545,43,2526,2539,2546,2547,0,2652,2665,2672,2673,2526,2539,2546,2547,43,2539,2538,2543,2546,0,2665,2664,2669,2672,2539,2538,2543,2546,43,2546,2543,2545,2548,0,2672,2669,2671,2674,2546,2543,2545,2548,43,2547,2546,2548,2533,0,2673,2672,2674,2659,2547,2546,2548,2533,43,2528,2527,2549,2550,0,2654,2653,2675,2676,2528,2527,2549,2550,43,2527,2526,2547,2549,0,2653,2652,2673,2675,2527,2526,2547,2549,43,2549,2547,2533,2530,0,2675,2673,2659,2656,2549,2547,2533,2530,43,2550,2549,2530,2529,0,2676,2675,2656,2655,2550,2549,2530,2529,43,2366,2551,2552,2371,0,2492,2677,2678,2497,2366,2551,2552,2371,43,2551,1618,1621,2552,0,2677,1652,1655,2678,2551,1618,1621,2552,43,2552,1621,1569,2329,0,2678,1655,1603,2455,2552,1621,1569,2329,43,2371,2552,2329,2328,0,2497,2678,2455,2454,2371,2552,2329,2328,43,2362,2553,2554,2363,0,2488,2679,2680,2489,2362,2553,2554,2363,43,2553,1638,1641,2554,0,2679,1672,1675,2680,2553,1638,1641,2554,43,2554,1641,1618,2551,0,2680,1675,1652,2677,2554,1641,1618,2551,43,2363,2554,2551,2366,0,2489,2680,2677,2492,2363,2554,2551,2366,43,1638,2553,2555,1644,0,1672,2679,2681,1678,1638,2553,2555,1644,43,2553,2362,2524,2555,0,2679,2488,2650,2681,2553,2362,2524,2555,43,2555,2524,2528,2556,0,2681,2650,2654,2682,2555,2524,2528,2556,43,1644,2555,2556,1645,0,1678,2681,2682,1679,1644,2555,2556,1645,43,1645,2556,2557,1714,0,1679,2682,2683,1748,1645,2556,2557,1714,43,2556,2528,2550,2557,0,2682,2654,2676,2683,2556,2528,2550,2557,43,2557,2550,2529,2558,0,2683,2676,2655,2684,2557,2550,2529,2558,43,1714,2557,2558,1660,0,1748,2683,2684,1694,1714,2557,2558,1660,43,2529,2532,2559,2558,0,2655,2658,2685,2684,2529,2532,2559,2558,43,2532,2519,2522,2559,0,2658,2645,2648,2685,2532,2519,2522,2559,43,2559,2522,1614,1657,0,2685,2648,1648,1691,2559,2522,1614,1657,43,2558,2559,1657,1660,0,2684,2685,1691,1694,2558,2559,1657,1660,43,2499,2498,2560,2535,0,2625,2624,2686,2661,2499,2498,2560,2535,43,2498,2497,2503,2560,0,2624,2623,2629,2686,2498,2497,2503,2560,43,2560,2503,2502,2520,0,2686,2629,2628,2646,2560,2503,2502,2520,43,2535,2560,2520,2519,0,2661,2686,2646,2645,2535,2560,2520,2519,43,2533,2548,2561,2534,0,2659,2674,2687,2660,2533,2548,2561,2534,43,2548,2545,2562,2561,0,2674,2671,2688,2687,2548,2545,2562,2561,43,2561,2562,2501,2500,0,2687,2688,2627,2626,2561,2562,2501,2500,43,2534,2561,2500,2499,0,2660,2687,2626,2625,2534,2561,2500,2499,43,2353,2491,2563,2544,0,2479,2617,2689,2670,2353,2491,2563,2544,43,2491,2490,2564,2563,0,2617,2616,2690,2689,2491,2490,2564,2563,43,2563,2564,2501,2562,0,2689,2690,2627,2688,2563,2564,2501,2562,43,2544,2563,2562,2545,0,2670,2689,2688,2671,2544,2563,2562,2545,43,2501,2564,2565,2566,0,2627,2690,2691,2692,2501,2564,2565,2566,43,2564,2490,2493,2565,0,2690,2616,2619,2691,2564,2490,2493,2565,43,2565,2493,2482,2567,0,2691,2619,2608,2693,2565,2493,2482,2567,43,2566,2565,2567,2568,0,2692,2691,2693,2694,2566,2565,2567,2568,43,2569,2570,2571,2572,0,2695,2696,2697,2698,2569,2570,2571,2572,43,2570,2573,2574,2571,0,2696,2699,2700,2697,2570,2573,2574,2571,43,2571,2574,2575,2576,0,2697,2700,2701,2702,2571,2574,2575,2576,43,2572,2571,2576,2577,0,2698,2697,2702,2703,2572,2571,2576,2577,43,2577,2576,2578,2579,0,2703,2702,2704,2705,2577,2576,2578,2579,43,2576,2575,2580,2578,0,2702,2701,2706,2704,2576,2575,2580,2578,43,2578,2580,2581,2582,0,2704,2706,2707,2708,2578,2580,2581,2582,43,2579,2578,2582,2583,0,2705,2704,2708,2709,2579,2578,2582,2583,43,2575,2574,2584,2580,0,2701,2700,2710,2706,2575,2574,2584,2580,43,2574,2573,2585,2584,0,2700,2699,2711,2710,2574,2573,2585,2584,43,2584,2585,2586,2587,0,2710,2711,2712,2713,2584,2585,2586,2587,43,2580,2584,2587,2581,0,2706,2710,2713,2707,2580,2584,2587,2581,43,2581,2587,2588,2589,0,2707,2713,2714,2715,2581,2587,2588,2589,43,2587,2586,2590,2588,0,2713,2712,2716,2714,2587,2586,2590,2588,43,2588,2590,2591,2592,0,2714,2716,2717,2718,2588,2590,2591,2592,43,2589,2588,2592,2593,0,2715,2714,2718,2719,2589,2588,2592,2593,43,2583,2582,2594,2595,0,2709,2708,2720,2721,2583,2582,2594,2595,43,2582,2581,2589,2594,0,2708,2707,2715,2720,2582,2581,2589,2594,43,2594,2589,2593,2596,0,2720,2715,2719,2722,2594,2589,2593,2596,43,2595,2594,2596,2315,0,2721,2720,2722,2441,2595,2594,2596,2315,43,2313,2597,2598,2314,0,2439,2723,2724,2440,2313,2597,2598,2314,43,2597,2599,2600,2598,0,2723,2725,2726,2724,2597,2599,2600,2598,43,2598,2600,2583,2595,0,2724,2726,2709,2721,2598,2600,2583,2595,43,2314,2598,2595,2315,0,2440,2724,2721,2441,2314,2598,2595,2315,43,2601,2602,2603,2604,0,2727,2728,2729,2730,2601,2602,2603,2604,43,2602,2577,2579,2603,0,2728,2703,2705,2729,2602,2577,2579,2603,43,2603,2579,2583,2600,0,2729,2705,2709,2726,2603,2579,2583,2600,43,2604,2603,2600,2599,0,2730,2729,2726,2725,2604,2603,2600,2599,43,2601,2605,2606,2602,0,2727,2731,2732,2728,2601,2605,2606,2602,43,2605,2607,2608,2606,0,2731,2733,2734,2732,2605,2607,2608,2606,43,2606,2608,2609,2610,0,2732,2734,2735,2736,2606,2608,2609,2610,43,2602,2606,2610,2577,0,2728,2732,2736,2703,2602,2606,2610,2577,43,2609,2611,2612,2610,0,2735,2737,2738,2736,2609,2611,2612,2610,43,2611,2613,2614,2612,0,2737,2739,2740,2738,2611,2613,2614,2612,43,2612,2614,2569,2572,0,2738,2740,2695,2698,2612,2614,2569,2572,43,2610,2612,2572,2577,0,2736,2738,2698,2703,2610,2612,2572,2577,43,2615,2616,2617,2618,0,2741,2742,2743,2744,2615,2616,2617,2618,43,2616,2349,2347,2617,0,2742,2475,2473,2743,2616,2349,2347,2617,43,2617,2347,2334,2619,0,2743,2473,2460,2745,2617,2347,2334,2619,43,2618,2617,2619,2620,0,2744,2743,2745,2746,2618,2617,2619,2620,43,2620,2619,2621,2622,0,2746,2745,2747,2748,2620,2619,2621,2622,43,2619,2334,2337,2621,0,2745,2460,2463,2747,2619,2334,2337,2621,43,2621,2337,2342,2623,0,2747,2463,2468,2749,2621,2337,2342,2623,43,2622,2621,2623,2624,0,2748,2747,2749,2750,2622,2621,2623,2624,43,2624,2623,2625,2626,0,2750,2749,2751,2752,2624,2623,2625,2626,43,2623,2342,2496,2625,0,2749,2468,2622,2751,2623,2342,2496,2625,43,2625,2496,2501,2566,0,2751,2622,2627,2692,2625,2496,2501,2566,43,2626,2625,2566,2568,0,2752,2751,2692,2694,2626,2625,2566,2568,43,2613,2611,2627,2628,0,2739,2737,2753,2754,2613,2611,2627,2628,43,2611,2609,2629,2627,0,2737,2735,2755,2753,2611,2609,2629,2627,43,2627,2629,2630,2631,0,2753,2755,2756,2757,2627,2629,2630,2631,43,2628,2627,2631,2632,0,2754,2753,2757,2758,2628,2627,2631,2632,43,2633,2634,2635,2636,0,2759,2760,2761,2762,2633,2634,2635,2636,43,2634,2637,2638,2635,0,2760,2763,2764,2761,2634,2637,2638,2635,43,2635,2638,2639,2640,0,2761,2764,2765,2766,2635,2638,2639,2640,43,2636,2635,2640,2641,0,2762,2761,2766,2767,2636,2635,2640,2641,43,2642,2643,2644,2645,0,2768,2769,2770,2771,2642,2643,2644,2645,43,2643,2639,2638,2644,0,2769,2765,2764,2770,2643,2639,2638,2644,43,2645,2644,2638,2637,0,2771,2770,2764,2763,2645,2644,2638,2637,43,2642,2646,2647,2648,0,2768,2772,2773,2774,2642,2646,2647,2648,43,2646,2649,2650,2647,0,2772,2775,2776,2773,2646,2649,2650,2647,43,2647,2650,2651,2652,0,2773,2776,2777,2778,2647,2650,2651,2652,43,2648,2647,2652,2653,0,2774,2773,2778,2779,2648,2647,2652,2653,43,2654,2655,2656,2657,0,2780,2781,2782,2783,2654,2655,2656,2657,43,2655,2658,2659,2656,0,2781,2784,2785,2782,2655,2658,2659,2656,43,2656,2659,2660,2661,0,2782,2785,2786,2787,2656,2659,2660,2661,43,2657,2656,2661,2568,0,2783,2782,2787,2694,2657,2656,2661,2568,43,2568,2567,2662,2657,0,2694,2693,2788,2783,2568,2567,2662,2657,43,2567,2482,2485,2662,0,2693,2608,2611,2788,2567,2482,2485,2662,43,2662,2485,2476,2663,0,2788,2611,2602,2789,2662,2485,2476,2663,43,2657,2662,2663,2654,0,2783,2788,2789,2780,2657,2662,2663,2654,43,2654,2663,2664,2665,0,2780,2789,2790,2791,2654,2663,2664,2665,43,2663,2476,2479,2664,0,2789,2602,2605,2790,2663,2476,2479,2664,43,2664,2479,2403,2666,0,2790,2605,2529,2792,2664,2479,2403,2666,43,2665,2664,2666,2651,0,2791,2790,2792,2777,2665,2664,2666,2651,43,2667,2668,2669,2670,0,2793,2794,2795,2796,2667,2668,2669,2670,43,2668,2671,2672,2669,0,2794,2797,2798,2795,2668,2671,2672,2669,43,2669,2672,2658,2655,0,2795,2798,2784,2781,2669,2672,2658,2655,43,2670,2669,2655,2654,0,2796,2795,2781,2780,2670,2669,2655,2654,43,2673,2674,2675,2676,0,2799,2800,2801,2802,2673,2674,2675,2676,43,2674,2677,2678,2675,0,2800,2803,2804,2801,2674,2677,2678,2675,43,2675,2678,2667,2670,0,2801,2804,2793,2796,2675,2678,2667,2670,43,2676,2675,2670,2654,0,2802,2801,2796,2780,2676,2675,2670,2654,43,2633,2679,2680,2681,0,2759,2805,2806,2807,2633,2679,2680,2681,43,2679,2677,2674,2680,0,2805,2803,2800,2806,2679,2677,2674,2680,43,2680,2674,2673,2682,0,2806,2800,2799,2808,2680,2674,2673,2682,43,2681,2680,2682,2649,0,2807,2806,2808,2775,2681,2680,2682,2649,43,2649,2682,2683,2650,0,2775,2808,2809,2776,2649,2682,2683,2650,43,2682,2673,2676,2683,0,2808,2799,2802,2809,2682,2673,2676,2683,43,2683,2676,2654,2665,0,2809,2802,2780,2791,2683,2676,2654,2665,43,2650,2683,2665,2651,0,2776,2809,2791,2777,2650,2683,2665,2651,43,2642,2645,2684,2646,0,2768,2771,2810,2772,2642,2645,2684,2646,43,2645,2637,2634,2684,0,2771,2763,2760,2810,2645,2637,2634,2684,43,2684,2634,2633,2681,0,2810,2760,2759,2807,2684,2634,2633,2681,43,2646,2684,2681,2649,0,2772,2810,2807,2775,2646,2684,2681,2649,43,2677,2679,2685,2686,0,2803,2805,2811,2812,2677,2679,2685,2686,43,2679,2633,2636,2685,0,2805,2759,2762,2811,2679,2633,2636,2685,43,2685,2636,2641,2687,0,2811,2762,2767,2813,2685,2636,2641,2687,43,2686,2685,2687,2688,0,2812,2811,2813,2814,2686,2685,2687,2688,43,2689,2690,2691,2692,0,2815,2816,2817,2818,2689,2690,2691,2692,43,2690,2693,2694,2691,0,2816,2819,2820,2817,2690,2693,2694,2691,43,2691,2694,2695,2696,0,2817,2820,2821,2822,2691,2694,2695,2696,43,2692,2691,2696,2697,0,2818,2817,2822,2823,2692,2691,2696,2697,43,2698,2699,2700,2701,0,2824,2825,2826,2827,2698,2699,2700,2701,43,2699,2702,2703,2700,0,2825,2828,2829,2826,2699,2702,2703,2700,43,2700,2703,2671,2668,0,2826,2829,2797,2794,2700,2703,2671,2668,43,2701,2700,2668,2667,0,2827,2826,2794,2793,2701,2700,2668,2667,43,2677,2686,2704,2678,0,2803,2812,2830,2804,2677,2686,2704,2678,43,2686,2688,2705,2704,0,2812,2814,2831,2830,2686,2688,2705,2704,43,2704,2705,2698,2701,0,2830,2831,2824,2827,2704,2705,2698,2701,43,2678,2704,2701,2667,0,2804,2830,2827,2793,2678,2704,2701,2667,43,2698,2705,2706,2707,0,2824,2831,2832,2833,2698,2705,2706,2707,43,2705,2688,2708,2706,0,2831,2814,2834,2832,2705,2688,2708,2706,43,2706,2708,2709,2710,0,2832,2834,2835,2836,2706,2708,2709,2710,43,2707,2706,2710,2711,0,2833,2832,2836,2837,2707,2706,2710,2711,43,2711,2712,2713,2707,0,2837,2838,2839,2833,2711,2712,2713,2707,43,2712,2714,2715,2713,0,2838,2840,2841,2839,2712,2714,2715,2713,43,2713,2715,2702,2699,0,2839,2841,2828,2825,2713,2715,2702,2699,43,2707,2713,2699,2698,0,2833,2839,2825,2824,2707,2713,2699,2698,43,2714,2712,2716,2717,0,2840,2838,2842,2843,2714,2712,2716,2717,43,2712,2711,2718,2716,0,2838,2837,2844,2842,2712,2711,2718,2716,43,2716,2718,2693,2690,0,2842,2844,2819,2816,2716,2718,2693,2690,43,2717,2716,2690,2689,0,2843,2842,2816,2815,2717,2716,2690,2689,43,2351,2350,2719,2720,0,2477,2476,2845,2846,2351,2350,2719,2720,43,2350,2349,2616,2719,0,2476,2475,2742,2845,2350,2349,2616,2719,43,2719,2616,2615,2721,0,2845,2742,2741,2847,2719,2616,2615,2721,43,2720,2719,2721,2722,0,2846,2845,2847,2848,2720,2719,2721,2722,43,2695,2723,2724,2696,0,2821,2849,2850,2822,2695,2723,2724,2696,43,2723,2722,2721,2724,0,2849,2848,2847,2850,2723,2722,2721,2724,43,2724,2721,2615,2725,0,2850,2847,2741,2851,2724,2721,2615,2725,43,2696,2724,2725,2697,0,2822,2850,2851,2823,2696,2724,2725,2697,43,2726,2727,2728,2729,0,2852,2853,2854,2855,2726,2727,2728,2729,43,2727,2730,2731,2728,0,2853,2856,2857,2854,2727,2730,2731,2728,43,2728,2731,2351,2720,0,2854,2857,2477,2846,2728,2731,2351,2720,43,2729,2728,2720,2722,0,2855,2854,2846,2848,2729,2728,2720,2722,43,2599,2732,2733,2604,0,2725,2858,2859,2730,2599,2732,2733,2604,43,2732,2726,2734,2733,0,2858,2852,2860,2859,2732,2726,2734,2733,43,2733,2734,2735,2736,0,2859,2860,2861,2862,2733,2734,2735,2736,43,2604,2733,2736,2601,0,2730,2859,2862,2727,2604,2733,2736,2601,43,2351,2731,2737,2352,0,2477,2857,2863,2478,2351,2731,2737,2352,43,2731,2730,2738,2737,0,2857,2856,2864,2863,2731,2730,2738,2737,43,2737,2738,2739,2740,0,2863,2864,2865,2866,2737,2738,2739,2740,43,2352,2737,2740,2338,0,2478,2863,2866,2464,2352,2737,2740,2338,43,2599,2597,2741,2742,0,2725,2723,2867,2868,2599,2597,2741,2742,43,2597,2313,2312,2741,0,2723,2439,2438,2867,2597,2313,2312,2741,43,2741,2312,2303,2743,0,2867,2438,2429,2869,2741,2312,2303,2743,43,2742,2741,2743,2739,0,2868,2867,2869,2865,2742,2741,2743,2739,43,2739,2743,2744,2745,0,2865,2869,2870,2871,2739,2743,2744,2745,43,2743,2303,2302,2744,0,2869,2429,2428,2870,2743,2303,2302,2744,43,2744,2302,1576,1613,0,2870,2428,1610,1647,2744,2302,1576,1613,43,2745,2744,1613,1612,0,2871,2870,1647,1646,2745,2744,1613,1612,43,2340,2339,2746,2518,0,2466,2465,2872,2644,2340,2339,2746,2518,43,2339,2338,2740,2746,0,2465,2464,2866,2872,2339,2338,2740,2746,43,2746,2740,2739,2745,0,2872,2866,2865,2871,2746,2740,2739,2745,43,2518,2746,2745,1612,0,2644,2872,2871,1646,2518,2746,2745,1612,43,2739,2738,2747,2742,0,2865,2864,2873,2868,2739,2738,2747,2742,43,2738,2730,2727,2747,0,2864,2856,2853,2873,2738,2730,2727,2747,43,2747,2727,2726,2732,0,2873,2853,2852,2858,2747,2727,2726,2732,43,2742,2747,2732,2599,0,2868,2873,2858,2725,2742,2747,2732,2599,43,2726,2729,2748,2734,0,2852,2855,2874,2860,2726,2729,2748,2734,43,2729,2722,2723,2748,0,2855,2848,2849,2874,2729,2722,2723,2748,43,2748,2723,2695,2749,0,2874,2849,2821,2875,2748,2723,2695,2749,43,2734,2748,2749,2735,0,2860,2874,2875,2861,2734,2748,2749,2735,43,2609,2608,2750,2629,0,2735,2734,2876,2755,2609,2608,2750,2629,43,2608,2607,2751,2750,0,2734,2733,2877,2876,2608,2607,2751,2750,43,2750,2751,2752,2753,0,2876,2877,2878,2879,2750,2751,2752,2753,43,2629,2750,2753,2630,0,2755,2876,2879,2756,2629,2750,2753,2630,43,2607,2605,2754,2751,0,2733,2731,2880,2877,2607,2605,2754,2751,43,2605,2601,2736,2754,0,2731,2727,2862,2880,2605,2601,2736,2754,43,2754,2736,2735,2755,0,2880,2862,2861,2881,2754,2736,2735,2755,43,2751,2754,2755,2752,0,2877,2880,2881,2878,2751,2754,2755,2752,43,2752,2756,2757,2758,0,2878,2882,2883,2884,2752,2756,2757,2758,43,2756,2759,2760,2757,0,2882,2885,2886,2883,2756,2759,2760,2757,43,2757,2760,2639,2761,0,2883,2886,2765,2887,2757,2760,2639,2761,43,2758,2757,2761,2762,0,2884,2883,2887,2888,2758,2757,2761,2762,43,2709,2763,2764,2765,0,2835,2889,2890,2891,2709,2763,2764,2765,43,2763,2766,2767,2764,0,2889,2892,2893,2890,2763,2766,2767,2764,43,2764,2767,2759,2768,0,2890,2893,2885,2894,2764,2767,2759,2768,43,2765,2764,2768,2769,0,2891,2890,2894,2895,2765,2764,2768,2769,43,2735,2770,2771,2755,0,2861,2896,2897,2881,2735,2770,2771,2755,43,2770,2769,2768,2771,0,2896,2895,2894,2897,2770,2769,2768,2771,43,2771,2768,2759,2756,0,2897,2894,2885,2882,2771,2768,2759,2756,43,2755,2771,2756,2752,0,2881,2897,2882,2878,2755,2771,2756,2752,43,2695,2694,2772,2749,0,2821,2820,2898,2875,2695,2694,2772,2749,43,2694,2693,2773,2772,0,2820,2819,2899,2898,2694,2693,2773,2772,43,2772,2773,2769,2770,0,2898,2899,2895,2896,2772,2773,2769,2770,43,2749,2772,2770,2735,0,2875,2898,2896,2861,2749,2772,2770,2735,43,2711,2710,2774,2718,0,2837,2836,2900,2844,2711,2710,2774,2718,43,2710,2709,2765,2774,0,2836,2835,2891,2900,2710,2709,2765,2774,43,2774,2765,2769,2773,0,2900,2891,2895,2899,2774,2765,2769,2773,43,2718,2774,2773,2693,0,2844,2900,2899,2819,2718,2774,2773,2693,43,2641,2775,2776,2687,0,2767,2901,2902,2813,2641,2775,2776,2687,43,2775,2766,2763,2776,0,2901,2892,2889,2902,2775,2766,2763,2776,43,2776,2763,2709,2708,0,2902,2889,2835,2834,2776,2763,2709,2708,43,2687,2776,2708,2688,0,2813,2902,2834,2814,2687,2776,2708,2688,43,2759,2767,2777,2760,0,2885,2893,2903,2886,2759,2767,2777,2760,43,2767,2766,2775,2777,0,2893,2892,2901,2903,2767,2766,2775,2777,43,2777,2775,2641,2640,0,2903,2901,2767,2766,2777,2775,2641,2640,43,2760,2777,2640,2639,0,2886,2903,2766,2765,2760,2777,2640,2639,43,2639,2643,2778,2761,0,2765,2769,2904,2887,2639,2643,2778,2761,43,2643,2642,2648,2778,0,2769,2768,2774,2904,2643,2642,2648,2778,43,2778,2648,2653,2779,0,2904,2774,2779,2905,2778,2648,2653,2779,43,2761,2778,2779,2762,0,2887,2904,2905,2888,2761,2778,2779,2762,43,2780,2781,2782,2783,0,2906,2907,2908,2909,2780,2781,2782,2783,43,2781,2762,2779,2782,0,2907,2888,2905,2908,2781,2762,2779,2782,43,2782,2779,2653,2784,0,2908,2905,2779,2910,2782,2779,2653,2784,43,2783,2782,2784,2785,0,2909,2908,2910,2911,2783,2782,2784,2785,43,2762,2781,2786,2758,0,2888,2907,2912,2884,2762,2781,2786,2758,43,2781,2780,2787,2786,0,2907,2906,2913,2912,2781,2780,2787,2786,43,2786,2787,2630,2753,0,2912,2913,2756,2879,2786,2787,2630,2753,43,2758,2786,2753,2752,0,2884,2912,2879,2878,2758,2786,2753,2752,43,2630,2787,2788,2631,0,2756,2913,2914,2757,2630,2787,2788,2631,43,2787,2780,2783,2788,0,2913,2906,2909,2914,2787,2780,2783,2788,43,2788,2783,2785,2789,0,2914,2909,2911,2915,2788,2783,2785,2789,43,2631,2788,2789,2632,0,2757,2914,2915,2758,2631,2788,2789,2632,43,2790,2791,2792,2793,0,2916,2917,2918,2919,2790,2791,2792,2793,43,2791,2613,2628,2792,0,2917,2739,2754,2918,2791,2613,2628,2792,43,2792,2628,2632,2794,0,2918,2754,2758,2920,2792,2628,2632,2794,43,2793,2792,2794,2795,0,2919,2918,2920,2921,2793,2792,2794,2795,43,2796,2797,2798,2799,0,2922,2923,2924,2925,2796,2797,2798,2799,43,2797,2800,2801,2798,0,2923,2926,2927,2924,2797,2800,2801,2798,43,2798,2801,2802,2803,0,2924,2927,2928,2929,2798,2801,2802,2803,43,2799,2798,2803,2804,0,2925,2924,2929,2930,2799,2798,2803,2804,43,2805,2806,2807,2808,0,2931,2932,2933,2934,2805,2806,2807,2808,43,2806,2809,2810,2807,0,2932,2935,2936,2933,2806,2809,2810,2807,43,2807,2810,2811,2812,0,2933,2936,2937,2938,2807,2810,2811,2812,43,2808,2807,2812,2802,0,2934,2933,2938,2928,2808,2807,2812,2802,43,2802,2801,2813,2808,0,2928,2927,2939,2934,2802,2801,2813,2808,43,2801,2800,2814,2813,0,2927,2926,2940,2939,2801,2800,2814,2813,43,2813,2814,2815,2816,0,2939,2940,2941,2942,2813,2814,2815,2816,43,2808,2813,2816,2805,0,2934,2939,2942,2931,2808,2813,2816,2805,43,2815,2814,2817,2818,0,2941,2940,2943,2944,2815,2814,2817,2818,43,2814,2800,2797,2817,0,2940,2926,2923,2943,2814,2800,2797,2817,43,2817,2797,2796,2819,0,2943,2923,2922,2945,2817,2797,2796,2819,43,2818,2817,2819,2820,0,2944,2943,2945,2946,2818,2817,2819,2820,43,2821,2822,2823,2824,0,2947,2948,2949,2950,2821,2822,2823,2824,43,2822,2815,2818,2823,0,2948,2941,2944,2949,2822,2815,2818,2823,43,2823,2818,2820,2825,0,2949,2944,2946,2951,2823,2818,2820,2825,43,2824,2823,2825,2268,0,2950,2949,2951,2394,2824,2823,2825,2268,43,2826,2827,2828,2829,0,2952,2953,2954,2955,2826,2827,2828,2829,43,2827,2805,2816,2828,0,2953,2931,2942,2954,2827,2805,2816,2828,43,2828,2816,2815,2822,0,2954,2942,2941,2948,2828,2816,2815,2822,43,2829,2828,2822,2821,0,2955,2954,2948,2947,2829,2828,2822,2821,43,2830,2831,2832,2833,0,2956,2957,2958,2959,2830,2831,2832,2833,43,2831,2834,2835,2832,0,2957,2960,2961,2958,2831,2834,2835,2832,43,2832,2835,2836,2837,0,2958,2961,2962,2963,2832,2835,2836,2837,43,2833,2832,2837,2838,0,2959,2958,2963,2964,2833,2832,2837,2838,43,2826,2839,2840,2841,0,2952,2965,2966,2967,2826,2839,2840,2841,43,2839,2842,2843,2840,0,2965,2968,2969,2966,2839,2842,2843,2840,43,2840,2843,2830,2833,0,2966,2969,2956,2959,2840,2843,2830,2833,43,2841,2840,2833,2838,0,2967,2966,2959,2964,2841,2840,2833,2838,43,2811,2844,2845,2846,0,2937,2970,2971,2972,2811,2844,2845,2846,43,2844,2847,2848,2845,0,2970,2973,2974,2971,2844,2847,2848,2845,43,2845,2848,2849,2850,0,2971,2974,2975,2976,2845,2848,2849,2850,43,2846,2845,2850,2851,0,2972,2971,2976,2977,2846,2845,2850,2851,43,2851,2850,2852,2853,0,2977,2976,2978,2979,2851,2850,2852,2853,43,2850,2849,2854,2852,0,2976,2975,2980,2978,2850,2849,2854,2852,43,2852,2854,68,105,0,2978,2980,68,105,2852,2854,68,105,43,2853,2852,105,107,0,2979,2978,105,107,2853,2852,105,107,43,2847,2855,2856,2848,0,2973,2981,2982,2974,2847,2855,2856,2848,43,2855,2838,2837,2856,0,2981,2964,2963,2982,2855,2838,2837,2856,43,2856,2837,2836,2857,0,2982,2963,2962,2983,2856,2837,2836,2857,43,2848,2856,2857,2849,0,2974,2982,2983,2975,2848,2856,2857,2849,43,2836,2835,2858,2857,0,2962,2961,2984,2983,2836,2835,2858,2857,43,2835,2834,2859,2858,0,2961,2960,2985,2984,2835,2834,2859,2858,43,2858,2859,2860,2861,0,2984,2985,2986,2987,2858,2859,2860,2861,43,2857,2858,2861,2849,0,2983,2984,2987,2975,2857,2858,2861,2849,43,2860,2859,2862,2863,0,2986,2985,2988,2989,2860,2859,2862,2863,43,2859,2834,2831,2862,0,2985,2960,2957,2988,2859,2834,2831,2862,43,2862,2831,2830,2864,0,2988,2957,2956,2990,2862,2831,2830,2864,43,2863,2862,2864,2865,0,2989,2988,2990,2991,2863,2862,2864,2865,43,2830,2843,2866,2864,0,2956,2969,2992,2990,2830,2843,2866,2864,43,2843,2842,2867,2866,0,2969,2968,2993,2992,2843,2842,2867,2866,43,2866,2867,2868,2869,0,2992,2993,2994,2995,2866,2867,2868,2869,43,2864,2866,2869,2865,0,2990,2992,2995,2991,2864,2866,2869,2865,43,2870,2871,2872,2873,0,2996,2997,2998,2999,2870,2871,2872,2873,43,2871,2821,2824,2872,0,2997,2947,2950,2998,2871,2821,2824,2872,43,2872,2824,2268,2265,0,2998,2950,2394,2391,2872,2824,2268,2265,43,2873,2872,2265,2264,0,2999,2998,2391,2390,2873,2872,2265,2264,43,2874,2875,2876,2877,0,3000,3001,3002,3003,2874,2875,2876,2877,43,2875,2878,2879,2876,0,3001,3004,3005,3002,2875,2878,2879,2876,43,2876,2879,2870,2880,0,3002,3005,2996,3006,2876,2879,2870,2880,43,2877,2876,2880,2881,0,3003,3002,3006,3007,2877,2876,2880,2881,43,2821,2871,2882,2829,0,2947,2997,3008,2955,2821,2871,2882,2829,43,2871,2870,2879,2882,0,2997,2996,3005,3008,2871,2870,2879,2882,43,2882,2879,2878,2883,0,3008,3005,3004,3009,2882,2879,2878,2883,43,2829,2882,2883,2826,0,2955,3008,3009,2952,2829,2882,2883,2826,43,2881,2880,2884,2885,0,3007,3006,3010,3011,2881,2880,2884,2885,43,2880,2870,2873,2884,0,3006,2996,2999,3010,2880,2870,2873,2884,43,2884,2873,2264,2886,0,3010,2999,2390,3012,2884,2873,2264,2886,43,2885,2884,2886,2887,0,3011,3010,3012,3013,2885,2884,2886,2887,43,2887,2886,2888,2889,0,3013,3012,3014,3015,2887,2886,2888,2889,43,2886,2264,2267,2888,0,3012,2390,2393,3014,2886,2264,2267,2888,43,2888,2267,2256,2890,0,3014,2393,2382,3016,2888,2267,2256,2890,43,2889,2888,2890,2891,0,3015,3014,3016,3017,2889,2888,2890,2891,43,2891,2890,2892,2893,0,3017,3016,3018,3019,2891,2890,2892,2893,43,2890,2256,2259,2892,0,3016,2382,2385,3018,2890,2256,2259,2892,43,2892,2259,2253,2252,0,3018,2385,2379,2378,2892,2259,2253,2252,43,2893,2892,2252,2180,0,3019,3018,2378,2306,2893,2892,2252,2180,43,2178,2201,2894,2179,0,2304,2327,3020,2305,2178,2201,2894,2179,43,2201,2203,2895,2894,0,2327,2329,3021,3020,2201,2203,2895,2894,43,2894,2895,2891,2893,0,3020,3021,3017,3019,2894,2895,2891,2893,43,2179,2894,2893,2180,0,2305,3020,3019,2306,2179,2894,2893,2180,43,2891,2895,2896,2889,0,3017,3021,3022,3015,2891,2895,2896,2889,43,2895,2203,2897,2896,0,3021,2329,3023,3022,2895,2203,2897,2896,43,2896,2897,2898,2899,0,3022,3023,3024,3025,2896,2897,2898,2899,43,2889,2896,2899,2887,0,3015,3022,3025,3013,2889,2896,2899,2887,43,2900,2901,2902,2903,0,3026,3027,3028,3029,2900,2901,2902,2903,43,2901,2290,2293,2902,0,3027,2416,2419,3028,2901,2290,2293,2902,43,2902,2293,2297,2904,0,3028,2419,2423,3030,2902,2293,2297,2904,43,2903,2902,2904,2905,0,3029,3028,3030,3031,2903,2902,2904,2905,43,2203,2202,2906,2897,0,2329,2328,3032,3023,2203,2202,2906,2897,43,2202,2198,2907,2906,0,2328,2324,3033,3032,2202,2198,2907,2906,43,2906,2907,2908,2909,0,3032,3033,3034,3035,2906,2907,2908,2909,43,2897,2906,2909,2898,0,3023,3032,3035,3024,2897,2906,2909,2898,43,2198,2197,2910,2907,0,2324,2323,3036,3033,2198,2197,2910,2907,43,2197,2196,2515,2910,0,2323,2322,2641,3036,2197,2196,2515,2910,43,2910,2515,2275,2911,0,3036,2641,2401,3037,2910,2515,2275,2911,43,2907,2910,2911,2908,0,3033,3036,3037,3034,2907,2910,2911,2908,43,2908,2911,2912,2913,0,3034,3037,3038,3039,2908,2911,2912,2913,43,2911,2275,2274,2912,0,3037,2401,2400,3038,2911,2275,2274,2912,43,2912,2274,2273,2291,0,3038,2400,2399,2417,2912,2274,2273,2291,43,2913,2912,2291,2290,0,3039,3038,2417,2416,2913,2912,2291,2290,43,2898,2909,2914,2915,0,3024,3035,3040,3041,2898,2909,2914,2915,43,2909,2908,2913,2914,0,3035,3034,3039,3040,2909,2908,2913,2914,43,2914,2913,2290,2901,0,3040,3039,2416,3027,2914,2913,2290,2901,43,2915,2914,2901,2900,0,3041,3040,3027,3026,2915,2914,2901,2900,43,2887,2899,2916,2885,0,3013,3025,3042,3011,2887,2899,2916,2885,43,2899,2898,2915,2916,0,3025,3024,3041,3042,2899,2898,2915,2916,43,2916,2915,2900,2917,0,3042,3041,3026,3043,2916,2915,2900,2917,43,2885,2916,2917,2881,0,3011,3042,3043,3007,2885,2916,2917,2881,43,2900,2903,2918,2917,0,3026,3029,3044,3043,2900,2903,2918,2917,43,2903,2905,2919,2918,0,3029,3031,3045,3044,2903,2905,2919,2918,43,2918,2919,2874,2877,0,3044,3045,3000,3003,2918,2919,2874,2877,43,2917,2918,2877,2881,0,3043,3044,3003,3007,2917,2918,2877,2881,43,2591,2920,2921,2592,0,2717,3046,3047,2718,2591,2920,2921,2592,43,2920,2922,2923,2921,0,3046,3048,3049,3047,2920,2922,2923,2921,43,2921,2923,2924,2925,0,3047,3049,3050,3051,2921,2923,2924,2925,43,2592,2921,2925,2593,0,2718,3047,3051,2719,2592,2921,2925,2593,43,2865,2869,2926,2927,0,2991,2995,3052,3053,2865,2869,2926,2927,43,2869,2868,2928,2926,0,2995,2994,3054,3052,2869,2868,2928,2926,43,2926,2928,2929,2930,0,3052,3054,3055,3056,2926,2928,2929,2930,43,2927,2926,2930,2931,0,3053,3052,3056,3057,2927,2926,2930,2931,43,2932,2933,2934,2935,0,3058,3059,3060,3061,2932,2933,2934,2935,43,2933,2569,2614,2934,0,3059,2695,2740,3060,2933,2569,2614,2934,43,2934,2614,2613,2936,0,3060,2740,2739,3062,2934,2614,2613,2936,43,2935,2934,2936,2937,0,3061,3060,3062,3063,2935,2934,2936,2937,43,2922,2920,2938,2939,0,3048,3046,3064,3065,2922,2920,2938,2939,43,2920,2591,2590,2938,0,3046,2717,2716,3064,2920,2591,2590,2938,43,2938,2590,2586,2940,0,3064,2716,2712,3066,2938,2590,2586,2940,43,2939,2938,2940,2932,0,3065,3064,3066,3058,2939,2938,2940,2932,43,2586,2585,2941,2940,0,2712,2711,3067,3066,2586,2585,2941,2940,43,2585,2573,2570,2941,0,2711,2699,2696,3067,2585,2573,2570,2941,43,2941,2570,2569,2933,0,3067,2696,2695,3059,2941,2570,2569,2933,43,2940,2941,2933,2932,0,3066,3067,3059,3058,2940,2941,2933,2932,43,2942,2943,2944,2945,0,3068,3069,3070,3071,2942,2943,2944,2945,43,2943,2297,2296,2944,0,3069,2423,2422,3070,2943,2297,2296,2944,43,2944,2296,2295,2510,0,3070,2422,2421,2636,2944,2296,2295,2510,43,2945,2944,2510,2315,0,3071,3070,2636,2441,2945,2944,2510,2315,43,2593,2925,2946,2596,0,2719,3051,3072,2722,2593,2925,2946,2596,43,2925,2924,2947,2946,0,3051,3050,3073,3072,2925,2924,2947,2946,43,2946,2947,2942,2945,0,3072,3073,3068,3071,2946,2947,2942,2945,43,2596,2946,2945,2315,0,2722,3072,3071,2441,2596,2946,2945,2315,43,2297,2943,2948,2904,0,2423,3069,3074,3030,2297,2943,2948,2904,43,2943,2942,2949,2948,0,3069,3068,3075,3074,2943,2942,2949,2948,43,2948,2949,2950,2951,0,3074,3075,3076,3077,2948,2949,2950,2951,43,2904,2948,2951,2905,0,3030,3074,3077,3031,2904,2948,2951,2905,43,2942,2947,2952,2949,0,3068,3073,3078,3075,2942,2947,2952,2949,43,2947,2924,2923,2952,0,3073,3050,3049,3078,2947,2924,2923,2952,43,2952,2923,2922,2953,0,3078,3049,3048,3079,2952,2923,2922,2953,43,2949,2952,2953,2950,0,3075,3078,3079,3076,2949,2952,2953,2950,43,2931,2930,2954,2955,0,3057,3056,3080,3081,2931,2930,2954,2955,43,2930,2929,2956,2954,0,3056,3055,3082,3080,2930,2929,2956,2954,43,2954,2956,2950,2953,0,3080,3082,3076,3079,2954,2956,2950,2953,43,2955,2954,2953,2922,0,3081,3080,3079,3048,2955,2954,2953,2922,43,2905,2951,2957,2919,0,3031,3077,3083,3045,2905,2951,2957,2919,43,2951,2950,2956,2957,0,3077,3076,3082,3083,2951,2950,2956,2957,43,2957,2956,2929,2958,0,3083,3082,3055,3084,2957,2956,2929,2958,43,2919,2957,2958,2874,0,3045,3083,3084,3000,2919,2957,2958,2874,43,2929,2928,2959,2958,0,3055,3054,3085,3084,2929,2928,2959,2958,43,2928,2868,2960,2959,0,3054,2994,3086,3085,2928,2868,2960,2959,43,2959,2960,2878,2875,0,3085,3086,3004,3001,2959,2960,2878,2875,43,2958,2959,2875,2874,0,3084,3085,3001,3000,2958,2959,2875,2874,43,2868,2867,2961,2960,0,2994,2993,3087,3086,2868,2867,2961,2960,43,2867,2842,2839,2961,0,2993,2968,2965,3087,2867,2842,2839,2961,43,2961,2839,2826,2883,0,3087,2965,2952,3009,2961,2839,2826,2883,43,2960,2961,2883,2878,0,3086,3087,3009,3004,2960,2961,2883,2878,43,2838,2962,2963,2841,0,2964,3088,3089,2967,2838,2962,2963,2841,43,2962,2809,2806,2963,0,3088,2935,2932,3089,2962,2809,2806,2963,43,2963,2806,2805,2827,0,3089,2932,2931,2953,2963,2806,2805,2827,43,2841,2963,2827,2826,0,2967,3089,2953,2952,2841,2963,2827,2826,43,2838,2855,2964,2962,0,2964,2981,3090,3088,2838,2855,2964,2962,43,2855,2847,2844,2964,0,2981,2973,2970,3090,2855,2847,2844,2964,43,2964,2844,2811,2810,0,3090,2970,2937,2936,2964,2844,2811,2810,43,2962,2964,2810,2809,0,3088,3090,2936,2935,2962,2964,2810,2809,43,2804,2803,2965,2966,0,2930,2929,3091,3092,2804,2803,2965,2966,43,2803,2802,2812,2965,0,2929,2928,2938,3091,2803,2802,2812,2965,43,2965,2812,2811,2846,0,3091,2938,2937,2972,2965,2812,2811,2846,43,2966,2965,2846,2851,0,3092,3091,2972,2977,2966,2965,2846,2851,43,116,2967,2968,117,0,116,3093,3094,117,116,2967,2968,117,43,2967,2804,2966,2968,0,3093,2930,3092,3094,2967,2804,2966,2968,43,2968,2966,2851,2853,0,3094,3092,2977,2979,2968,2966,2851,2853,43,117,2968,2853,107,0,117,3094,2979,107,117,2968,2853,107,43,2969,2970,2971,2972,0,3095,3096,3097,3098,2969,2970,2971,2972,43,2970,2973,2974,2971,0,3096,3099,3100,3097,2970,2973,2974,2971,43,2971,2974,2975,2976,0,3097,3100,3101,3102,2971,2974,2975,2976,43,2972,2971,2976,2977,0,3098,3097,3102,3103,2972,2971,2976,2977,43,2978,2979,2980,2981,0,3104,3105,3106,3107,2978,2979,2980,2981,43,2979,2796,2799,2980,0,3105,2922,2925,3106,2979,2796,2799,2980,43,2980,2799,2804,2982,0,3106,2925,2930,3108,2980,2799,2804,2982,43,2981,2980,2982,2975,0,3107,3106,3108,3101,2981,2980,2982,2975,43,2975,2982,2983,2984,0,3101,3108,3109,3110,2975,2982,2983,2984,43,2982,2804,2967,2983,0,3108,2930,3093,3109,2982,2804,2967,2983,43,2983,2967,116,127,0,3109,3093,116,127,2983,2967,116,127,43,2984,2983,127,126,0,3110,3109,127,126,2984,2983,127,126,43,2977,2976,2985,2986,0,3103,3102,3111,3112,2977,2976,2985,2986,43,2976,2975,2984,2985,0,3102,3101,3110,3111,2976,2975,2984,2985,43,2985,2984,126,131,0,3111,3110,126,131,2985,2984,126,131,43,2986,2985,131,130,0,3112,3111,131,130,2986,2985,131,130,43,2987,2988,2989,2990,0,3113,3114,3115,3116,2987,2988,2989,2990,43,2988,2991,2992,2989,0,3114,3117,3118,3115,2988,2991,2992,2989,43,2989,2992,2973,2993,0,3115,3118,3099,3119,2989,2992,2973,2993,43,2990,2989,2993,2994,0,3116,3115,3119,3120,2990,2989,2993,2994,43,2260,2995,2996,2261,0,2386,3121,3122,2387,2260,2995,2996,2261,43,2995,2997,2998,2996,0,3121,3123,3124,3122,2995,2997,2998,2996,43,2996,2998,2987,2999,0,3122,3124,3113,3125,2996,2998,2987,2999,43,2261,2996,2999,2262,0,2387,3122,3125,2388,2261,2996,2999,2262,43,2268,2825,3000,2269,0,2394,2951,3126,2395,2268,2825,3000,2269,43,2825,2820,3001,3000,0,2951,2946,3127,3126,2825,2820,3001,3000,43,3000,3001,2997,2995,0,3126,3127,3123,3121,3000,3001,2997,2995,43,2269,3000,2995,2260,0,2395,3126,3121,2386,2269,3000,2995,2260,43,2978,3002,3003,2979,0,3104,3128,3129,3105,2978,3002,3003,2979,43,3002,2997,3001,3003,0,3128,3123,3127,3129,3002,2997,3001,3003,43,3003,3001,2820,2819,0,3129,3127,2946,2945,3003,3001,2820,2819,43,2979,3003,2819,2796,0,3105,3129,2945,2922,2979,3003,2819,2796,43,2978,3004,3005,3002,0,3104,3130,3131,3128,2978,3004,3005,3002,43,3004,2991,2988,3005,0,3130,3117,3114,3131,3004,2991,2988,3005,43,3005,2988,2987,2998,0,3131,3114,3113,3124,3005,2988,2987,2998,43,3002,3005,2998,2997,0,3128,3131,3124,3123,3002,3005,2998,2997,43,2973,2992,3006,2974,0,3099,3118,3132,3100,2973,2992,3006,2974,43,2992,2991,3004,3006,0,3118,3117,3130,3132,2992,2991,3004,3006,43,3006,3004,2978,2981,0,3132,3130,3104,3107,3006,3004,2978,2981,43,2974,3006,2981,2975,0,3100,3132,3107,3101,2974,3006,2981,2975,43,2969,3007,3008,3009,0,3095,3133,3134,3135,2969,3007,3008,3009,43,3007,3010,3011,3008,0,3133,3136,3137,3134,3007,3010,3011,3008,43,3008,3011,3012,3013,0,3134,3137,3138,3139,3008,3011,3012,3013,43,3009,3008,3013,3014,0,3135,3134,3139,3140,3009,3008,3013,3014,43,2253,2263,3015,2254,0,2379,2389,3141,2380,2253,2263,3015,2254,43,2263,2262,3016,3015,0,2389,2388,3142,3141,2263,2262,3016,3015,43,3015,3016,3017,3018,0,3141,3142,3143,3144,3015,3016,3017,3018,43,2254,3015,3018,2255,0,2380,3141,3144,2381,2254,3015,3018,2255,43,2262,2999,3019,3016,0,2388,3125,3145,3142,2262,2999,3019,3016,43,2999,2987,2990,3019,0,3125,3113,3116,3145,2999,2987,2990,3019,43,3019,2990,2994,3020,0,3145,3116,3120,3146,3019,2990,2994,3020,43,3016,3019,3020,3017,0,3142,3145,3146,3143,3016,3019,3020,3017,43,3021,3022,3023,3024,0,3147,3148,3149,3150,3021,3022,3023,3024,43,3022,3025,3026,3023,0,3148,3151,3152,3149,3022,3025,3026,3023,43,3023,3026,2304,2307,0,3149,3152,2430,2433,3023,3026,2304,2307,43,3024,3023,2307,2279,0,3150,3149,2433,2405,3024,3023,2307,2279,43,2211,3027,3028,2216,0,2337,3153,3154,2342,2211,3027,3028,2216,43,3027,3021,3024,3028,0,3153,3147,3150,3154,3027,3021,3024,3028,43,3028,3024,2279,2276,0,3154,3150,2405,2402,3028,3024,2279,2276,43,2216,3028,2276,2217,0,2342,3154,2402,2343,2216,3028,2276,2217,43,2211,2210,3029,3027,0,2337,2336,3155,3153,2211,2210,3029,3027,43,2210,2182,2251,3029,0,2336,2308,2377,3155,2210,2182,2251,3029,43,3029,2251,2255,3030,0,3155,2377,2381,3156,3029,2251,2255,3030,43,3027,3029,3030,3021,0,3153,3155,3156,3147,3027,3029,3030,3021,43,2255,3018,3031,3030,0,2381,3144,3157,3156,2255,3018,3031,3030,43,3018,3017,3032,3031,0,3144,3143,3158,3157,3018,3017,3032,3031,43,3031,3032,3025,3022,0,3157,3158,3151,3148,3031,3032,3025,3022,43,3030,3031,3022,3021,0,3156,3157,3148,3147,3030,3031,3022,3021,43,3025,3033,3034,3026,0,3151,3159,3160,3152,3025,3033,3034,3026,43,3033,3014,3013,3034,0,3159,3140,3139,3160,3033,3014,3013,3034,43,3034,3013,3012,3035,0,3160,3139,3138,3161,3034,3013,3012,3035,43,3026,3034,3035,2304,0,3152,3160,3161,2430,3026,3034,3035,2304,43,3017,3020,3036,3032,0,3143,3146,3162,3158,3017,3020,3036,3032,43,3020,2994,3037,3036,0,3146,3120,3163,3162,3020,2994,3037,3036,43,3036,3037,3014,3033,0,3162,3163,3140,3159,3036,3037,3014,3033,43,3032,3036,3033,3025,0,3158,3162,3159,3151,3032,3036,3033,3025,43,2969,3009,3038,2970,0,3095,3135,3164,3096,2969,3009,3038,2970,43,3009,3014,3037,3038,0,3135,3140,3163,3164,3009,3014,3037,3038,43,3038,3037,2994,2993,0,3164,3163,3120,3119,3038,3037,2994,2993,43,2970,3038,2993,2973,0,3096,3164,3119,3099,2970,3038,2993,2973,43,3039,3040,3041,3042,0,3165,3166,3167,3168,3039,3040,3041,3042,43,3040,3010,3007,3041,0,3166,3136,3133,3167,3040,3010,3007,3041,43,3041,3007,2969,2972,0,3167,3133,3095,3098,3041,3007,2969,2972,43,3042,3041,2972,2977,0,3168,3167,3098,3103,3042,3041,2972,2977,43,2977,3043,3044,3042,0,3103,3169,3170,3168,2977,3043,3044,3042,43,3043,3045,3046,3044,0,3169,3171,3172,3170,3043,3045,3046,3044,43,3042,3044,3046,3039,0,3168,3170,3172,3165,3042,3044,3046,3039,43,2653,3047,3048,2784,0,2779,3173,3174,2910,2653,3047,3048,2784,43,3047,2156,2158,3048,0,3173,2282,2284,3174,3047,2156,2158,3048,43,3048,2158,2144,3049,0,3174,2284,2270,3175,3048,2158,2144,3049,43,2784,3048,3049,2785,0,2910,3174,3175,2911,2784,3048,3049,2785,43,2651,3050,3051,2652,0,2777,3176,3177,2778,2651,3050,3051,2652,43,3050,2148,2151,3051,0,3176,2274,2277,3177,3050,2148,2151,3051,43,3051,2151,2156,3047,0,3177,2277,2282,3173,3051,2151,2156,3047,43,2652,3051,3047,2653,0,2778,3177,3173,2779,2652,3051,3047,2653,43,2403,2402,3052,2666,0,2529,2528,3178,2792,2403,2402,3052,2666,43,2402,2401,3053,3052,0,2528,2527,3179,3178,2402,2401,3053,3052,43,3052,3053,2148,3050,0,3178,3179,2274,3176,3052,3053,2148,3050,43,2666,3052,3050,2651,0,2792,3178,3176,2777,2666,3052,3050,2651,43,2401,2408,3054,3053,0,2527,2534,3180,3179,2401,2408,3054,3053,43,2408,2319,2316,3054,0,2534,2445,2442,3180,2408,2319,2316,3054,43,3054,2316,2152,2149,0,3180,2442,2278,2275,3054,2316,2152,2149,43,3053,3054,2149,2148,0,3179,3180,2275,2274,3053,3054,2149,2148,43,3055,3056,3057,3058,0,3181,3182,3183,3184,3055,3056,3057,3058,43,3056,3059,3060,3057,0,3182,3185,3186,3183,3056,3059,3060,3057,43,3057,3060,3039,3061,0,3183,3186,3165,3187,3057,3060,3039,3061,43,3058,3057,3061,3062,0,3184,3183,3187,3188,3058,3057,3061,3062,43,3012,3063,3064,3035,0,3138,3189,3190,3161,3012,3063,3064,3035,43,3063,3059,3065,3064,0,3189,3185,3191,3190,3063,3059,3065,3064,43,3064,3065,2308,2305,0,3190,3191,2434,2431,3064,3065,2308,2305,43,3035,3064,2305,2304,0,3161,3190,2431,2430,3035,3064,2305,2304,43,3059,3063,3066,3060,0,3185,3189,3192,3186,3059,3063,3066,3060,43,3063,3012,3011,3066,0,3189,3138,3137,3192,3063,3012,3011,3066,43,3066,3011,3010,3040,0,3192,3137,3136,3166,3066,3011,3010,3040,43,3060,3066,3040,3039,0,3186,3192,3166,3165,3060,3066,3040,3039,43,2308,3067,3068,2309,0,2434,3193,3194,2435,2308,3067,3068,2309,43,3067,3069,3070,3068,0,3193,3195,3196,3194,3067,3069,3070,3068,43,3068,3070,2409,2419,0,3194,3196,2535,2545,3068,3070,2409,2419,43,2309,3068,2419,2281,0,2435,3194,2545,2407,2309,3068,2419,2281,43,3059,3056,3071,3065,0,3185,3182,3197,3191,3059,3056,3071,3065,43,3056,3055,3072,3071,0,3182,3181,3198,3197,3056,3055,3072,3071,43,3071,3072,3069,3067,0,3197,3198,3195,3193,3071,3072,3069,3067,43,3065,3071,3067,2308,0,3191,3197,3193,2434,3065,3071,3067,2308,43,2146,3073,3074,3075,0,2272,3199,3200,3201,2146,3073,3074,3075,43,3073,3055,3058,3074,0,3199,3181,3184,3200,3073,3055,3058,3074,43,3074,3058,3062,3076,0,3200,3184,3188,3202,3074,3058,3062,3076,43,3075,3074,3076,3045,0,3201,3200,3202,3171,3075,3074,3076,3045,43,2795,2794,3077,3078,0,2921,2920,3203,3204,2795,2794,3077,3078,43,2794,2632,2789,3077,0,2920,2758,2915,3203,2794,2632,2789,3077,43,3077,2789,2785,3079,0,3203,2915,2911,3205,3077,2789,2785,3079,43,3078,3077,3079,3080,0,3204,3203,3205,3206,3078,3077,3079,3080,43,2785,3049,3081,3079,0,2911,3175,3207,3205,2785,3049,3081,3079,43,3049,2144,2141,3081,0,3175,2270,2267,3207,3049,2144,2141,3081,43,2140,3082,3081,2141,0,2266,3208,3207,2267,2140,3082,3081,2141,43,3079,3081,3082,3080,0,3205,3207,3208,3206,3079,3081,3082,3080,43,2860,2863,3083,3084,0,2986,2989,3209,3210,2860,2863,3083,3084,43,2863,2865,2927,3083,0,2989,2991,3053,3209,2863,2865,2927,3083,43,3083,2927,2931,3085,0,3209,3053,3057,3211,3083,2927,2931,3085,43,3084,3083,3085,2937,0,3210,3209,3211,3063,3084,3083,3085,2937,43,2922,2939,3086,2955,0,3048,3065,3212,3081,2922,2939,3086,2955,43,2939,2932,2935,3086,0,3065,3058,3061,3212,2939,2932,2935,3086,43,3086,2935,2937,3085,0,3212,3061,3063,3211,3086,2935,2937,3085,43,2955,3086,3085,2931,0,3081,3212,3211,3057,2955,3086,3085,2931,43,70,3087,3088,3089,0,70,3213,3214,3215,70,3087,3088,3089,43,3087,2937,2936,3088,0,3213,3063,3062,3214,3087,2937,2936,3088,43,3088,2936,2613,2791,0,3214,3062,2739,2917,3088,2936,2613,2791,43,3089,3088,2791,2790,0,3215,3214,2917,2916,3089,3088,2791,2790,43,2860,3084,3090,3091,0,2986,3210,3216,3217,2860,3084,3090,3091,43,3084,2937,3087,3090,0,3210,3063,3213,3216,3084,2937,3087,3090,43,3090,3087,70,69,0,3216,3213,70,69,3090,3087,70,69,43,3091,3090,69,68,0,3217,3216,69,68,3091,3090,69,68,43,2849,2861,3092,2854,0,2975,2987,3218,2980,2849,2861,3092,2854,43,2861,2860,3091,3092,0,2987,2986,3217,3218,2861,2860,3091,3092,43,2854,3092,3091,68,0,2980,3218,3217,68,2854,3092,3091,68,43,2146,3075,3093,2147,0,2272,3201,3219,2273,2146,3075,3093,2147,43,3075,3045,3094,3093,0,3201,3171,3220,3219,3075,3045,3094,3093,43,3093,3094,775,772,0,3219,3220,775,772,3093,3094,775,772,43,2147,3093,772,771,0,2273,3219,772,771,2147,3093,772,771,43,775,3094,3095,778,0,775,3220,3221,778,775,3094,3095,778,43,3094,3045,3043,3095,0,3220,3171,3169,3221,3094,3045,3043,3095,43,3095,3043,2977,2986,0,3221,3169,3103,3112,3095,3043,2977,2986,43,778,3095,2986,130,0,778,3221,3112,130,778,3095,2986,130,43,3039,3046,3096,3061,0,3165,3172,3222,3187,3039,3046,3096,3061,43,3046,3045,3076,3096,0,3172,3171,3202,3222,3046,3045,3076,3096,43,3061,3096,3076,3062,0,3187,3222,3202,3188,3061,3096,3076,3062,43,2154,2346,3097,3098,0,2280,2472,3223,3224,2154,2346,3097,3098,43,2346,2345,2410,3097,0,2472,2471,2536,3223,2346,2345,2410,3097,43,3097,2410,2409,3070,0,3223,2536,2535,3196,3097,2410,2409,3070,43,3098,3097,3070,3069,0,3224,3223,3196,3195,3098,3097,3070,3069,43,3069,3099,3100,3098,0,3195,3225,3226,3224,3069,3099,3100,3098,43,3099,2146,2159,3100,0,3225,2272,2285,3226,3099,2146,2159,3100,43,3098,3100,2159,2154,0,3224,3226,2285,2280,3098,3100,2159,2154,43,2146,3099,3101,3073,0,2272,3225,3227,3199,2146,3099,3101,3073,43,3099,3069,3072,3101,0,3225,3195,3198,3227,3099,3069,3072,3101,43,3073,3101,3072,3055,0,3199,3227,3198,3181,3073,3101,3072,3055,43,3102,3103,3104,3105,0,3228,3229,3230,3231,3102,3103,3104,3105,43,3103,3106,3107,3104,0,3229,3232,3233,3230,3103,3106,3107,3104,43,3104,3107,3108,3109,0,3230,3233,3234,3235,3104,3107,3108,3109,43,3105,3104,3109,1496,0,3231,3230,3235,1530,3105,3104,3109,1496,43,3110,3111,3112,3113,0,3236,3237,3238,3239,3110,3111,3112,3113,43,3111,3114,3115,3112,0,3237,3240,3241,3238,3111,3114,3115,3112,43,3112,3115,3116,3117,0,3238,3241,3242,3243,3112,3115,3116,3117,43,3113,3112,3117,3118,0,3239,3238,3243,3244,3113,3112,3117,3118,43,3102,3119,3120,3103,0,3228,3245,3246,3229,3102,3119,3120,3103,43,3119,3110,3113,3120,0,3245,3236,3239,3246,3119,3110,3113,3120,43,3120,3113,3118,3121,0,3246,3239,3244,3247,3120,3113,3118,3121,43,3103,3120,3121,3106,0,3229,3246,3247,3232,3103,3120,3121,3106,43,3122,3123,3124,3125,0,3248,3249,3250,3251,3122,3123,3124,3125,43,3123,3126,3127,3124,0,3249,3252,3253,3250,3123,3126,3127,3124,43,3124,3127,1728,1739,0,3250,3253,1762,1773,3124,3127,1728,1739,43,3125,3124,1739,1738,0,3251,3250,1773,1772,3125,3124,1739,1738,43,1730,1729,3128,1731,0,1764,1763,3254,1842,1730,1729,3128,1731,43,1729,1728,3127,3128,0,1763,1762,3253,3254,1729,1728,3127,3128,43,3128,3127,3126,3129,0,3254,3253,3252,3255,3128,3127,3126,3129,43,1731,3128,3129,1808,0,1842,3254,3255,1843,1731,3128,3129,1808,43,3130,3131,3132,3133,0,3256,3257,3258,3259,3130,3131,3132,3133,43,3131,1808,3129,3132,0,3257,1843,3255,3258,3131,1808,3129,3132,43,3132,3129,3126,3134,0,3258,3255,3252,3260,3132,3129,3126,3134,43,3133,3132,3134,3135,0,3259,3258,3260,3261,3133,3132,3134,3135,43,3136,3137,3138,3139,0,3262,3263,3264,3265,3136,3137,3138,3139,43,3137,3140,3141,3138,0,3263,3266,3267,3264,3137,3140,3141,3138,43,3138,3141,3142,3143,0,3264,3267,3268,3269,3138,3141,3142,3143,43,3139,3138,3143,3144,0,3265,3264,3269,3270,3139,3138,3143,3144,43,3142,3145,3146,3147,0,3268,3271,3272,3273,3142,3145,3146,3147,43,3145,3148,3149,3146,0,3271,3274,3275,3272,3145,3148,3149,3146,43,3146,3149,3150,3151,0,3272,3275,3276,3277,3146,3149,3150,3151,43,3147,3146,3151,3152,0,3273,3272,3277,3278,3147,3146,3151,3152,43,3153,3154,3155,3156,0,3279,3280,3281,3282,3153,3154,3155,3156,43,3154,3130,3157,3155,0,3280,3256,3283,3281,3154,3130,3157,3155,43,3155,3157,3158,3159,0,3281,3283,3284,3285,3155,3157,3158,3159,43,3156,3155,3159,3160,0,3282,3281,3285,3286,3156,3155,3159,3160,43,3160,3159,3161,3162,0,3286,3285,3287,3288,3160,3159,3161,3162,43,3159,3158,3163,3161,0,3285,3284,3289,3287,3159,3158,3163,3161,43,3161,3163,3140,3164,0,3287,3289,3266,3290,3161,3163,3140,3164,43,3162,3161,3164,3165,0,3288,3287,3290,3291,3162,3161,3164,3165,43,3158,3157,3166,3167,0,3284,3283,3292,3293,3158,3157,3166,3167,43,3157,3130,3133,3166,0,3283,3256,3259,3292,3157,3130,3133,3166,43,3166,3133,3135,3168,0,3292,3259,3261,3294,3166,3133,3135,3168,43,3167,3166,3168,3148,0,3293,3292,3294,3274,3167,3166,3168,3148,43,3140,3163,3169,3141,0,3266,3289,3295,3267,3140,3163,3169,3141,43,3163,3158,3167,3169,0,3289,3284,3293,3295,3163,3158,3167,3169,43,3169,3167,3148,3145,0,3295,3293,3274,3271,3169,3167,3148,3145,43,3141,3169,3145,3142,0,3267,3295,3271,3268,3141,3169,3145,3142,43,3144,3143,3170,3171,0,3270,3269,3296,3297,3144,3143,3170,3171,43,3143,3142,3147,3170,0,3269,3268,3273,3296,3143,3142,3147,3170,43,3170,3147,3152,3172,0,3296,3273,3278,3298,3170,3147,3152,3172,43,3171,3170,3172,3173,0,3297,3296,3298,3299,3171,3170,3172,3173,43,3173,3172,3174,3175,0,3299,3298,3300,3301,3173,3172,3174,3175,43,3172,3152,3176,3174,0,3298,3278,3302,3300,3172,3152,3176,3174,43,3174,3176,3177,3178,0,3300,3302,3303,3304,3174,3176,3177,3178,43,3175,3174,3178,3179,0,3301,3300,3304,3305,3175,3174,3178,3179,43,3152,3151,3180,3176,0,3278,3277,3306,3302,3152,3151,3180,3176,43,3151,3150,3181,3180,0,3277,3276,3307,3306,3151,3150,3181,3180,43,3180,3181,3182,3183,0,3306,3307,3308,3309,3180,3181,3182,3183,43,3176,3180,3183,3177,0,3302,3306,3309,3303,3176,3180,3183,3177,43,3184,3185,3186,3187,0,3310,3311,3312,3313,3184,3185,3186,3187,43,3185,1752,1751,3186,0,3311,1786,1785,3312,3185,1752,1751,3186,43,3186,1751,1750,3188,0,3312,1785,1784,3314,3186,1751,1750,3188,43,3187,3186,3188,3189,0,3313,3312,3314,3315,3187,3186,3188,3189,43,3189,3190,3191,3187,0,3315,3316,3317,3313,3189,3190,3191,3187,43,3190,3192,3193,3191,0,3316,3318,3319,3317,3190,3192,3193,3191,43,3191,3193,3194,3195,0,3317,3319,3320,3321,3191,3193,3194,3195,43,3187,3191,3195,3184,0,3313,3317,3321,3310,3187,3191,3195,3184,43,3194,3196,3197,3195,0,3320,3322,3323,3321,3194,3196,3197,3195,43,3196,3198,3199,3197,0,3322,3324,3325,3323,3196,3198,3199,3197,43,3197,3199,3122,3200,0,3323,3325,3248,3326,3197,3199,3122,3200,43,3195,3197,3200,3184,0,3321,3323,3326,3310,3195,3197,3200,3184,43,3182,3201,3202,3203,0,3308,3327,3328,3329,3182,3201,3202,3203,43,3201,3194,3193,3202,0,3327,3320,3319,3328,3201,3194,3193,3202,43,3202,3193,3192,3204,0,3328,3319,3318,3330,3202,3193,3192,3204,43,3203,3202,3204,3205,0,3329,3328,3330,3331,3203,3202,3204,3205,43,3150,3206,3207,3181,0,3276,3332,3333,3307,3150,3206,3207,3181,43,3206,3198,3196,3207,0,3332,3324,3322,3333,3206,3198,3196,3207,43,3207,3196,3194,3201,0,3333,3322,3320,3327,3207,3196,3194,3201,43,3181,3207,3201,3182,0,3307,3333,3327,3308,3181,3207,3201,3182,43,3150,3149,3208,3206,0,3276,3275,3334,3332,3150,3149,3208,3206,43,3149,3148,3168,3208,0,3275,3274,3294,3334,3149,3148,3168,3208,43,3208,3168,3135,3209,0,3334,3294,3261,3335,3208,3168,3135,3209,43,3206,3208,3209,3198,0,3332,3334,3335,3324,3206,3208,3209,3198,43,3135,3134,3210,3209,0,3261,3260,3336,3335,3135,3134,3210,3209,43,3134,3126,3123,3210,0,3260,3252,3249,3336,3134,3126,3123,3210,43,3210,3123,3122,3199,0,3336,3249,3248,3325,3210,3123,3122,3199,43,3209,3210,3199,3198,0,3335,3336,3325,3324,3209,3210,3199,3198,43,3122,3125,3211,3200,0,3248,3251,3337,3326,3122,3125,3211,3200,43,3125,1738,1754,3211,0,3251,1772,1788,3337,3125,1738,1754,3211,43,3211,1754,1752,3185,0,3337,1788,1786,3311,3211,1754,1752,3185,43,3200,3211,3185,3184,0,3326,3337,3311,3310,3200,3211,3185,3184,43,3212,3213,3214,3215,0,3338,3339,3340,3341,3212,3213,3214,3215,43,3213,3136,3139,3214,0,3339,3262,3265,3340,3213,3136,3139,3214,43,3214,3139,3144,3216,0,3340,3265,3270,3342,3214,3139,3144,3216,43,3215,3214,3216,3217,0,3341,3340,3342,3343,3215,3214,3216,3217,43,3218,3219,3220,3221,0,3344,3345,3346,3347,3218,3219,3220,3221,43,3219,3222,3223,3220,0,3345,3348,3349,3346,3219,3222,3223,3220,43,3220,3223,3224,3225,0,3346,3349,3350,3351,3220,3223,3224,3225,43,3221,3220,3225,3212,0,3347,3346,3351,3338,3221,3220,3225,3212,43,3222,3226,3227,3223,0,3348,3352,3353,3349,3222,3226,3227,3223,43,3226,3228,3229,3227,0,3352,3354,3355,3353,3226,3228,3229,3227,43,3227,3229,3230,3231,0,3353,3355,3356,3357,3227,3229,3230,3231,43,3223,3227,3231,3224,0,3349,3353,3357,3350,3223,3227,3231,3224,43,3232,3233,3234,3235,0,3358,3359,3360,3361,3232,3233,3234,3235,43,3233,1805,1804,3234,0,3359,1839,1838,3360,3233,1805,1804,3234,43,3234,1804,1803,3236,0,3360,1838,1837,3362,3234,1804,1803,3236,43,3235,3234,3236,3237,0,3361,3360,3362,3363,3235,3234,3236,3237,43,3238,3239,3240,3241,0,3364,3365,3366,3367,3238,3239,3240,3241,43,3239,3242,3243,3240,0,3365,3368,3369,3366,3239,3242,3243,3240,43,3240,3243,3179,3244,0,3366,3369,3305,3370,3240,3243,3179,3244,43,3241,3240,3244,3245,0,3367,3366,3370,3371,3241,3240,3244,3245,43,3189,3188,3246,3247,0,3315,3314,3372,3373,3189,3188,3246,3247,43,3188,1750,1912,3246,0,3314,1784,1947,3372,3188,1750,1912,3246,43,3246,1912,1911,1917,0,3372,1947,1946,1952,3246,1912,1911,1917,43,3247,3246,1917,1770,0,3373,3372,1952,1804,3247,3246,1917,1770,43,3248,3249,3250,3251,0,3374,3375,3376,3377,3248,3249,3250,3251,43,3249,3189,3247,3250,0,3375,3315,3373,3376,3249,3189,3247,3250,43,3251,3250,3247,1770,0,3377,3376,3373,1804,3251,3250,3247,1770,43,3252,3253,3254,3255,0,3378,3379,3380,3381,3252,3253,3254,3255,43,3253,3232,3256,3254,0,3379,3358,3382,3380,3253,3232,3256,3254,43,3254,3256,3257,3258,0,3380,3382,3383,3384,3254,3256,3257,3258,43,3255,3254,3258,3259,0,3381,3380,3384,3385,3255,3254,3258,3259,43,1785,1788,3260,3261,0,1819,1822,3386,3387,1785,1788,3260,3261,43,1788,1793,3262,3260,0,1822,1827,3388,3386,1788,1793,3262,3260,43,3260,3262,3263,3264,0,3386,3388,3389,3390,3260,3262,3263,3264,43,3261,3260,3264,3265,0,3387,3386,3390,3391,3261,3260,3264,3265,43,3238,3266,3267,3239,0,3364,3392,3393,3365,3238,3266,3267,3239,43,3266,3268,3269,3267,0,3392,3394,3395,3393,3266,3268,3269,3267,43,3267,3269,3270,3271,0,3393,3395,3396,3397,3267,3269,3270,3271,43,3239,3267,3271,3242,0,3365,3393,3397,3368,3239,3267,3271,3242,43,3272,3273,3274,3275,0,3398,3399,3400,3401,3272,3273,3274,3275,43,3273,3265,3264,3274,0,3399,3391,3390,3400,3273,3265,3264,3274,43,3274,3264,3263,3276,0,3400,3390,3389,3402,3274,3264,3263,3276,43,3275,3274,3276,3277,0,3401,3400,3402,3403,3275,3274,3276,3277,43,3278,3279,3280,3281,0,3404,3405,3406,3407,3278,3279,3280,3281,43,3279,3282,3283,3280,0,3405,3408,3409,3406,3279,3282,3283,3280,43,3280,3283,3114,3284,0,3406,3409,3240,3410,3280,3283,3114,3284,43,3281,3280,3284,3285,0,3407,3406,3410,3411,3281,3280,3284,3285,43,3286,3287,3288,3289,0,3412,3413,3414,3415,3286,3287,3288,3289,43,3287,3290,3291,3288,0,3413,3416,3417,3414,3287,3290,3291,3288,43,3289,3288,3291,1784,0,3415,3414,3417,1818,3289,3288,3291,1784,43,3286,3292,3293,3287,0,3412,3418,3419,3413,3286,3292,3293,3287,43,3292,3294,3295,3293,0,3418,3420,3421,3419,3292,3294,3295,3293,43,3287,3293,3295,3290,0,3413,3419,3421,3416,3287,3293,3295,3290,43,3296,3297,3298,3299,0,3422,3423,3424,3425,3296,3297,3298,3299,43,3297,3300,3301,3298,0,3423,3426,3427,3424,3297,3300,3301,3298,43,3298,3301,3302,3303,0,3424,3427,3428,3429,3298,3301,3302,3303,43,3299,3298,3303,3304,0,3425,3424,3429,3430,3299,3298,3303,3304,43,3110,3305,3306,3111,0,3236,3431,3432,3237,3110,3305,3306,3111,43,3305,3307,3308,3306,0,3431,3433,3434,3432,3305,3307,3308,3306,43,3306,3308,3285,3284,0,3432,3434,3411,3410,3306,3308,3285,3284,43,3111,3306,3284,3114,0,3237,3432,3410,3240,3111,3306,3284,3114,43,3309,3310,3311,3312,0,3435,3436,3437,3438,3309,3310,3311,3312,43,3310,3313,3314,3311,0,3436,3439,3440,3437,3310,3313,3314,3311,43,3311,3314,3302,3301,0,3437,3440,3428,3427,3311,3314,3302,3301,43,3312,3311,3301,3300,0,3438,3437,3427,3426,3312,3311,3301,3300,43,3315,3316,3317,3318,0,3441,3442,3443,3444,3315,3316,3317,3318,43,3316,3319,3320,3317,0,3442,3445,3446,3443,3316,3319,3320,3317,43,3317,3320,3321,3322,0,3443,3446,3447,3448,3317,3320,3321,3322,43,3318,3317,3322,3323,0,3444,3443,3448,3449,3318,3317,3322,3323,43,3324,3325,3326,3327,0,3450,3451,3452,3453,3324,3325,3326,3327,43,3325,3328,3329,3326,0,3451,3454,3455,3452,3325,3328,3329,3326,43,3326,3329,3330,3331,0,3452,3455,3456,3457,3326,3329,3330,3331,43,3327,3326,3331,3332,0,3453,3452,3457,3458,3327,3326,3331,3332,42,3286,3333,3334,0,3412,3459,3460,3286,3333,3334,43,3333,3328,3325,3334,0,3459,3454,3451,3460,3333,3328,3325,3334,42,3334,3325,3324,0,3461,3451,3450,3334,3325,3324,43,3286,3334,3335,3292,0,3412,3461,3462,3418,3286,3334,3335,3292,43,3334,3324,3336,3335,0,3461,3450,3463,3462,3334,3324,3336,3335,43,3292,3335,3336,3294,0,3418,3462,3463,3420,3292,3335,3336,3294,43,3337,3338,3339,3340,0,3464,3465,3466,3467,3337,3338,3339,3340,43,3338,3341,3342,3339,0,3465,3468,3469,3466,3338,3341,3342,3339,43,3339,3342,3324,3327,0,3466,3469,3450,3453,3339,3342,3324,3327,43,3340,3339,3327,3332,0,3467,3466,3453,3458,3340,3339,3327,3332,43,3341,3343,3344,3342,0,3468,3470,3471,3469,3341,3343,3344,3342,43,3343,3345,3346,3344,0,3470,3472,3473,3471,3343,3345,3346,3344,43,3344,3346,3294,3336,0,3471,3473,3420,3463,3344,3346,3294,3336,43,3342,3344,3336,3324,0,3469,3471,3463,3450,3342,3344,3336,3324,43,3315,3347,3348,3349,0,3441,3474,3475,3476,3315,3347,3348,3349,43,3347,3350,3351,3348,0,3474,3477,3478,3475,3347,3350,3351,3348,43,3348,3351,3341,3338,0,3475,3478,3468,3465,3348,3351,3341,3338,43,3349,3348,3338,3337,0,3476,3475,3465,3464,3349,3348,3338,3337,43,3352,3353,3354,3355,0,3479,3480,3481,3482,3352,3353,3354,3355,43,3353,3345,3343,3354,0,3480,3472,3470,3481,3353,3345,3343,3354,43,3354,3343,3341,3351,0,3481,3470,3468,3478,3354,3343,3341,3351,43,3355,3354,3351,3350,0,3482,3481,3478,3477,3355,3354,3351,3350,43,3356,3357,3358,3359,0,3483,3484,3485,3486,3356,3357,3358,3359,43,3357,3360,3361,3358,0,3484,3487,3488,3485,3357,3360,3361,3358,43,3358,3361,3362,3363,0,3485,3488,3489,3490,3358,3361,3362,3363,43,3359,3358,3363,3364,0,3486,3485,3490,3491,3359,3358,3363,3364,43,3282,3365,3366,3367,0,3408,3492,3493,3494,3282,3365,3366,3367,43,3365,3368,3369,3366,0,3492,3495,3496,3493,3365,3368,3369,3366,43,3366,3369,3360,3357,0,3493,3496,3487,3484,3366,3369,3360,3357,43,3367,3366,3357,3356,0,3494,3493,3484,3483,3367,3366,3357,3356,43,3285,3308,3370,3371,0,3411,3434,3497,3498,3285,3308,3370,3371,43,3308,3307,3372,3370,0,3434,3433,3499,3497,3308,3307,3372,3370,43,3370,3372,3373,3374,0,3497,3499,3500,3501,3370,3372,3373,3374,43,3371,3370,3374,3375,0,3498,3497,3501,3502,3371,3370,3374,3375,43,3278,3281,3376,3377,0,3404,3407,3503,3504,3278,3281,3376,3377,43,3281,3285,3371,3376,0,3407,3411,3498,3503,3281,3285,3371,3376,43,3376,3371,3375,3378,0,3503,3498,3502,3505,3376,3371,3375,3378,43,3377,3376,3378,3379,0,3504,3503,3505,3506,3377,3376,3378,3379,43,3375,3374,3380,3381,0,3502,3501,3507,3508,3375,3374,3380,3381,43,3374,3373,3382,3380,0,3501,3500,3509,3507,3374,3373,3382,3380,43,3380,3382,3238,3241,0,3507,3509,3364,3367,3380,3382,3238,3241,43,3381,3380,3241,3245,0,3508,3507,3367,3371,3381,3380,3241,3245,43,3205,3383,3384,3385,0,3331,3510,3511,3512,3205,3383,3384,3385,43,3383,3386,3387,3384,0,3510,3513,3514,3511,3383,3386,3387,3384,43,3384,3387,3379,3388,0,3511,3514,3506,3515,3384,3387,3379,3388,43,3385,3384,3388,3389,0,3512,3511,3515,3516,3385,3384,3388,3389,43,3177,3183,3390,3391,0,3303,3309,3517,3518,3177,3183,3390,3391,43,3183,3182,3203,3390,0,3309,3308,3329,3517,3183,3182,3203,3390,43,3390,3203,3205,3385,0,3517,3329,3331,3512,3390,3203,3205,3385,43,3391,3390,3385,3389,0,3518,3517,3512,3516,3391,3390,3385,3389,43,3177,3391,3392,3178,0,3303,3518,3519,3304,3177,3391,3392,3178,43,3391,3389,3393,3392,0,3518,3516,3520,3519,3391,3389,3393,3392,43,3392,3393,3245,3244,0,3519,3520,3371,3370,3392,3393,3245,3244,43,3178,3392,3244,3179,0,3304,3519,3370,3305,3178,3392,3244,3179,43,3379,3378,3394,3388,0,3506,3505,3521,3515,3379,3378,3394,3388,43,3378,3375,3381,3394,0,3505,3502,3508,3521,3378,3375,3381,3394,43,3394,3381,3245,3393,0,3521,3508,3371,3520,3394,3381,3245,3393,43,3388,3394,3393,3389,0,3515,3521,3520,3516,3388,3394,3393,3389,43,3379,3387,3395,3377,0,3506,3514,3522,3504,3379,3387,3395,3377,43,3387,3386,3396,3395,0,3514,3513,3523,3522,3387,3386,3396,3395,43,3395,3396,3397,3398,0,3522,3523,3524,3525,3395,3396,3397,3398,43,3377,3395,3398,3278,0,3504,3522,3525,3404,3377,3395,3398,3278,43,3294,3346,3399,3400,0,3420,3473,3526,3527,3294,3346,3399,3400,43,3346,3345,3353,3399,0,3473,3472,3480,3526,3346,3345,3353,3399,43,3399,3353,3352,3401,0,3526,3480,3479,3528,3399,3353,3352,3401,43,3400,3399,3401,3402,0,3527,3526,3528,3529,3400,3399,3401,3402,43,3290,3295,3403,3404,0,3416,3421,3530,3531,3290,3295,3403,3404,43,3295,3294,3400,3403,0,3421,3420,3527,3530,3295,3294,3400,3403,43,3404,3403,3400,3402,0,3531,3530,3527,3529,3404,3403,3400,3402,43,3405,3406,3407,3408,0,3532,3533,3534,3535,3405,3406,3407,3408,43,3406,3409,3410,3407,0,3533,3536,3537,3534,3406,3409,3410,3407,43,3407,3410,3368,3411,0,3534,3537,3495,3538,3407,3410,3368,3411,43,3408,3407,3411,3397,0,3535,3534,3538,3524,3408,3407,3411,3397,43,3290,3404,3412,3413,0,3416,3531,3539,3540,3290,3404,3412,3413,43,3404,3402,3414,3412,0,3531,3529,3541,3539,3404,3402,3414,3412,43,3412,3414,3409,3406,0,3539,3541,3536,3533,3412,3414,3409,3406,43,3413,3412,3406,3405,0,3540,3539,3533,3532,3413,3412,3406,3405,43,3248,3415,3416,3249,0,3374,3542,3543,3375,3248,3415,3416,3249,43,3415,3417,3418,3416,0,3542,3544,3545,3543,3415,3417,3418,3416,43,3416,3418,3192,3190,0,3543,3545,3318,3316,3416,3418,3192,3190,43,3249,3416,3190,3189,0,3375,3543,3316,3315,3249,3416,3190,3189,43,3205,3204,3419,3383,0,3331,3330,3546,3510,3205,3204,3419,3383,43,3204,3192,3418,3419,0,3330,3318,3545,3546,3204,3192,3418,3419,43,3419,3418,3417,3420,0,3546,3545,3544,3547,3419,3418,3417,3420,43,3383,3419,3420,3386,0,3510,3546,3547,3513,3383,3419,3420,3386,43,1778,3421,3422,1773,0,1812,3548,3549,1807,1778,3421,3422,1773,43,3421,3423,3424,3422,0,3548,3550,3551,3549,3421,3423,3424,3422,43,3422,3424,3248,3251,0,3549,3551,3374,3377,3422,3424,3248,3251,43,1773,3422,3251,1770,0,1807,3549,3377,1804,1773,3422,3251,1770,43,3405,3425,3426,3413,0,3532,3552,3553,3540,3405,3425,3426,3413,43,3425,3423,3427,3426,0,3552,3550,3554,3553,3425,3423,3427,3426,43,3413,3426,3427,3290,0,3540,3553,3554,3416,3413,3426,3427,3290,43,3423,3421,3428,3427,0,3550,3548,3555,3554,3423,3421,3428,3427,43,3421,1778,1780,3428,0,3548,1812,1814,3555,3421,1778,1780,3428,43,3428,1780,1784,3291,0,3555,1814,1818,3417,3428,1780,1784,3291,43,3427,3428,3291,3290,0,3554,3555,3417,3416,3427,3428,3291,3290,43,3248,3424,3429,3415,0,3374,3551,3556,3542,3248,3424,3429,3415,43,3424,3423,3425,3429,0,3551,3550,3552,3556,3424,3423,3425,3429,43,3429,3425,3405,3430,0,3556,3552,3532,3557,3429,3425,3405,3430,43,3415,3429,3430,3417,0,3542,3556,3557,3544,3415,3429,3430,3417,43,3386,3420,3431,3396,0,3513,3547,3558,3523,3386,3420,3431,3396,43,3420,3417,3430,3431,0,3547,3544,3557,3558,3420,3417,3430,3431,43,3431,3430,3405,3408,0,3558,3557,3532,3535,3431,3430,3405,3408,43,3396,3431,3408,3397,0,3523,3558,3535,3524,3396,3431,3408,3397,43,3278,3398,3432,3279,0,3404,3525,3559,3405,3278,3398,3432,3279,43,3398,3397,3411,3432,0,3525,3524,3538,3559,3398,3397,3411,3432,43,3432,3411,3368,3365,0,3559,3538,3495,3492,3432,3411,3368,3365,43,3279,3432,3365,3282,0,3405,3559,3492,3408,3279,3432,3365,3282,43,3368,3410,3433,3369,0,3495,3537,3560,3496,3368,3410,3433,3369,43,3410,3409,3414,3433,0,3537,3536,3541,3560,3410,3409,3414,3433,43,3433,3414,3402,3434,0,3560,3541,3529,3561,3433,3414,3402,3434,43,3369,3433,3434,3360,0,3496,3560,3561,3487,3369,3433,3434,3360,43,3360,3434,3435,3361,0,3487,3561,3562,3488,3360,3434,3435,3361,43,3434,3402,3401,3435,0,3561,3529,3528,3562,3434,3402,3401,3435,43,3435,3401,3352,3436,0,3562,3528,3479,3563,3435,3401,3352,3436,43,3361,3435,3436,3362,0,3488,3562,3563,3489,3361,3435,3436,3362,43,3362,3437,3438,3363,0,3489,3564,3565,3490,3362,3437,3438,3363,43,3437,3439,3440,3438,0,3564,3566,3567,3565,3437,3439,3440,3438,43,3438,3440,3441,3442,0,3565,3567,3568,3569,3438,3440,3441,3442,43,3363,3438,3442,3364,0,3490,3565,3569,3491,3363,3438,3442,3364,43,3439,3443,3444,3440,0,3566,3570,3571,3567,3439,3443,3444,3440,43,3443,3323,3445,3444,0,3570,3449,3572,3571,3443,3323,3445,3444,43,3444,3445,3446,3447,0,3571,3572,3573,3574,3444,3445,3446,3447,43,3440,3444,3447,3441,0,3567,3571,3574,3568,3440,3444,3447,3441,43,3362,3436,3448,3437,0,3489,3563,3575,3564,3362,3436,3448,3437,43,3436,3352,3355,3448,0,3563,3479,3482,3575,3436,3352,3355,3448,43,3448,3355,3350,3449,0,3575,3482,3477,3576,3448,3355,3350,3449,43,3437,3448,3449,3439,0,3564,3575,3576,3566,3437,3448,3449,3439,43,3350,3347,3450,3449,0,3477,3474,3577,3576,3350,3347,3450,3449,43,3347,3315,3318,3450,0,3474,3441,3444,3577,3347,3315,3318,3450,43,3450,3318,3323,3443,0,3577,3444,3449,3570,3450,3318,3323,3443,43,3449,3450,3443,3439,0,3576,3577,3570,3566,3449,3450,3443,3439,43,3323,3322,3451,3445,0,3449,3448,3578,3572,3323,3322,3451,3445,43,3322,3321,3452,3451,0,3448,3447,3579,3578,3322,3321,3452,3451,43,3451,3452,3453,3454,0,3578,3579,3580,3581,3451,3452,3453,3454,43,3445,3451,3454,3446,0,3572,3578,3581,3573,3445,3451,3454,3446,43,3455,3456,3457,3458,0,3582,3583,3584,3585,3455,3456,3457,3458,43,3456,3459,3460,3457,0,3583,3586,3587,3584,3456,3459,3460,3457,43,3457,3460,3304,3461,0,3584,3587,3430,3588,3457,3460,3304,3461,43,3458,3457,3461,3462,0,3585,3584,3588,3589,3458,3457,3461,3462,43,3304,3460,3463,3299,0,3430,3587,3590,3425,3304,3460,3463,3299,43,3460,3459,3464,3463,0,3587,3586,3591,3590,3460,3459,3464,3463,43,3463,3464,3465,3466,0,3590,3591,3592,3593,3463,3464,3465,3466,43,3299,3463,3466,3296,0,3425,3590,3593,3422,3299,3463,3466,3296,43,1799,1801,3467,3468,0,1833,1835,3594,3595,1799,1801,3467,3468,43,1801,1805,3233,3467,0,1835,1839,3359,3594,1801,1805,3233,3467,43,3467,3233,3232,3253,0,3594,3359,3358,3379,3467,3233,3232,3253,43,3468,3467,3253,3252,0,3595,3594,3379,3378,3468,3467,3253,3252,43,1793,1795,3469,3262,0,1827,1829,3596,3388,1793,1795,3469,3262,43,1795,1799,3470,3469,0,1829,1833,3597,3596,1795,1799,3470,3469,43,3262,3469,3470,3263,0,3388,3596,3597,3389,3262,3469,3470,3263,43,1799,3468,3471,3470,0,1833,3595,3598,3597,1799,3468,3471,3470,43,3468,3252,3472,3471,0,3595,3378,3599,3598,3468,3252,3472,3471,43,3471,3472,3277,3276,0,3598,3599,3403,3402,3471,3472,3277,3276,43,3470,3471,3276,3263,0,3597,3598,3402,3389,3470,3471,3276,3263,43,3153,3473,3474,3154,0,3279,3600,3601,3280,3153,3473,3474,3154,43,3473,1810,1809,3474,0,3600,1845,1844,3601,3473,1810,1809,3474,43,3474,1809,1808,3131,0,3601,1844,1843,3257,3474,1809,1808,3131,43,3154,3474,3131,3130,0,3280,3601,3257,3256,3154,3474,3131,3130,43,3153,3475,3476,3473,0,3279,3602,3603,3600,3153,3475,3476,3473,43,3475,3237,3236,3476,0,3602,3363,3362,3603,3475,3237,3236,3476,43,3476,3236,1803,1815,0,3603,3362,1837,1850,3476,3236,1803,1815,43,3473,3476,1815,1810,0,3600,3603,1850,1845,3473,3476,1815,1810,43,1822,3477,3478,1823,0,1857,3604,3605,1858,1822,3477,3478,1823,43,3477,3296,3466,3478,0,3604,3422,3593,3605,3477,3296,3466,3478,43,3478,3466,3465,3479,0,3605,3593,3592,3606,3478,3466,3465,3479,43,1823,3478,3479,1826,0,1858,3605,3606,1861,1823,3478,3479,1826,43,1826,3479,3480,1829,0,1861,3606,3607,1864,1826,3479,3480,1829,43,3479,3465,3481,3480,0,3606,3592,3608,3607,3479,3465,3481,3480,43,3480,3481,3482,3483,0,3607,3608,3609,3610,3480,3481,3482,3483,43,1829,3480,3483,1830,0,1864,3607,3610,1865,1829,3480,3483,1830,43,3484,3485,3486,3487,0,3611,3612,3613,3614,3484,3485,3486,3487,43,3485,3332,3331,3486,0,3612,3458,3457,3613,3485,3332,3331,3486,43,3486,3331,3330,3488,0,3613,3457,3456,3615,3486,3331,3330,3488,43,3487,3486,3488,3489,0,3614,3613,3615,3616,3487,3486,3488,3489,43,3455,3490,3491,3492,0,3582,3617,3618,3619,3455,3490,3491,3492,43,3490,3493,3494,3491,0,3617,3620,3621,3618,3490,3493,3494,3491,43,3491,3494,3495,3496,0,3618,3621,3622,3623,3491,3494,3495,3496,43,3492,3491,3496,3482,0,3619,3618,3623,3609,3492,3491,3496,3482,43,3497,3498,3499,3500,0,3624,3625,3626,3627,3497,3498,3499,3500,43,3498,3337,3340,3499,0,3625,3464,3467,3626,3498,3337,3340,3499,43,3499,3340,3332,3485,0,3626,3467,3458,3612,3499,3340,3332,3485,43,3500,3499,3485,3484,0,3627,3626,3612,3611,3500,3499,3485,3484,43,3319,3316,3501,3502,0,3445,3442,3628,3629,3319,3316,3501,3502,43,3316,3315,3349,3501,0,3442,3441,3476,3628,3316,3315,3349,3501,43,3501,3349,3337,3498,0,3628,3476,3464,3625,3501,3349,3337,3498,43,3502,3501,3498,3497,0,3629,3628,3625,3624,3502,3501,3498,3497,43,3321,3320,3503,3504,0,3447,3446,3630,3631,3321,3320,3503,3504,43,3320,3319,3502,3503,0,3446,3445,3629,3630,3320,3319,3502,3503,43,3503,3502,3497,3505,0,3630,3629,3624,3632,3503,3502,3497,3505,43,3504,3503,3505,3506,0,3631,3630,3632,3633,3504,3503,3505,3506,43,3506,3505,3507,3508,0,3633,3632,3634,3635,3506,3505,3507,3508,43,3505,3497,3500,3507,0,3632,3624,3627,3634,3505,3497,3500,3507,43,3507,3500,3484,3509,0,3634,3627,3611,3636,3507,3500,3484,3509,43,3508,3507,3509,3493,0,3635,3634,3636,3620,3508,3507,3509,3493,43,3493,3509,3510,3494,0,3620,3636,3637,3621,3493,3509,3510,3494,43,3509,3484,3487,3510,0,3636,3611,3614,3637,3509,3484,3487,3510,43,3510,3487,3489,3511,0,3637,3614,3616,3638,3510,3487,3489,3511,43,3494,3510,3511,3495,0,3621,3637,3638,3622,3494,3510,3511,3495,43,1784,1837,3512,3289,0,1818,1872,3639,3415,1784,1837,3512,3289,43,1837,1836,3513,3512,0,1872,1871,3640,3639,1837,1836,3513,3512,43,3512,3513,3328,3333,0,3639,3640,3454,3459,3512,3513,3328,3333,43,3289,3512,3333,3286,0,3415,3639,3459,3412,3289,3512,3333,3286,43,1836,1855,3514,3513,0,1871,1890,3641,3640,1836,1855,3514,3513,43,1855,1854,3515,3514,0,1890,1889,3642,3641,1855,1854,3515,3514,43,3514,3515,3330,3329,0,3641,3642,3456,3455,3514,3515,3330,3329,43,3513,3514,3329,3328,0,3640,3641,3455,3454,3513,3514,3329,3328,43,3489,3488,3516,3517,0,3616,3615,3643,3644,3489,3488,3516,3517,43,3488,3330,3515,3516,0,3615,3456,3642,3643,3488,3330,3515,3516,43,3516,3515,1854,1857,0,3643,3642,1889,1892,3516,3515,1854,1857,43,3517,3516,1857,1859,0,3644,3643,1892,1894,3517,3516,1857,1859,43,3495,3511,3518,3519,0,3622,3638,3645,3646,3495,3511,3518,3519,43,3511,3489,3517,3518,0,3638,3616,3644,3645,3511,3489,3517,3518,43,3518,3517,1859,1928,0,3645,3644,1894,1963,3518,3517,1859,1928,43,3519,3518,1928,1874,0,3646,3645,1963,1909,3519,3518,1928,1874,43,1830,3483,3520,1873,0,1865,3610,3647,1908,1830,3483,3520,1873,43,3483,3482,3496,3520,0,3610,3609,3623,3647,3483,3482,3496,3520,43,3520,3496,3495,3519,0,3647,3623,3622,3646,3520,3496,3495,3519,43,1873,3520,3519,1874,0,1908,3647,3646,1909,1873,3520,3519,1874,43,3465,3464,3521,3481,0,3592,3591,3648,3608,3465,3464,3521,3481,43,3464,3459,3456,3521,0,3591,3586,3583,3648,3464,3459,3456,3521,43,3521,3456,3455,3492,0,3648,3583,3582,3619,3521,3456,3455,3492,43,3481,3521,3492,3482,0,3608,3648,3619,3609,3481,3521,3492,3482,43,3462,3522,3523,3458,0,3589,3649,3650,3585,3462,3522,3523,3458,43,3522,3506,3508,3523,0,3649,3633,3635,3650,3522,3506,3508,3523,43,3523,3508,3493,3490,0,3650,3635,3620,3617,3523,3508,3493,3490,43,3458,3523,3490,3455,0,3585,3650,3617,3582,3458,3523,3490,3455,43,3462,3524,3525,3522,0,3589,3651,3652,3649,3462,3524,3525,3522,43,3524,3453,3452,3525,0,3651,3580,3579,3652,3524,3453,3452,3525,43,3525,3452,3321,3504,0,3652,3579,3447,3631,3525,3452,3321,3504,43,3522,3525,3504,3506,0,3649,3652,3631,3633,3522,3525,3504,3506,43,3446,3454,3526,3527,0,3573,3581,3653,3654,3446,3454,3526,3527,43,3454,3453,3524,3526,0,3581,3580,3651,3653,3454,3453,3524,3526,43,3526,3524,3462,3528,0,3653,3651,3589,3655,3526,3524,3462,3528,43,3527,3526,3528,3529,0,3654,3653,3655,3656,3527,3526,3528,3529,43,3530,3531,3532,3533,0,3657,3658,3659,3660,3530,3531,3532,3533,43,3531,3534,3535,3532,0,3658,3661,3662,3659,3531,3534,3535,3532,43,3532,3535,3536,3537,0,3659,3662,3663,3664,3532,3535,3536,3537,43,3533,3532,3537,3538,0,3660,3659,3664,3665,3533,3532,3537,3538,43,3539,3540,3541,3542,0,3666,3667,3668,3669,3539,3540,3541,3542,43,3540,3530,3533,3541,0,3667,3657,3660,3668,3540,3530,3533,3541,43,3541,3533,3538,3543,0,3668,3660,3665,3670,3541,3533,3538,3543,43,3542,3541,3543,3544,0,3669,3668,3670,3671,3542,3541,3543,3544,43,3545,3546,3547,3548,0,3672,3673,3674,3675,3545,3546,3547,3548,43,3546,3534,3531,3547,0,3673,3661,3658,3674,3546,3534,3531,3547,43,3547,3531,3530,3540,0,3674,3658,3657,3667,3547,3531,3530,3540,43,3548,3547,3540,3539,0,3675,3674,3667,3666,3548,3547,3540,3539,43,3549,3550,3551,3552,0,3676,3677,3678,3679,3549,3550,3551,3552,43,3550,3545,3548,3551,0,3677,3672,3675,3678,3550,3545,3548,3551,43,3551,3548,3539,3553,0,3678,3675,3666,3680,3551,3548,3539,3553,43,3552,3551,3553,3554,0,3679,3678,3680,3681,3552,3551,3553,3554,43,3554,3553,3555,3556,0,3681,3680,3682,3683,3554,3553,3555,3556,43,3553,3539,3542,3555,0,3680,3666,3669,3682,3553,3539,3542,3555,43,3555,3542,3544,3557,0,3682,3669,3671,3684,3555,3542,3544,3557,43,3556,3555,3557,3277,0,3683,3682,3684,3403,3556,3555,3557,3277,43,3544,3558,3559,3557,0,3671,3685,3686,3684,3544,3558,3559,3557,43,3558,3560,3561,3559,0,3685,3687,3688,3686,3558,3560,3561,3559,43,3559,3561,3272,3275,0,3686,3688,3398,3401,3559,3561,3272,3275,43,3557,3559,3275,3277,0,3684,3686,3401,3403,3557,3559,3275,3277,43,3544,3543,3562,3558,0,3671,3670,3689,3685,3544,3543,3562,3558,43,3543,3538,3563,3562,0,3670,3665,3690,3689,3543,3538,3563,3562,43,3562,3563,3564,3565,0,3689,3690,3691,3692,3562,3563,3564,3565,43,3558,3562,3565,3560,0,3685,3689,3692,3687,3558,3562,3565,3560,43,3566,3567,3568,3569,0,3693,3694,3695,3696,3566,3567,3568,3569,43,3567,3570,3571,3568,0,3694,3697,3698,3695,3567,3570,3571,3568,43,3568,3571,3564,3563,0,3695,3698,3691,3690,3568,3571,3564,3563,43,3569,3568,3563,3538,0,3696,3695,3690,3665,3569,3568,3563,3538,43,3536,3572,3573,3537,0,3663,3699,3700,3664,3536,3572,3573,3537,43,3572,3574,3575,3573,0,3699,3701,3702,3700,3572,3574,3575,3573,43,3573,3575,3566,3569,0,3700,3702,3693,3696,3573,3575,3566,3569,43,3537,3573,3569,3538,0,3664,3700,3696,3665,3537,3573,3569,3538,43,3302,3314,3576,3577,0,3428,3440,3703,3704,3302,3314,3576,3577,43,3314,3313,3578,3576,0,3440,3439,3705,3703,3314,3313,3578,3576,43,3576,3578,3579,3580,0,3703,3705,3706,3707,3576,3578,3579,3580,43,3577,3576,3580,3581,0,3704,3703,3707,3708,3577,3576,3580,3581,43,3304,3303,3582,3583,0,3430,3429,3709,3710,3304,3303,3582,3583,43,3303,3302,3577,3582,0,3429,3428,3704,3709,3303,3302,3577,3582,43,3582,3577,3581,3584,0,3709,3704,3708,3711,3582,3577,3581,3584,43,3583,3582,3584,3585,0,3710,3709,3711,3712,3583,3582,3584,3585,43,3462,3461,3586,3528,0,3589,3588,3713,3655,3462,3461,3586,3528,43,3461,3304,3583,3586,0,3588,3430,3710,3713,3461,3304,3583,3586,43,3586,3583,3585,3587,0,3713,3710,3712,3714,3586,3583,3585,3587,43,3528,3586,3587,3529,0,3655,3713,3714,3656,3528,3586,3587,3529,43,3588,3589,3590,3591,0,3715,3716,3717,3718,3588,3589,3590,3591,43,3589,3566,3575,3590,0,3716,3693,3702,3717,3589,3566,3575,3590,43,3590,3575,3574,3592,0,3717,3702,3701,3719,3590,3575,3574,3592,43,3591,3590,3592,3593,0,3718,3717,3719,3720,3591,3590,3592,3593,43,3594,3595,3596,3597,0,3721,3722,3723,3724,3594,3595,3596,3597,43,3595,3598,3599,3596,0,3722,3725,3726,3723,3595,3598,3599,3596,43,3596,3599,3600,3601,0,3723,3726,3727,3728,3596,3599,3600,3601,43,3597,3596,3601,3602,0,3724,3723,3728,3729,3597,3596,3601,3602,43,3594,3603,3604,3595,0,3721,3730,3731,3722,3594,3603,3604,3595,43,3603,3605,3606,3604,0,3730,3732,3733,3731,3603,3605,3606,3604,43,3595,3604,3606,3598,0,3722,3731,3733,3725,3595,3604,3606,3598,43,3607,3608,3609,3610,0,3734,3735,3736,3737,3607,3608,3609,3610,43,3608,3611,3612,3609,0,3735,3738,3739,3736,3608,3611,3612,3609,43,3609,3612,3605,3613,0,3736,3739,3732,3740,3609,3612,3605,3613,43,3610,3609,3613,3614,0,3737,3736,3740,3741,3610,3609,3613,3614,43,3615,3616,3617,3618,0,3742,3743,3744,3745,3615,3616,3617,3618,43,3616,3619,3620,3617,0,3743,3746,3747,3744,3616,3619,3620,3617,43,3617,3620,3621,3622,0,3744,3747,3748,3749,3617,3620,3621,3622,43,3618,3617,3622,3529,0,3745,3744,3749,3656,3618,3617,3622,3529,43,3441,3447,3623,3624,0,3568,3574,3750,3751,3441,3447,3623,3624,43,3447,3446,3527,3623,0,3574,3573,3654,3750,3447,3446,3527,3623,43,3623,3527,3529,3622,0,3750,3654,3656,3749,3623,3527,3529,3622,43,3624,3623,3622,3621,0,3751,3750,3749,3748,3624,3623,3622,3621,43,3364,3442,3625,3626,0,3491,3569,3752,3753,3364,3442,3625,3626,43,3442,3441,3624,3625,0,3569,3568,3751,3752,3442,3441,3624,3625,43,3625,3624,3621,3627,0,3752,3751,3748,3754,3625,3624,3621,3627,43,3626,3625,3627,3607,0,3753,3752,3754,3734,3626,3625,3627,3607,43,3619,3628,3629,3620,0,3746,3755,3756,3747,3619,3628,3629,3620,43,3628,3630,3631,3629,0,3755,3757,3758,3756,3628,3630,3631,3629,43,3629,3631,3632,3633,0,3756,3758,3759,3760,3629,3631,3632,3633,43,3620,3629,3633,3621,0,3747,3756,3760,3748,3620,3629,3633,3621,43,3632,3634,3635,3633,0,3759,3761,3762,3760,3632,3634,3635,3633,43,3634,3636,3637,3635,0,3761,3763,3764,3762,3634,3636,3637,3635,43,3635,3637,3638,3639,0,3762,3764,3765,3766,3635,3637,3638,3639,43,3633,3635,3639,3621,0,3760,3762,3766,3748,3633,3635,3639,3621,43,3638,3637,3640,3641,0,3765,3764,3767,3768,3638,3637,3640,3641,43,3637,3636,3642,3640,0,3764,3763,3769,3767,3637,3636,3642,3640,43,3640,3642,3600,3643,0,3767,3769,3727,3770,3640,3642,3600,3643,43,3641,3640,3643,3611,0,3768,3767,3770,3738,3641,3640,3643,3611,43,3621,3639,3644,3627,0,3748,3766,3771,3754,3621,3639,3644,3627,43,3639,3638,3641,3644,0,3766,3765,3768,3771,3639,3638,3641,3644,43,3644,3641,3611,3608,0,3771,3768,3738,3735,3644,3641,3611,3608,43,3627,3644,3608,3607,0,3754,3771,3735,3734,3627,3644,3608,3607,43,3600,3599,3645,3643,0,3727,3726,3772,3770,3600,3599,3645,3643,43,3599,3598,3606,3645,0,3726,3725,3733,3772,3599,3598,3606,3645,43,3645,3606,3605,3612,0,3772,3733,3732,3739,3645,3606,3605,3612,43,3643,3645,3612,3611,0,3770,3772,3739,3738,3643,3645,3612,3611,43,3602,3601,3646,3647,0,3729,3728,3773,3774,3602,3601,3646,3647,43,3601,3600,3642,3646,0,3728,3727,3769,3773,3601,3600,3642,3646,43,3646,3642,3636,3648,0,3773,3769,3763,3775,3646,3642,3636,3648,43,3647,3646,3648,3649,0,3774,3773,3775,3776,3647,3646,3648,3649,43,3650,3651,3652,3653,0,3777,3778,3779,3780,3650,3651,3652,3653,43,3651,3654,3655,3652,0,3778,3781,3782,3779,3651,3654,3655,3652,43,3652,3655,3656,3657,0,3779,3782,3783,3784,3652,3655,3656,3657,43,3653,3652,3657,3658,0,3780,3779,3784,3785,3653,3652,3657,3658,43,3630,3659,3660,3631,0,3757,3786,3787,3758,3630,3659,3660,3631,43,3659,3661,3662,3660,0,3786,3788,3789,3787,3659,3661,3662,3660,43,3660,3662,3663,3664,0,3787,3789,3790,3791,3660,3662,3663,3664,43,3631,3660,3664,3632,0,3758,3787,3791,3759,3631,3660,3664,3632,43,3663,3665,3666,3664,0,3790,3792,3793,3791,3663,3665,3666,3664,43,3665,3649,3648,3666,0,3792,3776,3775,3793,3665,3649,3648,3666,43,3666,3648,3636,3634,0,3793,3775,3763,3761,3666,3648,3636,3634,43,3664,3666,3634,3632,0,3791,3793,3761,3759,3664,3666,3634,3632,43,3667,3668,3669,3670,0,3794,3795,3796,3797,3667,3668,3669,3670,43,3668,3649,3665,3669,0,3795,3776,3792,3796,3668,3649,3665,3669,43,3669,3665,3663,3671,0,3796,3792,3790,3798,3669,3665,3663,3671,43,3670,3669,3671,3672,0,3797,3796,3798,3799,3670,3669,3671,3672,43,3661,3673,3674,3662,0,3788,3800,3801,3789,3661,3673,3674,3662,43,3673,3675,3676,3674,0,3800,3802,3803,3801,3673,3675,3676,3674,43,3674,3676,3672,3671,0,3801,3803,3799,3798,3674,3676,3672,3671,43,3662,3674,3671,3663,0,3789,3801,3798,3790,3662,3674,3671,3663,43,3654,3677,3678,3655,0,3781,3804,3805,3782,3654,3677,3678,3655,43,3677,3672,3676,3678,0,3804,3799,3803,3805,3677,3672,3676,3678,43,3678,3676,3675,3679,0,3805,3803,3802,3806,3678,3676,3675,3679,43,3655,3678,3679,3656,0,3782,3805,3806,3783,3655,3678,3679,3656,43,3579,3578,3680,3681,0,3706,3705,3807,3808,3579,3578,3680,3681,43,3578,3313,3310,3680,0,3705,3439,3436,3807,3578,3313,3310,3680,43,3680,3310,3309,3682,0,3807,3436,3435,3809,3680,3310,3309,3682,43,3681,3680,3682,3683,0,3808,3807,3809,3810,3681,3680,3682,3683,43,3579,3681,3684,3685,0,3706,3808,3811,3812,3579,3681,3684,3685,43,3681,3683,3686,3684,0,3808,3810,3813,3811,3681,3683,3686,3684,43,3684,3686,3650,3653,0,3811,3813,3777,3780,3684,3686,3650,3653,43,3685,3684,3653,3658,0,3812,3811,3780,3785,3685,3684,3653,3658,43,3309,3687,3688,3682,0,3435,3814,3815,3809,3309,3687,3688,3682,43,3687,3689,3690,3688,0,3814,3816,3817,3815,3687,3689,3690,3688,43,3688,3690,3691,3692,0,3815,3817,3818,3819,3688,3690,3691,3692,43,3682,3688,3692,3683,0,3809,3815,3819,3810,3682,3688,3692,3683,43,3693,3694,3695,3696,0,3820,3821,3822,3823,3693,3694,3695,3696,43,3694,3691,3697,3695,0,3821,3818,3824,3822,3694,3691,3697,3695,43,3695,3697,3560,3565,0,3822,3824,3687,3692,3695,3697,3560,3565,43,3696,3695,3565,3564,0,3823,3822,3692,3691,3696,3695,3565,3564,43,3698,3699,3700,3701,0,3825,3826,3827,3828,3698,3699,3700,3701,43,3699,3689,3687,3700,0,3826,3816,3814,3827,3699,3689,3687,3700,43,3700,3687,3309,3312,0,3827,3814,3435,3438,3700,3687,3309,3312,43,3701,3700,3312,3300,0,3828,3827,3438,3426,3701,3700,3312,3300,43,3265,3273,3702,3703,0,3391,3399,3829,3830,3265,3273,3702,3703,43,3273,3272,3561,3702,0,3399,3398,3688,3829,3273,3272,3561,3702,43,3702,3561,3560,3704,0,3829,3688,3687,3831,3702,3561,3560,3704,43,3703,3702,3704,3698,0,3830,3829,3831,3825,3703,3702,3704,3698,43,1785,3261,3705,1825,0,1819,3387,3832,1860,1785,3261,3705,1825,43,3261,3265,3703,3705,0,3387,3391,3830,3832,3261,3265,3703,3705,43,3705,3703,3698,3706,0,3832,3830,3825,3833,3705,3703,3698,3706,43,1825,3705,3706,1822,0,1860,3832,3833,1857,1825,3705,3706,1822,43,3698,3701,3707,3706,0,3825,3828,3834,3833,3698,3701,3707,3706,43,3701,3300,3297,3707,0,3828,3426,3423,3834,3701,3300,3297,3707,43,3707,3297,3296,3477,0,3834,3423,3422,3604,3707,3297,3296,3477,43,3706,3707,3477,1822,0,3833,3834,3604,1857,3706,3707,3477,1822,43,3691,3690,3708,3697,0,3818,3817,3835,3824,3691,3690,3708,3697,43,3690,3689,3699,3708,0,3817,3816,3826,3835,3690,3689,3699,3708,43,3708,3699,3698,3704,0,3835,3826,3825,3831,3708,3699,3698,3704,43,3697,3708,3704,3560,0,3824,3835,3831,3687,3697,3708,3704,3560,43,3650,3686,3709,3710,0,3777,3813,3836,3837,3650,3686,3709,3710,43,3686,3683,3692,3709,0,3813,3810,3819,3836,3686,3683,3692,3709,43,3709,3692,3691,3694,0,3836,3819,3818,3821,3709,3692,3691,3694,43,3710,3709,3694,3693,0,3837,3836,3821,3820,3710,3709,3694,3693,43,3711,3712,3713,3714,0,3838,3839,3840,3841,3711,3712,3713,3714,43,3712,3570,3567,3713,0,3839,3697,3694,3840,3712,3570,3567,3713,43,3713,3567,3566,3589,0,3840,3694,3693,3716,3713,3567,3566,3589,43,3714,3713,3589,3588,0,3841,3840,3716,3715,3714,3713,3589,3588,43,3693,3696,3715,3716,0,3820,3823,3842,3843,3693,3696,3715,3716,43,3696,3564,3571,3715,0,3823,3691,3698,3842,3696,3564,3571,3715,43,3715,3571,3570,3712,0,3842,3698,3697,3839,3715,3571,3570,3712,43,3716,3715,3712,3711,0,3843,3842,3839,3838,3716,3715,3712,3711,43,3594,3717,3718,3719,0,3721,3844,3845,3846,3594,3717,3718,3719,43,3717,3720,3721,3718,0,3844,3847,3848,3845,3717,3720,3721,3718,43,3718,3721,3711,3722,0,3845,3848,3838,3849,3718,3721,3711,3722,43,3719,3718,3722,3723,0,3846,3845,3849,3850,3719,3718,3722,3723,43,3720,3724,3725,3726,0,3847,3851,3852,3853,3720,3724,3725,3726,43,3724,3727,3728,3725,0,3851,3854,3855,3852,3724,3727,3728,3725,43,3725,3728,3667,3729,0,3852,3855,3794,3856,3725,3728,3667,3729,43,3726,3725,3729,3730,0,3853,3852,3856,3857,3726,3725,3729,3730,43,3720,3726,3731,3721,0,3847,3853,3858,3848,3720,3726,3731,3721,43,3726,3730,3732,3731,0,3853,3857,3859,3858,3726,3730,3732,3731,43,3731,3732,3693,3716,0,3858,3859,3820,3843,3731,3732,3693,3716,43,3721,3731,3716,3711,0,3848,3858,3843,3838,3721,3731,3716,3711,43,3730,3733,3734,3732,0,3857,3860,3861,3859,3730,3733,3734,3732,43,3733,3654,3651,3734,0,3860,3781,3778,3861,3733,3654,3651,3734,43,3734,3651,3650,3710,0,3861,3778,3777,3837,3734,3651,3650,3710,43,3732,3734,3710,3693,0,3859,3861,3837,3820,3732,3734,3710,3693,43,3730,3729,3735,3733,0,3857,3856,3862,3860,3730,3729,3735,3733,43,3729,3667,3670,3735,0,3856,3794,3797,3862,3729,3667,3670,3735,43,3735,3670,3672,3677,0,3862,3797,3799,3804,3735,3670,3672,3677,43,3733,3735,3677,3654,0,3860,3862,3804,3781,3733,3735,3677,3654,43,3667,3728,3736,3668,0,3794,3855,3863,3795,3667,3728,3736,3668,43,3728,3727,3737,3736,0,3855,3854,3864,3863,3728,3727,3737,3736,43,3736,3737,3602,3647,0,3863,3864,3729,3774,3736,3737,3602,3647,43,3668,3736,3647,3649,0,3795,3863,3774,3776,3668,3736,3647,3649,43,3602,3737,3738,3597,0,3729,3864,3865,3724,3602,3737,3738,3597,43,3737,3727,3724,3738,0,3864,3854,3851,3865,3737,3727,3724,3738,43,3738,3724,3720,3717,0,3865,3851,3847,3844,3738,3724,3720,3717,43,3597,3738,3717,3594,0,3724,3865,3844,3721,3597,3738,3717,3594,43,3614,3613,3739,3740,0,3741,3740,3866,3867,3614,3613,3739,3740,43,3613,3605,3603,3739,0,3740,3732,3730,3866,3613,3605,3603,3739,43,3739,3603,3594,3719,0,3866,3730,3721,3846,3739,3603,3594,3719,43,3740,3739,3719,3723,0,3867,3866,3846,3850,3740,3739,3719,3723,43,3614,3740,3741,3742,0,3741,3867,3868,3869,3614,3740,3741,3742,43,3740,3723,3743,3741,0,3867,3850,3870,3868,3740,3723,3743,3741,43,3741,3743,3744,3745,0,3868,3870,3871,3872,3741,3743,3744,3745,43,3742,3741,3745,3746,0,3869,3868,3872,3873,3742,3741,3745,3746,43,3588,3747,3748,3714,0,3715,3874,3875,3841,3588,3747,3748,3714,43,3747,3744,3743,3748,0,3874,3871,3870,3875,3747,3744,3743,3748,43,3748,3743,3723,3722,0,3875,3870,3850,3849,3748,3743,3723,3722,43,3714,3748,3722,3711,0,3841,3875,3849,3838,3714,3748,3722,3711,43,3746,3745,3749,3750,0,3873,3872,3876,3877,3746,3745,3749,3750,43,3745,3744,3747,3749,0,3872,3871,3874,3876,3745,3744,3747,3749,43,3749,3747,3588,3591,0,3876,3874,3715,3718,3749,3747,3588,3591,43,3750,3749,3591,3593,0,3877,3876,3718,3720,3750,3749,3591,3593,43,3593,3592,3751,3752,0,3720,3719,3878,3879,3593,3592,3751,3752,43,3592,3574,3753,3751,0,3719,3701,3880,3878,3592,3574,3753,3751,43,3751,3753,3754,3755,0,3878,3880,3881,3882,3751,3753,3754,3755,43,3752,3751,3755,3756,0,3879,3878,3882,3883,3752,3751,3755,3756,43,3757,3758,3759,3760,0,3884,3885,3886,3887,3757,3758,3759,3760,43,3758,3761,3762,3759,0,3885,3888,3889,3886,3758,3761,3762,3759,43,3759,3762,3763,3764,0,3886,3889,3890,3891,3759,3762,3763,3764,43,3760,3759,3764,3765,0,3887,3886,3891,3892,3760,3759,3764,3765,43,3766,3767,3768,3769,0,3893,3894,3895,3896,3766,3767,3768,3769,43,3767,3770,3771,3768,0,3894,3897,3898,3895,3767,3770,3771,3768,43,3768,3771,3772,3773,0,3895,3898,3899,3900,3768,3771,3772,3773,43,3769,3768,3773,3757,0,3896,3895,3900,3884,3769,3768,3773,3757,43,3774,3775,3776,3777,0,3901,3902,3903,3904,3774,3775,3776,3777,43,3775,3761,3758,3776,0,3902,3888,3885,3903,3775,3761,3758,3776,43,3776,3758,3757,3773,0,3903,3885,3884,3900,3776,3758,3757,3773,43,3777,3776,3773,3772,0,3904,3903,3900,3899,3777,3776,3773,3772,43,3763,3762,3778,3779,0,3890,3889,3905,3906,3763,3762,3778,3779,43,3762,3761,3775,3778,0,3889,3888,3902,3905,3762,3761,3775,3778,43,3778,3775,3774,3780,0,3905,3902,3901,3907,3778,3775,3774,3780,43,3779,3778,3780,3781,0,3906,3905,3907,3908,3779,3778,3780,3781,43,3781,3780,3782,3783,0,3908,3907,3909,3910,3781,3780,3782,3783,43,3780,3774,3784,3782,0,3907,3901,3911,3909,3780,3774,3784,3782,43,3782,3784,3785,3786,0,3909,3911,3912,3913,3782,3784,3785,3786,43,3783,3782,3786,3228,0,3910,3909,3913,3354,3783,3782,3786,3228,43,3774,3777,3787,3784,0,3901,3904,3914,3911,3774,3777,3787,3784,43,3777,3772,3788,3787,0,3904,3899,3915,3914,3777,3772,3788,3787,43,3787,3788,3789,3790,0,3914,3915,3916,3917,3787,3788,3789,3790,43,3784,3787,3790,3785,0,3911,3914,3917,3912,3784,3787,3790,3785,43,3791,3792,3793,3794,0,3918,3919,3920,3921,3791,3792,3793,3794,43,3792,3795,3796,3793,0,3919,3922,3923,3920,3792,3795,3796,3793,43,3793,3796,3797,3798,0,3920,3923,3924,3925,3793,3796,3797,3798,43,3794,3793,3798,3799,0,3921,3920,3925,3926,3794,3793,3798,3799,43,3797,3800,3801,3798,0,3924,3927,3928,3925,3797,3800,3801,3798,43,3800,3802,3803,3801,0,3927,3929,3930,3928,3800,3802,3803,3801,43,3801,3803,3789,3804,0,3928,3930,3916,3931,3801,3803,3789,3804,43,3798,3801,3804,3799,0,3925,3928,3931,3926,3798,3801,3804,3799,43,3805,3806,3807,3808,0,3932,3933,3934,3935,3805,3806,3807,3808,43,3806,3809,3810,3807,0,3933,3936,3937,3934,3806,3809,3810,3807,43,3807,3810,3766,3811,0,3934,3937,3893,3938,3807,3810,3766,3811,43,3808,3807,3811,3812,0,3935,3934,3938,3939,3808,3807,3811,3812,43,840,3813,3814,878,0,842,3940,3941,880,840,3813,3814,878,43,3813,3805,3808,3814,0,3940,3932,3935,3941,3813,3805,3808,3814,43,3814,3808,3812,3815,0,3941,3935,3939,3942,3814,3808,3812,3815,43,878,3814,3815,879,0,880,3941,3942,881,878,3814,3815,879,43,3791,3794,3816,3817,0,3918,3921,3943,3944,3791,3794,3816,3817,43,3794,3799,3818,3816,0,3921,3926,3945,3943,3794,3799,3818,3816,43,3816,3818,3809,3806,0,3943,3945,3936,3933,3816,3818,3809,3806,43,3817,3816,3806,3805,0,3944,3943,3933,3932,3817,3816,3806,3805,43,3819,3820,3821,3822,0,3946,3947,3948,3949,3819,3820,3821,3822,43,3820,3795,3792,3821,0,3947,3922,3919,3948,3820,3795,3792,3821,43,3821,3792,3791,3817,0,3948,3919,3918,3944,3821,3792,3791,3817,43,3822,3821,3817,3805,0,3949,3948,3944,3932,3822,3821,3817,3805,43,3797,3796,3823,3824,0,3924,3923,3950,3951,3797,3796,3823,3824,43,3796,3795,3820,3823,0,3923,3922,3947,3950,3796,3795,3820,3823,43,3823,3820,3819,3825,0,3950,3947,3946,3952,3823,3820,3819,3825,43,3824,3823,3825,3826,0,3951,3950,3952,3953,3824,3823,3825,3826,43,3827,3828,3829,3830,0,3954,3955,3956,3957,3827,3828,3829,3830,43,3828,3802,3800,3829,0,3955,3929,3927,3956,3828,3802,3800,3829,43,3829,3800,3797,3824,0,3956,3927,3924,3951,3829,3800,3797,3824,43,3830,3829,3824,3826,0,3957,3956,3951,3953,3830,3829,3824,3826,43,3228,3786,3831,3229,0,3354,3913,3958,3355,3228,3786,3831,3229,43,3786,3785,3832,3831,0,3913,3912,3959,3958,3786,3785,3832,3831,43,3831,3832,3833,3834,0,3958,3959,3960,3961,3831,3832,3833,3834,43,3229,3831,3834,3230,0,3355,3958,3961,3356,3229,3831,3834,3230,43,3833,3835,3836,3837,0,3960,3962,3963,3964,3833,3835,3836,3837,43,3835,3838,3839,3836,0,3962,3965,3966,3963,3835,3838,3839,3836,43,3836,3839,3840,3841,0,3963,3966,3967,3968,3836,3839,3840,3841,43,3837,3836,3841,3842,0,3964,3963,3968,3969,3837,3836,3841,3842,43,3838,3835,3843,3844,0,3965,3962,3970,3971,3838,3835,3843,3844,43,3835,3833,3832,3843,0,3962,3960,3959,3970,3835,3833,3832,3843,43,3843,3832,3785,3790,0,3970,3959,3912,3917,3843,3832,3785,3790,43,3844,3843,3790,3789,0,3971,3970,3917,3916,3844,3843,3790,3789,43,3230,3834,3845,3846,0,3356,3961,3972,3973,3230,3834,3845,3846,43,3834,3833,3837,3845,0,3961,3960,3964,3972,3834,3833,3837,3845,43,3845,3837,3842,3847,0,3972,3964,3969,3974,3845,3837,3842,3847,43,3846,3845,3847,3848,0,3973,3972,3974,3975,3846,3845,3847,3848,43,3224,3231,3849,3850,0,3350,3357,3976,3977,3224,3231,3849,3850,43,3231,3230,3846,3849,0,3357,3356,3973,3976,3231,3230,3846,3849,43,3849,3846,3848,3851,0,3976,3973,3975,3978,3849,3846,3848,3851,43,3850,3849,3851,3852,0,3977,3976,3978,3979,3850,3849,3851,3852,43,3212,3225,3853,3213,0,3338,3351,3980,3339,3212,3225,3853,3213,43,3225,3224,3850,3853,0,3351,3350,3977,3980,3225,3224,3850,3853,43,3853,3850,3852,3854,0,3980,3977,3979,3981,3853,3850,3852,3854,43,3213,3853,3854,3136,0,3339,3980,3981,3262,3213,3853,3854,3136,43,3852,3855,3856,3854,0,3979,3982,3983,3981,3852,3855,3856,3854,43,3855,3165,3164,3856,0,3982,3291,3290,3983,3855,3165,3164,3856,43,3856,3164,3140,3137,0,3983,3290,3266,3263,3856,3164,3140,3137,43,3854,3856,3137,3136,0,3981,3983,3263,3262,3854,3856,3137,3136,43,3857,3858,3859,3860,0,3984,3985,3986,3987,3857,3858,3859,3860,43,3858,3165,3855,3859,0,3985,3291,3982,3986,3858,3165,3855,3859,43,3859,3855,3852,3851,0,3986,3982,3979,3978,3859,3855,3852,3851,43,3860,3859,3851,3848,0,3987,3986,3978,3975,3860,3859,3851,3848,43,3259,3258,3861,3862,0,3385,3384,3988,3989,3259,3258,3861,3862,43,3258,3257,3863,3861,0,3384,3383,3990,3988,3258,3257,3863,3861,43,3861,3863,3864,3865,0,3988,3990,3991,3992,3861,3863,3864,3865,43,3862,3861,3865,3866,0,3989,3988,3992,3993,3862,3861,3865,3866,43,3867,3868,3869,3870,0,3994,3995,3996,3997,3867,3868,3869,3870,43,3868,3160,3162,3869,0,3995,3286,3288,3996,3868,3160,3162,3869,43,3869,3162,3165,3858,0,3996,3288,3291,3985,3869,3162,3165,3858,43,3870,3869,3858,3857,0,3997,3996,3985,3984,3870,3869,3858,3857,43,3237,3475,3871,3872,0,3363,3602,3998,3999,3237,3475,3871,3872,43,3475,3153,3156,3871,0,3602,3279,3282,3998,3475,3153,3156,3871,43,3871,3156,3160,3868,0,3998,3282,3286,3995,3871,3156,3160,3868,43,3872,3871,3868,3867,0,3999,3998,3995,3994,3872,3871,3868,3867,43,3232,3235,3873,3256,0,3358,3361,4000,3382,3232,3235,3873,3256,43,3235,3237,3872,3873,0,3361,3363,3999,4000,3235,3237,3872,3873,43,3873,3872,3867,3874,0,4000,3999,3994,4001,3873,3872,3867,3874,43,3256,3873,3874,3257,0,3382,4000,4001,3383,3256,3873,3874,3257,43,3257,3874,3875,3863,0,3383,4001,4002,3990,3257,3874,3875,3863,43,3874,3867,3870,3875,0,4001,3994,3997,4002,3874,3867,3870,3875,43,3875,3870,3857,3876,0,4002,3997,3984,4003,3875,3870,3857,3876,43,3863,3875,3876,3864,0,3990,4002,4003,3991,3863,3875,3876,3864,43,3864,3876,3877,3878,0,3991,4003,4004,4005,3864,3876,3877,3878,43,3876,3857,3860,3877,0,4003,3984,3987,4004,3876,3857,3860,3877,43,3877,3860,3848,3847,0,4004,3987,3975,3974,3877,3860,3848,3847,43,3878,3877,3847,3842,0,4005,4004,3974,3969,3878,3877,3847,3842,43,3840,3879,3880,3841,0,3967,4006,4007,3968,3840,3879,3880,3841,43,3879,3866,3865,3880,0,4006,3993,3992,4007,3879,3866,3865,3880,43,3880,3865,3864,3878,0,4007,3992,3991,4005,3880,3865,3864,3878,43,3841,3880,3878,3842,0,3968,4007,4005,3969,3841,3880,3878,3842,43,3881,3882,3883,3884,0,4008,4009,4010,4011,3881,3882,3883,3884,43,3882,3885,3886,3883,0,4009,4012,4013,4010,3882,3885,3886,3883,43,3883,3886,3549,3552,0,4010,4013,3676,3679,3883,3886,3549,3552,43,3884,3883,3552,3554,0,4011,4010,3679,3681,3884,3883,3552,3554,43,3887,3888,3889,3890,0,4014,4015,4016,4017,3887,3888,3889,3890,43,3888,3827,3830,3889,0,4015,3954,3957,4016,3888,3827,3830,3889,43,3889,3830,3826,3891,0,4016,3957,3953,4018,3889,3830,3826,3891,43,3890,3889,3891,3892,0,4017,4016,4018,4019,3890,3889,3891,3892,43,3574,3572,3893,3894,0,3701,3699,4020,4021,3574,3572,3893,3894,43,3572,3536,3895,3893,0,3699,3663,4022,4020,3572,3536,3895,3893,43,3893,3895,3896,3897,0,4020,4022,4023,4024,3893,3895,3896,3897,43,3894,3893,3897,3898,0,4021,4020,4024,4025,3894,3893,3897,3898,43,3545,3550,3899,3900,0,3672,3677,4026,4027,3545,3550,3899,3900,43,3550,3549,3886,3899,0,3677,3676,4013,4026,3550,3549,3886,3899,43,3899,3886,3885,3901,0,4026,4013,4012,4028,3899,3886,3885,3901,43,3900,3899,3901,3896,0,4027,4026,4028,4023,3900,3899,3901,3896,43,3536,3535,3902,3895,0,3663,3662,4029,4022,3536,3535,3902,3895,43,3535,3534,3546,3902,0,3662,3661,3673,4029,3535,3534,3546,3902,43,3902,3546,3545,3900,0,4029,3673,3672,4027,3902,3546,3545,3900,43,3895,3902,3900,3896,0,4022,4029,4027,4023,3895,3902,3900,3896,43,3252,3255,3903,3472,0,3378,3381,4030,3599,3252,3255,3903,3472,43,3255,3259,3904,3903,0,3381,3385,4031,4030,3255,3259,3904,3903,43,3903,3904,3905,3906,0,4030,4031,4032,4033,3903,3904,3905,3906,43,3472,3903,3906,3277,0,3599,4030,4033,3403,3472,3903,3906,3277,43,3905,3907,3908,3906,0,4032,4034,4035,4033,3905,3907,3908,3906,43,3907,3881,3884,3908,0,4034,4008,4011,4035,3907,3881,3884,3908,43,3908,3884,3554,3556,0,4035,4011,3681,3683,3908,3884,3554,3556,43,3906,3908,3556,3277,0,4033,4035,3683,3403,3906,3908,3556,3277,43,3909,3910,3911,3912,0,4036,4037,4038,4039,3909,3910,3911,3912,43,3910,3905,3904,3911,0,4037,4032,4031,4038,3910,3905,3904,3911,43,3911,3904,3259,3862,0,4038,4031,3385,3989,3911,3904,3259,3862,43,3912,3911,3862,3866,0,4039,4038,3989,3993,3912,3911,3862,3866,43,3885,3882,3913,3914,0,4012,4009,4040,4041,3885,3882,3913,3914,43,3882,3881,3907,3913,0,4009,4008,4034,4040,3882,3881,3907,3913,43,3913,3907,3905,3910,0,4040,4034,4032,4037,3913,3907,3905,3910,43,3914,3913,3910,3909,0,4041,4040,4037,4036,3914,3913,3910,3909,43,3909,3915,3916,3914,0,4036,4042,4043,4041,3909,3915,3916,3914,43,3915,3887,3890,3916,0,4042,4014,4017,4043,3915,3887,3890,3916,43,3916,3890,3892,3917,0,4043,4017,4019,4044,3916,3890,3892,3917,43,3914,3916,3917,3885,0,4041,4043,4044,4012,3914,3916,3917,3885,43,3887,3915,3918,3919,0,4014,4042,4045,4046,3887,3915,3918,3919,43,3915,3909,3912,3918,0,4042,4036,4039,4045,3915,3909,3912,3918,43,3918,3912,3866,3879,0,4045,4039,3993,4006,3918,3912,3866,3879,43,3919,3918,3879,3840,0,4046,4045,4006,3967,3919,3918,3879,3840,43,3838,3920,3921,3839,0,3965,4047,4048,3966,3838,3920,3921,3839,43,3920,3827,3888,3921,0,4047,3954,4015,4048,3920,3827,3888,3921,43,3921,3888,3887,3919,0,4048,4015,4014,4046,3921,3888,3887,3919,43,3839,3921,3919,3840,0,3966,4048,4046,3967,3839,3921,3919,3840,43,3789,3803,3922,3844,0,3916,3930,4049,3971,3789,3803,3922,3844,43,3803,3802,3828,3922,0,3930,3929,3955,4049,3803,3802,3828,3922,43,3922,3828,3827,3920,0,4049,3955,3954,4047,3922,3828,3827,3920,43,3844,3922,3920,3838,0,3971,4049,4047,3965,3844,3922,3920,3838,43,3772,3771,3923,3788,0,3899,3898,4050,3915,3772,3771,3923,3788,43,3771,3770,3924,3923,0,3898,3897,4051,4050,3771,3770,3924,3923,43,3923,3924,3799,3804,0,4050,4051,3926,3931,3923,3924,3799,3804,43,3788,3923,3804,3789,0,3915,4050,3931,3916,3788,3923,3804,3789,43,3766,3810,3925,3767,0,3893,3937,4052,3894,3766,3810,3925,3767,43,3810,3809,3818,3925,0,3937,3936,3945,4052,3810,3809,3818,3925,43,3925,3818,3799,3924,0,4052,3945,3926,4051,3925,3818,3799,3924,43,3767,3925,3924,3770,0,3894,4052,4051,3897,3767,3925,3924,3770,43,3766,3769,3926,3811,0,3893,3896,4053,3938,3766,3769,3926,3811,43,3769,3757,3760,3926,0,3896,3884,3887,4053,3769,3757,3760,3926,43,3926,3760,3765,3927,0,4053,3887,3892,4054,3926,3760,3765,3927,43,3811,3926,3927,3812,0,3938,4053,4054,3939,3811,3926,3927,3812,43,3812,3927,3928,3815,0,3939,4054,4055,3942,3812,3927,3928,3815,43,3927,3765,3929,3928,0,4054,3892,4056,4055,3927,3765,3929,3928,43,3928,3929,884,887,0,4055,4056,886,889,3928,3929,884,887,43,3815,3928,887,879,0,3942,4055,889,881,3815,3928,887,879,43,3930,3931,3932,3933,0,4057,4058,4059,4060,3930,3931,3932,3933,43,3931,3934,3935,3932,0,4058,4061,4062,4059,3931,3934,3935,3932,43,3932,3935,3936,3937,0,4059,4062,4063,4064,3932,3935,3936,3937,43,3933,3932,3937,3938,0,4060,4059,4064,4065,3933,3932,3937,3938,43,3765,3764,3939,3940,0,3892,3891,4066,4067,3765,3764,3939,3940,43,3764,3763,3941,3939,0,3891,3890,4068,4066,3764,3763,3941,3939,43,3939,3941,3942,3943,0,4066,4068,4069,4070,3939,3941,3942,3943,43,3940,3939,3943,3930,0,4067,4066,4070,4057,3940,3939,3943,3930,43,884,3929,3944,899,0,886,4056,4071,901,884,3929,3944,899,43,3929,3765,3940,3944,0,4056,3892,4067,4071,3929,3765,3940,3944,43,3944,3940,3930,3945,0,4071,4067,4057,4072,3944,3940,3930,3945,43,899,3944,3945,900,0,901,4071,4072,902,899,3944,3945,900,43,900,3945,3946,904,0,902,4072,4073,906,900,3945,3946,904,43,3945,3930,3933,3946,0,4072,4057,4060,4073,3945,3930,3933,3946,43,3946,3933,3938,3947,0,4073,4060,4065,4074,3946,3933,3938,3947,43,904,3946,3947,905,0,906,4073,4074,907,904,3946,3947,905,43,3934,3948,3949,3950,0,4061,4075,4076,4077,3934,3948,3949,3950,43,3948,3951,3952,3949,0,4075,4078,4079,4076,3948,3951,3952,3949,43,3949,3952,3953,3954,0,4076,4079,4080,4081,3949,3952,3953,3954,43,3950,3949,3954,3955,0,4077,4076,4081,4082,3950,3949,3954,3955,43,3953,3956,3957,3958,0,4080,4083,4084,4085,3953,3956,3957,3958,43,3956,3959,3960,3957,0,4083,4086,4087,4084,3956,3959,3960,3957,43,3957,3960,3222,3219,0,4084,4087,3348,3345,3957,3960,3222,3219,43,3958,3957,3219,3218,0,4085,4084,3345,3344,3958,3957,3219,3218,43,3959,3961,3962,3960,0,4086,4088,4089,4087,3959,3961,3962,3960,43,3961,3781,3783,3962,0,4088,3908,3910,4089,3961,3781,3783,3962,43,3962,3783,3228,3226,0,4089,3910,3354,3352,3962,3783,3228,3226,43,3960,3962,3226,3222,0,4087,4089,3352,3348,3960,3962,3226,3222,43,3781,3961,3963,3779,0,3908,4088,4090,3906,3781,3961,3963,3779,43,3961,3959,3964,3963,0,4088,4086,4091,4090,3961,3959,3964,3963,43,3963,3964,3942,3941,0,4090,4091,4069,4068,3963,3964,3942,3941,43,3779,3963,3941,3763,0,3906,4090,4068,3890,3779,3963,3941,3763,43,3953,3952,3965,3956,0,4080,4079,4092,4083,3953,3952,3965,3956,43,3952,3951,3966,3965,0,4079,4078,4093,4092,3952,3951,3966,3965,43,3965,3966,3942,3964,0,4092,4093,4069,4091,3965,3966,3942,3964,43,3956,3965,3964,3959,0,4083,4092,4091,4086,3956,3965,3964,3959,43,3942,3966,3967,3943,0,4069,4093,4094,4070,3942,3966,3967,3943,43,3966,3951,3948,3967,0,4093,4078,4075,4094,3966,3951,3948,3967,43,3967,3948,3934,3931,0,4094,4075,4061,4058,3967,3948,3934,3931,43,3943,3967,3931,3930,0,4070,4094,4058,4057,3943,3967,3931,3930,43,3968,3969,3970,3971,0,4095,4096,4097,4098,3968,3969,3970,3971,43,3969,3972,3973,3970,0,4096,4099,4100,4097,3969,3972,3973,3970,43,3970,3973,3936,3974,0,4097,4100,4063,4101,3970,3973,3936,3974,43,3971,3970,3974,3975,0,4098,4097,4101,4102,3971,3970,3974,3975,43,3976,3977,3978,3979,0,4103,4104,4105,4106,3976,3977,3978,3979,43,3977,3218,3221,3978,0,4104,3344,3347,4105,3977,3218,3221,3978,43,3978,3221,3212,3215,0,4105,3347,3338,3341,3978,3221,3212,3215,43,3979,3978,3215,3217,0,4106,4105,3341,3343,3979,3978,3215,3217,43,3955,3954,3980,3981,0,4082,4081,4107,4108,3955,3954,3980,3981,43,3954,3953,3958,3980,0,4081,4080,4085,4107,3954,3953,3958,3980,43,3980,3958,3218,3977,0,4107,4085,3344,4104,3980,3958,3218,3977,43,3981,3980,3977,3976,0,4108,4107,4104,4103,3981,3980,3977,3976,43,3270,3982,3983,3271,0,3396,4109,4110,3397,3270,3982,3983,3271,43,3982,3984,3985,3983,0,4109,4111,4112,4110,3982,3984,3985,3983,43,3983,3985,3986,3987,0,4110,4112,4113,4114,3983,3985,3986,3987,43,3271,3983,3987,3242,0,3397,4110,4114,3368,3271,3983,3987,3242,43,3242,3987,3988,3243,0,3368,4114,4115,3369,3242,3987,3988,3243,43,3987,3986,3989,3988,0,4114,4113,4116,4115,3987,3986,3989,3988,43,3988,3989,3173,3175,0,4115,4116,3299,3301,3988,3989,3173,3175,43,3243,3988,3175,3179,0,3369,4115,3301,3305,3243,3988,3175,3179,43,3217,3216,3990,3991,0,3343,3342,4117,4118,3217,3216,3990,3991,43,3216,3144,3171,3990,0,3342,3270,3297,4117,3216,3144,3171,3990,43,3990,3171,3173,3989,0,4117,3297,3299,4116,3990,3171,3173,3989,43,3991,3990,3989,3986,0,4118,4117,4116,4113,3991,3990,3989,3986,43,3984,3992,3993,3985,0,4111,4119,4120,4112,3984,3992,3993,3985,43,3992,3976,3979,3993,0,4119,4103,4106,4120,3992,3976,3979,3993,43,3993,3979,3217,3991,0,4120,4106,3343,4118,3993,3979,3217,3991,43,3985,3993,3991,3986,0,4112,4120,4118,4113,3985,3993,3991,3986,43,3968,3971,3994,3995,0,4095,4098,4121,4122,3968,3971,3994,3995,43,3971,3975,3996,3994,0,4098,4102,4123,4121,3971,3975,3996,3994,43,3994,3996,3984,3982,0,4121,4123,4111,4109,3994,3996,3984,3982,43,3995,3994,3982,3270,0,4122,4121,4109,3396,3995,3994,3982,3270,43,3975,3997,3998,3996,0,4102,4124,4125,4123,3975,3997,3998,3996,43,3997,3955,3981,3998,0,4124,4082,4108,4125,3997,3955,3981,3998,43,3998,3981,3976,3992,0,4125,4108,4103,4119,3998,3981,3976,3992,43,3996,3998,3992,3984,0,4123,4125,4119,4111,3996,3998,3992,3984,43,3955,3997,3999,3950,0,4082,4124,4126,4077,3955,3997,3999,3950,43,3997,3975,3974,3999,0,4124,4102,4101,4126,3997,3975,3974,3999,43,3999,3974,3936,3935,0,4126,4101,4063,4062,3999,3974,3936,3935,43,3950,3999,3935,3934,0,4077,4126,4062,4061,3950,3999,3935,3934,43,3936,3973,4000,3937,0,4063,4100,4127,4064,3936,3973,4000,3937,43,3973,3972,4001,4000,0,4100,4099,4128,4127,3973,3972,4001,4000,43,4000,4001,4002,4003,0,4127,4128,4129,4130,4000,4001,4002,4003,43,3937,4000,4003,3938,0,4064,4127,4130,4065,3937,4000,4003,3938,43,4004,4005,4006,4007,0,4131,4132,4133,4134,4004,4005,4006,4007,43,4005,3938,4003,4006,0,4132,4065,4130,4133,4005,3938,4003,4006,43,4007,4006,4003,4002,0,4134,4133,4130,4129,4007,4006,4003,4002,43,3106,3121,4008,4009,0,3232,3247,4135,4136,3106,3121,4008,4009,43,3121,3118,4010,4008,0,3247,3244,4137,4135,3121,3118,4010,4008,43,4008,4010,3614,3742,0,4135,4137,3741,3869,4008,4010,3614,3742,43,4009,4008,3742,3746,0,4136,4135,3869,3873,4009,4008,3742,3746,43,3118,3117,4011,4010,0,3244,3243,4138,4137,3118,3117,4011,4010,43,3117,3116,4012,4011,0,3243,3242,4139,4138,3117,3116,4012,4011,43,4011,4012,3607,3610,0,4138,4139,3734,3737,4011,4012,3607,3610,43,4010,4011,3610,3614,0,4137,4138,3737,3741,4010,4011,3610,3614,43,3116,4013,4014,4012,0,3242,4140,4141,4139,3116,4013,4014,4012,43,4013,3356,3359,4014,0,4140,3483,3486,4141,4013,3356,3359,4014,43,4014,3359,3364,3626,0,4141,3486,3491,3753,4014,3359,3364,3626,43,4012,4014,3626,3607,0,4139,4141,3753,3734,4012,4014,3626,3607,43,3114,3283,4015,3115,0,3240,3409,4142,3241,3114,3283,4015,3115,43,3283,3282,3367,4015,0,3409,3408,3494,4142,3283,3282,3367,4015,43,4015,3367,3356,4013,0,4142,3494,3483,4140,4015,3367,3356,4013,43,3115,4015,4013,3116,0,3241,4142,4140,3242,3115,4015,4013,3116,43,4002,4016,4017,4018,0,4129,4143,4144,4145,4002,4016,4017,4018,43,4016,4019,4020,4017,0,4143,4146,4147,4144,4016,4019,4020,4017,43,4017,4020,4021,4022,0,4144,4147,4148,4149,4017,4020,4021,4022,43,4018,4017,4022,4023,0,4145,4144,4149,4150,4018,4017,4022,4023,43,3268,4024,4025,3269,0,3394,4151,4152,3395,3268,4024,4025,3269,43,4024,4019,4026,4025,0,4151,4146,4153,4152,4024,4019,4026,4025,43,4025,4026,3968,3995,0,4152,4153,4095,4122,4025,4026,3968,3995,43,3269,4025,3995,3270,0,3395,4152,4122,3396,3269,4025,3995,3270,43,3972,3969,4027,4001,0,4099,4096,4154,4128,3972,3969,4027,4001,43,3969,3968,4026,4027,0,4096,4095,4153,4154,3969,3968,4026,4027,43,4027,4026,4019,4016,0,4154,4153,4146,4143,4027,4026,4019,4016,43,4001,4027,4016,4002,0,4128,4154,4143,4129,4001,4027,4016,4002,43,3373,4028,4029,3382,0,3500,4155,4156,3509,3373,4028,4029,3382,43,4028,4030,4031,4029,0,4155,4157,4158,4156,4028,4030,4031,4029,43,4029,4031,3268,3266,0,4156,4158,3394,3392,4029,4031,3268,3266,43,3382,4029,3266,3238,0,3509,4156,3392,3364,3382,4029,3266,3238,43,4030,4032,4033,4031,0,4157,4159,4160,4158,4030,4032,4033,4031,43,4032,4021,4020,4033,0,4159,4148,4147,4160,4032,4021,4020,4033,43,4033,4020,4019,4024,0,4160,4147,4146,4151,4033,4020,4019,4024,43,4031,4033,4024,3268,0,4158,4160,4151,3394,4031,4033,4024,3268,43,4023,4022,4034,4035,0,4150,4149,4161,4162,4023,4022,4034,4035,43,4022,4021,4036,4034,0,4149,4148,4163,4161,4022,4021,4036,4034,43,4034,4036,3102,4037,0,4161,4163,3228,4164,4034,4036,3102,4037,43,4035,4034,4037,4004,0,4162,4161,4164,4131,4035,4034,4037,4004,43,3746,3750,4038,4039,0,3873,3877,4165,4166,3746,3750,4038,4039,43,3750,3593,3752,4038,0,3877,3720,3879,4165,3750,3593,3752,4038,43,4038,3752,3756,4040,0,4165,3879,3883,4167,4038,3752,3756,4040,43,4039,4038,4040,4041,0,4166,4165,4167,4168,4039,4038,4040,4041,43,3108,3107,4042,4043,0,3234,3233,4169,4170,3108,3107,4042,4043,43,3107,3106,4009,4042,0,3233,3232,4136,4169,3107,3106,4009,4042,43,4042,4009,3746,4039,0,4169,4136,3873,4166,4042,4009,3746,4039,43,4043,4042,4039,4041,0,4170,4169,4166,4168,4043,4042,4039,4041,43,3892,3891,4044,4045,0,4019,4018,4171,4172,3892,3891,4044,4045,43,3891,3826,3825,4044,0,4018,3953,3952,4171,3891,3826,3825,4044,43,4044,3825,3819,4046,0,4171,3952,3946,4173,4044,3825,3819,4046,43,4045,4044,4046,3898,0,4172,4171,4173,4025,4045,4044,4046,3898,43,3898,3897,4047,4045,0,4025,4024,4174,4172,3898,3897,4047,4045,43,3897,3896,3901,4047,0,4024,4023,4028,4174,3897,3896,3901,4047,43,4047,3901,3885,3917,0,4174,4028,4012,4044,4047,3901,3885,3917,43,4045,4047,3917,3892,0,4172,4174,4044,4019,4045,4047,3917,3892,43,3574,3894,4048,3753,0,3701,4021,4175,3880,3574,3894,4048,3753,43,3894,3898,4049,4048,0,4021,4025,4176,4175,3894,3898,4049,4048,43,4048,4049,836,4050,0,4175,4176,838,4177,4048,4049,836,4050,43,3753,4048,4050,3754,0,3880,4175,4177,3881,3753,4048,4050,3754,43,836,4049,4051,837,0,838,4176,4178,839,836,4049,4051,837,43,4049,3898,4046,4051,0,4176,4025,4173,4178,4049,3898,4046,4051,43,4051,4046,3819,4052,0,4178,4173,3946,4179,4051,4046,3819,4052,43,837,4051,4052,840,0,839,4178,4179,842,837,4051,4052,840,43,3819,3822,4053,4052,0,3946,3949,4180,4179,3819,3822,4053,4052,43,3822,3805,3813,4053,0,3949,3932,3940,4180,3822,3805,3813,4053,43,4052,4053,3813,840,0,4179,4180,3940,842,4052,4053,3813,840,43,1494,4054,4055,1495,0,1528,4181,4182,1529,1494,4054,4055,1495,43,4054,4004,4037,4055,0,4181,4131,4164,4182,4054,4004,4037,4055,43,4055,4037,3102,3105,0,4182,4164,3228,3231,4055,4037,3102,3105,43,1495,4055,3105,1496,0,1529,4182,3231,1530,1495,4055,3105,1496,43,3938,4005,4056,3947,0,4065,4132,4183,4074,3938,4005,4056,3947,43,4005,4004,4054,4056,0,4132,4131,4181,4183,4005,4004,4054,4056,43,4056,4054,1494,1498,0,4183,4181,1528,1532,4056,4054,1494,1498,43,3947,4056,1498,905,0,4074,4183,1532,907,3947,4056,1498,905,43,4004,4007,4057,4035,0,4131,4134,4184,4162,4004,4007,4057,4035,43,4007,4002,4018,4057,0,4134,4129,4145,4184,4007,4002,4018,4057,43,4035,4057,4018,4023,0,4162,4184,4145,4150,4035,4057,4018,4023,43,3373,3372,4058,4028,0,3500,3499,4185,4155,3373,3372,4058,4028,43,3372,3307,3305,4058,0,3499,3433,3431,4185,3372,3307,3305,4058,43,4058,3305,3110,4059,0,4185,3431,3236,4186,4058,3305,3110,4059,43,4028,4058,4059,4030,0,4155,4185,4186,4157,4028,4058,4059,4030,43,3102,4060,4061,3119,0,3228,4187,4188,3245,3102,4060,4061,3119,43,4060,4030,4059,4061,0,4187,4157,4186,4188,4060,4030,4059,4061,43,3119,4061,4059,3110,0,3245,4188,4186,3236,3119,4061,4059,3110,43,4030,4060,4062,4032,0,4157,4187,4189,4159,4030,4060,4062,4032,43,4060,3102,4036,4062,0,4187,3228,4163,4189,4060,3102,4036,4062,43,4032,4062,4036,4021,0,4159,4189,4163,4148,4032,4062,4036,4021,43,4063,4064,4065,4066,0,4190,4191,4192,4193,4063,4064,4065,4066,43,4064,4067,4068,4065,0,4191,4194,4195,4192,4064,4067,4068,4065,43,4065,4068,4069,4070,0,4192,4195,4196,4197,4065,4068,4069,4070,43,4066,4065,4070,4071,0,4193,4192,4197,4198,4066,4065,4070,4071,43,4072,4073,4074,4075,0,4199,4200,4201,4202,4072,4073,4074,4075,43,4073,4076,4077,4074,0,4200,4203,4204,4201,4073,4076,4077,4074,43,4074,4077,4078,4079,0,4201,4204,4205,4206,4074,4077,4078,4079,43,4075,4074,4079,4080,0,4202,4201,4206,4207,4075,4074,4079,4080,43,4081,4082,4083,4084,0,4208,4209,4210,4211,4081,4082,4083,4084,43,4082,4076,4085,4083,0,4209,4203,4212,4210,4082,4076,4085,4083,43,4083,4085,4086,4087,0,4210,4212,4213,4214,4083,4085,4086,4087,43,4084,4083,4087,4088,0,4211,4210,4214,4215,4084,4083,4087,4088,43,4072,4089,4090,4073,0,4199,4216,4217,4200,4072,4089,4090,4073,43,4089,4091,4092,4090,0,4216,4218,4219,4217,4089,4091,4092,4090,43,4090,4092,4086,4085,0,4217,4219,4213,4212,4090,4092,4086,4085,43,4073,4090,4085,4076,0,4200,4217,4212,4203,4073,4090,4085,4076,43,4086,4093,4094,4087,0,4213,4220,4221,4214,4086,4093,4094,4087,43,4093,4095,4096,4094,0,4220,4222,4223,4221,4093,4095,4096,4094,43,4094,4096,4097,4098,0,4221,4223,4224,4225,4094,4096,4097,4098,43,4087,4094,4098,4088,0,4214,4221,4225,4215,4087,4094,4098,4088,43,4091,4099,4100,4092,0,4218,4226,4227,4219,4091,4099,4100,4092,43,4099,4101,4102,4100,0,4226,4228,4229,4227,4099,4101,4102,4100,43,4100,4102,4095,4093,0,4227,4229,4222,4220,4100,4102,4095,4093,43,4092,4100,4093,4086,0,4219,4227,4220,4213,4092,4100,4093,4086,43,4103,4104,4105,4106,0,4230,4231,4232,4233,4103,4104,4105,4106,43,4104,4101,4099,4105,0,4231,4228,4226,4232,4104,4101,4099,4105,43,4106,4105,4099,4091,0,4233,4232,4226,4218,4106,4105,4099,4091,43,4097,4096,4107,4108,0,4224,4223,4234,4235,4097,4096,4107,4108,43,4096,4095,4109,4107,0,4223,4222,4236,4234,4096,4095,4109,4107,43,4107,4109,4110,4111,0,4234,4236,4237,4238,4107,4109,4110,4111,43,4108,4107,4111,4112,0,4235,4234,4238,4239,4108,4107,4111,4112,43,4113,4114,4115,4116,0,4240,4241,4242,4243,4113,4114,4115,4116,43,4114,4117,4118,4115,0,4241,4244,4245,4242,4114,4117,4118,4115,43,4115,4118,4119,4120,0,4242,4245,4246,4247,4115,4118,4119,4120,43,4116,4115,4120,4121,0,4243,4242,4247,4248,4116,4115,4120,4121,43,4122,4123,4124,4125,0,4249,4250,4251,4252,4122,4123,4124,4125,43,4123,4117,4114,4124,0,4250,4244,4241,4251,4123,4117,4114,4124,43,4124,4114,4113,4126,0,4251,4241,4240,4253,4124,4114,4113,4126,43,4125,4124,4126,4127,0,4252,4251,4253,4254,4125,4124,4126,4127,43,4113,4116,4128,4129,0,4240,4243,4255,4256,4113,4116,4128,4129,43,4116,4121,4130,4128,0,4243,4248,4257,4255,4116,4121,4130,4128,43,4128,4130,4071,4131,0,4255,4257,4198,4258,4128,4130,4071,4131,43,4129,4128,4131,4132,0,4256,4255,4258,4259,4129,4128,4131,4132,43,4071,4070,4133,4131,0,4198,4197,4260,4258,4071,4070,4133,4131,43,4070,4069,4134,4133,0,4197,4196,4261,4260,4070,4069,4134,4133,43,4133,4134,4135,4136,0,4260,4261,4262,4263,4133,4134,4135,4136,43,4131,4133,4136,4132,0,4258,4260,4263,4259,4131,4133,4136,4132,43,4135,4134,4137,4138,0,4262,4261,4264,4265,4135,4134,4137,4138,43,4134,4069,4139,4137,0,4261,4196,4266,4264,4134,4069,4139,4137,43,4137,4139,4081,4084,0,4264,4266,4208,4211,4137,4139,4081,4084,43,4138,4137,4084,4088,0,4265,4264,4211,4215,4138,4137,4084,4088,43,4140,4141,4142,4143,0,4267,4268,4269,4270,4140,4141,4142,4143,43,4141,4135,4138,4142,0,4268,4262,4265,4269,4141,4135,4138,4142,43,4142,4138,4088,4098,0,4269,4265,4215,4225,4142,4138,4088,4098,43,4143,4142,4098,4097,0,4270,4269,4225,4224,4143,4142,4098,4097,43,4132,4136,4144,4145,0,4259,4263,4271,4272,4132,4136,4144,4145,43,4136,4135,4141,4144,0,4263,4262,4268,4271,4136,4135,4141,4144,43,4144,4141,4140,4146,0,4271,4268,4267,4273,4144,4141,4140,4146,43,4145,4144,4146,4147,0,4272,4271,4273,4274,4145,4144,4146,4147,43,4113,4129,4148,4126,0,4240,4256,4275,4253,4113,4129,4148,4126,43,4129,4132,4145,4148,0,4256,4259,4272,4275,4129,4132,4145,4148,43,4148,4145,4147,4149,0,4275,4272,4274,4276,4148,4145,4147,4149,43,4126,4148,4149,4127,0,4253,4275,4276,4254,4126,4148,4149,4127,43,4122,4125,4150,4151,0,4249,4252,4277,4278,4122,4125,4150,4151,43,4125,4127,4152,4150,0,4252,4254,4279,4277,4125,4127,4152,4150,43,4150,4152,4153,4154,0,4277,4279,4280,4281,4150,4152,4153,4154,43,4151,4150,4154,4155,0,4278,4277,4281,4282,4151,4150,4154,4155,43,4127,4149,4156,4152,0,4254,4276,4283,4279,4127,4149,4156,4152,43,4149,4147,4157,4156,0,4276,4274,4284,4283,4149,4147,4157,4156,43,4156,4157,4158,4159,0,4283,4284,4285,4286,4156,4157,4158,4159,43,4152,4156,4159,4153,0,4279,4283,4286,4280,4152,4156,4159,4153,43,4147,4146,4160,4157,0,4274,4273,4287,4284,4147,4146,4160,4157,43,4146,4140,4161,4160,0,4273,4267,4288,4287,4146,4140,4161,4160,43,4160,4161,4162,4163,0,4287,4288,4289,4290,4160,4161,4162,4163,43,4157,4160,4163,4158,0,4284,4287,4290,4285,4157,4160,4163,4158,43,4140,4143,4164,4161,0,4267,4270,4291,4288,4140,4143,4164,4161,43,4143,4097,4108,4164,0,4270,4224,4235,4291,4143,4097,4108,4164,43,4164,4108,4112,4165,0,4291,4235,4239,4292,4164,4108,4112,4165,43,4161,4164,4165,4162,0,4288,4291,4292,4289,4161,4164,4165,4162,43,4081,4166,4167,4082,0,4208,4293,4294,4209,4081,4166,4167,4082,43,4166,4168,4169,4167,0,4293,4295,4296,4294,4166,4168,4169,4167,43,4167,4169,4078,4077,0,4294,4296,4205,4204,4167,4169,4078,4077,43,4082,4167,4077,4076,0,4209,4294,4204,4203,4082,4167,4077,4076,43,4069,4068,4170,4139,0,4196,4195,4297,4266,4069,4068,4170,4139,43,4068,4067,4171,4170,0,4195,4194,4298,4297,4068,4067,4171,4170,43,4170,4171,4168,4166,0,4297,4298,4295,4293,4170,4171,4168,4166,43,4139,4170,4166,4081,0,4266,4297,4293,4208,4139,4170,4166,4081,43,4063,4066,4172,4173,0,4190,4193,4299,4300,4063,4066,4172,4173,43,4066,4071,4130,4172,0,4193,4198,4257,4299,4066,4071,4130,4172,43,4172,4130,4121,4174,0,4299,4257,4248,4301,4172,4130,4121,4174,43,4173,4172,4174,4175,0,4300,4299,4301,4302,4173,4172,4174,4175,43,4175,4174,4176,4177,0,4302,4301,4303,4304,4175,4174,4176,4177,43,4174,4121,4120,4176,0,4301,4248,4247,4303,4174,4121,4120,4176,43,4176,4120,4119,4178,0,4303,4247,4246,4305,4176,4120,4119,4178,43,4177,4176,4178,4179,0,4304,4303,4305,4306,4177,4176,4178,4179,43,4180,4181,4182,4183,0,4307,4308,4309,4310,4180,4181,4182,4183,43,4181,4119,4118,4182,0,4308,4246,4245,4309,4181,4119,4118,4182,43,4182,4118,4117,4123,0,4309,4245,4244,4250,4182,4118,4117,4123,43,4183,4182,4123,4122,0,4310,4309,4250,4249,4183,4182,4123,4122,43,4184,4185,4186,4187,0,4311,4312,4313,4314,4184,4185,4186,4187,43,4185,4180,4183,4186,0,4312,4307,4310,4313,4185,4180,4183,4186,43,4186,4183,4122,4151,0,4313,4310,4249,4278,4186,4183,4122,4151,43,4187,4186,4151,4155,0,4314,4313,4278,4282,4187,4186,4151,4155,43,4188,4189,4190,4191,0,4315,4316,4317,4318,4188,4189,4190,4191,43,4189,4179,4178,4190,0,4316,4306,4305,4317,4189,4179,4178,4190,43,4190,4178,4119,4181,0,4317,4305,4246,4308,4190,4178,4119,4181,43,4191,4190,4181,4180,0,4318,4317,4308,4307,4191,4190,4181,4180,43,4103,4106,4192,4193,0,4230,4233,4319,4320,4103,4106,4192,4193,43,4106,4091,4089,4192,0,4233,4218,4216,4319,4106,4091,4089,4192,43,4192,4089,4072,4194,0,4319,4216,4199,4321,4192,4089,4072,4194,43,4193,4192,4194,4195,0,4320,4319,4321,4322,4193,4192,4194,4195,43,4080,4196,4197,4075,0,4207,4323,4324,4202,4080,4196,4197,4075,43,4196,4198,4199,4197,0,4323,4325,4326,4324,4196,4198,4199,4197,43,4197,4199,4195,4194,0,4324,4326,4322,4321,4197,4199,4195,4194,43,4075,4197,4194,4072,0,4202,4324,4321,4199,4075,4197,4194,4072,43,4198,4200,4201,4199,0,4325,4327,4328,4326,4198,4200,4201,4199,43,4200,4202,4203,4201,0,4327,4329,4330,4328,4200,4202,4203,4201,43,4201,4203,4204,4205,0,4328,4330,4331,4332,4201,4203,4204,4205,43,4199,4201,4205,4195,0,4326,4328,4332,4322,4199,4201,4205,4195,43,4206,4207,4208,4209,0,4333,4334,4335,4336,4206,4207,4208,4209,43,4207,4210,4211,4208,0,4334,4337,4338,4335,4207,4210,4211,4208,43,4208,4211,4195,4205,0,4335,4338,4322,4332,4208,4211,4195,4205,43,4209,4208,4205,4204,0,4336,4335,4332,4331,4209,4208,4205,4204,43,4212,4213,4214,4215,0,4339,4340,4341,4342,4212,4213,4214,4215,43,4213,4110,4109,4214,0,4340,4237,4236,4341,4213,4110,4109,4214,43,4214,4109,4095,4102,0,4341,4236,4222,4229,4214,4109,4095,4102,43,4215,4214,4102,4101,0,4342,4341,4229,4228,4215,4214,4102,4101,43,4216,4217,4218,4219,0,4343,4344,4345,4346,4216,4217,4218,4219,43,4217,4212,4215,4218,0,4344,4339,4342,4345,4217,4212,4215,4218,43,4218,4215,4101,4104,0,4345,4342,4228,4231,4218,4215,4101,4104,43,4219,4218,4104,4103,0,4346,4345,4231,4230,4219,4218,4104,4103,43,4210,4220,4221,4211,0,4337,4347,4348,4338,4210,4220,4221,4211,43,4220,4216,4219,4221,0,4347,4343,4346,4348,4220,4216,4219,4221,43,4221,4219,4103,4193,0,4348,4346,4230,4320,4221,4219,4103,4193,43,4211,4221,4193,4195,0,4338,4348,4320,4322,4211,4221,4193,4195,43,4222,4223,4224,4225,0,4349,4350,4351,4352,4222,4223,4224,4225,43,4223,4226,4227,4224,0,4350,4353,4354,4351,4223,4226,4227,4224,43,4224,4227,4228,4229,0,4351,4354,4355,4356,4224,4227,4228,4229,43,4225,4224,4229,4230,0,4352,4351,4356,4357,4225,4224,4229,4230,43,4231,4232,4233,4234,0,4358,4359,4360,4361,4231,4232,4233,4234,43,4232,4235,4236,4233,0,4359,4362,4363,4360,4232,4235,4236,4233,43,4233,4236,4237,4238,0,4360,4363,4364,4365,4233,4236,4237,4238,43,4234,4233,4238,4239,0,4361,4360,4365,4366,4234,4233,4238,4239,43,4240,4241,4242,4243,0,4367,4368,4369,4370,4240,4241,4242,4243,43,4241,4235,4244,4242,0,4368,4362,4371,4369,4241,4235,4244,4242,43,4242,4244,4245,4246,0,4369,4371,4372,4373,4242,4244,4245,4246,43,4243,4242,4246,4247,0,4370,4369,4373,4374,4243,4242,4246,4247,43,4240,4248,4249,4241,0,4367,4375,4376,4368,4240,4248,4249,4241,43,4248,4250,4251,4249,0,4375,4377,4378,4376,4248,4250,4251,4249,43,4249,4251,4237,4236,0,4376,4378,4364,4363,4249,4251,4237,4236,43,4241,4249,4236,4235,0,4368,4376,4363,4362,4241,4249,4236,4235,43,4252,4253,4254,4255,0,4379,4380,4381,4382,4252,4253,4254,4255,43,4253,4256,4257,4254,0,4380,4383,4384,4381,4253,4256,4257,4254,43,4254,4257,4240,4243,0,4381,4384,4367,4370,4254,4257,4240,4243,43,4255,4254,4243,4247,0,4382,4381,4370,4374,4255,4254,4243,4247,43,4256,4258,4259,4257,0,4383,4385,4386,4384,4256,4258,4259,4257,43,4258,4260,4261,4259,0,4385,4387,4388,4386,4258,4260,4261,4259,43,4259,4261,4250,4248,0,4386,4388,4377,4375,4259,4261,4250,4248,43,4257,4259,4248,4240,0,4384,4386,4375,4367,4257,4259,4248,4240,43,4260,4262,4263,4261,0,4387,4389,4390,4388,4260,4262,4263,4261,43,4262,4264,4265,4263,0,4389,4391,4392,4390,4262,4264,4265,4263,43,4261,4263,4265,4250,0,4388,4390,4392,4377,4261,4263,4265,4250,43,4266,4267,4268,4269,0,4393,4394,4395,4396,4266,4267,4268,4269,43,4267,4256,4253,4268,0,4394,4383,4380,4395,4267,4256,4253,4268,43,4268,4253,4252,4270,0,4395,4380,4379,4397,4268,4253,4252,4270,43,4269,4268,4270,4271,0,4396,4395,4397,4398,4269,4268,4270,4271,43,4272,4273,4274,4275,0,4399,4400,4401,4402,4272,4273,4274,4275,43,4273,4276,4277,4274,0,4400,4403,4404,4401,4273,4276,4277,4274,43,4274,4277,4278,4279,0,4401,4404,4405,4406,4274,4277,4278,4279,43,4275,4274,4279,4280,0,4402,4401,4406,4407,4275,4274,4279,4280,43,4278,4277,4281,4282,0,4405,4404,4408,4409,4278,4277,4281,4282,43,4277,4276,4283,4281,0,4404,4403,4410,4408,4277,4276,4283,4281,43,4281,4283,4284,4285,0,4408,4410,4411,4412,4281,4283,4284,4285,43,4282,4281,4285,4286,0,4409,4408,4412,4413,4282,4281,4285,4286,43,4230,4287,4288,4289,0,4357,4414,4415,4416,4230,4287,4288,4289,43,4287,4280,4279,4288,0,4414,4407,4406,4415,4287,4280,4279,4288,43,4288,4279,4278,4290,0,4415,4406,4405,4417,4288,4279,4278,4290,43,4289,4288,4290,4291,0,4416,4415,4417,4418,4289,4288,4290,4291,43,4292,4293,4294,4295,0,4419,4420,4421,4422,4292,4293,4294,4295,43,4293,4222,4225,4294,0,4420,4349,4352,4421,4293,4222,4225,4294,43,4294,4225,4230,4289,0,4421,4352,4357,4416,4294,4225,4230,4289,43,4295,4294,4289,4291,0,4422,4421,4416,4418,4295,4294,4289,4291,43,4245,4296,4297,4246,0,4372,4423,4424,4373,4245,4296,4297,4246,43,4296,4222,4293,4297,0,4423,4349,4420,4424,4296,4222,4293,4297,43,4297,4293,4292,4298,0,4424,4420,4419,4425,4297,4293,4292,4298,43,4246,4297,4298,4247,0,4373,4424,4425,4374,4246,4297,4298,4247,43,4247,4298,4299,4255,0,4374,4425,4426,4382,4247,4298,4299,4255,43,4298,4292,4300,4299,0,4425,4419,4427,4426,4298,4292,4300,4299,43,4299,4300,4301,4302,0,4426,4427,4428,4429,4299,4300,4301,4302,43,4255,4299,4302,4252,0,4382,4426,4429,4379,4255,4299,4302,4252,43,4301,4300,4303,4304,0,4428,4427,4430,4431,4301,4300,4303,4304,43,4300,4292,4295,4303,0,4427,4419,4422,4430,4300,4292,4295,4303,43,4303,4295,4291,4305,0,4430,4422,4418,4432,4303,4295,4291,4305,43,4304,4303,4305,4306,0,4431,4430,4432,4433,4304,4303,4305,4306,43,4306,4305,4307,4308,0,4433,4432,4434,4435,4306,4305,4307,4308,43,4305,4291,4290,4307,0,4432,4418,4417,4434,4305,4291,4290,4307,43,4307,4290,4278,4282,0,4434,4417,4405,4409,4307,4290,4278,4282,43,4308,4307,4282,4286,0,4435,4434,4409,4413,4308,4307,4282,4286,43,4309,4310,4311,4312,0,4436,4437,4438,4439,4309,4310,4311,4312,43,4310,4286,4285,4311,0,4437,4413,4412,4438,4310,4286,4285,4311,43,4311,4285,4284,4313,0,4438,4412,4411,4440,4311,4285,4284,4313,43,4312,4311,4313,4314,0,4439,4438,4440,4441,4312,4311,4313,4314,43,4315,4316,4317,4318,0,4442,4443,4444,4445,4315,4316,4317,4318,43,4316,4306,4308,4317,0,4443,4433,4435,4444,4316,4306,4308,4317,43,4317,4308,4286,4310,0,4444,4435,4413,4437,4317,4308,4286,4310,43,4318,4317,4310,4309,0,4445,4444,4437,4436,4318,4317,4310,4309,43,4319,4320,4321,4322,0,4446,4447,4448,4449,4319,4320,4321,4322,43,4320,4301,4304,4321,0,4447,4428,4431,4448,4320,4301,4304,4321,43,4321,4304,4306,4316,0,4448,4431,4433,4443,4321,4304,4306,4316,43,4322,4321,4316,4315,0,4449,4448,4443,4442,4322,4321,4316,4315,43,4271,4270,4323,4324,0,4398,4397,4450,4451,4271,4270,4323,4324,43,4270,4252,4302,4323,0,4397,4379,4429,4450,4270,4252,4302,4323,43,4323,4302,4301,4320,0,4450,4429,4428,4447,4323,4302,4301,4320,43,4324,4323,4320,4319,0,4451,4450,4447,4446,4324,4323,4320,4319,43,4231,4325,4326,4232,0,4358,4452,4453,4359,4231,4325,4326,4232,43,4325,4327,4328,4326,0,4452,4454,4455,4453,4325,4327,4328,4326,43,4326,4328,4245,4244,0,4453,4455,4372,4371,4326,4328,4245,4244,43,4232,4326,4244,4235,0,4359,4453,4371,4362,4232,4326,4244,4235,43,4327,4329,4330,4328,0,4454,4456,4457,4455,4327,4329,4330,4328,43,4329,4226,4223,4330,0,4456,4353,4350,4457,4329,4226,4223,4330,43,4330,4223,4222,4296,0,4457,4350,4349,4423,4330,4223,4222,4296,43,4328,4330,4296,4245,0,4455,4457,4423,4372,4328,4330,4296,4245,43,4280,4287,4331,4332,0,4407,4414,4458,4459,4280,4287,4331,4332,43,4287,4230,4229,4331,0,4414,4357,4356,4458,4287,4230,4229,4331,43,4331,4229,4228,4333,0,4458,4356,4355,4460,4331,4229,4228,4333,43,4332,4331,4333,4334,0,4459,4458,4460,4461,4332,4331,4333,4334,43,4272,4275,4335,4336,0,4399,4402,4462,4463,4272,4275,4335,4336,43,4275,4280,4332,4335,0,4402,4407,4459,4462,4275,4280,4332,4335,43,4335,4332,4334,4337,0,4462,4459,4461,4464,4335,4332,4334,4337,43,4336,4335,4337,4338,0,4463,4462,4464,4465,4336,4335,4337,4338,43,4276,4273,4339,4283,0,4403,4400,4466,4410,4276,4273,4339,4283,43,4273,4272,4340,4339,0,4400,4399,4467,4466,4273,4272,4340,4339,43,4339,4340,4341,4342,0,4466,4467,4468,4469,4339,4340,4341,4342,43,4283,4339,4342,4284,0,4410,4466,4469,4411,4283,4339,4342,4284,43,4284,4342,4343,4313,0,4411,4469,4470,4440,4284,4342,4343,4313,43,4342,4341,4344,4343,0,4469,4468,4471,4470,4342,4341,4344,4343,43,4343,4344,4345,4346,0,4470,4471,4472,4473,4343,4344,4345,4346,43,4313,4343,4346,4314,0,4440,4470,4473,4441,4313,4343,4346,4314,43,4272,4336,4347,4340,0,4399,4463,4474,4467,4272,4336,4347,4340,43,4336,4338,4348,4347,0,4463,4465,4475,4474,4336,4338,4348,4347,43,4347,4348,4349,4350,0,4474,4475,4476,4477,4347,4348,4349,4350,43,4340,4347,4350,4341,0,4467,4474,4477,4468,4340,4347,4350,4341,43,4237,4251,4351,4352,0,4364,4378,4478,4479,4237,4251,4351,4352,43,4251,4250,4265,4351,0,4378,4377,4392,4478,4251,4250,4265,4351,43,4351,4265,4264,4353,0,4478,4392,4391,4480,4351,4265,4264,4353,43,4352,4351,4353,4354,0,4479,4478,4480,4481,4352,4351,4353,4354,43,4354,4355,4356,4352,0,4481,4482,4483,4479,4354,4355,4356,4352,43,4355,4357,4358,4356,0,4482,4484,4485,4483,4355,4357,4358,4356,43,4356,4358,4239,4238,0,4483,4485,4366,4365,4356,4358,4239,4238,43,4352,4356,4238,4237,0,4479,4483,4365,4364,4352,4356,4238,4237,43,4359,4360,4361,4362,0,4486,4487,4488,4489,4359,4360,4361,4362,43,4360,4363,4364,4361,0,4487,4490,4491,4488,4360,4363,4364,4361,43,4361,4364,4357,4355,0,4488,4491,4484,4482,4361,4364,4357,4355,43,4362,4361,4355,4354,0,4489,4488,4482,4481,4362,4361,4355,4354,43,4354,4365,4366,4362,0,4481,4492,4493,4489,4354,4365,4366,4362,43,4365,4367,4368,4366,0,4492,4494,4495,4493,4365,4367,4368,4366,43,4366,4368,4369,4370,0,4493,4495,4496,4497,4366,4368,4369,4370,43,4362,4366,4370,4359,0,4489,4493,4497,4486,4362,4366,4370,4359,43,4256,4267,4371,4258,0,4383,4394,4498,4385,4256,4267,4371,4258,43,4267,4266,4372,4371,0,4394,4393,4499,4498,4267,4266,4372,4371,43,4371,4372,4373,4374,0,4498,4499,4500,4501,4371,4372,4373,4374,43,4258,4371,4374,4260,0,4385,4498,4501,4387,4258,4371,4374,4260,43,4260,4374,4375,4262,0,4387,4501,4502,4389,4260,4374,4375,4262,43,4374,4373,4376,4375,0,4501,4500,4503,4502,4374,4373,4376,4375,43,4375,4376,4377,4378,0,4502,4503,4504,4505,4375,4376,4377,4378,43,4262,4375,4378,4264,0,4389,4502,4505,4391,4262,4375,4378,4264,43,4264,4378,4379,4353,0,4391,4505,4506,4480,4264,4378,4379,4353,43,4378,4377,4380,4379,0,4505,4504,4507,4506,4378,4377,4380,4379,43,4379,4380,4367,4365,0,4506,4507,4494,4492,4379,4380,4367,4365,43,4353,4379,4365,4354,0,4480,4506,4492,4481,4353,4379,4365,4354,43,4381,4382,4383,4384,0,4508,4509,4510,4511,4381,4382,4383,4384,42,4382,4385,4383,0,4509,4512,4510,4382,4385,4383,43,4383,4385,4386,4387,0,4510,4512,4513,4514,4383,4385,4386,4387,43,4384,4383,4387,4388,0,4511,4510,4514,4515,4384,4383,4387,4388,43,4389,4390,4391,4392,0,4516,4517,4518,4519,4389,4390,4391,4392,43,4390,4385,4382,4391,0,4517,4520,4509,4518,4390,4385,4382,4391,43,4381,4393,4391,4382,0,4508,4521,4518,4509,4381,4393,4391,4382,43,4392,4391,4393,4394,0,4519,4518,4521,4522,4392,4391,4393,4394,43,4395,4396,4397,4398,0,4523,4524,4525,4526,4395,4396,4397,4398,43,4385,4395,4398,4386,0,4512,4523,4526,4513,4385,4395,4398,4386,43,4399,4400,4401,4402,0,4527,4528,4529,4530,4399,4400,4401,4402,43,4400,4397,4396,4401,0,4528,4525,4524,4529,4400,4397,4396,4401,42,4401,4396,4403,0,4529,4531,4532,4401,4396,4403,43,4402,4401,4403,4404,0,4530,4529,4532,4533,4402,4401,4403,4404,43,4405,4406,4407,4408,0,4534,4535,4536,4537,4405,4406,4407,4408,43,4406,4409,4410,4407,0,4535,4538,4539,4536,4406,4409,4410,4407,43,4407,4410,4411,4412,0,4536,4539,4540,4541,4407,4410,4411,4412,43,4408,4407,4412,4413,0,4537,4536,4541,4542,4408,4407,4412,4413,43,4414,4415,4416,4417,0,4543,4544,4545,4546,4414,4415,4416,4417,43,4415,4404,4403,4416,0,4544,4533,4532,4545,4415,4404,4403,4416,43,4416,4403,4396,4418,0,4545,4532,4531,4547,4416,4403,4396,4418,43,4417,4416,4418,4419,0,4546,4545,4547,4548,4417,4416,4418,4419,43,4419,4418,4420,4421,0,4548,4547,4549,4550,4419,4418,4420,4421,43,4418,4396,4395,4420,0,4547,4531,4551,4549,4418,4396,4395,4420,43,4420,4395,4385,4390,0,4549,4551,4520,4517,4420,4395,4385,4390,43,4421,4420,4390,4389,0,4550,4549,4517,4516,4421,4420,4390,4389,43,4422,4423,4424,4425,0,4552,4553,4554,4555,4422,4423,4424,4425,43,4423,4414,4417,4424,0,4553,4543,4546,4554,4423,4414,4417,4424,43,4424,4417,4419,4426,0,4554,4546,4548,4556,4424,4417,4419,4426,43,4425,4424,4426,4405,0,4555,4554,4556,4534,4425,4424,4426,4405,43,4405,4426,4427,4406,0,4534,4556,4557,4535,4405,4426,4427,4406,43,4426,4419,4421,4427,0,4556,4548,4550,4557,4426,4419,4421,4427,43,4427,4421,4389,4428,0,4557,4550,4516,4558,4427,4421,4389,4428,43,4406,4427,4428,4409,0,4535,4557,4558,4538,4406,4427,4428,4409,43,4422,4425,4429,4430,0,4552,4555,4559,4560,4422,4425,4429,4430,43,4425,4405,4408,4429,0,4555,4534,4537,4559,4425,4405,4408,4429,43,4429,4408,4413,4431,0,4559,4537,4542,4561,4429,4408,4413,4431,43,4430,4429,4431,4432,0,4560,4559,4561,4562,4430,4429,4431,4432,43,4433,4434,4435,4436,0,4563,4564,4565,4566,4433,4434,4435,4436,43,4434,4411,4437,4435,0,4564,4540,4567,4565,4434,4411,4437,4435,43,4435,4437,4438,4439,0,4565,4567,4568,4569,4435,4437,4438,4439,43,4436,4435,4439,4440,0,4566,4565,4569,4570,4436,4435,4439,4440,43,4441,4442,4443,4444,0,4571,4572,4573,4574,4441,4442,4443,4444,43,4442,4433,4445,4443,0,4572,4563,4575,4573,4442,4433,4445,4443,43,4443,4445,4446,4447,0,4573,4575,4576,4577,4443,4445,4446,4447,43,4444,4443,4447,4448,0,4574,4573,4577,4578,4444,4443,4447,4448,43,4449,4450,4451,4452,0,4579,4580,4581,4582,4449,4450,4451,4452,43,4450,4441,4444,4451,0,4580,4571,4574,4581,4450,4441,4444,4451,43,4451,4444,4448,4453,0,4581,4574,4578,4583,4451,4444,4448,4453,43,4452,4451,4453,4454,0,4582,4581,4583,4584,4452,4451,4453,4454,43,4432,4431,4455,4456,0,4562,4561,4585,4586,4432,4431,4455,4456,43,4431,4413,4457,4455,0,4561,4542,4587,4585,4431,4413,4457,4455,43,4455,4457,4441,4450,0,4585,4587,4571,4580,4455,4457,4441,4450,43,4456,4455,4450,4449,0,4586,4585,4580,4579,4456,4455,4450,4449,43,4413,4412,4458,4457,0,4542,4541,4588,4587,4413,4412,4458,4457,43,4412,4411,4434,4458,0,4541,4540,4564,4588,4412,4411,4434,4458,43,4458,4434,4433,4442,0,4588,4564,4563,4572,4458,4434,4433,4442,43,4457,4458,4442,4441,0,4587,4588,4572,4571,4457,4458,4442,4441,43,4446,4445,4459,4460,0,4576,4575,4589,4590,4446,4445,4459,4460,43,4445,4433,4436,4459,0,4575,4563,4566,4589,4445,4433,4436,4459,43,4459,4436,4440,4461,0,4589,4566,4570,4591,4459,4436,4440,4461,43,4460,4459,4461,4462,0,4590,4589,4591,4592,4460,4459,4461,4462,43,4409,4428,4463,4464,0,4538,4558,4593,4594,4409,4428,4463,4464,43,4428,4389,4392,4463,0,4558,4516,4519,4593,4428,4389,4392,4463,43,4463,4392,4394,4465,0,4593,4519,4522,4595,4463,4392,4394,4465,43,4464,4463,4465,4466,0,4594,4593,4595,4596,4464,4463,4465,4466,43,4411,4410,4467,4437,0,4540,4539,4597,4567,4411,4410,4467,4437,43,4410,4409,4464,4467,0,4539,4538,4594,4597,4410,4409,4464,4467,43,4467,4464,4466,4468,0,4597,4594,4596,4598,4467,4464,4466,4468,43,4437,4467,4468,4438,0,4567,4597,4598,4568,4437,4467,4468,4438,43,4469,4470,4471,4472,0,4599,4600,4601,4602,4469,4470,4471,4472,43,4470,4473,4474,4471,0,4600,4603,4604,4601,4470,4473,4474,4471,43,4471,4474,4475,4476,0,4601,4604,4605,4606,4471,4474,4475,4476,43,4472,4471,4476,4477,0,4602,4601,4606,4607,4472,4471,4476,4477,43,4475,4474,4478,4479,0,4605,4604,4608,4609,4475,4474,4478,4479,43,4474,4473,4480,4478,0,4604,4603,4610,4608,4474,4473,4480,4478,43,4478,4480,4481,4482,0,4608,4610,4611,4612,4478,4480,4481,4482,43,4479,4478,4482,4483,0,4609,4608,4612,4613,4479,4478,4482,4483,43,4484,4485,4486,4487,0,4614,4615,4616,4617,4484,4485,4486,4487,43,4485,4488,4489,4486,0,4615,4618,4619,4616,4485,4488,4489,4486,43,4486,4489,4473,4470,0,4616,4619,4603,4600,4486,4489,4473,4470,43,4487,4486,4470,4469,0,4617,4616,4600,4599,4487,4486,4470,4469,43,4488,4485,4490,4491,0,4618,4615,4620,4621,4488,4485,4490,4491,43,4485,4484,4492,4490,0,4615,4614,4622,4620,4485,4484,4492,4490,43,4490,4492,4493,4494,0,4620,4622,4623,4624,4490,4492,4493,4494,43,4491,4490,4494,4495,0,4621,4620,4624,4625,4491,4490,4494,4495,43,4496,4497,4498,4499,0,4626,4627,4628,4629,4496,4497,4498,4499,43,4497,4500,4501,4498,0,4627,4630,4631,4628,4497,4500,4501,4498,43,4498,4501,4502,4503,0,4628,4631,4632,4633,4498,4501,4502,4503,43,4499,4498,4503,4504,0,4629,4628,4633,4634,4499,4498,4503,4504,43,4488,4491,4505,4506,0,4618,4621,4635,4636,4488,4491,4505,4506,43,4491,4495,4507,4505,0,4621,4625,4637,4635,4491,4495,4507,4505,43,4505,4507,4508,4509,0,4635,4637,4638,4639,4505,4507,4508,4509,43,4506,4505,4509,4510,0,4636,4635,4639,4640,4506,4505,4509,4510,43,4473,4489,4511,4480,0,4603,4619,4641,4610,4473,4489,4511,4480,43,4489,4488,4506,4511,0,4619,4618,4636,4641,4489,4488,4506,4511,43,4511,4506,4510,4512,0,4641,4636,4640,4642,4511,4506,4510,4512,43,4480,4511,4512,4481,0,4610,4641,4642,4611,4480,4511,4512,4481,43,4510,4509,4513,4514,0,4640,4639,4643,4644,4510,4509,4513,4514,43,4509,4508,4515,4513,0,4639,4638,4645,4643,4509,4508,4515,4513,43,4513,4515,4516,4517,0,4643,4645,4646,4647,4513,4515,4516,4517,43,4514,4513,4517,4502,0,4644,4643,4647,4632,4514,4513,4517,4502,43,4481,4512,4518,4519,0,4611,4642,4648,4649,4481,4512,4518,4519,43,4512,4510,4514,4518,0,4642,4640,4644,4648,4512,4510,4514,4518,43,4518,4514,4502,4501,0,4648,4644,4632,4631,4518,4514,4502,4501,43,4519,4518,4501,4500,0,4649,4648,4631,4630,4519,4518,4501,4500,43,4504,4503,4520,4521,0,4634,4633,4650,4651,4504,4503,4520,4521,43,4503,4502,4517,4520,0,4633,4632,4647,4650,4503,4502,4517,4520,43,4520,4517,4516,4522,0,4650,4647,4646,4652,4520,4517,4516,4522,43,4521,4520,4522,4523,0,4651,4650,4652,4653,4521,4520,4522,4523,43,4524,4525,4526,4527,0,4654,4655,4656,4657,4524,4525,4526,4527,43,4525,4496,4528,4526,0,4655,4626,4658,4656,4525,4496,4528,4526,43,4526,4528,4529,4530,0,4656,4658,4659,4660,4526,4528,4529,4530,43,4527,4526,4530,4531,0,4657,4656,4660,4661,4527,4526,4530,4531,43,4446,4532,4533,4447,0,4576,4662,4663,4577,4446,4532,4533,4447,43,4532,4529,4534,4533,0,4662,4659,4664,4663,4532,4529,4534,4533,43,4533,4534,4535,4536,0,4663,4664,4665,4666,4533,4534,4535,4536,43,4447,4533,4536,4448,0,4577,4663,4666,4578,4447,4533,4536,4448,43,4448,4536,4537,4453,0,4578,4666,4667,4583,4448,4536,4537,4453,43,4536,4535,4538,4537,0,4666,4665,4668,4667,4536,4535,4538,4537,43,4537,4538,4539,4540,0,4667,4668,4669,4670,4537,4538,4539,4540,43,4453,4537,4540,4454,0,4583,4667,4670,4584,4453,4537,4540,4454,43,4535,4541,4542,4538,0,4665,4671,4672,4668,4535,4541,4542,4538,43,4541,4504,4521,4542,0,4671,4634,4651,4672,4541,4504,4521,4542,43,4542,4521,4523,4543,0,4672,4651,4653,4673,4542,4521,4523,4543,43,4538,4542,4543,4539,0,4668,4672,4673,4669,4538,4542,4543,4539,43,4529,4528,4544,4534,0,4659,4658,4674,4664,4529,4528,4544,4534,43,4528,4496,4499,4544,0,4658,4626,4629,4674,4528,4496,4499,4544,43,4544,4499,4504,4541,0,4674,4629,4634,4671,4544,4499,4504,4541,43,4534,4544,4541,4535,0,4664,4674,4671,4665,4534,4544,4541,4535,43,4531,4530,4545,4546,0,4661,4660,4675,4676,4531,4530,4545,4546,43,4530,4529,4532,4545,0,4660,4659,4662,4675,4530,4529,4532,4545,43,4545,4532,4446,4460,0,4675,4662,4576,4590,4545,4532,4446,4460,43,4546,4545,4460,4462,0,4676,4675,4590,4592,4546,4545,4460,4462,43,4483,4482,4547,4548,0,4613,4612,4677,4678,4483,4482,4547,4548,43,4482,4481,4519,4547,0,4612,4611,4649,4677,4482,4481,4519,4547,43,4547,4519,4500,4549,0,4677,4649,4630,4679,4547,4519,4500,4549,43,4548,4547,4549,4550,0,4678,4677,4679,4680,4548,4547,4549,4550,43,4550,4549,4551,4552,0,4680,4679,4681,4682,4550,4549,4551,4552,43,4549,4500,4497,4551,0,4679,4630,4627,4681,4549,4500,4497,4551,43,4551,4497,4496,4525,0,4681,4627,4626,4655,4551,4497,4496,4525,43,4552,4551,4525,4524,0,4682,4681,4655,4654,4552,4551,4525,4524,43,4553,4554,4555,4556,0,4683,4684,4685,4686,4553,4554,4555,4556,43,4554,4557,4558,4555,0,4684,4687,4688,4685,4554,4557,4558,4555,43,4555,4558,4559,4560,0,4685,4688,4689,4690,4555,4558,4559,4560,43,4556,4555,4560,4561,0,4686,4685,4690,4691,4556,4555,4560,4561,43,4561,4560,4562,4563,0,4691,4690,4692,4693,4561,4560,4562,4563,43,4560,4559,4564,4562,0,4690,4689,4694,4692,4560,4559,4564,4562,43,4562,4564,4565,4566,0,4692,4694,4695,4696,4562,4564,4565,4566,43,4563,4562,4566,4567,0,4693,4692,4696,4697,4563,4562,4566,4567,43,4559,4568,4569,4564,0,4689,4698,4699,4694,4559,4568,4569,4564,43,4568,4570,4571,4569,0,4698,4700,4701,4699,4568,4570,4571,4569,43,4569,4571,4572,4573,0,4699,4701,4702,4703,4569,4571,4572,4573,43,4564,4569,4573,4565,0,4694,4699,4703,4695,4564,4569,4573,4565,43,4557,4574,4575,4558,0,4687,4704,4705,4688,4557,4574,4575,4558,43,4574,4576,4577,4575,0,4704,4706,4707,4705,4574,4576,4577,4575,43,4575,4577,4570,4568,0,4705,4707,4700,4698,4575,4577,4570,4568,43,4558,4575,4568,4559,0,4688,4705,4698,4689,4558,4575,4568,4559,43,4386,4398,4578,4579,0,4513,4526,4708,4709,4386,4398,4578,4579,43,4398,4397,4580,4578,0,4526,4525,4710,4708,4398,4397,4580,4578,43,4578,4580,4581,4582,0,4708,4710,4711,4712,4578,4580,4581,4582,43,4579,4578,4582,4583,0,4709,4708,4712,4713,4579,4578,4582,4583,43,4584,4585,4586,4587,0,4714,4715,4716,4717,4584,4585,4586,4587,43,4585,4581,4580,4586,0,4715,4711,4710,4716,4585,4581,4580,4586,43,4586,4580,4397,4400,0,4716,4710,4525,4528,4586,4580,4397,4400,43,4587,4586,4400,4399,0,4717,4716,4528,4527,4587,4586,4400,4399,43,4588,4589,4590,4591,0,4718,4719,4720,4721,4588,4589,4590,4591,43,4589,4592,4593,4590,0,4719,4722,4723,4720,4589,4592,4593,4590,43,4590,4593,4594,4595,0,4720,4723,4724,4725,4590,4593,4594,4595,43,4591,4590,4595,4596,0,4721,4720,4725,4726,4591,4590,4595,4596,43,4597,4598,4599,4600,0,4727,4728,4729,4730,4597,4598,4599,4600,43,4598,4601,4602,4599,0,4728,4731,4732,4729,4598,4601,4602,4599,43,4599,4602,4557,4554,0,4729,4732,4687,4684,4599,4602,4557,4554,43,4554,4553,4600,4599,0,4684,4683,4730,4729,4554,4553,4600,4599,43,4557,4602,4603,4574,0,4687,4732,4733,4704,4557,4602,4603,4574,43,4602,4601,4604,4603,0,4732,4731,4734,4733,4602,4601,4604,4603,43,4603,4604,4588,4605,0,4733,4734,4718,4735,4603,4604,4588,4605,43,4574,4603,4605,4576,0,4704,4733,4735,4706,4574,4603,4605,4576,43,4601,4598,4606,4607,0,4731,4728,4736,4737,4601,4598,4606,4607,43,4598,4597,4608,4606,0,4728,4727,4738,4736,4598,4597,4608,4606,43,4606,4608,4609,4610,0,4736,4738,4739,4740,4606,4608,4609,4610,43,4607,4606,4610,4611,0,4737,4736,4740,4741,4607,4606,4610,4611,43,4388,4387,4612,4613,0,4515,4514,4742,4743,4388,4387,4612,4613,43,4387,4386,4579,4612,0,4514,4513,4709,4742,4387,4386,4579,4612,43,4612,4579,4583,4614,0,4742,4709,4713,4744,4612,4579,4583,4614,43,4613,4612,4614,4615,0,4743,4742,4744,4745,4613,4612,4614,4615,43,4583,4616,4617,4614,0,4713,4746,4747,4744,4583,4616,4617,4614,43,4616,4611,4610,4617,0,4746,4741,4740,4747,4616,4611,4610,4617,43,4617,4610,4609,4618,0,4747,4740,4739,4748,4617,4610,4609,4618,43,4614,4617,4618,4615,0,4744,4747,4748,4745,4614,4617,4618,4615,43,4601,4607,4619,4604,0,4731,4737,4749,4734,4601,4607,4619,4604,43,4607,4611,4620,4619,0,4737,4741,4750,4749,4607,4611,4620,4619,43,4619,4620,4592,4589,0,4749,4750,4722,4719,4619,4620,4592,4589,43,4604,4619,4589,4588,0,4734,4749,4719,4718,4604,4619,4589,4588,43,4581,4621,4622,4582,0,4711,4751,4752,4712,4581,4621,4622,4582,43,4621,4592,4620,4622,0,4751,4722,4750,4752,4621,4592,4620,4622,43,4622,4620,4611,4616,0,4752,4750,4741,4746,4622,4620,4611,4616,43,4582,4622,4616,4583,0,4712,4752,4746,4713,4582,4622,4616,4583,43,4592,4621,4623,4593,0,4722,4751,4753,4723,4592,4621,4623,4593,43,4621,4581,4585,4623,0,4751,4711,4715,4753,4621,4581,4585,4623,43,4623,4585,4584,4624,0,4753,4715,4714,4754,4623,4585,4584,4624,43,4593,4623,4624,4594,0,4723,4753,4754,4724,4593,4623,4624,4594,43,4576,4605,4625,4626,0,4706,4735,4755,4756,4576,4605,4625,4626,43,4605,4588,4591,4625,0,4735,4718,4721,4755,4605,4588,4591,4625,43,4625,4591,4596,4627,0,4755,4721,4726,4757,4625,4591,4596,4627,43,4626,4625,4627,4628,0,4756,4755,4757,4758,4626,4625,4627,4628,43,4628,4629,4630,4626,0,4758,4759,4760,4756,4628,4629,4630,4626,43,4629,4631,4632,4630,0,4759,4761,4762,4760,4629,4631,4632,4630,43,4630,4632,4570,4577,0,4760,4762,4700,4707,4630,4632,4570,4577,43,4626,4630,4577,4576,0,4756,4760,4707,4706,4626,4630,4577,4576,43,4631,4633,4634,4632,0,4761,4763,4764,4762,4631,4633,4634,4632,43,4633,4635,4636,4634,0,4763,4765,4766,4764,4633,4635,4636,4634,43,4634,4636,4572,4571,0,4764,4766,4702,4701,4634,4636,4572,4571,43,4632,4634,4571,4570,0,4762,4764,4701,4700,4632,4634,4571,4570,43,4637,4638,4639,4640,0,4767,4768,4769,4770,4637,4638,4639,4640,43,4638,4641,4642,4639,0,4768,4771,4772,4769,4638,4641,4642,4639,43,4639,4642,4643,4644,0,4769,4772,4773,4774,4639,4642,4643,4644,43,4640,4639,4644,4645,0,4770,4769,4774,4775,4640,4639,4644,4645,43,4565,4646,4647,4566,0,4695,4776,4777,4696,4565,4646,4647,4566,43,4646,4637,4640,4647,0,4776,4767,4770,4777,4646,4637,4640,4647,43,4647,4640,4645,4648,0,4777,4770,4775,4778,4647,4640,4645,4648,43,4566,4647,4648,4567,0,4696,4777,4778,4697,4566,4647,4648,4567,43,4572,4649,4650,4573,0,4702,4779,4780,4703,4572,4649,4650,4573,43,4649,4651,4652,4650,0,4779,4781,4782,4780,4649,4651,4652,4650,43,4650,4652,4637,4646,0,4780,4782,4767,4776,4650,4652,4637,4646,43,4573,4650,4646,4565,0,4703,4780,4776,4695,4573,4650,4646,4565,43,4651,4653,4654,4652,0,4781,4783,4784,4782,4651,4653,4654,4652,43,4653,4655,4656,4654,0,4783,4785,4786,4784,4653,4655,4656,4654,43,4654,4656,4641,4638,0,4784,4786,4771,4768,4654,4656,4641,4638,43,4652,4654,4638,4637,0,4782,4784,4768,4767,4652,4654,4638,4637,43,4657,4658,4659,4660,0,4787,4788,4789,4790,4657,4658,4659,4660,43,4658,4484,4487,4659,0,4788,4614,4617,4789,4658,4484,4487,4659,43,4659,4487,4469,4661,0,4789,4617,4599,4791,4659,4487,4469,4661,43,4660,4659,4661,4662,0,4790,4789,4791,4792,4660,4659,4661,4662,43,4484,4658,4663,4492,0,4614,4788,4793,4622,4484,4658,4663,4492,43,4658,4657,4664,4663,0,4788,4787,4794,4793,4658,4657,4664,4663,43,4663,4664,4665,4666,0,4793,4794,4795,4796,4663,4664,4665,4666,43,4492,4663,4666,4493,0,4622,4793,4796,4623,4492,4663,4666,4493,43,4667,4668,4669,4670,0,4797,4798,4799,4800,4667,4668,4669,4670,43,4668,4671,4672,4669,0,4798,4801,4802,4799,4668,4671,4672,4669,43,4669,4672,4673,4674,0,4799,4802,4803,4804,4669,4672,4673,4674,43,4670,4669,4674,4675,0,4800,4799,4804,4805,4670,4669,4674,4675,43,4641,4676,4677,4642,0,4771,4806,4807,4772,4641,4676,4677,4642,43,4676,4678,4679,4677,0,4806,4808,4809,4807,4676,4678,4679,4677,43,4677,4679,4680,4681,0,4807,4809,4810,4811,4677,4679,4680,4681,43,4642,4677,4681,4643,0,4772,4807,4811,4773,4642,4677,4681,4643,43,4673,4682,4683,4684,0,4803,4812,4813,4814,4673,4682,4683,4684,43,4682,4678,4676,4683,0,4812,4808,4806,4813,4682,4678,4676,4683,43,4683,4676,4641,4656,0,4813,4806,4771,4786,4683,4676,4641,4656,43,4684,4683,4656,4655,0,4814,4813,4786,4785,4684,4683,4656,4655,43,4685,4686,4687,4688,0,4815,4816,4817,4818,4685,4686,4687,4688,43,4686,4680,4679,4687,0,4816,4810,4809,4817,4686,4680,4679,4687,43,4687,4679,4678,4689,0,4817,4809,4808,4819,4687,4679,4678,4689,43,4688,4687,4689,4690,0,4818,4817,4819,4820,4688,4687,4689,4690,43,4662,4661,4691,4692,0,4792,4791,4821,4822,4662,4661,4691,4692,43,4661,4469,4472,4691,0,4791,4599,4602,4821,4661,4469,4472,4691,43,4691,4472,4477,4693,0,4821,4602,4607,4823,4691,4472,4477,4693,43,4692,4691,4693,4694,0,4822,4821,4823,4824,4692,4691,4693,4694,43,4685,4688,4695,4696,0,4815,4818,4825,4826,4685,4688,4695,4696,43,4688,4690,4697,4695,0,4818,4820,4827,4825,4688,4690,4697,4695,43,4695,4697,4662,4692,0,4825,4827,4792,4822,4695,4697,4662,4692,43,4696,4695,4692,4694,0,4826,4825,4822,4824,4696,4695,4692,4694,43,4671,4698,4699,4672,0,4801,4828,4829,4802,4671,4698,4699,4672,43,4698,4690,4689,4699,0,4828,4820,4819,4829,4698,4690,4689,4699,43,4699,4689,4678,4682,0,4829,4819,4808,4812,4699,4689,4678,4682,43,4672,4699,4682,4673,0,4802,4829,4812,4803,4672,4699,4682,4673,43,4690,4698,4700,4697,0,4820,4828,4830,4827,4690,4698,4700,4697,43,4698,4671,4701,4700,0,4828,4801,4831,4830,4698,4671,4701,4700,43,4700,4701,4657,4660,0,4830,4831,4787,4790,4700,4701,4657,4660,43,4697,4700,4660,4662,0,4827,4830,4790,4792,4697,4700,4660,4662,43,4665,4664,4702,4703,0,4795,4794,4832,4833,4665,4664,4702,4703,43,4664,4657,4701,4702,0,4794,4787,4831,4832,4664,4657,4701,4702,43,4702,4701,4671,4668,0,4832,4831,4801,4798,4702,4701,4671,4668,43,4703,4702,4668,4667,0,4833,4832,4798,4797,4703,4702,4668,4667,43,4675,4674,4704,4705,0,4805,4804,4834,4835,4675,4674,4704,4705,43,4674,4673,4684,4704,0,4804,4803,4814,4834,4674,4673,4684,4704,43,4704,4684,4655,4706,0,4834,4814,4785,4836,4704,4684,4655,4706,43,4705,4704,4706,4707,0,4835,4834,4836,4837,4705,4704,4706,4707,43,4651,4708,4709,4653,0,4781,4838,4839,4783,4651,4708,4709,4653,43,4708,4710,4711,4709,0,4838,4840,4841,4839,4708,4710,4711,4709,43,4709,4711,4707,4706,0,4839,4841,4837,4836,4709,4711,4707,4706,43,4653,4709,4706,4655,0,4783,4839,4836,4785,4653,4709,4706,4655,43,4572,4636,4712,4649,0,4702,4766,4842,4779,4572,4636,4712,4649,43,4636,4635,4713,4712,0,4766,4765,4843,4842,4636,4635,4713,4712,43,4712,4713,4710,4708,0,4842,4843,4840,4838,4712,4713,4710,4708,43,4649,4712,4708,4651,0,4779,4842,4838,4781,4649,4712,4708,4651,43,155,162,4714,4715,0,155,162,4844,4845,155,162,4714,4715,43,162,149,4716,4714,0,162,149,4846,4844,162,149,4716,4714,43,4714,4716,4717,4718,0,4844,4846,4847,4848,4714,4716,4717,4718,43,4715,4714,4718,4719,0,4845,4844,4848,4849,4715,4714,4718,4719,43,4719,4720,4721,4715,0,4849,4850,4851,4845,4719,4720,4721,4715,43,4720,2140,2143,4721,0,4850,2266,2269,4851,4720,2140,2143,4721,43,4721,2143,771,774,0,4851,2269,771,774,4721,2143,771,774,43,774,155,4715,4721,0,774,155,4845,4851,774,155,4715,4721,43,4722,4723,4724,4725,0,4852,4853,4854,4855,4722,4723,4724,4725,43,4723,4726,4727,4724,0,4853,4856,4857,4854,4723,4726,4727,4724,43,4724,4727,4112,4111,0,4854,4857,4239,4238,4724,4727,4112,4111,43,4725,4724,4111,4110,0,4855,4854,4238,4237,4725,4724,4111,4110,43,4728,4729,4730,4731,0,4858,4859,4860,4861,4728,4729,4730,4731,43,4729,4732,4733,4730,0,4859,4862,4863,4860,4729,4732,4733,4730,43,4730,4733,4155,4154,0,4860,4863,4282,4281,4730,4733,4155,4154,43,4731,4730,4154,4153,0,4861,4860,4281,4280,4731,4730,4154,4153,43,4734,4735,4736,4737,0,4864,4865,4866,4867,4734,4735,4736,4737,43,4735,4728,4731,4736,0,4865,4858,4861,4866,4735,4728,4731,4736,43,4736,4731,4153,4159,0,4866,4861,4280,4286,4736,4731,4153,4159,43,4737,4736,4159,4158,0,4867,4866,4286,4285,4737,4736,4159,4158,43,4738,4739,4740,4741,0,4868,4869,4870,4871,4738,4739,4740,4741,43,4739,4734,4737,4740,0,4869,4864,4867,4870,4739,4734,4737,4740,43,4740,4737,4158,4163,0,4870,4867,4285,4290,4740,4737,4158,4163,43,4741,4740,4163,4162,0,4871,4870,4290,4289,4741,4740,4163,4162,43,4726,4742,4743,4727,0,4856,4872,4873,4857,4726,4742,4743,4727,43,4742,4738,4741,4743,0,4872,4868,4871,4873,4742,4738,4741,4743,43,4743,4741,4162,4165,0,4873,4871,4289,4292,4743,4741,4162,4165,43,4727,4743,4165,4112,0,4857,4873,4292,4239,4727,4743,4165,4112,43,4732,4744,4745,4733,0,4862,4874,4875,4863,4732,4744,4745,4733,43,4744,4746,4747,4745,0,4874,4876,4877,4875,4744,4746,4747,4745,43,4745,4747,4184,4187,0,4875,4877,4311,4314,4745,4747,4184,4187,43,4733,4745,4187,4155,0,4863,4875,4314,4282,4733,4745,4187,4155,43,4748,4749,4750,4751,0,4878,4879,4880,4881,4748,4749,4750,4751,43,4749,4752,4753,4750,0,4879,4882,4883,4880,4749,4752,4753,4750,43,4750,4753,4206,4754,0,4880,4883,4333,4884,4750,4753,4206,4754,43,4751,4750,4754,4755,0,4881,4880,4884,4885,4751,4750,4754,4755,43,4752,4756,4757,4753,0,4882,4886,4887,4883,4752,4756,4757,4753,43,4756,4758,4759,4757,0,4886,4888,4889,4887,4756,4758,4759,4757,43,4757,4759,4210,4207,0,4887,4889,4337,4334,4757,4759,4210,4207,43,4753,4757,4207,4206,0,4883,4887,4334,4333,4753,4757,4207,4206,43,4760,4761,4762,4763,0,4890,4891,4892,4893,4760,4761,4762,4763,43,4761,4722,4725,4762,0,4891,4852,4855,4892,4761,4722,4725,4762,43,4762,4725,4110,4213,0,4892,4855,4237,4340,4762,4725,4110,4213,43,4763,4762,4213,4212,0,4893,4892,4340,4339,4763,4762,4213,4212,43,4764,4765,4766,4767,0,4894,4895,4896,4897,4764,4765,4766,4767,43,4765,4760,4763,4766,0,4895,4890,4893,4896,4765,4760,4763,4766,43,4766,4763,4212,4217,0,4896,4893,4339,4344,4766,4763,4212,4217,43,4767,4766,4217,4216,0,4897,4896,4344,4343,4767,4766,4217,4216,43,4758,4768,4769,4759,0,4888,4898,4899,4889,4758,4768,4769,4759,43,4768,4764,4767,4769,0,4898,4894,4897,4899,4768,4764,4767,4769,43,4769,4767,4216,4220,0,4899,4897,4343,4347,4769,4767,4216,4220,43,4759,4769,4220,4210,0,4889,4899,4347,4337,4759,4769,4220,4210,43,4770,4771,4772,4773,0,4900,4901,4902,4903,4770,4771,4772,4773,43,4771,4774,4775,4772,0,4901,4904,4905,4902,4771,4774,4775,4772,43,4772,4775,4776,4777,0,4902,4905,4906,4907,4772,4775,4776,4777,43,4773,4772,4777,4778,0,4903,4902,4907,4908,4773,4772,4777,4778,43,4779,4780,4781,4782,0,4909,4910,4911,4912,4779,4780,4781,4782,43,4780,4770,4773,4781,0,4910,4900,4903,4911,4780,4770,4773,4781,43,4781,4773,4778,4783,0,4911,4903,4908,4913,4781,4773,4778,4783,43,4782,4781,4783,4784,0,4912,4911,4913,4914,4782,4781,4783,4784,43,4746,4785,4786,4747,0,4876,4915,4916,4877,4746,4785,4786,4747,43,4785,4787,4788,4786,0,4915,4917,4918,4916,4785,4787,4788,4786,43,4786,4788,4789,4790,0,4916,4918,4919,4920,4786,4788,4789,4790,43,4747,4786,4790,4184,0,4877,4916,4920,4311,4747,4786,4790,4184,43,4787,4791,4792,4788,0,4917,4921,4922,4918,4787,4791,4792,4788,43,4791,4779,4782,4792,0,4921,4909,4912,4922,4791,4779,4782,4792,43,4792,4782,4784,4793,0,4922,4912,4914,4923,4792,4782,4784,4793,43,4788,4792,4793,4789,0,4918,4922,4923,4919,4788,4792,4793,4789,43,4774,4794,4795,4775,0,4904,4924,4925,4905,4774,4794,4795,4775,43,4794,4796,4797,4795,0,4924,4926,4927,4925,4794,4796,4797,4795,43,4795,4797,4798,4799,0,4925,4927,4928,4929,4795,4797,4798,4799,43,4775,4795,4799,4776,0,4905,4925,4929,4906,4775,4795,4799,4776,43,4796,4800,4801,4797,0,4926,4930,4931,4927,4796,4800,4801,4797,43,4800,4748,4751,4801,0,4930,4878,4881,4931,4800,4748,4751,4801,43,4801,4751,4755,4802,0,4931,4881,4885,4932,4801,4751,4755,4802,43,4797,4801,4802,4798,0,4927,4931,4932,4928,4797,4801,4802,4798,43,4803,4804,4805,4806,0,4933,4934,4935,4936,4803,4804,4805,4806,43,4804,4798,4802,4805,0,4934,4928,4932,4935,4804,4798,4802,4805,43,4806,4805,4802,4755,0,4936,4935,4932,4885,4806,4805,4802,4755,43,4803,4807,4808,4804,0,4933,4937,4938,4934,4803,4807,4808,4804,43,4807,4809,4810,4808,0,4937,4939,4940,4938,4807,4809,4810,4808,43,4808,4810,4776,4799,0,4938,4940,4906,4929,4808,4810,4776,4799,43,4804,4808,4799,4798,0,4934,4938,4929,4928,4804,4808,4799,4798,43,4809,4811,4812,4810,0,4939,4941,4942,4940,4809,4811,4812,4810,43,4811,4813,4814,4812,0,4941,4943,4944,4942,4811,4813,4814,4812,43,4812,4814,4778,4777,0,4942,4944,4908,4907,4812,4814,4778,4777,43,4810,4812,4777,4776,0,4940,4942,4907,4906,4810,4812,4777,4776,43,4813,4815,4816,4814,0,4943,4945,4946,4944,4813,4815,4816,4814,43,4815,4817,4818,4816,0,4945,4947,4948,4946,4815,4817,4818,4816,43,4816,4818,4784,4783,0,4946,4948,4914,4913,4816,4818,4784,4783,43,4814,4816,4783,4778,0,4944,4946,4913,4908,4814,4816,4783,4778,43,4819,4820,4821,4822,0,4949,4950,4951,4952,4819,4820,4821,4822,43,4820,4789,4793,4821,0,4950,4919,4923,4951,4820,4789,4793,4821,43,4821,4793,4784,4818,0,4951,4923,4914,4948,4821,4793,4784,4818,43,4822,4821,4818,4817,0,4952,4951,4948,4947,4822,4821,4818,4817,43,4819,4823,4824,4820,0,4949,4953,4954,4950,4819,4823,4824,4820,43,4823,4184,4790,4824,0,4953,4311,4920,4954,4823,4184,4790,4824,43,4820,4824,4790,4789,0,4950,4954,4920,4919,4820,4824,4790,4789,43,4825,4826,4827,4828,0,4955,4956,4957,4958,4825,4826,4827,4828,43,4826,4829,4830,4827,0,4956,4959,4960,4957,4826,4829,4830,4827,43,4827,4830,4831,4832,0,4957,4960,4961,4962,4827,4830,4831,4832,43,4828,4827,4832,4833,0,4958,4957,4962,4963,4828,4827,4832,4833,43,4833,4832,4834,4835,0,4963,4962,4964,4965,4833,4832,4834,4835,43,4832,4831,4836,4834,0,4962,4961,4966,4964,4832,4831,4836,4834,43,4834,4836,4837,4838,0,4964,4966,4967,4968,4834,4836,4837,4838,43,4835,4834,4838,4839,0,4965,4964,4968,4969,4835,4834,4838,4839,43,4837,4840,4841,4838,0,4967,4970,4971,4968,4837,4840,4841,4838,43,4840,4842,4843,4841,0,4970,4972,4973,4971,4840,4842,4843,4841,43,4841,4843,4844,4845,0,4971,4973,4974,4975,4841,4843,4844,4845,43,4838,4841,4845,4839,0,4968,4971,4975,4969,4838,4841,4845,4839,43,4846,4847,4848,4849,0,4976,4977,4978,4979,4846,4847,4848,4849,43,4847,4850,4851,4848,0,4977,4980,4981,4978,4847,4850,4851,4848,43,4848,4851,4852,4853,0,4978,4981,4982,4983,4848,4851,4852,4853,43,4849,4848,4853,4854,0,4979,4978,4983,4984,4849,4848,4853,4854,43,4855,4856,4857,4858,0,4985,4986,4987,4988,4855,4856,4857,4858,43,4856,4859,4860,4857,0,4986,4989,4990,4987,4856,4859,4860,4857,43,4857,4860,4846,4849,0,4987,4990,4976,4979,4857,4860,4846,4849,43,4858,4857,4849,4854,0,4988,4987,4979,4984,4858,4857,4849,4854,43,4861,4862,4863,4864,0,4991,4992,4993,4994,4861,4862,4863,4864,43,4862,4865,4866,4863,0,4992,4995,4996,4993,4862,4865,4866,4863,43,4863,4866,4867,4868,0,4993,4996,4997,4998,4863,4866,4867,4868,43,4864,4863,4868,4869,0,4994,4993,4998,4999,4864,4863,4868,4869,43,4870,4871,4872,4873,0,5000,5001,5002,5003,4870,4871,4872,4873,43,4871,4869,4868,4872,0,5001,4999,4998,5002,4871,4869,4868,4872,43,4872,4868,4867,4874,0,5002,4998,4997,5004,4872,4868,4867,4874,43,4873,4872,4874,4875,0,5003,5002,5004,5005,4873,4872,4874,4875,43,4876,4877,4878,4879,0,5006,5007,5008,5009,4876,4877,4878,4879,43,4877,4875,4880,4878,0,5007,5005,5010,5008,4877,4875,4880,4878,43,4878,4880,4881,4882,0,5008,5010,5011,5012,4878,4880,4881,4882,43,4879,4878,4882,4883,0,5009,5008,5012,5013,4879,4878,4882,4883,43,4875,4884,4885,4880,0,5005,5014,5015,5010,4875,4884,4885,4880,43,4884,4886,4887,4885,0,5014,5016,5017,5015,4884,4886,4887,4885,43,4885,4887,4888,4889,0,5015,5017,5018,5019,4885,4887,4888,4889,43,4880,4885,4889,4881,0,5010,5015,5019,5011,4880,4885,4889,4881,43,4890,4891,4892,4893,0,5020,5021,5022,5023,4890,4891,4892,4893,43,4891,4886,4884,4892,0,5021,5016,5014,5022,4891,4886,4884,4892,43,4892,4884,4875,4874,0,5022,5014,5005,5004,4892,4884,4875,4874,43,4893,4892,4874,4867,0,5023,5022,5004,4997,4893,4892,4874,4867,43,4894,4895,4896,4897,0,5024,5025,5026,5027,4894,4895,4896,4897,43,4895,4898,4899,4896,0,5025,5028,5029,5026,4895,4898,4899,4896,43,4896,4899,4900,4901,0,5026,5029,5030,5031,4896,4899,4900,4901,43,4897,4896,4901,4902,0,5027,5026,5031,5032,4897,4896,4901,4902,43,4903,4904,4905,4906,0,5033,5034,5035,5036,4903,4904,4905,4906,43,4904,4907,4908,4905,0,5034,5037,5038,5035,4904,4907,4908,4905,43,4905,4908,4909,4910,0,5035,5038,5039,5040,4905,4908,4909,4910,43,4906,4905,4910,4911,0,5036,5035,5040,5041,4906,4905,4910,4911,43,4912,4913,4914,4915,0,5042,5043,5044,5045,4912,4913,4914,4915,43,4913,4916,4917,4914,0,5043,5046,5047,5044,4913,4916,4917,4914,43,4914,4917,4890,4893,0,5044,5047,5020,5023,4914,4917,4890,4893,43,4915,4914,4893,4867,0,5045,5044,5023,4997,4915,4914,4893,4867,43,4918,4919,4920,4921,0,5048,5049,5050,5051,4918,4919,4920,4921,43,4919,4916,4913,4920,0,5049,5046,5043,5050,4919,4916,4913,4920,43,4920,4913,4912,4922,0,5050,5043,5042,5052,4920,4913,4912,4922,43,4921,4920,4922,4923,0,5051,5050,5052,5053,4921,4920,4922,4923,43,4909,4908,4924,4925,0,5039,5038,5054,5055,4909,4908,4924,4925,43,4908,4907,4926,4924,0,5038,5037,5056,5054,4908,4907,4926,4924,43,4924,4926,4927,4928,0,5054,5056,5057,5058,4924,4926,4927,4928,43,4925,4924,4928,4929,0,5055,5054,5058,5059,4925,4924,4928,4929,43,4930,4931,4932,4933,0,5060,5061,5062,5063,4930,4931,4932,4933,43,4931,4934,4935,4932,0,5061,5064,5065,5062,4931,4934,4935,4932,43,4932,4935,4936,4937,0,5062,5065,5066,5067,4932,4935,4936,4937,43,4933,4932,4937,4938,0,5063,5062,5067,5068,4933,4932,4937,4938,43,4938,4939,4940,4933,0,5068,5069,5070,5063,4938,4939,4940,4933,43,4939,4941,4942,4940,0,5069,5071,5072,5070,4939,4941,4942,4940,43,4940,4942,4943,4944,0,5070,5072,5073,5074,4940,4942,4943,4944,43,4933,4940,4944,4930,0,5063,5070,5074,5060,4933,4940,4944,4930,43,4945,4946,4947,4948,0,5075,5076,5077,5078,4945,4946,4947,4948,43,4946,4949,4950,4947,0,5076,5079,5080,5077,4946,4949,4950,4947,43,4947,4950,4951,4952,0,5077,5080,5081,5082,4947,4950,4951,4952,43,4948,4947,4952,4846,0,5078,5077,5082,4976,4948,4947,4952,4846,43,4859,4953,4954,4860,0,4989,5083,5084,4990,4859,4953,4954,4860,43,4953,4955,4956,4954,0,5083,5085,5086,5084,4953,4955,4956,4954,43,4954,4956,4945,4948,0,5084,5086,5075,5078,4954,4956,4945,4948,43,4860,4954,4948,4846,0,4990,5084,5078,4976,4860,4954,4948,4846,43,4957,4958,4959,4960,0,5087,5088,5089,5090,4957,4958,4959,4960,43,4958,4961,4962,4959,0,5088,5091,5092,5089,4958,4961,4962,4959,43,4959,4962,4949,4946,0,5089,5092,5079,5076,4959,4962,4949,4946,43,4960,4959,4946,4945,0,5090,5089,5076,5075,4960,4959,4946,4945,43,4955,4963,4964,4956,0,5085,5093,5094,5086,4955,4963,4964,4956,43,4963,4965,4966,4964,0,5093,5095,5096,5094,4963,4965,4966,4964,43,4964,4966,4957,4960,0,5094,5096,5087,5090,4964,4966,4957,4960,43,4956,4964,4960,4945,0,5086,5094,5090,5075,4956,4964,4960,4945,43,4876,4879,4967,4968,0,5006,5009,5097,5098,4876,4879,4967,4968,43,4879,4883,4969,4967,0,5009,5013,5099,5097,4879,4883,4969,4967,43,4967,4969,4965,4963,0,5097,5099,5095,5093,4967,4969,4965,4963,43,4968,4967,4963,4955,0,5098,5097,5093,5085,4968,4967,4963,4955,43,4903,4970,4971,4904,0,5033,5100,5101,5034,4903,4970,4971,4904,43,4970,4972,4973,4971,0,5100,5102,5103,5101,4970,4972,4973,4971,43,4971,4973,4974,4975,0,5101,5103,5104,5105,4971,4973,4974,4975,43,4904,4971,4975,4907,0,5034,5101,5105,5037,4904,4971,4975,4907,43,4976,4977,4978,4979,0,5106,5107,5108,5109,4976,4977,4978,4979,43,4977,4936,4980,4978,0,5107,5066,5110,5108,4977,4936,4980,4978,43,4978,4980,4974,4973,0,5108,5110,5104,5103,4978,4980,4974,4973,43,4979,4978,4973,4972,0,5109,5108,5103,5102,4979,4978,4973,4972,43,4883,4882,4981,4982,0,5013,5012,5111,5112,4883,4882,4981,4982,43,4882,4881,4983,4981,0,5012,5011,5113,5111,4882,4881,4983,4981,43,4981,4983,4984,4985,0,5111,5113,5114,5115,4981,4983,4984,4985,43,4982,4981,4985,4976,0,5112,5111,5115,5106,4982,4981,4985,4976,43,4881,4889,4986,4983,0,5011,5019,5116,5113,4881,4889,4986,4983,43,4889,4888,4987,4986,0,5019,5018,5117,5116,4889,4888,4987,4986,43,4986,4987,4988,4989,0,5116,5117,5118,5119,4986,4987,4988,4989,43,4983,4986,4989,4984,0,5113,5116,5119,5114,4983,4986,4989,4984,43,4984,4989,4990,4991,0,5114,5119,5120,5121,4984,4989,4990,4991,43,4989,4988,4992,4990,0,5119,5118,5122,5120,4989,4988,4992,4990,43,4990,4992,4993,4994,0,5120,5122,5123,5124,4990,4992,4993,4994,43,4991,4990,4994,4938,0,5121,5120,5124,5068,4991,4990,4994,4938,43,4984,4991,4995,4985,0,5114,5121,5125,5115,4984,4991,4995,4985,43,4991,4938,4937,4995,0,5121,5068,5067,5125,4991,4938,4937,4995,43,4995,4937,4936,4977,0,5125,5067,5066,5107,4995,4937,4936,4977,43,4985,4995,4977,4976,0,5115,5125,5107,5106,4985,4995,4977,4976,43,4965,4969,4996,4997,0,5095,5099,5126,5127,4965,4969,4996,4997,43,4969,4883,4982,4996,0,5099,5013,5112,5126,4969,4883,4982,4996,43,4996,4982,4976,4979,0,5126,5112,5106,5109,4996,4982,4976,4979,43,4997,4996,4979,4972,0,5127,5126,5109,5102,4997,4996,4979,4972,43,4965,4997,4998,4966,0,5095,5127,5128,5096,4965,4997,4998,4966,43,4997,4972,4970,4998,0,5127,5102,5100,5128,4997,4972,4970,4998,43,4998,4970,4903,4999,0,5128,5100,5033,5129,4998,4970,4903,4999,43,4966,4998,4999,4957,0,5096,5128,5129,5087,4966,4998,4999,4957,43,4957,4999,5000,4958,0,5087,5129,5130,5088,4957,4999,5000,4958,43,4999,4903,4906,5000,0,5129,5033,5036,5130,4999,4903,4906,5000,43,5000,4906,4911,5001,0,5130,5036,5041,5131,5000,4906,4911,5001,43,4958,5000,5001,4961,0,5088,5130,5131,5091,4958,5000,5001,4961,43,4909,4925,5002,5003,0,5039,5055,5132,5133,4909,4925,5002,5003,43,4925,4929,5004,5002,0,5055,5059,5134,5132,4925,4929,5004,5002,43,5002,5004,5005,5006,0,5132,5134,5135,5136,5002,5004,5005,5006,43,5003,5002,5006,5007,0,5133,5132,5136,5137,5003,5002,5006,5007,43,4911,4910,5008,5009,0,5041,5040,5138,5139,4911,4910,5008,5009,43,4910,4909,5003,5008,0,5040,5039,5133,5138,4910,4909,5003,5008,43,5008,5003,5007,5010,0,5138,5133,5137,5140,5008,5003,5007,5010,43,5009,5008,5010,5011,0,5139,5138,5140,5141,5009,5008,5010,5011,43,5007,5006,5012,5013,0,5137,5136,5142,5143,5007,5006,5012,5013,43,5006,5005,5014,5012,0,5136,5135,5144,5142,5006,5005,5014,5012,43,5012,5014,4635,4633,0,5142,5144,4765,4763,5012,5014,4635,4633,43,5013,5012,4633,4631,0,5143,5142,4763,4761,5013,5012,4633,4631,43,5011,5010,5015,5016,0,5141,5140,5145,5146,5011,5010,5015,5016,43,5010,5007,5013,5015,0,5140,5137,5143,5145,5010,5007,5013,5015,43,5015,5013,4631,4629,0,5145,5143,4761,4759,5015,5013,4631,4629,43,5016,5015,4629,4628,0,5146,5145,4759,4758,5016,5015,4629,4628,43,4596,5017,5018,4627,0,4726,5147,5148,4757,4596,5017,5018,4627,43,5017,5019,5020,5018,0,5147,5149,5150,5148,5017,5019,5020,5018,43,5018,5020,5011,5016,0,5148,5150,5141,5146,5018,5020,5011,5016,43,4627,5018,5016,4628,0,4757,5148,5146,4758,4627,5018,5016,4628,43,4961,5001,5021,5022,0,5091,5131,5151,5152,4961,5001,5021,5022,43,5001,4911,5009,5021,0,5131,5041,5139,5151,5001,4911,5009,5021,43,5021,5009,5011,5020,0,5151,5139,5141,5150,5021,5009,5011,5020,43,5022,5021,5020,5019,0,5152,5151,5150,5149,5022,5021,5020,5019,43,4961,5022,5023,4962,0,5091,5152,5153,5092,4961,5022,5023,4962,43,5022,5019,5024,5023,0,5152,5149,5154,5153,5022,5019,5024,5023,43,5023,5024,5025,5026,0,5153,5154,5155,5156,5023,5024,5025,5026,43,4962,5023,5026,4949,0,5092,5153,5156,5079,4962,5023,5026,4949,43,5025,5027,5028,5026,0,5155,5157,5158,5156,5025,5027,5028,5026,43,5027,5029,5030,5028,0,5157,5159,5160,5158,5027,5029,5030,5028,43,5028,5030,4951,4950,0,5158,5160,5081,5080,5028,5030,4951,4950,43,5026,5028,4950,4949,0,5156,5158,5080,5079,5026,5028,4950,4949,43,4951,5031,5032,4952,0,5081,5161,5162,5082,4951,5031,5032,4952,43,5031,5033,5034,5032,0,5161,5163,5164,5162,5031,5033,5034,5032,43,5032,5034,4850,4847,0,5162,5164,4980,4977,5032,5034,4850,4847,43,4952,5032,4847,4846,0,5082,5162,4977,4976,4952,5032,4847,4846,43,5029,5035,5036,5030,0,5159,5165,5166,5160,5029,5035,5036,5030,43,5035,5037,5038,5036,0,5165,5167,5168,5166,5035,5037,5038,5036,43,5036,5038,5033,5031,0,5166,5168,5163,5161,5036,5038,5033,5031,43,5030,5036,5031,4951,0,5160,5166,5161,5081,5030,5036,5031,4951,43,4584,4587,5039,5040,0,4714,4717,5169,5170,4584,4587,5039,5040,43,4587,4399,5041,5039,0,4717,4527,5171,5169,4587,4399,5041,5039,43,5039,5041,5037,5035,0,5169,5171,5167,5165,5039,5041,5037,5035,43,5040,5039,5035,5029,0,5170,5169,5165,5159,5040,5039,5035,5029,43,4594,4624,5042,5043,0,4724,4754,5172,5173,4594,4624,5042,5043,43,4624,4584,5040,5042,0,4754,4714,5170,5172,4624,4584,5040,5042,43,5042,5040,5029,5027,0,5172,5170,5159,5157,5042,5040,5029,5027,43,5043,5042,5027,5025,0,5173,5172,5157,5155,5043,5042,5027,5025,43,4596,4595,5044,5017,0,4726,4725,5174,5147,4596,4595,5044,5017,43,4595,4594,5043,5044,0,4725,4724,5173,5174,4595,4594,5043,5044,43,5044,5043,5025,5024,0,5174,5173,5155,5154,5044,5043,5025,5024,43,5017,5044,5024,5019,0,5147,5174,5154,5149,5017,5044,5024,5019,43,5045,5046,5047,5048,0,5175,5176,5177,5178,5045,5046,5047,5048,43,5046,5049,5050,5047,0,5176,5179,5180,5177,5046,5049,5050,5047,43,5047,5050,5051,5052,0,5177,5180,5181,5182,5047,5050,5051,5052,43,5048,5047,5052,5053,0,5178,5177,5182,5183,5048,5047,5052,5053,43,4941,5054,5055,4942,0,5071,5184,5185,5072,4941,5054,5055,4942,43,5054,5051,5050,5055,0,5184,5181,5180,5185,5054,5051,5050,5055,43,5055,5050,5049,5056,0,5185,5180,5179,5186,5055,5050,5049,5056,43,4942,5055,5056,4943,0,5072,5185,5186,5073,4942,5055,5056,4943,43,4993,5057,5058,4994,0,5123,5187,5188,5124,4993,5057,5058,4994,43,5057,5059,5060,5058,0,5187,5189,5190,5188,5057,5059,5060,5058,43,5058,5060,4941,4939,0,5188,5190,5071,5069,5058,5060,4941,4939,43,4994,5058,4939,4938,0,5124,5188,5069,5068,4994,5058,4939,4938,43,5059,5061,5062,5060,0,5189,5191,5192,5190,5059,5061,5062,5060,43,5061,5063,5064,5062,0,5191,5193,5194,5192,5061,5063,5064,5062,43,5062,5064,5051,5054,0,5192,5194,5181,5184,5062,5064,5051,5054,43,5060,5062,5054,4941,0,5190,5192,5184,5071,5060,5062,5054,4941,43,5063,5065,5066,5064,0,5193,5195,5196,5194,5063,5065,5066,5064,43,5065,5067,5068,5066,0,5195,5197,5198,5196,5065,5067,5068,5066,43,5066,5068,5053,5052,0,5196,5198,5183,5182,5066,5068,5053,5052,43,5064,5066,5052,5051,0,5194,5196,5182,5181,5064,5066,5052,5051,43,5069,5070,5071,5072,0,5199,5200,5201,5202,5069,5070,5071,5072,43,5070,5073,5074,5071,0,5200,5203,5204,5201,5070,5073,5074,5071,43,5071,5074,4918,4921,0,5201,5204,5048,5051,5071,5074,4918,4921,43,5072,5071,4921,4923,0,5202,5201,5051,5053,5072,5071,4921,4923,43,5075,5076,5077,5078,0,5205,5206,5207,5208,5075,5076,5077,5078,43,5076,5073,5070,5077,0,5206,5203,5200,5207,5076,5073,5070,5077,43,5077,5070,5069,5079,0,5207,5200,5199,5209,5077,5070,5069,5079,43,5078,5077,5079,5080,0,5208,5207,5209,5210,5078,5077,5079,5080,43,5053,5068,5081,5082,0,5183,5198,5211,5212,5053,5068,5081,5082,43,5068,5067,5083,5081,0,5198,5197,5213,5211,5068,5067,5083,5081,43,5081,5083,5073,5076,0,5211,5213,5203,5206,5081,5083,5073,5076,43,5082,5081,5076,5075,0,5212,5211,5206,5205,5082,5081,5076,5075,43,5045,5048,5084,5085,0,5175,5178,5214,5215,5045,5048,5084,5085,43,5048,5053,5082,5084,0,5178,5183,5212,5214,5048,5053,5082,5084,43,5084,5082,5075,5086,0,5214,5212,5205,5216,5084,5082,5075,5086,43,5085,5084,5086,5087,0,5215,5214,5216,5217,5085,5084,5086,5087,43,5087,5086,5088,5089,0,5217,5216,5218,5219,5087,5086,5088,5089,43,5086,5075,5078,5088,0,5216,5205,5208,5218,5086,5075,5078,5088,43,5088,5078,5080,5090,0,5218,5208,5210,5220,5088,5078,5080,5090,43,5089,5088,5090,5091,0,5219,5218,5220,5221,5089,5088,5090,5091,43,5091,5090,5092,5093,0,5221,5220,5222,5223,5091,5090,5092,5093,43,5090,5080,5094,5092,0,5220,5210,5224,5222,5090,5080,5094,5092,43,5092,5094,5095,5096,0,5222,5224,5225,5226,5092,5094,5095,5096,43,5093,5092,5096,5097,0,5223,5222,5226,5227,5093,5092,5096,5097,43,5080,5079,5098,5094,0,5210,5209,5228,5224,5080,5079,5098,5094,43,5079,5069,5072,5098,0,5209,5199,5202,5228,5079,5069,5072,5098,43,5098,5072,4923,5099,0,5228,5202,5053,5229,5098,5072,4923,5099,43,5094,5098,5099,5095,0,5224,5228,5229,5225,5094,5098,5099,5095,43,5100,5101,5102,5103,0,5230,5231,5232,5233,5100,5101,5102,5103,43,5101,5095,5099,5102,0,5231,5225,5229,5232,5101,5095,5099,5102,43,5102,5099,4923,5104,0,5232,5229,5053,5234,5102,5099,4923,5104,43,5103,5102,5104,5105,0,5233,5232,5234,5235,5103,5102,5104,5105,43,5106,5107,5108,5109,0,5236,5237,5238,5239,5106,5107,5108,5109,43,5107,5110,5111,5108,0,5237,5240,5241,5238,5107,5110,5111,5108,43,5108,5111,5112,5113,0,5238,5241,5242,5243,5108,5111,5112,5113,43,5109,5108,5113,5114,0,5239,5238,5243,5244,5109,5108,5113,5114,43,5106,5109,5115,5116,0,5236,5239,5245,5246,5106,5109,5115,5116,43,5109,5114,5117,5115,0,5239,5244,5247,5245,5109,5114,5117,5115,43,5115,5117,5118,5119,0,5245,5247,5248,5249,5115,5117,5118,5119,43,5116,5115,5119,5100,0,5246,5245,5249,5230,5116,5115,5119,5100,43,5100,5119,5120,5101,0,5230,5249,5250,5231,5100,5119,5120,5101,43,5119,5118,5121,5120,0,5249,5248,5251,5250,5119,5118,5121,5120,43,5120,5121,5097,5096,0,5250,5251,5227,5226,5120,5121,5097,5096,43,5101,5120,5096,5095,0,5231,5250,5226,5225,5101,5120,5096,5095,43,4907,4975,5122,4926,0,5037,5105,5252,5056,4907,4975,5122,4926,43,4975,4974,5123,5122,0,5105,5104,5253,5252,4975,4974,5123,5122,43,5122,5123,5124,5125,0,5252,5253,5254,5255,5122,5123,5124,5125,43,4926,5122,5125,4927,0,5056,5252,5255,5057,4926,5122,5125,4927,43,4936,4935,5126,4980,0,5066,5065,5256,5110,4936,4935,5126,4980,43,4935,4934,5127,5126,0,5065,5064,5257,5256,4935,4934,5127,5126,43,5126,5127,5124,5123,0,5256,5257,5254,5253,5126,5127,5124,5123,43,4980,5126,5123,4974,0,5110,5256,5253,5104,4980,5126,5123,4974,43,149,148,5128,4716,0,149,148,5258,4846,149,148,5128,4716,43,148,147,5129,5128,0,148,147,5259,5258,148,147,5129,5128,43,5128,5129,5130,5131,0,5258,5259,5260,5261,5128,5129,5130,5131,43,4716,5128,5131,4717,0,4846,5258,5261,4847,4716,5128,5131,4717,43,3080,3082,5132,5133,0,3206,3208,5262,5263,3080,3082,5132,5133,43,3082,2140,4720,5132,0,3208,2266,4850,5262,3082,2140,4720,5132,43,5132,4720,4719,5134,0,5262,4850,4849,5264,5132,4720,4719,5134,43,5133,5132,5134,5135,0,5263,5262,5264,5265,5133,5132,5134,5135,43,5135,5136,5137,5138,0,5265,5266,5267,5268,5135,5136,5137,5138,43,5136,5139,5140,5137,0,5266,5269,5270,5267,5136,5139,5140,5137,43,5137,5140,4825,5141,0,5267,5270,4955,5271,5137,5140,4825,5141,43,5138,5137,5141,5142,0,5268,5267,5271,5272,5138,5137,5141,5142,43,2795,3078,5143,5144,0,2921,3204,5273,5274,2795,3078,5143,5144,43,3078,3080,5133,5143,0,3204,3206,5263,5273,3078,3080,5133,5143,43,5143,5133,5135,5138,0,5273,5263,5265,5268,5143,5133,5135,5138,43,5144,5143,5138,5142,0,5274,5273,5268,5272,5144,5143,5138,5142,43,4717,5145,5146,4718,0,4847,5275,5276,4848,4717,5145,5146,4718,43,5145,5139,5136,5146,0,5275,5269,5266,5276,5145,5139,5136,5146,43,5146,5136,5135,5134,0,5276,5266,5265,5264,5146,5136,5135,5134,43,4718,5146,5134,4719,0,4848,5276,5264,4849,4718,5146,5134,4719,43,5147,5148,5149,5150,0,5277,5278,5279,5280,5147,5148,5149,5150,43,5148,5151,5152,5149,0,5278,5281,5282,5279,5148,5151,5152,5149,43,5149,5152,4831,4830,0,5279,5282,4961,4960,5149,5152,4831,4830,43,5150,5149,4830,4829,0,5280,5279,4960,4959,5150,5149,4830,4829,43,4787,4785,5153,5154,0,4917,4915,5283,5284,4787,4785,5153,5154,43,4785,4746,5155,5153,0,4915,4876,5285,5283,4785,4746,5155,5153,43,5153,5155,5147,5156,0,5283,5285,5277,5286,5153,5155,5147,5156,43,5154,5153,5156,5157,0,5284,5283,5286,5287,5154,5153,5156,5157,43,5147,5155,5158,5148,0,5277,5285,5288,5278,5147,5155,5158,5148,43,5155,4746,4744,5158,0,5285,4876,4874,5288,5155,4746,4744,5158,43,5158,4744,4732,5159,0,5288,4874,4862,5289,5158,4744,4732,5159,43,5148,5158,5159,5151,0,5278,5288,5289,5281,5148,5158,5159,5151,43,5160,5161,5162,5163,0,5290,5291,5292,5293,5160,5161,5162,5163,43,5161,5164,5165,5162,0,5291,5294,5295,5292,5161,5164,5165,5162,43,5162,5165,5166,5167,0,5292,5295,5296,5297,5162,5165,5166,5167,43,5163,5162,5167,5168,0,5293,5292,5297,5298,5163,5162,5167,5168,43,4898,5169,5170,4899,0,5028,5299,5300,5029,4898,5169,5170,4899,43,5169,5171,5172,5170,0,5299,5301,5302,5300,5169,5171,5172,5170,43,5170,5172,5168,5173,0,5300,5302,5298,5303,5170,5172,5168,5173,43,4899,5170,5173,4900,0,5029,5300,5303,5030,4899,5170,5173,4900,43,5174,5175,5176,5177,0,5304,5305,5306,5307,5174,5175,5176,5177,43,5175,5178,5179,5176,0,5305,5308,5309,5306,5175,5178,5179,5176,43,5176,5179,5171,5169,0,5306,5309,5301,5299,5176,5179,5171,5169,43,5177,5176,5169,4898,0,5307,5306,5299,5028,5177,5176,5169,4898,43,5180,5181,5182,5183,0,5310,5311,5312,5313,5180,5181,5182,5183,43,5181,5178,5175,5182,0,5311,5308,5305,5312,5181,5178,5175,5182,43,5182,5175,5174,5184,0,5312,5305,5304,5314,5182,5175,5174,5184,43,5183,5182,5184,5185,0,5313,5312,5314,5315,5183,5182,5184,5185,43,4861,4864,5186,5187,0,4991,4994,5316,5317,4861,4864,5186,5187,43,4864,4869,4871,5186,0,4994,4999,5001,5316,4864,4869,4871,5186,43,5186,4871,4870,5188,0,5316,5001,5000,5318,5186,4871,4870,5188,43,5187,5186,5188,5189,0,5317,5316,5318,5319,5187,5186,5188,5189,43,5189,5188,5190,5191,0,5319,5318,5320,5321,5189,5188,5190,5191,43,5188,4870,4873,5190,0,5318,5000,5003,5320,5188,4870,4873,5190,43,5190,4873,4875,4877,0,5320,5003,5005,5007,5190,4873,4875,4877,43,5191,5190,4877,4876,0,5321,5320,5007,5006,5191,5190,4877,4876,43,4876,4968,5192,5191,0,5006,5098,5322,5321,4876,4968,5192,5191,43,4968,4955,4953,5192,0,5098,5085,5083,5322,4968,4955,4953,5192,43,5192,4953,4859,5193,0,5322,5083,4989,5323,5192,4953,4859,5193,43,5191,5192,5193,5189,0,5321,5322,5323,5319,5191,5192,5193,5189,43,5194,5195,5196,5197,0,5324,5325,5326,5327,5194,5195,5196,5197,43,5195,5189,5193,5196,0,5325,5319,5323,5326,5195,5189,5193,5196,43,5196,5193,4859,4856,0,5326,5323,4989,4986,5196,5193,4859,4856,43,5197,5196,4856,4855,0,5327,5326,4986,4985,5197,5196,4856,4855,43,5198,5199,5200,5201,0,5328,5329,5330,5331,5198,5199,5200,5201,43,5199,4861,5187,5200,0,5329,4991,5317,5330,5199,4861,5187,5200,43,5200,5187,5189,5195,0,5330,5317,5319,5325,5200,5187,5189,5195,43,5201,5200,5195,5194,0,5331,5330,5325,5324,5201,5200,5195,5194,43,5202,5203,5204,5205,0,5332,5333,5334,5335,5202,5203,5204,5205,43,5203,5206,5207,5204,0,5333,5336,5337,5334,5203,5206,5207,5204,43,5204,5207,5208,5209,0,5334,5337,5338,5339,5204,5207,5208,5209,43,5205,5204,5209,5210,0,5335,5334,5339,5340,5205,5204,5209,5210,43,5206,5211,5212,5207,0,5336,5341,5342,5337,5206,5211,5212,5207,43,5211,5198,5201,5212,0,5341,5328,5331,5342,5211,5198,5201,5212,43,5212,5201,5194,5213,0,5342,5331,5324,5343,5212,5201,5194,5213,43,5207,5212,5213,5208,0,5337,5342,5343,5338,5207,5212,5213,5208,43,5214,5215,5216,5217,0,5344,5345,5346,5347,5214,5215,5216,5217,43,5215,4865,4862,5216,0,5345,4995,4992,5346,5215,4865,4862,5216,43,5216,4862,4861,5218,0,5346,4992,4991,5348,5216,4862,4861,5218,43,5217,5216,5218,5219,0,5347,5346,5348,5349,5217,5216,5218,5219,43,4912,5220,5221,4922,0,5042,5350,5351,5052,4912,5220,5221,4922,43,5220,5214,5222,5221,0,5350,5344,5352,5351,5220,5214,5222,5221,43,5221,5222,5105,5104,0,5351,5352,5235,5234,5221,5222,5105,5104,43,4922,5221,5104,4923,0,5052,5351,5234,5053,4922,5221,5104,4923,43,4867,4866,5223,4915,0,4997,4996,5353,5045,4867,4866,5223,4915,43,4866,4865,5215,5223,0,4996,4995,5345,5353,4866,4865,5215,5223,43,5223,5215,5214,5220,0,5353,5345,5344,5350,5223,5215,5214,5220,43,4915,5223,5220,4912,0,5045,5353,5350,5042,4915,5223,5220,4912,43,5219,5224,5225,5226,0,5349,5354,5355,5356,5219,5224,5225,5226,43,5224,5180,5183,5225,0,5354,5310,5313,5355,5224,5180,5183,5225,43,5225,5183,5185,5227,0,5355,5313,5315,5357,5225,5183,5185,5227,43,5226,5225,5227,5228,0,5356,5355,5357,5358,5226,5225,5227,5228,43,5228,5227,5229,5230,0,5358,5357,5359,5360,5228,5227,5229,5230,43,5227,5185,5231,5229,0,5357,5315,5361,5359,5227,5185,5231,5229,43,5229,5231,5110,5107,0,5359,5361,5240,5237,5229,5231,5110,5107,43,5230,5229,5107,5106,0,5360,5359,5237,5236,5230,5229,5107,5106,43,5105,5232,5233,5103,0,5235,5362,5363,5233,5105,5232,5233,5103,43,5232,5228,5230,5233,0,5362,5358,5360,5363,5232,5228,5230,5233,43,5233,5230,5106,5116,0,5363,5360,5236,5246,5233,5230,5106,5116,43,5103,5233,5116,5100,0,5233,5363,5246,5230,5103,5233,5116,5100,43,5105,5222,5234,5232,0,5235,5352,5364,5362,5105,5222,5234,5232,43,5222,5214,5217,5234,0,5352,5344,5347,5364,5222,5214,5217,5234,43,5234,5217,5219,5226,0,5364,5347,5349,5356,5234,5217,5219,5226,43,5232,5234,5226,5228,0,5362,5364,5356,5358,5232,5234,5226,5228,43,5198,5235,5236,5199,0,5328,5365,5366,5329,5198,5235,5236,5199,43,5235,5180,5224,5236,0,5365,5310,5354,5366,5235,5180,5224,5236,43,5236,5224,5219,5218,0,5366,5354,5349,5348,5236,5224,5219,5218,43,5199,5236,5218,4861,0,5329,5366,5348,4991,5199,5236,5218,4861,43,5178,5181,5237,5238,0,5308,5311,5367,5368,5178,5181,5237,5238,43,5181,5180,5235,5237,0,5311,5310,5365,5367,5181,5180,5235,5237,43,5237,5235,5198,5211,0,5367,5365,5328,5341,5237,5235,5198,5211,43,5238,5237,5211,5206,0,5368,5367,5341,5336,5238,5237,5211,5206,43,5171,5179,5239,5240,0,5301,5309,5369,5370,5171,5179,5239,5240,43,5179,5178,5238,5239,0,5309,5308,5368,5369,5179,5178,5238,5239,43,5239,5238,5206,5203,0,5369,5368,5336,5333,5239,5238,5206,5203,43,5240,5239,5203,5202,0,5370,5369,5333,5332,5240,5239,5203,5202,43,5171,5240,5241,5172,0,5301,5370,5371,5302,5171,5240,5241,5172,43,5240,5202,5242,5241,0,5370,5332,5372,5371,5240,5202,5242,5241,43,5241,5242,5160,5163,0,5371,5372,5290,5293,5241,5242,5160,5163,43,5172,5241,5163,5168,0,5302,5371,5293,5298,5172,5241,5163,5168,43,5243,5244,5245,5246,0,5373,5374,5375,5376,5243,5244,5245,5246,43,5244,5247,5248,5245,0,5374,5377,5378,5375,5244,5247,5248,5245,43,5245,5248,5164,5161,0,5375,5378,5294,5291,5245,5248,5164,5161,43,5246,5245,5161,5160,0,5376,5375,5291,5290,5246,5245,5161,5160,43,5160,5242,5249,5246,0,5290,5372,5379,5376,5160,5242,5249,5246,43,5242,5202,5205,5249,0,5372,5332,5335,5379,5242,5202,5205,5249,43,5249,5205,5210,5250,0,5379,5335,5340,5380,5249,5205,5210,5250,43,5246,5249,5250,5243,0,5376,5379,5380,5373,5246,5249,5250,5243,43,5208,5213,5251,5252,0,5338,5343,5381,5382,5208,5213,5251,5252,43,5213,5194,5197,5251,0,5343,5324,5327,5381,5213,5194,5197,5251,43,5251,5197,4855,5253,0,5381,5327,4985,5383,5251,5197,4855,5253,43,5252,5251,5253,5254,0,5382,5381,5383,5384,5252,5251,5253,5254,43,5210,5209,5255,5256,0,5340,5339,5385,5386,5210,5209,5255,5256,43,5209,5208,5252,5255,0,5339,5338,5382,5385,5209,5208,5252,5255,43,5255,5252,5254,5257,0,5385,5382,5384,5387,5255,5252,5254,5257,43,5256,5255,5257,5258,0,5386,5385,5387,5388,5256,5255,5257,5258,43,5254,5253,5259,5260,0,5384,5383,5389,5390,5254,5253,5259,5260,43,5253,4855,4858,5259,0,5383,4985,4988,5389,5253,4855,4858,5259,43,5259,4858,4854,5261,0,5389,4988,4984,5391,5259,4858,4854,5261,43,5260,5259,5261,5262,0,5390,5389,5391,5392,5260,5259,5261,5262,43,5262,5261,5263,5264,0,5392,5391,5393,5394,5262,5261,5263,5264,43,5261,4854,4853,5263,0,5391,4984,4983,5393,5261,4854,4853,5263,43,5263,4853,4852,5265,0,5393,4983,4982,5395,5263,4853,4852,5265,43,5264,5263,5265,5266,0,5394,5393,5395,5396,5264,5263,5265,5266,43,5267,5268,5269,5270,0,5397,5398,5399,5400,5267,5268,5269,5270,43,5268,5262,5264,5269,0,5398,5392,5394,5399,5268,5262,5264,5269,43,5269,5264,5266,5271,0,5399,5394,5396,5401,5269,5264,5266,5271,43,5270,5269,5271,4844,0,5400,5399,5401,4974,5270,5269,5271,4844,43,5267,5272,5273,5268,0,5397,5402,5403,5398,5267,5272,5273,5268,43,5272,5258,5257,5273,0,5402,5388,5387,5403,5272,5258,5257,5273,43,5273,5257,5254,5260,0,5403,5387,5384,5390,5273,5257,5254,5260,43,5268,5273,5260,5262,0,5398,5403,5390,5392,5268,5273,5260,5262,43,5274,5275,5276,5277,0,5404,5405,5406,5407,5274,5275,5276,5277,43,5275,5278,5279,5276,0,5405,5408,5409,5406,5275,5278,5279,5276,43,5276,5279,5258,5272,0,5406,5409,5388,5402,5276,5279,5258,5272,43,5277,5276,5272,5267,0,5407,5406,5402,5397,5277,5276,5272,5267,43,4842,5280,5281,4843,0,4972,5410,5411,4973,4842,5280,5281,4843,43,5280,5274,5277,5281,0,5410,5404,5407,5411,5280,5274,5277,5281,43,5281,5277,5267,5270,0,5411,5407,5397,5400,5281,5277,5267,5270,43,4843,5281,5270,4844,0,4973,5411,5400,4974,4843,5281,5270,4844,43,5282,5283,5284,5285,0,5412,5413,5414,5415,5282,5283,5284,5285,43,5283,5286,5287,5284,0,5413,5416,5417,5414,5283,5286,5287,5284,43,5284,5287,5274,5280,0,5414,5417,5404,5410,5284,5287,5274,5280,43,5285,5284,5280,4842,0,5415,5414,5410,4972,5285,5284,5280,4842,43,5286,5288,5289,5287,0,5416,5418,5419,5417,5286,5288,5289,5287,43,5288,5290,5291,5289,0,5418,5420,5421,5419,5288,5290,5291,5289,43,5289,5291,5278,5275,0,5419,5421,5408,5405,5289,5291,5278,5275,43,5287,5289,5275,5274,0,5417,5419,5405,5404,5287,5289,5275,5274,43,5278,5292,5293,5279,0,5408,5422,5423,5409,5278,5292,5293,5279,43,5292,5243,5250,5293,0,5422,5373,5380,5423,5292,5243,5250,5293,43,5293,5250,5210,5256,0,5423,5380,5340,5386,5293,5250,5210,5256,43,5279,5293,5256,5258,0,5409,5423,5386,5388,5279,5293,5256,5258,43,5290,5294,5295,5291,0,5420,5424,5425,5421,5290,5294,5295,5291,43,5294,5247,5244,5295,0,5424,5377,5374,5425,5294,5247,5244,5295,43,5295,5244,5243,5292,0,5425,5374,5373,5422,5295,5244,5243,5292,43,5291,5295,5292,5278,0,5421,5425,5422,5408,5291,5295,5292,5278,43,4726,4723,5296,5297,0,4856,4853,5426,5427,4726,4723,5296,5297,43,4723,4722,5298,5296,0,4853,4852,5428,5426,4723,4722,5298,5296,43,5296,5298,5247,5294,0,5426,5428,5377,5424,5296,5298,5247,5294,43,5297,5296,5294,5290,0,5427,5426,5424,5420,5297,5296,5294,5290,43,5299,5300,5301,5302,0,5429,5430,5431,5432,5299,5300,5301,5302,43,5300,5282,5285,5301,0,5430,5412,5415,5431,5300,5282,5285,5301,43,5301,5285,4842,4840,0,5431,5415,4972,4970,5301,5285,4842,4840,43,5302,5301,4840,4837,0,5432,5431,4970,4967,5302,5301,4840,4837,43,4831,5152,5303,4836,0,4961,5282,5433,4966,4831,5152,5303,4836,43,5152,5151,5304,5303,0,5282,5281,5434,5433,5152,5151,5304,5303,43,5303,5304,5299,5302,0,5433,5434,5429,5432,5303,5304,5299,5302,43,4836,5303,5302,4837,0,4966,5433,5432,4967,4836,5303,5302,4837,43,5151,5159,5305,5304,0,5281,5289,5435,5434,5151,5159,5305,5304,43,5159,4732,4729,5305,0,5289,4862,4859,5435,5159,4732,4729,5305,43,5305,4729,4728,5306,0,5435,4859,4858,5436,5305,4729,4728,5306,43,5304,5305,5306,5299,0,5434,5435,5436,5429,5304,5305,5306,5299,43,4728,4735,5307,5306,0,4858,4865,5437,5436,4728,4735,5307,5306,43,4735,4734,5308,5307,0,4865,4864,5438,5437,4735,4734,5308,5307,43,5307,5308,5282,5300,0,5437,5438,5412,5430,5307,5308,5282,5300,43,5306,5307,5300,5299,0,5436,5437,5430,5429,5306,5307,5300,5299,43,4738,4742,5309,5310,0,4868,4872,5439,5440,4738,4742,5309,5310,43,4742,4726,5297,5309,0,4872,4856,5427,5439,4742,4726,5297,5309,43,5309,5297,5290,5288,0,5439,5427,5420,5418,5309,5297,5290,5288,43,5310,5309,5288,5286,0,5440,5439,5418,5416,5310,5309,5288,5286,43,4734,4739,5311,5308,0,4864,4869,5441,5438,4734,4739,5311,5308,43,4739,4738,5310,5311,0,4869,4868,5440,5441,4739,4738,5310,5311,43,5311,5310,5286,5283,0,5441,5440,5416,5413,5311,5310,5286,5283,43,5308,5311,5283,5282,0,5438,5441,5413,5412,5308,5311,5283,5282,43,5247,5298,5312,5248,0,5377,5428,5442,5378,5247,5298,5312,5248,43,5298,4722,4761,5312,0,5428,4852,4891,5442,5298,4722,4761,5312,43,5312,4761,4760,5313,0,5442,4891,4890,5443,5312,4761,4760,5313,43,5248,5312,5313,5164,0,5378,5442,5443,5294,5248,5312,5313,5164,43,5164,5313,5314,5165,0,5294,5443,5444,5295,5164,5313,5314,5165,43,5313,4760,4765,5314,0,5443,4890,4895,5444,5313,4760,4765,5314,43,5314,4765,4764,5315,0,5444,4895,4894,5445,5314,4765,4764,5315,43,5165,5314,5315,5166,0,5295,5444,5445,5296,5165,5314,5315,5166,43,5110,5316,5317,5111,0,5240,5446,5447,5241,5110,5316,5317,5111,43,5316,5318,5319,5317,0,5446,5448,5449,5447,5316,5318,5319,5317,43,5317,5319,5320,5321,0,5447,5449,5450,5451,5317,5319,5320,5321,43,5111,5317,5321,5112,0,5241,5447,5451,5242,5111,5317,5321,5112,43,5185,5184,5322,5231,0,5315,5314,5452,5361,5185,5184,5322,5231,43,5184,5174,5323,5322,0,5314,5304,5453,5452,5184,5174,5323,5322,43,5322,5323,5318,5316,0,5452,5453,5448,5446,5322,5323,5318,5316,43,5231,5322,5316,5110,0,5361,5452,5446,5240,5231,5322,5316,5110,43,5174,5177,5324,5323,0,5304,5307,5454,5453,5174,5177,5324,5323,43,5177,4898,4895,5324,0,5307,5028,5025,5454,5177,4898,4895,5324,43,5324,4895,4894,5325,0,5454,5025,5024,5455,5324,4895,4894,5325,43,5323,5324,5325,5318,0,5453,5454,5455,5448,5323,5324,5325,5318,43,5318,5325,5326,5319,0,5448,5455,5456,5449,5318,5325,5326,5319,43,5325,4894,5327,5326,0,5455,5024,5457,5456,5325,4894,5327,5326,43,5326,5327,5328,5329,0,5456,5457,5458,5459,5326,5327,5328,5329,43,5319,5326,5329,5320,0,5449,5456,5459,5450,5319,5326,5329,5320,43,5330,5331,5332,5333,0,5460,5461,5462,5463,5330,5331,5332,5333,43,5331,5328,5327,5332,0,5461,5458,5457,5462,5331,5328,5327,5332,43,5332,5327,4894,4897,0,5462,5457,5024,5027,5332,5327,4894,4897,43,5333,5332,4897,4902,0,5463,5462,5027,5032,5333,5332,4897,4902,43,5334,5335,5336,5337,0,5464,5465,5466,5467,5334,5335,5336,5337,43,5335,5338,5339,5336,0,5465,5468,5469,5466,5335,5338,5339,5336,43,5336,5339,5340,5341,0,5466,5469,5470,5471,5336,5339,5340,5341,43,5337,5336,5341,5342,0,5467,5466,5471,5472,5337,5336,5341,5342,43,5338,5335,5343,5344,0,5468,5465,5473,5474,5338,5335,5343,5344,43,5335,5334,5345,5343,0,5465,5464,5475,5473,5335,5334,5345,5343,43,5343,5345,5330,5333,0,5473,5475,5460,5463,5343,5345,5330,5333,43,5344,5343,5333,4902,0,5474,5473,5463,5032,5344,5343,5333,4902,43,5346,5347,5348,5349,0,5476,5477,5478,5479,5346,5347,5348,5349,43,5347,5350,5351,5348,0,5477,5480,5481,5478,5347,5350,5351,5348,43,5348,5351,4748,4800,0,5478,5481,4878,4930,5348,5351,4748,4800,43,5349,5348,4800,4796,0,5479,5478,4930,4926,5349,5348,4800,4796,43,4900,5352,5353,4901,0,5030,5482,5483,5031,4900,5352,5353,4901,43,5352,5354,5355,5353,0,5482,5484,5485,5483,5352,5354,5355,5353,43,5353,5355,5356,5357,0,5483,5485,5486,5487,5353,5355,5356,5357,43,4901,5353,5357,4902,0,5031,5483,5487,5032,4901,5353,5357,4902,43,5168,5167,5358,5173,0,5298,5297,5488,5303,5168,5167,5358,5173,43,5167,5166,5359,5358,0,5297,5296,5489,5488,5167,5166,5359,5358,43,5358,5359,5354,5352,0,5488,5489,5484,5482,5358,5359,5354,5352,43,5173,5358,5352,4900,0,5303,5488,5482,5030,5173,5358,5352,4900,43,5166,5315,5360,5359,0,5296,5445,5490,5489,5166,5315,5360,5359,43,5315,4764,4768,5360,0,5445,4894,4898,5490,5315,4764,4768,5360,43,5360,4768,4758,5361,0,5490,4898,4888,5491,5360,4768,4758,5361,43,5359,5360,5361,5354,0,5489,5490,5491,5484,5359,5360,5361,5354,43,5354,5361,5362,5355,0,5484,5491,5492,5485,5354,5361,5362,5355,43,5361,4758,4756,5362,0,5491,4888,4886,5492,5361,4758,4756,5362,43,5362,4756,4752,5363,0,5492,4886,4882,5493,5362,4756,4752,5363,43,5355,5362,5363,5356,0,5485,5492,5493,5486,5355,5362,5363,5356,43,5356,5363,5364,5365,0,5486,5493,5494,5495,5356,5363,5364,5365,43,5363,4752,4749,5364,0,5493,4882,4879,5494,5363,4752,4749,5364,43,5364,4749,4748,5351,0,5494,4879,4878,5481,5364,4749,4748,5351,43,5365,5364,5351,5350,0,5495,5494,5481,5480,5365,5364,5351,5350,43,5356,5365,5366,5357,0,5486,5495,5496,5487,5356,5365,5366,5357,43,5365,5350,5367,5366,0,5495,5480,5497,5496,5365,5350,5367,5366,43,5366,5367,5338,5344,0,5496,5497,5468,5474,5366,5367,5338,5344,43,5357,5366,5344,4902,0,5487,5496,5474,5032,5357,5366,5344,4902,43,5340,5339,5368,5369,0,5470,5469,5498,5499,5340,5339,5368,5369,43,5339,5338,5367,5368,0,5469,5468,5497,5498,5339,5338,5367,5368,43,5368,5367,5350,5347,0,5498,5497,5480,5477,5368,5367,5350,5347,43,5369,5368,5347,5346,0,5499,5498,5477,5476,5369,5368,5347,5346,43,5370,5371,5372,5373,0,5500,5501,5502,5503,5370,5371,5372,5373,43,5371,5340,5369,5372,0,5501,5470,5499,5502,5371,5340,5369,5372,43,5372,5369,5346,5374,0,5502,5499,5476,5504,5372,5369,5346,5374,43,5373,5372,5374,5375,0,5503,5502,5504,5505,5373,5372,5374,5375,43,5376,5377,5378,5379,0,5506,5507,5508,5509,5376,5377,5378,5379,43,5377,5380,5381,5378,0,5507,5510,5511,5508,5377,5380,5381,5378,43,5378,5381,5382,5383,0,5508,5511,5512,5513,5378,5381,5382,5383,43,5379,5378,5383,5384,0,5509,5508,5513,5514,5379,5378,5383,5384,43,5380,5385,5386,5381,0,5510,5515,5516,5511,5380,5385,5386,5381,43,5385,5387,5388,5386,0,5515,5517,5518,5516,5385,5387,5388,5386,43,5386,5388,5370,5389,0,5516,5518,5500,5519,5386,5388,5370,5389,43,5381,5386,5389,5382,0,5511,5516,5519,5512,5381,5386,5389,5382,43,5384,5383,5390,5391,0,5514,5513,5520,5521,5384,5383,5390,5391,43,5383,5382,5392,5390,0,5513,5512,5522,5520,5383,5382,5392,5390,43,5390,5392,5393,5394,0,5520,5522,5523,5524,5390,5392,5393,5394,43,5391,5390,5394,5395,0,5521,5520,5524,5525,5391,5390,5394,5395,43,5396,5397,5398,5399,0,5526,5527,5528,5529,5396,5397,5398,5399,43,5397,5393,5400,5398,0,5527,5523,5530,5528,5397,5393,5400,5398,43,5398,5400,5375,5401,0,5528,5530,5505,5531,5398,5400,5375,5401,43,5399,5398,5401,4774,0,5529,5528,5531,4904,5399,5398,5401,4774,43,5375,5374,5402,5401,0,5505,5504,5532,5531,5375,5374,5402,5401,43,5374,5346,5349,5402,0,5504,5476,5479,5532,5374,5346,5349,5402,43,5402,5349,4796,4794,0,5532,5479,4926,4924,5402,5349,4796,4794,43,5401,5402,4794,4774,0,5531,5532,4924,4904,5401,5402,4794,4774,43,4770,5403,5404,4771,0,4900,5533,5534,4901,4770,5403,5404,4771,43,5403,5405,5406,5404,0,5533,5535,5536,5534,5403,5405,5406,5404,43,5404,5406,5396,5399,0,5534,5536,5526,5529,5404,5406,5396,5399,43,4771,5404,5399,4774,0,4901,5534,5529,4904,4771,5404,5399,4774,43,5396,5406,5407,5408,0,5526,5536,5537,5538,5396,5406,5407,5408,43,5406,5405,5409,5407,0,5536,5535,5539,5537,5406,5405,5409,5407,43,5407,5409,5410,5411,0,5537,5539,5540,5541,5407,5409,5410,5411,43,5408,5407,5411,5412,0,5538,5537,5541,5542,5408,5407,5411,5412,43,5130,5413,5414,5131,0,5260,5543,5544,5261,5130,5413,5414,5131,43,5413,5410,5415,5414,0,5543,5540,5545,5544,5413,5410,5415,5414,43,5414,5415,5416,5417,0,5544,5545,5546,5547,5414,5415,5416,5417,43,5131,5414,5417,4717,0,5261,5544,5547,4847,5131,5414,5417,4717,43,4770,4780,5418,5403,0,4900,4910,5548,5533,4770,4780,5418,5403,43,4780,4779,5419,5418,0,4910,4909,5549,5548,4780,4779,5419,5418,43,5418,5419,5420,5421,0,5548,5549,5550,5551,5418,5419,5420,5421,43,5403,5418,5421,5405,0,5533,5548,5551,5535,5403,5418,5421,5405,43,4779,4791,5422,5419,0,4909,4921,5552,5549,4779,4791,5422,5419,43,4791,4787,5154,5422,0,4921,4917,5284,5552,4791,4787,5154,5422,43,5422,5154,5157,5423,0,5552,5284,5287,5553,5422,5154,5157,5423,43,5419,5422,5423,5420,0,5549,5552,5553,5550,5419,5422,5423,5420,43,5416,5424,5425,5417,0,5546,5554,5555,5547,5416,5424,5425,5417,43,5424,5426,5427,5425,0,5554,5556,5557,5555,5424,5426,5427,5425,43,5425,5427,5139,5145,0,5555,5557,5269,5275,5425,5427,5139,5145,43,5417,5425,5145,4717,0,5547,5555,5275,4847,5417,5425,5145,4717,43,5157,5156,5428,5429,0,5287,5286,5558,5559,5157,5156,5428,5429,43,5156,5147,5150,5428,0,5286,5277,5280,5558,5156,5147,5150,5428,43,5428,5150,4829,5430,0,5558,5280,4959,5560,5428,5150,4829,5430,43,5429,5428,5430,5426,0,5559,5558,5560,5556,5429,5428,5430,5426,43,5426,5430,5431,5427,0,5556,5560,5561,5557,5426,5430,5431,5427,43,5430,4829,4826,5431,0,5560,4959,4956,5561,5430,4829,4826,5431,43,5431,4826,4825,5140,0,5561,4956,4955,5270,5431,4826,4825,5140,43,5427,5431,5140,5139,0,5557,5561,5270,5269,5427,5431,5140,5139,43,5420,5423,5432,5433,0,5550,5553,5562,5563,5420,5423,5432,5433,43,5423,5157,5429,5432,0,5553,5287,5559,5562,5423,5157,5429,5432,43,5432,5429,5426,5424,0,5562,5559,5556,5554,5432,5429,5426,5424,43,5433,5432,5424,5416,0,5563,5562,5554,5546,5433,5432,5424,5416,43,5405,5421,5434,5409,0,5535,5551,5564,5539,5405,5421,5434,5409,43,5421,5420,5433,5434,0,5551,5550,5563,5564,5421,5420,5433,5434,43,5434,5433,5416,5415,0,5564,5563,5546,5545,5434,5433,5416,5415,43,5409,5434,5415,5410,0,5539,5564,5545,5540,5409,5434,5415,5410,43,5376,5379,5435,5436,0,5506,5509,5565,5566,5376,5379,5435,5436,43,5379,5384,5437,5435,0,5509,5514,5567,5565,5379,5384,5437,5435,43,5435,5437,5438,5439,0,5565,5567,5568,5569,5435,5437,5438,5439,43,5436,5435,5439,5440,0,5566,5565,5569,5570,5436,5435,5439,5440,43,5384,5391,5441,5437,0,5514,5521,5571,5567,5384,5391,5441,5437,43,5391,5395,5442,5441,0,5521,5525,5572,5571,5391,5395,5442,5441,43,5441,5442,5443,5444,0,5571,5572,5573,5574,5441,5442,5443,5444,43,5437,5441,5444,5438,0,5567,5571,5574,5568,5437,5441,5444,5438,43,56,5445,5446,57,0,56,5575,5576,57,56,5445,5446,57,43,5445,5440,5439,5446,0,5575,5570,5569,5576,5445,5440,5439,5446,43,5446,5439,5438,5447,0,5576,5569,5568,5577,5446,5439,5438,5447,43,57,5446,5447,58,0,57,5576,5577,58,57,5446,5447,58,43,5438,5444,5448,5447,0,5568,5574,5578,5577,5438,5444,5448,5447,43,5444,5443,5449,5448,0,5574,5573,5579,5578,5444,5443,5449,5448,43,5448,5449,687,685,0,5578,5579,687,685,5448,5449,687,685,43,5447,5448,685,58,0,5577,5578,685,58,5447,5448,685,58,43,5450,5451,5452,5453,0,5580,5581,5582,5583,5450,5451,5452,5453,43,5451,5130,5129,5452,0,5581,5260,5259,5582,5451,5130,5129,5452,43,5452,5129,147,678,0,5582,5259,147,678,5452,5129,147,678,43,5453,5452,678,677,0,5583,5582,678,677,5453,5452,678,677,43,5443,5454,5455,5449,0,5573,5584,5585,5579,5443,5454,5455,5449,43,5454,5450,5453,5455,0,5584,5580,5583,5585,5454,5450,5453,5455,43,5455,5453,677,691,0,5585,5583,677,691,5455,5453,677,691,43,5449,5455,691,687,0,5579,5585,691,687,5449,5455,691,687,43,5412,5411,5456,5457,0,5542,5541,5586,5587,5412,5411,5456,5457,43,5411,5410,5413,5456,0,5541,5540,5543,5586,5411,5410,5413,5456,43,5456,5413,5130,5451,0,5586,5543,5260,5581,5456,5413,5130,5451,43,5457,5456,5451,5450,0,5587,5586,5581,5580,5457,5456,5451,5450,43,5395,5458,5459,5442,0,5525,5588,5589,5572,5395,5458,5459,5442,43,5458,5412,5457,5459,0,5588,5542,5587,5589,5458,5412,5457,5459,43,5459,5457,5450,5454,0,5589,5587,5580,5584,5459,5457,5450,5454,43,5442,5459,5454,5443,0,5572,5589,5584,5573,5442,5459,5454,5443,43,5393,5397,5460,5394,0,5523,5527,5590,5524,5393,5397,5460,5394,43,5397,5396,5408,5460,0,5527,5526,5538,5590,5397,5396,5408,5460,43,5460,5408,5412,5458,0,5590,5538,5542,5588,5460,5408,5412,5458,43,5394,5460,5458,5395,0,5524,5590,5588,5525,5394,5460,5458,5395,43,5382,5389,5461,5392,0,5512,5519,5591,5522,5382,5389,5461,5392,43,5389,5370,5373,5461,0,5519,5500,5503,5591,5389,5370,5373,5461,43,5461,5373,5375,5400,0,5591,5503,5505,5530,5461,5373,5375,5400,43,5392,5461,5400,5393,0,5522,5591,5530,5523,5392,5461,5400,5393,43,5387,5462,5463,5388,0,5517,5592,5593,5518,5387,5462,5463,5388,43,5462,5342,5341,5463,0,5592,5472,5471,5593,5462,5342,5341,5463,43,5463,5341,5340,5371,0,5593,5471,5470,5501,5463,5341,5340,5371,43,5388,5463,5371,5370,0,5518,5593,5501,5500,5388,5463,5371,5370,43,5464,5465,5466,5467,0,5594,5595,5596,5597,5464,5465,5466,5467,43,5465,916,934,5466,0,5595,918,936,5596,5465,916,934,5466,43,5466,934,926,5468,0,5596,936,928,5598,5466,934,926,5468,43,5467,5466,5468,5469,0,5597,5596,5598,5599,5467,5466,5468,5469,43,1496,3109,5470,1497,0,1530,3235,5600,1531,1496,3109,5470,1497,43,3109,3108,5471,5470,0,3235,3234,5601,5600,3109,3108,5471,5470,43,5470,5471,5469,5468,0,5600,5601,5599,5598,5470,5471,5469,5468,43,1497,5470,5468,926,0,1531,5600,5598,928,1497,5470,5468,926,43,4271,5472,5473,4269,0,4398,5602,5603,4396,4271,5472,5473,4269,43,5472,5474,5475,5473,0,5602,5604,5605,5603,5472,5474,5475,5473,43,5473,5475,5476,5477,0,5603,5605,5606,5607,5473,5475,5476,5477,43,4269,5473,5477,4266,0,4396,5603,5607,4393,4269,5473,5477,4266,43,4314,5478,5479,4312,0,4441,5608,5609,4439,4314,5478,5479,4312,43,5478,5480,5481,5479,0,5608,5610,5611,5609,5478,5480,5481,5479,43,5479,5481,5482,5483,0,5609,5611,5612,5613,5479,5481,5482,5483,43,4312,5479,5483,4309,0,4439,5609,5613,4436,4312,5479,5483,4309,43,4309,5483,5484,4318,0,4436,5613,5614,4445,4309,5483,5484,4318,43,5483,5482,5485,5484,0,5613,5612,5615,5614,5483,5482,5485,5484,43,5484,5485,5486,5487,0,5614,5615,5616,5617,5484,5485,5486,5487,43,4318,5484,5487,4315,0,4445,5614,5617,4442,4318,5484,5487,4315,43,4315,5487,5488,4322,0,4442,5617,5618,4449,4315,5487,5488,4322,43,5487,5486,5489,5488,0,5617,5616,5619,5618,5487,5486,5489,5488,43,5488,5489,5490,5491,0,5618,5619,5620,5621,5488,5489,5490,5491,43,4322,5488,5491,4319,0,4449,5618,5621,4446,4322,5488,5491,4319,43,4319,5491,5492,4324,0,4446,5621,5622,4451,4319,5491,5492,4324,43,5491,5490,5493,5492,0,5621,5620,5623,5622,5491,5490,5493,5492,43,5492,5493,5474,5472,0,5622,5623,5604,5602,5492,5493,5474,5472,43,4324,5492,5472,4271,0,4451,5622,5602,4398,4324,5492,5472,4271,43,4345,5494,5495,4346,0,4472,5624,5625,4473,4345,5494,5495,4346,43,5494,5496,5497,5495,0,5624,5626,5627,5625,5494,5496,5497,5495,43,5495,5497,5480,5478,0,5625,5627,5610,5608,5495,5497,5480,5478,43,4346,5495,5478,4314,0,4473,5625,5608,4441,4346,5495,5478,4314,43,4369,5498,5499,5500,0,4496,5628,5629,5630,4369,5498,5499,5500,43,5498,5501,5502,5499,0,5628,5631,5632,5629,5498,5501,5502,5499,43,5499,5502,5503,5504,0,5629,5632,5633,5634,5499,5502,5503,5504,43,5500,5499,5504,5505,0,5630,5629,5634,5635,5500,5499,5504,5505,43,4367,5506,5507,4368,0,4494,5636,5637,4495,4367,5506,5507,4368,43,5506,5508,5509,5507,0,5636,5638,5639,5637,5506,5508,5509,5507,43,5507,5509,5501,5498,0,5637,5639,5631,5628,5507,5509,5501,5498,43,4368,5507,5498,4369,0,4495,5637,5628,4496,4368,5507,5498,4369,43,4266,5477,5510,4372,0,4393,5607,5640,4499,4266,5477,5510,4372,43,5477,5476,5511,5510,0,5607,5606,5641,5640,5477,5476,5511,5510,43,5510,5511,5512,5513,0,5640,5641,5642,5643,5510,5511,5512,5513,43,4372,5510,5513,4373,0,4499,5640,5643,4500,4372,5510,5513,4373,43,4373,5513,5514,4376,0,4500,5643,5644,4503,4373,5513,5514,4376,43,5513,5512,5515,5514,0,5643,5642,5645,5644,5513,5512,5515,5514,43,5514,5515,5516,5517,0,5644,5645,5646,5647,5514,5515,5516,5517,43,4376,5514,5517,4377,0,4503,5644,5647,4504,4376,5514,5517,4377,43,4377,5517,5518,4380,0,4504,5647,5648,4507,4377,5517,5518,4380,43,5517,5516,5519,5518,0,5647,5646,5649,5648,5517,5516,5519,5518,43,5518,5519,5508,5506,0,5648,5649,5638,5636,5518,5519,5508,5506,43,4380,5518,5506,4367,0,4507,5648,5636,4494,4380,5518,5506,4367,43,5520,5521,5522,5523,0,5650,5651,5652,5653,5520,5521,5522,5523,43,5521,5524,5525,5522,0,5651,5654,5655,5652,5521,5524,5525,5522,43,5522,5525,5526,5527,0,5652,5655,5656,5657,5522,5525,5526,5527,43,5523,5522,5527,5528,0,5653,5652,5657,5658,5523,5522,5527,5528,43,5528,5527,5529,5530,0,5658,5657,5659,5660,5528,5527,5529,5530,43,5527,5526,5531,5529,0,5657,5656,5661,5659,5527,5526,5531,5529,43,5529,5531,5532,5533,0,5659,5661,5662,5663,5529,5531,5532,5533,43,5530,5529,5533,5534,0,5660,5659,5663,5664,5530,5529,5533,5534,43,5535,5536,5537,5538,0,5665,5666,5667,5668,5535,5536,5537,5538,43,5536,5539,5540,5537,0,5666,5669,5670,5667,5536,5539,5540,5537,43,5537,5540,5496,5494,0,5667,5670,5626,5624,5537,5540,5496,5494,43,5538,5537,5494,4345,0,5668,5667,5624,4472,5538,5537,5494,4345,43,5534,5533,5541,5542,0,5664,5663,5671,5672,5534,5533,5541,5542,43,5533,5532,5543,5541,0,5663,5662,5673,5671,5533,5532,5543,5541,43,5541,5543,5539,5536,0,5671,5673,5669,5666,5541,5543,5539,5536,43,5542,5541,5536,5535,0,5672,5671,5666,5665,5542,5541,5536,5535,43,5544,5545,5546,5547,0,5674,5675,5676,5677,5544,5545,5546,5547,43,5545,5548,5549,5546,0,5675,5678,5679,5676,5545,5548,5549,5546,43,5546,5549,5524,5521,0,5676,5679,5654,5651,5546,5549,5524,5521,43,5547,5546,5521,5520,0,5677,5676,5651,5650,5547,5546,5521,5520,43,5505,5504,5550,5551,0,5635,5634,5680,5681,5505,5504,5550,5551,43,5504,5503,5552,5550,0,5634,5633,5682,5680,5504,5503,5552,5550,43,5550,5552,5548,5545,0,5680,5682,5678,5675,5550,5552,5548,5545,43,5551,5550,5545,5544,0,5681,5680,5675,5674,5551,5550,5545,5544,43,5544,5553,5554,5551,0,5674,5683,5684,5681,5544,5553,5554,5551,43,5553,5555,5556,5554,0,5683,5685,5686,5684,5553,5555,5556,5554,43,5551,5554,5556,5505,0,5681,5684,5686,5635,5551,5554,5556,5505,43,5520,5557,5558,5547,0,5650,5687,5688,5677,5520,5557,5558,5547,43,5557,5559,5560,5558,0,5687,5689,5690,5688,5557,5559,5560,5558,43,5558,5560,5555,5553,0,5688,5690,5685,5683,5558,5560,5555,5553,43,5547,5558,5553,5544,0,5677,5688,5683,5674,5547,5558,5553,5544,43,5528,5561,5562,5523,0,5658,5691,5692,5653,5528,5561,5562,5523,43,5561,5563,5564,5562,0,5691,5693,5694,5692,5561,5563,5564,5562,43,5562,5564,5559,5557,0,5692,5694,5689,5687,5562,5564,5559,5557,43,5523,5562,5557,5520,0,5653,5692,5687,5650,5523,5562,5557,5520,43,5534,5565,5566,5530,0,5664,5695,5696,5660,5534,5565,5566,5530,43,5565,5567,5568,5566,0,5695,5697,5698,5696,5565,5567,5568,5566,43,5566,5568,5563,5561,0,5696,5698,5693,5691,5566,5568,5563,5561,43,5530,5566,5561,5528,0,5660,5696,5691,5658,5530,5566,5561,5528,43,5534,5542,5569,5565,0,5664,5672,5699,5695,5534,5542,5569,5565,43,5542,5535,5570,5569,0,5672,5665,5700,5699,5542,5535,5570,5569,43,5569,5570,5571,5572,0,5699,5700,5701,5702,5569,5570,5571,5572,43,5565,5569,5572,5567,0,5695,5699,5702,5697,5565,5569,5572,5567,43,4345,5573,5574,5538,0,4472,5703,5704,5668,4345,5573,5574,5538,43,5573,5571,5570,5574,0,5703,5701,5700,5704,5573,5571,5570,5574,43,5538,5574,5570,5535,0,5668,5704,5700,5665,5538,5574,5570,5535,43,5575,5576,5577,5578,0,5705,5706,5707,5708,5575,5576,5577,5578,43,5576,5579,5580,5577,0,5706,5709,5710,5707,5576,5579,5580,5577,43,5577,5580,5581,5582,0,5707,5710,5711,5712,5577,5580,5581,5582,43,5578,5577,5582,5583,0,5708,5707,5712,5713,5578,5577,5582,5583,43,5584,5585,5586,5587,0,5714,5715,5716,5717,5584,5585,5586,5587,43,5585,5575,5578,5586,0,5715,5705,5708,5716,5585,5575,5578,5586,43,5586,5578,5583,5588,0,5716,5708,5713,5718,5586,5578,5583,5588,43,5587,5586,5588,5589,0,5717,5716,5718,5719,5587,5586,5588,5589,43,5590,5591,5592,5593,0,5720,5721,5722,5723,5590,5591,5592,5593,43,5591,5594,5595,5592,0,5721,5724,5725,5722,5591,5594,5595,5592,43,5592,5595,5584,5587,0,5722,5725,5714,5717,5592,5595,5584,5587,43,5593,5592,5587,5589,0,5723,5722,5717,5719,5593,5592,5587,5589,43,5596,5597,5598,5599,0,5726,5727,5728,5729,5596,5597,5598,5599,43,5597,5600,5601,5598,0,5727,5730,5731,5728,5597,5600,5601,5598,43,5598,5601,5602,5603,0,5728,5731,5732,5733,5598,5601,5602,5603,43,5599,5598,5603,5604,0,5729,5728,5733,5734,5599,5598,5603,5604,43,5602,5605,5606,5603,0,5732,5735,5736,5733,5602,5605,5606,5603,43,5605,5607,5608,5606,0,5735,5737,5738,5736,5605,5607,5608,5606,43,5606,5608,5609,5610,0,5736,5738,5739,5740,5606,5608,5609,5610,43,5603,5606,5610,5604,0,5733,5736,5740,5734,5603,5606,5610,5604,43,5611,5612,5613,5614,0,5741,5742,5743,5744,5611,5612,5613,5614,43,5612,5615,5616,5613,0,5742,5745,5746,5743,5612,5615,5616,5613,43,5613,5616,5617,5618,0,5743,5746,5747,5748,5613,5616,5617,5618,43,5614,5613,5618,5619,0,5744,5743,5748,5749,5614,5613,5618,5619,43,5611,5614,5620,5621,0,5741,5744,5750,5751,5611,5614,5620,5621,43,5614,5619,5622,5620,0,5744,5749,5752,5750,5614,5619,5622,5620,43,5620,5622,5623,5624,0,5750,5752,5753,5754,5620,5622,5623,5624,43,5621,5620,5624,5625,0,5751,5750,5754,5755,5621,5620,5624,5625,43,5626,5627,5628,5629,0,5756,5757,5758,5759,5626,5627,5628,5629,43,5627,5625,5630,5628,0,5757,5755,5760,5758,5627,5625,5630,5628,43,5628,5630,5631,5632,0,5758,5760,5761,5762,5628,5630,5631,5632,43,5629,5628,5632,5633,0,5759,5758,5762,5763,5629,5628,5632,5633,43,5634,5635,5636,5637,0,5764,5765,5766,5767,5634,5635,5636,5637,43,5635,5638,5639,5636,0,5765,5768,5769,5766,5635,5638,5639,5636,43,5636,5639,5625,5627,0,5766,5769,5755,5757,5636,5639,5625,5627,43,5637,5636,5627,5626,0,5767,5766,5757,5756,5637,5636,5627,5626,43,5625,5639,5640,5621,0,5755,5769,5770,5751,5625,5639,5640,5621,43,5639,5638,5641,5640,0,5769,5768,5771,5770,5639,5638,5641,5640,43,5640,5641,5642,5643,0,5770,5771,5772,5773,5640,5641,5642,5643,43,5621,5640,5643,5611,0,5751,5770,5773,5741,5621,5640,5643,5611,43,5644,5645,5646,5647,0,5774,5775,5776,5777,5644,5645,5646,5647,43,5645,5648,5649,5646,0,5775,5778,5779,5776,5645,5648,5649,5646,43,5646,5649,5650,5651,0,5776,5779,5780,5781,5646,5649,5650,5651,43,5647,5646,5651,5652,0,5777,5776,5781,5782,5647,5646,5651,5652,43,5653,5654,5655,5656,0,5783,5784,5785,5786,5653,5654,5655,5656,43,5654,5657,5658,5655,0,5784,5787,5788,5785,5654,5657,5658,5655,43,5655,5658,5659,5660,0,5785,5788,5789,5790,5655,5658,5659,5660,43,5656,5655,5660,5661,0,5786,5785,5790,5791,5656,5655,5660,5661,43,5642,5662,5663,5643,0,5772,5792,5793,5773,5642,5662,5663,5643,43,5662,5664,5665,5663,0,5792,5794,5795,5793,5662,5664,5665,5663,43,5663,5665,5666,5667,0,5793,5795,5796,5797,5663,5665,5666,5667,43,5643,5663,5667,5611,0,5773,5793,5797,5741,5643,5663,5667,5611,43,5666,5665,5668,5669,0,5796,5795,5798,5799,5666,5665,5668,5669,43,5665,5664,5670,5668,0,5795,5794,5800,5798,5665,5664,5670,5668,43,5668,5670,5671,5672,0,5798,5800,5801,5802,5668,5670,5671,5672,43,5669,5668,5672,5673,0,5799,5798,5802,5803,5669,5668,5672,5673,43,4927,5674,5675,4928,0,5057,5804,5805,5058,4927,5674,5675,4928,43,5674,5657,5654,5675,0,5804,5787,5784,5805,5674,5657,5654,5675,43,5675,5654,5653,5676,0,5805,5784,5783,5806,5675,5654,5653,5676,43,4928,5675,5676,4929,0,5058,5805,5806,5059,4928,5675,5676,4929,43,5677,5678,5679,5680,0,5807,5808,5809,5810,5677,5678,5679,5680,43,5678,4934,4931,5679,0,5808,5064,5061,5809,5678,4934,4931,5679,43,5679,4931,4930,5681,0,5809,5061,5060,5811,5679,4931,4930,5681,43,5680,5679,5681,5682,0,5810,5809,5811,5812,5680,5679,5681,5682,43,4943,5683,5684,4944,0,5073,5813,5814,5074,4943,5683,5684,4944,43,5683,5685,5686,5684,0,5813,5815,5816,5814,5683,5685,5686,5684,43,5684,5686,5682,5681,0,5814,5816,5812,5811,5684,5686,5682,5681,43,4944,5684,5681,4930,0,5074,5814,5811,5060,4944,5684,5681,4930,43,5687,5688,5689,5690,0,5817,5818,5819,5820,5687,5688,5689,5690,43,5688,5691,5692,5689,0,5818,5821,5822,5819,5688,5691,5692,5689,43,5689,5692,5693,5694,0,5819,5822,5823,5824,5689,5692,5693,5694,43,5690,5689,5694,5602,0,5820,5819,5824,5732,5690,5689,5694,5602,43,5693,5695,5696,5694,0,5823,5825,5826,5824,5693,5695,5696,5694,43,5695,5697,5698,5696,0,5825,5827,5828,5826,5695,5697,5698,5696,43,5696,5698,5607,5605,0,5826,5828,5737,5735,5696,5698,5607,5605,43,5694,5696,5605,5602,0,5824,5826,5735,5732,5694,5696,5605,5602,43,5691,5699,5700,5692,0,5821,5829,5830,5822,5691,5699,5700,5692,43,5699,5701,5702,5700,0,5829,5831,5832,5830,5699,5701,5702,5700,43,5700,5702,5703,5704,0,5830,5832,5833,5834,5700,5702,5703,5704,43,5692,5700,5704,5693,0,5822,5830,5834,5823,5692,5700,5704,5693,43,5703,5705,5706,5704,0,5833,5835,5836,5834,5703,5705,5706,5704,43,5705,5707,5708,5706,0,5835,5837,5838,5836,5705,5707,5708,5706,43,5706,5708,5697,5695,0,5836,5838,5827,5825,5706,5708,5697,5695,43,5704,5706,5695,5693,0,5834,5836,5825,5823,5704,5706,5695,5693,43,5707,5709,5710,5708,0,5837,5839,5840,5838,5707,5709,5710,5708,43,5709,5633,5632,5710,0,5839,5763,5762,5840,5709,5633,5632,5710,43,5710,5632,5631,5711,0,5840,5762,5761,5841,5710,5632,5631,5711,43,5708,5710,5711,5697,0,5838,5840,5841,5827,5708,5710,5711,5697,43,5712,5713,5714,5715,0,5842,5843,5844,5845,5712,5713,5714,5715,43,5713,5716,5717,5714,0,5843,5846,5847,5844,5713,5716,5717,5714,43,5714,5717,5659,5658,0,5844,5847,5789,5788,5714,5717,5659,5658,43,5715,5714,5658,5657,0,5845,5844,5788,5787,5715,5714,5658,5657,43,5712,5718,5719,5713,0,5842,5848,5849,5843,5712,5718,5719,5713,43,5718,5677,5720,5719,0,5848,5807,5850,5849,5718,5677,5720,5719,43,5719,5720,5721,5722,0,5849,5850,5851,5852,5719,5720,5721,5722,43,5713,5719,5722,5716,0,5843,5849,5852,5846,5713,5719,5722,5716,43,5723,5724,5725,5726,0,5853,5854,5855,5856,5723,5724,5725,5726,43,5724,5626,5629,5725,0,5854,5756,5759,5855,5724,5626,5629,5725,43,5725,5629,5633,5727,0,5855,5759,5763,5857,5725,5629,5633,5727,43,5726,5725,5727,5721,0,5856,5855,5857,5851,5726,5725,5727,5721,43,5728,5729,5730,5731,0,5858,5859,5860,5861,5728,5729,5730,5731,43,5729,5634,5637,5730,0,5859,5764,5767,5860,5729,5634,5637,5730,43,5730,5637,5626,5724,0,5860,5767,5756,5854,5730,5637,5626,5724,43,5731,5730,5724,5723,0,5861,5860,5854,5853,5731,5730,5724,5723,43,5732,5733,5734,5735,0,5862,5863,5864,5865,5732,5733,5734,5735,43,5733,5728,5731,5734,0,5863,5858,5861,5864,5733,5728,5731,5734,43,5734,5731,5723,5736,0,5864,5861,5853,5866,5734,5731,5723,5736,43,5735,5734,5736,5682,0,5865,5864,5866,5812,5735,5734,5736,5682,43,5677,5680,5737,5720,0,5807,5810,5867,5850,5677,5680,5737,5720,43,5680,5682,5736,5737,0,5810,5812,5866,5867,5680,5682,5736,5737,43,5737,5736,5723,5726,0,5867,5866,5853,5856,5737,5736,5723,5726,43,5720,5737,5726,5721,0,5850,5867,5856,5851,5720,5737,5726,5721,43,5721,5727,5738,5722,0,5851,5857,5868,5852,5721,5727,5738,5722,43,5727,5633,5709,5738,0,5857,5763,5839,5868,5727,5633,5709,5738,43,5738,5709,5707,5739,0,5868,5839,5837,5869,5738,5709,5707,5739,43,5722,5738,5739,5716,0,5852,5868,5869,5846,5722,5738,5739,5716,43,5659,5717,5740,5741,0,5789,5847,5870,5871,5659,5717,5740,5741,43,5717,5716,5739,5740,0,5847,5846,5869,5870,5717,5716,5739,5740,43,5740,5739,5707,5705,0,5870,5869,5837,5835,5740,5739,5707,5705,43,5741,5740,5705,5703,0,5871,5870,5835,5833,5741,5740,5705,5703,43,5661,5660,5742,5743,0,5791,5790,5872,5873,5661,5660,5742,5743,43,5660,5659,5741,5742,0,5790,5789,5871,5872,5660,5659,5741,5742,43,5742,5741,5703,5702,0,5872,5871,5833,5832,5742,5741,5703,5702,43,5743,5742,5702,5701,0,5873,5872,5832,5831,5743,5742,5702,5701,43,5005,5004,5744,5745,0,5135,5134,5874,5875,5005,5004,5744,5745,43,5004,4929,5676,5744,0,5134,5059,5806,5874,5004,4929,5676,5744,43,5744,5676,5653,5746,0,5874,5806,5783,5876,5744,5676,5653,5746,43,5745,5744,5746,5747,0,5875,5874,5876,5877,5745,5744,5746,5747,43,5747,5746,5748,5749,0,5877,5876,5878,5879,5747,5746,5748,5749,43,5746,5653,5656,5748,0,5876,5783,5786,5878,5746,5653,5656,5748,43,5748,5656,5661,5750,0,5878,5786,5791,5880,5748,5656,5661,5750,43,5749,5748,5750,5751,0,5879,5878,5880,5881,5749,5748,5750,5751,43,4635,5014,5752,4713,0,4765,5144,5882,4843,4635,5014,5752,4713,43,5014,5005,5745,5752,0,5144,5135,5875,5882,5014,5005,5745,5752,43,5752,5745,5747,5753,0,5882,5875,5877,5883,5752,5745,5747,5753,43,4713,5752,5753,4710,0,4843,5882,5883,4840,4713,5752,5753,4710,43,4710,5753,5754,4711,0,4840,5883,5884,4841,4710,5753,5754,4711,43,5753,5747,5749,5754,0,5883,5877,5879,5884,5753,5747,5749,5754,43,5754,5749,5751,5755,0,5884,5879,5881,5885,5754,5749,5751,5755,43,4711,5754,5755,4707,0,4841,5884,5885,4837,4711,5754,5755,4707,43,5751,5756,5757,5755,0,5881,5886,5887,5885,5751,5756,5757,5755,43,5756,5758,5759,5757,0,5886,5888,5889,5887,5756,5758,5759,5757,43,5757,5759,4675,4705,0,5887,5889,4805,4835,5757,5759,4675,4705,43,5755,5757,4705,4707,0,5885,5887,4835,4837,5755,5757,4705,4707,43,5751,5750,5760,5756,0,5881,5880,5890,5886,5751,5750,5760,5756,43,5750,5661,5743,5760,0,5880,5791,5873,5890,5750,5661,5743,5760,43,5760,5743,5701,5761,0,5890,5873,5831,5891,5760,5743,5701,5761,43,5756,5760,5761,5758,0,5886,5890,5891,5888,5756,5760,5761,5758,43,5762,5763,5764,5765,0,5892,5893,5894,5895,5762,5763,5764,5765,43,5763,5758,5761,5764,0,5893,5888,5891,5894,5763,5758,5761,5764,43,5764,5761,5701,5699,0,5894,5891,5831,5829,5764,5761,5701,5699,43,5765,5764,5699,5691,0,5895,5894,5829,5821,5765,5764,5699,5691,43,5687,5766,5767,5688,0,5817,5896,5897,5818,5687,5766,5767,5688,43,5766,5768,5769,5767,0,5896,5898,5899,5897,5766,5768,5769,5767,43,5767,5769,5762,5765,0,5897,5899,5892,5895,5767,5769,5762,5765,43,5688,5767,5765,5691,0,5818,5897,5895,5821,5688,5767,5765,5691,43,5600,5770,5771,5601,0,5730,5900,5901,5731,5600,5770,5771,5601,43,5770,5772,5773,5771,0,5900,5902,5903,5901,5770,5772,5773,5771,43,5771,5773,5687,5690,0,5901,5903,5817,5820,5771,5773,5687,5690,43,5601,5771,5690,5602,0,5731,5901,5820,5732,5601,5771,5690,5602,43,5772,5774,5775,5773,0,5902,5904,5905,5903,5772,5774,5775,5773,43,5774,5776,5777,5775,0,5904,5906,5907,5905,5774,5776,5777,5775,43,5775,5777,5768,5766,0,5905,5907,5898,5896,5775,5777,5768,5766,43,5773,5775,5766,5687,0,5903,5905,5896,5817,5773,5775,5766,5687,43,5776,5778,5779,5777,0,5906,5908,5909,5907,5776,5778,5779,5777,43,5778,4493,4666,5779,0,5908,4623,4796,5909,5778,4493,4666,5779,43,5779,4666,4665,5780,0,5909,4796,4795,5910,5779,4666,4665,5780,43,5777,5779,5780,5768,0,5907,5909,5910,5898,5777,5779,5780,5768,43,5768,5780,5781,5769,0,5898,5910,5911,5899,5768,5780,5781,5769,43,5780,4665,4703,5781,0,5910,4795,4833,5911,5780,4665,4703,5781,43,5781,4703,4667,5782,0,5911,4833,4797,5912,5781,4703,4667,5782,43,5769,5781,5782,5762,0,5899,5911,5912,5892,5769,5781,5782,5762,43,5762,5782,5783,5763,0,5892,5912,5913,5893,5762,5782,5783,5763,43,5782,4667,4670,5783,0,5912,4797,4800,5913,5782,4667,4670,5783,43,5783,4670,4675,5759,0,5913,4800,4805,5889,5783,4670,4675,5759,43,5763,5783,5759,5758,0,5893,5913,5889,5888,5763,5783,5759,5758,43,5784,5785,5786,5787,0,5914,5915,5916,5917,5784,5785,5786,5787,43,5785,5049,5046,5786,0,5915,5179,5176,5916,5785,5049,5046,5786,43,5786,5046,5045,5788,0,5916,5176,5175,5918,5786,5046,5045,5788,43,5787,5786,5788,5789,0,5917,5916,5918,5919,5787,5786,5788,5789,43,5049,5785,5790,5056,0,5179,5915,5920,5186,5049,5785,5790,5056,43,5785,5784,5791,5790,0,5915,5914,5921,5920,5785,5784,5791,5790,43,5790,5791,5685,5683,0,5920,5921,5815,5813,5790,5791,5685,5683,43,5056,5790,5683,4943,0,5186,5920,5813,5073,5056,5790,5683,4943,43,5685,5792,5793,5686,0,5815,5922,5923,5816,5685,5792,5793,5686,43,5792,5794,5795,5793,0,5922,5924,5925,5923,5792,5794,5795,5793,43,5793,5795,5732,5735,0,5923,5925,5862,5865,5793,5795,5732,5735,43,5686,5793,5735,5682,0,5816,5923,5865,5812,5686,5793,5735,5682,43,5784,5796,5797,5791,0,5914,5926,5927,5921,5784,5796,5797,5791,43,5796,5798,5799,5797,0,5926,5928,5929,5927,5796,5798,5799,5797,43,5797,5799,5794,5792,0,5927,5929,5924,5922,5797,5799,5794,5792,43,5791,5797,5792,5685,0,5921,5927,5922,5815,5791,5797,5792,5685,43,5789,5800,5801,5787,0,5919,5930,5931,5917,5789,5800,5801,5787,43,5800,5802,5803,5801,0,5930,5932,5933,5931,5800,5802,5803,5801,43,5801,5803,5798,5796,0,5931,5933,5928,5926,5801,5803,5798,5796,43,5787,5801,5796,5784,0,5917,5931,5926,5914,5787,5801,5796,5784,43,5671,5804,5805,5672,0,5801,5934,5935,5802,5671,5804,5805,5672,43,5804,5806,5807,5805,0,5934,5936,5937,5935,5804,5806,5807,5805,43,5805,5807,5808,5809,0,5935,5937,5938,5939,5805,5807,5808,5809,43,5672,5805,5809,5673,0,5802,5935,5939,5803,5672,5805,5809,5673,43,5808,5807,5810,5811,0,5938,5937,5940,5941,5808,5807,5810,5811,43,5807,5806,5812,5810,0,5937,5936,5942,5940,5807,5806,5812,5810,43,5810,5812,5813,5814,0,5940,5942,5943,5944,5810,5812,5813,5814,43,5811,5810,5814,5815,0,5941,5940,5944,5945,5811,5810,5814,5815,43,5806,5816,5817,5812,0,5936,5946,5947,5942,5806,5816,5817,5812,43,5816,5802,5800,5817,0,5946,5932,5930,5947,5816,5802,5800,5817,43,5817,5800,5789,5818,0,5947,5930,5919,5948,5817,5800,5789,5818,43,5812,5817,5818,5813,0,5942,5947,5948,5943,5812,5817,5818,5813,43,5813,5818,5819,5820,0,5943,5948,5949,5950,5813,5818,5819,5820,43,5818,5789,5788,5819,0,5948,5919,5918,5949,5818,5789,5788,5819,43,5819,5788,5045,5085,0,5949,5918,5175,5215,5819,5788,5045,5085,43,5820,5819,5085,5087,0,5950,5949,5215,5217,5820,5819,5085,5087,43,5815,5814,5821,5822,0,5945,5944,5951,5952,5815,5814,5821,5822,43,5814,5813,5820,5821,0,5944,5943,5950,5951,5814,5813,5820,5821,43,5821,5820,5087,5089,0,5951,5950,5217,5219,5821,5820,5087,5089,43,5822,5821,5089,5091,0,5952,5951,5219,5221,5822,5821,5089,5091,43,5823,5824,5825,5826,0,5953,5954,5955,5956,5823,5824,5825,5826,43,5824,5815,5822,5825,0,5954,5945,5952,5955,5824,5815,5822,5825,43,5825,5822,5091,5093,0,5955,5952,5221,5223,5825,5822,5091,5093,43,5826,5825,5093,5097,0,5956,5955,5223,5227,5826,5825,5093,5097,43,5673,5809,5827,5828,0,5803,5939,5957,5958,5673,5809,5827,5828,43,5809,5808,5811,5827,0,5939,5938,5941,5957,5809,5808,5811,5827,43,5827,5811,5815,5824,0,5957,5941,5945,5954,5827,5811,5815,5824,43,5828,5827,5824,5823,0,5958,5957,5954,5953,5828,5827,5824,5823,43,5673,5828,5829,5830,0,5803,5958,5959,5960,5673,5828,5829,5830,43,5828,5823,5831,5829,0,5958,5953,5961,5959,5828,5823,5831,5829,43,5829,5831,5832,5833,0,5959,5961,5962,5963,5829,5831,5832,5833,43,5830,5829,5833,5834,0,5960,5959,5963,5964,5830,5829,5833,5834,43,5112,5835,5836,5113,0,5242,5965,5966,5243,5112,5835,5836,5113,43,5835,5837,5838,5836,0,5965,5967,5968,5966,5835,5837,5838,5836,43,5836,5838,5839,5840,0,5966,5968,5969,5970,5836,5838,5839,5840,43,5113,5836,5840,5114,0,5243,5966,5970,5244,5113,5836,5840,5114,43,5118,5117,5841,5842,0,5248,5247,5971,5972,5118,5117,5841,5842,43,5117,5114,5840,5841,0,5247,5244,5970,5971,5117,5114,5840,5841,43,5841,5840,5839,5843,0,5971,5970,5969,5973,5841,5840,5839,5843,43,5842,5841,5843,5832,0,5972,5971,5973,5962,5842,5841,5843,5832,43,5097,5121,5844,5826,0,5227,5251,5974,5956,5097,5121,5844,5826,43,5121,5118,5842,5844,0,5251,5248,5972,5974,5121,5118,5842,5844,43,5844,5842,5832,5831,0,5974,5972,5962,5961,5844,5842,5832,5831,43,5826,5844,5831,5823,0,5956,5974,5961,5953,5826,5844,5831,5823,43,5124,5845,5846,5125,0,5254,5975,5976,5255,5124,5845,5846,5125,43,5845,5712,5715,5846,0,5975,5842,5845,5976,5845,5712,5715,5846,43,5846,5715,5657,5674,0,5976,5845,5787,5804,5846,5715,5657,5674,43,5125,5846,5674,4927,0,5255,5976,5804,5057,5125,5846,5674,4927,43,5124,5127,5847,5845,0,5254,5257,5977,5975,5124,5127,5847,5845,43,5127,4934,5678,5847,0,5257,5064,5808,5977,5127,4934,5678,5847,43,5847,5678,5677,5718,0,5977,5808,5807,5848,5847,5678,5677,5718,43,5845,5847,5718,5712,0,5975,5977,5848,5842,5845,5847,5718,5712,43,5848,5849,5850,5851,0,5978,5979,5980,5981,5848,5849,5850,5851,43,5849,920,917,5850,0,5979,922,919,5980,5849,920,917,5850,43,5850,917,916,5465,0,5980,919,918,5595,5850,917,916,5465,43,5851,5850,5465,5464,0,5981,5980,5595,5594,5851,5850,5465,5464,43,5469,5471,5852,5853,0,5599,5601,5982,5983,5469,5471,5852,5853,43,5471,3108,4043,5852,0,5601,3234,4170,5982,5471,3108,4043,5852,43,5852,4043,4041,5854,0,5982,4170,4168,5984,5852,4043,4041,5854,43,5853,5852,5854,5855,0,5983,5982,5984,5985,5853,5852,5854,5855,43,5581,5856,5857,5858,0,5711,5986,5987,5988,5581,5856,5857,5858,43,5856,5859,5860,5857,0,5986,5989,5990,5987,5856,5859,5860,5857,43,5857,5860,5855,5861,0,5987,5990,5985,5991,5857,5860,5855,5861,43,5858,5857,5861,5862,0,5988,5987,5991,5992,5858,5857,5861,5862,43,5855,5854,5863,5861,0,5985,5984,5993,5991,5855,5854,5863,5861,43,5854,4041,4040,5863,0,5984,4168,4167,5993,5854,4041,4040,5863,43,5863,4040,3756,5864,0,5993,4167,3883,5994,5863,4040,3756,5864,43,5861,5863,5864,5862,0,5991,5993,5994,5992,5861,5863,5864,5862,43,5855,5860,5865,5853,0,5985,5990,5995,5983,5855,5860,5865,5853,43,5860,5859,5866,5865,0,5990,5989,5996,5995,5860,5859,5866,5865,43,5865,5866,5464,5467,0,5995,5996,5594,5597,5865,5866,5464,5467,43,5853,5865,5467,5469,0,5983,5995,5597,5599,5853,5865,5467,5469,43,5575,5867,5868,5576,0,5705,5997,5998,5706,5575,5867,5868,5576,43,5867,5869,5870,5868,0,5997,5999,6000,5998,5867,5869,5870,5868,43,5868,5870,5871,5872,0,5998,6000,6001,6002,5868,5870,5871,5872,43,5576,5868,5872,5579,0,5706,5998,6002,5709,5576,5868,5872,5579,43,5871,5873,5874,5875,0,6001,6003,6004,6005,5871,5873,5874,5875,43,5873,5496,5540,5874,0,6003,5626,5670,6004,5873,5496,5540,5874,43,5874,5540,5539,5876,0,6004,5670,5669,6006,5874,5540,5539,5876,43,5875,5874,5876,5877,0,6005,6004,6006,6007,5875,5874,5876,5877,43,5480,5497,5878,5879,0,5610,5627,6008,6009,5480,5497,5878,5879,43,5497,5496,5873,5878,0,5627,5626,6003,6008,5497,5496,5873,5878,43,5878,5873,5871,5870,0,6008,6003,6001,6000,5878,5873,5871,5870,43,5879,5878,5870,5869,0,6009,6008,6000,5999,5879,5878,5870,5869,43,5880,5881,5882,5883,0,6010,6011,6012,6013,5880,5881,5882,5883,43,5881,5884,5885,5882,0,6011,6014,6015,6012,5881,5884,5885,5882,43,5882,5885,5886,5887,0,6012,6015,6016,6017,5882,5885,5886,5887,43,5883,5882,5887,5888,0,6013,6012,6017,6018,5883,5882,5887,5888,43,5888,5889,5890,5891,0,6018,6019,6020,6021,5888,5889,5890,5891,43,5889,5892,5893,5890,0,6019,6022,6023,6020,5889,5892,5893,5890,43,5890,5893,5648,5645,0,6020,6023,5778,5775,5890,5893,5648,5645,43,5891,5890,5645,5644,0,6021,6020,5775,5774,5891,5890,5645,5644,43,5892,5894,5895,5893,0,6022,6024,6025,6023,5892,5894,5895,5893,43,5894,5896,5897,5895,0,6024,6026,6027,6025,5894,5896,5897,5895,43,5895,5897,5898,5899,0,6025,6027,6028,6029,5895,5897,5898,5899,43,5893,5895,5899,5648,0,6023,6025,6029,5778,5893,5895,5899,5648,43,5898,5897,5900,5901,0,6028,6027,6030,6031,5898,5897,5900,5901,43,5897,5896,5902,5900,0,6027,6026,6032,6030,5897,5896,5902,5900,43,5900,5902,5903,5904,0,6030,6032,6033,6034,5900,5902,5903,5904,43,5901,5900,5904,5905,0,6031,6030,6034,6035,5901,5900,5904,5905,43,5623,5622,5906,5907,0,5753,5752,6036,6037,5623,5622,5906,5907,43,5622,5619,5618,5906,0,5752,5749,5748,6036,5622,5619,5618,5906,43,5906,5618,5617,5908,0,6036,5748,5747,6038,5906,5618,5617,5908,43,5907,5906,5908,5909,0,6037,6036,6038,6039,5907,5906,5908,5909,43,5625,5624,5910,5630,0,5755,5754,6040,5760,5625,5624,5910,5630,43,5624,5623,5907,5910,0,5754,5753,6037,6040,5624,5623,5907,5910,43,5910,5907,5909,5911,0,6040,6037,6039,6041,5910,5907,5909,5911,43,5630,5910,5911,5631,0,5760,6040,6041,5761,5630,5910,5911,5631,43,5607,5698,5912,5913,0,5737,5828,6042,6043,5607,5698,5912,5913,43,5698,5697,5711,5912,0,5828,5827,5841,6042,5698,5697,5711,5912,43,5912,5711,5631,5911,0,6042,5841,5761,6041,5912,5711,5631,5911,43,5913,5912,5911,5909,0,6043,6042,6041,6039,5913,5912,5911,5909,43,5607,5913,5914,5608,0,5737,6043,6044,5738,5607,5913,5914,5608,43,5913,5909,5915,5914,0,6043,6039,6045,6044,5913,5909,5915,5914,43,5914,5915,5916,5917,0,6044,6045,6046,6047,5914,5915,5916,5917,43,5608,5914,5917,5609,0,5738,6044,6047,5739,5608,5914,5917,5609,43,5909,5908,5918,5915,0,6039,6038,6048,6045,5909,5908,5918,5915,43,5908,5617,5919,5918,0,6038,5747,6049,6048,5908,5617,5919,5918,43,5918,5919,5920,5921,0,6048,6049,6050,6051,5918,5919,5920,5921,43,5915,5918,5921,5916,0,6045,6048,6051,6046,5915,5918,5921,5916,43,5922,5923,5924,5925,0,6052,6053,6054,6055,5922,5923,5924,5925,43,5923,5926,5927,5924,0,6053,6056,6057,6054,5923,5926,5927,5924,43,5924,5927,5928,5929,0,6054,6057,6058,6059,5924,5927,5928,5929,43,5925,5924,5929,5930,0,6055,6054,6059,6060,5925,5924,5929,5930,43,5916,5921,5931,5932,0,6046,6051,6061,6062,5916,5921,5931,5932,43,5921,5920,5933,5931,0,6051,6050,6063,6061,5921,5920,5933,5931,43,5931,5933,5926,5923,0,6061,6063,6056,6053,5931,5933,5926,5923,43,5932,5931,5923,5922,0,6062,6061,6053,6052,5932,5931,5923,5922,43,5617,5616,5934,5935,0,5747,5746,6064,6065,5617,5616,5934,5935,43,5616,5615,5936,5934,0,5746,5745,6066,6064,5616,5615,5936,5934,43,5934,5936,5937,5938,0,6064,6066,6067,6068,5934,5936,5937,5938,43,5935,5934,5938,5939,0,6065,6064,6068,6069,5935,5934,5938,5939,43,5834,5940,5941,5830,0,5964,6070,6071,5960,5834,5940,5941,5830,43,5940,5937,5942,5941,0,6070,6067,6072,6071,5940,5937,5942,5941,43,5941,5942,5666,5669,0,6071,6072,5796,5799,5941,5942,5666,5669,43,5830,5941,5669,5673,0,5960,6071,5799,5803,5830,5941,5669,5673,43,5937,5936,5943,5942,0,6067,6066,6073,6072,5937,5936,5943,5942,43,5936,5615,5612,5943,0,6066,5745,5742,6073,5936,5615,5612,5943,43,5943,5612,5611,5667,0,6073,5742,5741,5797,5943,5612,5611,5667,43,5942,5943,5667,5666,0,6072,6073,5797,5796,5942,5943,5667,5666,43,5905,5904,5944,5945,0,6035,6034,6074,6075,5905,5904,5944,5945,43,5904,5903,5946,5944,0,6034,6033,6076,6074,5904,5903,5946,5944,43,5944,5946,5939,5947,0,6074,6076,6069,6077,5944,5946,5939,5947,43,5945,5944,5947,5948,0,6075,6074,6077,6078,5945,5944,5947,5948,43,5837,5949,5950,5838,0,5967,6079,6080,5968,5837,5949,5950,5838,43,5949,5905,5945,5950,0,6079,6035,6075,6080,5949,5905,5945,5950,43,5950,5945,5948,5951,0,6080,6075,6078,6081,5950,5945,5948,5951,43,5838,5950,5951,5839,0,5968,6080,6081,5969,5838,5950,5951,5839,43,5839,5951,5952,5843,0,5969,6081,6082,5973,5839,5951,5952,5843,43,5951,5948,5953,5952,0,6081,6078,6083,6082,5951,5948,5953,5952,43,5952,5953,5834,5833,0,6082,6083,5964,5963,5952,5953,5834,5833,43,5843,5952,5833,5832,0,5973,6082,5963,5962,5843,5952,5833,5832,43,5939,5938,5954,5947,0,6069,6068,6084,6077,5939,5938,5954,5947,43,5938,5937,5940,5954,0,6068,6067,6070,6084,5938,5937,5940,5954,43,5954,5940,5834,5953,0,6084,6070,5964,6083,5954,5940,5834,5953,43,5947,5954,5953,5948,0,6077,6084,6083,6078,5947,5954,5953,5948,43,5939,5946,5955,5935,0,6069,6076,6085,6065,5939,5946,5955,5935,43,5946,5903,5956,5955,0,6076,6033,6086,6085,5946,5903,5956,5955,43,5955,5956,5920,5919,0,6085,6086,6050,6049,5955,5956,5920,5919,43,5935,5955,5919,5617,0,6065,6085,6049,5747,5935,5955,5919,5617,43,5920,5956,5957,5933,0,6050,6086,6087,6063,5920,5956,5957,5933,43,5956,5903,5902,5957,0,6086,6033,6032,6087,5956,5903,5902,5957,43,5957,5902,5896,5958,0,6087,6032,6026,6088,5957,5902,5896,5958,43,5933,5957,5958,5926,0,6063,6087,6088,6056,5933,5957,5958,5926,43,5926,5958,5959,5927,0,6056,6088,6089,6057,5926,5958,5959,5927,43,5958,5896,5894,5959,0,6088,6026,6024,6089,5958,5896,5894,5959,43,5959,5894,5892,5960,0,6089,6024,6022,6090,5959,5894,5892,5960,43,5927,5959,5960,5928,0,6057,6089,6090,6058,5927,5959,5960,5928,43,5886,5961,5962,5887,0,6016,6091,6092,6017,5886,5961,5962,5887,43,5961,5928,5960,5962,0,6091,6058,6090,6092,5961,5928,5960,5962,43,5962,5960,5892,5889,0,6092,6090,6022,6019,5962,5960,5892,5889,43,5887,5962,5889,5888,0,6017,6092,6019,6018,5887,5962,5889,5888,43,5884,5963,5964,5885,0,6014,6093,6094,6015,5884,5963,5964,5885,43,5963,5965,5966,5964,0,6093,6095,6096,6094,5963,5965,5966,5964,43,5964,5966,5967,5968,0,6094,6096,6097,6098,5964,5966,5967,5968,43,5885,5964,5968,5886,0,6015,6094,6098,6016,5885,5964,5968,5886,43,5930,5929,5969,5970,0,6060,6059,6099,6100,5930,5929,5969,5970,43,5929,5928,5961,5969,0,6059,6058,6091,6099,5929,5928,5961,5969,43,5969,5961,5886,5968,0,6099,6091,6016,6098,5969,5961,5886,5968,43,5970,5969,5968,5967,0,6100,6099,6098,6097,5970,5969,5968,5967,43,5609,5917,5971,5972,0,5739,6047,6101,6102,5609,5917,5971,5972,43,5917,5916,5932,5971,0,6047,6046,6062,6101,5917,5916,5932,5971,43,5971,5932,5922,5973,0,6101,6062,6052,6103,5971,5932,5922,5973,43,5972,5971,5973,5974,0,6102,6101,6103,6104,5972,5971,5973,5974,43,5974,5973,5975,5976,0,6104,6103,6105,6106,5974,5973,5975,5976,43,5973,5922,5925,5975,0,6103,6052,6055,6105,5973,5922,5925,5975,43,5975,5925,5930,5977,0,6105,6055,6060,6107,5975,5925,5930,5977,43,5976,5975,5977,5978,0,6106,6105,6107,6108,5976,5975,5977,5978,43,5604,5610,5979,5980,0,5734,5740,6109,6110,5604,5610,5979,5980,43,5610,5609,5972,5979,0,5740,5739,6102,6109,5610,5609,5972,5979,43,5979,5972,5974,5981,0,6109,6102,6104,6111,5979,5972,5974,5981,43,5980,5979,5981,5982,0,6110,6109,6111,6112,5980,5979,5981,5982,43,5596,5599,5983,5984,0,5726,5729,6113,6114,5596,5599,5983,5984,43,5599,5604,5980,5983,0,5729,5734,6110,6113,5599,5604,5980,5983,43,5983,5980,5982,5985,0,6113,6110,6112,6115,5983,5980,5982,5985,43,5984,5983,5985,5986,0,6114,6113,6115,6116,5984,5983,5985,5986,43,5986,5985,5987,5988,0,6116,6115,6117,6118,5986,5985,5987,5988,43,5985,5982,5989,5987,0,6115,6112,6119,6117,5985,5982,5989,5987,43,5987,5989,5990,5991,0,6117,6119,6120,6121,5987,5989,5990,5991,43,5988,5987,5991,5590,0,6118,6117,6121,5720,5988,5987,5991,5590,43,5974,5976,5992,5981,0,6104,6106,6122,6111,5974,5976,5992,5981,43,5976,5978,5993,5992,0,6106,6108,6123,6122,5976,5978,5993,5992,43,5992,5993,5990,5989,0,6122,6123,6120,6119,5992,5993,5990,5989,43,5981,5992,5989,5982,0,6111,6122,6119,6112,5981,5992,5989,5982,43,5978,5994,5995,5993,0,6108,6124,6125,6123,5978,5994,5995,5993,43,5994,5996,5997,5995,0,6124,6126,6127,6125,5994,5996,5997,5995,43,5995,5997,5998,5999,0,6125,6127,6128,6129,5995,5997,5998,5999,43,5993,5995,5999,5990,0,6123,6125,6129,6120,5993,5995,5999,5990,43,5990,5999,6000,5991,0,6120,6129,6130,6121,5990,5999,6000,5991,43,5999,5998,6001,6000,0,6129,6128,6131,6130,5999,5998,6001,6000,43,6000,6001,5594,5591,0,6130,6131,5724,5721,6000,6001,5594,5591,43,5991,6000,5591,5590,0,6121,6130,5721,5720,5991,6000,5591,5590,43,5998,6002,6003,6001,0,6128,6132,6133,6131,5998,6002,6003,6001,43,6002,6004,6005,6003,0,6132,6134,6135,6133,6002,6004,6005,6003,43,6003,6005,6006,6007,0,6133,6135,6136,6137,6003,6005,6006,6007,43,6001,6003,6007,5594,0,6131,6133,6137,5724,6001,6003,6007,5594,43,5996,6008,6009,5997,0,6126,6138,6139,6127,5996,6008,6009,5997,43,6008,6010,6011,6009,0,6138,6140,6141,6139,6008,6010,6011,6009,43,6009,6011,6004,6002,0,6139,6141,6134,6132,6009,6011,6004,6002,43,5997,6009,6002,5998,0,6127,6139,6132,6128,5997,6009,6002,5998,43,5930,5970,6012,5977,0,6060,6100,6142,6107,5930,5970,6012,5977,43,5970,5967,6013,6012,0,6100,6097,6143,6142,5970,5967,6013,6012,43,6012,6013,5996,5994,0,6142,6143,6126,6124,6012,6013,5996,5994,43,5977,6012,5994,5978,0,6107,6142,6124,6108,5977,6012,5994,5978,43,5967,5966,6014,6013,0,6097,6096,6144,6143,5967,5966,6014,6013,43,5966,5965,6015,6014,0,6096,6095,6145,6144,5966,5965,6015,6014,43,6014,6015,6010,6008,0,6144,6145,6140,6138,6014,6015,6010,6008,43,6013,6014,6008,5996,0,6143,6144,6138,6126,6013,6014,6008,5996,43,5965,6016,6017,6015,0,6095,6146,6147,6145,5965,6016,6017,6015,43,6016,5476,5475,6017,0,6146,5606,5605,6147,6016,5476,5475,6017,43,6017,5475,5474,6018,0,6147,5605,5604,6148,6017,5475,5474,6018,43,6015,6017,6018,6010,0,6145,6147,6148,6140,6015,6017,6018,6010,43,5594,6007,6019,5595,0,5724,6137,6149,5725,5594,6007,6019,5595,43,6007,6006,6020,6019,0,6137,6136,6150,6149,6007,6006,6020,6019,43,6019,6020,6021,6022,0,6149,6150,6151,6152,6019,6020,6021,6022,43,5595,6019,6022,5584,0,5725,6149,6152,5714,5595,6019,6022,5584,43,6021,6023,6024,6022,0,6151,6153,6154,6152,6021,6023,6024,6022,43,6023,5869,5867,6024,0,6153,5999,5997,6154,6023,5869,5867,6024,43,6024,5867,5575,5585,0,6154,5997,5705,5715,6024,5867,5575,5585,43,6022,6024,5585,5584,0,6152,6154,5715,5714,6022,6024,5585,5584,43,5482,5481,6025,6026,0,5612,5611,6155,6156,5482,5481,6025,6026,43,5481,5480,5879,6025,0,5611,5610,6009,6155,5481,5480,5879,6025,43,6025,5879,5869,6023,0,6155,6009,5999,6153,6025,5879,5869,6023,43,6026,6025,6023,6021,0,6156,6155,6153,6151,6026,6025,6023,6021,43,6006,6027,6028,6020,0,6136,6157,6158,6150,6006,6027,6028,6020,43,6027,5486,5485,6028,0,6157,5616,5615,6158,6027,5486,5485,6028,43,6028,5485,5482,6026,0,6158,5615,5612,6156,6028,5485,5482,6026,43,6020,6028,6026,6021,0,6150,6158,6156,6151,6020,6028,6026,6021,43,6010,6018,6029,6011,0,6140,6148,6159,6141,6010,6018,6029,6011,43,6018,5474,5493,6029,0,6148,5604,5623,6159,6018,5474,5493,6029,43,6029,5493,5490,6030,0,6159,5623,5620,6160,6029,5493,5490,6030,43,6011,6029,6030,6004,0,6141,6159,6160,6134,6011,6029,6030,6004,43,6004,6030,6031,6005,0,6134,6160,6161,6135,6004,6030,6031,6005,43,6030,5490,5489,6031,0,6160,5620,5619,6161,6030,5490,5489,6031,43,6031,5489,5486,6027,0,6161,5619,5616,6157,6031,5489,5486,6027,43,6005,6031,6027,6006,0,6135,6161,6157,6136,6005,6031,6027,6006,43,5512,5511,6032,6033,0,5642,5641,6162,6163,5512,5511,6032,6033,43,5511,5476,6016,6032,0,5641,5606,6146,6162,5511,5476,6016,6032,43,6032,6016,5965,5963,0,6162,6146,6095,6093,6032,6016,5965,5963,43,6033,6032,5963,5884,0,6163,6162,6093,6014,6033,6032,5963,5884,43,5516,5515,6034,6035,0,5646,5645,6164,6165,5516,5515,6034,6035,43,5515,5512,6033,6034,0,5645,5642,6163,6164,5515,5512,6033,6034,43,6034,6033,5884,5881,0,6164,6163,6014,6011,6034,6033,5884,5881,43,6035,6034,5881,5880,0,6165,6164,6011,6010,6035,6034,5881,5880,43,5320,6036,6037,5321,0,5450,6166,6167,5451,5320,6036,6037,5321,43,6036,6038,6039,6037,0,6166,6168,6169,6167,6036,6038,6039,6037,43,6037,6039,5837,5835,0,6167,6169,5967,5965,6037,6039,5837,5835,43,5321,6037,5835,5112,0,5451,6167,5965,5242,5321,6037,5835,5112,43,6038,6040,6041,6039,0,6168,6170,6171,6169,6038,6040,6041,6039,43,6040,5898,5901,6041,0,6170,6028,6031,6171,6040,5898,5901,6041,43,6041,5901,5905,5949,0,6171,6031,6035,6079,6041,5901,5905,5949,43,6039,6041,5949,5837,0,6169,6171,6079,5967,6039,6041,5949,5837,43,5650,5649,6042,6043,0,5780,5779,6172,6173,5650,5649,6042,6043,43,5649,5648,5899,6042,0,5779,5778,6029,6172,5649,5648,5899,6042,43,6042,5899,5898,6040,0,6172,6029,6028,6170,6042,5899,5898,6040,43,6043,6042,6040,6038,0,6173,6172,6170,6168,6043,6042,6040,6038,43,5328,6044,6045,5329,0,5458,6174,6175,5459,5328,6044,6045,5329,43,6044,5650,6043,6045,0,6174,5780,6173,6175,6044,5650,6043,6045,43,6045,6043,6038,6036,0,6175,6173,6168,6166,6045,6043,6038,6036,43,5329,6045,6036,5320,0,5459,6175,6166,5450,5329,6045,6036,5320,43,5650,6044,6046,5651,0,5780,6174,6176,5781,5650,6044,6046,5651,43,6044,5328,5331,6046,0,6174,5458,5461,6176,6044,5328,5331,6046,43,6046,5331,5330,6047,0,6176,5461,5460,6177,6046,5331,5330,6047,43,5651,6046,6047,5652,0,5781,6176,6177,5782,5651,6046,6047,5652,43,6048,6049,6050,6051,0,6178,6179,6180,6181,6048,6049,6050,6051,43,6049,6052,6053,6050,0,6179,6182,6183,6180,6049,6052,6053,6050,43,6050,6053,5334,5337,0,6180,6183,5464,5467,6050,6053,5334,5337,43,6051,6050,5337,5342,0,6181,6180,5467,5472,6051,6050,5337,5342,43,5330,5345,6054,6047,0,5460,5475,6184,6177,5330,5345,6054,6047,43,5345,5334,6053,6054,0,5475,5464,6183,6184,5345,5334,6053,6054,43,6054,6053,6052,6055,0,6184,6183,6182,6185,6054,6053,6052,6055,43,6047,6054,6055,5652,0,6177,6184,6185,5782,6047,6054,6055,5652,43,5503,6056,6057,5552,0,5633,6186,6187,5682,5503,6056,6057,5552,43,6056,6058,6059,6057,0,6186,6188,6189,6187,6056,6058,6059,6057,43,6057,6059,6060,6061,0,6187,6189,6190,6191,6057,6059,6060,6061,43,5552,6057,6061,5548,0,5682,6187,6191,5678,5552,6057,6061,5548,43,6062,6063,6064,6065,0,6192,6193,6194,6195,6062,6063,6064,6065,43,6063,6066,6067,6064,0,6193,6196,6197,6194,6063,6066,6067,6064,43,6064,6067,5644,5647,0,6194,6197,5774,5777,6064,6067,5644,5647,43,6065,6064,5647,5652,0,6195,6194,5777,5782,6065,6064,5647,5652,43,6066,6068,6069,6067,0,6196,6198,6199,6197,6066,6068,6069,6067,43,6068,5880,5883,6069,0,6198,6010,6013,6199,6068,5880,5883,6069,43,6069,5883,5888,5891,0,6199,6013,6018,6021,6069,5883,5888,5891,43,6067,6069,5891,5644,0,6197,6199,6021,5774,6067,6069,5891,5644,43,5508,5519,6070,6071,0,5638,5649,6200,6201,5508,5519,6070,6071,43,5519,5516,6035,6070,0,5649,5646,6165,6200,5519,5516,6035,6070,43,6070,6035,5880,6068,0,6200,6165,6010,6198,6070,6035,5880,6068,43,6071,6070,6068,6066,0,6201,6200,6198,6196,6071,6070,6068,6066,43,5501,5509,6072,6073,0,5631,5639,6202,6203,5501,5509,6072,6073,43,5509,5508,6071,6072,0,5639,5638,6201,6202,5509,5508,6071,6072,43,6072,6071,6066,6063,0,6202,6201,6196,6193,6072,6071,6066,6063,43,6073,6072,6063,6062,0,6203,6202,6193,6192,6073,6072,6063,6062,43,5503,5502,6074,6056,0,5633,5632,6204,6186,5503,5502,6074,6056,43,5502,5501,6073,6074,0,5632,5631,6203,6204,5502,5501,6073,6074,43,6074,6073,6062,6075,0,6204,6203,6192,6205,6074,6073,6062,6075,43,6056,6074,6075,6058,0,6186,6204,6205,6188,6056,6074,6075,6058,43,6052,6076,6077,6055,0,6182,6206,6207,6185,6052,6076,6077,6055,43,6076,6058,6075,6077,0,6206,6188,6205,6207,6076,6058,6075,6077,43,6077,6075,6062,6065,0,6207,6205,6192,6195,6077,6075,6062,6065,43,6055,6077,6065,5652,0,6185,6207,6195,5782,6055,6077,6065,5652,43,6058,6076,6078,6059,0,6188,6206,6208,6189,6058,6076,6078,6059,43,6076,6052,6049,6078,0,6206,6182,6179,6208,6076,6052,6049,6078,43,6078,6049,6048,6079,0,6208,6179,6178,6209,6078,6049,6048,6079,43,6059,6078,6079,6060,0,6189,6208,6209,6190,6059,6078,6079,6060,43,6060,6079,6080,6081,0,6190,6209,6210,6211,6060,6079,6080,6081,43,6079,6048,6082,6080,0,6209,6178,6212,6210,6079,6048,6082,6080,43,6080,6082,6083,6084,0,6210,6212,6213,6214,6080,6082,6083,6084,43,6081,6080,6084,6085,0,6211,6210,6214,6215,6081,6080,6084,6085,43,6086,6087,6088,6089,0,6216,6217,6218,6219,6086,6087,6088,6089,43,6087,5380,5377,6088,0,6217,5510,5507,6218,6087,5380,5377,6088,43,6088,5377,5376,6090,0,6218,5507,5506,6220,6088,5377,5376,6090,43,6089,6088,6090,6091,0,6219,6218,6220,6221,6089,6088,6090,6091,43,6083,6092,6093,6094,0,6213,6222,6223,6224,6083,6092,6093,6094,43,6092,5387,5385,6093,0,6222,5517,5515,6223,6092,5387,5385,6093,43,6093,5385,5380,6087,0,6223,5515,5510,6217,6093,5385,5380,6087,43,6094,6093,6087,6086,0,6224,6223,6217,6216,6094,6093,6087,6086,43,6095,6096,6097,6098,0,6225,6226,6227,6228,6095,6096,6097,6098,43,6096,6086,6089,6097,0,6226,6216,6219,6227,6096,6086,6089,6097,43,6097,6089,6091,6099,0,6227,6219,6221,6229,6097,6089,6091,6099,43,6098,6097,6099,6100,0,6228,6227,6229,6230,6098,6097,6099,6100,43,6085,6101,6102,6103,0,6215,6231,6232,6233,6085,6101,6102,6103,43,6101,6095,6104,6102,0,6231,6225,6234,6232,6101,6095,6104,6102,43,6102,6104,6105,6106,0,6232,6234,6235,6236,6102,6104,6105,6106,43,6103,6102,6106,5524,0,6233,6232,6236,5654,6103,6102,6106,5524,43,5548,6061,6107,5549,0,5678,6191,6237,5679,5548,6061,6107,5549,43,6061,6060,6081,6107,0,6191,6190,6211,6237,6061,6060,6081,6107,43,6107,6081,6085,6103,0,6237,6211,6215,6233,6107,6081,6085,6103,43,5549,6107,6103,5524,0,5679,6237,6233,5654,5549,6107,6103,5524,43,6105,6108,6109,6106,0,6235,6238,6239,6236,6105,6108,6109,6106,43,6108,6110,6111,6109,0,6238,6240,6241,6239,6108,6110,6111,6109,43,6109,6111,5526,5525,0,6239,6241,5656,5655,6109,6111,5526,5525,43,6106,6109,5525,5524,0,6236,6239,5655,5654,6106,6109,5525,5524,43,6112,6113,6114,6115,0,6242,6243,6244,6245,6112,6113,6114,6115,43,6113,6110,6108,6114,0,6243,6240,6238,6244,6113,6110,6108,6114,43,6114,6108,6105,6116,0,6244,6238,6235,6246,6114,6108,6105,6116,43,6115,6114,6116,6117,0,6245,6244,6246,6247,6115,6114,6116,6117,43,6118,6119,6120,6121,0,6248,6249,6250,6251,6118,6119,6120,6121,43,6119,6112,6122,6120,0,6249,6242,6252,6250,6119,6112,6122,6120,43,6120,6122,5848,5851,0,6250,6252,5978,5981,6120,6122,5848,5851,43,6121,6120,5851,5464,0,6251,6250,5981,5594,6121,6120,5851,5464,43,6123,6124,6125,6126,0,6253,6254,6255,6256,6123,6124,6125,6126,43,6124,5532,5531,6125,0,6254,5662,5661,6255,6124,5532,5531,6125,43,6125,5531,5526,6111,0,6255,5661,5656,6241,6125,5531,5526,6111,43,6126,6125,6111,6110,0,6256,6255,6241,6240,6126,6125,6111,6110,43,5877,5876,6127,6128,0,6007,6006,6257,6258,5877,5876,6127,6128,43,5876,5539,5543,6127,0,6006,5669,5673,6257,5876,5539,5543,6127,43,6127,5543,5532,6124,0,6257,5673,5662,6254,6127,5543,5532,6124,43,6128,6127,6124,6123,0,6258,6257,6254,6253,6128,6127,6124,6123,43,5859,6129,6130,5866,0,5989,6259,6260,5996,5859,6129,6130,5866,43,6129,6131,6132,6130,0,6259,6261,6262,6260,6129,6131,6132,6130,43,6130,6132,6118,6121,0,6260,6262,6248,6251,6130,6132,6118,6121,43,5866,6130,6121,5464,0,5996,6260,6251,5594,5866,6130,6121,5464,43,5579,5872,6133,6134,0,5709,6002,6263,6264,5579,5872,6133,6134,43,5872,5871,5875,6133,0,6002,6001,6005,6263,5872,5871,5875,6133,43,6133,5875,5877,6135,0,6263,6005,6007,6265,6133,5875,5877,6135,43,6134,6133,6135,6131,0,6264,6263,6265,6261,6134,6133,6135,6131,43,5581,5580,6136,5856,0,5711,5710,6266,5986,5581,5580,6136,5856,43,5580,5579,6134,6136,0,5710,5709,6264,6266,5580,5579,6134,6136,43,6136,6134,6131,6129,0,6266,6264,6261,6259,6136,6134,6131,6129,43,5856,6136,6129,5859,0,5986,6266,6259,5989,5856,6136,6129,5859,43,6131,6135,6137,6132,0,6261,6265,6267,6262,6131,6135,6137,6132,43,6135,5877,6128,6137,0,6265,6007,6258,6267,6135,5877,6128,6137,43,6137,6128,6123,6138,0,6267,6258,6253,6268,6137,6128,6123,6138,43,6132,6137,6138,6118,0,6262,6267,6268,6248,6132,6137,6138,6118,43,6118,6138,6139,6119,0,6248,6268,6269,6249,6118,6138,6139,6119,43,6138,6123,6126,6139,0,6268,6253,6256,6269,6138,6123,6126,6139,43,6139,6126,6110,6113,0,6269,6256,6240,6243,6139,6126,6110,6113,43,6119,6139,6113,6112,0,6249,6269,6243,6242,6119,6139,6113,6112,43,6140,6141,6142,6143,0,6270,6271,6272,6273,6140,6141,6142,6143,43,6141,6091,6090,6142,0,6271,6221,6220,6272,6141,6091,6090,6142,43,6142,6090,5376,5436,0,6272,6220,5506,5566,6142,6090,5376,5436,43,6143,6142,5436,5440,0,6273,6272,5566,5570,6143,6142,5436,5440,43,6144,6145,6146,6147,0,6274,6275,6276,6277,6144,6145,6146,6147,43,6145,6100,6099,6146,0,6275,6230,6229,6276,6145,6100,6099,6146,43,6146,6099,6091,6141,0,6276,6229,6221,6271,6146,6099,6091,6141,43,6147,6146,6141,6140,0,6277,6276,6271,6270,6147,6146,6141,6140,43,6140,6143,6148,6149,0,6270,6273,6278,6279,6140,6143,6148,6149,43,6143,5440,5445,6148,0,6273,5570,5575,6278,6143,5440,5445,6148,43,6148,5445,56,829,0,6278,5575,56,831,6148,5445,56,829,43,6149,6148,829,828,0,6279,6278,831,830,6149,6148,829,828,43,1421,6150,6151,1422,0,1442,6280,6281,1443,1421,6150,6151,1422,43,6150,6144,6147,6151,0,6280,6274,6277,6281,6150,6144,6147,6151,43,6151,6147,6140,6149,0,6281,6277,6270,6279,6151,6147,6140,6149,43,1422,6151,6149,828,0,1443,6281,6279,830,1422,6151,6149,828,43,920,5849,6152,1412,0,922,5979,6282,1433,920,5849,6152,1412,43,5849,5848,6153,6152,0,5979,5978,6283,6282,5849,5848,6153,6152,43,6152,6153,6154,6155,0,6282,6283,6284,6285,6152,6153,6154,6155,43,1412,6152,6155,1413,0,1433,6282,6285,1434,1412,6152,6155,1413,43,1413,6155,6156,1426,0,1434,6285,6286,1447,1413,6155,6156,1426,43,6155,6154,6157,6156,0,6285,6284,6287,6286,6155,6154,6157,6156,43,6156,6157,6144,6150,0,6286,6287,6274,6280,6156,6157,6144,6150,43,1426,6156,6150,1421,0,1447,6286,6280,1442,1426,6156,6150,1421,43,5848,6122,6158,6153,0,5978,6252,6288,6283,5848,6122,6158,6153,43,6122,6112,6115,6158,0,6252,6242,6245,6288,6122,6112,6115,6158,43,6158,6115,6117,6159,0,6288,6245,6247,6289,6158,6115,6117,6159,43,6153,6158,6159,6154,0,6283,6288,6289,6284,6153,6158,6159,6154,43,6154,6159,6160,6157,0,6284,6289,6290,6287,6154,6159,6160,6157,43,6159,6117,6161,6160,0,6289,6247,6291,6290,6159,6117,6161,6160,43,6160,6161,6100,6145,0,6290,6291,6230,6275,6160,6161,6100,6145,43,6157,6160,6145,6144,0,6287,6290,6275,6274,6157,6160,6145,6144,43,6117,6116,6162,6161,0,6247,6246,6292,6291,6117,6116,6162,6161,43,6116,6105,6104,6162,0,6246,6235,6234,6292,6116,6105,6104,6162,43,6162,6104,6095,6098,0,6292,6234,6225,6228,6162,6104,6095,6098,43,6161,6162,6098,6100,0,6291,6292,6228,6230,6161,6162,6098,6100,43,6085,6084,6163,6101,0,6215,6214,6293,6231,6085,6084,6163,6101,43,6084,6083,6094,6163,0,6214,6213,6224,6293,6084,6083,6094,6163,43,6163,6094,6086,6096,0,6293,6224,6216,6226,6163,6094,6086,6096,43,6101,6163,6096,6095,0,6231,6293,6226,6225,6101,6163,6096,6095,43,6048,6051,6164,6082,0,6178,6181,6294,6212,6048,6051,6164,6082,43,6051,5342,5462,6164,0,6181,5472,5592,6294,6051,5342,5462,6164,43,6164,5462,5387,6092,0,6294,5592,5517,6222,6164,5462,5387,6092,43,6082,6164,6092,6083,0,6212,6294,6222,6213,6082,6164,6092,6083,43,6165,6166,6167,6168,0,6295,6296,6297,6298,6165,6166,6167,6168,43,6166,6169,6170,6167,0,6296,6299,6300,6297,6166,6169,6170,6167,43,6167,6170,6171,6172,0,6297,6300,6301,6302,6167,6170,6171,6172,43,6168,6167,6172,6173,0,6298,6297,6302,6303,6168,6167,6172,6173,43,4852,4851,6174,6175,0,4982,4981,6304,6305,4852,4851,6174,6175,43,4851,4850,6176,6174,0,4981,4980,6306,6304,4851,4850,6176,6174,43,6174,6176,6177,6178,0,6304,6306,6307,6308,6174,6176,6177,6178,43,6175,6174,6178,6179,0,6305,6304,6308,6309,6175,6174,6178,6179,43,6180,6181,6182,6183,0,6310,6311,6312,6313,6180,6181,6182,6183,43,6181,6184,6185,6182,0,6311,6314,6315,6312,6181,6184,6185,6182,43,6182,6185,626,629,0,6312,6315,626,629,6182,6185,626,629,43,6183,6182,629,101,0,6313,6312,629,101,6183,6182,629,101,43,6173,6172,6186,6187,0,6303,6302,6316,6317,6173,6172,6186,6187,43,6172,6171,6188,6186,0,6302,6301,6318,6316,6172,6171,6188,6186,43,6186,6188,6189,6190,0,6316,6318,6319,6320,6186,6188,6189,6190,43,6187,6186,6190,6191,0,6317,6316,6320,6321,6187,6186,6190,6191,43,6184,6181,6192,6193,0,6314,6311,6322,6323,6184,6181,6192,6193,43,6181,6180,6194,6192,0,6311,6310,6324,6322,6181,6180,6194,6192,43,6192,6194,6195,6196,0,6322,6324,6325,6326,6192,6194,6195,6196,43,6193,6192,6196,6191,0,6323,6322,6326,6321,6193,6192,6196,6191,43,6195,6197,6198,6196,0,6325,6327,6328,6326,6195,6197,6198,6196,43,6197,4833,4835,6198,0,6327,4963,4965,6328,6197,4833,4835,6198,43,6198,4835,4839,6199,0,6328,4965,4969,6329,6198,4835,4839,6199,43,6196,6198,6199,6191,0,6326,6328,6329,6321,6196,6198,6199,6191,43,4839,4845,6200,6199,0,4969,4975,6330,6329,4839,4845,6200,6199,43,4845,4844,6201,6200,0,4975,4974,6331,6330,4845,4844,6201,6200,43,6200,6201,6173,6187,0,6330,6331,6303,6317,6200,6201,6173,6187,43,6199,6200,6187,6191,0,6329,6330,6317,6321,6199,6200,6187,6191,43,6189,6202,6203,6190,0,6319,6332,6333,6320,6189,6202,6203,6190,43,6202,6204,6205,6203,0,6332,6334,6335,6333,6202,6204,6205,6203,43,6203,6205,6184,6193,0,6333,6335,6314,6323,6203,6205,6184,6193,43,6190,6203,6193,6191,0,6320,6333,6323,6321,6190,6203,6193,6191,43,6184,6205,6206,6185,0,6314,6335,6336,6315,6184,6205,6206,6185,43,6205,6204,6207,6206,0,6335,6334,6337,6336,6205,6204,6207,6206,43,6206,6207,603,634,0,6336,6337,603,634,6206,6207,603,634,43,6185,6206,634,626,0,6315,6336,634,626,6185,6206,634,626,43,5037,6208,6209,5038,0,5167,6338,6339,5168,5037,6208,6209,5038,43,6208,6210,6211,6209,0,6338,6340,6341,6339,6208,6210,6211,6209,43,6209,6211,6212,6213,0,6339,6341,6342,6343,6209,6211,6212,6213,43,5038,6209,6213,5033,0,5168,6339,6343,5163,5038,6209,6213,5033,43,5033,6213,6214,5034,0,5163,6343,6344,5164,5033,6213,6214,5034,43,6213,6212,6215,6214,0,6343,6342,6345,6344,6213,6212,6215,6214,43,6214,6215,6177,6176,0,6344,6345,6307,6306,6214,6215,6177,6176,43,5034,6214,6176,4850,0,5164,6344,6306,4980,5034,6214,6176,4850,43,5037,5041,6216,6208,0,5167,5171,6346,6338,5037,5041,6216,6208,43,5041,4399,4402,6216,0,5171,4527,4530,6346,5041,4399,4402,6216,43,6216,4402,4404,6217,0,6346,4530,4533,6347,6216,4402,4404,6217,43,6208,6216,6217,6210,0,6338,6346,6347,6340,6208,6216,6217,6210,43,6179,6218,6219,6220,0,6309,6348,6349,6350,6179,6218,6219,6220,43,6218,6221,6222,6219,0,6348,6351,6352,6349,6218,6221,6222,6219,43,6219,6222,6169,6166,0,6349,6352,6299,6296,6219,6222,6169,6166,43,6166,6165,6220,6219,0,6296,6295,6350,6349,6166,6165,6220,6219,43,6177,6223,6224,6178,0,6307,6353,6354,6308,6177,6223,6224,6178,43,6223,6225,6226,6224,0,6353,6355,6356,6354,6223,6225,6226,6224,43,6224,6226,6221,6218,0,6354,6356,6351,6348,6224,6226,6221,6218,43,6178,6224,6218,6179,0,6308,6354,6348,6309,6178,6224,6218,6179,43,6227,6228,6229,6230,0,6357,6358,6359,6360,6227,6228,6229,6230,43,6228,6231,6232,6229,0,6358,6361,6362,6359,6228,6231,6232,6229,43,6229,6232,6233,6234,0,6359,6362,6363,6364,6229,6232,6233,6234,43,6230,6229,6234,6235,0,6360,6359,6364,6365,6230,6229,6234,6235,43,6227,6236,6237,6228,0,6357,6366,6367,6358,6227,6236,6237,6228,43,6236,6238,6239,6237,0,6366,6368,6369,6367,6236,6238,6239,6237,43,6237,6239,6240,6241,0,6367,6369,6370,6371,6237,6239,6240,6241,43,6228,6237,6241,6231,0,6358,6367,6371,6361,6228,6237,6241,6231,43,6231,6242,6243,6232,0,6361,6372,6373,6362,6231,6242,6243,6232,43,6242,6244,6245,6243,0,6372,6374,6375,6373,6242,6244,6245,6243,43,6243,6245,6246,6247,0,6373,6375,6376,6377,6243,6245,6246,6247,43,6232,6243,6247,6233,0,6362,6373,6377,6363,6232,6243,6247,6233,43,6231,6241,6248,6242,0,6361,6371,6378,6372,6231,6241,6248,6242,43,6241,6240,6249,6248,0,6371,6370,6379,6378,6241,6240,6249,6248,43,6248,6249,6250,6251,0,6378,6379,6380,6381,6248,6249,6250,6251,43,6242,6248,6251,6244,0,6372,6378,6381,6374,6242,6248,6251,6244,43,6171,6252,6253,6188,0,6301,6382,6383,6318,6171,6252,6253,6188,43,6252,6254,6255,6253,0,6382,6384,6385,6383,6252,6254,6255,6253,43,6253,6255,6256,6257,0,6383,6385,6386,6387,6253,6255,6256,6257,43,6188,6253,6257,6189,0,6318,6383,6387,6319,6188,6253,6257,6189,43,6169,6258,6259,6170,0,6299,6388,6389,6300,6169,6258,6259,6170,43,6258,6260,6261,6259,0,6388,6390,6391,6389,6258,6260,6261,6259,43,6259,6261,6254,6252,0,6389,6391,6384,6382,6259,6261,6254,6252,43,6170,6259,6252,6171,0,6300,6389,6382,6301,6170,6259,6252,6171,43,6244,6251,6262,6263,0,6374,6381,6392,6393,6244,6251,6262,6263,43,6251,6250,6264,6262,0,6381,6380,6394,6392,6251,6250,6264,6262,43,6262,6264,6256,6255,0,6392,6394,6386,6385,6262,6264,6256,6255,43,6263,6262,6255,6254,0,6393,6392,6385,6384,6263,6262,6255,6254,43,6260,6265,6266,6261,0,6390,6395,6396,6391,6260,6265,6266,6261,43,6265,6246,6245,6266,0,6395,6376,6375,6396,6265,6246,6245,6266,43,6266,6245,6244,6263,0,6396,6375,6374,6393,6266,6245,6244,6263,43,6261,6266,6263,6254,0,6391,6396,6393,6384,6261,6266,6263,6254,43,6221,6267,6268,6222,0,6351,6397,6398,6352,6221,6267,6268,6222,43,6267,6269,6270,6268,0,6397,6399,6400,6398,6267,6269,6270,6268,43,6268,6270,6260,6258,0,6398,6400,6390,6388,6268,6270,6260,6258,43,6222,6268,6258,6169,0,6352,6398,6388,6299,6222,6268,6258,6169,43,6225,6271,6272,6226,0,6355,6401,6402,6356,6225,6271,6272,6226,43,6271,6273,6274,6272,0,6401,6403,6404,6402,6271,6273,6274,6272,43,6272,6274,6269,6267,0,6402,6404,6399,6397,6272,6274,6269,6267,43,6226,6272,6267,6221,0,6356,6402,6397,6351,6226,6272,6267,6221,43,6273,6275,6276,6274,0,6403,6405,6406,6404,6273,6275,6276,6274,43,6275,6277,6278,6276,0,6405,6407,6408,6406,6275,6277,6278,6276,43,6276,6278,6279,6280,0,6406,6408,6409,6410,6276,6278,6279,6280,43,6274,6276,6280,6269,0,6404,6406,6410,6399,6274,6276,6280,6269,43,6210,6217,6281,6282,0,6340,6347,6411,6412,6210,6217,6281,6282,43,6217,4404,4415,6281,0,6347,4533,4544,6411,6217,4404,4415,6281,43,6281,4415,4414,6283,0,6411,4544,4543,6413,6281,4415,4414,6283,43,6282,6281,6283,6284,0,6412,6411,6413,6414,6282,6281,6283,6284,43,6212,6285,6286,6215,0,6342,6415,6416,6345,6212,6285,6286,6215,43,6285,6287,6288,6286,0,6415,6417,6418,6416,6285,6287,6288,6286,43,6286,6288,6225,6223,0,6416,6418,6355,6353,6286,6288,6225,6223,43,6215,6286,6223,6177,0,6345,6416,6353,6307,6215,6286,6223,6177,43,6212,6211,6289,6285,0,6342,6341,6419,6415,6212,6211,6289,6285,43,6211,6210,6282,6289,0,6341,6340,6412,6419,6211,6210,6282,6289,43,6289,6282,6284,6290,0,6419,6412,6414,6420,6289,6282,6284,6290,43,6285,6289,6290,6287,0,6415,6419,6420,6417,6285,6289,6290,6287,43,6225,6288,6291,6271,0,6355,6418,6421,6401,6225,6288,6291,6271,43,6288,6287,6292,6291,0,6418,6417,6422,6421,6288,6287,6292,6291,43,6291,6292,6293,6294,0,6421,6422,6423,6424,6291,6292,6293,6294,43,6271,6291,6294,6273,0,6401,6421,6424,6403,6271,6291,6294,6273,43,6287,6290,6295,6292,0,6417,6420,6425,6422,6287,6290,6295,6292,43,6290,6284,6296,6295,0,6420,6414,6426,6425,6290,6284,6296,6295,43,6295,6296,6297,6298,0,6425,6426,6427,6428,6295,6296,6297,6298,43,6292,6295,6298,6293,0,6422,6425,6428,6423,6292,6295,6298,6293,43,6284,6283,6299,6296,0,6414,6413,6429,6426,6284,6283,6299,6296,43,6283,4414,4423,6299,0,6413,4543,4553,6429,6283,4414,4423,6299,43,6299,4423,4422,6300,0,6429,4553,4552,6430,6299,4423,4422,6300,43,6296,6299,6300,6297,0,6426,6429,6430,6427,6296,6299,6300,6297,43,6297,6300,6301,6302,0,6427,6430,6431,6432,6297,6300,6301,6302,43,6300,4422,4430,6301,0,6430,4552,4560,6431,6300,4422,4430,6301,43,6301,4430,4432,6303,0,6431,4560,4562,6433,6301,4430,4432,6303,43,6302,6301,6303,6304,0,6432,6431,6433,6434,6302,6301,6303,6304,43,6293,6298,6305,6306,0,6423,6428,6435,6436,6293,6298,6305,6306,43,6298,6297,6302,6305,0,6428,6427,6432,6435,6298,6297,6302,6305,43,6305,6302,6304,6307,0,6435,6432,6434,6437,6305,6302,6304,6307,43,6306,6305,6307,6308,0,6436,6435,6437,6438,6306,6305,6307,6308,43,6273,6294,6309,6275,0,6403,6424,6439,6405,6273,6294,6309,6275,43,6294,6293,6306,6309,0,6424,6423,6436,6439,6294,6293,6306,6309,43,6309,6306,6308,6310,0,6439,6436,6438,6440,6309,6306,6308,6310,43,6275,6309,6310,6277,0,6405,6439,6440,6407,6275,6309,6310,6277,43,6308,6311,6312,6310,0,6438,6441,6442,6440,6308,6311,6312,6310,43,6311,6313,6314,6312,0,6441,6443,6444,6442,6311,6313,6314,6312,43,6312,6314,6315,6316,0,6442,6444,6445,6446,6312,6314,6315,6316,43,6310,6312,6316,6277,0,6440,6442,6446,6407,6310,6312,6316,6277,43,6279,6278,6317,6318,0,6409,6408,6447,6448,6279,6278,6317,6318,43,6278,6277,6316,6317,0,6408,6407,6446,6447,6278,6277,6316,6317,43,6317,6316,6315,6319,0,6447,6446,6445,6449,6317,6316,6315,6319,43,6318,6317,6319,6320,0,6448,6447,6449,6450,6318,6317,6319,6320,43,6269,6280,6321,6270,0,6399,6410,6451,6400,6269,6280,6321,6270,43,6280,6279,6322,6321,0,6410,6409,6452,6451,6280,6279,6322,6321,43,6321,6322,6246,6265,0,6451,6452,6376,6395,6321,6322,6246,6265,43,6270,6321,6265,6260,0,6400,6451,6395,6390,6270,6321,6265,6260,43,6246,6322,6323,6247,0,6376,6452,6453,6377,6246,6322,6323,6247,43,6322,6279,6318,6323,0,6452,6409,6448,6453,6322,6279,6318,6323,43,6323,6318,6320,6324,0,6453,6448,6450,6454,6323,6318,6320,6324,43,6247,6323,6324,6233,0,6377,6453,6454,6363,6247,6323,6324,6233,43,6233,6324,6325,6234,0,6363,6454,6455,6364,6233,6324,6325,6234,43,6324,6320,6326,6325,0,6454,6450,6456,6455,6324,6320,6326,6325,43,6325,6326,6327,6328,0,6455,6456,6457,6458,6325,6326,6327,6328,43,6234,6325,6328,6235,0,6364,6455,6458,6365,6234,6325,6328,6235,43,6320,6319,6329,6326,0,6450,6449,6459,6456,6320,6319,6329,6326,43,6319,6315,6330,6329,0,6449,6445,6460,6459,6319,6315,6330,6329,43,6329,6330,6331,6332,0,6459,6460,6461,6462,6329,6330,6331,6332,43,6326,6329,6332,6327,0,6456,6459,6462,6457,6326,6329,6332,6327,43,6313,6333,6334,6314,0,6443,6463,6464,6444,6313,6333,6334,6314,43,6333,6335,6336,6334,0,6463,6465,6466,6464,6333,6335,6336,6334,43,6334,6336,6331,6330,0,6464,6466,6461,6460,6334,6336,6331,6330,43,6314,6334,6330,6315,0,6444,6464,6460,6445,6314,6334,6330,6315,43,6337,6338,6339,6340,0,6467,6468,6469,6470,6337,6338,6339,6340,43,6338,6313,6311,6339,0,6468,6443,6441,6469,6338,6313,6311,6339,43,6339,6311,6308,6307,0,6469,6441,6438,6437,6339,6311,6308,6307,43,6340,6339,6307,6304,0,6470,6469,6437,6434,6340,6339,6307,6304,43,6304,6303,6341,6340,0,6434,6433,6471,6470,6304,6303,6341,6340,43,6303,4432,4456,6341,0,6433,4562,4586,6471,6303,4432,4456,6341,43,6341,4456,4449,6342,0,6471,4586,4579,6472,6341,4456,4449,6342,43,6340,6341,6342,6337,0,6470,6471,6472,6467,6340,6341,6342,6337,43,4449,4452,6343,6342,0,4579,4582,6473,6472,4449,4452,6343,6342,43,4452,4454,6344,6343,0,4582,4584,6474,6473,4452,4454,6344,6343,43,6343,6344,6345,6346,0,6473,6474,6475,6476,6343,6344,6345,6346,43,6342,6343,6346,6337,0,6472,6473,6476,6467,6342,6343,6346,6337,43,6337,6346,6347,6338,0,6467,6476,6477,6468,6337,6346,6347,6338,43,6346,6345,6348,6347,0,6476,6475,6478,6477,6346,6345,6348,6347,43,6347,6348,6335,6333,0,6477,6478,6465,6463,6347,6348,6335,6333,43,6338,6347,6333,6313,0,6468,6477,6463,6443,6338,6347,6333,6313,43,70,3089,6349,71,0,70,3215,6479,71,70,3089,6349,71,43,3089,2790,6350,6349,0,3215,2916,6480,6479,3089,2790,6350,6349,43,6349,6350,6351,6352,0,6479,6480,6481,6482,6349,6350,6351,6352,43,71,6349,6352,72,0,71,6479,6482,72,71,6349,6352,72,43,72,6352,6353,103,0,72,6482,6483,103,72,6352,6353,103,43,6352,6351,6354,6353,0,6482,6481,6484,6483,6352,6351,6354,6353,43,6353,6354,6180,6183,0,6483,6484,6310,6313,6353,6354,6180,6183,43,103,6353,6183,101,0,103,6483,6313,101,103,6353,6183,101,43,5142,5141,6355,6356,0,5272,5271,6485,6486,5142,5141,6355,6356,43,5141,4825,4828,6355,0,5271,4955,4958,6485,5141,4825,4828,6355,43,6355,4828,4833,6197,0,6485,4958,4963,6327,6355,4828,4833,6197,43,6356,6355,6197,6195,0,6486,6485,6327,6325,6356,6355,6197,6195,43,6180,6354,6357,6194,0,6310,6484,6487,6324,6180,6354,6357,6194,43,6354,6351,6358,6357,0,6484,6481,6488,6487,6354,6351,6358,6357,43,6357,6358,5142,6356,0,6487,6488,5272,6486,6357,6358,5142,6356,43,6194,6357,6356,6195,0,6324,6487,6486,6325,6194,6357,6356,6195,43,6351,6350,6359,6358,0,6481,6480,6489,6488,6351,6350,6359,6358,43,6350,2790,2793,6359,0,6480,2916,2919,6489,6350,2790,2793,6359,43,6359,2793,2795,5144,0,6489,2919,2921,5274,6359,2793,2795,5144,43,6358,6359,5144,5142,0,6488,6489,5274,5272,6358,6359,5144,5142,43,4852,6175,6360,5265,0,4982,6305,6490,5395,4852,6175,6360,5265,43,6175,6179,6220,6360,0,6305,6309,6350,6490,6175,6179,6220,6360,43,6165,6361,6360,6220,0,6295,6491,6490,6350,6165,6361,6360,6220,43,5265,6360,6361,5266,0,5395,6490,6491,5396,5265,6360,6361,5266,43,5266,6361,6362,5271,0,5396,6491,6492,5401,5266,6361,6362,5271,43,6361,6165,6168,6362,0,6491,6295,6298,6492,6361,6165,6168,6362,43,6362,6168,6173,6201,0,6492,6298,6303,6331,6362,6168,6173,6201,43,5271,6362,6201,4844,0,5401,6492,6331,4974,5271,6362,6201,4844,43,6363,6364,6365,6366,0,6493,6494,6495,6496,6363,6364,6365,6366,43,6364,6250,6249,6365,0,6494,6380,6379,6495,6364,6250,6249,6365,43,6365,6249,6240,6367,0,6495,6379,6370,6497,6365,6249,6240,6367,43,6366,6365,6367,6368,0,6496,6495,6497,6498,6366,6365,6367,6368,43,6240,6239,6369,6367,0,6370,6369,6499,6497,6240,6239,6369,6367,43,6239,6238,6370,6369,0,6369,6368,6500,6499,6239,6238,6370,6369,43,6367,6369,6370,6368,0,6497,6499,6500,6498,6367,6369,6370,6368,43,6371,6372,6373,6374,0,6501,6502,6503,6504,6371,6372,6373,6374,43,6372,609,608,6373,0,6502,609,608,6503,6372,609,608,6373,43,6373,608,595,6375,0,6503,608,595,6505,6373,608,595,6375,43,6374,6373,6375,6376,0,6504,6503,6505,6506,6374,6373,6375,6376,43,6376,6375,6377,6378,0,6506,6505,6507,6508,6376,6375,6377,6378,43,6375,595,598,6377,0,6505,595,598,6507,6375,595,598,6377,43,6377,598,603,6207,0,6507,598,603,6337,6377,598,603,6207,43,6378,6377,6207,6204,0,6508,6507,6337,6334,6378,6377,6207,6204,43,6189,6257,6379,6202,0,6319,6387,6509,6332,6189,6257,6379,6202,43,6257,6256,6380,6379,0,6387,6386,6510,6509,6257,6256,6380,6379,43,6379,6380,6376,6378,0,6509,6510,6506,6508,6379,6380,6376,6378,43,6202,6379,6378,6204,0,6332,6509,6508,6334,6202,6379,6378,6204,43,6250,6364,6381,6264,0,6380,6494,6511,6394,6250,6364,6381,6264,43,6364,6363,6382,6381,0,6494,6493,6512,6511,6364,6363,6382,6381,43,6381,6382,6376,6380,0,6511,6512,6506,6510,6381,6382,6376,6380,43,6264,6381,6380,6256,0,6394,6511,6510,6386,6264,6381,6380,6256,43,6376,6382,6383,6374,0,6506,6512,6513,6504,6376,6382,6383,6374,43,6382,6363,6366,6383,0,6512,6493,6496,6513,6382,6363,6366,6383,43,6383,6366,6368,6384,0,6513,6496,6498,6514,6383,6366,6368,6384,43,6374,6383,6384,6371,0,6504,6513,6514,6501,6374,6383,6384,6371,43,6385,6386,6387,6388,0,6515,6516,6517,6518,6385,6386,6387,6388,43,6386,6389,6390,6387,0,6516,6519,6520,6517,6386,6389,6390,6387,43,6387,6390,6391,6392,0,6517,6520,6521,6522,6387,6390,6391,6392,43,6388,6387,6392,6393,0,6518,6517,6522,6523,6388,6387,6392,6393,43,6394,6395,6396,6397,0,6524,6525,6526,6527,6394,6395,6396,6397,43,6395,5600,5597,6396,0,6525,5730,5727,6526,6395,5600,5597,6396,43,6396,5597,5596,6398,0,6526,5727,5726,6528,6396,5597,5596,6398,43,6397,6396,6398,6399,0,6527,6526,6528,6529,6397,6396,6398,6399,43,1373,6400,6401,1374,0,1394,6530,6531,1395,1373,6400,6401,1374,43,6400,6402,6403,6401,0,6530,6532,6533,6531,6400,6402,6403,6401,43,6401,6403,6404,6405,0,6531,6533,6534,6535,6401,6403,6404,6405,43,1374,6401,6405,873,0,1395,6531,6535,875,1374,6401,6405,873,43,6406,6407,6408,6409,0,6536,6537,6538,6539,6406,6407,6408,6409,43,6407,6385,6388,6408,0,6537,6515,6518,6538,6407,6385,6388,6408,43,6408,6388,6393,6410,0,6538,6518,6523,6540,6408,6388,6393,6410,43,6409,6408,6410,6411,0,6539,6538,6540,6541,6409,6408,6410,6411,43,6412,6413,6414,6415,0,6542,6543,6544,6545,6412,6413,6414,6415,43,6413,6404,6403,6414,0,6543,6534,6533,6544,6413,6404,6403,6414,43,6414,6403,6402,6416,0,6544,6533,6532,6546,6414,6403,6402,6416,43,6415,6414,6416,6411,0,6545,6544,6546,6541,6415,6414,6416,6411,43,5589,5588,6417,6418,0,5719,5718,6547,6548,5589,5588,6417,6418,43,5588,5583,6419,6417,0,5718,5713,6549,6547,5588,5583,6419,6417,43,6417,6419,6412,6415,0,6547,6549,6542,6545,6417,6419,6412,6415,43,6418,6417,6415,6411,0,6548,6547,6545,6541,6418,6417,6415,6411,43,6393,6420,6421,6410,0,6523,6550,6551,6540,6393,6420,6421,6410,43,6420,5590,5593,6421,0,6550,5720,5723,6551,6420,5590,5593,6421,43,6421,5593,5589,6418,0,6551,5723,5719,6548,6421,5593,5589,6418,43,6410,6421,6418,6411,0,6540,6551,6548,6541,6410,6421,6418,6411,43,6402,6422,6423,6416,0,6532,6552,6553,6546,6402,6422,6423,6416,43,6422,6424,6425,6423,0,6552,6554,6555,6553,6422,6424,6425,6423,43,6423,6425,6406,6409,0,6553,6555,6536,6539,6423,6425,6406,6409,43,6416,6423,6409,6411,0,6546,6553,6539,6541,6416,6423,6409,6411,43,1353,6426,6427,1379,0,1374,6556,6557,1400,1353,6426,6427,1379,43,6426,6424,6422,6427,0,6556,6554,6552,6557,6426,6424,6422,6427,43,6427,6422,6402,6400,0,6557,6552,6532,6530,6427,6422,6402,6400,43,1379,6427,6400,1373,0,1400,6557,6530,1394,1379,6427,6400,1373,43,6428,6429,6430,6431,0,6558,6559,6560,6561,6428,6429,6430,6431,43,6429,6432,6433,6430,0,6559,6562,6563,6560,6429,6432,6433,6430,43,6430,6433,5776,5774,0,6560,6563,5906,5904,6430,6433,5776,5774,43,6431,6430,5774,5772,0,6561,6560,5904,5902,6431,6430,5774,5772,43,6394,6434,6435,6395,0,6524,6564,6565,6525,6394,6434,6435,6395,43,6434,6428,6431,6435,0,6564,6558,6561,6565,6434,6428,6431,6435,43,6435,6431,5772,5770,0,6565,6561,5902,5900,6435,6431,5772,5770,43,6395,6435,5770,5600,0,6525,6565,5900,5730,6395,6435,5770,5600,43,4495,4494,6436,6437,0,4625,4624,6566,6567,4495,4494,6436,6437,43,4494,4493,5778,6436,0,4624,4623,5908,6566,4494,4493,5778,6436,43,6436,5778,5776,6433,0,6566,5908,5906,6563,6436,5778,5776,6433,43,6437,6436,6433,6432,0,6567,6566,6563,6562,6437,6436,6433,6432,43,6389,6438,6439,6390,0,6519,6568,6569,6520,6389,6438,6439,6390,43,6438,6440,6441,6439,0,6568,6570,6571,6569,6438,6440,6441,6439,43,6439,6441,6399,6442,0,6569,6571,6529,6572,6439,6441,6399,6442,43,6390,6439,6442,6391,0,6520,6569,6572,6521,6390,6439,6442,6391,43,6440,6443,6444,6441,0,6570,6573,6574,6571,6440,6443,6444,6441,43,6443,6445,6446,6444,0,6573,6575,6576,6574,6443,6445,6446,6444,43,6444,6446,6394,6397,0,6574,6576,6524,6527,6444,6446,6394,6397,43,6441,6444,6397,6399,0,6571,6574,6527,6529,6441,6444,6397,6399,43,6447,6448,6449,6450,0,6577,6578,6579,6580,6447,6448,6449,6450,43,6448,6451,6452,6449,0,6578,6581,6582,6579,6448,6451,6452,6449,43,6449,6452,6227,6230,0,6579,6582,6357,6360,6449,6452,6227,6230,43,6450,6449,6230,6235,0,6580,6579,6360,6365,6450,6449,6230,6235,43,6453,6454,6455,6456,0,6583,6584,6585,6586,6453,6454,6455,6456,43,6454,6238,6236,6455,0,6584,6368,6366,6585,6454,6238,6236,6455,43,6455,6236,6227,6452,0,6585,6366,6357,6582,6455,6236,6227,6452,43,6456,6455,6452,6451,0,6586,6585,6582,6581,6456,6455,6452,6451,43,6457,6458,6459,6460,0,6587,6588,6589,6590,6457,6458,6459,6460,43,6458,6461,6462,6459,0,6588,6591,6592,6589,6458,6461,6462,6459,43,6459,6462,6451,6448,0,6589,6592,6581,6578,6459,6462,6451,6448,43,6460,6459,6448,6447,0,6590,6589,6578,6577,6460,6459,6448,6447,43,6463,6464,6465,6466,0,6593,6594,6595,6596,6463,6464,6465,6466,43,6464,6453,6456,6465,0,6594,6583,6586,6595,6464,6453,6456,6465,43,6465,6456,6451,6462,0,6595,6586,6581,6592,6465,6456,6451,6462,43,6466,6465,6462,6461,0,6596,6595,6592,6591,6466,6465,6462,6461,43,6467,6468,6469,6470,0,6597,6598,6599,6600,6467,6468,6469,6470,43,6468,6471,6472,6469,0,6598,6601,6602,6599,6468,6471,6472,6469,43,6469,6472,6385,6407,0,6599,6602,6515,6537,6469,6472,6385,6407,43,6470,6469,6407,6406,0,6600,6599,6537,6536,6470,6469,6407,6406,43,6471,6473,6474,6472,0,6601,6603,6604,6602,6471,6473,6474,6472,43,6473,6475,6476,6474,0,6603,6605,6606,6604,6473,6475,6476,6474,43,6474,6476,6389,6386,0,6604,6606,6519,6516,6474,6476,6389,6386,43,6472,6474,6386,6385,0,6602,6604,6516,6515,6472,6474,6386,6385,43,6467,6477,6478,6468,0,6597,6607,6608,6598,6467,6477,6478,6468,43,6477,6463,6466,6478,0,6607,6593,6596,6608,6477,6463,6466,6478,43,6478,6466,6461,6479,0,6608,6596,6591,6609,6478,6466,6461,6479,43,6468,6478,6479,6471,0,6598,6608,6609,6601,6468,6478,6479,6471,43,6461,6458,6480,6479,0,6591,6588,6610,6609,6461,6458,6480,6479,43,6458,6457,6481,6480,0,6588,6587,6611,6610,6458,6457,6481,6480,43,6480,6481,6475,6473,0,6610,6611,6605,6603,6480,6481,6475,6473,43,6479,6480,6473,6471,0,6609,6610,6603,6601,6479,6480,6473,6471,43,6475,6482,6483,6476,0,6605,6612,6613,6606,6475,6482,6483,6476,43,6482,6484,6485,6483,0,6612,6614,6615,6613,6482,6484,6485,6483,43,6483,6485,6440,6438,0,6613,6615,6570,6568,6483,6485,6440,6438,43,6476,6483,6438,6389,0,6606,6613,6568,6519,6476,6483,6438,6389,43,6484,6486,6487,6485,0,6614,6616,6617,6615,6484,6486,6487,6485,43,6486,6488,6489,6487,0,6616,6618,6619,6617,6486,6488,6489,6487,43,6487,6489,6445,6443,0,6617,6619,6575,6573,6487,6489,6445,6443,43,6485,6487,6443,6440,0,6615,6617,6573,6570,6485,6487,6443,6440,43,6490,6491,6492,6493,0,6620,6621,6622,6623,6490,6491,6492,6493,43,6491,6494,6495,6492,0,6621,6624,6625,6622,6491,6494,6495,6492,43,6492,6495,6488,6486,0,6622,6625,6618,6616,6492,6495,6488,6486,43,6493,6492,6486,6484,0,6623,6622,6616,6614,6493,6492,6486,6484,43,4508,4507,6496,6497,0,4638,4637,6626,6627,4508,4507,6496,6497,43,4507,4495,6437,6496,0,4637,4625,6567,6626,4507,4495,6437,6496,43,6496,6437,6432,6498,0,6626,6567,6562,6628,6496,6437,6432,6498,43,6497,6496,6498,6499,0,6627,6626,6628,6629,6497,6496,6498,6499,43,6445,6500,6501,6446,0,6575,6630,6631,6576,6445,6500,6501,6446,43,6500,6502,6503,6501,0,6630,6632,6633,6631,6500,6502,6503,6501,43,6501,6503,6428,6434,0,6631,6633,6558,6564,6501,6503,6428,6434,43,6446,6501,6434,6394,0,6576,6631,6564,6524,6446,6501,6434,6394,43,6499,6498,6504,6505,0,6629,6628,6634,6635,6499,6498,6504,6505,43,6498,6432,6429,6504,0,6628,6562,6559,6634,6498,6432,6429,6504,43,6504,6429,6428,6503,0,6634,6559,6558,6633,6504,6429,6428,6503,43,6505,6504,6503,6502,0,6635,6634,6633,6632,6505,6504,6503,6502,43,6506,6507,6508,6509,0,6636,6637,6638,6639,6506,6507,6508,6509,43,6507,6502,6500,6508,0,6637,6632,6630,6638,6507,6502,6500,6508,43,6508,6500,6445,6489,0,6638,6630,6575,6619,6508,6500,6445,6489,43,6509,6508,6489,6488,0,6639,6638,6619,6618,6509,6508,6489,6488,43,6510,6511,6512,6513,0,6640,6641,6642,6643,6510,6511,6512,6513,43,6511,6499,6505,6512,0,6641,6629,6635,6642,6511,6499,6505,6512,43,6512,6505,6502,6507,0,6642,6635,6632,6637,6512,6505,6502,6507,43,6513,6512,6507,6506,0,6643,6642,6637,6636,6513,6512,6507,6506,43,4516,4515,6514,6515,0,4646,4645,6644,6645,4516,4515,6514,6515,43,4515,4508,6497,6514,0,4645,4638,6627,6644,4515,4508,6497,6514,43,6514,6497,6499,6511,0,6644,6627,6629,6641,6514,6497,6499,6511,43,6515,6514,6511,6510,0,6645,6644,6641,6640,6515,6514,6511,6510,43,4523,4522,6516,6517,0,4653,4652,6646,6647,4523,4522,6516,6517,43,4522,4516,6515,6516,0,4652,4646,6645,6646,4522,4516,6515,6516,43,6516,6515,6510,6518,0,6646,6645,6640,6648,6516,6515,6510,6518,43,6517,6516,6518,6519,0,6647,6646,6648,6649,6517,6516,6518,6519,43,6519,6518,6520,6521,0,6649,6648,6650,6651,6519,6518,6520,6521,43,6518,6510,6513,6520,0,6648,6640,6643,6650,6518,6510,6513,6520,43,6520,6513,6506,6522,0,6650,6643,6636,6652,6520,6513,6506,6522,43,6521,6520,6522,6523,0,6651,6650,6652,6653,6521,6520,6522,6523,43,6523,6522,6524,6525,0,6653,6652,6654,6655,6523,6522,6524,6525,43,6522,6506,6509,6524,0,6652,6636,6639,6654,6522,6506,6509,6524,43,6524,6509,6488,6495,0,6654,6639,6618,6625,6524,6509,6488,6495,43,6525,6524,6495,6494,0,6655,6654,6625,6624,6525,6524,6495,6494,43,6526,6527,6528,6529,0,6656,6657,6658,6659,6526,6527,6528,6529,43,6527,6530,6531,6528,0,6657,6660,6661,6658,6527,6530,6531,6528,43,6528,6531,6523,6525,0,6658,6661,6653,6655,6528,6531,6523,6525,43,6529,6528,6525,6494,0,6659,6658,6655,6624,6529,6528,6525,6494,43,6526,6529,6532,6533,0,6656,6659,6662,6663,6526,6529,6532,6533,43,6529,6494,6491,6532,0,6659,6624,6621,6662,6529,6494,6491,6532,43,6532,6491,6490,6534,0,6662,6621,6620,6664,6532,6491,6490,6534,43,6533,6532,6534,6535,0,6663,6662,6664,6665,6533,6532,6534,6535,43,6457,6536,6537,6481,0,6587,6666,6667,6611,6457,6536,6537,6481,43,6536,6490,6493,6537,0,6666,6620,6623,6667,6536,6490,6493,6537,43,6537,6493,6484,6482,0,6667,6623,6614,6612,6537,6493,6484,6482,43,6481,6537,6482,6475,0,6611,6667,6612,6605,6481,6537,6482,6475,43,6535,6534,6538,6539,0,6665,6664,6668,6669,6535,6534,6538,6539,43,6534,6490,6536,6538,0,6664,6620,6666,6668,6534,6490,6536,6538,43,6538,6536,6457,6460,0,6668,6666,6587,6590,6538,6536,6457,6460,43,6539,6538,6460,6447,0,6669,6668,6590,6577,6539,6538,6460,6447,43,6327,6540,6541,6328,0,6457,6670,6671,6458,6327,6540,6541,6328,43,6540,6535,6539,6541,0,6670,6665,6669,6671,6540,6535,6539,6541,43,6541,6539,6447,6450,0,6671,6669,6577,6580,6541,6539,6447,6450,43,6328,6541,6450,6235,0,6458,6671,6580,6365,6328,6541,6450,6235,43,6331,6542,6543,6332,0,6461,6672,6673,6462,6331,6542,6543,6332,43,6542,6526,6533,6543,0,6672,6656,6663,6673,6542,6526,6533,6543,43,6543,6533,6535,6540,0,6673,6663,6665,6670,6543,6533,6535,6540,43,6332,6543,6540,6327,0,6462,6673,6670,6457,6332,6543,6540,6327,43,6331,6336,6544,6542,0,6461,6466,6674,6672,6331,6336,6544,6542,43,6336,6335,6545,6544,0,6466,6465,6675,6674,6336,6335,6545,6544,43,6544,6545,6530,6527,0,6674,6675,6660,6657,6544,6545,6530,6527,43,6542,6544,6527,6526,0,6672,6674,6657,6656,6542,6544,6527,6526,43,6523,6531,6546,6521,0,6653,6661,6676,6651,6523,6531,6546,6521,43,6531,6530,6547,6546,0,6661,6660,6677,6676,6531,6530,6547,6546,43,6546,6547,6548,6549,0,6676,6677,6678,6679,6546,6547,6548,6549,43,6521,6546,6549,6519,0,6651,6676,6679,6649,6521,6546,6549,6519,43,4539,4543,6550,6551,0,4669,4673,6680,6681,4539,4543,6550,6551,43,4543,4523,6517,6550,0,4673,4653,6647,6680,4543,4523,6517,6550,43,6550,6517,6519,6549,0,6680,6647,6649,6679,6550,6517,6519,6549,43,6551,6550,6549,6548,0,6681,6680,6679,6678,6551,6550,6549,6548,43,6345,6344,6552,6553,0,6475,6474,6682,6683,6345,6344,6552,6553,43,6344,4454,4540,6552,0,6474,4584,4670,6682,6344,4454,4540,6552,43,6552,4540,4539,6551,0,6682,4670,4669,6681,6552,4540,4539,6551,43,6553,6552,6551,6548,0,6683,6682,6681,6678,6553,6552,6551,6548,43,6335,6348,6554,6545,0,6465,6478,6684,6675,6335,6348,6554,6545,43,6348,6345,6553,6554,0,6478,6475,6683,6684,6348,6345,6553,6554,43,6554,6553,6548,6547,0,6684,6683,6678,6677,6554,6553,6548,6547,43,6545,6554,6547,6530,0,6675,6684,6677,6660,6545,6554,6547,6530,43,6555,6556,6557,6558,0,6685,6686,6687,6688,6555,6556,6557,6558,43,6556,3754,4050,6557,0,6686,3881,4177,6687,6556,3754,4050,6557,43,6557,4050,836,839,0,6687,4177,838,841,6557,4050,836,839,43,6558,6557,839,844,0,6688,6687,841,846,6558,6557,839,844,43,6404,6559,6560,6405,0,6534,6689,6690,6535,6404,6559,6560,6405,43,6559,6555,6558,6560,0,6689,6685,6688,6690,6559,6555,6558,6560,43,6560,6558,844,875,0,6690,6688,846,877,6560,6558,844,875,43,6405,6560,875,873,0,6535,6690,877,875,6405,6560,875,873,43,5583,5582,6561,6419,0,5713,5712,6691,6549,5583,5582,6561,6419,43,5582,5581,5858,6561,0,5712,5711,5988,6691,5582,5581,5858,6561,43,6561,5858,5862,6562,0,6691,5988,5992,6692,6561,5858,5862,6562,43,6419,6561,6562,6412,0,6549,6691,6692,6542,6419,6561,6562,6412,43,5862,6563,6564,6562,0,5992,6693,6694,6692,5862,6563,6564,6562,43,6563,6555,6559,6564,0,6693,6685,6689,6694,6563,6555,6559,6564,43,6564,6559,6404,6413,0,6694,6689,6534,6543,6564,6559,6404,6413,43,6562,6564,6413,6412,0,6692,6694,6543,6542,6562,6564,6413,6412,43,3756,3755,6565,5864,0,3883,3882,6695,5994,3756,3755,6565,5864,43,3755,3754,6556,6565,0,3882,3881,6686,6695,3755,3754,6556,6565,43,6565,6556,6555,6563,0,6695,6686,6685,6693,6565,6556,6555,6563,43,5864,6565,6563,5862,0,5994,6695,6693,5992,5864,6565,6563,5862,43,6391,6442,6566,6567,0,6521,6572,6696,6697,6391,6442,6566,6567,43,6442,6399,6398,6566,0,6572,6529,6528,6696,6442,6399,6398,6566,43,6566,6398,5596,5984,0,6696,6528,5726,6114,6566,6398,5596,5984,43,6567,6566,5984,5986,0,6697,6696,6114,6116,6567,6566,5984,5986,43,6393,6392,6568,6420,0,6523,6522,6698,6550,6393,6392,6568,6420,43,6392,6391,6567,6568,0,6522,6521,6697,6698,6392,6391,6567,6568,43,6568,6567,5986,5988,0,6698,6697,6116,6118,6568,6567,5986,5988,43,6420,6568,5988,5590,0,6550,6698,6118,5720,6420,6568,5988,5590,43,6453,6464,6569,6570,0,6583,6594,6699,6700,6453,6464,6569,6570,43,6464,6463,6571,6569,0,6594,6593,6701,6699,6464,6463,6571,6569,43,6569,6571,6572,6573,0,6699,6701,6702,6703,6569,6571,6572,6573,43,6570,6569,6573,6368,0,6700,6699,6703,6498,6570,6569,6573,6368,43,6238,6454,6574,6370,0,6368,6584,6704,6500,6238,6454,6574,6370,43,6454,6453,6570,6574,0,6584,6583,6700,6704,6454,6453,6570,6574,43,6370,6574,6570,6368,0,6500,6704,6700,6498,6370,6574,6570,6368,43,1351,1355,6575,6576,0,1372,1376,6705,6706,1351,1355,6575,6576,43,1355,609,6372,6575,0,1376,609,6502,6705,1355,609,6372,6575,43,6575,6372,6371,6577,0,6705,6502,6501,6707,6575,6372,6371,6577,43,6576,6575,6577,6578,0,6706,6705,6707,6708,6576,6575,6577,6578,43,1353,1352,6579,6426,0,1374,1373,6709,6556,1353,1352,6579,6426,43,1352,1351,6576,6579,0,1373,1372,6706,6709,1352,1351,6576,6579,43,6579,6576,6578,6580,0,6709,6706,6708,6710,6579,6576,6578,6580,43,6426,6579,6580,6424,0,6556,6709,6710,6554,6426,6579,6580,6424,43,6578,6581,6582,6580,0,6708,6711,6712,6710,6578,6581,6582,6580,43,6581,6467,6470,6582,0,6711,6597,6600,6712,6581,6467,6470,6582,43,6582,6470,6406,6425,0,6712,6600,6536,6555,6582,6470,6406,6425,43,6580,6582,6425,6424,0,6710,6712,6555,6554,6580,6582,6425,6424,43,6578,6583,6584,6581,0,6708,6713,6714,6711,6578,6583,6584,6581,43,6583,6572,6571,6584,0,6713,6702,6701,6714,6583,6572,6571,6584,43,6584,6571,6463,6477,0,6714,6701,6593,6607,6584,6571,6463,6477,43,6581,6584,6477,6467,0,6711,6714,6607,6597,6581,6584,6477,6467,43,6368,6573,6585,6384,0,6498,6703,6715,6514,6368,6573,6585,6384,43,6573,6572,6583,6585,0,6703,6702,6713,6715,6573,6572,6583,6585,43,6585,6583,6578,6577,0,6715,6713,6708,6707,6585,6583,6578,6577,43,6384,6585,6577,6371,0,6514,6715,6707,6501,6384,6585,6577,6371,43,6586,6587,6588,6589,0,6716,6717,6718,6719,6586,6587,6588,6589,43,6587,6590,6591,6588,0,6717,6720,6721,6718,6587,6590,6591,6588,43,6588,6591,6592,6593,0,6718,6721,6722,6723,6588,6591,6592,6593,43,6589,6588,6593,6594,0,6719,6718,6723,6724,6589,6588,6593,6594,43,6592,6595,6596,6593,0,6722,6725,6726,6723,6592,6595,6596,6593,43,6595,6597,6598,6596,0,6725,6727,6728,6726,6595,6597,6598,6596,43,6596,6598,6599,6600,0,6726,6728,6729,6730,6596,6598,6599,6600,43,6593,6596,6600,6594,0,6723,6726,6730,6724,6593,6596,6600,6594,43,6597,6601,6602,6598,0,6727,6731,6732,6728,6597,6601,6602,6598,43,6601,6603,6604,6602,0,6731,6733,6734,6732,6601,6603,6604,6602,43,6602,6604,6605,6606,0,6732,6734,6735,6736,6602,6604,6605,6606,43,6598,6602,6606,6599,0,6728,6732,6736,6729,6598,6602,6606,6599,43,6603,6607,6608,6604,0,6733,6737,6738,6734,6603,6607,6608,6604,43,6607,6609,6610,6608,0,6737,6739,6740,6738,6607,6609,6610,6608,43,6608,6610,6611,6612,0,6738,6740,6741,6742,6608,6610,6611,6612,43,6604,6608,6612,6605,0,6734,6738,6742,6735,6604,6608,6612,6605,43,6611,6610,6613,6614,0,6741,6740,6743,6744,6611,6610,6613,6614,43,6610,6609,6615,6613,0,6740,6739,6745,6743,6610,6609,6615,6613,43,6613,6615,6616,6617,0,6743,6745,6746,6747,6613,6615,6616,6617,43,6614,6613,6617,6618,0,6744,6743,6747,6748,6614,6613,6617,6618,43,6618,6617,6619,6620,0,6748,6747,6749,6750,6618,6617,6619,6620,43,6617,6616,6621,6619,0,6747,6746,6751,6749,6617,6616,6621,6619,43,6619,6621,6622,6623,0,6749,6751,6752,6753,6619,6621,6622,6623,43,6620,6619,6623,6624,0,6750,6749,6753,6754,6620,6619,6623,6624,43,6625,6626,6627,6628,0,6755,6756,6757,6758,6625,6626,6627,6628,43,6626,6629,6630,6627,0,6756,6759,6760,6757,6626,6629,6630,6627,43,6627,6630,6624,6623,0,6757,6760,6754,6753,6627,6630,6624,6623,43,6628,6627,6623,6622,0,6758,6757,6753,6752,6628,6627,6623,6622,43,6631,6632,6633,6634,0,6761,6762,6763,6764,6631,6632,6633,6634,43,6632,6635,6636,6633,0,6762,6765,6766,6763,6632,6635,6636,6633,43,6633,6636,6629,6626,0,6763,6766,6759,6756,6633,6636,6629,6626,43,6634,6633,6626,6625,0,6764,6763,6756,6755,6634,6633,6626,6625,43,6631,6637,6638,6632,0,6761,6767,6768,6762,6631,6637,6638,6632,43,6637,6639,6640,6638,0,6767,6769,6770,6768,6637,6639,6640,6638,43,6638,6640,6641,6642,0,6768,6770,6771,6772,6638,6640,6641,6642,43,6632,6638,6642,6635,0,6762,6768,6772,6765,6632,6638,6642,6635,43,6643,6644,6645,6646,0,6773,6774,6775,6776,6643,6644,6645,6646,43,6644,6647,6648,6645,0,6774,6777,6778,6775,6644,6647,6648,6645,43,6645,6648,6649,6650,0,6775,6778,6779,6780,6645,6648,6649,6650,43,6646,6645,6650,6651,0,6776,6775,6780,6781,6646,6645,6650,6651,43,6652,6653,6654,6655,0,6782,6783,6784,6785,6652,6653,6654,6655,43,6653,6656,6657,6654,0,6783,6786,6787,6784,6653,6656,6657,6654,43,6654,6657,6647,6644,0,6784,6787,6777,6774,6654,6657,6647,6644,43,6655,6654,6644,6643,0,6785,6784,6774,6773,6655,6654,6644,6643,43,6639,6658,6659,6640,0,6769,6788,6789,6770,6639,6658,6659,6640,43,6658,6656,6653,6659,0,6788,6786,6783,6789,6658,6656,6653,6659,43,6659,6653,6652,6660,0,6789,6783,6782,6790,6659,6653,6652,6660,43,6640,6659,6660,6641,0,6770,6789,6790,6771,6640,6659,6660,6641,43,6586,6661,6662,6587,0,6716,6791,6792,6717,6586,6661,6662,6587,43,6661,6651,6650,6662,0,6791,6781,6780,6792,6661,6651,6650,6662,43,6662,6650,6649,6663,0,6792,6780,6779,6793,6662,6650,6649,6663,43,6587,6662,6663,6590,0,6717,6792,6793,6720,6587,6662,6663,6590,43,6605,6664,6665,6606,0,6735,6794,6795,6736,6605,6664,6665,6606,43,6664,6666,6667,6665,0,6794,6796,6797,6795,6664,6666,6667,6665,43,6665,6667,6668,6669,0,6795,6797,6798,6799,6665,6667,6668,6669,43,6606,6665,6669,6599,0,6736,6795,6799,6729,6606,6665,6669,6599,43,6666,6670,6671,6667,0,6796,6800,6801,6797,6666,6670,6671,6667,43,6670,6672,6673,6671,0,6800,6802,6803,6801,6670,6672,6673,6671,43,6671,6673,6674,6675,0,6801,6803,6804,6805,6671,6673,6674,6675,43,6667,6671,6675,6668,0,6797,6801,6805,6798,6667,6671,6675,6668,43,6676,6677,6678,6679,0,6806,6807,6808,6809,6676,6677,6678,6679,43,6677,6672,6670,6678,0,6807,6802,6800,6808,6677,6672,6670,6678,43,6678,6670,6666,6680,0,6808,6800,6796,6810,6678,6670,6666,6680,43,6679,6678,6680,6681,0,6809,6808,6810,6811,6679,6678,6680,6681,43,6611,6682,6683,6612,0,6741,6812,6813,6742,6611,6682,6683,6612,43,6682,6681,6680,6683,0,6812,6811,6810,6813,6682,6681,6680,6683,43,6683,6680,6666,6664,0,6813,6810,6796,6794,6683,6680,6666,6664,43,6612,6683,6664,6605,0,6742,6813,6794,6735,6612,6683,6664,6605,43,6618,6684,6685,6614,0,6748,6814,6815,6744,6618,6684,6685,6614,43,6684,6686,6687,6685,0,6814,6816,6817,6815,6684,6686,6687,6685,43,6685,6687,6681,6682,0,6815,6817,6811,6812,6685,6687,6681,6682,43,6614,6685,6682,6611,0,6744,6815,6812,6741,6614,6685,6682,6611,43,6686,6688,6689,6687,0,6816,6818,6819,6817,6686,6688,6689,6687,43,6688,6690,6691,6689,0,6818,6820,6821,6819,6688,6690,6691,6689,43,6689,6691,6676,6679,0,6819,6821,6806,6809,6689,6691,6676,6679,43,6687,6689,6679,6681,0,6817,6819,6809,6811,6687,6689,6679,6681,43,6690,6692,6693,6691,0,6820,6822,6823,6821,6690,6692,6693,6691,43,6692,6694,6695,6693,0,6822,6824,6825,6823,6692,6694,6695,6693,43,6693,6695,6696,6697,0,6823,6825,6826,6827,6693,6695,6696,6697,43,6691,6693,6697,6676,0,6821,6823,6827,6806,6691,6693,6697,6676,43,6698,6699,6700,6701,0,6828,6829,6830,6831,6698,6699,6700,6701,43,6699,6694,6692,6700,0,6829,6824,6822,6830,6699,6694,6692,6700,43,6700,6692,6690,6688,0,6830,6822,6820,6818,6700,6692,6690,6688,43,6701,6700,6688,6686,0,6831,6830,6818,6816,6701,6700,6688,6686,43,6698,6701,6702,6703,0,6828,6831,6832,6833,6698,6701,6702,6703,43,6701,6686,6684,6702,0,6831,6816,6814,6832,6701,6686,6684,6702,43,6702,6684,6618,6620,0,6832,6814,6748,6750,6702,6684,6618,6620,43,6703,6702,6620,6624,0,6833,6832,6750,6754,6703,6702,6620,6624,43,6629,6704,6705,6630,0,6759,6834,6835,6760,6629,6704,6705,6630,43,6704,6706,6707,6705,0,6834,6836,6837,6835,6704,6706,6707,6705,43,6705,6707,6698,6703,0,6835,6837,6828,6833,6705,6707,6698,6703,43,6630,6705,6703,6624,0,6760,6835,6833,6754,6630,6705,6703,6624,43,6696,6695,6708,6709,0,6826,6825,6838,6839,6696,6695,6708,6709,43,6695,6694,6699,6708,0,6825,6824,6829,6838,6695,6694,6699,6708,43,6708,6699,6698,6707,0,6838,6829,6828,6837,6708,6699,6698,6707,43,6709,6708,6707,6706,0,6839,6838,6837,6836,6709,6708,6707,6706,43,6710,6711,6712,6713,0,6840,6841,6842,6843,6710,6711,6712,6713,43,6711,6714,6715,6712,0,6841,6844,6845,6842,6711,6714,6715,6712,43,6712,6715,6696,6709,0,6842,6845,6826,6839,6712,6715,6696,6709,43,6713,6712,6709,6706,0,6843,6842,6839,6836,6713,6712,6709,6706,43,6635,6716,6717,6636,0,6765,6846,6847,6766,6635,6716,6717,6636,43,6716,6710,6713,6717,0,6846,6840,6843,6847,6716,6710,6713,6717,43,6717,6713,6706,6704,0,6847,6843,6836,6834,6717,6713,6706,6704,43,6636,6717,6704,6629,0,6766,6847,6834,6759,6636,6717,6704,6629,43,6599,6669,6718,6600,0,6729,6799,6848,6730,6599,6669,6718,6600,43,6669,6668,6719,6718,0,6799,6798,6849,6848,6669,6668,6719,6718,43,6718,6719,6720,6721,0,6848,6849,6850,6851,6718,6719,6720,6721,43,6600,6718,6721,6594,0,6730,6848,6851,6724,6600,6718,6721,6594,43,6594,6721,6722,6589,0,6724,6851,6852,6719,6594,6721,6722,6589,43,6721,6720,6723,6722,0,6851,6850,6853,6852,6721,6720,6723,6722,43,6722,6723,6724,6725,0,6852,6853,6854,6855,6722,6723,6724,6725,43,6725,6586,6589,6722,0,6855,6716,6719,6852,6725,6586,6589,6722,43,6586,6725,6726,6661,0,6716,6855,6856,6791,6586,6725,6726,6661,43,6725,6724,6727,6726,0,6855,6854,6857,6856,6725,6724,6727,6726,43,6726,6727,6728,6729,0,6856,6857,6858,6859,6726,6727,6728,6729,43,6661,6726,6729,6651,0,6791,6856,6859,6781,6661,6726,6729,6651,43,6730,6731,6732,6733,0,6860,6861,6862,6863,6730,6731,6732,6733,43,6731,6734,6735,6732,0,6861,6864,6865,6862,6731,6734,6735,6732,43,6732,6735,6641,6660,0,6862,6865,6771,6790,6732,6735,6641,6660,43,6733,6732,6660,6652,0,6863,6862,6790,6782,6733,6732,6660,6652,43,6736,6737,6738,6739,0,6866,6867,6868,6869,6736,6737,6738,6739,43,6737,6740,6741,6738,0,6867,6870,6871,6868,6737,6740,6741,6738,43,6738,6741,6734,6731,0,6868,6871,6864,6861,6738,6741,6734,6731,43,6739,6738,6731,6730,0,6869,6868,6861,6860,6739,6738,6731,6730,43,6676,6742,6743,6744,0,6806,6872,6873,6874,6676,6742,6743,6744,43,6742,6740,6737,6743,0,6872,6870,6867,6873,6742,6740,6737,6743,43,6744,6743,6737,6736,0,6874,6873,6867,6866,6744,6743,6737,6736,43,6740,6745,6746,6741,0,6870,6875,6876,6871,6740,6745,6746,6741,43,6745,6714,6711,6746,0,6875,6844,6841,6876,6745,6714,6711,6746,43,6746,6711,6710,6747,0,6876,6841,6840,6877,6746,6711,6710,6747,43,6741,6746,6747,6734,0,6871,6876,6877,6864,6741,6746,6747,6734,43,6734,6747,6748,6735,0,6864,6877,6878,6865,6734,6747,6748,6735,43,6747,6710,6716,6748,0,6877,6840,6846,6878,6747,6710,6716,6748,43,6748,6716,6635,6642,0,6878,6846,6765,6772,6748,6716,6635,6642,43,6735,6748,6642,6641,0,6865,6878,6772,6771,6735,6748,6642,6641,43,6714,6745,6749,6750,0,6844,6875,6879,6880,6714,6745,6749,6750,43,6745,6740,6742,6749,0,6875,6870,6872,6879,6745,6740,6742,6749,43,6750,6749,6742,6676,0,6880,6879,6872,6806,6750,6749,6742,6676,43,6676,6744,6751,6677,0,6806,6874,6881,6807,6676,6744,6751,6677,43,6744,6736,6752,6751,0,6874,6866,6882,6881,6744,6736,6752,6751,43,6677,6751,6752,6672,0,6807,6881,6882,6802,6677,6751,6752,6672,43,6736,6753,6754,6752,0,6866,6883,6884,6882,6736,6753,6754,6752,43,6753,6674,6673,6754,0,6883,6804,6803,6884,6753,6674,6673,6754,43,6752,6754,6673,6672,0,6882,6884,6803,6802,6752,6754,6673,6672,43,6736,6755,6756,6753,0,6866,6885,6886,6883,6736,6755,6756,6753,43,6755,6757,6758,6756,0,6885,6887,6888,6886,6755,6757,6758,6756,43,6753,6756,6758,6674,0,6883,6886,6888,6804,6753,6756,6758,6674,43,6759,6760,6761,6762,0,6889,6890,6891,6892,6759,6760,6761,6762,43,6760,6757,6755,6761,0,6890,6887,6885,6891,6760,6757,6755,6761,43,6761,6755,6736,6739,0,6891,6885,6866,6869,6761,6755,6736,6739,43,6762,6761,6739,6730,0,6892,6891,6869,6860,6762,6761,6739,6730,43,6759,6762,6763,6764,0,6889,6892,6893,6894,6759,6762,6763,6764,43,6762,6730,6733,6763,0,6892,6860,6863,6893,6762,6730,6733,6763,43,6763,6733,6652,6655,0,6893,6863,6782,6785,6763,6733,6652,6655,43,6764,6763,6655,6643,0,6894,6893,6785,6773,6764,6763,6655,6643,43,6765,6766,6767,6768,0,6895,6896,6897,6898,6765,6766,6767,6768,43,6766,6757,6760,6767,0,6896,6887,6890,6897,6766,6757,6760,6767,43,6767,6760,6759,6769,0,6897,6890,6889,6899,6767,6760,6759,6769,43,6768,6767,6769,6728,0,6898,6897,6899,6858,6768,6767,6769,6728,43,6728,6769,6770,6729,0,6858,6899,6900,6859,6728,6769,6770,6729,43,6769,6759,6764,6770,0,6899,6889,6894,6900,6769,6759,6764,6770,43,6770,6764,6643,6646,0,6900,6894,6773,6776,6770,6764,6643,6646,43,6729,6770,6646,6651,0,6859,6900,6776,6781,6729,6770,6646,6651,43,6724,6771,6772,6727,0,6854,6901,6902,6857,6724,6771,6772,6727,43,6771,6773,6774,6772,0,6901,6903,6904,6902,6771,6773,6774,6772,43,6772,6774,6765,6768,0,6902,6904,6895,6898,6772,6774,6765,6768,43,6727,6772,6768,6728,0,6857,6902,6898,6858,6727,6772,6768,6728,43,6757,6766,6775,6758,0,6887,6896,6905,6888,6757,6766,6775,6758,43,6766,6765,6776,6775,0,6896,6895,6906,6905,6766,6765,6776,6775,43,6758,6775,6776,6674,0,6888,6905,6906,6804,6758,6775,6776,6674,43,6720,6777,6778,6723,0,6850,6907,6908,6853,6720,6777,6778,6723,43,6777,6779,6780,6778,0,6907,6909,6910,6908,6777,6779,6780,6778,43,6778,6780,6773,6771,0,6908,6910,6903,6901,6778,6780,6773,6771,43,6723,6778,6771,6724,0,6853,6908,6901,6854,6723,6778,6771,6724,43,6765,6774,6781,6776,0,6895,6904,6911,6906,6765,6774,6781,6776,43,6774,6773,6780,6781,0,6904,6903,6910,6911,6774,6773,6780,6781,43,6781,6780,6779,6782,0,6911,6910,6909,6912,6781,6780,6779,6782,43,6776,6781,6782,6674,0,6906,6911,6912,6804,6776,6781,6782,6674,43,6674,6782,6783,6675,0,6804,6912,6913,6805,6674,6782,6783,6675,43,6782,6779,6777,6783,0,6912,6909,6907,6913,6782,6779,6777,6783,43,6783,6777,6720,6719,0,6913,6907,6850,6849,6783,6777,6720,6719,43,6675,6783,6719,6668,0,6805,6913,6849,6798,6675,6783,6719,6668,43,6696,6715,6784,6697,0,6826,6845,6914,6827,6696,6715,6784,6697,43,6715,6714,6750,6784,0,6845,6844,6880,6914,6715,6714,6750,6784,43,6697,6784,6750,6676,0,6827,6914,6880,6806,6697,6784,6750,6676,43,6785,6786,6787,6788,0,6915,6916,6917,6918,6785,6786,6787,6788,43,6786,6789,6790,6787,0,6916,6919,6920,6917,6786,6789,6790,6787,43,6787,6790,6791,6792,0,6917,6920,6921,6922,6787,6790,6791,6792,43,6788,6787,6792,6793,0,6918,6917,6922,6923,6788,6787,6792,6793,43,4198,6794,6795,4200,0,4325,6924,6925,4327,4198,6794,6795,4200,43,6794,6791,6796,6795,0,6924,6921,6926,6925,6794,6791,6796,6795,43,6795,6796,6797,6798,0,6925,6926,6927,6928,6795,6796,6797,6798,43,4200,6795,6798,4202,0,4327,6925,6928,4329,4200,6795,6798,4202,43,4168,4171,6799,6800,0,4295,4298,6929,6930,4168,4171,6799,6800,43,4171,4067,6801,6799,0,4298,4194,6931,6929,4171,4067,6801,6799,43,6799,6801,6802,6803,0,6929,6931,6932,6933,6799,6801,6802,6803,43,6800,6799,6803,6804,0,6930,6929,6933,6934,6800,6799,6803,6804,43,6804,6805,6806,6800,0,6934,6935,6936,6930,6804,6805,6806,6800,43,6805,6807,6808,6806,0,6935,6937,6938,6936,6805,6807,6808,6806,43,6806,6808,4078,4169,0,6936,6938,4205,4296,6806,6808,4078,4169,43,6800,6806,4169,4168,0,6930,6936,4296,4295,6800,6806,4169,4168,43,6807,6809,6810,6808,0,6937,6939,6940,6938,6807,6809,6810,6808,43,6809,6793,6811,6810,0,6939,6923,6941,6940,6809,6793,6811,6810,43,6810,6811,4080,4079,0,6940,6941,4207,4206,6810,6811,4080,4079,43,6808,6810,4079,4078,0,6938,6940,4206,4205,6808,6810,4079,4078,43,6812,6813,6814,6815,0,6942,6943,6944,6945,6812,6813,6814,6815,43,6813,6807,6805,6814,0,6943,6937,6935,6944,6813,6807,6805,6814,43,6814,6805,6804,6816,0,6944,6935,6934,6946,6814,6805,6804,6816,43,6815,6814,6816,6817,0,6945,6944,6946,6947,6815,6814,6816,6817,43,6804,6803,6818,6816,0,6934,6933,6948,6946,6804,6803,6818,6816,43,6803,6802,6819,6818,0,6933,6932,6949,6948,6803,6802,6819,6818,43,6818,6819,6820,6821,0,6948,6949,6950,6951,6818,6819,6820,6821,43,6816,6818,6821,6817,0,6946,6948,6951,6947,6816,6818,6821,6817,43,6822,6823,6824,6825,0,6952,6953,6954,6955,6822,6823,6824,6825,43,6823,6826,6827,6824,0,6953,6956,6957,6954,6823,6826,6827,6824,43,6824,6827,6828,6829,0,6954,6957,6958,6959,6824,6827,6828,6829,43,6825,6824,6829,6830,0,6955,6954,6959,6960,6825,6824,6829,6830,43,6831,6832,6833,6834,0,6961,6962,6963,6964,6831,6832,6833,6834,43,6832,6835,6836,6833,0,6962,6965,6966,6963,6832,6835,6836,6833,43,6833,6836,6822,6837,0,6963,6966,6952,6967,6833,6836,6822,6837,43,6834,6833,6837,6838,0,6964,6963,6967,6968,6834,6833,6837,6838,43,6839,6840,6841,6842,0,6969,6970,6971,6972,6839,6840,6841,6842,43,6840,6835,6832,6841,0,6970,6965,6962,6971,6840,6835,6832,6841,43,6841,6832,6831,6843,0,6971,6962,6961,6973,6841,6832,6831,6843,43,6842,6841,6843,6844,0,6972,6971,6973,6974,6842,6841,6843,6844,43,6845,6846,6847,6848,0,6975,6976,6977,6978,6845,6846,6847,6848,43,6846,6839,6842,6847,0,6976,6969,6972,6977,6846,6839,6842,6847,43,6847,6842,6844,6849,0,6977,6972,6974,6979,6847,6842,6844,6849,43,6848,6847,6849,6850,0,6978,6977,6979,6980,6848,6847,6849,6850,43,4067,4064,6851,6801,0,4194,4191,6981,6931,4067,4064,6851,6801,43,4064,4063,6852,6851,0,4191,4190,6982,6981,4064,4063,6852,6851,43,6851,6852,6853,6854,0,6981,6982,6983,6984,6851,6852,6853,6854,43,6801,6851,6854,6802,0,6931,6981,6984,6932,6801,6851,6854,6802,43,6853,6855,6856,6857,0,6983,6985,6986,6987,6853,6855,6856,6857,43,6855,6845,6848,6856,0,6985,6975,6978,6986,6855,6845,6848,6856,43,6856,6848,6850,6858,0,6986,6978,6980,6988,6856,6848,6850,6858,43,6857,6856,6858,6859,0,6987,6986,6988,6989,6857,6856,6858,6859,43,6802,6854,6860,6819,0,6932,6984,6990,6949,6802,6854,6860,6819,43,6854,6853,6857,6860,0,6984,6983,6987,6990,6854,6853,6857,6860,43,6860,6857,6859,6861,0,6990,6987,6989,6991,6860,6857,6859,6861,43,6819,6860,6861,6820,0,6949,6990,6991,6950,6819,6860,6861,6820,43,4063,4173,6862,6852,0,4190,4300,6992,6982,4063,4173,6862,6852,43,4173,4175,6863,6862,0,4300,4302,6993,6992,4173,4175,6863,6862,43,6862,6863,6845,6855,0,6992,6993,6975,6985,6862,6863,6845,6855,43,6852,6862,6855,6853,0,6982,6992,6985,6983,6852,6862,6855,6853,43,4175,4177,6864,6863,0,4302,4304,6994,6993,4175,4177,6864,6863,43,4177,4179,6865,6864,0,4304,4306,6995,6994,4177,4179,6865,6864,43,6864,6865,6839,6846,0,6994,6995,6969,6976,6864,6865,6839,6846,43,6863,6864,6846,6845,0,6993,6994,6976,6975,6863,6864,6846,6845,43,4179,4189,6866,6865,0,4306,4316,6996,6995,4179,4189,6866,6865,43,4189,4188,6867,6866,0,4316,4315,6997,6996,4189,4188,6867,6866,43,6866,6867,6835,6840,0,6996,6997,6965,6970,6866,6867,6835,6840,43,6865,6866,6840,6839,0,6995,6996,6970,6969,6865,6866,6840,6839,43,6835,6867,6868,6836,0,6965,6997,6998,6966,6835,6867,6868,6836,43,6867,4188,6869,6868,0,6997,4315,6999,6998,6867,4188,6869,6868,43,6868,6869,6826,6823,0,6998,6999,6956,6953,6868,6869,6826,6823,43,6836,6868,6823,6822,0,6966,6998,6953,6952,6836,6868,6823,6822,43,4202,6798,6870,6871,0,4329,6928,7000,7001,4202,6798,6870,6871,43,6798,6797,6872,6870,0,6928,6927,7002,7000,6798,6797,6872,6870,43,6870,6872,6873,6874,0,7000,7002,7003,7004,6870,6872,6873,6874,43,6871,6870,6874,6875,0,7001,7000,7004,7005,6871,6870,6874,6875,43,6797,6796,6876,6877,0,6927,6926,7006,7007,6797,6796,6876,6877,43,6796,6791,6790,6876,0,6926,6921,6920,7006,6796,6791,6790,6876,43,6876,6790,6789,6878,0,7006,6920,6919,7008,6876,6790,6789,6878,43,6877,6876,6878,6879,0,7007,7006,7008,7009,6877,6876,6878,6879,43,6789,6880,6881,6878,0,6919,7010,7011,7008,6789,6880,6881,6878,43,6880,6882,6883,6881,0,7010,7012,7013,7011,6880,6882,6883,6881,43,6881,6883,6884,6885,0,7011,7013,7014,7015,6881,6883,6884,6885,43,6878,6881,6885,6879,0,7008,7011,7015,7009,6878,6881,6885,6879,43,6797,6877,6886,6872,0,6927,7007,7016,7002,6797,6877,6886,6872,43,6877,6879,6887,6886,0,7007,7009,7017,7016,6877,6879,6887,6886,43,6886,6887,6888,6889,0,7016,7017,7018,7019,6886,6887,6888,6889,43,6872,6886,6889,6873,0,7002,7016,7019,7003,6872,6886,6889,6873,43,6884,6890,6891,6885,0,7014,7020,7021,7015,6884,6890,6891,6885,43,6890,6892,6893,6891,0,7020,7022,7023,7021,6890,6892,6893,6891,43,6891,6893,6888,6887,0,7021,7023,7018,7017,6891,6893,6888,6887,43,6885,6891,6887,6879,0,7015,7021,7017,7009,6885,6891,6887,6879,43,6894,6895,6896,6897,0,7024,7025,7026,7027,6894,6895,6896,6897,43,6895,6882,6880,6896,0,7025,7012,7010,7026,6895,6882,6880,6896,43,6896,6880,6789,6786,0,7026,7010,6919,6916,6896,6880,6789,6786,43,6897,6896,6786,6785,0,7027,7026,6916,6915,6897,6896,6786,6785,43,6898,6899,6900,6901,0,7028,7029,7030,7031,6898,6899,6900,6901,43,6899,6894,6897,6900,0,7029,7024,7027,7030,6899,6894,6897,6900,43,6900,6897,6785,6902,0,7030,7027,6915,7032,6900,6897,6785,6902,43,6901,6900,6902,6903,0,7031,7030,7032,7033,6901,6900,6902,6903,43,6884,6883,6904,6905,0,7014,7013,7034,7035,6884,6883,6904,6905,43,6883,6882,6895,6904,0,7013,7012,7025,7034,6883,6882,6895,6904,43,6904,6895,6894,6906,0,7034,7025,7024,7036,6904,6895,6894,6906,43,6905,6904,6906,6907,0,7035,7034,7036,7037,6905,6904,6906,6907,43,6908,6909,6910,6911,0,7038,7039,7040,7041,6908,6909,6910,6911,43,6909,6892,6890,6910,0,7039,7022,7020,7040,6909,6892,6890,6910,43,6910,6890,6884,6905,0,7040,7020,7014,7035,6910,6890,6884,6905,43,6911,6910,6905,6907,0,7041,7040,7035,7037,6911,6910,6905,6907,43,6912,6913,6914,6915,0,7042,7043,7044,7045,6912,6913,6914,6915,43,6913,6916,6917,6914,0,7043,7046,7047,7044,6913,6916,6917,6914,43,6914,6917,6918,6919,0,7044,7047,7048,7049,6914,6917,6918,6919,43,6915,6914,6919,6920,0,7045,7044,7049,7050,6915,6914,6919,6920,43,6920,6919,6921,6922,0,7050,7049,7051,7052,6920,6919,6921,6922,43,6919,6918,6923,6921,0,7049,7048,7053,7051,6919,6918,6923,6921,43,6921,6923,6924,6925,0,7051,7053,7054,7055,6921,6923,6924,6925,43,6922,6921,6925,6926,0,7052,7051,7055,7056,6922,6921,6925,6926,43,6830,6829,6927,6928,0,6960,6959,7057,7058,6830,6829,6927,6928,43,6829,6828,6929,6927,0,6959,6958,7059,7057,6829,6828,6929,6927,43,6927,6929,6926,6925,0,7057,7059,7056,7055,6927,6929,6926,6925,43,6928,6927,6925,6924,0,7058,7057,7055,7054,6928,6927,6925,6924,43,6838,6837,6930,6931,0,6968,6967,7060,7061,6838,6837,6930,6931,43,6837,6822,6825,6930,0,6967,6952,6955,7060,6837,6822,6825,6930,43,6930,6825,6830,6932,0,7060,6955,6960,7062,6930,6825,6830,6932,43,6931,6930,6932,6933,0,7061,7060,7062,7063,6931,6930,6932,6933,43,6933,6932,6934,6935,0,7063,7062,7064,7065,6933,6932,6934,6935,43,6932,6830,6928,6934,0,7062,6960,7058,7064,6932,6830,6928,6934,43,6934,6928,6924,6936,0,7064,7058,7054,7066,6934,6928,6924,6936,43,6935,6934,6936,6937,0,7065,7064,7066,7067,6935,6934,6936,6937,43,6924,6923,6938,6936,0,7054,7053,7068,7066,6924,6923,6938,6936,43,6923,6918,6939,6938,0,7053,7048,7069,7068,6923,6918,6939,6938,43,6938,6939,6940,6941,0,7068,7069,7070,7071,6938,6939,6940,6941,43,6936,6938,6941,6937,0,7066,7068,7071,7067,6936,6938,6941,6937,43,6918,6917,6942,6939,0,7048,7047,7072,7069,6918,6917,6942,6939,43,6917,6916,6943,6942,0,7047,7046,7073,7072,6917,6916,6943,6942,43,6942,6943,6944,6945,0,7072,7073,7074,7075,6942,6943,6944,6945,43,6939,6942,6945,6940,0,7069,7072,7075,7070,6939,6942,6945,6940,43,6873,6889,6946,6947,0,7003,7019,7076,7077,6873,6889,6946,6947,43,6889,6888,6948,6946,0,7019,7018,7078,7076,6889,6888,6948,6946,43,6946,6948,6944,6943,0,7076,7078,7074,7073,6946,6948,6944,6943,43,6947,6946,6943,6916,0,7077,7076,7073,7046,6947,6946,6943,6916,43,6912,6949,6950,6913,0,7042,7079,7080,7043,6912,6949,6950,6913,43,6949,6875,6874,6950,0,7079,7005,7004,7080,6949,6875,6874,6950,43,6950,6874,6873,6947,0,7080,7004,7003,7077,6950,6874,6873,6947,43,6913,6950,6947,6916,0,7043,7080,7077,7046,6913,6950,6947,6916,43,6831,6834,6951,6952,0,7081,7082,7083,7084,6831,6834,6951,6952,43,6834,6838,6953,6951,0,7082,7085,7086,7083,6834,6838,6953,6951,43,6951,6953,6954,6955,0,7083,7086,7087,7088,6951,6953,6954,6955,43,6952,6951,6955,6956,0,7084,7083,7088,7089,6952,6951,6955,6956,43,6859,6858,6957,6958,0,7090,7091,7092,7093,6859,6858,6957,6958,43,6858,6850,6959,6957,0,7091,7094,7095,7092,6858,6850,6959,6957,43,6957,6959,6960,6961,0,7092,7095,7096,7097,6957,6959,6960,6961,43,6958,6957,6961,6962,0,7093,7092,7097,7098,6958,6957,6961,6962,43,6820,6861,6963,6964,0,7099,7100,7101,7102,6820,6861,6963,6964,43,6861,6859,6958,6963,0,7100,7090,7093,7101,6861,6859,6958,6963,43,6963,6958,6962,6965,0,7101,7093,7098,7103,6963,6958,6962,6965,43,6964,6963,6965,6966,0,7102,7101,7103,7104,6964,6963,6965,6966,43,6817,6821,6967,6968,0,7105,7106,7107,7108,6817,6821,6967,6968,43,6821,6820,6964,6967,0,7106,7099,7102,7107,6821,6820,6964,6967,43,6967,6964,6966,6969,0,7107,7102,7104,7109,6967,6964,6966,6969,43,6968,6967,6969,6970,0,7108,7107,7109,7110,6968,6967,6969,6970,43,6971,6972,6973,6974,0,7111,7112,7113,7114,6971,6972,6973,6974,43,6972,6812,6815,6973,0,7112,7115,7116,7113,6972,6812,6815,6973,43,6973,6815,6817,6968,0,7113,7116,7105,7108,6973,6815,6817,6968,43,6974,6973,6968,6970,0,7114,7113,7108,7110,6974,6973,6968,6970,43,6844,6843,6975,6976,0,7117,7118,7119,7120,6844,6843,6975,6976,43,6843,6831,6952,6975,0,7118,7081,7084,7119,6843,6831,6952,6975,43,6975,6952,6956,6977,0,7119,7084,7089,7121,6975,6952,6956,6977,43,6976,6975,6977,6978,0,7120,7119,7121,7122,6976,6975,6977,6978,43,6850,6849,6979,6959,0,7094,7123,7124,7095,6850,6849,6979,6959,43,6849,6844,6976,6979,0,7123,7117,7120,7124,6849,6844,6976,6979,43,6979,6976,6978,6980,0,7124,7120,7122,7125,6979,6976,6978,6980,43,6959,6979,6980,6960,0,7095,7124,7125,7096,6959,6979,6980,6960,43,6981,6982,6983,6984,0,7126,7127,7128,7129,6981,6982,6983,6984,43,6982,6985,6986,6983,0,7127,7130,7131,7128,6982,6985,6986,6983,43,6983,6986,6903,6987,0,7128,7131,7132,7133,6983,6986,6903,6987,43,6984,6983,6987,6988,0,7129,7128,7133,7134,6984,6983,6987,6988,43,6989,6990,6991,6992,0,7135,7136,7137,7138,6989,6990,6991,6992,43,6990,6940,6945,6991,0,7136,7139,7140,7137,6990,6940,6945,6991,43,6991,6945,6944,6993,0,7137,7140,7141,7142,6991,6945,6944,6993,43,6992,6991,6993,6994,0,7138,7137,7142,7143,6992,6991,6993,6994,43,6995,6996,6997,6998,0,7144,7145,7146,7147,6995,6996,6997,6998,43,6996,6937,6941,6997,0,7145,7148,7149,7146,6996,6937,6941,6997,43,6997,6941,6940,6990,0,7146,7149,7139,7136,6997,6941,6940,6990,43,6998,6997,6990,6989,0,7147,7146,7136,7135,6998,6997,6990,6989,43,6933,6935,6999,7000,0,7150,7151,7152,7153,6933,6935,6999,7000,43,6935,6937,6996,6999,0,7151,7148,7145,7152,6935,6937,6996,6999,43,6999,6996,6995,7001,0,7152,7145,7144,7154,6999,6996,6995,7001,43,7000,6999,7001,7002,0,7153,7152,7154,7155,7000,6999,7001,7002,43,6838,6931,7003,6953,0,7085,7156,7157,7086,6838,6931,7003,6953,43,6931,6933,7000,7003,0,7156,7150,7153,7157,6931,6933,7000,7003,43,7003,7000,7002,7004,0,7157,7153,7155,7158,7003,7000,7002,7004,43,6953,7003,7004,6954,0,7086,7157,7158,7087,6953,7003,7004,6954,43,6956,6955,7005,7006,0,7089,7088,7159,7160,6956,6955,7005,7006,43,6955,6954,7007,7005,0,7088,7087,7161,7159,6955,6954,7007,7005,43,7005,7007,6647,6657,0,7159,7161,7162,7163,7005,7007,6647,6657,43,7006,7005,6657,6656,0,7160,7159,7163,7164,7006,7005,6657,6656,43,6962,6961,7008,7009,0,7098,7097,7165,7166,6962,6961,7008,7009,43,6961,6960,7010,7008,0,7097,7096,7167,7165,6961,6960,7010,7008,43,7008,7010,6639,6637,0,7165,7167,7168,7169,7008,7010,6639,6637,43,7009,7008,6637,6631,0,7166,7165,7169,7170,7009,7008,6637,6631,43,6966,6965,7011,7012,0,7104,7103,7171,7172,6966,6965,7011,7012,43,6965,6962,7009,7011,0,7103,7098,7166,7171,6965,6962,7009,7011,43,7011,7009,6631,6634,0,7171,7166,7170,7173,7011,7009,6631,6634,43,7012,7011,6634,6625,0,7172,7171,7173,7174,7012,7011,6634,6625,43,6970,6969,7013,7014,0,7110,7109,7175,7176,6970,6969,7013,7014,43,6969,6966,7012,7013,0,7109,7104,7172,7175,6969,6966,7012,7013,43,7013,7012,6625,6628,0,7175,7172,7174,7177,7013,7012,6625,6628,43,7014,7013,6628,6622,0,7176,7175,7177,7178,7014,7013,6628,6622,43,6616,7015,7016,6621,0,7179,7180,7181,7182,6616,7015,7016,6621,43,7015,6971,6974,7016,0,7180,7111,7114,7181,7015,6971,6974,7016,43,7016,6974,6970,7014,0,7181,7114,7110,7176,7016,6974,6970,7014,43,6621,7016,7014,6622,0,7182,7181,7176,7178,6621,7016,7014,6622,43,6978,6977,7017,7018,0,7122,7121,7183,7184,6978,6977,7017,7018,43,6977,6956,7006,7017,0,7121,7089,7185,7183,6977,6956,7006,7017,43,7018,7017,7006,6656,0,7184,7183,7185,7186,7018,7017,7006,6656,43,6960,6980,7019,7010,0,7096,7125,7187,7167,6960,6980,7019,7010,43,6980,6978,7018,7019,0,7125,7122,7184,7187,6980,6978,7018,7019,43,7019,7018,6656,6658,0,7187,7184,7186,7188,7019,7018,6656,6658,43,7010,7019,6658,6639,0,7167,7187,7188,7168,7010,7019,6658,6639,43,6603,7020,7021,6607,0,7189,7190,7191,7192,6603,7020,7021,6607,43,7020,6981,6984,7021,0,7190,7126,7129,7191,7020,6981,6984,7021,43,7021,6984,6988,7022,0,7191,7129,7134,7193,7021,6984,6988,7022,43,6607,7021,7022,6609,0,7192,7191,7193,7194,6607,7021,7022,6609,43,6592,7023,7024,6595,0,7195,7196,7197,7198,6592,7023,7024,6595,43,7023,6989,6992,7024,0,7196,7135,7138,7197,7023,6989,6992,7024,43,7024,6992,6994,7025,0,7197,7138,7143,7199,7024,6992,6994,7025,43,6595,7024,7025,6597,0,7198,7197,7199,7200,6595,7024,7025,6597,43,6590,7026,7027,6591,0,7201,7202,7203,7204,6590,7026,7027,6591,43,7026,6995,6998,7027,0,7202,7144,7147,7203,7026,6995,6998,7027,43,7027,6998,6989,7023,0,7203,7147,7135,7196,7027,6998,6989,7023,43,6591,7027,7023,6592,0,7204,7203,7196,7195,6591,7027,7023,6592,43,7002,7001,7028,7029,0,7155,7154,7205,7206,7002,7001,7028,7029,43,7001,6995,7026,7028,0,7154,7144,7202,7205,7001,6995,7026,7028,43,7028,7026,6590,6663,0,7205,7202,7201,7207,7028,7026,6590,6663,43,7029,7028,6663,6649,0,7206,7205,7207,7208,7029,7028,6663,6649,43,6954,7004,7030,7007,0,7087,7158,7209,7161,6954,7004,7030,7007,43,7004,7002,7029,7030,0,7158,7155,7206,7209,7004,7002,7029,7030,43,7030,7029,6649,6648,0,7209,7206,7208,7210,7030,7029,6649,6648,43,7007,7030,6648,6647,0,7161,7209,7210,7162,7007,7030,6648,6647,43,7031,7032,7033,7034,0,7211,7212,7213,7214,7031,7032,7033,7034,43,7032,7035,7036,7033,0,7212,7215,7216,7213,7032,7035,7036,7033,43,7033,7036,6985,6982,0,7213,7216,7130,7127,7033,7036,6985,6982,43,7034,7033,6982,6981,0,7214,7213,7127,7126,7034,7033,6982,6981,43,7031,7034,7037,7038,0,7211,7214,7217,7218,7031,7034,7037,7038,43,7034,6981,7020,7037,0,7214,7126,7219,7217,7034,6981,7020,7037,43,7038,7037,7020,6603,0,7218,7217,7219,7220,7038,7037,7020,6603,43,6908,7039,7040,6909,0,7038,7221,7222,7039,6908,7039,7040,6909,43,7039,7041,7042,7040,0,7221,7223,7224,7222,7039,7041,7042,7040,43,7040,7042,6888,6893,0,7222,7224,7018,7023,7040,7042,6888,6893,43,6909,7040,6893,6892,0,7039,7222,7023,7022,6909,7040,6893,6892,43,6888,7042,7043,6948,0,7018,7224,7225,7078,6888,7042,7043,6948,43,7042,7041,7044,7043,0,7224,7223,7226,7225,7042,7041,7044,7043,43,6948,7043,7044,6944,0,7078,7225,7226,7074,6948,7043,7044,6944,43,7041,7045,7046,7044,0,7223,7227,7228,7226,7041,7045,7046,7044,43,7045,7047,7048,7046,0,7227,7229,7230,7228,7045,7047,7048,7046,43,7044,7046,7048,6944,0,7226,7228,7230,7074,7044,7046,7048,6944,43,7035,7032,7049,7050,0,7215,7212,7231,7215,7035,7032,7049,7050,43,7032,7031,7051,7049,0,7212,7211,7211,7231,7032,7031,7051,7049,43,7049,7051,7052,7053,0,7231,7211,7232,7231,7049,7051,7052,7053,43,7050,7049,7053,7047,0,7215,7231,7231,7233,7050,7049,7053,7047,43,7047,7053,7054,7048,0,7233,7231,7234,7235,7047,7053,7054,7048,43,7053,7052,7055,7054,0,7231,7232,7236,7234,7053,7052,7055,7054,43,7054,7055,6994,6993,0,7234,7236,7143,7142,7054,7055,6994,6993,43,7048,7054,6993,6944,0,7235,7234,7142,7141,7048,7054,6993,6944,43,6603,7056,7057,7038,0,7220,7237,7238,7218,6603,7056,7057,7038,43,7056,7052,7051,7057,0,7237,7232,7211,7238,7056,7052,7051,7057,43,7038,7057,7051,7031,0,7218,7238,7211,7211,7038,7057,7051,7031,43,6597,7025,7058,6601,0,7200,7199,7239,7240,6597,7025,7058,6601,43,7025,6994,7055,7058,0,7199,7143,7236,7239,7025,6994,7055,7058,43,7058,7055,7052,7056,0,7239,7236,7232,7237,7058,7055,7052,7056,43,6601,7058,7056,6603,0,7240,7239,7237,7241,6601,7058,7056,6603,43,6907,6906,7059,7060,0,7037,7036,7242,7243,6907,6906,7059,7060,43,6906,6894,6899,7059,0,7036,7024,7029,7242,6906,6894,6899,7059,43,7059,6899,6898,7061,0,7242,7029,7028,7244,7059,6899,6898,7061,43,7060,7059,7061,7062,0,7243,7242,7244,7245,7060,7059,7061,7062,43,7063,7064,7065,7066,0,7246,7247,7248,7249,7063,7064,7065,7066,43,7064,6908,6911,7065,0,7247,7038,7041,7248,7064,6908,6911,7065,43,7065,6911,6907,7060,0,7248,7041,7037,7243,7065,6911,6907,7060,43,7066,7065,7060,7062,0,7249,7248,7243,7245,7066,7065,7060,7062,43,7047,7045,7067,7068,0,7229,7227,7250,7251,7047,7045,7067,7068,43,7045,7041,7039,7067,0,7227,7223,7221,7250,7045,7041,7039,7067,43,7067,7039,6908,7064,0,7250,7221,7038,7247,7067,7039,6908,7064,43,7068,7067,7064,7063,0,7251,7250,7247,7246,7068,7067,7064,7063,43,7063,7066,7069,7070,0,7246,7249,7252,7253,7063,7066,7069,7070,43,7066,7062,7071,7069,0,7249,7245,7254,7252,7066,7062,7071,7069,43,7069,7071,6985,7036,0,7252,7254,7255,7256,7069,7071,6985,7036,43,7070,7069,7036,7035,0,7253,7252,7256,7257,7070,7069,7036,7035,43,7062,7061,7072,7071,0,7245,7244,7258,7254,7062,7061,7072,7071,43,7061,6898,6901,7072,0,7244,7028,7031,7258,7061,6898,6901,7072,43,7072,6901,6903,6986,0,7258,7031,7033,7259,7072,6901,6903,6986,43,7071,7072,6986,6985,0,7254,7258,7259,7255,7071,7072,6986,6985,43,7063,7070,7073,7068,0,7246,7253,7260,7251,7063,7070,7073,7068,43,7070,7035,7050,7073,0,7253,7257,7261,7260,7070,7035,7050,7073,43,7068,7073,7050,7047,0,7251,7260,7261,7229,7068,7073,7050,7047,43,6793,6792,7074,6811,0,6923,6922,7262,6941,6793,6792,7074,6811,43,6792,6791,6794,7074,0,6922,6921,6924,7262,6792,6791,6794,7074,43,7074,6794,4198,4196,0,7262,6924,4325,4323,7074,6794,4198,4196,43,6811,7074,4196,4080,0,6941,7262,4323,4207,6811,7074,4196,4080,43,6812,7075,7076,6813,0,6942,7263,7264,6943,6812,7075,7076,6813,43,7075,7077,7078,7076,0,7263,7265,7266,7264,7075,7077,7078,7076,43,7076,7078,6793,6809,0,7264,7266,6923,6939,7076,7078,6793,6809,43,6813,7076,6809,6807,0,6943,7264,6939,6937,6813,7076,6809,6807,43,7077,7079,7080,7078,0,7265,7267,7268,7266,7077,7079,7080,7078,43,7079,6903,6902,7080,0,7267,7033,7032,7268,7079,6903,6902,7080,43,7080,6902,6785,6788,0,7268,7032,6915,6918,7080,6902,6785,6788,43,7078,7080,6788,6793,0,7266,7268,6918,6923,7078,7080,6788,6793,43,6903,7079,7081,6987,0,7132,7269,7270,7133,6903,7079,7081,6987,43,7079,7077,7082,7081,0,7269,7271,7272,7270,7079,7077,7082,7081,43,7081,7082,7083,7084,0,7270,7272,7273,7274,7081,7082,7083,7084,43,6987,7081,7084,6988,0,7133,7270,7274,7134,6987,7081,7084,6988,43,7077,7075,7085,7082,0,7271,7275,7276,7272,7077,7075,7085,7082,43,7075,6812,6972,7085,0,7275,7115,7112,7276,7075,6812,6972,7085,43,7085,6972,6971,7086,0,7276,7112,7111,7277,7085,6972,6971,7086,43,7082,7085,7086,7083,0,7272,7276,7277,7273,7082,7085,7086,7083,43,6609,7022,7087,7088,0,7194,7193,7278,7279,6609,7022,7087,7088,43,7022,6988,7084,7087,0,7193,7134,7274,7278,7022,6988,7084,7087,43,7088,7087,7084,7083,0,7279,7278,7274,7273,7088,7087,7084,7083,43,6616,6615,7089,7015,0,7179,7280,7281,7180,6616,6615,7089,7015,43,6615,6609,7088,7089,0,7280,7282,7279,7281,6615,6609,7088,7089,43,7089,7088,7083,7086,0,7281,7279,7273,7277,7089,7088,7083,7086,43,7015,7089,7086,6971,0,7180,7281,7277,7111,7015,7089,7086,6971,43,7090,7091,7092,7093,0,7283,7284,7285,7286,7090,7091,7092,7093,43,7091,7094,7095,7092,0,7284,7287,7288,7285,7091,7094,7095,7092,43,7092,7095,7096,7097,0,7285,7288,7289,7290,7092,7095,7096,7097,43,7093,7092,7097,7098,0,7286,7285,7290,7291,7093,7092,7097,7098,43,7094,7099,7100,7095,0,7287,7292,7293,7288,7094,7099,7100,7095,43,7099,7101,7102,7100,0,7292,7294,7295,7293,7099,7101,7102,7100,43,7100,7102,7103,7104,0,7293,7295,7296,7297,7100,7102,7103,7104,43,7095,7100,7104,7096,0,7288,7293,7297,7289,7095,7100,7104,7096,43,7101,7105,7106,7102,0,7294,7298,7299,7295,7101,7105,7106,7102,43,7105,7107,7108,7106,0,7298,7300,7301,7299,7105,7107,7108,7106,43,7106,7108,7109,7110,0,7299,7301,7302,7303,7106,7108,7109,7110,43,7102,7106,7110,7103,0,7295,7299,7303,7296,7102,7106,7110,7103,43,7107,7111,7112,7108,0,7300,7304,7305,7301,7107,7111,7112,7108,43,7111,7113,7114,7112,0,7304,7306,7307,7305,7111,7113,7114,7112,43,7112,7114,7115,7116,0,7305,7307,7308,7309,7112,7114,7115,7116,43,7108,7112,7116,7109,0,7301,7305,7309,7302,7108,7112,7116,7109,43,7117,7118,7119,7120,0,7310,7311,7312,7313,7117,7118,7119,7120,43,7118,7121,7122,7119,0,7311,7314,7315,7312,7118,7121,7122,7119,43,7119,7122,7115,7114,0,7312,7315,7308,7307,7119,7122,7115,7114,43,7120,7119,7114,7113,0,7313,7312,7307,7306,7120,7119,7114,7113,43,7117,7123,7124,7118,0,7310,7316,7317,7311,7117,7123,7124,7118,43,7123,7125,7126,7124,0,7316,7318,7319,7317,7123,7125,7126,7124,43,7124,7126,7127,7128,0,7317,7319,7320,7321,7124,7126,7127,7128,43,7118,7124,7128,7121,0,7311,7317,7321,7314,7118,7124,7128,7121,43,7129,7130,7131,7132,0,7322,7323,7324,7325,7129,7130,7131,7132,43,7130,7133,7134,7131,0,7323,7326,7327,7324,7130,7133,7134,7131,43,7131,7134,7115,7122,0,7324,7327,7308,7315,7131,7134,7115,7122,43,7132,7131,7122,7121,0,7325,7324,7315,7314,7132,7131,7122,7121,43,7127,7135,7136,7128,0,7320,7328,7329,7321,7127,7135,7136,7128,43,7135,7137,7138,7136,0,7328,7330,7331,7329,7135,7137,7138,7136,43,7136,7138,7129,7132,0,7329,7331,7322,7325,7136,7138,7129,7132,43,7128,7136,7132,7121,0,7321,7329,7325,7314,7128,7136,7132,7121,43,7139,7140,7141,7142,0,7332,7333,7334,7335,7139,7140,7141,7142,43,7140,7143,7144,7141,0,7333,7336,7337,7334,7140,7143,7144,7141,43,7141,7144,7117,7120,0,7334,7337,7310,7313,7141,7144,7117,7120,43,7142,7141,7120,7113,0,7335,7334,7313,7306,7142,7141,7120,7113,43,7145,7146,7147,7148,0,7338,7339,7340,7341,7145,7146,7147,7148,43,7146,7139,7142,7147,0,7339,7332,7335,7340,7146,7139,7142,7147,43,7147,7142,7113,7111,0,7340,7335,7306,7304,7147,7142,7113,7111,43,7148,7147,7111,7107,0,7341,7340,7304,7300,7148,7147,7111,7107,43,7109,7116,7149,7150,0,7302,7309,7342,7343,7109,7116,7149,7150,43,7116,7115,7134,7149,0,7309,7308,7327,7342,7116,7115,7134,7149,43,7149,7134,7133,7151,0,7342,7327,7326,7344,7149,7134,7133,7151,43,7150,7149,7151,7152,0,7343,7342,7344,7345,7150,7149,7151,7152,43,7152,7153,7154,7150,0,7345,7346,7347,7343,7152,7153,7154,7150,43,7153,7155,7156,7154,0,7346,7348,7349,7347,7153,7155,7156,7154,43,7154,7156,7103,7110,0,7347,7349,7296,7303,7154,7156,7103,7110,43,7150,7154,7110,7109,0,7343,7347,7303,7302,7150,7154,7110,7109,43,7157,7158,7159,7160,0,7350,7351,7352,7353,7157,7158,7159,7160,43,7158,7155,7153,7159,0,7351,7354,7355,7352,7158,7155,7153,7159,43,7159,7153,7152,7161,0,7352,7355,7356,7357,7159,7153,7152,7161,43,7160,7159,7161,7162,0,7353,7352,7357,7358,7160,7159,7161,7162,43,7152,7151,7163,7161,0,7356,7359,7360,7357,7152,7151,7163,7161,43,7151,7133,7130,7163,0,7359,7361,7362,7360,7151,7133,7130,7163,43,7163,7130,7129,7164,0,7360,7362,7363,7364,7163,7130,7129,7164,43,7161,7163,7164,7162,0,7357,7360,7364,7358,7161,7163,7164,7162,43,7165,7166,7167,7168,0,7365,7366,7367,7368,7165,7166,7167,7168,43,7166,7145,7148,7167,0,7366,7338,7341,7367,7166,7145,7148,7167,43,7167,7148,7107,7105,0,7367,7341,7300,7298,7167,7148,7107,7105,43,7168,7167,7105,7101,0,7368,7367,7298,7294,7168,7167,7105,7101,43,7169,7170,7171,7172,0,7369,7370,7371,7372,7169,7170,7171,7172,43,7170,7173,7174,7171,0,7370,7373,7374,7371,7170,7173,7174,7171,43,7171,7174,7145,7166,0,7371,7374,7338,7366,7171,7174,7145,7166,43,7172,7171,7166,7165,0,7372,7371,7366,7365,7172,7171,7166,7165,43,7173,7175,7176,7174,0,7373,7375,7376,7374,7173,7175,7176,7174,43,7175,7177,7178,7176,0,7375,7377,7378,7376,7175,7177,7178,7176,43,7176,7178,7139,7146,0,7376,7378,7332,7339,7176,7178,7139,7146,43,7174,7176,7146,7145,0,7374,7376,7339,7338,7174,7176,7146,7145,43,7179,7180,7181,7182,0,7379,7380,7381,7382,7179,7180,7181,7182,43,7180,7169,7172,7181,0,7380,7369,7372,7381,7180,7169,7172,7181,43,7181,7172,7165,7183,0,7381,7372,7365,7383,7181,7172,7165,7183,43,7182,7181,7183,7184,0,7382,7381,7383,7384,7182,7181,7183,7184,43,7185,7186,7187,7188,0,7385,7386,7387,7388,7185,7186,7187,7188,43,7186,7189,7190,7187,0,7386,7389,7390,7387,7186,7189,7190,7187,43,7187,7190,7179,7182,0,7387,7390,7379,7382,7187,7190,7179,7182,43,7188,7187,7182,7184,0,7388,7387,7382,7384,7188,7187,7182,7184,43,7185,7188,7191,7192,0,7385,7388,7391,7392,7185,7188,7191,7192,43,7188,7184,7193,7191,0,7388,7384,7393,7391,7188,7184,7193,7191,43,7191,7193,7094,7091,0,7391,7393,7287,7284,7191,7193,7094,7091,43,7192,7191,7091,7090,0,7392,7391,7284,7283,7192,7191,7091,7090,43,7184,7183,7194,7193,0,7384,7383,7394,7393,7184,7183,7194,7193,43,7183,7165,7168,7194,0,7383,7365,7368,7394,7183,7165,7168,7194,43,7194,7168,7101,7099,0,7394,7368,7294,7292,7194,7168,7101,7099,43,7193,7194,7099,7094,0,7393,7394,7292,7287,7193,7194,7099,7094,43,7103,7156,7195,7104,0,7296,7349,7395,7297,7103,7156,7195,7104,43,7156,7155,7158,7195,0,7349,7348,7396,7395,7156,7155,7158,7195,43,7195,7158,7157,7196,0,7395,7396,7397,7398,7195,7158,7157,7196,43,7104,7195,7196,7096,0,7297,7395,7398,7289,7104,7195,7196,7096,43,7096,7196,7197,7097,0,7289,7398,7399,7290,7096,7196,7197,7097,43,7196,7157,7198,7197,0,7398,7397,7400,7399,7196,7157,7198,7197,43,7197,7198,7199,7200,0,7399,7400,7401,7402,7197,7198,7199,7200,43,7097,7197,7200,7098,0,7290,7399,7402,7291,7097,7197,7200,7098,43,7199,7198,7201,7202,0,7403,7404,7405,7406,7199,7198,7201,7202,43,7198,7157,7160,7201,0,7404,7350,7353,7405,7198,7157,7160,7201,43,7202,7201,7160,7162,0,7406,7405,7353,7358,7202,7201,7160,7162,43,7203,7204,7205,7206,0,7407,7408,7409,7410,7203,7204,7205,7206,43,7204,7207,7208,7205,0,7408,7411,7412,7409,7204,7207,7208,7205,43,7205,7208,7209,7210,0,7409,7412,7413,7414,7205,7208,7209,7210,43,7206,7205,7210,7211,0,7410,7409,7414,7415,7206,7205,7210,7211,43,7212,7213,7214,7215,0,7416,7417,7418,7419,7212,7213,7214,7215,43,7213,7207,7204,7214,0,7417,7420,7421,7418,7213,7207,7204,7214,43,7215,7214,7204,7203,0,7419,7418,7421,7422,7215,7214,7204,7203,43,7216,7217,7218,7219,0,7423,7424,7425,7426,7216,7217,7218,7219,43,7217,7220,7221,7218,0,7424,7427,7428,7425,7217,7220,7221,7218,43,7218,7221,7222,7223,0,7425,7428,7429,7430,7218,7221,7222,7223,43,7219,7218,7223,7224,0,7426,7425,7430,7431,7219,7218,7223,7224,43,7225,7226,7227,7228,0,7432,7433,7434,7435,7225,7226,7227,7228,43,7226,7224,7223,7227,0,7433,7431,7430,7434,7226,7224,7223,7227,43,7227,7223,7222,7229,0,7434,7430,7429,7436,7227,7223,7222,7229,43,7228,7227,7229,7230,0,7435,7434,7436,7437,7228,7227,7229,7230,43,7209,7231,7232,7210,0,7413,7438,7439,7414,7209,7231,7232,7210,43,7231,7225,7228,7232,0,7438,7432,7435,7439,7231,7225,7228,7232,43,7232,7228,7230,7233,0,7439,7435,7437,7440,7232,7228,7230,7233,43,7210,7232,7233,7211,0,7414,7439,7440,7415,7210,7232,7233,7211,43,7234,7235,7236,7237,0,7441,7442,7443,7444,7234,7235,7236,7237,43,7235,7238,7239,7236,0,7442,7445,7446,7443,7235,7238,7239,7236,43,7236,7239,7240,7241,0,7443,7446,7447,7448,7236,7239,7240,7241,43,7237,7236,7241,7242,0,7444,7443,7448,7449,7237,7236,7241,7242,43,7242,7241,7243,7244,0,7449,7448,7450,7451,7242,7241,7243,7244,43,7241,7240,7245,7243,0,7448,7447,7452,7450,7241,7240,7245,7243,43,7243,7245,7246,7247,0,7450,7452,7453,7454,7243,7245,7246,7247,43,7244,7243,7247,7248,0,7451,7450,7454,7455,7244,7243,7247,7248,43,7129,7138,7249,7164,0,7363,7456,7457,7364,7129,7138,7249,7164,43,7138,7137,7250,7249,0,7456,7458,7459,7457,7138,7137,7250,7249,43,7249,7250,7212,7251,0,7457,7459,7416,7460,7249,7250,7212,7251,43,7164,7249,7251,7162,0,7364,7457,7460,7358,7164,7249,7251,7162,43,7212,7252,7253,7213,0,7416,7461,7462,7417,7212,7252,7253,7213,43,7252,7254,7255,7253,0,7461,7463,7464,7462,7252,7254,7255,7253,43,7213,7253,7255,7207,0,7417,7462,7464,7420,7213,7253,7255,7207,43,7207,7255,7256,7208,0,7411,7465,7466,7412,7207,7255,7256,7208,43,7255,7254,7257,7256,0,7465,7467,7468,7466,7255,7254,7257,7256,43,7256,7257,7258,7259,0,7466,7468,7469,7470,7256,7257,7258,7259,43,7208,7256,7259,7209,0,7412,7466,7470,7413,7208,7256,7259,7209,43,7258,7260,7261,7259,0,7469,7471,7472,7470,7258,7260,7261,7259,43,7260,7262,7263,7261,0,7471,7473,7474,7472,7260,7262,7263,7261,43,7261,7263,7225,7231,0,7472,7474,7432,7438,7261,7263,7225,7231,43,7259,7261,7231,7209,0,7470,7472,7438,7413,7259,7261,7231,7209,43,7264,7265,7266,7267,0,7475,7476,7477,7478,7264,7265,7266,7267,43,7265,7224,7226,7266,0,7476,7431,7433,7477,7265,7224,7226,7266,43,7266,7226,7225,7263,0,7477,7433,7432,7474,7266,7226,7225,7263,43,7267,7266,7263,7262,0,7478,7477,7474,7473,7267,7266,7263,7262,43,7268,7269,7270,7271,0,7479,7480,7481,7482,7268,7269,7270,7271,43,7269,7216,7219,7270,0,7480,7423,7426,7481,7269,7216,7219,7270,43,7270,7219,7224,7265,0,7481,7426,7431,7476,7270,7219,7224,7265,43,7271,7270,7265,7264,0,7482,7481,7476,7475,7271,7270,7265,7264,43,7272,7273,7274,7275,0,7483,7484,7485,7486,7272,7273,7274,7275,43,7273,7268,7271,7274,0,7484,7479,7482,7485,7273,7268,7271,7274,43,7274,7271,7264,7276,0,7485,7482,7475,7487,7274,7271,7264,7276,43,7275,7274,7276,7277,0,7486,7485,7487,7488,7275,7274,7276,7277,43,7272,7275,7278,7279,0,7483,7486,7489,7490,7272,7275,7278,7279,43,7275,7277,7280,7278,0,7486,7488,7491,7489,7275,7277,7280,7278,43,7278,7280,7248,7247,0,7489,7491,7455,7454,7278,7280,7248,7247,43,7279,7278,7247,7246,0,7490,7489,7454,7453,7279,7278,7247,7246,43,7281,7282,7283,7284,0,7492,7493,7494,7495,7281,7282,7283,7284,43,7282,7248,7280,7283,0,7493,7455,7491,7494,7282,7248,7280,7283,43,7283,7280,7277,7285,0,7494,7491,7488,7496,7283,7280,7277,7285,43,7284,7283,7285,7286,0,7495,7494,7496,7497,7284,7283,7285,7286,43,7277,7276,7287,7285,0,7488,7487,7498,7496,7277,7276,7287,7285,43,7276,7264,7267,7287,0,7487,7475,7478,7498,7276,7264,7267,7287,43,7287,7267,7262,7288,0,7498,7478,7473,7499,7287,7267,7262,7288,43,7285,7287,7288,7286,0,7496,7498,7499,7497,7285,7287,7288,7286,43,7289,7290,7291,7292,0,7500,7501,7502,7503,7289,7290,7291,7292,43,7290,7281,7284,7291,0,7501,7492,7495,7502,7290,7281,7284,7291,43,7291,7284,7286,7293,0,7502,7495,7497,7504,7291,7284,7286,7293,43,7292,7291,7293,7294,0,7503,7502,7504,7505,7292,7291,7293,7294,43,7294,7293,7295,7296,0,7505,7504,7506,7507,7294,7293,7295,7296,43,7293,7286,7288,7295,0,7504,7497,7499,7506,7293,7286,7288,7295,43,7295,7288,7262,7260,0,7506,7499,7473,7471,7295,7288,7262,7260,43,7296,7295,7260,7258,0,7507,7506,7471,7469,7296,7295,7260,7258,43,7294,7297,7298,7292,0,7505,7508,7509,7503,7294,7297,7298,7292,43,7297,7299,7300,7298,0,7508,7510,7511,7509,7297,7299,7300,7298,43,7298,7300,7301,7302,0,7509,7511,7512,7513,7298,7300,7301,7302,43,7292,7298,7302,7289,0,7503,7509,7513,7500,7292,7298,7302,7289,43,7299,7297,7303,7304,0,7510,7508,7514,7515,7299,7297,7303,7304,43,7297,7294,7296,7303,0,7508,7505,7507,7514,7297,7294,7296,7303,43,7303,7296,7258,7257,0,7514,7507,7469,7468,7303,7296,7258,7257,43,7304,7303,7257,7254,0,7515,7514,7468,7467,7304,7303,7257,7254,43,7301,7300,7305,7306,0,7516,7517,7518,7519,7301,7300,7305,7306,43,7300,7299,7304,7305,0,7517,7520,7521,7518,7300,7299,7304,7305,43,7305,7304,7254,7252,0,7518,7521,7463,7461,7305,7304,7254,7252,43,7306,7305,7252,7212,0,7519,7518,7461,7416,7306,7305,7252,7212,43,7307,7308,7309,7310,0,7522,7523,7524,7525,7307,7308,7309,7310,43,7308,7311,7312,7309,0,7523,7526,7527,7524,7308,7311,7312,7309,43,7309,7312,7289,7302,0,7524,7527,7500,7513,7309,7312,7289,7302,43,7310,7309,7302,7301,0,7525,7524,7513,7512,7310,7309,7302,7301,43,7311,7308,7313,7314,0,7526,7523,7528,7529,7311,7308,7313,7314,43,7308,7307,7315,7313,0,7523,7522,7530,7528,7308,7307,7315,7313,43,7313,7315,7137,7135,0,7528,7530,7330,7328,7313,7315,7137,7135,43,7314,7313,7135,7127,0,7529,7528,7328,7320,7314,7313,7135,7127,43,7137,7315,7316,7250,0,7458,7531,7532,7459,7137,7315,7316,7250,43,7315,7307,7310,7316,0,7531,7533,7534,7532,7315,7307,7310,7316,43,7316,7310,7301,7306,0,7532,7534,7516,7519,7316,7310,7301,7306,43,7250,7316,7306,7212,0,7459,7532,7519,7416,7250,7316,7306,7212,43,7311,7317,7318,7312,0,7526,7535,7536,7527,7311,7317,7318,7312,43,7317,7319,7320,7318,0,7535,7537,7538,7536,7317,7319,7320,7318,43,7318,7320,7281,7290,0,7536,7538,7492,7501,7318,7320,7281,7290,43,7312,7318,7290,7289,0,7527,7536,7501,7500,7312,7318,7290,7289,43,7319,7321,7322,7320,0,7537,7539,7540,7538,7319,7321,7322,7320,43,7321,7242,7244,7322,0,7539,7449,7451,7540,7321,7242,7244,7322,43,7322,7244,7248,7282,0,7540,7451,7455,7493,7322,7244,7248,7282,43,7320,7322,7282,7281,0,7538,7540,7493,7492,7320,7322,7282,7281,43,7125,7323,7324,7325,0,7318,7541,7542,7543,7125,7323,7324,7325,43,7323,7234,7237,7324,0,7541,7441,7444,7542,7323,7234,7237,7324,43,7324,7237,7242,7321,0,7542,7444,7449,7539,7324,7237,7242,7321,43,7325,7324,7321,7319,0,7543,7542,7539,7537,7325,7324,7321,7319,43,7177,7326,7327,7178,0,7377,7544,7545,7378,7177,7326,7327,7178,43,7326,7328,7329,7327,0,7544,7546,7547,7545,7326,7328,7329,7327,43,7327,7329,7143,7140,0,7545,7547,7336,7333,7327,7329,7143,7140,43,7178,7327,7140,7139,0,7378,7545,7333,7332,7178,7327,7140,7139,43,7143,7329,7330,7331,0,7336,7547,7548,7549,7143,7329,7330,7331,43,7329,7328,7332,7330,0,7547,7546,7550,7548,7329,7328,7332,7330,43,7330,7332,7238,7235,0,7548,7550,7445,7442,7330,7332,7238,7235,43,7331,7330,7235,7234,0,7549,7548,7442,7441,7331,7330,7235,7234,43,7143,7331,7333,7144,0,7336,7549,7551,7337,7143,7331,7333,7144,43,7331,7234,7323,7333,0,7549,7441,7541,7551,7331,7234,7323,7333,43,7333,7323,7125,7123,0,7551,7541,7318,7316,7333,7323,7125,7123,43,7144,7333,7123,7117,0,7337,7551,7316,7310,7144,7333,7123,7117,43,7127,7126,7334,7314,0,7320,7319,7552,7529,7127,7126,7334,7314,43,7126,7125,7325,7334,0,7319,7318,7543,7552,7126,7125,7325,7334,43,7334,7325,7319,7317,0,7552,7543,7537,7535,7334,7325,7319,7317,43,7314,7334,7317,7311,0,7529,7552,7535,7526,7314,7334,7317,7311,43,4462,4461,7335,7336,0,4592,4591,7553,7554,4462,4461,7335,7336,43,4461,4440,7337,7335,0,4591,4570,7555,7553,4461,4440,7337,7335,43,7335,7337,7179,7190,0,7553,7555,7556,7557,7335,7337,7179,7190,43,7336,7335,7190,7189,0,7554,7553,7557,7558,7336,7335,7190,7189,43,7179,7337,7338,7180,0,7556,7555,7559,7560,7179,7337,7338,7180,43,7337,4440,4439,7338,0,7555,4570,4569,7559,7337,4440,4439,7338,43,7338,4439,4438,7339,0,7559,4569,4568,7561,7338,4439,4438,7339,43,7180,7338,7339,7169,0,7560,7559,7561,7562,7180,7338,7339,7169,43,7169,7339,7340,7170,0,7562,7561,7563,7564,7169,7339,7340,7170,43,7339,4438,4468,7340,0,7561,4568,4598,7563,7339,4438,4468,7340,43,7340,4468,4466,7341,0,7563,4598,4596,7565,7340,4468,4466,7341,43,7170,7340,7341,7173,0,7564,7563,7565,7566,7170,7340,7341,7173,43,4466,4465,7342,7341,0,4596,4595,7567,7565,4466,4465,7342,7341,43,4465,4394,7343,7342,0,4595,4522,7568,7567,4465,4394,7343,7342,43,7342,7343,7177,7175,0,7567,7568,7569,7570,7342,7343,7177,7175,43,7341,7342,7175,7173,0,7565,7567,7570,7566,7341,7342,7175,7173,43,4394,4393,7344,7343,0,4522,4521,7571,7568,4394,4393,7344,7343,43,4393,4381,7345,7344,0,4521,4508,7572,7571,4393,4381,7345,7344,43,7344,7345,7328,7326,0,7571,7572,7573,7574,7344,7345,7328,7326,43,7343,7344,7326,7177,0,7568,7571,7574,7569,7343,7344,7326,7177,43,4381,4384,7346,7345,0,4508,4511,7575,7572,4381,4384,7346,7345,43,4384,4388,7347,7346,0,4511,4515,7576,7575,4384,4388,7347,7346,43,7346,7347,7238,7332,0,7575,7576,7577,7578,7346,7347,7238,7332,43,7345,7346,7332,7328,0,7572,7575,7578,7573,7345,7346,7332,7328,43,4388,4613,7348,7347,0,4515,4743,7579,7576,4388,4613,7348,7347,43,4613,4615,7349,7348,0,4743,4745,7580,7579,4613,4615,7349,7348,43,7348,7349,7240,7239,0,7579,7580,7581,7582,7348,7349,7240,7239,43,7347,7348,7239,7238,0,7576,7579,7582,7577,7347,7348,7239,7238,43,4615,4618,7350,7349,0,4745,4748,7583,7580,4615,4618,7350,7349,43,4618,4609,7351,7350,0,4748,4739,7584,7583,4618,4609,7351,7350,43,7350,7351,7246,7245,0,7583,7584,7585,7586,7350,7351,7246,7245,43,7349,7350,7245,7240,0,7580,7583,7586,7581,7349,7350,7245,7240,43,7246,7351,7352,7279,0,7585,7584,7587,7588,7246,7351,7352,7279,43,7351,4609,4608,7352,0,7584,4739,4738,7587,7351,4609,4608,7352,43,7352,4608,4597,7353,0,7587,4738,4727,7589,7352,4608,4597,7353,43,7279,7352,7353,7272,0,7588,7587,7589,7590,7279,7352,7353,7272,43,4597,4600,7354,7353,0,4727,4730,7591,7589,4597,4600,7354,7353,43,4600,4553,7355,7354,0,4730,4683,7592,7591,4600,4553,7355,7354,43,7354,7355,7268,7273,0,7591,7592,7593,7594,7354,7355,7268,7273,43,7353,7354,7273,7272,0,7589,7591,7594,7590,7353,7354,7273,7272,43,4553,4556,7356,7355,0,4683,4686,7595,7592,4553,4556,7356,7355,43,4556,4561,7357,7356,0,4686,4691,7596,7595,4556,4561,7357,7356,43,7356,7357,7216,7269,0,7595,7596,7597,7598,7356,7357,7216,7269,43,7355,7356,7269,7268,0,7592,7595,7598,7593,7355,7356,7269,7268,43,7216,7357,7358,7217,0,7597,7596,7599,7600,7216,7357,7358,7217,43,7357,4561,4563,7358,0,7596,4691,4693,7599,7357,4561,4563,7358,43,7358,4563,4567,7359,0,7599,4693,4697,7601,7358,4563,4567,7359,43,7217,7358,7359,7220,0,7600,7599,7601,7602,7217,7358,7359,7220,43,7360,7361,7362,7363,0,7603,7604,7605,7606,7360,7361,7362,7363,43,7361,7364,7365,7362,0,7604,7607,7608,7605,7361,7364,7365,7362,43,7362,7365,7366,7367,0,7605,7608,7609,7610,7362,7365,7366,7367,43,7363,7362,7367,7368,0,7606,7605,7610,7611,7363,7362,7367,7368,43,7369,7370,7371,7372,0,7612,7613,7614,7615,7369,7370,7371,7372,43,7370,7373,7374,7371,0,7613,7616,7617,7614,7370,7373,7374,7371,43,7371,7374,7360,7363,0,7614,7617,7603,7606,7371,7374,7360,7363,43,7372,7371,7363,7368,0,7615,7614,7606,7611,7372,7371,7363,7368,43,7375,7376,7377,7378,0,7618,7619,7620,7621,7375,7376,7377,7378,43,7376,7379,7380,7377,0,7619,7622,7623,7620,7376,7379,7380,7377,43,7377,7380,7373,7370,0,7620,7623,7616,7613,7377,7380,7373,7370,43,7378,7377,7370,7369,0,7621,7620,7613,7612,7378,7377,7370,7369,43,7381,7382,7383,7384,0,7624,7625,7626,7627,7381,7382,7383,7384,43,7382,7385,7386,7383,0,7625,7628,7629,7626,7382,7385,7386,7383,43,7383,7386,7379,7376,0,7626,7629,7622,7619,7383,7386,7379,7376,43,7384,7383,7376,7375,0,7627,7626,7619,7618,7384,7383,7376,7375,43,7387,7388,7389,7390,0,7630,7631,7632,7633,7387,7388,7389,7390,43,7388,7385,7382,7389,0,7631,7628,7625,7632,7388,7385,7382,7389,43,7389,7382,7381,7391,0,7632,7625,7624,7634,7389,7382,7381,7391,43,7390,7389,7391,7392,0,7633,7632,7634,7635,7390,7389,7391,7392,43,7393,7394,7395,7396,0,7636,7637,7638,7639,7393,7394,7395,7396,43,7394,7387,7390,7395,0,7637,7630,7633,7638,7394,7387,7390,7395,43,7395,7390,7392,7397,0,7638,7633,7635,7640,7395,7390,7392,7397,43,7396,7395,7397,7398,0,7639,7638,7640,7641,7396,7395,7397,7398,43,7398,7399,7400,7396,0,7641,7642,7643,7639,7398,7399,7400,7396,43,7399,7401,7402,7400,0,7642,7644,7645,7643,7399,7401,7402,7400,43,7400,7402,7403,7404,0,7643,7645,7646,7647,7400,7402,7403,7404,43,7396,7400,7404,7393,0,7639,7643,7647,7636,7396,7400,7404,7393,43,7401,7405,7406,7402,0,7644,7648,7649,7645,7401,7405,7406,7402,43,7405,7407,7408,7406,0,7648,7650,7651,7649,7405,7407,7408,7406,43,7406,7408,7409,7410,0,7649,7651,7652,7653,7406,7408,7409,7410,43,7402,7406,7410,7403,0,7645,7649,7653,7646,7402,7406,7410,7403,43,7411,7412,7413,7414,0,7654,7655,7656,7657,7411,7412,7413,7414,43,7412,7415,7416,7413,0,7655,7658,7659,7656,7412,7415,7416,7413,43,7413,7416,7409,7408,0,7656,7659,7652,7651,7413,7416,7409,7408,43,7414,7413,7408,7407,0,7657,7656,7651,7650,7414,7413,7408,7407,43,7417,7418,7419,7420,0,7660,7661,7662,7663,7417,7418,7419,7420,43,7418,7421,7422,7419,0,7661,7664,7665,7662,7418,7421,7422,7419,43,7419,7422,7423,7424,0,7662,7665,7666,7667,7419,7422,7423,7424,43,7420,7419,7424,7425,0,7663,7662,7667,7668,7420,7419,7424,7425,43,7421,7426,7427,7422,0,7664,7669,7670,7665,7421,7426,7427,7422,43,7426,7428,7429,7427,0,7669,7671,7672,7670,7426,7428,7429,7427,43,7427,7429,7430,7431,0,7670,7672,7673,7674,7427,7429,7430,7431,43,7422,7427,7431,7423,0,7665,7670,7674,7666,7422,7427,7431,7423,43,7430,7429,7432,7433,0,7673,7672,7675,7676,7430,7429,7432,7433,43,7429,7428,7434,7432,0,7672,7671,7677,7675,7429,7428,7434,7432,43,7432,7434,7415,7412,0,7675,7677,7658,7655,7432,7434,7415,7412,43,7433,7432,7412,7411,0,7676,7675,7655,7654,7433,7432,7412,7411,43,7417,7420,7435,7436,0,7660,7663,7678,7679,7417,7420,7435,7436,43,7420,7425,7437,7435,0,7663,7668,7680,7678,7420,7425,7437,7435,43,7435,7437,7366,7365,0,7678,7680,7609,7608,7435,7437,7366,7365,43,7436,7435,7365,7364,0,7679,7678,7608,7607,7436,7435,7365,7364,43,7438,7439,7440,7441,0,7681,7682,7683,7684,7438,7439,7440,7441,43,7439,7442,7443,7440,0,7682,7685,7686,7683,7439,7442,7443,7440,43,7440,7443,7375,7378,0,7683,7686,7618,7621,7440,7443,7375,7378,43,7441,7440,7378,7369,0,7684,7683,7621,7612,7441,7440,7378,7369,43,7444,7445,7446,7447,0,7687,7688,7689,7690,7444,7445,7446,7447,43,7445,7448,7449,7446,0,7688,7691,7692,7689,7445,7448,7449,7446,43,7446,7449,7442,7439,0,7689,7692,7685,7682,7446,7449,7442,7439,43,7447,7446,7439,7438,0,7690,7689,7682,7681,7447,7446,7439,7438,43,7442,7449,7450,7451,0,7685,7692,7693,7694,7442,7449,7450,7451,43,7449,7448,7452,7450,0,7692,7691,7695,7693,7449,7448,7452,7450,43,7450,7452,7453,7454,0,7693,7695,7696,7697,7450,7452,7453,7454,43,7451,7450,7454,7455,0,7694,7693,7697,7698,7451,7450,7454,7455,43,7442,7451,7456,7443,0,7685,7694,7699,7686,7442,7451,7456,7443,43,7451,7455,7457,7456,0,7694,7698,7700,7699,7451,7455,7457,7456,43,7456,7457,7381,7384,0,7699,7700,7624,7627,7456,7457,7381,7384,43,7443,7456,7384,7375,0,7686,7699,7627,7618,7443,7456,7384,7375,43,7455,7458,7459,7457,0,7698,7701,7702,7700,7455,7458,7459,7457,43,7458,7460,7461,7459,0,7701,7703,7704,7702,7458,7460,7461,7459,43,7459,7461,7392,7391,0,7702,7704,7635,7634,7459,7461,7392,7391,43,7457,7459,7391,7381,0,7700,7702,7634,7624,7457,7459,7391,7381,43,7453,7462,7463,7454,0,7696,7705,7706,7697,7453,7462,7463,7454,43,7462,7464,7465,7463,0,7705,7707,7708,7706,7462,7464,7465,7463,43,7463,7465,7460,7458,0,7706,7708,7703,7701,7463,7465,7460,7458,43,7454,7463,7458,7455,0,7697,7706,7701,7698,7454,7463,7458,7455,43,7466,7467,7468,7469,0,7709,7710,7711,7712,7466,7467,7468,7469,43,7467,7470,7471,7468,0,7710,7713,7714,7711,7467,7470,7471,7468,43,7468,7471,7464,7462,0,7711,7714,7707,7705,7468,7471,7464,7462,43,7469,7468,7462,7453,0,7712,7711,7705,7696,7469,7468,7462,7453,43,7464,7471,7472,7465,0,7707,7714,7715,7708,7464,7471,7472,7465,43,7471,7470,7473,7472,0,7714,7713,7716,7715,7471,7470,7473,7472,43,7472,7473,7474,7475,0,7715,7716,7717,7718,7472,7473,7474,7475,43,7465,7472,7475,7460,0,7708,7715,7718,7703,7465,7472,7475,7460,43,7392,7461,7476,7397,0,7635,7704,7719,7640,7392,7461,7476,7397,43,7461,7460,7475,7476,0,7704,7703,7718,7719,7461,7460,7475,7476,43,7476,7475,7474,7477,0,7719,7718,7717,7720,7476,7475,7474,7477,43,7397,7476,7477,7398,0,7640,7719,7720,7641,7397,7476,7477,7398,43,7474,7478,7479,7477,0,7717,7721,7722,7720,7474,7478,7479,7477,43,7478,7480,7481,7479,0,7721,7723,7724,7722,7478,7480,7481,7479,43,7479,7481,7401,7399,0,7722,7724,7644,7642,7479,7481,7401,7399,43,7477,7479,7399,7398,0,7720,7722,7642,7641,7477,7479,7399,7398,43,7474,7473,7482,7478,0,7717,7716,7725,7721,7474,7473,7482,7478,43,7473,7470,7467,7482,0,7716,7713,7710,7725,7473,7470,7467,7482,43,7482,7467,7466,7483,0,7725,7710,7709,7726,7482,7467,7466,7483,43,7478,7482,7483,7480,0,7721,7725,7726,7723,7478,7482,7483,7480,43,7466,7484,7485,7483,0,7709,7727,7728,7726,7466,7484,7485,7483,43,7484,7486,7487,7485,0,7727,7729,7730,7728,7484,7486,7487,7485,43,7485,7487,7488,7489,0,7728,7730,7731,7732,7485,7487,7488,7489,43,7483,7485,7489,7480,0,7726,7728,7732,7723,7483,7485,7489,7480,43,7480,7489,7490,7481,0,7723,7732,7733,7724,7480,7489,7490,7481,43,7489,7488,7491,7490,0,7732,7731,7734,7733,7489,7488,7491,7490,43,7490,7491,7407,7405,0,7733,7734,7650,7648,7490,7491,7407,7405,43,7481,7490,7405,7401,0,7724,7733,7648,7644,7481,7490,7405,7401,43,7492,7493,7494,7495,0,7735,7736,7737,7738,7492,7493,7494,7495,43,7493,7438,7441,7494,0,7736,7681,7684,7737,7493,7438,7441,7494,43,7494,7441,7369,7372,0,7737,7684,7612,7615,7494,7441,7369,7372,43,7495,7494,7372,7368,0,7738,7737,7615,7611,7495,7494,7372,7368,43,7496,7497,7498,7499,0,7739,7740,7741,7742,7496,7497,7498,7499,43,7497,7492,7495,7498,0,7740,7735,7738,7741,7497,7492,7495,7498,43,7498,7495,7368,7367,0,7741,7738,7611,7610,7498,7495,7368,7367,43,7499,7498,7367,7366,0,7742,7741,7610,7609,7499,7498,7367,7366,43,7500,7501,7502,7503,0,7743,7744,7745,7746,7500,7501,7502,7503,43,7501,7496,7499,7502,0,7744,7739,7742,7745,7501,7496,7499,7502,43,7502,7499,7366,7437,0,7745,7742,7609,7680,7502,7499,7366,7437,43,7503,7502,7437,7425,0,7746,7745,7680,7668,7503,7502,7437,7425,43,7411,7504,7505,7433,0,7654,7747,7748,7676,7411,7504,7505,7433,43,7504,7506,7507,7505,0,7747,7749,7750,7748,7504,7506,7507,7505,43,7505,7507,7508,7509,0,7748,7750,7751,7752,7505,7507,7508,7509,43,7433,7505,7509,7430,0,7676,7748,7752,7673,7433,7505,7509,7430,43,7506,7510,7511,7507,0,7749,7753,7754,7750,7506,7510,7511,7507,43,7510,7512,7513,7511,0,7753,7755,7756,7754,7510,7512,7513,7511,43,7511,7513,7514,7515,0,7754,7756,7757,7758,7511,7513,7514,7515,43,7507,7511,7515,7508,0,7750,7754,7758,7751,7507,7511,7515,7508,43,7512,7516,7517,7513,0,7755,7759,7760,7756,7512,7516,7517,7513,43,7516,7453,7518,7517,0,7759,7696,7761,7760,7516,7453,7518,7517,43,7513,7517,7518,7514,0,7756,7760,7761,7757,7513,7517,7518,7514,43,7488,7487,7519,7520,0,7731,7730,7762,7763,7488,7487,7519,7520,43,7487,7486,7521,7519,0,7730,7729,7764,7762,7487,7486,7521,7519,43,7519,7521,7512,7510,0,7762,7764,7755,7753,7519,7521,7512,7510,43,7520,7519,7510,7506,0,7763,7762,7753,7749,7520,7519,7510,7506,43,7407,7491,7522,7414,0,7650,7734,7765,7657,7407,7491,7522,7414,43,7491,7488,7520,7522,0,7734,7731,7763,7765,7491,7488,7520,7522,43,7522,7520,7506,7504,0,7765,7763,7749,7747,7522,7520,7506,7504,43,7414,7522,7504,7411,0,7657,7765,7747,7654,7414,7522,7504,7411,43,7512,7521,7523,7516,0,7755,7764,7766,7759,7512,7521,7523,7516,43,7521,7486,7524,7523,0,7764,7729,7767,7766,7521,7486,7524,7523,43,7516,7523,7524,7453,0,7759,7766,7767,7696,7516,7523,7524,7453,43,7514,7518,7525,7526,0,7757,7761,7768,7769,7514,7518,7525,7526,43,7518,7453,7452,7525,0,7761,7696,7695,7768,7518,7453,7452,7525,43,7526,7525,7452,7448,0,7769,7768,7695,7691,7526,7525,7452,7448,43,7444,7527,7528,7445,0,7687,7770,7771,7688,7444,7527,7528,7445,43,7527,7514,7526,7528,0,7770,7757,7769,7771,7527,7514,7526,7528,43,7445,7528,7526,7448,0,7688,7771,7769,7691,7445,7528,7526,7448,43,7529,7530,7531,7532,0,7772,7773,7774,7775,7529,7530,7531,7532,43,7530,7514,7527,7531,0,7773,7757,7770,7774,7530,7514,7527,7531,43,7532,7531,7527,7444,0,7775,7774,7770,7687,7532,7531,7527,7444,43,7514,7530,7533,7515,0,7757,7773,7776,7758,7514,7530,7533,7515,43,7530,7529,7534,7533,0,7773,7772,7777,7776,7530,7529,7534,7533,43,7533,7534,7535,7536,0,7776,7777,7778,7779,7533,7534,7535,7536,43,7515,7533,7536,7508,0,7758,7776,7779,7751,7515,7533,7536,7508,43,7430,7509,7537,7431,0,7673,7752,7780,7674,7430,7509,7537,7431,43,7509,7508,7536,7537,0,7752,7751,7779,7780,7509,7508,7536,7537,43,7537,7536,7535,7538,0,7780,7779,7778,7781,7537,7536,7535,7538,43,7431,7537,7538,7423,0,7674,7780,7781,7666,7431,7537,7538,7423,43,7535,7534,7539,7540,0,7778,7777,7782,7783,7535,7534,7539,7540,43,7534,7529,7541,7539,0,7777,7772,7784,7782,7534,7529,7541,7539,43,7539,7541,7542,7543,0,7782,7784,7785,7786,7539,7541,7542,7543,43,7540,7539,7543,7500,0,7783,7782,7786,7743,7540,7539,7543,7500,43,7423,7538,7544,7424,0,7666,7781,7787,7667,7423,7538,7544,7424,43,7538,7535,7540,7544,0,7781,7778,7783,7787,7538,7535,7540,7544,43,7544,7540,7500,7503,0,7787,7783,7743,7746,7544,7540,7500,7503,43,7424,7544,7503,7425,0,7667,7787,7746,7668,7424,7544,7503,7425,43,7542,7545,7546,7543,0,7785,7788,7789,7786,7542,7545,7546,7543,43,7545,7547,7548,7546,0,7788,7790,7791,7789,7545,7547,7548,7546,43,7546,7548,7496,7501,0,7789,7791,7739,7744,7546,7548,7496,7501,43,7543,7546,7501,7500,0,7786,7789,7744,7743,7543,7546,7501,7500,43,7542,7541,7549,7550,0,7785,7784,7792,7793,7542,7541,7549,7550,43,7541,7529,7532,7549,0,7784,7772,7775,7792,7541,7529,7532,7549,43,7550,7549,7532,7444,0,7793,7792,7775,7687,7550,7549,7532,7444,43,7547,7551,7552,7548,0,7790,7794,7795,7791,7547,7551,7552,7548,43,7551,7553,7554,7552,0,7794,7796,7797,7795,7551,7553,7554,7552,43,7552,7554,7492,7497,0,7795,7797,7735,7740,7552,7554,7492,7497,43,7548,7552,7497,7496,0,7791,7795,7740,7739,7548,7552,7497,7496,43,7553,7551,7555,7556,0,7796,7794,7798,7799,7553,7551,7555,7556,43,7551,7547,7545,7555,0,7794,7790,7788,7798,7551,7547,7545,7555,43,7555,7545,7542,7550,0,7798,7788,7785,7793,7555,7545,7542,7550,43,7556,7555,7550,7444,0,7799,7798,7793,7687,7556,7555,7550,7444,43,7492,7554,7557,7493,0,7735,7797,7800,7736,7492,7554,7557,7493,43,7554,7553,7556,7557,0,7797,7796,7799,7800,7554,7553,7556,7557,43,7557,7556,7444,7447,0,7800,7799,7687,7690,7557,7556,7444,7447,43,7493,7557,7447,7438,0,7736,7800,7690,7681,7493,7557,7447,7438,43,7486,7484,7558,7524,0,7729,7727,7801,7767,7486,7484,7558,7524,43,7484,7466,7469,7558,0,7727,7709,7712,7801,7484,7466,7469,7558,43,7524,7558,7469,7453,0,7767,7801,7712,7696,7524,7558,7469,7453,43,7559,7562,7560,7561,0,7802,7803,7804,7805,7559,7560,7561,7562,42,7562,7563,7560,0,7803,7806,7804,7560,7563,7561,43,7560,7563,7564,7565,0,7804,7806,7807,7808,7561,7563,7564,7565,43,7561,7560,7565,7566,0,7805,7804,7808,7809,7562,7561,7565,7566,43,7567,7568,7569,7570,0,7810,7811,7812,7813,7567,7568,7569,7570,43,7568,7559,7571,7569,0,7811,7802,7814,7812,7568,7559,7571,7569,43,7569,7571,4357,4364,0,7812,7814,4484,4491,7569,7571,4357,4364,43,7570,7569,4364,4363,0,7813,7812,4491,4490,7570,7569,4364,4363,43,7572,7573,7574,7575,0,7815,7816,7817,7818,7572,7573,7574,7575,43,7573,4226,4329,7574,0,7816,4353,4456,7817,7573,4226,4329,7574,43,7574,4329,4327,7576,0,7817,4456,4454,7819,7574,4329,4327,7576,43,7575,7574,7576,7577,0,7818,7817,7819,7820,7575,7574,7576,7577,43,4231,7578,7579,4325,0,4358,7821,7822,4452,4231,7578,7579,4325,43,7578,7580,7581,7579,0,7821,7823,7824,7822,7578,7580,7581,7579,43,7579,7581,7577,7576,0,7822,7824,7820,7819,7579,7581,7577,7576,43,4325,7579,7576,4327,0,4452,7822,7819,4454,4325,7579,7576,4327,43,4239,7582,7583,4234,0,4366,7825,7826,4361,4239,7582,7583,4234,43,7582,7566,7584,7583,0,7825,7809,7827,7826,7582,7566,7584,7583,43,7583,7584,7580,7578,0,7826,7827,7823,7821,7583,7584,7580,7578,43,4234,7583,7578,4231,0,4361,7826,7821,4358,4234,7583,7578,4231,43,7577,7581,7585,7586,0,7820,7824,7828,7829,7577,7581,7585,7586,43,7581,7580,7587,7585,0,7824,7823,7830,7828,7581,7580,7587,7585,43,7585,7587,7588,7589,0,7828,7830,7831,7832,7585,7587,7588,7589,43,7586,7585,7589,7590,0,7829,7828,7832,7833,7586,7585,7589,7590,43,7591,7592,7593,7594,0,7834,7835,7836,7837,7591,7592,7593,7594,43,7592,7572,7575,7593,0,7835,7815,7818,7836,7592,7572,7575,7593,43,7593,7575,7577,7586,0,7836,7818,7820,7829,7593,7575,7577,7586,43,7594,7593,7586,7590,0,7837,7836,7829,7833,7594,7593,7586,7590,43,7595,7596,7597,7598,0,7838,7839,7840,7841,7595,7596,7597,7598,43,7596,7599,7600,7597,0,7839,7842,7843,7840,7596,7599,7600,7597,43,7597,7600,7601,7602,0,7840,7843,7844,7845,7597,7600,7601,7602,43,7598,7597,7602,7603,0,7841,7840,7845,7846,7598,7597,7602,7603,43,7601,7604,7605,7606,0,7844,7847,7848,7849,7601,7604,7605,7606,43,7604,7607,7608,7605,0,7847,7850,7851,7848,7604,7607,7608,7605,43,7605,7608,7609,7610,0,7848,7851,7852,7853,7605,7608,7609,7610,43,7606,7605,7610,7611,0,7849,7848,7853,7854,7606,7605,7610,7611,43,7609,7608,7612,7613,0,7852,7851,7855,7856,7609,7608,7612,7613,43,7608,7607,7614,7612,0,7851,7850,7857,7855,7608,7607,7614,7612,43,7612,7614,7615,7616,0,7855,7857,7858,7859,7612,7614,7615,7616,43,7613,7612,7616,7617,0,7856,7855,7859,7860,7613,7612,7616,7617,43,7617,7616,7618,7619,0,7860,7859,7861,7862,7617,7616,7618,7619,43,7616,7615,7620,7618,0,7859,7858,7863,7861,7616,7615,7620,7618,43,7618,7620,7621,7622,0,7861,7863,7864,7865,7618,7620,7621,7622,43,7619,7618,7622,7623,0,7862,7861,7865,7866,7619,7618,7622,7623,43,7624,7625,7626,7627,0,7867,7868,7869,7870,7624,7625,7626,7627,43,7625,4228,4227,7626,0,7868,4355,4354,7869,7625,4228,4227,7626,43,7626,4227,4226,7573,0,7869,4354,4353,7816,7626,4227,4226,7573,43,7627,7626,7573,7572,0,7870,7869,7816,7815,7627,7626,7573,7572,43,7623,7622,7628,7629,0,7866,7865,7871,7872,7623,7622,7628,7629,43,7622,7621,7630,7628,0,7865,7864,7873,7871,7622,7621,7630,7628,43,7628,7630,7624,7631,0,7871,7873,7867,7874,7628,7630,7624,7631,43,7629,7628,7631,7632,0,7872,7871,7874,7875,7629,7628,7631,7632,43,7632,7631,7633,7634,0,7875,7874,7876,7877,7632,7631,7633,7634,43,7631,7624,7627,7633,0,7874,7867,7870,7876,7631,7624,7627,7633,43,7633,7627,7572,7592,0,7876,7870,7815,7835,7633,7627,7572,7592,43,7634,7633,7592,7591,0,7877,7876,7835,7834,7634,7633,7592,7591,43,7621,7635,7636,7630,0,7864,7878,7879,7873,7621,7635,7636,7630,43,7635,4334,4333,7636,0,7878,4461,4460,7879,7635,4334,4333,7636,43,7636,4333,4228,7625,0,7879,4460,4355,7868,7636,4333,4228,7625,43,7630,7636,7625,7624,0,7873,7879,7868,7867,7630,7636,7625,7624,43,7615,7637,7638,7620,0,7858,7880,7881,7863,7615,7637,7638,7620,43,7637,4338,4337,7638,0,7880,4465,4464,7881,7637,4338,4337,7638,43,7638,4337,4334,7635,0,7881,4464,4461,7878,7638,4337,4334,7635,43,7620,7638,7635,7621,0,7863,7881,7878,7864,7620,7638,7635,7621,43,7607,7639,7640,7614,0,7850,7882,7883,7857,7607,7639,7640,7614,43,7639,4349,4348,7640,0,7882,4476,4475,7883,7639,4349,4348,7640,43,7640,4348,4338,7637,0,7883,4475,4465,7880,7640,4348,4338,7637,43,7614,7640,7637,7615,0,7857,7883,7880,7858,7614,7640,7637,7615,43,7599,7641,7642,7600,0,7842,7884,7885,7843,7599,7641,7642,7600,43,7641,4349,7639,7642,0,7884,4476,7882,7885,7641,4349,7639,7642,43,7642,7639,7607,7604,0,7885,7882,7850,7847,7642,7639,7607,7604,43,7600,7642,7604,7601,0,7843,7885,7847,7844,7600,7642,7604,7601,43,7643,7644,7645,7646,0,7886,7887,7888,7889,7643,7644,7645,7646,43,7644,7567,7570,7645,0,7887,7810,7813,7888,7644,7567,7570,7645,43,7645,7570,4363,7647,0,7888,7813,4490,7890,7645,7570,4363,7647,43,7646,7645,7647,7648,0,7889,7888,7890,7891,7646,7645,7647,7648,42,7562,7649,7650,0,7892,7893,7894,7560,7649,7650,43,7562,7559,7568,7649,0,7803,7802,7811,7893,7560,7559,7568,7649,43,7649,7568,7567,7651,0,7893,7811,7810,7895,7649,7568,7567,7651,43,7650,7649,7651,7652,0,7894,7893,7895,7896,7650,7649,7651,7652,43,7653,7654,7655,7656,0,7897,7898,7899,7900,7653,7654,7655,7656,43,7654,7657,7658,7655,0,7898,7901,7902,7899,7654,7657,7658,7655,43,7655,7658,7562,7650,0,7899,7902,7892,7894,7655,7658,7560,7650,43,7656,7655,7650,7652,0,7900,7899,7894,7896,7656,7655,7650,7652,43,7659,7660,7661,7662,0,7903,7904,7905,7906,7659,7660,7661,7662,43,7660,7652,7651,7661,0,7904,7896,7895,7905,7660,7652,7651,7661,43,7661,7651,7567,7644,0,7905,7895,7810,7887,7661,7651,7567,7644,43,7662,7661,7644,7643,0,7906,7905,7887,7886,7662,7661,7644,7643,43,7659,7663,7664,7660,0,7903,7907,7908,7904,7659,7663,7664,7660,43,7663,7665,7666,7664,0,7907,7909,7910,7908,7663,7665,7666,7664,43,7664,7666,7653,7656,0,7908,7910,7897,7900,7664,7666,7653,7656,43,7660,7664,7656,7652,0,7904,7908,7900,7896,7660,7664,7656,7652,43,7562,7658,7667,7563,0,7892,7902,7911,7806,7560,7658,7667,7563,43,7658,7657,7668,7667,0,7902,7901,7912,7911,7658,7657,7668,7667,43,7667,7668,7669,7670,0,7911,7912,7913,7914,7667,7668,7669,7670,43,7563,7667,7670,7564,0,7806,7911,7914,7807,7563,7667,7670,7564,43,7564,7670,7671,7672,0,7807,7914,7915,7916,7564,7670,7671,7672,43,7670,7669,7673,7671,0,7914,7913,7917,7915,7670,7669,7673,7671,43,7671,7673,7674,7675,0,7915,7917,7918,7919,7671,7673,7674,7675,43,7672,7671,7675,7676,0,7916,7915,7919,7920,7672,7671,7675,7676,43,7669,7668,7677,7678,0,7913,7912,7921,7922,7669,7668,7677,7678,43,7668,7657,7654,7677,0,7912,7901,7898,7921,7668,7657,7654,7677,43,7677,7654,7653,7679,0,7921,7898,7897,7923,7677,7654,7653,7679,43,7678,7677,7679,7680,0,7922,7921,7923,7924,7678,7677,7679,7680,43,7653,7666,7681,7679,0,7897,7910,7925,7923,7653,7666,7681,7679,43,7666,7665,7682,7681,0,7910,7909,7926,7925,7666,7665,7682,7681,43,7681,7682,7683,7684,0,7925,7926,7927,7928,7681,7682,7683,7684,43,7679,7681,7684,7680,0,7923,7925,7928,7924,7679,7681,7684,7680,43,7685,7686,7687,7688,0,7929,7930,7931,7932,7685,7686,7687,7688,43,7686,7689,7690,7687,0,7930,7933,7934,7931,7686,7689,7690,7687,43,7687,7690,7691,7692,0,7931,7934,7935,7936,7687,7690,7691,7692,43,7688,7687,7692,7693,0,7932,7931,7936,7937,7688,7687,7692,7693,43,7694,7695,7696,7697,0,7938,7939,7940,7941,7694,7695,7696,7697,43,7695,7685,7688,7696,0,7939,7929,7932,7940,7695,7685,7688,7696,43,7696,7688,7693,7698,0,7940,7932,7937,7942,7696,7688,7693,7698,43,7697,7696,7698,7699,0,7941,7940,7942,7943,7697,7696,7698,7699,43,7699,7700,7701,7697,0,7943,7944,7945,7941,7699,7700,7701,7697,43,7700,7595,7598,7701,0,7944,7838,7841,7945,7700,7595,7598,7701,43,7701,7598,7603,7702,0,7945,7841,7846,7946,7701,7598,7603,7702,43,7697,7701,7702,7694,0,7941,7945,7946,7938,7697,7701,7702,7694,43,7603,7602,7703,7704,0,7846,7845,7947,7948,7603,7602,7703,7704,43,7602,7601,7606,7703,0,7845,7844,7849,7947,7602,7601,7606,7703,43,7703,7606,7611,7705,0,7947,7849,7854,7949,7703,7606,7611,7705,43,7704,7703,7705,7706,0,7948,7947,7949,7950,7704,7703,7705,7706,43,7694,7702,7707,7708,0,7938,7946,7951,7952,7694,7702,7707,7708,43,7702,7603,7704,7707,0,7946,7846,7948,7951,7702,7603,7704,7707,43,7707,7704,7706,7709,0,7951,7948,7950,7953,7707,7704,7706,7709,43,7708,7707,7709,7710,0,7952,7951,7953,7954,7708,7707,7709,7710,43,7711,7712,7713,7714,0,7955,7956,7957,7958,7711,7712,7713,7714,43,7712,7685,7695,7713,0,7956,7929,7939,7957,7712,7685,7695,7713,43,7713,7695,7694,7708,0,7957,7939,7938,7952,7713,7695,7694,7708,43,7714,7713,7708,7710,0,7958,7957,7952,7954,7714,7713,7708,7710,43,7715,7716,7717,7718,0,7959,7960,7961,7962,7715,7716,7717,7718,43,7716,7689,7686,7717,0,7960,7933,7930,7961,7716,7689,7686,7717,43,7717,7686,7685,7712,0,7961,7930,7929,7956,7717,7686,7685,7712,43,7718,7717,7712,7711,0,7962,7961,7956,7955,7718,7717,7712,7711,43,7715,7719,7720,7716,0,7959,7963,7964,7960,7715,7719,7720,7716,43,7719,7659,7662,7720,0,7963,7903,7906,7964,7719,7659,7662,7720,43,7720,7662,7643,7721,0,7964,7906,7886,7965,7720,7662,7643,7721,43,7716,7720,7721,7689,0,7960,7964,7965,7933,7716,7720,7721,7689,43,7643,7646,7722,7721,0,7886,7889,7966,7965,7643,7646,7722,7721,43,7646,7648,7723,7722,0,7889,7891,7967,7966,7646,7648,7723,7722,43,7722,7723,7691,7690,0,7966,7967,7935,7934,7722,7723,7691,7690,43,7721,7722,7690,7689,0,7965,7966,7934,7933,7721,7722,7690,7689,43,7724,7725,7726,7727,0,7968,7969,7970,7971,7724,7725,7726,7727,43,7725,7611,7610,7726,0,7969,7972,7973,7970,7725,7611,7610,7726,43,7726,7610,7609,7728,0,7970,7973,7974,7975,7726,7610,7609,7728,43,7727,7726,7728,7729,0,7971,7970,7975,7976,7727,7726,7728,7729,43,7730,7731,7732,7733,0,7977,7978,7979,7980,7730,7731,7732,7733,43,7731,7623,7629,7732,0,7978,7981,7982,7979,7731,7623,7629,7732,43,7732,7629,7632,7734,0,7979,7982,7983,7984,7732,7629,7632,7734,43,7733,7732,7734,7735,0,7980,7979,7984,7985,7733,7732,7734,7735,43,7735,7734,7736,7737,0,7985,7984,7986,7987,7735,7734,7736,7737,43,7734,7632,7634,7736,0,7984,7983,7988,7986,7734,7632,7634,7736,43,7736,7634,7591,7738,0,7986,7988,7989,7990,7736,7634,7591,7738,43,7737,7736,7738,7739,0,7987,7986,7990,7991,7737,7736,7738,7739,43,7739,7738,7740,7741,0,7991,7990,7992,7993,7739,7738,7740,7741,43,7738,7591,7594,7740,0,7990,7989,7994,7992,7738,7591,7594,7740,43,7740,7594,7590,7742,0,7992,7994,7995,7996,7740,7594,7590,7742,43,7741,7740,7742,7743,0,7993,7992,7996,7997,7741,7740,7742,7743,43,7590,7589,7744,7742,0,7995,7998,7999,7996,7590,7589,7744,7742,43,7589,7588,7745,7744,0,7998,8000,8001,7999,7589,7588,7745,7744,43,7744,7745,7746,7747,0,7999,8001,8002,8003,7744,7745,7746,7747,43,7742,7744,7747,7743,0,7996,7999,8003,7997,7742,7744,7747,7743,43,7729,7728,7748,7749,0,7976,7975,8004,8005,7729,7728,7748,7749,43,7728,7609,7613,7748,0,7975,7974,8006,8004,7728,7609,7613,7748,43,7748,7613,7617,7750,0,8004,8006,8007,8008,7748,7613,7617,7750,43,7749,7748,7750,7751,0,8005,8004,8008,8009,7749,7748,7750,7751,43,7751,7750,7752,7753,0,8009,8008,8010,8011,7751,7750,7752,7753,43,7750,7617,7619,7752,0,8008,8007,8012,8010,7750,7617,7619,7752,43,7752,7619,7623,7731,0,8010,8012,7981,7978,7752,7619,7623,7731,43,7753,7752,7731,7730,0,8011,8010,7978,7977,7753,7752,7731,7730,43,7676,7754,7755,7756,0,8013,8014,8015,8016,7676,7754,7755,7756,43,7754,7757,7758,7755,0,8014,8017,8018,8015,7754,7757,7758,7755,43,7755,7758,7759,7760,0,8015,8018,8019,8020,7755,7758,7759,7760,43,7756,7755,7760,7761,0,8016,8015,8020,8021,7756,7755,7760,7761,43,7715,7718,7762,7763,0,8022,8023,8024,8025,7715,7718,7762,7763,43,7718,7711,7764,7762,0,8023,8026,8027,8024,7718,7711,7764,7762,43,7762,7764,7765,7766,0,8024,8027,8028,8029,7762,7764,7765,7766,43,7763,7762,7766,7767,0,8025,8024,8029,8030,7763,7762,7766,7767,43,7711,7714,7768,7764,0,8026,8031,8032,8027,7711,7714,7768,7764,43,7714,7710,7769,7768,0,8031,8033,8034,8032,7714,7710,7769,7768,43,7768,7769,7770,7771,0,8032,8034,8035,8036,7768,7769,7770,7771,43,7764,7768,7771,7765,0,8027,8032,8036,8028,7764,7768,7771,7765,43,7770,7769,7772,7773,0,8035,8034,8037,8038,7770,7769,7772,7773,43,7769,7710,7709,7772,0,8034,8033,8039,8037,7769,7710,7709,7772,43,7772,7709,7706,7774,0,8037,8039,8040,8041,7772,7709,7706,7774,43,7773,7772,7774,7775,0,8038,8037,8041,8042,7773,7772,7774,7775,43,7775,7774,7776,7777,0,8042,8041,8043,8044,7775,7774,7776,7777,43,7774,7706,7705,7776,0,8041,8040,8045,8043,7774,7706,7705,7776,43,7776,7705,7611,7725,0,8043,8045,7972,7969,7776,7705,7611,7725,43,7777,7776,7725,7724,0,8044,8043,7969,7968,7777,7776,7725,7724,43,7421,7778,7779,7426,0,8046,8047,8048,8049,7421,7778,7779,7426,43,7778,7724,7727,7779,0,8047,7968,7971,8048,7778,7724,7727,7779,43,7779,7727,7729,7780,0,8048,7971,7976,8050,7779,7727,7729,7780,43,7426,7779,7780,7428,0,8049,8048,8050,8051,7426,7779,7780,7428,43,7415,7781,7782,7416,0,8052,8053,8054,8055,7415,7781,7782,7416,43,7781,7730,7733,7782,0,8053,7977,7980,8054,7781,7730,7733,7782,43,7782,7733,7735,7783,0,8054,7980,7985,8056,7782,7733,7735,7783,43,7416,7782,7783,7409,0,8055,8054,8056,8057,7416,7782,7783,7409,43,7409,7783,7784,7410,0,8057,8056,8058,8059,7409,7783,7784,7410,43,7783,7735,7737,7784,0,8056,7985,7987,8058,7783,7735,7737,7784,43,7784,7737,7739,7785,0,8058,7987,7991,8060,7784,7737,7739,7785,43,7410,7784,7785,7403,0,8059,8058,8060,8061,7410,7784,7785,7403,43,7403,7785,7786,7404,0,8061,8060,8062,8063,7403,7785,7786,7404,43,7785,7739,7741,7786,0,8060,7991,7993,8062,7785,7739,7741,7786,43,7786,7741,7743,7787,0,8062,7993,7997,8064,7786,7741,7743,7787,43,7404,7786,7787,7393,0,8063,8062,8064,8065,7404,7786,7787,7393,43,7743,7747,7788,7787,0,7997,8003,8066,8064,7743,7747,7788,7787,43,7747,7746,7789,7788,0,8003,8002,8067,8066,7747,7746,7789,7788,43,7788,7789,7387,7394,0,8066,8067,8068,8069,7788,7789,7387,7394,43,7787,7788,7394,7393,0,8064,8066,8069,8065,7787,7788,7394,7393,43,7729,7749,7790,7780,0,7976,8005,8070,8071,7729,7749,7790,7780,43,7749,7751,7791,7790,0,8005,8009,8072,8070,7749,7751,7791,7790,43,7780,7790,7791,7428,0,8071,8070,8072,8073,7780,7790,7791,7428,43,7428,7791,7792,7434,0,8073,8072,8074,8075,7428,7791,7792,7434,43,7791,7751,7753,7792,0,8072,8009,8011,8074,7791,7751,7753,7792,43,7792,7753,7730,7781,0,8074,8011,7977,8053,7792,7753,7730,7781,43,7434,7792,7781,7415,0,8075,8074,8053,8052,7434,7792,7781,7415,43,7761,7760,7793,7794,0,8021,8020,8076,8077,7761,7760,7793,7794,43,7760,7759,7795,7793,0,8020,8019,8078,8076,7760,7759,7795,7793,43,7793,7795,7379,7386,0,8076,8078,8079,8080,7793,7795,7379,7386,43,7794,7793,7386,7385,0,8077,8076,8080,8081,7794,7793,7386,7385,43,7767,7766,7796,7797,0,8030,8029,8082,8083,7767,7766,7796,7797,43,7766,7765,7798,7796,0,8029,8028,8084,8082,7766,7765,7798,7796,43,7796,7798,7360,7374,0,8082,8084,8085,8086,7796,7798,7360,7374,43,7797,7796,7374,7373,0,8083,8082,8086,8087,7797,7796,7374,7373,43,7765,7771,7799,7798,0,8028,8036,8088,8084,7765,7771,7799,7798,43,7771,7770,7800,7799,0,8036,8035,8089,8088,7771,7770,7800,7799,43,7799,7800,7364,7361,0,8088,8089,8090,8091,7799,7800,7364,7361,43,7798,7799,7361,7360,0,8084,8088,8091,8085,7798,7799,7361,7360,43,7364,7800,7801,7436,0,8090,8089,8092,8093,7364,7800,7801,7436,43,7800,7770,7773,7801,0,8089,8035,8038,8092,7800,7770,7773,7801,43,7801,7773,7775,7802,0,8092,8038,8042,8094,7801,7773,7775,7802,43,7436,7801,7802,7417,0,8093,8092,8094,8095,7436,7801,7802,7417,43,7417,7802,7803,7418,0,8095,8094,8096,8097,7417,7802,7803,7418,43,7802,7775,7777,7803,0,8094,8042,8044,8096,7802,7775,7777,7803,43,7803,7777,7724,7778,0,8096,8044,7968,8047,7803,7777,7724,7778,43,7418,7803,7778,7421,0,8097,8096,8047,8046,7418,7803,7778,7421,43,7757,7804,7805,7758,0,8017,8098,8099,8018,7757,7804,7805,7758,43,7804,7806,7807,7805,0,8098,8100,8101,8099,7804,7806,7807,7805,43,7805,7807,7808,7809,0,8099,8101,8102,8103,7805,7807,7808,7809,43,7758,7805,7809,7759,0,8018,8099,8103,8019,7758,7805,7809,7759,43,7759,7809,7810,7795,0,8019,8103,8104,8104,7759,7809,7810,7795,43,7809,7808,7811,7810,0,8103,8102,8105,8104,7809,7808,7811,7810,43,7795,7810,7811,7379,0,8104,8104,8105,8106,7795,7810,7811,7379,43,7659,7812,7813,7663,0,7903,8107,8108,7907,7659,7812,7813,7663,43,7812,7814,7815,7813,0,8107,8109,8110,8108,7812,7814,7815,7813,43,7813,7815,7683,7682,0,8108,8110,7927,7926,7813,7815,7683,7682,43,7663,7813,7682,7665,0,7907,8108,7926,7909,7663,7813,7682,7665,43,7814,7812,7816,7817,0,8109,8107,8111,8112,7814,7812,7816,7817,43,7812,7659,7719,7816,0,8107,7903,7963,8111,7812,7659,7719,7816,43,7817,7816,7719,7715,0,8112,8111,7963,7959,7817,7816,7719,7715,43,7818,7819,7820,7821,0,8113,8114,8115,8116,7818,7819,7820,7821,43,7819,7814,7817,7820,0,8114,8109,8112,8115,7819,7814,7817,7820,43,7821,7820,7817,7715,0,8116,8115,8112,7959,7821,7820,7817,7715,43,7822,7823,7824,7825,0,8117,8118,8119,8120,7822,7823,7824,7825,43,7823,7808,7807,7824,0,8118,8102,8101,8119,7823,7808,7807,7824,43,7824,7807,7806,7826,0,8119,8101,8100,8121,7824,7807,7806,7826,43,7825,7824,7826,7818,0,8120,8119,8121,8122,7825,7824,7826,7818,43,7767,7827,7828,7763,0,8030,8123,8124,8025,7767,7827,7828,7763,43,7827,7822,7825,7828,0,8123,8117,8120,8124,7827,7822,7825,7828,43,7828,7825,7818,7821,0,8124,8120,8122,8125,7828,7825,7818,7821,43,7763,7828,7821,7715,0,8025,8124,8125,8022,7763,7828,7821,7715,43,7822,7829,7830,7823,0,8117,8126,8127,8118,7822,7829,7830,7823,43,7829,7379,7811,7830,0,8126,8106,8105,8127,7829,7379,7811,7830,43,7823,7830,7811,7808,0,8118,8127,8105,8102,7823,7830,7811,7808,43,7822,7827,7831,7829,0,8117,8123,8128,8126,7822,7827,7831,7829,43,7827,7767,7797,7831,0,8123,8030,8083,8128,7827,7767,7797,7831,43,7831,7797,7373,7380,0,8128,8083,8087,8129,7831,7797,7373,7380,43,7829,7831,7380,7379,0,8126,8128,8129,8130,7829,7831,7380,7379,43,7674,7673,7832,7833,0,7918,7917,8131,8132,7674,7673,7832,7833,43,7673,7669,7678,7832,0,7917,7913,7922,8131,7673,7669,7678,7832,43,7832,7678,7680,7834,0,8131,7922,7924,8133,7832,7678,7680,7834,43,7833,7832,7834,7835,0,8132,8131,8133,8134,7833,7832,7834,7835,43,7680,7684,7836,7834,0,7924,7928,8135,8133,7680,7684,7836,7834,43,7684,7683,7837,7836,0,7928,7927,8136,8135,7684,7683,7837,7836,43,7836,7837,7838,7839,0,8135,8136,8137,8138,7836,7837,7838,7839,43,7834,7836,7839,7835,0,8133,8135,8138,8134,7834,7836,7839,7835,43,7683,7815,7840,7837,0,7927,8110,8139,8136,7683,7815,7840,7837,43,7815,7814,7819,7840,0,8110,8109,8114,8139,7815,7814,7819,7840,43,7840,7819,7818,7841,0,8139,8114,8113,8140,7840,7819,7818,7841,43,7837,7840,7841,7838,0,8136,8139,8140,8137,7837,7840,7841,7838,43,7757,7842,7843,7804,0,8141,8142,8143,8144,7757,7842,7843,7804,43,7842,7835,7839,7843,0,8142,8134,8138,8143,7842,7835,7839,7843,43,7843,7839,7838,7844,0,8143,8138,8137,8145,7843,7839,7838,7844,43,7804,7843,7844,7806,0,8144,8143,8145,8146,7804,7843,7844,7806,43,7676,7675,7845,7754,0,7920,7919,8147,8148,7676,7675,7845,7754,43,7675,7674,7833,7845,0,7919,7918,8132,8147,7675,7674,7833,7845,43,7845,7833,7835,7842,0,8147,8132,8134,8142,7845,7833,7835,7842,43,7754,7845,7842,7757,0,8148,8147,8142,8141,7754,7845,7842,7757,43,7806,7844,7846,7826,0,8146,8145,8149,8150,7806,7844,7846,7826,43,7844,7838,7841,7846,0,8145,8137,8140,8149,7844,7838,7841,7846,43,7826,7846,7841,7818,0,8150,8149,8140,8113,7826,7846,7841,7818,43,4357,7571,7847,4358,0,4484,7814,8151,4485,4357,7571,7847,4358,43,7571,7559,7561,7847,0,7814,7802,7805,8151,7571,7559,7562,7847,43,7847,7561,7566,7582,0,8151,7805,7809,7825,7847,7562,7566,7582,43,4358,7847,7582,4239,0,4485,8151,7825,4366,4358,7847,7582,4239,43,7566,7848,7849,7584,0,7809,8152,8153,7827,7566,7848,7849,7584,43,7848,7850,7851,7849,0,8152,8154,8155,8153,7848,7850,7851,7849,43,7849,7851,7588,7587,0,8153,8155,7831,7830,7849,7851,7588,7587,43,7584,7849,7587,7580,0,7827,8153,7830,7823,7584,7849,7587,7580,43,7564,7672,7852,7565,0,7807,7916,8156,7808,7564,7672,7852,7565,43,7672,7676,7853,7852,0,7916,7920,8157,8156,7672,7676,7853,7852,43,7852,7853,7850,7848,0,8156,8157,8154,8152,7852,7853,7850,7848,43,7565,7852,7848,7566,0,7808,8156,8152,7809,7565,7852,7848,7566,43,7854,7855,7856,7857,0,8158,8159,8160,8158,7854,7855,7856,7857,43,7855,7850,7853,7856,0,8159,8161,8162,8160,7855,7850,7853,7856,43,7856,7853,7676,7756,0,8160,8162,8013,8016,7856,7853,7676,7756,43,7857,7856,7756,7761,0,8158,8160,8016,8021,7857,7856,7756,7761,43,7746,7745,7858,7859,0,8002,8001,8163,8164,7746,7745,7858,7859,43,7745,7588,7851,7858,0,8001,8000,8165,8163,7745,7588,7851,7858,43,7858,7851,7850,7855,0,8163,8165,8161,8159,7858,7851,7850,7855,43,7859,7858,7855,7854,0,8164,8163,8159,8158,7859,7858,7855,7854,43,7761,7794,7860,7857,0,8021,8077,8166,8158,7761,7794,7860,7857,43,7794,7385,7861,7860,0,8077,8081,8167,8166,7794,7385,7861,7860,43,7857,7860,7861,7854,0,8158,8166,8167,8158,7857,7860,7861,7854,43,7854,7861,7862,7859,0,8158,8168,8169,8164,7854,7861,7862,7859,43,7861,7385,7388,7862,0,8168,8170,8171,8169,7861,7385,7388,7862,43,7862,7388,7387,7789,0,8169,8171,8068,8067,7862,7388,7387,7789,43,7859,7862,7789,7746,0,8164,8169,8067,8002,7859,7862,7789,7746,43,7863,7864,7865,7866,0,8172,8173,8174,8175,7863,7864,7865,7866,43,7864,7867,7868,7865,0,8173,8176,8177,8174,7864,7867,7868,7865,43,7865,7868,7090,7093,0,8174,8177,8178,8179,7865,7868,7090,7093,43,7866,7865,7093,7098,0,8175,8174,8179,8180,7866,7865,7093,7098,43,7869,7870,7871,7872,0,8181,8182,8183,8184,7869,7870,7871,7872,43,7870,7873,7874,7871,0,8182,8185,8186,8183,7870,7873,7874,7871,43,7871,7874,7867,7864,0,8183,8186,8176,8173,7871,7874,7867,7864,43,7872,7871,7864,7863,0,8184,8183,8173,8172,7872,7871,7864,7863,43,7875,7876,7877,7878,0,8187,8188,8189,8190,7875,7876,7877,7878,43,7876,7879,7880,7877,0,8188,8191,8192,8189,7876,7879,7880,7877,43,7877,7880,7873,7870,0,8189,8192,8185,8182,7877,7880,7873,7870,43,7878,7877,7870,7869,0,8190,8189,8182,8181,7878,7877,7870,7869,43,7881,7882,7883,7884,0,8193,8194,8195,8196,7881,7882,7883,7884,43,7882,7885,7886,7883,0,8194,8197,8198,8195,7882,7885,7886,7883,43,7883,7886,7879,7876,0,8195,8198,8191,8188,7883,7886,7879,7876,43,7884,7883,7876,7875,0,8196,8195,8188,8187,7884,7883,7876,7875,43,7881,7887,7888,7882,0,8193,8199,8200,8194,7881,7887,7888,7882,43,7887,7889,7890,7888,0,8199,8201,8202,8200,7887,7889,7890,7888,43,7888,7890,7891,7892,0,8200,8202,8203,8204,7888,7890,7891,7892,43,7882,7888,7892,7885,0,8194,8200,8204,8197,7882,7888,7892,7885,43,7893,7894,7895,7896,0,8205,8206,8207,8208,7893,7894,7895,7896,43,7894,7897,7898,7895,0,8206,8209,8210,8207,7894,7897,7898,7895,43,7895,7898,7891,7890,0,8207,8210,8203,8202,7895,7898,7891,7890,43,7896,7895,7890,7889,0,8208,8207,8202,8201,7896,7895,7890,7889,43,7881,7899,7900,7887,0,8193,8211,8212,8199,7881,7899,7900,7887,43,7899,7901,7902,7900,0,8211,8213,8214,8212,7899,7901,7902,7900,43,7900,7902,7903,7904,0,8212,8214,8215,8216,7900,7902,7903,7904,43,7887,7900,7904,7889,0,8199,8212,8216,8201,7887,7900,7904,7889,43,7903,7905,7906,7904,0,8215,8217,8218,8216,7903,7905,7906,7904,43,7905,7907,7908,7906,0,8217,8219,8220,8218,7905,7907,7908,7906,43,7906,7908,7893,7896,0,8218,8220,8205,8208,7906,7908,7893,7896,43,7904,7906,7896,7889,0,8216,8218,8208,8201,7904,7906,7896,7889,43,7891,7909,7910,7892,0,8203,8221,8222,8204,7891,7909,7910,7892,43,7909,7911,7912,7910,0,8221,8223,8224,8222,7909,7911,7912,7910,43,7910,7912,7913,7914,0,8222,8224,8225,8226,7910,7912,7913,7914,43,7892,7910,7914,7885,0,8204,8222,8226,8197,7892,7910,7914,7885,43,7885,7914,7915,7886,0,8197,8226,8227,8198,7885,7914,7915,7886,43,7914,7913,7916,7915,0,8226,8225,8228,8227,7914,7913,7916,7915,43,7915,7916,7917,7918,0,8227,8228,8229,8230,7915,7916,7917,7918,43,7886,7915,7918,7879,0,8198,8227,8230,8191,7886,7915,7918,7879,43,7901,7899,7919,7920,0,8213,8211,8231,8232,7901,7899,7919,7920,43,7899,7881,7884,7919,0,8211,8193,8196,8231,7899,7881,7884,7919,43,7919,7884,7875,7921,0,8231,8196,8187,8233,7919,7884,7875,7921,43,7920,7919,7921,7922,0,8232,8231,8233,8234,7920,7919,7921,7922,43,7869,7923,7924,7878,0,8181,8235,8236,8190,7869,7923,7924,7878,43,7923,7925,7926,7924,0,8235,8237,8238,8236,7923,7925,7926,7924,43,7924,7926,7922,7921,0,8236,8238,8234,8233,7924,7926,7922,7921,43,7878,7924,7921,7875,0,8190,8236,8233,8187,7878,7924,7921,7875,43,7922,7926,7927,7928,0,8239,8240,8241,8242,7922,7926,7927,7928,43,7926,7925,7929,7927,0,8240,8243,8244,8241,7926,7925,7929,7927,43,7927,7929,7930,7931,0,8241,8244,8245,8246,7927,7929,7930,7931,43,7928,7927,7931,7162,0,8242,8241,8246,8247,7928,7927,7931,7162,43,7903,7902,7932,7933,0,8248,8249,8250,8251,7903,7902,7932,7933,43,7902,7901,7920,7932,0,8249,8252,8253,8250,7902,7901,7920,7932,43,7932,7920,7922,7928,0,8250,8253,8239,8242,7932,7920,7922,7928,43,7933,7932,7928,7162,0,8251,8250,8242,8247,7933,7932,7928,7162,43,7879,7918,7934,7880,0,8191,8230,8254,8192,7879,7918,7934,7880,43,7918,7917,7935,7934,0,8230,8229,8255,8254,7918,7917,7935,7934,43,7934,7935,7936,7937,0,8254,8255,8256,8257,7934,7935,7936,7937,43,7880,7934,7937,7873,0,8192,8254,8257,8185,7880,7934,7937,7873,43,7917,7938,7939,7935,0,8229,8258,8259,8255,7917,7938,7939,7935,43,7938,7940,7941,7939,0,8258,8260,8261,8259,7938,7940,7941,7939,43,7939,7941,7942,7943,0,8259,8261,8262,8263,7939,7941,7942,7943,43,7935,7939,7943,7936,0,8255,8259,8263,8256,7935,7939,7943,7936,43,7913,7944,7945,7916,0,8225,8264,8265,8228,7913,7944,7945,7916,43,7944,7946,7947,7945,0,8264,8266,8267,8265,7944,7946,7947,7945,43,7945,7947,7940,7938,0,8265,8267,8260,8258,7945,7947,7940,7938,43,7916,7945,7938,7917,0,8228,8265,8258,8229,7916,7945,7938,7917,43,7936,7943,7948,7949,0,8256,8263,8268,8269,7936,7943,7948,7949,43,7943,7942,7950,7948,0,8263,8262,8270,8268,7943,7942,7950,7948,43,7948,7950,7951,7952,0,8268,8270,8271,8272,7948,7950,7951,7952,43,7949,7948,7952,7953,0,8269,8268,8272,8273,7949,7948,7952,7953,43,7951,7954,7955,7952,0,8271,8274,8275,8272,7951,7954,7955,7952,43,7954,7189,7186,7955,0,8274,8276,8277,8275,7954,7189,7186,7955,43,7955,7186,7185,7956,0,8275,8277,8278,8279,7955,7186,7185,7956,43,7952,7955,7956,7953,0,8272,8275,8279,8273,7952,7955,7956,7953,43,7867,7957,7958,7868,0,8176,8280,8281,8177,7867,7957,7958,7868,43,7957,7953,7956,7958,0,8280,8273,8279,8281,7957,7953,7956,7958,43,7958,7956,7185,7192,0,8281,8279,8278,8282,7958,7956,7185,7192,43,7868,7958,7192,7090,0,8177,8281,8282,8178,7868,7958,7192,7090,43,7873,7937,7959,7874,0,8185,8257,8283,8186,7873,7937,7959,7874,43,7937,7936,7949,7959,0,8257,8256,8269,8283,7937,7936,7949,7959,43,7959,7949,7953,7957,0,8283,8269,8273,8280,7959,7949,7953,7957,43,7874,7959,7957,7867,0,8186,8283,8280,8176,7874,7959,7957,7867,43,7930,7929,7960,7961,0,8284,8285,8286,8287,7930,7929,7960,7961,43,7929,7925,7923,7960,0,8285,8237,8235,8286,7929,7925,7923,7960,43,7960,7923,7869,7872,0,8286,8235,8181,8184,7960,7923,7869,7872,43,7961,7960,7872,7863,0,8287,8286,8184,8172,7961,7960,7872,7863,43,7199,7962,7963,7200,0,8288,8289,8290,8291,7199,7962,7963,7200,43,7962,7930,7961,7963,0,8289,8284,8287,8290,7962,7930,7961,7963,43,7963,7961,7863,7866,0,8290,8287,8172,8175,7963,7961,7863,7866,43,7200,7963,7866,7098,0,8291,8290,8175,8180,7200,7963,7866,7098,43,7930,7962,7964,7931,0,8245,8292,8293,8246,7930,7962,7964,7931,43,7962,7199,7202,7964,0,8292,8294,8295,8293,7962,7199,7202,7964,43,7931,7964,7202,7162,0,8246,8293,8295,8247,7931,7964,7202,7162,43,7965,7966,7967,7968,0,8296,8297,8298,8299,7965,7966,7967,7968,43,7966,7969,7970,7967,0,8297,8300,8301,8298,7966,7969,7970,7967,43,7967,7970,7203,7206,0,8298,8301,8302,8303,7967,7970,7203,7206,43,7968,7967,7206,7211,0,8299,8298,8303,8304,7968,7967,7206,7211,43,7969,7971,7972,7970,0,8305,8306,8307,8308,7969,7971,7972,7970,43,7971,7212,7215,7972,0,8306,8309,8310,8307,7971,7212,7215,7972,43,7970,7972,7215,7203,0,8308,8307,8310,8311,7970,7972,7215,7203,43,7222,7221,7973,7974,0,8312,8313,8314,8315,7222,7221,7973,7974,43,7221,7220,7975,7973,0,8313,8316,8317,8314,7221,7220,7975,7973,43,7973,7975,7976,7977,0,8314,8317,8318,8319,7973,7975,7976,7977,43,7974,7973,7977,7978,0,8315,8314,8319,8320,7974,7973,7977,7978,43,7222,7974,7979,7229,0,8312,8315,8321,8322,7222,7974,7979,7229,43,7974,7978,7980,7979,0,8315,8320,8323,8321,7974,7978,7980,7979,43,7979,7980,7981,7982,0,8321,8323,8324,8325,7979,7980,7981,7982,43,7229,7979,7982,7230,0,8322,8321,8325,8326,7229,7979,7982,7230,43,7230,7982,7983,7233,0,8326,8325,8327,8328,7230,7982,7983,7233,43,7982,7981,7984,7983,0,8325,8324,8329,8327,7982,7981,7984,7983,43,7983,7984,7965,7968,0,8327,8329,8296,8299,7983,7984,7965,7968,43,7233,7983,7968,7211,0,8328,8327,8299,8304,7233,7983,7968,7211,43,7985,7986,7987,7988,0,8330,8331,8332,8333,7985,7986,7987,7988,43,7986,7989,7990,7987,0,8331,8334,8335,8332,7986,7989,7990,7987,43,7987,7990,7991,7992,0,8332,8335,8336,8337,7987,7990,7991,7992,43,7988,7987,7992,7993,0,8333,8332,8337,8338,7988,7987,7992,7993,43,7994,7995,7996,7997,0,8339,8340,8341,8342,7994,7995,7996,7997,43,7995,7985,7988,7996,0,8340,8330,8333,8341,7995,7985,7988,7996,43,7996,7988,7993,7998,0,8341,8333,8338,8343,7996,7988,7993,7998,43,7997,7996,7998,7999,0,8342,8341,8343,8344,7997,7996,7998,7999,43,7212,8000,8001,7251,0,8309,8345,8346,8347,7212,8000,8001,7251,43,8000,7907,7905,8001,0,8345,8348,8349,8346,8000,7907,7905,8001,43,8001,7905,7903,7933,0,8346,8349,8248,8251,8001,7905,7903,7933,43,7251,8001,7933,7162,0,8347,8346,8251,8247,7251,8001,7933,7162,43,8002,8003,8004,8005,0,8350,8351,8352,8353,8002,8003,8004,8005,43,8003,7212,7971,8004,0,8351,8309,8306,8352,8003,7212,7971,8004,43,8005,8004,7971,7969,0,8353,8352,8306,8305,8005,8004,7971,7969,43,8006,8007,8008,8009,0,8354,8355,8356,8357,8006,8007,8008,8009,43,8007,8002,8005,8008,0,8355,8358,8359,8356,8007,8002,8005,8008,43,8008,8005,7969,7966,0,8356,8359,8300,8297,8008,8005,7969,7966,43,8009,8008,7966,7965,0,8357,8356,8297,8296,8009,8008,7966,7965,43,7981,8010,8011,7984,0,8324,8360,8361,8329,7981,8010,8011,7984,43,8010,8012,8013,8011,0,8360,8362,8363,8361,8010,8012,8013,8011,43,8011,8013,8006,8009,0,8361,8363,8354,8357,8011,8013,8006,8009,43,7984,8011,8009,7965,0,8329,8361,8357,8296,7984,8011,8009,7965,43,7981,7980,8014,8010,0,8324,8323,8364,8360,7981,7980,8014,8010,43,7980,7978,8015,8014,0,8323,8320,8365,8364,7980,7978,8015,8014,43,8014,8015,8016,8017,0,8364,8365,8366,8367,8014,8015,8016,8017,43,8010,8014,8017,8012,0,8360,8364,8367,8362,8010,8014,8017,8012,43,7978,7977,8018,8015,0,8320,8319,8368,8365,7978,7977,8018,8015,43,7977,7976,8019,8018,0,8319,8318,8369,8368,7977,7976,8019,8018,43,8018,8019,8020,8021,0,8368,8369,8370,8371,8018,8019,8020,8021,43,8015,8018,8021,8016,0,8365,8368,8371,8366,8015,8018,8021,8016,43,8016,8021,8022,8023,0,8366,8371,8372,8373,8016,8021,8022,8023,43,8021,8020,8024,8022,0,8371,8370,8374,8372,8021,8020,8024,8022,43,8022,8024,8025,8026,0,8372,8374,8375,8376,8022,8024,8025,8026,43,8023,8022,8026,8027,0,8373,8372,8376,8377,8023,8022,8026,8027,43,7999,8028,8029,7997,0,8344,8378,8379,8342,7999,8028,8029,7997,43,8028,8027,8026,8029,0,8378,8377,8376,8379,8028,8027,8026,8029,43,8029,8026,8025,8030,0,8379,8376,8375,8380,8029,8026,8025,8030,43,7997,8029,8030,7994,0,8342,8379,8380,8339,7997,8029,8030,7994,43,8027,8028,8031,8032,0,8377,8378,8381,8382,8027,8028,8031,8032,43,8028,7999,8033,8031,0,8378,8344,8383,8381,8028,7999,8033,8031,43,8031,8033,8034,8035,0,8381,8383,8384,8385,8031,8033,8034,8035,43,8032,8031,8035,8036,0,8382,8381,8385,8386,8032,8031,8035,8036,43,8012,8017,8037,8038,0,8362,8367,8387,8388,8012,8017,8037,8038,43,8017,8016,8023,8037,0,8367,8366,8373,8387,8017,8016,8023,8037,43,8037,8023,8027,8032,0,8387,8373,8377,8382,8037,8023,8027,8032,43,8038,8037,8032,8036,0,8388,8387,8382,8386,8038,8037,8032,8036,43,8036,8035,8039,8040,0,8386,8385,8389,8390,8036,8035,8039,8040,43,8035,8034,8041,8039,0,8385,8384,8391,8389,8035,8034,8041,8039,43,8039,8041,8042,8043,0,8389,8391,8392,8393,8039,8041,8042,8043,43,8040,8039,8043,8044,0,8390,8389,8393,8394,8040,8039,8043,8044,43,8012,8038,8045,8013,0,8362,8388,8395,8363,8012,8038,8045,8013,43,8038,8036,8040,8045,0,8388,8386,8390,8395,8038,8036,8040,8045,43,8045,8040,8044,8046,0,8395,8390,8394,8396,8045,8040,8044,8046,43,8013,8045,8046,8006,0,8363,8395,8396,8354,8013,8045,8046,8006,43,8047,8048,8049,8050,0,8397,8398,8399,8400,8047,8048,8049,8050,43,8048,8051,8052,8049,0,8398,8401,8402,8399,8048,8051,8052,8049,43,8049,8052,8044,8043,0,8399,8402,8394,8393,8049,8052,8044,8043,43,8050,8049,8043,8042,0,8400,8399,8393,8392,8050,8049,8043,8042,43,8006,8046,8053,8007,0,8354,8396,8403,8355,8006,8046,8053,8007,43,8046,8044,8052,8053,0,8396,8394,8402,8403,8046,8044,8052,8053,43,8053,8052,8051,8054,0,8403,8402,8401,8404,8053,8052,8051,8054,43,8007,8053,8054,8002,0,8355,8403,8404,8358,8007,8053,8054,8002,43,8002,8054,8055,8003,0,8350,8405,8406,8351,8002,8054,8055,8003,43,8054,8051,8048,8055,0,8405,8407,8408,8406,8054,8051,8048,8055,43,8055,8048,8047,8056,0,8406,8408,8409,8410,8055,8048,8047,8056,43,8003,8055,8056,7212,0,8351,8406,8410,8309,8003,8055,8056,7212,43,8042,8057,8058,8050,0,8392,8411,8412,8400,8042,8057,8058,8050,43,8057,8059,8060,8058,0,8411,8413,8414,8412,8057,8059,8060,8058,43,8058,8060,8061,8062,0,8412,8414,8415,8416,8058,8060,8061,8062,43,8050,8058,8062,8047,0,8400,8412,8416,8397,8050,8058,8062,8047,43,7907,8063,8064,7908,0,8219,8417,8418,8220,7907,8063,8064,7908,43,8063,8061,8060,8064,0,8417,8415,8414,8418,8063,8061,8060,8064,43,8064,8060,8059,8065,0,8418,8414,8413,8419,8064,8060,8059,8065,43,7908,8064,8065,7893,0,8220,8418,8419,8205,7908,8064,8065,7893,43,8047,8062,8066,8056,0,8409,8420,8421,8410,8047,8062,8066,8056,43,8062,8061,8063,8066,0,8420,8422,8423,8421,8062,8061,8063,8066,43,8066,8063,7907,8000,0,8421,8423,8348,8345,8066,8063,7907,8000,43,8056,8066,8000,7212,0,8410,8421,8345,8309,8056,8066,8000,7212,43,8034,8067,8068,8041,0,8384,8424,8425,8391,8034,8067,8068,8041,43,8067,8069,8070,8068,0,8424,8426,8427,8425,8067,8069,8070,8068,43,8068,8070,8059,8057,0,8425,8427,8413,8411,8068,8070,8059,8057,43,8041,8068,8057,8042,0,8391,8425,8411,8392,8041,8068,8057,8042,43,7999,7998,8071,8033,0,8344,8343,8428,8383,7999,7998,8071,8033,43,7998,7993,8072,8071,0,8343,8338,8429,8428,7998,7993,8072,8071,43,8071,8072,8069,8067,0,8428,8429,8426,8424,8071,8072,8069,8067,43,8033,8071,8067,8034,0,8383,8428,8424,8384,8033,8071,8067,8034,43,7993,7992,8073,8072,0,8338,8337,8430,8429,7993,7992,8073,8072,43,7992,7991,8074,8073,0,8337,8336,8431,8430,7992,7991,8074,8073,43,8073,8074,7897,8075,0,8430,8431,8209,8432,8073,8074,7897,8075,43,8072,8073,8075,8069,0,8429,8430,8432,8426,8072,8073,8075,8069,43,7911,8076,8077,7912,0,8223,8433,8434,8224,7911,8076,8077,7912,43,8076,8078,8079,8077,0,8433,8435,8436,8434,8076,8078,8079,8077,43,8077,8079,7946,7944,0,8434,8436,8266,8264,8077,8079,7946,7944,43,7912,8077,7944,7913,0,8224,8434,8264,8225,7912,8077,7944,7913,43,7989,8080,8081,7990,0,8334,8437,8438,8335,7989,8080,8081,7990,43,8080,8078,8076,8081,0,8437,8435,8433,8438,8080,8078,8076,8081,43,8081,8076,7911,8082,0,8438,8433,8223,8439,8081,8076,7911,8082,43,7990,8081,8082,7991,0,8335,8438,8439,8336,7990,8081,8082,7991,43,7897,8074,8083,7898,0,8209,8431,8440,8210,7897,8074,8083,7898,43,8074,7991,8082,8083,0,8431,8336,8439,8440,8074,7991,8082,8083,43,8083,8082,7911,7909,0,8440,8439,8223,8221,8083,8082,7911,7909,43,7898,8083,7909,7891,0,8210,8440,8221,8203,7898,8083,7909,7891,43,8069,8075,8084,8070,0,8426,8432,8441,8427,8069,8075,8084,8070,43,8075,7897,7894,8084,0,8432,8209,8206,8441,8075,7897,7894,8084,43,8084,7894,7893,8065,0,8441,8206,8205,8419,8084,7894,7893,8065,43,8070,8084,8065,8059,0,8427,8441,8419,8413,8070,8084,8065,8059,43,7951,8085,8086,7954,0,8442,8443,8444,8445,7951,8085,8086,7954,43,8085,4531,4546,8086,0,8443,4661,4676,8444,8085,4531,4546,8086,43,8086,4546,4462,7336,0,8444,4676,4592,7554,8086,4546,4462,7336,43,7954,8086,7336,7189,0,8445,8444,7554,7558,7954,8086,7336,7189,43,4524,4527,8087,8088,0,4654,4657,8446,8447,4524,4527,8087,8088,43,4527,4531,8085,8087,0,4657,4661,8443,8446,4527,4531,8085,8087,43,8087,8085,7951,7950,0,8446,8443,8442,8448,8087,8085,7951,7950,43,8088,8087,7950,7942,0,8447,8446,8448,8449,8088,8087,7950,7942,43,4550,4552,8089,8090,0,4680,4682,8450,8451,4550,4552,8089,8090,43,4552,4524,8088,8089,0,4682,4654,8447,8450,4552,4524,8088,8089,43,8089,8088,7942,7941,0,8450,8447,8449,8452,8089,8088,7942,7941,43,8090,8089,7941,7940,0,8451,8450,8452,8453,8090,8089,7941,7940,43,7946,8091,8092,7947,0,8454,8455,8456,8457,7946,8091,8092,7947,43,8091,4483,4548,8092,0,8455,4613,4678,8456,8091,4483,4548,8092,43,8092,4548,4550,8090,0,8456,4678,4680,8451,8092,4548,4550,8090,43,7947,8092,8090,7940,0,8457,8456,8451,8453,7947,8092,8090,7940,43,8078,8093,8094,8079,0,8458,8459,8460,8461,8078,8093,8094,8079,43,8093,4475,4479,8094,0,8459,4605,4609,8460,8093,4475,4479,8094,43,8094,4479,4483,8091,0,8460,4609,4613,8455,8094,4479,4483,8091,43,8079,8094,8091,7946,0,8461,8460,8455,8454,8079,8094,8091,7946,43,7989,8095,8096,8080,0,8462,8463,8464,8465,7989,8095,8096,8080,43,8095,4477,4476,8096,0,8463,4607,4606,8464,8095,4477,4476,8096,43,8096,4476,4475,8093,0,8464,4606,4605,8459,8096,4476,4475,8093,43,8080,8096,8093,8078,0,8465,8464,8459,8458,8080,8096,8093,8078,43,7985,8097,8098,7986,0,8466,8467,8468,8469,7985,8097,8098,7986,43,8097,4694,4693,8098,0,8467,4824,4823,8468,8097,4694,4693,8098,43,8098,4693,4477,8095,0,8468,4823,4607,8463,8098,4693,4477,8095,43,7986,8098,8095,7989,0,8469,8468,8463,8462,7986,8098,8095,7989,43,7994,8099,8100,7995,0,8470,8471,8472,8473,7994,8099,8100,7995,43,8099,4685,4696,8100,0,8471,4815,4826,8472,8099,4685,4696,8100,43,8100,4696,4694,8097,0,8472,4826,4824,8467,8100,4696,4694,8097,43,7995,8100,8097,7985,0,8473,8472,8467,8466,7995,8100,8097,7985,43,4680,4686,8101,8102,0,4810,4816,8474,8475,4680,4686,8101,8102,43,4686,4685,8099,8101,0,4816,4815,8471,8474,4686,4685,8099,8101,43,8101,8099,7994,8030,0,8474,8471,8470,8476,8101,8099,7994,8030,43,8102,8101,8030,8025,0,8475,8474,8476,8477,8102,8101,8030,8025,43,8020,8103,8104,8024,0,8478,8479,8480,8481,8020,8103,8104,8024,43,8103,4643,4681,8104,0,8479,4773,4811,8480,8103,4643,4681,8104,43,8104,4681,4680,8102,0,8480,4811,4810,8475,8104,4681,4680,8102,43,8024,8104,8102,8025,0,8481,8480,8475,8477,8024,8104,8102,8025,43,7976,8105,8106,8019,0,8482,8483,8484,8485,7976,8105,8106,8019,43,8105,4645,4644,8106,0,8483,4775,4774,8484,8105,4645,4644,8106,43,8106,4644,4643,8103,0,8484,4774,4773,8479,8106,4644,4643,8103,43,8019,8106,8103,8020,0,8485,8484,8479,8478,8019,8106,8103,8020,43,4567,4648,8107,7359,0,4697,4778,8486,7601,4567,4648,8107,7359,43,4648,4645,8105,8107,0,4778,4775,8483,8486,4648,4645,8105,8107,43,8107,8105,7976,7975,0,8486,8483,8482,8487,8107,8105,7976,7975,43,7359,8107,7975,7220,0,7601,8486,8487,7602,7359,8107,7975,7220,43,2671,8108,8109,8110,0,2797,8488,8489,8490,2671,8108,8109,8110,43,8108,8111,8112,8109,0,8488,8491,8492,8489,8108,8111,8112,8109,43,8110,8109,8112,8113,0,8490,8489,8492,8493,8110,8109,8112,8113,43,8114,8115,8116,8117,0,8494,8495,8496,8497,8114,8115,8116,8117,43,8115,8118,8119,8116,0,8495,8498,8499,8496,8115,8118,8119,8116,43,8116,8119,8113,8120,0,8496,8499,8493,8500,8116,8119,8113,8120,43,8117,8116,8120,8121,0,8497,8496,8500,8501,8117,8116,8120,8121,43,2671,8122,8123,2672,0,2797,8502,8503,2798,2671,8122,8123,2672,43,8122,8118,8124,8123,0,8502,8498,8504,8503,8122,8118,8124,8123,43,2672,8123,8124,2658,0,2798,8503,8504,2784,2672,8123,8124,2658,43,2671,8110,8125,8122,0,2797,8490,8505,8502,2671,8110,8125,8122,43,8110,8113,8119,8125,0,8490,8493,8499,8505,8110,8113,8119,8125,43,8122,8125,8119,8118,0,8502,8505,8499,8498,8122,8125,8119,8118,43,2658,8124,8126,2659,0,2784,8504,8506,2785,2658,8124,8126,2659,43,8124,8118,8115,8126,0,8504,8498,8495,8506,8124,8118,8115,8126,43,8126,8115,8114,8127,0,8506,8495,8494,8507,8126,8115,8114,8127,43,2659,8126,8127,2660,0,2785,8506,8507,2786,2659,8126,8127,2660,43,2660,8127,8128,2661,0,2786,8507,8508,2787,2660,8127,8128,2661,43,8127,8114,8117,8128,0,8507,8494,8497,8508,8127,8114,8117,8128,43,8128,8117,8121,8129,0,8508,8497,8501,8509,8128,8117,8121,8129,43,2661,8128,8129,2568,0,2787,8508,8509,2694,2661,8128,8129,2568,43,8130,8131,8132,8133,0,8510,8511,8512,8513,8130,8131,8132,8133,43,8131,8134,8135,8132,0,8511,8514,8515,8512,8131,8134,8135,8132,43,8132,8135,8136,8137,0,8512,8515,8516,8517,8132,8135,8136,8137,43,8133,8132,8137,8138,0,8513,8512,8517,8518,8133,8132,8137,8138,43,8139,8140,8141,8142,0,8519,8520,8521,8522,8139,8140,8141,8142,43,8140,8143,8144,8141,0,8520,8523,8524,8521,8140,8143,8144,8141,43,8141,8144,8145,8146,0,8521,8524,8525,8526,8141,8144,8145,8146,43,8142,8141,8146,8147,0,8522,8521,8526,8527,8142,8141,8146,8147,43,8148,8149,8150,8151,0,8528,8529,8530,8531,8148,8149,8150,8151,43,8149,8152,8153,8150,0,8529,8532,8533,8530,8149,8152,8153,8150,43,8150,8153,8136,8135,0,8530,8533,8516,8515,8150,8153,8136,8135,43,8151,8150,8135,8134,0,8531,8530,8515,8514,8151,8150,8135,8134,43,8121,8154,8155,8156,0,8501,8534,8535,8536,8121,8154,8155,8156,43,8154,8148,8151,8155,0,8534,8528,8531,8535,8154,8148,8151,8155,43,8155,8151,8134,8157,0,8535,8531,8514,8537,8155,8151,8134,8157,43,8156,8155,8157,8158,0,8536,8535,8537,8538,8156,8155,8157,8158,43,8159,8160,8161,8162,0,8539,8540,8541,8542,8159,8160,8161,8162,43,8160,8148,8154,8161,0,8540,8528,8534,8541,8160,8148,8154,8161,43,8161,8154,8121,8120,0,8541,8534,8501,8500,8161,8154,8121,8120,43,8162,8161,8120,8113,0,8542,8541,8500,8493,8162,8161,8120,8113,43,8163,8164,8165,8166,0,8543,8544,8545,8546,8163,8164,8165,8166,43,8164,8152,8149,8165,0,8544,8532,8529,8545,8164,8152,8149,8165,43,8165,8149,8148,8160,0,8545,8529,8528,8540,8165,8149,8148,8160,43,8166,8165,8160,8159,0,8546,8545,8540,8539,8166,8165,8160,8159,43,8152,8164,8167,8153,0,8532,8544,8547,8533,8152,8164,8167,8153,43,8164,8163,8168,8167,0,8544,8543,8548,8547,8164,8163,8168,8167,43,8167,8168,8169,8170,0,8547,8548,8549,8550,8167,8168,8169,8170,43,8153,8167,8170,8136,0,8533,8547,8550,8516,8153,8167,8170,8136,43,8163,8171,8172,8168,0,8543,8551,8552,8548,8163,8171,8172,8168,43,8171,8173,8174,8172,0,8551,8553,8554,8552,8171,8173,8174,8172,43,8172,8174,8175,8176,0,8552,8554,8555,8556,8172,8174,8175,8176,43,8168,8172,8176,8169,0,8548,8552,8556,8549,8168,8172,8176,8169,43,8169,8176,8177,8178,0,8549,8556,8557,8558,8169,8176,8177,8178,43,8176,8175,8179,8177,0,8556,8555,8559,8557,8176,8175,8179,8177,43,8177,8179,8139,8142,0,8557,8559,8519,8522,8177,8179,8139,8142,43,8178,8177,8142,8147,0,8558,8557,8522,8527,8178,8177,8142,8147,43,8136,8170,8180,8137,0,8516,8550,8560,8517,8136,8170,8180,8137,43,8170,8169,8178,8180,0,8550,8549,8558,8560,8170,8169,8178,8180,43,8180,8178,8147,8181,0,8560,8558,8527,8561,8180,8178,8147,8181,43,8137,8180,8181,8138,0,8517,8560,8561,8518,8137,8180,8181,8138,43,8182,8183,8184,8185,0,8562,8563,8564,8565,8182,8183,8184,8185,43,8183,8186,8187,8184,0,8563,8566,8567,8564,8183,8186,8187,8184,43,8184,8187,8188,8189,0,8564,8567,8568,8569,8184,8187,8188,8189,43,8185,8184,8189,8190,0,8565,8564,8569,8570,8185,8184,8189,8190,43,8191,8192,8193,8194,0,8571,8572,8573,8574,8191,8192,8193,8194,43,8192,8182,8185,8193,0,8572,8562,8565,8573,8192,8182,8185,8193,43,8193,8185,8190,8195,0,8573,8565,8570,8575,8193,8185,8190,8195,43,8194,8193,8195,8196,0,8574,8573,8575,8576,8194,8193,8195,8196,43,8186,8183,8197,8198,0,8566,8563,8577,8578,8186,8183,8197,8198,43,8183,8182,8192,8197,0,8563,8562,8572,8577,8183,8182,8192,8197,43,8197,8192,8191,8199,0,8577,8572,8571,8579,8197,8192,8191,8199,43,8198,8197,8199,8200,0,8578,8577,8579,8580,8198,8197,8199,8200,43,2697,8201,8202,2692,0,2823,8581,8582,2818,2697,8201,8202,2692,43,8201,8200,8199,8202,0,8581,8580,8579,8582,8201,8200,8199,8202,43,8202,8199,8191,8203,0,8582,8579,8571,8583,8202,8199,8191,8203,43,2692,8202,8203,2689,0,2818,8582,8583,2815,2692,8202,8203,2689,43,2568,8129,8204,2626,0,2694,8509,8584,2752,2568,8129,8204,2626,43,8129,8121,8156,8204,0,8509,8501,8536,8584,8129,8121,8156,8204,43,8204,8156,8158,8205,0,8584,8536,8538,8585,8204,8156,8158,8205,43,2626,8204,8205,2624,0,2752,8584,8585,2750,2626,8204,8205,2624,43,8206,8207,8208,8209,0,8586,8587,8588,8589,8206,8207,8208,8209,43,8207,8158,8157,8208,0,8587,8538,8537,8588,8207,8158,8157,8208,43,8208,8157,8134,8131,0,8588,8537,8514,8511,8208,8157,8134,8131,43,8209,8208,8131,8130,0,8589,8588,8511,8510,8209,8208,8131,8130,43,8158,8207,8210,8205,0,8538,8587,8590,8585,8158,8207,8210,8205,43,8207,8206,8211,8210,0,8587,8586,8591,8590,8207,8206,8211,8210,43,8210,8211,2620,2622,0,8590,8591,2746,2748,8210,8211,2620,2622,43,8205,8210,2622,2624,0,8585,8590,2748,2750,8205,8210,2622,2624,43,8200,8201,8212,8213,0,8580,8581,8592,8593,8200,8201,8212,8213,43,8201,2697,2725,8212,0,8581,2823,2851,8592,8201,2697,2725,8212,43,8212,2725,2615,2618,0,8592,2851,2741,2744,8212,2725,2615,2618,43,8213,8212,2618,2620,0,8593,8592,2744,2746,8213,8212,2618,2620,43,8206,8214,8215,8211,0,8586,8594,8595,8591,8206,8214,8215,8211,43,8214,8186,8198,8215,0,8594,8566,8578,8595,8214,8186,8198,8215,43,8215,8198,8200,8213,0,8595,8578,8580,8593,8215,8198,8200,8213,43,8211,8215,8213,2620,0,8591,8595,8593,2746,8211,8215,8213,2620,43,8186,8214,8216,8187,0,8566,8594,8596,8567,8186,8214,8216,8187,43,8214,8206,8209,8216,0,8594,8586,8589,8596,8214,8206,8209,8216,43,8216,8209,8130,8217,0,8596,8589,8510,8597,8216,8209,8130,8217,43,8187,8216,8217,8188,0,8567,8596,8597,8568,8187,8216,8217,8188,43,8188,8217,8218,8219,0,8568,8597,8598,8599,8188,8217,8218,8219,43,8217,8130,8133,8218,0,8597,8510,8513,8598,8217,8130,8133,8218,43,8218,8133,8138,8220,0,8598,8513,8518,8600,8218,8133,8138,8220,43,8219,8218,8220,8221,0,8599,8598,8600,8601,8219,8218,8220,8221,43,8145,8222,8223,8146,0,8525,8602,8603,8526,8145,8222,8223,8146,43,8222,8221,8220,8223,0,8602,8601,8600,8603,8222,8221,8220,8223,43,8223,8220,8138,8181,0,8603,8600,8518,8561,8223,8220,8138,8181,43,8146,8223,8181,8147,0,8526,8603,8561,8527,8146,8223,8181,8147,43,8190,8189,8224,8225,0,8570,8569,8604,8605,8190,8189,8224,8225,43,8189,8188,8219,8224,0,8569,8568,8599,8604,8189,8188,8219,8224,43,8224,8219,8221,8222,0,8604,8599,8601,8602,8224,8219,8221,8222,43,8225,8224,8222,8145,0,8605,8604,8602,8525,8225,8224,8222,8145,43,8143,8226,8227,8144,0,8523,8606,8607,8524,8143,8226,8227,8144,43,8226,8196,8195,8227,0,8606,8576,8575,8607,8226,8196,8195,8227,43,8227,8195,8190,8225,0,8607,8575,8570,8605,8227,8195,8190,8225,43,8144,8227,8225,8145,0,8524,8607,8605,8525,8144,8227,8225,8145,43,8196,8226,8228,8229,0,8576,8606,8608,8609,8196,8226,8228,8229,43,8226,8143,8140,8228,0,8606,8523,8520,8608,8226,8143,8140,8228,43,8228,8140,8139,8230,0,8608,8520,8519,8610,8228,8140,8139,8230,43,8229,8228,8230,8231,0,8609,8608,8610,8611,8229,8228,8230,8231,43,8175,8232,8233,8179,0,8555,8612,8613,8559,8175,8232,8233,8179,43,8232,8234,8235,8233,0,8612,8614,8615,8613,8232,8234,8235,8233,43,8233,8235,8231,8230,0,8613,8615,8611,8610,8233,8235,8231,8230,43,8179,8233,8230,8139,0,8559,8613,8610,8519,8179,8233,8230,8139,43,8236,8237,8238,8239,0,8616,8617,8618,8619,8236,8237,8238,8239,43,8237,8111,8108,8238,0,8617,8491,8488,8618,8237,8111,8108,8238,43,2671,2703,8238,8108,0,2797,2829,8618,8488,2671,2703,8238,8108,43,8239,8238,2703,2702,0,8619,8618,2829,2828,8239,8238,2703,2702,43,8240,8241,8242,8243,0,8620,8621,8622,8623,8240,8241,8242,8243,43,8241,2714,2717,8242,0,8621,2840,2843,8622,8241,2714,2717,8242,43,8242,2717,2689,8203,0,8622,2843,2815,8583,8242,2717,2689,8203,43,8243,8242,8203,8191,0,8623,8622,8583,8571,8243,8242,8203,8191,43,8191,8194,8244,8243,0,8571,8574,8624,8623,8191,8194,8244,8243,43,8194,8196,8229,8244,0,8574,8576,8609,8624,8194,8196,8229,8244,43,8244,8229,8231,8245,0,8624,8609,8611,8625,8244,8229,8231,8245,43,8243,8244,8245,8240,0,8623,8624,8625,8620,8243,8244,8245,8240,43,8231,8235,8246,8245,0,8611,8615,8626,8625,8231,8235,8246,8245,43,8235,8234,8247,8246,0,8615,8614,8627,8626,8235,8234,8247,8246,43,8246,8247,8236,8248,0,8626,8627,8616,8628,8246,8247,8236,8248,43,8245,8246,8248,8240,0,8625,8626,8628,8620,8245,8246,8248,8240,43,8175,8174,8249,8232,0,8555,8554,8629,8612,8175,8174,8249,8232,43,8174,8173,8250,8249,0,8554,8553,8630,8629,8174,8173,8250,8249,43,8249,8250,8251,8252,0,8629,8630,8631,8632,8249,8250,8251,8252,43,8232,8249,8252,8234,0,8612,8629,8632,8614,8232,8249,8252,8234,43,8251,8250,8253,8254,0,8631,8630,8633,8634,8251,8250,8253,8254,43,8250,8173,8171,8253,0,8630,8553,8551,8633,8250,8173,8171,8253,43,8253,8171,8163,8166,0,8633,8551,8543,8546,8253,8171,8163,8166,43,8254,8253,8166,8159,0,8634,8633,8546,8539,8254,8253,8166,8159,43,8111,8255,8256,8112,0,8491,8635,8636,8492,8111,8255,8256,8112,43,8255,8251,8254,8256,0,8635,8631,8634,8636,8255,8251,8254,8256,43,8256,8254,8159,8162,0,8636,8634,8539,8542,8256,8254,8159,8162,43,8112,8256,8162,8113,0,8492,8636,8542,8493,8112,8256,8162,8113,43,8234,8252,8257,8247,0,8614,8632,8637,8627,8234,8252,8257,8247,43,8252,8251,8255,8257,0,8632,8631,8635,8637,8252,8251,8255,8257,43,8257,8255,8111,8237,0,8637,8635,8491,8617,8257,8255,8111,8237,43,8247,8257,8237,8236,0,8627,8637,8617,8616,8247,8257,8237,8236,43,8240,8248,8258,8241,0,8620,8628,8638,8621,8240,8248,8258,8241,43,8248,8236,8239,8258,0,8628,8616,8619,8638,8248,8236,8239,8258,43,8258,8239,2702,2715,0,8638,8619,2828,2841,8258,8239,2702,2715,43,8241,8258,2715,2714,0,8621,8638,2841,2840,8241,8258,2715,2714,43,8259,8260,8261,8262,0,8639,8640,8641,8642,8259,8260,8261,8262,43,8260,3630,8263,8261,0,8640,3757,8643,8641,8260,3630,8263,8261,43,8262,8261,8263,8264,0,8642,8641,8643,8644,8262,8261,8263,8264,43,8264,8265,8266,8267,0,8644,8645,8646,8647,8264,8265,8266,8267,43,8265,8268,8269,8266,0,8645,8648,8649,8646,8265,8268,8269,8266,43,8266,8269,8270,8271,0,8646,8649,8650,8651,8266,8269,8270,8271,43,8267,8266,8271,8272,0,8647,8646,8651,8652,8267,8266,8271,8272,43,8268,8273,8274,8275,0,8648,8653,8654,8655,8268,8273,8274,8275,43,8273,3630,3628,8274,0,8653,3757,3755,8654,8273,3630,3628,8274,43,8275,8274,3628,3619,0,8655,8654,3755,3746,8275,8274,3628,3619,43,8264,8263,8276,8265,0,8644,8643,8656,8645,8264,8263,8276,8265,43,8263,3630,8273,8276,0,8643,3757,8653,8656,8263,3630,8273,8276,43,8265,8276,8273,8268,0,8645,8656,8653,8648,8265,8276,8273,8268,43,8270,8269,8277,8278,0,8650,8649,8657,8658,8270,8269,8277,8278,43,8269,8268,8275,8277,0,8649,8648,8655,8657,8269,8268,8275,8277,43,8277,8275,3619,3616,0,8657,8655,3746,3743,8277,8275,3619,3616,43,8278,8277,3616,3615,0,8658,8657,3743,3742,8278,8277,3616,3615,43,8272,8271,8279,8280,0,8652,8651,8659,8660,8272,8271,8279,8280,43,8271,8270,8278,8279,0,8651,8650,8658,8659,8271,8270,8278,8279,43,8279,8278,3615,3618,0,8659,8658,3742,3745,8279,8278,3615,3618,43,8280,8279,3618,3529,0,8660,8659,3745,3656,8280,8279,3618,3529,43,8281,8282,8283,8284,0,8661,8662,8663,8664,8281,8282,8283,8284,43,8282,8285,8286,8283,0,8662,8665,8666,8663,8282,8285,8286,8283,43,8283,8286,8287,8288,0,8663,8666,8667,8668,8283,8286,8287,8288,43,8284,8283,8288,8289,0,8664,8663,8668,8669,8284,8283,8288,8289,43,8290,8291,8292,8293,0,8670,8671,8672,8673,8290,8291,8292,8293,43,8291,8294,8295,8292,0,8671,8674,8675,8672,8291,8294,8295,8292,43,8292,8295,8296,8297,0,8672,8675,8676,8677,8292,8295,8296,8297,43,8293,8292,8297,8298,0,8673,8672,8677,8678,8293,8292,8297,8298,43,8281,8299,8300,8282,0,8661,8679,8680,8662,8281,8299,8300,8282,43,8299,8301,8302,8300,0,8679,8681,8682,8680,8299,8301,8302,8300,43,8300,8302,8303,8304,0,8680,8682,8683,8684,8300,8302,8303,8304,43,8282,8300,8304,8285,0,8662,8680,8684,8665,8282,8300,8304,8285,43,8285,8304,8305,8306,0,8665,8684,8685,8686,8285,8304,8305,8306,43,8304,8303,8307,8305,0,8684,8683,8687,8685,8304,8303,8307,8305,43,8305,8307,8272,8308,0,8685,8687,8652,8688,8305,8307,8272,8308,43,8306,8305,8308,8309,0,8686,8685,8688,8689,8306,8305,8308,8309,43,8272,8307,8310,8267,0,8652,8687,8690,8647,8272,8307,8310,8267,43,8307,8303,8311,8310,0,8687,8683,8691,8690,8307,8303,8311,8310,43,8310,8311,8312,8313,0,8690,8691,8692,8693,8310,8311,8312,8313,43,8267,8310,8313,8264,0,8647,8690,8693,8644,8267,8310,8313,8264,43,8303,8302,8314,8311,0,8683,8682,8694,8691,8303,8302,8314,8311,43,8302,8301,8315,8314,0,8682,8681,8695,8694,8302,8301,8315,8314,43,8314,8315,8316,8317,0,8694,8695,8696,8697,8314,8315,8316,8317,43,8311,8314,8317,8312,0,8691,8694,8697,8692,8311,8314,8317,8312,43,8318,8319,8320,8321,0,8698,8699,8700,8701,8318,8319,8320,8321,43,8319,8316,8315,8320,0,8699,8696,8695,8700,8319,8316,8315,8320,43,8320,8315,8301,8299,0,8700,8695,8681,8679,8320,8315,8301,8299,43,8321,8320,8299,8281,0,8701,8700,8679,8661,8321,8320,8299,8281,43,8322,8323,8324,8325,0,8702,8703,8704,8705,8322,8323,8324,8325,43,8323,8326,8327,8324,0,8703,8706,8707,8704,8323,8326,8327,8324,43,8324,8327,8316,8319,0,8704,8707,8696,8699,8324,8327,8316,8319,43,8325,8324,8319,8318,0,8705,8704,8699,8698,8325,8324,8319,8318,43,8296,8328,8329,8297,0,8676,8708,8709,8677,8296,8328,8329,8297,43,8328,8322,8325,8329,0,8708,8702,8705,8709,8328,8322,8325,8329,43,8329,8325,8318,8330,0,8709,8705,8698,8710,8329,8325,8318,8330,43,8297,8329,8330,8298,0,8677,8709,8710,8678,8297,8329,8330,8298,43,8298,8330,8331,8332,0,8678,8710,8711,8712,8298,8330,8331,8332,43,8330,8318,8321,8331,0,8710,8698,8701,8711,8330,8318,8321,8331,43,8331,8321,8281,8284,0,8711,8701,8661,8664,8331,8321,8281,8284,43,8332,8331,8284,8289,0,8712,8711,8664,8669,8332,8331,8284,8289,43,8333,8334,8335,8336,0,8713,8714,8715,8716,8333,8334,8335,8336,43,8334,8337,8338,8335,0,8714,8717,8718,8715,8334,8337,8338,8335,43,8335,8338,8339,8340,0,8715,8718,8719,8720,8335,8338,8339,8340,43,8336,8335,8340,8341,0,8716,8715,8720,8721,8336,8335,8340,8341,43,8341,8340,8342,8343,0,8721,8720,8722,8723,8341,8340,8342,8343,43,8340,8339,8344,8342,0,8720,8719,8724,8722,8340,8339,8344,8342,43,8342,8344,8345,8346,0,8722,8724,8725,8726,8342,8344,8345,8346,43,8343,8342,8346,8347,0,8723,8722,8726,8727,8343,8342,8346,8347,43,8345,8344,8348,8349,0,8725,8724,8728,8729,8345,8344,8348,8349,43,8344,8339,8338,8348,0,8724,8719,8718,8728,8344,8339,8338,8348,43,8348,8338,8337,8350,0,8728,8718,8717,8730,8348,8338,8337,8350,43,8349,8348,8350,8351,0,8729,8728,8730,8731,8349,8348,8350,8351,43,8345,8349,8352,8353,0,8725,8729,8732,8733,8345,8349,8352,8353,43,8349,8351,8354,8352,0,8729,8731,8734,8732,8349,8351,8354,8352,43,8352,8354,3658,3657,0,8732,8734,3785,3784,8352,8354,3658,3657,43,8353,8352,3657,3656,0,8733,8732,3784,3783,8353,8352,3657,3656,43,8309,8308,8355,8356,0,8689,8688,8735,8736,8309,8308,8355,8356,43,8308,8272,8280,8355,0,8688,8652,8660,8735,8308,8272,8280,8355,43,8355,8280,3529,3587,0,8735,8660,3656,3714,8355,8280,3529,3587,43,8356,8355,3587,3585,0,8736,8735,3714,3712,8356,8355,3587,3585,43,8285,8306,8357,8286,0,8665,8686,8737,8666,8285,8306,8357,8286,43,8306,8309,8358,8357,0,8686,8689,8738,8737,8306,8309,8358,8357,43,8357,8358,8359,8360,0,8737,8738,8739,8740,8357,8358,8359,8360,43,8286,8357,8360,8287,0,8666,8737,8740,8667,8286,8357,8360,8287,43,3581,8361,8362,3584,0,3708,8741,8742,3711,3581,8361,8362,3584,43,8361,8359,8358,8362,0,8741,8739,8738,8742,8361,8359,8358,8362,43,8362,8358,8309,8356,0,8742,8738,8689,8736,8362,8358,8309,8356,43,3584,8362,8356,3585,0,3711,8742,8736,3712,3584,8362,8356,3585,43,3579,3685,8363,3580,0,3706,3812,8743,3707,3579,3685,8363,3580,43,3685,3658,8354,8363,0,3812,3785,8734,8743,3685,3658,8354,8363,43,8363,8354,8351,8364,0,8743,8734,8731,8744,8363,8354,8351,8364,43,3580,8363,8364,3581,0,3707,8743,8744,3708,3580,8363,8364,3581,43,8351,8350,8365,8364,0,8731,8730,8745,8744,8351,8350,8365,8364,43,8350,8337,8366,8365,0,8730,8717,8746,8745,8350,8337,8366,8365,43,8365,8366,8359,8361,0,8745,8746,8739,8741,8365,8366,8359,8361,43,8364,8365,8361,3581,0,8744,8745,8741,3708,8364,8365,8361,3581,43,8287,8360,8367,8368,0,8667,8740,8747,8748,8287,8360,8367,8368,43,8360,8359,8366,8367,0,8740,8739,8746,8747,8360,8359,8366,8367,43,8367,8366,8337,8334,0,8747,8746,8717,8714,8367,8366,8337,8334,43,8368,8367,8334,8333,0,8748,8747,8714,8713,8368,8367,8334,8333,43,8289,8288,8369,8370,0,8669,8668,8749,8750,8289,8288,8369,8370,43,8288,8287,8368,8369,0,8668,8667,8748,8749,8288,8287,8368,8369,43,8369,8368,8333,8371,0,8749,8748,8713,8751,8369,8368,8333,8371,43,8370,8369,8371,8372,0,8750,8749,8751,8752,8370,8369,8371,8372,43,8289,8370,8373,8332,0,8669,8750,8753,8712,8289,8370,8373,8332,43,8370,8372,8374,8373,0,8750,8752,8754,8753,8370,8372,8374,8373,43,8373,8374,8290,8293,0,8753,8754,8670,8673,8373,8374,8290,8293,43,8332,8373,8293,8298,0,8712,8753,8673,8678,8332,8373,8293,8298,43,8372,8371,8375,8374,0,8752,8751,8755,8754,8372,8371,8375,8374,43,8371,8333,8336,8375,0,8751,8713,8716,8755,8371,8333,8336,8375,43,8375,8336,8341,8376,0,8755,8716,8721,8756,8375,8336,8341,8376,43,8374,8375,8376,8290,0,8754,8755,8756,8670,8374,8375,8376,8290,43,8341,8343,8377,8376,0,8721,8723,8757,8756,8341,8343,8377,8376,43,8343,8347,8378,8377,0,8723,8727,8758,8757,8343,8347,8378,8377,43,8377,8378,8294,8291,0,8757,8758,8674,8671,8377,8378,8294,8291,43,8376,8377,8291,8290,0,8756,8757,8671,8670,8376,8377,8291,8290,43,8296,8295,8379,8380,0,8676,8675,8759,8760,8296,8295,8379,8380,43,8295,8294,8378,8379,0,8675,8674,8758,8759,8295,8294,8378,8379,43,8379,8378,8347,8381,0,8759,8758,8727,8761,8379,8378,8347,8381,43,8380,8379,8381,8382,0,8760,8759,8761,8762,8380,8379,8381,8382,43,8382,8383,8384,8380,0,8762,8763,8764,8760,8382,8383,8384,8380,43,8383,8385,8386,8384,0,8763,8765,8766,8764,8383,8385,8386,8384,43,8384,8386,8322,8328,0,8764,8766,8702,8708,8384,8386,8322,8328,43,8380,8384,8328,8296,0,8760,8764,8708,8676,8380,8384,8328,8296,43,3630,8260,8387,3659,0,3757,8640,8767,3786,3630,8260,8387,3659,43,8260,8259,8388,8387,0,8640,8639,8768,8767,8260,8259,8388,8387,43,8387,8388,8389,8390,0,8767,8768,8769,8770,8387,8388,8389,8390,43,3659,8387,8390,3661,0,3786,8767,8770,3788,3659,8387,8390,3661,43,3656,3679,8391,8353,0,3783,3806,8771,8733,3656,3679,8391,8353,43,3679,3675,8392,8391,0,3806,3802,8772,8771,3679,3675,8392,8391,43,8391,8392,8393,8394,0,8771,8772,8773,8774,8391,8392,8393,8394,43,8353,8391,8394,8345,0,8733,8771,8774,8725,8353,8391,8394,8345,43,8382,8381,8395,8396,0,8762,8761,8775,8776,8382,8381,8395,8396,43,8381,8347,8346,8395,0,8761,8727,8726,8775,8381,8347,8346,8395,43,8395,8346,8345,8394,0,8775,8726,8725,8774,8395,8346,8345,8394,43,8396,8395,8394,8393,0,8776,8775,8774,8773,8396,8395,8394,8393,43,8389,8397,8398,8399,0,8769,8777,8778,8779,8389,8397,8398,8399,43,8397,8385,8383,8398,0,8777,8765,8763,8778,8397,8385,8383,8398,43,8398,8383,8382,8396,0,8778,8763,8762,8776,8398,8383,8382,8396,43,8399,8398,8396,8393,0,8779,8778,8776,8773,8399,8398,8396,8393,43,8400,8401,8402,8403,0,8780,8781,8782,8783,8400,8401,8402,8403,43,8401,8326,8323,8402,0,8781,8706,8703,8782,8401,8326,8323,8402,43,8402,8323,8322,8386,0,8782,8703,8702,8766,8402,8323,8322,8386,43,8403,8402,8386,8385,0,8783,8782,8766,8765,8403,8402,8386,8385,43,8316,8327,8404,8317,0,8696,8707,8784,8697,8316,8327,8404,8317,43,8327,8326,8401,8404,0,8707,8706,8781,8784,8327,8326,8401,8404,43,8404,8401,8400,8405,0,8784,8781,8780,8785,8404,8401,8400,8405,43,8317,8404,8405,8312,0,8697,8784,8785,8692,8317,8404,8405,8312,43,8312,8405,8406,8313,0,8692,8785,8786,8693,8312,8405,8406,8313,43,8405,8400,8407,8406,0,8785,8780,8787,8786,8405,8400,8407,8406,43,8406,8407,8259,8262,0,8786,8787,8639,8642,8406,8407,8259,8262,43,8313,8406,8262,8264,0,8693,8786,8642,8644,8313,8406,8262,8264,43,8259,8407,8408,8388,0,8639,8787,8788,8768,8259,8407,8408,8388,43,8407,8400,8403,8408,0,8787,8780,8783,8788,8407,8400,8403,8408,43,8408,8403,8385,8397,0,8788,8783,8765,8777,8408,8403,8385,8397,43,8388,8408,8397,8389,0,8768,8788,8777,8769,8388,8408,8397,8389,43,3661,8390,8409,3673,0,3788,8770,8789,3800,3661,8390,8409,3673,43,8390,8389,8399,8409,0,8770,8769,8779,8789,8390,8389,8399,8409,43,8409,8399,8393,8392,0,8789,8779,8773,8772,8409,8399,8393,8392,43,3673,8409,8392,3675,0,3800,8789,8772,3802,3673,8409,8392,3675,43,8410,8411,8412,8413,0,8790,8791,8792,8793,8410,8411,8412,8413,43,8411,8414,8415,8412,0,8791,8794,8795,8792,8411,8414,8415,8412,43,8412,8415,8416,8417,0,8792,8795,8796,8797,8412,8415,8416,8417,43,8413,8412,8417,8418,0,8793,8792,8797,8798,8413,8412,8417,8418,43,8416,8419,8420,8417,0,8796,8799,8800,8797,8416,8419,8420,8417,43,8419,8421,8422,8420,0,8799,8801,8802,8800,8419,8421,8422,8420,43,8420,8422,8423,8424,0,8800,8802,8803,8804,8420,8422,8423,8424,43,8417,8420,8424,8418,0,8797,8800,8804,8798,8417,8420,8424,8418,43,8425,8426,8427,8428,0,8805,8806,8807,8808,8425,8426,8427,8428,43,8426,4180,4185,8427,0,8806,4307,4312,8807,8426,4180,4185,8427,43,8427,4185,4184,8429,0,8807,4312,4311,8809,8427,4185,4184,8429,43,8428,8427,8429,8430,0,8808,8807,8809,8810,8428,8427,8429,8430,43,8421,8431,8432,8422,0,8801,8811,8812,8802,8421,8431,8432,8422,43,8431,8425,8428,8432,0,8811,8805,8808,8812,8431,8425,8428,8432,43,8432,8428,8430,8433,0,8812,8808,8810,8813,8432,8428,8430,8433,43,8422,8432,8433,8423,0,8802,8812,8813,8803,8422,8432,8433,8423,43,8425,8434,8435,8426,0,8805,8814,8815,8806,8425,8434,8435,8426,43,8434,6826,6869,8435,0,8814,6956,6999,8815,8434,6826,6869,8435,43,8435,6869,4188,4191,0,8815,6999,4315,4318,8435,6869,4188,4191,43,8426,8435,4191,4180,0,8806,8815,4318,4307,8426,8435,4191,4180,43,8421,8436,8437,8431,0,8801,8816,8817,8811,8421,8436,8437,8431,43,8436,6828,6827,8437,0,8816,6958,6957,8817,8436,6828,6827,8437,43,8437,6827,6826,8434,0,8817,6957,6956,8814,8437,6827,6826,8434,43,8431,8437,8434,8425,0,8811,8817,8814,8805,8431,8437,8434,8425,43,8416,8438,8439,8419,0,8796,8818,8819,8799,8416,8438,8439,8419,43,8438,6926,6929,8439,0,8818,7056,7059,8819,8438,6926,6929,8439,43,8439,6929,6828,8436,0,8819,7059,6958,8816,8439,6929,6828,8436,43,8419,8439,8436,8421,0,8799,8819,8816,8801,8419,8439,8436,8421,43,8414,8440,8441,8415,0,8794,8820,8821,8795,8414,8440,8441,8415,43,8440,6920,6922,8441,0,8820,7050,7052,8821,8440,6920,6922,8441,43,8441,6922,6926,8438,0,8821,7052,7056,8818,8441,6922,6926,8438,43,8415,8441,8438,8416,0,8795,8821,8818,8796,8415,8441,8438,8416,43,4204,4203,8442,8443,0,4331,4330,8822,8823,4204,4203,8442,8443,43,4203,4202,6871,8442,0,4330,4329,7001,8822,4203,4202,6871,8442,43,8442,6871,6875,8444,0,8822,7001,7005,8824,8442,6871,6875,8444,43,8443,8442,8444,8445,0,8823,8822,8824,8825,8443,8442,8444,8445,43,8446,8447,8448,8449,0,8826,8827,8828,8829,8446,8447,8448,8449,43,8447,8445,8444,8448,0,8827,8825,8824,8828,8447,8445,8444,8448,43,8448,8444,6875,6949,0,8828,8824,7005,7079,8448,8444,6875,6949,43,8449,8448,6949,6912,0,8829,8828,7079,7042,8449,8448,6949,6912,43,8446,8449,8450,8451,0,8826,8829,8830,8831,8446,8449,8450,8451,43,8449,6912,6915,8450,0,8829,7042,7045,8830,8449,6912,6915,8450,43,8450,6915,6920,8440,0,8830,7045,7050,8820,8450,6915,6920,8440,43,8451,8450,8440,8414,0,8831,8830,8820,8794,8451,8450,8440,8414,43,8410,8452,8453,8411,0,8790,8832,8833,8791,8410,8452,8453,8411,43,8452,8454,8455,8453,0,8832,8834,8835,8833,8452,8454,8455,8453,43,8453,8455,8446,8451,0,8833,8835,8826,8831,8453,8455,8446,8451,43,8411,8453,8451,8414,0,8791,8833,8831,8794,8411,8453,8451,8414,43,4755,4754,8456,8457,0,4885,4884,8836,8837,4755,4754,8456,8457,43,4754,4206,4209,8456,0,4884,4333,4336,8836,4754,4206,4209,8456,43,8456,4209,4204,8443,0,8836,4336,4331,8823,8456,4209,4204,8443,43,8457,8456,8443,8445,0,8837,8836,8823,8825,8457,8456,8443,8445,43,8454,8458,8459,8455,0,8834,8838,8839,8835,8454,8458,8459,8455,43,8458,4755,8457,8459,0,8838,4885,8837,8839,8458,4755,8457,8459,43,8459,8457,8445,8447,0,8839,8837,8825,8827,8459,8457,8445,8447,43,8455,8459,8447,8446,0,8835,8839,8827,8826,8455,8459,8447,8446,43,4809,4807,8460,8461,0,4939,4937,8840,8841,4809,4807,8460,8461,43,4807,4803,8462,8460,0,4937,4933,8842,8840,4807,4803,8462,8460,43,8460,8462,8454,8452,0,8840,8842,8834,8832,8460,8462,8454,8452,43,8452,8410,8461,8460,0,8832,8790,8841,8840,8452,8410,8461,8460,43,4803,4806,8463,8462,0,4933,4936,8843,8842,4803,4806,8463,8462,43,4806,4755,8458,8463,0,4936,4885,8838,8843,4806,4755,8458,8463,43,8462,8463,8458,8454,0,8842,8843,8838,8834,8462,8463,8458,8454,43,4813,4811,8464,8465,0,4943,4941,8844,8845,4813,4811,8464,8465,43,4811,4809,8461,8464,0,4941,4939,8841,8844,4811,4809,8461,8464,43,8410,8413,8464,8461,0,8790,8793,8844,8841,8410,8413,8464,8461,43,8465,8464,8413,8418,0,8845,8844,8793,8798,8465,8464,8413,8418,43,4817,4815,8466,8467,0,4947,4945,8846,8847,4817,4815,8466,8467,43,4815,4813,8465,8466,0,4945,4943,8845,8846,4815,4813,8465,8466,43,8466,8465,8418,8424,0,8846,8845,8798,8804,8466,8465,8418,8424,43,8467,8466,8424,8423,0,8847,8846,8804,8803,8467,8466,8424,8423,43,4819,4822,8468,8469,0,4949,4952,8848,8849,4819,4822,8468,8469,43,4822,4817,8467,8468,0,4952,4947,8847,8848,4822,4817,8467,8468,43,8468,8467,8423,8433,0,8848,8847,8803,8813,8468,8467,8423,8433,43,8469,8468,8433,8430,0,8849,8848,8813,8810,8469,8468,8433,8430,43,4184,4823,8470,8429,0,4311,4953,8850,8809,4184,4823,8470,8429,43,4823,4819,8469,8470,0,4953,4949,8849,8850,4823,4819,8469,8470,43,8429,8470,8469,8430,0,8809,8850,8849,8810,8429,8470,8469,8430,43,8471,8472,8473,8474,0,8851,8852,8853,8854,8471,8472,8473,8474,43,8472,8475,8476,8473,0,8852,8855,8856,8853,8472,8475,8476,8473,43,8473,8476,8477,8478,0,8853,8856,8857,8858,8473,8476,8477,8478,43,8474,8473,8478,8479,0,8854,8853,8858,8859,8474,8473,8478,8479,43,8480,8481,8482,8483,0,8860,8861,8862,8863,8480,8481,8482,8483,43,8481,8484,8485,8482,0,8861,8864,8865,8862,8481,8484,8485,8482,43,8482,8485,8471,8474,0,8862,8865,8851,8854,8482,8485,8471,8474,43,8483,8482,8474,8479,0,8863,8862,8854,8859,8483,8482,8474,8479,43,4345,4344,8486,8487,0,4472,4471,8866,8867,4345,4344,8486,8487,43,4344,4341,8488,8486,0,4471,4468,8868,8866,4344,4341,8488,8486,43,8486,8488,8489,8490,0,8866,8868,8869,8870,8486,8488,8489,8490,43,8487,8486,8490,8491,0,8867,8866,8870,8871,8487,8486,8490,8491,43,8491,8490,8492,8493,0,8871,8870,8872,8873,8491,8490,8492,8493,43,8490,8489,8494,8492,0,8870,8869,8874,8872,8490,8489,8494,8492,43,8492,8494,8484,8481,0,8872,8874,8864,8861,8492,8494,8484,8481,43,8493,8492,8481,8480,0,8873,8872,8861,8860,8493,8492,8481,8480,43,4349,7641,8495,4350,0,4476,7884,8875,4477,4349,7641,8495,4350,43,7641,7599,8496,8495,0,7884,7842,8876,8875,7641,7599,8496,8495,43,8495,8496,8489,8488,0,8875,8876,8869,8868,8495,8496,8489,8488,43,4350,8495,8488,4341,0,4477,8875,8868,4468,4350,8495,8488,4341,43,7599,7596,8497,8496,0,7842,7839,8877,8876,7599,7596,8497,8496,43,7596,7595,8498,8497,0,7839,7838,8878,8877,7596,7595,8498,8497,43,8497,8498,8484,8494,0,8877,8878,8864,8874,8497,8498,8484,8494,43,8496,8497,8494,8489,0,8876,8877,8874,8869,8496,8497,8494,8489,43,7595,7700,8499,8498,0,7838,7944,8879,8878,7595,7700,8499,8498,43,7700,7699,8500,8499,0,7944,7943,8880,8879,7700,7699,8500,8499,43,8499,8500,8471,8485,0,8879,8880,8851,8865,8499,8500,8471,8485,43,8498,8499,8485,8484,0,8878,8879,8865,8864,8498,8499,8485,8484,43,7699,7698,8501,8500,0,7943,7942,8881,8880,7699,7698,8501,8500,43,7698,7693,8502,8501,0,7942,7937,8882,8881,7698,7693,8502,8501,43,8501,8502,8475,8472,0,8881,8882,8855,8852,8501,8502,8475,8472,43,8500,8501,8472,8471,0,8880,8881,8852,8851,8500,8501,8472,8471,43,7648,7647,8503,8504,0,7891,7890,8883,8884,7648,7647,8503,8504,43,7647,4363,4360,8503,0,7890,4490,4487,8883,7647,4363,4360,8503,43,8503,4360,4359,8505,0,8883,4487,4486,8885,8503,4360,4359,8505,43,8504,8503,8505,8506,0,8884,8883,8885,8886,8504,8503,8505,8506,43,7648,8504,8507,7723,0,7891,8884,8887,7967,7648,8504,8507,7723,43,8504,8506,8508,8507,0,8884,8886,8888,8887,8504,8506,8508,8507,43,8507,8508,8509,8510,0,8887,8888,8889,8890,8507,8508,8509,8510,43,7723,8507,8510,7691,0,7967,8887,8890,7935,7723,8507,8510,7691,43,7693,7692,8511,8502,0,7937,7936,8891,8882,7693,7692,8511,8502,43,7692,7691,8510,8511,0,7936,7935,8890,8891,7692,7691,8510,8511,43,8511,8510,8509,8512,0,8891,8890,8889,8892,8511,8510,8509,8512,43,8502,8511,8512,8475,0,8882,8891,8892,8855,8502,8511,8512,8475,43,8509,8513,8514,8512,0,8889,8893,8894,8892,8509,8513,8514,8512,43,8513,8515,8516,8514,0,8893,8895,8896,8894,8513,8515,8516,8514,43,8514,8516,8477,8476,0,8894,8896,8857,8856,8514,8516,8477,8476,43,8512,8514,8476,8475,0,8892,8894,8856,8855,8512,8514,8476,8475,43,4359,4370,8517,8505,0,4486,4497,8897,8885,4359,4370,8517,8505,43,4370,4369,5500,8517,0,4497,4496,5630,8897,4370,4369,5500,8517,43,8517,5500,5505,8518,0,8897,5630,5635,8898,8517,5500,5505,8518,43,8505,8517,8518,8506,0,8885,8897,8898,8886,8505,8517,8518,8506,43,8506,8518,8519,8508,0,8886,8898,8899,8888,8506,8518,8519,8508,43,8518,5505,8520,8519,0,8898,5635,8900,8899,8518,5505,8520,8519,43,8519,8520,8515,8513,0,8899,8900,8895,8893,8519,8520,8515,8513,43,8508,8519,8513,8509,0,8888,8899,8893,8889,8508,8519,8513,8509,43,8515,8521,8522,8516,0,8895,8901,8902,8896,8515,8521,8522,8516,43,8521,5555,5560,8522,0,8901,5685,5690,8902,8521,5555,5560,8522,43,8522,5560,5559,8523,0,8902,5690,5689,8903,8522,5560,5559,8523,43,8516,8522,8523,8477,0,8896,8902,8903,8857,8516,8522,8523,8477,43,5505,5556,8524,8520,0,5635,5686,8904,8900,5505,5556,8524,8520,43,5556,5555,8521,8524,0,5686,5685,8901,8904,5556,5555,8521,8524,43,8520,8524,8521,8515,0,8900,8904,8901,8895,8520,8524,8521,8515,43,8477,8523,8525,8478,0,8857,8903,8905,8858,8477,8523,8525,8478,43,8523,5559,5564,8525,0,8903,5689,5694,8905,8523,5559,5564,8525,43,8525,5564,5563,8526,0,8905,5694,5693,8906,8525,5564,5563,8526,43,8478,8525,8526,8479,0,8858,8905,8906,8859,8478,8525,8526,8479,43,8479,8526,8527,8483,0,8859,8906,8907,8863,8479,8526,8527,8483,43,8526,5563,5568,8527,0,8906,5693,5698,8907,8526,5563,5568,8527,43,8527,5568,5567,8528,0,8907,5698,5697,8908,8527,5568,5567,8528,43,8483,8527,8528,8480,0,8863,8907,8908,8860,8483,8527,8528,8480,43,8480,8528,8529,8493,0,8860,8908,8909,8873,8480,8528,8529,8493,43,8528,5567,5572,8529,0,8908,5697,5702,8909,8528,5567,5572,8529,43,8529,5572,5571,8530,0,8909,5702,5701,8910,8529,5572,5571,8530,43,8493,8529,8530,8491,0,8873,8909,8910,8871,8493,8529,8530,8491,43,5571,5573,8531,8530,0,5701,5703,8911,8910,5571,5573,8531,8530,43,5573,4345,8487,8531,0,5703,4472,8867,8911,5573,4345,8487,8531,43,8530,8531,8487,8491,0,8910,8911,8867,8871,8530,8531,8487,8491,43,8532,8533,8534,8535,0,8912,8913,8914,8915,8532,8533,8534,8535,43,8533,8536,8537,8534,0,8913,8916,8917,8914,8533,8536,8537,8534,43,8534,8537,4886,4891,0,8914,8917,5016,5021,8534,8537,4886,4891,43,8535,8534,4891,4890,0,8915,8914,5021,5020,8535,8534,4891,4890,43,4886,8537,8538,4887,0,5016,8917,8918,5017,4886,8537,8538,4887,43,8537,8536,8539,8538,0,8917,8916,8919,8918,8537,8536,8539,8538,43,8538,8539,8540,8541,0,8918,8919,8920,8921,8538,8539,8540,8541,43,4887,8538,8541,4888,0,5017,8918,8921,5018,4887,8538,8541,4888,43,5073,5083,8542,8543,0,5203,5213,8922,8923,5073,5083,8542,8543,43,5083,5067,5065,8542,0,5213,5197,5195,8922,5083,5067,5065,8542,43,8542,5065,5063,8544,0,8922,5195,5193,8924,8542,5065,5063,8544,43,8543,8542,8544,8545,0,8923,8922,8924,8925,8543,8542,8544,8545,43,4993,4992,8546,8547,0,5123,5122,8926,8927,4993,4992,8546,8547,43,4992,4988,8548,8546,0,5122,5118,8928,8926,4992,4988,8548,8546,43,8546,8548,8549,8550,0,8926,8928,8929,8930,8546,8548,8549,8550,43,8547,8546,8550,8551,0,8927,8926,8930,8931,8547,8546,8550,8551,43,8549,8548,8552,8553,0,8929,8928,8932,8933,8549,8548,8552,8553,43,8548,4988,4987,8552,0,8928,5118,5117,8932,8548,4988,4987,8552,43,8552,4987,4888,8541,0,8932,5117,5018,8921,8552,4987,4888,8541,43,8553,8552,8541,8540,0,8933,8932,8921,8920,8553,8552,8541,8540,43,8554,8555,8556,8557,0,8934,8935,8936,8937,8554,8555,8556,8557,43,8555,8532,8535,8556,0,8935,8912,8915,8936,8555,8532,8535,8556,43,8556,8535,4890,4917,0,8936,8915,5020,5047,8556,8535,4890,4917,43,8557,8556,4917,4916,0,8937,8936,5047,5046,8557,8556,4917,4916,43,8558,8559,8560,8561,0,8938,8939,8940,8941,8558,8559,8560,8561,43,8559,8554,8557,8560,0,8939,8934,8937,8940,8559,8554,8557,8560,43,8560,8557,4916,4919,0,8940,8937,5046,5049,8560,8557,4916,4919,43,8561,8560,4919,4918,0,8941,8940,5049,5048,8561,8560,4919,4918,43,8562,8563,8564,8565,0,8942,8943,8944,8945,8562,8563,8564,8565,43,8563,5059,5057,8564,0,8943,5189,5187,8944,8563,5059,5057,8564,43,8564,5057,4993,8547,0,8944,5187,5123,8927,8564,5057,4993,8547,43,8565,8564,8547,8551,0,8945,8944,8927,8931,8565,8564,8547,8551,43,5063,5061,8566,8544,0,5193,5191,8946,8924,5063,5061,8566,8544,43,5061,5059,8563,8566,0,5191,5189,8943,8946,5061,5059,8563,8566,43,8566,8563,8562,8567,0,8946,8943,8942,8947,8566,8563,8562,8567,43,8544,8566,8567,8545,0,8924,8946,8947,8925,8544,8566,8567,8545,43,8545,8568,8569,8543,0,8925,8948,8949,8923,8545,8568,8569,8543,43,8568,8558,8561,8569,0,8948,8938,8941,8949,8568,8558,8561,8569,43,8569,8561,4918,5074,0,8949,8941,5048,5204,8569,8561,4918,5074,43,8543,8569,5074,5073,0,8923,8949,5204,5203,8543,8569,5074,5073,43,8570,8571,8572,8573,0,8950,8951,8952,8953,8570,8571,8572,8573,43,8571,8574,8575,8572,0,8951,8954,8955,8952,8571,8574,8575,8572,43,8572,8575,8576,8577,0,8952,8955,8956,8957,8572,8575,8576,8577,43,8573,8572,8577,8578,0,8953,8952,8957,8958,8573,8572,8577,8578,43,8579,8580,8581,8582,0,8959,8960,8961,8962,8579,8580,8581,8582,43,8580,8583,8584,8581,0,8960,8963,8964,8961,8580,8583,8584,8581,43,8581,8584,8585,8586,0,8961,8964,8965,8966,8581,8584,8585,8586,43,8582,8581,8586,8587,0,8962,8961,8966,8967,8582,8581,8586,8587,43,8588,8589,8590,8591,0,8968,8969,8970,8971,8588,8589,8590,8591,43,8589,8592,8593,8590,0,8969,8972,8973,8970,8589,8592,8593,8590,43,8590,8593,8594,8595,0,8970,8973,8974,8975,8590,8593,8594,8595,43,8591,8590,8595,8596,0,8971,8970,8975,8976,8591,8590,8595,8596,43,8594,8593,8597,8598,0,8974,8973,8977,8978,8594,8593,8597,8598,43,8593,8592,8599,8597,0,8973,8972,8979,8977,8593,8592,8599,8597,43,8597,8599,8583,8580,0,8977,8979,8963,8960,8597,8599,8583,8580,43,8598,8597,8580,8579,0,8978,8977,8960,8959,8598,8597,8580,8579,43,8576,8575,8600,8601,0,8956,8955,8980,8981,8576,8575,8600,8601,43,8575,8574,8602,8600,0,8955,8954,8982,8980,8575,8574,8602,8600,43,8600,8602,8603,8604,0,8980,8982,8983,8984,8600,8602,8603,8604,43,8601,8600,8604,8605,0,8981,8980,8984,8985,8601,8600,8604,8605,43,8603,8606,8607,8604,0,8983,8986,8987,8984,8603,8606,8607,8604,43,8606,8588,8591,8607,0,8986,8968,8971,8987,8606,8588,8591,8607,43,8607,8591,8596,8608,0,8987,8971,8976,8988,8607,8591,8596,8608,43,8604,8607,8608,8605,0,8984,8987,8988,8985,8604,8607,8608,8605,43,8609,8610,8611,8612,0,8989,8990,8991,8992,8609,8610,8611,8612,43,8610,8570,8573,8611,0,8990,8950,8953,8991,8610,8570,8573,8611,43,8611,8573,8578,8613,0,8991,8953,8958,8993,8611,8573,8578,8613,43,8612,8611,8613,8614,0,8992,8991,8993,8994,8612,8611,8613,8614,43,8615,8616,8617,8618,0,8995,8996,8997,8998,8615,8616,8617,8618,43,8616,8609,8612,8617,0,8996,8989,8992,8997,8616,8609,8612,8617,43,8617,8612,8614,8619,0,8997,8992,8994,8999,8617,8612,8614,8619,43,8618,8617,8619,8620,0,8998,8997,8999,9000,8618,8617,8619,8620,43,8587,8586,8621,8622,0,8967,8966,9001,9002,8587,8586,8621,8622,43,8586,8585,8623,8621,0,8966,8965,9003,9001,8586,8585,8623,8621,43,8621,8623,8615,8618,0,9001,9003,8995,8998,8621,8623,8615,8618,43,8622,8621,8618,8620,0,9002,9001,8998,9000,8622,8621,8618,8620,43,8596,8595,8624,8625,0,8976,8975,9004,9005,8596,8595,8624,8625,43,8595,8594,8598,8624,0,8975,8974,8978,9004,8595,8594,8598,8624,43,8624,8598,8579,8582,0,9004,8978,8959,8962,8624,8598,8579,8582,43,8625,8624,8582,8587,0,9005,9004,8962,8967,8625,8624,8582,8587,43,8620,8626,8627,8622,0,9000,9006,9007,9002,8620,8626,8627,8622,43,8626,8605,8608,8627,0,9006,8985,8988,9007,8626,8605,8608,8627,43,8627,8608,8596,8625,0,9007,8988,8976,9005,8627,8608,8596,8625,43,8622,8627,8625,8587,0,9002,9007,9005,8967,8622,8627,8625,8587,43,8614,8613,8628,8619,0,8994,8993,9008,8999,8614,8613,8628,8619,43,8613,8578,8629,8628,0,8993,8958,9009,9008,8613,8578,8629,8628,43,8628,8629,8605,8626,0,9008,9009,8985,9006,8628,8629,8605,8626,43,8619,8628,8626,8620,0,8999,9008,9006,9000,8619,8628,8626,8620,43,8578,8577,8630,8629,0,8958,8957,9010,9009,8578,8577,8630,8629,43,8577,8576,8601,8630,0,8957,8956,8981,9010,8577,8576,8601,8630,43,8629,8630,8601,8605,0,9009,9010,8981,8985,8629,8630,8601,8605,43,8574,8631,8632,8602,0,8954,9011,9012,8982,8574,8631,8632,8602,43,8631,8633,8634,8632,0,9011,9013,9014,9012,8631,8633,8634,8632,43,8632,8634,8635,8636,0,9012,9014,9015,9016,8632,8634,8635,8636,43,8602,8632,8636,8603,0,8982,9012,9016,8983,8602,8632,8636,8603,43,8633,8637,8638,8634,0,9013,9017,9018,9014,8633,8637,8638,8634,43,8637,8540,8539,8638,0,9017,8920,8919,9018,8637,8540,8539,8638,43,8638,8539,8536,8639,0,9018,8919,8916,9019,8638,8539,8536,8639,43,8634,8638,8639,8635,0,9014,9018,9019,9015,8634,8638,8639,8635,43,8570,8640,8641,8571,0,8950,9020,9021,8951,8570,8640,8641,8571,43,8640,8642,8643,8641,0,9020,9022,9023,9021,8640,8642,8643,8641,43,8641,8643,8633,8631,0,9021,9023,9013,9011,8641,8643,8633,8631,43,8571,8641,8631,8574,0,8951,9021,9011,8954,8571,8641,8631,8574,43,8642,8644,8645,8643,0,9022,9024,9025,9023,8642,8644,8645,8643,43,8644,8549,8553,8645,0,9024,8929,8933,9025,8644,8549,8553,8645,43,8645,8553,8540,8637,0,9025,8933,8920,9017,8645,8553,8540,8637,43,8643,8645,8637,8633,0,9023,9025,9017,9013,8643,8645,8637,8633,43,8609,8646,8647,8610,0,8989,9026,9027,8990,8609,8646,8647,8610,43,8646,8648,8649,8647,0,9026,9028,9029,9027,8646,8648,8649,8647,43,8647,8649,8642,8640,0,9027,9029,9022,9020,8647,8649,8642,8640,43,8610,8647,8640,8570,0,8990,9027,9020,8950,8610,8647,8640,8570,43,8648,8650,8651,8649,0,9028,9030,9031,9029,8648,8650,8651,8649,43,8650,8551,8550,8651,0,9030,8931,8930,9031,8650,8551,8550,8651,43,8651,8550,8549,8644,0,9031,8930,8929,9024,8651,8550,8549,8644,43,8649,8651,8644,8642,0,9029,9031,9024,9022,8649,8651,8644,8642,43,8615,8652,8653,8616,0,8995,9032,9033,8996,8615,8652,8653,8616,43,8652,8654,8655,8653,0,9032,9034,9035,9033,8652,8654,8655,8653,43,8653,8655,8648,8646,0,9033,9035,9028,9026,8653,8655,8648,8646,43,8616,8653,8646,8609,0,8996,9033,9026,8989,8616,8653,8646,8609,43,8654,8656,8657,8655,0,9034,9036,9037,9035,8654,8656,8657,8655,43,8656,8562,8565,8657,0,9036,8942,8945,9037,8656,8562,8565,8657,43,8657,8565,8551,8650,0,9037,8945,8931,9030,8657,8565,8551,8650,43,8655,8657,8650,8648,0,9035,9037,9030,9028,8655,8657,8650,8648,43,8585,8658,8659,8623,0,8965,9038,9039,9003,8585,8658,8659,8623,43,8658,8660,8661,8659,0,9038,9040,9041,9039,8658,8660,8661,8659,43,8659,8661,8654,8652,0,9039,9041,9034,9032,8659,8661,8654,8652,43,8623,8659,8652,8615,0,9003,9039,9032,8995,8623,8659,8652,8615,43,8660,8662,8663,8661,0,9040,9042,9043,9041,8660,8662,8663,8661,43,8662,8545,8567,8663,0,9042,8925,8947,9043,8662,8545,8567,8663,43,8663,8567,8562,8656,0,9043,8947,8942,9036,8663,8567,8562,8656,43,8661,8663,8656,8654,0,9041,9043,9036,9034,8661,8663,8656,8654,43,8583,8664,8665,8584,0,8963,9044,9045,8964,8583,8664,8665,8584,43,8664,8666,8667,8665,0,9044,9046,9047,9045,8664,8666,8667,8665,43,8665,8667,8660,8658,0,9045,9047,9040,9038,8665,8667,8660,8658,43,8584,8665,8658,8585,0,8964,9045,9038,8965,8584,8665,8658,8585,43,8666,8668,8669,8667,0,9046,9048,9049,9047,8666,8668,8669,8667,43,8668,8558,8568,8669,0,9048,8938,8948,9049,8668,8558,8568,8669,43,8669,8568,8545,8662,0,9049,8948,8925,9042,8669,8568,8545,8662,43,8667,8669,8662,8660,0,9047,9049,9042,9040,8667,8669,8662,8660,43,8592,8670,8671,8599,0,8972,9050,9051,8979,8592,8670,8671,8599,43,8670,8672,8673,8671,0,9050,9052,9053,9051,8670,8672,8673,8671,43,8671,8673,8666,8664,0,9051,9053,9046,9044,8671,8673,8666,8664,43,8599,8671,8664,8583,0,8979,9051,9044,8963,8599,8671,8664,8583,43,8672,8674,8675,8673,0,9052,9054,9055,9053,8672,8674,8675,8673,43,8674,8554,8559,8675,0,9054,8934,8939,9055,8674,8554,8559,8675,43,8675,8559,8558,8668,0,9055,8939,8938,9048,8675,8559,8558,8668,43,8673,8675,8668,8666,0,9053,9055,9048,9046,8673,8675,8668,8666,43,8588,8676,8677,8589,0,8968,9056,9057,8969,8588,8676,8677,8589,43,8676,8678,8679,8677,0,9056,9058,9059,9057,8676,8678,8679,8677,43,8677,8679,8672,8670,0,9057,9059,9052,9050,8677,8679,8672,8670,43,8589,8677,8670,8592,0,8969,9057,9050,8972,8589,8677,8670,8592,43,8678,8680,8681,8679,0,9058,9060,9061,9059,8678,8680,8681,8679,43,8680,8532,8555,8681,0,9060,8912,8935,9061,8680,8532,8555,8681,43,8681,8555,8554,8674,0,9061,8935,8934,9054,8681,8555,8554,8674,43,8679,8681,8674,8672,0,9059,9061,9054,9052,8679,8681,8674,8672,43,8603,8636,8682,8606,0,8983,9016,9062,8986,8603,8636,8682,8606,43,8636,8635,8683,8682,0,9016,9015,9063,9062,8636,8635,8683,8682,43,8682,8683,8678,8676,0,9062,9063,9058,9056,8682,8683,8678,8676,43,8606,8682,8676,8588,0,8986,9062,9056,8968,8606,8682,8676,8588,43,8635,8639,8684,8683,0,9015,9019,9064,9063,8635,8639,8684,8683,43,8639,8536,8533,8684,0,9019,8916,8913,9064,8639,8536,8533,8684,43,8532,8680,8684,8533,0,8912,9060,9064,8913,8532,8680,8684,8533,43,8683,8684,8680,8678,0,9063,9064,9060,9058,8683,8684,8680,8678,43,5638,8685,8686,5641,0,5768,9065,9066,5771,5638,8685,8686,5641,43,8685,8687,8688,8686,0,9065,9067,9068,9066,8685,8687,8688,8686,43,8686,8688,8689,8690,0,9066,9068,9069,9070,8686,8688,8689,8690,43,5641,8686,8690,5642,0,5771,9066,9070,5772,5641,8686,8690,5642,43,8691,8692,8693,8694,0,9071,9072,9073,9074,8691,8692,8693,8694,43,8692,8687,8685,8693,0,9072,9067,9065,9073,8692,8687,8685,8693,43,8693,8685,5638,5635,0,9073,9065,5768,5765,8693,8685,5638,5635,43,8694,8693,5635,5634,0,9074,9073,5765,5764,8694,8693,5635,5634,43,5798,5803,8695,8696,0,5928,5933,9075,9076,5798,5803,8695,8696,43,5803,5802,5816,8695,0,5933,5932,5946,9075,5803,5802,5816,8695,43,8695,5816,5806,8697,0,9075,5946,5936,9077,8695,5816,5806,8697,43,8696,8695,8697,8698,0,9076,9075,9077,9078,8696,8695,8697,8698,43,8699,8700,8701,8702,0,9079,9080,9081,9082,8699,8700,8701,8702,43,8700,5728,5733,8701,0,9080,5858,5863,9081,8700,5728,5733,8701,43,8701,5733,5732,8703,0,9081,5863,5862,9083,8701,5733,5732,8703,43,8702,8701,8703,8704,0,9082,9081,9083,9084,8702,8701,8703,8704,43,5634,5729,8705,8694,0,5764,5859,9085,9074,5634,5729,8705,8694,43,5729,5728,8700,8705,0,5859,5858,9080,9085,5729,5728,8700,8705,43,8705,8700,8699,8706,0,9085,9080,9079,9086,8705,8700,8699,8706,43,8694,8705,8706,8691,0,9074,9085,9086,9071,8694,8705,8706,8691,43,5642,8690,8707,5662,0,5772,9070,9087,5792,5642,8690,8707,5662,43,8690,8689,8708,8707,0,9070,9069,9088,9087,8690,8689,8708,8707,43,8707,8708,8709,8710,0,9087,9088,9089,9090,8707,8708,8709,8710,43,5662,8707,8710,5664,0,5792,9087,9090,5794,5662,8707,8710,5664,43,5664,8710,8711,5670,0,5794,9090,9091,5800,5664,8710,8711,5670,43,8710,8709,8712,8711,0,9090,9089,9092,9091,8710,8709,8712,8711,43,8711,8712,8713,8714,0,9091,9092,9093,9094,8711,8712,8713,8714,43,5670,8711,8714,5671,0,5800,9091,9094,5801,5670,8711,8714,5671,43,5732,5795,8715,8703,0,5862,5925,9095,9083,5732,5795,8715,8703,43,5795,5794,8716,8715,0,5925,5924,9096,9095,5795,5794,8716,8715,43,8715,8716,8717,8718,0,9095,9096,9097,9098,8715,8716,8717,8718,43,8703,8715,8718,8704,0,9083,9095,9098,9084,8703,8715,8718,8704,43,8717,8716,8719,8720,0,9097,9096,9099,9100,8717,8716,8719,8720,43,8716,5794,5799,8719,0,9096,5924,5929,9099,8716,5794,5799,8719,43,8719,5799,5798,8696,0,9099,5929,5928,9076,8719,5799,5798,8696,43,8720,8719,8696,8698,0,9100,9099,9076,9078,8720,8719,8696,8698,43,5671,8714,8721,5804,0,5801,9094,9101,5934,5671,8714,8721,5804,43,8714,8713,8722,8721,0,9094,9093,9102,9101,8714,8713,8722,8721,43,8721,8722,8698,8697,0,9101,9102,9078,9077,8721,8722,8698,8697,43,5804,8721,8697,5806,0,5934,9101,9077,5936,5804,8721,8697,5806,43,8723,8724,8725,8726,0,9103,9104,9105,9106,8723,8724,8725,8726,43,8724,8727,8728,8725,0,9104,9107,9108,9105,8724,8727,8728,8725,43,8725,8728,8729,8730,0,9105,9108,9109,9110,8725,8728,8729,8730,43,8726,8725,8730,8731,0,9106,9105,9110,9111,8726,8725,8730,8731,43,8732,8733,8734,8735,0,9112,9113,9114,9115,8732,8733,8734,8735,43,8733,8736,8737,8734,0,9113,9116,9117,9114,8733,8736,8737,8734,43,8734,8737,8738,8739,0,9114,9117,9118,9119,8734,8737,8738,8739,43,8735,8734,8739,8740,0,9115,9114,9119,9120,8735,8734,8739,8740,43,8741,8742,8743,8744,0,9121,9122,9123,9124,8741,8742,8743,8744,43,8742,8745,8746,8743,0,9122,9125,9126,9123,8742,8745,8746,8743,43,8743,8746,8747,8748,0,9123,9126,9127,9128,8743,8746,8747,8748,43,8744,8743,8748,8749,0,9124,9123,9128,9129,8744,8743,8748,8749,43,8736,8750,8751,8737,0,9116,9130,9131,9117,8736,8750,8751,8737,43,8750,8745,8742,8751,0,9130,9125,9122,9131,8750,8745,8742,8751,43,8751,8742,8741,8752,0,9131,9122,9121,9132,8751,8742,8741,8752,43,8737,8751,8752,8738,0,9117,9131,9132,9118,8737,8751,8752,8738,43,8753,8754,8755,8756,0,9133,9134,9135,9136,8753,8754,8755,8756,43,8754,8727,8724,8755,0,9134,9107,9104,9135,8754,8727,8724,8755,43,8755,8724,8723,8757,0,9135,9104,9103,9137,8755,8724,8723,8757,43,8756,8755,8757,8758,0,9136,9135,9137,9138,8756,8755,8757,8758,43,8749,8748,8759,8760,0,9129,9128,9139,9140,8749,8748,8759,8760,43,8748,8747,8761,8759,0,9128,9127,9141,9139,8748,8747,8761,8759,43,8759,8761,8753,8756,0,9139,9141,9133,9136,8759,8761,8753,8756,43,8760,8759,8756,8758,0,9140,9139,9136,9138,8760,8759,8756,8758,43,8731,8730,8762,8763,0,9111,9110,9142,9143,8731,8730,8762,8763,43,8730,8729,8764,8762,0,9110,9109,9144,9142,8730,8729,8764,8762,43,8762,8764,8765,8766,0,9142,9144,9145,9146,8762,8764,8765,8766,43,8763,8762,8766,8767,0,9143,9142,9146,9147,8763,8762,8766,8767,43,8767,8766,8768,8769,0,9147,9146,9148,9149,8767,8766,8768,8769,43,8766,8765,8770,8768,0,9146,9145,9150,9148,8766,8765,8770,8768,43,8768,8770,8771,8772,0,9148,9150,9151,9152,8768,8770,8771,8772,43,8769,8768,8772,8773,0,9149,9148,9152,9153,8769,8768,8772,8773,43,8771,8774,8775,8772,0,9151,9154,9155,9152,8771,8774,8775,8772,43,8774,8732,8735,8775,0,9154,9112,9115,9155,8774,8732,8735,8775,43,8775,8735,8740,8776,0,9155,9115,9120,9156,8775,8735,8740,8776,43,8772,8775,8776,8773,0,9152,9155,9156,9153,8772,8775,8776,8773,43,8738,8752,8777,8739,0,9118,9132,9157,9119,8738,8752,8777,8739,43,8752,8741,8744,8777,0,9132,9121,9124,9157,8752,8741,8744,8777,43,8777,8744,8749,8778,0,9157,9124,9129,9158,8777,8744,8749,8778,43,8739,8777,8778,8740,0,9119,9157,9158,9120,8739,8777,8778,8740,43,8749,8760,8779,8778,0,9129,9140,9159,9158,8749,8760,8779,8778,43,8760,8758,8780,8779,0,9140,9138,9160,9159,8760,8758,8780,8779,43,8779,8780,8773,8776,0,9159,9160,9153,9156,8779,8780,8773,8776,43,8778,8779,8776,8740,0,9158,9159,9156,9120,8778,8779,8776,8740,43,8758,8781,8782,8780,0,9138,9161,9162,9160,8758,8781,8782,8780,43,8781,8731,8763,8782,0,9161,9111,9143,9162,8781,8731,8763,8782,43,8782,8763,8767,8769,0,9162,9143,9147,9149,8782,8763,8767,8769,43,8780,8782,8769,8773,0,9160,9162,9149,9153,8780,8782,8769,8773,43,8723,8726,8783,8757,0,9103,9106,9163,9137,8723,8726,8783,8757,43,8726,8731,8781,8783,0,9106,9111,9161,9163,8726,8731,8781,8783,43,8757,8783,8781,8758,0,9137,9163,9161,9138,8757,8783,8781,8758,43,8784,8785,8786,8787,0,9164,9165,9166,9167,8784,8785,8786,8787,43,8785,8788,8789,8786,0,9165,9168,9169,9166,8785,8788,8789,8786,43,8786,8789,8727,8754,0,9166,9169,9107,9134,8786,8789,8727,8754,43,8787,8786,8754,8753,0,9167,9166,9134,9133,8787,8786,8754,8753,43,8687,8692,8790,8791,0,9067,9072,9170,9171,8687,8692,8790,8791,43,8692,8691,8792,8790,0,9072,9071,9172,9170,8692,8691,8792,8790,43,8790,8792,8788,8785,0,9170,9172,9168,9165,8790,8792,8788,8785,43,8791,8790,8785,8784,0,9171,9170,9165,9164,8791,8790,8785,8784,43,8788,8793,8794,8789,0,9168,9173,9174,9169,8788,8793,8794,8789,43,8793,8795,8796,8794,0,9173,9175,9176,9174,8793,8795,8796,8794,43,8794,8796,8729,8728,0,9174,9176,9109,9108,8794,8796,8729,8728,43,8789,8794,8728,8727,0,9169,9174,9108,9107,8789,8794,8728,8727,43,8691,8706,8797,8792,0,9071,9086,9177,9172,8691,8706,8797,8792,43,8706,8699,8798,8797,0,9086,9079,9178,9177,8706,8699,8798,8797,43,8797,8798,8795,8793,0,9177,9178,9175,9173,8797,8798,8795,8793,43,8792,8797,8793,8788,0,9172,9177,9173,9168,8792,8797,8793,8788,43,8795,8799,8800,8796,0,9175,9179,9180,9176,8795,8799,8800,8796,43,8799,8801,8802,8800,0,9179,9181,9182,9180,8799,8801,8802,8800,43,8800,8802,8765,8764,0,9180,9182,9145,9144,8800,8802,8765,8764,43,8796,8800,8764,8729,0,9176,9180,9144,9109,8796,8800,8764,8729,43,8699,8702,8803,8798,0,9079,9082,9183,9178,8699,8702,8803,8798,43,8702,8704,8804,8803,0,9082,9084,9184,9183,8702,8704,8804,8803,43,8803,8804,8801,8799,0,9183,9184,9181,9179,8803,8804,8801,8799,43,8798,8803,8799,8795,0,9178,9183,9179,9175,8798,8803,8799,8795,43,8801,8805,8806,8802,0,9181,9185,9186,9182,8801,8805,8806,8802,43,8805,8807,8808,8806,0,9185,9187,9188,9186,8805,8807,8808,8806,43,8806,8808,8771,8770,0,9186,9188,9151,9150,8806,8808,8771,8770,43,8802,8806,8770,8765,0,9182,9186,9150,9145,8802,8806,8770,8765,43,8704,8718,8809,8804,0,9084,9098,9189,9184,8704,8718,8809,8804,43,8718,8717,8810,8809,0,9098,9097,9190,9189,8718,8717,8810,8809,43,8809,8810,8807,8805,0,9189,9190,9187,9185,8809,8810,8807,8805,43,8804,8809,8805,8801,0,9184,9189,9185,9181,8804,8809,8805,8801,43,8807,8811,8812,8808,0,9187,9191,9192,9188,8807,8811,8812,8808,43,8811,8813,8814,8812,0,9191,9193,9194,9192,8811,8813,8814,8812,43,8812,8814,8732,8774,0,9192,9194,9112,9154,8812,8814,8732,8774,43,8808,8812,8774,8771,0,9188,9192,9154,9151,8808,8812,8774,8771,43,8717,8720,8815,8810,0,9097,9100,9195,9190,8717,8720,8815,8810,43,8720,8698,8816,8815,0,9100,9078,9196,9195,8720,8698,8816,8815,43,8815,8816,8813,8811,0,9195,9196,9193,9191,8815,8816,8813,8811,43,8810,8815,8811,8807,0,9190,9195,9191,9187,8810,8815,8811,8807,43,8813,8817,8818,8814,0,9193,9197,9198,9194,8813,8817,8818,8814,43,8817,8819,8820,8818,0,9197,9199,9200,9198,8817,8819,8820,8818,43,8818,8820,8736,8733,0,9198,9200,9116,9113,8818,8820,8736,8733,43,8814,8818,8733,8732,0,9194,9198,9113,9112,8814,8818,8733,8732,43,8698,8722,8821,8816,0,9078,9102,9201,9196,8698,8722,8821,8816,43,8722,8713,8822,8821,0,9102,9093,9202,9201,8722,8713,8822,8821,43,8821,8822,8819,8817,0,9201,9202,9199,9197,8821,8822,8819,8817,43,8816,8821,8817,8813,0,9196,9201,9197,9193,8816,8821,8817,8813,43,8819,8823,8824,8820,0,9199,9203,9204,9200,8819,8823,8824,8820,43,8823,8825,8826,8824,0,9203,9205,9206,9204,8823,8825,8826,8824,43,8824,8826,8745,8750,0,9204,9206,9125,9130,8824,8826,8745,8750,43,8820,8824,8750,8736,0,9200,9204,9130,9116,8820,8824,8750,8736,43,8713,8712,8827,8822,0,9093,9092,9207,9202,8713,8712,8827,8822,43,8712,8709,8828,8827,0,9092,9089,9208,9207,8712,8709,8828,8827,43,8827,8828,8825,8823,0,9207,9208,9205,9203,8827,8828,8825,8823,43,8822,8827,8823,8819,0,9202,9207,9203,9199,8822,8827,8823,8819,43,8825,8829,8830,8826,0,9205,9209,9210,9206,8825,8829,8830,8826,43,8829,8831,8832,8830,0,9209,9211,9212,9210,8829,8831,8832,8830,43,8830,8832,8747,8746,0,9210,9212,9127,9126,8830,8832,8747,8746,43,8826,8830,8746,8745,0,9206,9210,9126,9125,8826,8830,8746,8745,43,8709,8708,8833,8828,0,9089,9088,9213,9208,8709,8708,8833,8828,43,8708,8689,8834,8833,0,9088,9069,9214,9213,8708,8689,8834,8833,43,8833,8834,8831,8829,0,9213,9214,9211,9209,8833,8834,8831,8829,43,8828,8833,8829,8825,0,9208,9213,9209,9205,8828,8833,8829,8825,43,8831,8835,8836,8832,0,9211,9215,9216,9212,8831,8835,8836,8832,43,8835,8784,8787,8836,0,9215,9164,9167,9216,8835,8784,8787,8836,43,8836,8787,8753,8761,0,9216,9167,9133,9141,8836,8787,8753,8761,43,8832,8836,8761,8747,0,9212,9216,9141,9127,8832,8836,8761,8747,43,8689,8688,8837,8834,0,9069,9068,9217,9214,8689,8688,8837,8834,43,8688,8687,8791,8837,0,9068,9067,9171,9217,8688,8687,8791,8837,43,8837,8791,8784,8835,0,9217,9171,9164,9215,8837,8791,8784,8835,43,8834,8837,8835,8831,0,9214,9217,9215,9211,8834,8837,8835,8831], 'end': (new Date).getTime() diff --git a/examples/webgl_materials_normalmap.html b/examples/webgl_materials_normalmap.html index ca9b355145..99c738d8fa 100644 --- a/examples/webgl_materials_normalmap.html +++ b/examples/webgl_materials_normalmap.html @@ -54,7 +54,7 @@ - + @@ -188,8 +188,8 @@ function createScene( geometry, scale, material1, material2 ) { geometry.computeTangents(); - - //mesh1 = SceneUtils.addMesh( scene, geometry, scale, -scale * 12, 0, 0, 0,0,0, material1 ); + + mesh1 = SceneUtils.addMesh( scene, geometry, scale, -scale * 12, 0, 0, 0,0,0, material1 ); mesh2 = SceneUtils.addMesh( scene, geometry, scale, scale * 12, 0, 0, 0,0,0, material2 ); loader.statusDomElement.style.display = "none"; diff --git a/examples/webgl_materials_normalmap2.html b/examples/webgl_materials_normalmap2.html index 64be64af2d..8554e65494 100644 --- a/examples/webgl_materials_normalmap2.html +++ b/examples/webgl_materials_normalmap2.html @@ -52,92 +52,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -252,7 +168,6 @@ geometry.computeTangents(); - material = new THREE.MeshFaceMaterial(); mesh1 = SceneUtils.addMesh( scene, geometry, scale, 0, - 50, 0, 0, 0, 0, material ); loader.statusDomElement.style.display = "none"; diff --git a/src/core/Face3.js b/src/core/Face3.js index 1457139312..7b6720ed88 100644 --- a/src/core/Face3.js +++ b/src/core/Face3.js @@ -15,6 +15,8 @@ THREE.Face3 = function ( a, b, c, normal, color, materials ) { this.color = color instanceof THREE.Color ? color : new THREE.Color(); this.vertexColors = color instanceof Array ? color : []; + this.vertexTangents = []; + this.materials = materials instanceof Array ? materials : [ materials ]; this.centroid = new THREE.Vector3(); diff --git a/src/core/Face4.js b/src/core/Face4.js index 24a15f0f34..8e686611d6 100644 --- a/src/core/Face4.js +++ b/src/core/Face4.js @@ -16,6 +16,8 @@ THREE.Face4 = function ( a, b, c, d, normal, color, materials ) { this.color = color instanceof THREE.Color ? color : new THREE.Color(); this.vertexColors = color instanceof Array ? color : []; + this.vertexTangents = []; + this.materials = materials instanceof Array ? materials : [ materials ]; this.centroid = new THREE.Vector3(); diff --git a/src/core/Geometry.js b/src/core/Geometry.js index 22c6161738..08185283fb 100644 --- a/src/core/Geometry.js +++ b/src/core/Geometry.js @@ -224,7 +224,8 @@ THREE.Geometry.prototype = { // based on http://www.terathon.com/code/tangent.html // tangents go to vertices - var f, fl, v, vl, face, uv, vA, vB, vC, uvA, uvB, uvC, + var f, fl, v, vl, i, il, vertexIndex, + face, uv, vA, vB, vC, uvA, uvB, uvC, x1, x2, y1, y2, z1, z2, s1, s2, t1, t2, r, t, test, tan1 = [], tan2 = [], @@ -282,49 +283,50 @@ THREE.Geometry.prototype = { for ( f = 0, fl = this.faces.length; f < fl; f ++ ) { face = this.faces[ f ]; - uv = this.faceVertexUvs[ f ][ 0 ]; // use UV layer 0 for tangents + uv = this.faceVertexUvs[ 0 ][ f ]; // use UV layer 0 for tangents if ( face instanceof THREE.Face3 ) { handleTriangle( this, face.a, face.b, face.c, 0, 1, 2 ); - this.vertices[ face.a ].normal.copy( face.vertexNormals[ 0 ] ); - this.vertices[ face.b ].normal.copy( face.vertexNormals[ 1 ] ); - this.vertices[ face.c ].normal.copy( face.vertexNormals[ 2 ] ); - - } else if ( face instanceof THREE.Face4 ) { handleTriangle( this, face.a, face.b, face.c, 0, 1, 2 ); handleTriangle( this, face.a, face.b, face.d, 0, 1, 3 ); - this.vertices[ face.a ].normal.copy( face.vertexNormals[ 0 ] ); - this.vertices[ face.b ].normal.copy( face.vertexNormals[ 1 ] ); - this.vertices[ face.c ].normal.copy( face.vertexNormals[ 2 ] ); - this.vertices[ face.d ].normal.copy( face.vertexNormals[ 3 ] ); - } } - for ( v = 0, vl = this.vertices.length; v < vl; v ++ ) { - - n.copy( this.vertices[ v ].normal ); - t = tan1[ v ]; - - // Gram-Schmidt orthogonalize + var faceIndex = [ 'a', 'b', 'c', 'd' ]; + + for ( f = 0, fl = this.faces.length; f < fl; f ++ ) { + + face = this.faces[ f ]; + + for ( i = 0; i < face.vertexNormals.length; i++ ) { + + n.copy( face.vertexNormals[ i ] ); + + vertexIndex = face[ faceIndex[ i ] ]; + + t = tan1[ vertexIndex ]; - tmp.copy( t ); - tmp.subSelf( n.multiplyScalar( n.dot( t ) ) ).normalize(); + // Gram-Schmidt orthogonalize - // Calculate handedness + tmp.copy( t ); + tmp.subSelf( n.multiplyScalar( n.dot( t ) ) ).normalize(); - tmp2.cross( this.vertices[ v ].normal, t ); - test = tmp2.dot( tan2[ v ] ); - w = (test < 0.0) ? -1.0 : 1.0; + // Calculate handedness - this.vertices[ v ].tangent.set( tmp.x, tmp.y, tmp.z, w ); + tmp2.cross( face.vertexNormals[ i ], t ); + test = tmp2.dot( tan2[ vertexIndex ] ); + w = (test < 0.0) ? -1.0 : 1.0; + face.vertexTangents[ i ] = new THREE.Vector4( tmp.x, tmp.y, tmp.z, w ); + + } + } this.hasTangents = true; diff --git a/src/renderers/WebGLRenderer.js b/src/renderers/WebGLRenderer.js index edfd3ec5fa..481c7883fd 100644 --- a/src/renderers/WebGLRenderer.js +++ b/src/renderers/WebGLRenderer.js @@ -361,7 +361,7 @@ THREE.WebGLRenderer = function ( parameters ) { normalType = bufferGuessNormalType( materials, geometryGroup, object ); vertexColorType = bufferGuessVertexColorType( materials, geometryGroup, object ); - //console.log(uvType, normalType, vertexColorType, object, geometryGroup, materials ); + //console.log("uvType",uvType, "normalType",normalType, "vertexColorType",vertexColorType, object, geometryGroup, materials ); geometryGroup.__vertexArray = new Float32Array( nvertices * 3 ); @@ -439,6 +439,7 @@ THREE.WebGLRenderer = function ( parameters ) { var f, fl, fi, face, vertexNormals, faceNormal, normal, vertexColors, faceColor, + vertexTangents, uvType, vertexColorType, normalType, uv, uv2, v1, v2, v3, v4, t1, t2, t3, t4, c1, c2, c3, c4, @@ -535,6 +536,8 @@ THREE.WebGLRenderer = function ( parameters ) { vertexColors = face.vertexColors; faceColor = face.color; + + vertexTangents = face.vertexTangents; if ( face instanceof THREE.Face3 ) { @@ -711,9 +714,9 @@ THREE.WebGLRenderer = function ( parameters ) { if ( dirtyTangents && geometry.hasTangents ) { - t1 = vertices[ face.a ].tangent; - t2 = vertices[ face.b ].tangent; - t3 = vertices[ face.c ].tangent; + t1 = vertexTangents[ 0 ]; + t2 = vertexTangents[ 1 ]; + t3 = vertexTangents[ 2 ]; tangentArray[ offset_tangent ] = t1.x; tangentArray[ offset_tangent + 1 ] = t1.y; @@ -1035,10 +1038,10 @@ THREE.WebGLRenderer = function ( parameters ) { if ( dirtyTangents && geometry.hasTangents ) { - t1 = vertices[ face.a ].tangent; - t2 = vertices[ face.b ].tangent; - t3 = vertices[ face.c ].tangent; - t4 = vertices[ face.d ].tangent; + t1 = vertexTangents[ 0 ]; + t2 = vertexTangents[ 1 ]; + t3 = vertexTangents[ 2 ]; + t4 = vertexTangents[ 3 ]; tangentArray[ offset_tangent ] = t1.x; tangentArray[ offset_tangent + 1 ] = t1.y; 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 5ee4691ec4..9f9ee8174a 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 @@ -70,10 +70,12 @@ var model = { 'materials': [%(materials)s], - 'normals': [%(normals)s], - 'vertices': [%(vertices)s], + 'morphTargets': [], + + 'normals': [%(normals)s], + 'colors': [%(colors)s], 'uvs': [[%(uvs)s]], @@ -226,7 +228,7 @@ def setBit(value, position, on): mask = ~(1 << position) return (value & mask) -def generate_face(f, i, normals, uvs, colors, mesh, use_normals, use_colors, use_uv_coords): +def generate_face(f, faceIndex, normals, uvs, colors, mesh, use_normals, use_colors, use_uv_coords): isTriangle = ( len(f.vertices) == 3 ) if isTriangle: @@ -278,7 +280,7 @@ def generate_face(f, i, normals, uvs, colors, mesh, use_normals, use_colors, use faceData.append( f.material_index ) if hasFaceVertexUvs: - uv = get_uv_indices(i, uvs, mesh) + uv = get_uv_indices(faceIndex, uvs, mesh) for i in range(nVertices): index = uv[i] faceData.append(index) diff --git a/utils/exporters/convert_obj_three.py b/utils/exporters/convert_obj_three.py index b4f3447337..c3b54f664d 100644 --- a/utils/exporters/convert_obj_three.py +++ b/utils/exporters/convert_obj_three.py @@ -4,7 +4,7 @@ How to use this converter ------------------------- -python convert_obj_three.py -i infile.obj -o outfile.js [-m morphfiles*.obj] [-a center|top|bottom] [-s smooth|flat] [-t ascii|binary] [-d invert|normal] +python convert_obj_three.py -i infile.obj -o outfile.js [-m morphfiles*.obj] [-a center|top|bottom|none] [-s smooth|flat] [-t ascii|binary] [-d invert|normal] Notes: @@ -29,18 +29,19 @@ How to use generated JS file in your HTML document